diff --git a/src/App.svelte b/src/App.svelte
index b5c89b3..876264f 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -59,13 +59,13 @@
@@ -272,7 +272,9 @@
format='ddd, DD MMM YYYY'
range={true}
time={true}
+ closeOnFocusLoss={false}
on:range-selected={e => {
+ console.log(e)
firedEvents = [
...firedEvents,
`Picked range ${e.detail.from} to ${e.detail.to}`
@@ -284,7 +286,18 @@
'Change fired'
]
}}
- />
+ let:selectedStart
+ let:selectedEnd
+ forceClose={forcedClose}
+ >
+
+
{selectedStart}
+
{selectedEnd}
+
+
+
Before Contents Slot
+
+
{#each firedEvents as fired}
@@ -293,6 +306,9 @@
- Pick date to see events
{/each}
+
+
+
@@ -314,7 +330,7 @@
@@ -335,6 +351,13 @@
let firedEvents = []
let firedEventsValue = null
let customSelected = null
+
+ let forcedClose = false
+ async function forceClose () {
+ forcedClose = true
+ await new Promise((resolve) => setTimeout(resolve, 100))
+ forcedClose = false
+ }
\ No newline at end of file
+
diff --git a/src/components/DatePicker.svelte b/src/components/DatePicker.svelte
index 43a34ea..5358e9b 100644
--- a/src/components/DatePicker.svelte
+++ b/src/components/DatePicker.svelte
@@ -1,14 +1,15 @@
diff --git a/src/components/lib/context.js b/src/components/lib/context.js
index 56a6a2c..b3116f8 100644
--- a/src/components/lib/context.js
+++ b/src/components/lib/context.js
@@ -7,6 +7,27 @@ import { ensureFutureMonth } from './date-manipulation.js'
const contextKey = {}
+async function setLoadingCursor () {
+ const loadingStyle = document.createElement('style')
+
+ loadingStyle.dataset.styleName = 'loading-style'
+
+ loadingStyle.innerHTML = '* { cursor: wait !important; }'
+
+ document.head.appendChild(loadingStyle)
+
+ await new Promise((resolve) => setTimeout(resolve, 20))
+}
+
+function clearLoadingCursor () {
+ const loadingStyles = document.querySelectorAll('[data-style-name="loading-style"]')
+ if (loadingStyles.length) {
+ setTimeout(() => {
+ loadingStyles.forEach(styletag => styletag.remove())
+ }, 20)
+ }
+}
+
function setup (given, config) {
const today = dayjs().startOf('day')
@@ -21,7 +42,7 @@ function setup (given, config) {
).startOf('month')
const rightDate = config.isRangePicker ? ensureFutureMonth(leftDate, preSelectedEnd).startOf('month') : null
- return {
+ const setupObj = {
months: getMonths(config),
component,
today,
@@ -41,9 +62,15 @@ function setup (given, config) {
},
isSelectingFirstDate: writable(true)
}
+
+ clearLoadingCursor()
+
+ return setupObj
}
export {
contextKey,
- setup
+ setup,
+ setLoadingCursor,
+ clearLoadingCursor
}
diff --git a/src/components/lib/sanitization.js b/src/components/lib/sanitization.js
index f6152eb..188c1b2 100644
--- a/src/components/lib/sanitization.js
+++ b/src/components/lib/sanitization.js
@@ -21,7 +21,7 @@ function sanitizeInitialValue (value, config) {
if (config.isRangePicker) {
const [ from, to ] = value || []
isDateChosen = Boolean(from).valueOf() && Boolean(to).valueOf()
- chosen = isDateChosen ? value.map(dayjs) : [ dayjs.max(dayjs(), config.start), dayjs.min(dayjs().add(1, 'month'), config.end) ]
+ chosen = isDateChosen ? value.map(dayjs) : [ dayjs.max(dayjs(), config.start), dayjs.min(dayjs().add(...config.defaultRange), config.end) ]
} else {
isDateChosen = Boolean(value).valueOf()
chosen = [ isDateChosen ? dayjs(value) : dayjs.max(dayjs(), config.start) ]
diff --git a/src/main.js b/src/main.js
index 0bc801c..e18c282 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,6 +1,6 @@
import { polyfill } from 'es6-object-assign'
import { CalendarStyle } from './calendar-style.js'
-import DatePicker from './components/DatePicker.svelte'
+import DatePicker from './components/DatePickerAsyncWrapper.svelte'
polyfill()
export {