@event-calendar/day-grid
Advanced tools
Comparing version 0.0.1-alpha.5 to 0.0.1-alpha.6
import { SvelteComponent, init, safe_not_equal, element, text, attr, insert, append, set_data, detach, space, noop, destroy_each, component_subscribe, create_slot, listen, update_slot, transition_in, transition_out, set_store_value, binding_callbacks, action_destroyer, is_function, run_all, create_component, mount_component, destroy_component, group_outros, check_outros, empty } from 'svelte/internal'; | ||
import { getContext, tick, onMount, afterUpdate, setContext } from 'svelte'; | ||
import { derived, writable } from 'svelte/store'; | ||
import { cloneDate, subtractDay, addDay, hasYScroll, sortEventChunks, setMidnight, datesEqual, action, createEventContent, createEventChunk } from '@event-calendar/common'; | ||
import { cloneDate, subtractDay, addDay, hasYScroll, sortEventChunks, setMidnight, datesEqual, action, createEventContent, createDate, createEventChunk } from '@event-calendar/common'; | ||
@@ -780,3 +780,3 @@ function days(state) { | ||
let dayChunks; | ||
let today = setMidnight(new Date()), isToday, otherMonth, highlight; | ||
let today = setMidnight(createDate()), isToday, otherMonth, highlight; | ||
@@ -783,0 +783,0 @@ function handleClick(jsEvent) { |
{ | ||
"name": "@event-calendar/day-grid", | ||
"version": "0.0.1-alpha.5", | ||
"version": "0.0.1-alpha.6", | ||
"type": "module", | ||
@@ -10,5 +10,5 @@ "exports": { | ||
"dependencies": { | ||
"@event-calendar/common": "~0.0.1-alpha.5", | ||
"@event-calendar/common": "~0.0.1-alpha.6", | ||
"svelte": "^3.25.0" | ||
} | ||
} |
32789