@watermarkinsights/ripple 5.3.0-11 → 5.3.0-12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{app-globals-c8de33b7.js → app-globals-c1efe198.js} +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/priv-calendar.cjs.entry.js +23 -23
- package/dist/cjs/ripple.cjs.js +1 -1
- package/dist/cjs/wm-date-range.cjs.entry.js +6 -7
- package/dist/cjs/wm-snackbar.cjs.entry.js +18 -18
- package/dist/collection/components/datepickers/priv-calendar/priv-calendar.css +23 -17
- package/dist/collection/components/datepickers/priv-calendar/priv-calendar.js +22 -22
- package/dist/collection/components/datepickers/wm-date-range.js +6 -7
- package/dist/collection/components/wm-snackbar/wm-snackbar.css +17 -17
- package/dist/collection/components/wm-snackbar/wm-snackbar.js +17 -17
- package/dist/esm/{app-globals-60cf5693.js → app-globals-51ea1005.js} +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/priv-calendar.entry.js +23 -23
- package/dist/esm/ripple.js +1 -1
- package/dist/esm/wm-date-range.entry.js +6 -7
- package/dist/esm/wm-snackbar.entry.js +18 -18
- package/dist/esm-es5/{app-globals-60cf5693.js → app-globals-51ea1005.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/priv-calendar.entry.js +1 -1
- package/dist/esm-es5/ripple.js +1 -1
- package/dist/esm-es5/wm-date-range.entry.js +1 -1
- package/dist/esm-es5/wm-snackbar.entry.js +1 -1
- package/dist/ripple/p-060ba991.entry.js +1 -0
- package/dist/ripple/p-6e3ef46a.system.entry.js +1 -0
- package/dist/ripple/p-93fca187.entry.js +1 -0
- package/dist/ripple/p-a3d6be99.system.entry.js +1 -0
- package/dist/ripple/{p-3ecaf698.system.js → p-a6466dbd.system.js} +1 -1
- package/dist/ripple/p-ad4529d2.entry.js +1 -0
- package/dist/ripple/{p-4539ec98.js → p-c1f2092e.js} +1 -1
- package/dist/ripple/p-ca35a8b7.system.entry.js +1 -0
- package/dist/ripple/{p-5c54b549.system.js → p-ef886cd4.system.js} +1 -1
- package/dist/ripple/ripple.esm.js +1 -1
- package/dist/ripple/ripple.js +1 -1
- package/dist/types/components/wm-snackbar/wm-snackbar.d.ts +2 -2
- package/package.json +1 -1
- package/dist/ripple/p-4978eebe.entry.js +0 -1
- package/dist/ripple/p-5d5f6511.entry.js +0 -1
- package/dist/ripple/p-71a18f64.entry.js +0 -1
- package/dist/ripple/p-799d06ad.system.entry.js +0 -1
- package/dist/ripple/p-a2b807ba.system.entry.js +0 -1
- package/dist/ripple/p-baa713f1.system.entry.js +0 -1
|
@@ -68,11 +68,10 @@ export class DateRange {
|
|
|
68
68
|
}
|
|
69
69
|
return [startFocusDate, endFocusDate];
|
|
70
70
|
}
|
|
71
|
+
// same month of the same year
|
|
71
72
|
isSameMonth(date1, date2) {
|
|
72
73
|
if (date1 && date2) {
|
|
73
|
-
|
|
74
|
-
let month2 = parseInt(date2.split("-")[1]);
|
|
75
|
-
return month1 == month2;
|
|
74
|
+
return date1.slice(0, -3) === date2.slice(0, -3);
|
|
76
75
|
}
|
|
77
76
|
else {
|
|
78
77
|
return false;
|
|
@@ -430,19 +429,19 @@ export class DateRange {
|
|
|
430
429
|
}
|
|
431
430
|
}
|
|
432
431
|
render() {
|
|
433
|
-
return (h(Host, { key: '
|
|
432
|
+
return (h(Host, { key: '889a8810b6a23a8e1165c6fb412dd305f452db31', "aria-busy": "false" }, h("div", { key: '0eb6d7f9b1d0f6708680511fd98359a8a337a312', ref: (d) => (this.wrapperEl = d), class: "wrapper" }, h("div", { key: '5a6c31e062e01553a6ca9222c98d63145a951b54', class: `range-wrapper ${this.calWidth <= this.availSpace ? "cal" : ""}` }, h("div", { key: '1b857cd7cd48ab1814c601895c63bc26aad7dad4', class: "label-wrapper", id: "start-label-wrapper" }, h("label", { key: '6672f83e8e452076c25d2f6476c59c70e8a07c91', ref: (e) => (this.labelEl = e), id: "startlabel", htmlFor: "start-date-input", class: "label", title: `${this.labelStart} (${this.dateFormat})` }, this.labelStart, this.requiredField && (h("span", { key: 'a6a540a425270f37dc68e839233b3fecc525c4a1', "aria-hidden": "true", class: "required" }, "*")))), h("div", { key: '6aed1fb0f7961dc109b9263073b0f145e4fee375', class: "label-wrapper", id: "end-label-wrapper" }, h("label", { key: '989654b4783454d89f18512834e051b81688d67b', id: "endlabel", htmlFor: "end-date-input", class: "label", title: `${this.labelEnd} (${this.dateFormat})` }, this.labelEnd, this.requiredField && (h("span", { key: '55079c3e88c3fea004b15c4542453e57413d6294', "aria-hidden": "true", class: "required" }, "*")))), h("input", { key: '6d234216d24be10320826f64fb6b5f3d9657575a', disabled: this._disabled, type: "text", id: "start-date-input", class: `date-input input ${this.invalidStart ? "invalid" : ""}`, name: "start-date", placeholder: this.dateFormat, value: this.valueStart, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleStartInput(ev), onBlur: () => this.handleStartInputBlur(), ref: (input) => (this.startInputEl = input), "aria-describedby": "error", "aria-label": this.labelStart, "aria-required": this.requiredField ? "true" : null }), h("div", { key: 'e78f22570d5ec03bc3c9242c0bff51856916529d', id: "hyphen" }, "\u00A0-\u00A0"), h("input", { key: 'eca403a543d0273f4b1b947d26049f3587b74e6a', disabled: this._disabled, type: "text", id: "end-date-input", class: `date-input input ${this.invalidEnd ? "invalid" : ""}`, name: "end-date", placeholder: this.dateFormat, value: this.valueEnd, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleEndInput(ev), onBlur: () => this.handleEndInputBlur(), ref: (input) => (this.endInputEl = input), "aria-describedby": "error", "aria-label": this.labelEnd, "aria-required": this.requiredField ? "true" : null }), h("div", { key: '3bb4310fb3c20b73ed5b4b0a5fe5988f694bfcf5', class: "toggle-wrapper", id: "toggle-wrapper" }, this.calWidth <= this.availSpace && (h("button", { key: '60e0e4d0c52cce17e0d7599de7181af3f15eafbd', disabled: this.disabled, onClick: this.togglePopup.bind(this), "aria-describedby": "date-input", ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle" }, h("span", { key: '2cc879207b9cad053f8e9fbc7ca2a7e6ce8c5c1b', class: "calendar", title: intl.formatMessage({
|
|
434
433
|
id: "date.calendarView",
|
|
435
434
|
defaultMessage: "Calendar View",
|
|
436
435
|
description: "Calendar button",
|
|
437
|
-
}) })))), this.renderCalendars()), h("div", { key: '
|
|
436
|
+
}) })))), this.renderCalendars()), h("div", { key: '37f8f6d94fb0255bdae379e6812da8b70704fe62' }, h("div", { key: '222c4b451d163d07c9a5ac6f2acbea55af9e0147', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '9dc194a3e5bd4a4bd8b1c1af9ef89aa1969ae58e', id: "month-title", class: "sr-only" }, intl.formatMessage({
|
|
438
437
|
id: "date.selectMonth",
|
|
439
438
|
defaultMessage: "Activate to select a month.",
|
|
440
439
|
description: "Calendar button",
|
|
441
|
-
})), h("div", { key: '
|
|
440
|
+
})), h("div", { key: 'dfbb468331754172ef76a16cc1c5447f20b90370', id: "year-title", class: "sr-only" }, intl.formatMessage({
|
|
442
441
|
id: "date.selectYear",
|
|
443
442
|
defaultMessage: "Activate to select a year.",
|
|
444
443
|
description: "Calendar button",
|
|
445
|
-
}))), h("div", { key: '
|
|
444
|
+
}))), h("div", { key: '08259e7644e9f685b721db5cd7c3614db286e0ef', id: "error", class: "error" }, this.errorMessage), h("div", { key: 'fbb39147a7cbca48d4f5e057833b387ad4d1e4b9', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" }))));
|
|
446
445
|
}
|
|
447
446
|
static get is() { return "wm-date-range"; }
|
|
448
447
|
static get encapsulation() { return "shadow"; }
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
overflow: auto;
|
|
54
54
|
padding: 0.25rem 0.625rem 1.875rem;
|
|
55
55
|
display: flex;
|
|
56
|
-
flex-direction: column
|
|
56
|
+
flex-direction: column;
|
|
57
57
|
gap: 1.25rem;
|
|
58
58
|
}
|
|
59
59
|
:host .wm-snack-wrapper {
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
:host .wm-snack-wrapper .wm-snackbar.active:not(button) {
|
|
146
146
|
opacity: 1;
|
|
147
147
|
}
|
|
148
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
148
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper {
|
|
149
149
|
display: -webkit-box;
|
|
150
150
|
display: -webkit-flex;
|
|
151
151
|
display: -ms-flexbox;
|
|
@@ -162,31 +162,31 @@
|
|
|
162
162
|
position: relative;
|
|
163
163
|
padding: 0;
|
|
164
164
|
}
|
|
165
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
165
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .msg-wrapper {
|
|
166
166
|
display: flex;
|
|
167
167
|
flex-wrap: wrap;
|
|
168
168
|
gap: 12px;
|
|
169
169
|
width: 100%;
|
|
170
170
|
align-items: center;
|
|
171
171
|
}
|
|
172
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
172
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .msg-wrapper .msg {
|
|
173
173
|
display: block;
|
|
174
174
|
flex: 0 0 0;
|
|
175
175
|
min-width: fit-content;
|
|
176
176
|
}
|
|
177
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
177
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .msg-wrapper .msg.long {
|
|
178
178
|
min-width: 216px;
|
|
179
179
|
flex: 1 0 0;
|
|
180
180
|
}
|
|
181
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
181
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .msg-wrapper .link {
|
|
182
182
|
display: flex;
|
|
183
183
|
flex: 0 0 auto;
|
|
184
184
|
}
|
|
185
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
185
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .msg-wrapper .link span {
|
|
186
186
|
display: block;
|
|
187
187
|
white-space: nowrap;
|
|
188
188
|
}
|
|
189
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
189
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack {
|
|
190
190
|
-webkit-box-shadow: none;
|
|
191
191
|
-moz-box-shadow: none;
|
|
192
192
|
box-shadow: none;
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
text-align: center;
|
|
208
208
|
letter-spacing: normal;
|
|
209
209
|
}
|
|
210
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
210
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:before {
|
|
211
211
|
display: inline-block;
|
|
212
212
|
font: normal normal normal 24px/1 "Material Design Icons";
|
|
213
213
|
font-size: inherit;
|
|
@@ -218,18 +218,18 @@
|
|
|
218
218
|
content: "\f156";
|
|
219
219
|
font-size: 1.12rem;
|
|
220
220
|
}
|
|
221
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
221
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:hover {
|
|
222
222
|
background-color: var(--wmcolor-snackbar-close-background-hover);
|
|
223
223
|
color: var(--wmcolor-snackbar-close-icon-hover);
|
|
224
224
|
}
|
|
225
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
225
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:focus {
|
|
226
226
|
outline: none;
|
|
227
227
|
}
|
|
228
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
228
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack::-moz-focus-inner {
|
|
229
229
|
border: 0;
|
|
230
230
|
outline: none;
|
|
231
231
|
}
|
|
232
|
-
:host .wm-snack-wrapper .wm-snackbar .
|
|
232
|
+
:host .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:active {
|
|
233
233
|
-ms-transform: scale(0.9, 0.9);
|
|
234
234
|
-webkit-transform: scale(0.9, 0.9);
|
|
235
235
|
-moz-transform: scale(0.9, 0.9);
|
|
@@ -264,11 +264,11 @@
|
|
|
264
264
|
left: 0;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .
|
|
267
|
+
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:focus:not(:active) {
|
|
268
268
|
outline: 3px solid var(--wmcolor-interactive-focus);
|
|
269
269
|
outline-offset: 0;
|
|
270
270
|
}
|
|
271
|
-
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .
|
|
271
|
+
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:focus:not(:active) > .tooltip {
|
|
272
272
|
clip: auto;
|
|
273
273
|
width: auto;
|
|
274
274
|
height: auto;
|
|
@@ -281,13 +281,13 @@
|
|
|
281
281
|
transform: translateX(-50%);
|
|
282
282
|
}
|
|
283
283
|
@media screen and (min-width: 48rem) {
|
|
284
|
-
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .
|
|
284
|
+
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .content-wrapper .closesnack:focus:not(:active) > .tooltip {
|
|
285
285
|
top: 2.0625rem;
|
|
286
286
|
left: auto;
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .
|
|
290
|
+
.user-is-tabbing .wm-snack-wrapper .wm-snackbar .content-wrapper .link:focus:not(:active) {
|
|
291
291
|
outline: 3px solid var(--wmcolor-interactive-focus);
|
|
292
292
|
outline-offset: 2px;
|
|
293
293
|
}
|
|
@@ -25,7 +25,7 @@ export class Snackbar {
|
|
|
25
25
|
updateSnacks(newValue) {
|
|
26
26
|
const prevParsedNotifications = [...this.parsedNotifications];
|
|
27
27
|
this.parsedNotifications = [...JSON.parse(newValue)];
|
|
28
|
-
this.
|
|
28
|
+
this.resetUpdatedNotifications(prevParsedNotifications);
|
|
29
29
|
if (prevParsedNotifications.length < this.parsedNotifications.length) {
|
|
30
30
|
const latestNotification = this.parsedNotifications[0];
|
|
31
31
|
const newTimer = window.setTimeout(() => this.snackExpired(latestNotification.id), 6000);
|
|
@@ -44,7 +44,19 @@ export class Snackbar {
|
|
|
44
44
|
}
|
|
45
45
|
this.setMinWidths();
|
|
46
46
|
}
|
|
47
|
-
|
|
47
|
+
setMinWidths() {
|
|
48
|
+
// wait for render to get updated scrollWidth
|
|
49
|
+
requestAnimationFrame(() => {
|
|
50
|
+
const msgEls = this.el.shadowRoot.querySelectorAll(".msg");
|
|
51
|
+
msgEls.forEach((msgEl) => {
|
|
52
|
+
msgEl.classList.remove("long");
|
|
53
|
+
if (msgEl.scrollWidth > 216) {
|
|
54
|
+
msgEl.classList.add("long");
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
resetUpdatedNotifications(prevNotifications) {
|
|
48
60
|
let updatedNotifications = [];
|
|
49
61
|
prevNotifications.forEach((prevNotification) => {
|
|
50
62
|
this.parsedNotifications.forEach((newNotification) => {
|
|
@@ -117,18 +129,6 @@ export class Snackbar {
|
|
|
117
129
|
delete this.timers[notification.id];
|
|
118
130
|
}
|
|
119
131
|
}
|
|
120
|
-
setMinWidths() {
|
|
121
|
-
// wait for render to get updated scrollWidth
|
|
122
|
-
requestAnimationFrame(() => {
|
|
123
|
-
const msgEls = this.el.shadowRoot.querySelectorAll(".msg");
|
|
124
|
-
msgEls.forEach((msgEl) => {
|
|
125
|
-
msgEl.classList.remove("long");
|
|
126
|
-
if (msgEl.scrollWidth > 216) {
|
|
127
|
-
msgEl.classList.add("long");
|
|
128
|
-
}
|
|
129
|
-
});
|
|
130
|
-
});
|
|
131
|
-
}
|
|
132
132
|
announce(message) {
|
|
133
133
|
if (this.liveRegionEl.textContent === message) {
|
|
134
134
|
message += "\u00A0";
|
|
@@ -136,15 +136,15 @@ export class Snackbar {
|
|
|
136
136
|
this.announcement = message;
|
|
137
137
|
}
|
|
138
138
|
renderSnackbars() {
|
|
139
|
-
return
|
|
139
|
+
return this.parsedNotifications.map((notification) => (h("div", { class: "wm-snack-wrapper", key: `snack-${notification.id}` }, h("div", { id: `snack-${notification.id}`, class: "wm-snackbar active neutral" }, h("div", { class: "sr-only", tabindex: notification.link ? 0 : -1, onFocus: () => notification.link && this.snackDismissed(notification) }), h("div", { class: "content-wrapper" }, h("div", { class: "msg-wrapper" }, h("span", { class: "msg" }, notification.message), notification.link && (h("a", { id: `action-${notification.id}`, class: `link ${notification.newWindow ? "new-window" : ""}`, "aria-label": `Click to ${notification.link}...${notification.newWindow ? " " + globalMessages.newWindow : ""}`, tabindex: 0, onClick: () => {
|
|
140
140
|
this.snackLinkClicked(notification);
|
|
141
141
|
}, onKeyDown: (ev) => ev.key === "Enter" && this.snackLinkClicked(notification) }, h("span", { "aria-hidden": "true" }, notification.link)))), h("button", { id: `close-button-${notification.id}`, "aria-label": "Close this notification", class: "closesnack", tabindex: notification.link ? 0 : -1, onClick: () => this.snackDismissed(notification), onMouseEnter: (ev) => showTooltip("bottom", ev.target, globalMessages.close), onMouseLeave: () => hideTooltip(), onFocus: (ev) => this.isTabbing && showTooltip("bottom", ev.target, globalMessages.close), onBlur: () => hideTooltip() })), h("div", { class: "sr-only", tabindex: notification.link ? 0 : -1, onFocus: () => notification.link && this.snackDismissed(notification) })))));
|
|
142
142
|
}
|
|
143
143
|
render() {
|
|
144
|
-
return (h(Host, { key: '
|
|
144
|
+
return (h(Host, { key: 'ac0f07b1f90bc65343b1380d5247ff50f0ba3a01' }, h("div", { key: '77a473a854866043380b5ff564a6ab77e10f66ba', ref: (el) => (this.snackAreaEl = el), class: {
|
|
145
145
|
"list-wrapper": true,
|
|
146
146
|
"user-is-tabbing": this.isTabbing,
|
|
147
|
-
} }, this.renderSnackbars()), h("div", { key: '
|
|
147
|
+
} }, this.renderSnackbars()), h("div", { key: '443fed993bae034bc902116915e8e7efc0b9b3cb', class: "sr-only", "aria-live": "polite", "aria-atomic": "false", id: `wm-live-region-${this.uid}`, ref: (el) => (this.liveRegionEl = el) }, this.announcement)));
|
|
148
148
|
}
|
|
149
149
|
static get is() { return "wm-snackbar"; }
|
|
150
150
|
static get encapsulation() { return "shadow"; }
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { b as bootstrapLazy } from './index-130e07bb.js';
|
|
2
2
|
export { s as setNonce } from './index-130e07bb.js';
|
|
3
|
-
import { g as globalScripts } from './app-globals-
|
|
3
|
+
import { g as globalScripts } from './app-globals-51ea1005.js';
|
|
4
4
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
6
6
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-130e07bb.js';
|
|
2
2
|
import { i as intl, B as dateFind, I as makeISO, J as getMonthLength, K as weekdays, C as calendar_months } from './functions-25781571.js';
|
|
3
3
|
|
|
4
|
-
const privCalendarCss = ":host{--wmcolor-calendar-border:var(--wmcolor-border);--wmcolor-calendar-day-border-hover:var(--wmcolor-border-focus);--wmcolor-calendar-range-background:var(--wmcolor-interactive-background-hover);--wmcolor-datepicker-range-background-hover:var(--wmcolor-datepicker-day-background-hover);--wmcolor-datepicker-range-background-selected:var(--wmcolor-background-selected);--range-start-svg:url('data:image/svg+xml,<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 6C0 2.68629 2.68629 0 6 0H28.8457C31.0777 0 33.1251 1.23886 34.1607 3.21596L42.5417 19.216C43.455 20.9596 43.455 23.0404 42.5417 24.784L34.1607 40.784C33.1251 42.7611 31.0777 44 28.8458 44H6C2.68629 44 0 41.3137 0 38V6Z\" fill=\"%23575195\"/></svg>');--range-end-svg:url('data:image/svg+xml,<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M44 6C44 2.68629 41.3137 0 38 0H15.1543C12.9223 0 10.8749 1.23886 9.83926 3.21596L1.45831 19.216C0.544956 20.9596 0.54496 23.0404 1.45831 24.784L9.83926 40.784C10.8749 42.7611 12.9223 44 15.1542 44H38C41.3137 44 44 41.3137 44 38V6Z\" fill=\"%23575195\"/></svg>');--range-background-selected:linear-gradient(\n transparent,\n transparent 5px,\n var(--wmcolor-datepicker-range-background-selected) 5px,\n var(--wmcolor-datepicker-range-background-selected) 39px,\n transparent 39px\n );--range-background-hover:linear-gradient(\n transparent,\n transparent 5px,\n var(--wmcolor-datepicker-range-background-hover) 5px,\n var(--wmcolor-datepicker-range-background-hover) 39px,\n transparent 39px\n )}:host priv-calendar+priv-calendar{-webkit-border-start:1px solid var(--wmcolor-calendar-border);border-inline-start:1px solid var(--wmcolor-calendar-border)}.toggle{all:unset;cursor:pointer;padding:0 0.375rem;height:2.375rem;background-color:var(--wmcolor-datepicker-toggle-background);border:none;border-radius:3px}.toggle span::after{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f0ed\";font-size:1.5rem;color:var(--wmcolor-datepicker-toggle-icon);padding:0;line-height:2.5rem}.toggle:hover{-webkit-box-shadow:none;box-shadow:none;background:var(--wmcolor-datepicker-toggle-background-hover)}.toggle:disabled{pointer-events:none;-webkit-box-shadow:none;box-shadow:none;background-color:var(--wmcolor-datepicker-toggle-background-disabled)}.toggle:disabled .calendar::after{color:var(--wmcolor-datepicker-toggle-icon-disabled)}[dir=RTL] .toggle{right:auto;left:0}.toggle::-moz-focus-inner{border:0}.toggle:focus-visible{outline:3px solid var(--wmcolor-interactive-focus);outline-offset:0}.toggle:focus-visible:not(:active){border:none;z-index:11}.inside .toggle{border-top-left-radius:0;border-bottom-left-radius:0;border-start-start-radius:0;border-end-start-radius:0}.popup-wrapper{visibility:hidden;font-family:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;-webkit-box-shadow:0px 4px 15px 0px rgba(0, 0, 0, 0.2);box-shadow:0px 4px 15px 0px rgba(0, 0, 0, 0.2);z-index:10;position:absolute;left:0;top:calc(100% + 2px);min-height:21.0625rem;-webkit-transition:-webkit-transform 0.25s ease;transition:-webkit-transform 0.25s ease;transition:transform 0.25s ease;transition:transform 0.25s ease, -webkit-transform 0.25s ease;-webkit-transform-origin:center top;transform-origin:center top;-webkit-transform:scale(1, 0);transform:scale(1, 0);background-color:var(--wmcolor-datepicker-background)}.popup-wrapper.start{border:2px solid cyan}.popup-wrapper.end{left:247px !important;border:2px solid teal}.popup-wrapper.open{-webkit-transform:scale(1, 1);transform:scale(1, 1)}.popup-wrapper.expand-upwards{top:auto;bottom:2.375rem;-webkit-transform-origin:center bottom;transform-origin:center bottom}.popup-wrapper .calendar-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:relative;padding:0.9375rem 0.25rem}.popup-wrapper .calendar-header .title-box{height:2.625rem;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;border:1px solid;font-weight:500;font-size:0.875rem;background:var(--wmcolor-datepicker-selector-background);cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;padding:0 0.375rem 0 0.75rem;border-color:var(--wmcolor-datepicker-selector-border);color:var(--wmcolor-datepicker-selector-text)}.popup-wrapper .calendar-header .title-box:after{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f140\";padding-left:0.75rem;font-size:1.12rem}.popup-wrapper .calendar-header .title-box.year:after{content:\"\\f143\"}.popup-wrapper .calendar-header .title-box::-moz-focus-inner{border:0}.popup-wrapper .calendar-header .arw-btn{cursor:pointer;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;width:2.75rem;height:2.75rem;border:none;color:var(--wmcolor-datepicker-navigation-text);background:var(--wmcolor-datepicker-navigation-background);padding:0;-webkit-box-shadow:none;box-shadow:none;line-height:2.75rem}.popup-wrapper .calendar-header .arw-btn .mdi{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5rem;font-weight:normal;line-height:2.75rem}.popup-wrapper .calendar-header .arw-btn:hover{background-color:var(--wmcolor-datepicker-navigation-background-hover)}.popup-wrapper .calendar-header .arw-btn:active{-ms-transform:scale(0.9, 0.9);-webkit-transform:scale(0.9, 0.9);-moz-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}.popup-wrapper .separator{min-width:1px;background:var(--wm-color-border)}.popup-wrapper .day-view{min-width:21rem}.popup-wrapper .day-view .date-grid{width:100%;text-align:center;border-collapse:collapse;margin-bottom:0.4375rem;color:var(--wmcolor-datepicker-day-text)}.popup-wrapper .day-view .date-grid div[role=row]{display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;padding-inline:0.875rem}.popup-wrapper .day-view .date-grid div[role=row]:not(.header-row){height:2.75rem}.popup-wrapper .day-view .date-grid .date-header{background-color:var(--wmcolor-datepicker-weekdays-background)}.popup-wrapper .day-view .date-grid .header-cell{height:2.0625rem;line-height:2.0625rem;width:2.75rem;margin:0 calc((14.28% - 44px) / 2);padding:0;display:inline-block;font-size:0.8125rem;font-weight:bold;color:var(--wmcolor-datepicker-weekdays-text);border:none}.popup-wrapper .day-view .date-grid [role=gridcell]{padding:0;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;aspect-ratio:1;font-size:0.875rem;font-weight:500;position:relative;display:-ms-flexbox;display:flex;-ms-flex:1 0 2.75rem;flex:1 0 2.75rem;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.popup-wrapper .day-view .date-grid .date-cell{cursor:pointer}.popup-wrapper .day-view .date-grid .date-cell:hover{background-color:var(--wmcolor-datepicker-day-background-hover)}.popup-wrapper .day-view .date-grid .date-cell[aria-selected=true]{background-color:var(--wmcolor-datepicker-day-background-selected);color:var(--wmcolor-datepicker-day-text-selected)}.popup-wrapper .day-view .date-grid .date-cell.in-range{background:var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-start:not(.preview):hover{background-repeat:no-repeat;background-position:center, center left 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-end:not(.preview):hover{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:not(.preview):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), var(--range-background-selected);color:var(--wmcolor-datepicker-day-text)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview{position:relative;background-image:var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), var(--range-background-hover);background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-position:center left -5px, center left 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-position:center right -5px, center right 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:first-child:not(.preview-start,.preview-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), linear-gradient(transparent, transparent 15px, var(--wmcolor-datepicker-range-background-hover) 15px, var(--wmcolor-datepicker-range-background-hover) 29px, transparent 29px);background-position:center left -5px, center right -5px, center;background-size:auto, auto, 9px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start:last-child,.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end:first-child{background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 17px, var(--wmcolor-calendar-day-border-hover) 18px, var(--wmcolor-calendar-day-border-hover) 20px, transparent 21px)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start{background-position:center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start:first-child{background-position:center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end:last-child{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end,.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start{background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 17px, var(--wmcolor-calendar-day-border-hover) 18px, var(--wmcolor-calendar-day-border-hover) 20px, transparent 21px), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.in-range:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range:first-child:not(.preview-start,.preview-end,.range-start,.range-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:-5px center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range:first-child:not(.preview-start,.preview-end,.range-start,.range-end):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:center, -5px center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-start:last-child:hover,.popup-wrapper .day-view .date-grid .date-cell.in-range.range-end:first-child:hover{background:radial-gradient(#dbd9ef 20px, transparent 21px);background-position:center}.popup-wrapper .day-view .date-grid .date-cell.in-range:last-of-type:not(.range-start,.range-end,.preview),.popup-wrapper .day-view .date-grid .date-cell.in-range:last-child:not(.range-start,.range-end,.preview),.popup-wrapper .day-view .date-grid .date-cell.in-range.last-of-month:not(.range-start,.range-end,.preview){background:radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:5px center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:last-of-type:not(.range-start,.range-end,.preview-start,.preview-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range:last-child:not(.range-start,.range-end,.preview-start,.preview-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range.last-of-month:not(.range-start,.range-end,.preview-start,.preview-end):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:center, 5px center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.today:after{content:\"\";display:block;position:absolute;inset:auto 0 6px 0;width:6px;aspect-ratio:1;border-radius:50%;justify-self:center;background-color:var(--wmcolor-datepicker-day-background-selected);margin:auto}.popup-wrapper .day-view .date-grid .date-cell.range-start,.popup-wrapper .day-view .date-grid .date-cell.range-end{border-radius:0;margin:0;outline:none;font-weight:600;color:var(--wmcolor-datepicker-day-text-selected)}.popup-wrapper .day-view .date-grid .date-cell.range-start{background-image:var(--range-start-svg);-webkit-padding-end:2px;padding-inline-end:2px;background-color:transparent}.popup-wrapper .day-view .date-grid .date-cell.range-start.in-range:not(:hover,:last-of-type,:last-child){background-image:var(--range-start-svg), var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.range-start.in-range.preview:not(:last-of-type,:last-child){background-image:var(--range-start-svg), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.range-end{background-image:var(--range-end-svg);-webkit-padding-start:2px;padding-inline-start:2px;background-color:transparent}.popup-wrapper .day-view .date-grid .date-cell.range-end.in-range:not(:hover,:first-of-type,:first-child){background-image:var(--range-end-svg), var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.range-end.in-range.preview:not(:first-of-type,:first-child){background-image:var(--range-end-svg), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.range-start.range-end{background:var(--wmcolor-datepicker-day-background-selected);border-radius:50%;padding-inline:0;margin:1px;-ms-flex-preferred-size:42px;flex-basis:42px}.popup-wrapper .month-view .months{border-top:2px solid;border-top-color:var(--wmcolor-datepicker-month-border);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.popup-wrapper .month-view .month-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%;border-bottom:2px solid;border-bottom-color:var(--wmcolor-datepicker-month-border)}.popup-wrapper .month-view .month{border:none;background:white;cursor:pointer;width:7rem;height:4rem;line-height:4rem;font-family:inherit;font-weight:500;color:var(--wmcolor-datepicker-month-text)}.popup-wrapper .month-view .month:not(:last-child){border-right:2px solid;border-right-color:var(--wmcolor-datepicker-month-border)}.popup-wrapper .month-view .month:hover{border-right-color:transparent;background-color:var(--wmcolor-datepicker-month-background-hover)}.popup-wrapper .month-view .month:active,.popup-wrapper .month-view .month.selected{background-color:var(--wmcolor-datepicker-month-background-selected);color:var(--wmcolor-datepicker-month-text-selected)}.popup-wrapper .month.focused:focus-visible{outline:3px solid var(--wmcolor-interactive-focus);outline-offset:-2px;border:none;z-index:11}.popup-wrapper .month.focused:focus-visible[aria-selected=true]{outline-offset:2px}.popup-wrapper button:focus-visible,.popup-wrapper .title-box:focus-visible,.popup-wrapper .date-cell:focus-visible{outline:3px solid var(--wmcolor-interactive-focus);outline-offset:-2px;border:none;z-index:11}.popup-wrapper button:focus-visible[aria-selected=true],.popup-wrapper .title-box:focus-visible[aria-selected=true],.popup-wrapper .date-cell:focus-visible[aria-selected=true]{outline-offset:2px}.popup-range{display:-ms-flexbox;display:flex}.popup{width:21rem}.sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;border:0 !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;white-space:nowrap !important;margin:-1px !important}";
|
|
4
|
+
const privCalendarCss = ":host{--wmcolor-calendar-border:var(--wmcolor-border);--wmcolor-calendar-day-border-hover:var(--wmcolor-border-focus);--wmcolor-calendar-range-background:var(--wmcolor-interactive-background-hover);--wmcolor-datepicker-range-background-hover:var(--wmcolor-datepicker-day-background-hover);--wmcolor-datepicker-range-background-selected:var(--wmcolor-background-selected);--range-start-svg:url('data:image/svg+xml,<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 6C0 2.68629 2.68629 0 6 0H28.8457C31.0777 0 33.1251 1.23886 34.1607 3.21596L42.5417 19.216C43.455 20.9596 43.455 23.0404 42.5417 24.784L34.1607 40.784C33.1251 42.7611 31.0777 44 28.8458 44H6C2.68629 44 0 41.3137 0 38V6Z\" fill=\"%23575195\"/></svg>');--range-end-svg:url('data:image/svg+xml,<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M44 6C44 2.68629 41.3137 0 38 0H15.1543C12.9223 0 10.8749 1.23886 9.83926 3.21596L1.45831 19.216C0.544956 20.9596 0.54496 23.0404 1.45831 24.784L9.83926 40.784C10.8749 42.7611 12.9223 44 15.1542 44H38C41.3137 44 44 41.3137 44 38V6Z\" fill=\"%23575195\"/></svg>');--range-background-selected:linear-gradient(\n transparent,\n transparent 5px,\n var(--wmcolor-datepicker-range-background-selected) 5px,\n var(--wmcolor-datepicker-range-background-selected) 39px,\n transparent 39px\n );--range-background-hover:linear-gradient(\n transparent,\n transparent 5px,\n var(--wmcolor-datepicker-range-background-hover) 5px,\n var(--wmcolor-datepicker-range-background-hover) 39px,\n transparent 39px\n )}:host priv-calendar+priv-calendar{-webkit-border-start:1px solid var(--wmcolor-calendar-border);border-inline-start:1px solid var(--wmcolor-calendar-border)}.toggle{all:unset;cursor:pointer;padding:0 0.375rem;height:2.375rem;background-color:var(--wmcolor-datepicker-toggle-background);border:none;border-radius:3px}.toggle span::after{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f0ed\";font-size:1.5rem;color:var(--wmcolor-datepicker-toggle-icon);padding:0;line-height:2.5rem}.toggle:hover{-webkit-box-shadow:none;box-shadow:none;background:var(--wmcolor-datepicker-toggle-background-hover)}.toggle:disabled{pointer-events:none;-webkit-box-shadow:none;box-shadow:none;background-color:var(--wmcolor-datepicker-toggle-background-disabled)}.toggle:disabled .calendar::after{color:var(--wmcolor-datepicker-toggle-icon-disabled)}[dir=RTL] .toggle{right:auto;left:0}.toggle::-moz-focus-inner{border:0}.toggle:focus-visible{outline:3px solid var(--wmcolor-interactive-focus);outline-offset:0}.toggle:focus-visible:not(:active){border:none;z-index:11}.inside .toggle{border-top-left-radius:0;border-bottom-left-radius:0;border-start-start-radius:0;border-end-start-radius:0}.popup-wrapper{visibility:hidden;font-family:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;-webkit-box-shadow:0px 4px 15px 0px rgba(0, 0, 0, 0.2);box-shadow:0px 4px 15px 0px rgba(0, 0, 0, 0.2);z-index:10;position:absolute;left:0;top:calc(100% + 2px);min-height:21.0625rem;-webkit-transition:-webkit-transform 0.25s ease;transition:-webkit-transform 0.25s ease;transition:transform 0.25s ease;transition:transform 0.25s ease, -webkit-transform 0.25s ease;-webkit-transform-origin:center top;transform-origin:center top;-webkit-transform:scale(1, 0);transform:scale(1, 0);background-color:var(--wmcolor-datepicker-background)}.popup-wrapper.start{border:2px solid cyan}.popup-wrapper.end{left:247px !important;border:2px solid teal}.popup-wrapper.open{-webkit-transform:scale(1, 1);transform:scale(1, 1)}.popup-wrapper.expand-upwards{top:auto;bottom:2.375rem;-webkit-transform-origin:center bottom;transform-origin:center bottom}.popup-wrapper .calendar-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:relative;padding:0.9375rem 0.25rem}.popup-wrapper .calendar-header .title-box{height:2.625rem;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;border:1px solid;font-weight:500;font-size:0.875rem;background:var(--wmcolor-datepicker-selector-background);cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;padding:0 0.375rem 0 0.75rem;border-color:var(--wmcolor-datepicker-selector-border);color:var(--wmcolor-datepicker-selector-text)}.popup-wrapper .calendar-header .title-box:after{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f140\";padding-left:0.75rem;font-size:1.12rem}.popup-wrapper .calendar-header .title-box.year:after{content:\"\\f143\"}.popup-wrapper .calendar-header .title-box::-moz-focus-inner{border:0}.popup-wrapper .calendar-header .arw-btn{cursor:pointer;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;width:2.75rem;height:2.75rem;border:none;color:var(--wmcolor-datepicker-navigation-text);background:var(--wmcolor-datepicker-navigation-background);padding:0;-webkit-box-shadow:none;box-shadow:none;line-height:2.75rem}.popup-wrapper .calendar-header .arw-btn .mdi{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5rem;font-weight:normal;line-height:2.75rem}.popup-wrapper .calendar-header .arw-btn:hover{background-color:var(--wmcolor-datepicker-navigation-background-hover)}.popup-wrapper .calendar-header .arw-btn:active{-ms-transform:scale(0.9, 0.9);-webkit-transform:scale(0.9, 0.9);-moz-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}.popup-wrapper .separator{min-width:1px;background:var(--wm-color-border)}.popup-wrapper .day-view{min-width:21rem}.popup-wrapper .day-view .date-grid{width:100%;text-align:center;border-collapse:collapse;margin-bottom:0.4375rem;color:var(--wmcolor-datepicker-day-text)}.popup-wrapper .day-view .date-grid div[role=row]{display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;padding-inline:0.875rem}.popup-wrapper .day-view .date-grid div[role=row]:not(.header-row){height:2.75rem}.popup-wrapper .day-view .date-grid .date-header{background-color:var(--wmcolor-datepicker-weekdays-background)}.popup-wrapper .day-view .date-grid .header-cell{height:2.0625rem;line-height:2.0625rem;width:2.75rem;margin:0 calc((14.28% - 44px) / 2);padding:0;display:inline-block;font-size:0.8125rem;font-weight:bold;color:var(--wmcolor-datepicker-weekdays-text);border:none}.popup-wrapper .day-view .date-grid [role=gridcell]{padding:0;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;aspect-ratio:1;font-size:0.875rem;font-weight:500;position:relative;display:-ms-flexbox;display:flex;-ms-flex:1 0 2.75rem;flex:1 0 2.75rem;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.popup-wrapper .day-view .date-grid .date-cell{cursor:pointer}.popup-wrapper .day-view .date-grid .date-cell:hover{background-color:var(--wmcolor-datepicker-day-background-hover)}.popup-wrapper .day-view .date-grid .date-cell[aria-selected=true]{background-color:var(--wmcolor-datepicker-day-background-selected);color:var(--wmcolor-datepicker-day-text-selected)}.popup-wrapper .day-view .date-grid .date-cell.in-range{background:var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-start:not(.preview):hover{background-repeat:no-repeat;background-position:center, center left 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-end:not(.preview):hover{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:not(.preview):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), var(--range-background-selected);color:var(--wmcolor-datepicker-day-text)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview{position:relative;background-image:var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), var(--range-background-hover);background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-position:center left -5px, center left 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview:last-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-position:center right -5px, center right 17px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview.last-of-month:first-child:not(.preview-start,.preview-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), radial-gradient(var(--wmcolor-datepicker-range-background-hover) 16px, transparent 17px), linear-gradient(transparent, transparent 15px, var(--wmcolor-datepicker-range-background-hover) 15px, var(--wmcolor-datepicker-range-background-hover) 29px, transparent 29px);background-position:center left -5px, center right -5px, center;background-size:auto, auto, 9px}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start:last-child,.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end:first-child{background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 17px, var(--wmcolor-calendar-day-border-hover) 18px, var(--wmcolor-calendar-day-border-hover) 20px, transparent 21px)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start{background-position:center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start:first-child{background-position:center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end:last-child{background-position:center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end,.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start{background-image:radial-gradient(var(--wmcolor-datepicker-range-background-hover) 17px, var(--wmcolor-calendar-day-border-hover) 18px, var(--wmcolor-calendar-day-border-hover) 20px, transparent 21px), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-end:focus-visible,.popup-wrapper .day-view .date-grid .date-cell.in-range.preview-start:focus-visible{outline:none;border:none}.popup-wrapper .day-view .date-grid .date-cell.in-range:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range:first-child:not(.preview-start,.preview-end,.range-start,.range-end),.popup-wrapper .day-view .date-grid .date-cell.in-range.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end){background-image:radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:-5px center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:first-of-type:not(.preview-start,.preview-end,.range-start,.range-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range:first-child:not(.preview-start,.preview-end,.range-start,.range-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range.first-of-month:not(.preview-start,.preview-end,.range-start,.range-end):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:center, -5px center, center left 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range.range-start:last-child:hover,.popup-wrapper .day-view .date-grid .date-cell.in-range.range-end:first-child:hover{background:radial-gradient(#dbd9ef 20px, transparent 21px);background-position:center}.popup-wrapper .day-view .date-grid .date-cell.in-range:last-of-type:not(.range-start,.range-end,.preview),.popup-wrapper .day-view .date-grid .date-cell.in-range:last-child:not(.range-start,.range-end,.preview),.popup-wrapper .day-view .date-grid .date-cell.in-range.last-of-month:not(.range-start,.range-end,.preview){background:radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:5px center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.in-range:last-of-type:not(.range-start,.range-end,.preview-start,.preview-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range:last-child:not(.range-start,.range-end,.preview-start,.preview-end):hover,.popup-wrapper .day-view .date-grid .date-cell.in-range.last-of-month:not(.range-start,.range-end,.preview-start,.preview-end):hover{background-image:radial-gradient(#dbd9ef 20px, transparent 21px), radial-gradient(var(--wmcolor-datepicker-range-background-selected) 16px, transparent 17px), var(--range-background-selected);background-position:center, 5px center, center right 17px;background-repeat:no-repeat}.popup-wrapper .day-view .date-grid .date-cell.today:after{content:\"\";display:block;position:absolute;inset:auto 0 6px 0;width:6px;aspect-ratio:1;border-radius:50%;justify-self:center;background-color:var(--wmcolor-datepicker-day-background-selected);margin:auto}.popup-wrapper .day-view .date-grid .date-cell.range-start,.popup-wrapper .day-view .date-grid .date-cell.range-end{border-radius:0;margin:0;outline:none;font-weight:600;color:var(--wmcolor-datepicker-day-text-selected)}.popup-wrapper .day-view .date-grid .date-cell.range-start:focus-visible,.popup-wrapper .day-view .date-grid .date-cell.range-end:focus-visible{outline:3px solid var(--wmcolor-interactive-focus);outline-offset:-2px;border:none;z-index:11}.popup-wrapper .day-view .date-grid .date-cell.range-start:focus-visible[aria-selected=true],.popup-wrapper .day-view .date-grid .date-cell.range-end:focus-visible[aria-selected=true]{outline-offset:2px}.popup-wrapper .day-view .date-grid .date-cell.range-start{background-image:var(--range-start-svg);-webkit-padding-end:2px;padding-inline-end:2px;background-color:transparent}.popup-wrapper .day-view .date-grid .date-cell.range-start.in-range:not(:hover,:last-of-type,:last-child){background-image:var(--range-start-svg), var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.range-start.in-range.preview:not(:last-of-type,:last-child){background-image:var(--range-start-svg), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.range-end{background-image:var(--range-end-svg);-webkit-padding-start:2px;padding-inline-start:2px;background-color:transparent}.popup-wrapper .day-view .date-grid .date-cell.range-end.in-range:not(:hover,:first-of-type,:first-child){background-image:var(--range-end-svg), var(--range-background-selected);border-radius:0}.popup-wrapper .day-view .date-grid .date-cell.range-end.in-range.preview:not(:first-of-type,:first-child){background-image:var(--range-end-svg), var(--range-background-hover)}.popup-wrapper .day-view .date-grid .date-cell.range-start.range-end{background:var(--wmcolor-datepicker-day-background-selected);border-radius:50%;padding-inline:0;margin:1px;-ms-flex-preferred-size:42px;flex-basis:42px}.popup-wrapper .month-view .months{border-top:2px solid;border-top-color:var(--wmcolor-datepicker-month-border);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.popup-wrapper .month-view .month-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%;border-bottom:2px solid;border-bottom-color:var(--wmcolor-datepicker-month-border)}.popup-wrapper .month-view .month{border:none;background:white;cursor:pointer;width:7rem;height:4rem;line-height:4rem;font-family:inherit;font-weight:500;color:var(--wmcolor-datepicker-month-text)}.popup-wrapper .month-view .month:not(:last-child){border-right:2px solid;border-right-color:var(--wmcolor-datepicker-month-border)}.popup-wrapper .month-view .month:hover{border-right-color:transparent;background-color:var(--wmcolor-datepicker-month-background-hover)}.popup-wrapper .month-view .month:active,.popup-wrapper .month-view .month.selected{background-color:var(--wmcolor-datepicker-month-background-selected);color:var(--wmcolor-datepicker-month-text-selected)}.popup-wrapper button:focus-visible:not(.preview-start,.preview-end),.popup-wrapper .title-box:focus-visible:not(.preview-start,.preview-end),.popup-wrapper .month.focused:focus-visible:not(.preview-start,.preview-end),.popup-wrapper .date-cell:focus-visible:not(.preview-start,.preview-end){outline:3px solid var(--wmcolor-interactive-focus);outline-offset:-2px;border:none;z-index:11}.popup-wrapper button:focus-visible:not(.preview-start,.preview-end)[aria-selected=true],.popup-wrapper .title-box:focus-visible:not(.preview-start,.preview-end)[aria-selected=true],.popup-wrapper .month.focused:focus-visible:not(.preview-start,.preview-end)[aria-selected=true],.popup-wrapper .date-cell:focus-visible:not(.preview-start,.preview-end)[aria-selected=true]{outline-offset:2px}.popup-range{display:-ms-flexbox;display:flex}.popup{width:21rem}.sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;border:0 !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;white-space:nowrap !important;margin:-1px !important}";
|
|
5
5
|
const PrivCalendarStyle0 = privCalendarCss;
|
|
6
6
|
|
|
7
7
|
const PrivCalendar = class {
|
|
@@ -121,7 +121,7 @@ const PrivCalendar = class {
|
|
|
121
121
|
const monthOfDate = dateFind.month.asInt(date);
|
|
122
122
|
const dayOfDate = dateFind.day.asInt(date);
|
|
123
123
|
const yearOfDate = dateFind.year.asInt(date);
|
|
124
|
-
const isStartDate =
|
|
124
|
+
const isStartDate = eitherStart && eitherStart === date;
|
|
125
125
|
let selected = isStartDate ? "true" : "false";
|
|
126
126
|
const classesArr = ["date-cell"];
|
|
127
127
|
const isFocused = date === this.focusDate;
|
|
@@ -129,7 +129,7 @@ const PrivCalendar = class {
|
|
|
129
129
|
if (isToday)
|
|
130
130
|
classesArr.push("today");
|
|
131
131
|
if (this.calType === "range") {
|
|
132
|
-
const isEndDate = eitherStart &&
|
|
132
|
+
const isEndDate = eitherStart && eitherEnd && eitherEnd === date && eitherStart < eitherEnd;
|
|
133
133
|
selected = isEndDate ? "true" : selected;
|
|
134
134
|
const isFirstOfMonth = dayOfDate === 1;
|
|
135
135
|
const isLastOfMonth = dayOfDate === getMonthLength(monthOfDate, yearOfDate);
|
|
@@ -143,7 +143,7 @@ const PrivCalendar = class {
|
|
|
143
143
|
if (isLastOfMonth)
|
|
144
144
|
classesArr.push("last-of-month");
|
|
145
145
|
if (isStartDate) {
|
|
146
|
-
if (isInRangePreview && !isEndDate && this.hoverDate && this.hoverDate <
|
|
146
|
+
if (isInRangePreview && !isEndDate && this.hoverDate && this.hoverDate < eitherStart) {
|
|
147
147
|
// invert the arrow direction if user mouses over a prior date
|
|
148
148
|
classesArr.push("range-end");
|
|
149
149
|
}
|
|
@@ -370,42 +370,42 @@ const PrivCalendar = class {
|
|
|
370
370
|
}
|
|
371
371
|
isInRange(date) {
|
|
372
372
|
if (this.otherCalEl) {
|
|
373
|
-
const
|
|
374
|
-
const
|
|
375
|
-
if (
|
|
373
|
+
const eitherStart = this.startDate || this.otherCalEl.startDate;
|
|
374
|
+
const eitherEnd = this.endDate || this.otherCalEl.endDate;
|
|
375
|
+
if (eitherStart && eitherEnd) {
|
|
376
376
|
// if both dates exist the range is shown
|
|
377
|
-
return
|
|
377
|
+
return eitherStart <= date && date <= eitherEnd;
|
|
378
378
|
}
|
|
379
379
|
}
|
|
380
380
|
return false;
|
|
381
381
|
}
|
|
382
382
|
isInRangePreview(date) {
|
|
383
383
|
if (this.otherCalEl) {
|
|
384
|
-
const
|
|
385
|
-
const
|
|
384
|
+
const eitherStart = this.startDate || this.otherCalEl.startDate;
|
|
385
|
+
const eitherEnd = this.endDate || this.otherCalEl.endDate;
|
|
386
386
|
// no preview if there's an existing range
|
|
387
|
-
if (
|
|
387
|
+
if (eitherStart && eitherEnd)
|
|
388
388
|
return false;
|
|
389
|
-
if (
|
|
389
|
+
if (eitherStart && this.hoverDate) {
|
|
390
390
|
// if only startDate exists, the hovered date functions as the other end of the range
|
|
391
|
-
if (this.hoverDate >
|
|
392
|
-
return
|
|
391
|
+
if (this.hoverDate > eitherStart) {
|
|
392
|
+
return eitherStart <= date && date <= this.hoverDate;
|
|
393
393
|
}
|
|
394
|
-
else if (this.hoverDate <
|
|
394
|
+
else if (this.hoverDate < eitherStart) {
|
|
395
395
|
// user is mousing over a date prior to the start date
|
|
396
396
|
// start date considered as end of range
|
|
397
|
-
return this.hoverDate <= date && date <=
|
|
397
|
+
return this.hoverDate <= date && date <= eitherStart;
|
|
398
398
|
} // if neither < or > then it's the same date and should return false
|
|
399
399
|
}
|
|
400
|
-
else if (
|
|
400
|
+
else if (eitherEnd && this.hoverDate) {
|
|
401
401
|
// if only endDate exists, the hovered date functions as the other end of the range
|
|
402
|
-
if (this.hoverDate <
|
|
403
|
-
return this.hoverDate <= date && date <=
|
|
402
|
+
if (this.hoverDate < eitherEnd) {
|
|
403
|
+
return this.hoverDate <= date && date <= eitherEnd;
|
|
404
404
|
}
|
|
405
|
-
else if (this.hoverDate >
|
|
405
|
+
else if (this.hoverDate > eitherEnd) {
|
|
406
406
|
// user is mousing over a date later than the end date
|
|
407
407
|
// end date considered as beggining of range
|
|
408
|
-
return
|
|
408
|
+
return eitherEnd <= date && date <= this.hoverDate;
|
|
409
409
|
}
|
|
410
410
|
}
|
|
411
411
|
}
|
|
@@ -550,11 +550,11 @@ const PrivCalendar = class {
|
|
|
550
550
|
}), class: "header-btn arw-btn" }, h("span", { class: "mdi" }, "\uF142"))), h("div", { "aria-labelledby": "popup-title-year", role: "grid", class: "months" }, h("div", { role: "row", class: "month-row" }, calendar_months.slice(0, 3).map((month, index) => this.renderMonth(month, index))), h("div", { role: "row", class: "month-row" }, calendar_months.slice(3, 6).map((month, index) => this.renderMonth(month, index + 3))), h("div", { role: "row", class: "month-row" }, calendar_months.slice(6, 9).map((month, index) => this.renderMonth(month, index + 6))), h("div", { role: "row", class: "month-row" }, calendar_months.slice(9).map((month, index) => this.renderMonth(month, index + 9))))));
|
|
551
551
|
}
|
|
552
552
|
render() {
|
|
553
|
-
return (h(Host, { key: '
|
|
553
|
+
return (h(Host, { key: '14af9cecf405ac061fd2345488fda226bb068a40', onMouseOut: (ev) => {
|
|
554
554
|
// @ts-ignore
|
|
555
555
|
if (!this.el.parentElement.contains(ev.toElement))
|
|
556
556
|
this.outOfCal.emit();
|
|
557
|
-
}, role: "application", "aria-describedby": "application" }, this.view === "day" ? this.renderDayView() : this.renderMonthView(), h("div", { key: '
|
|
557
|
+
}, role: "application", "aria-describedby": "application" }, this.view === "day" ? this.renderDayView() : this.renderMonthView(), h("div", { key: 'dd1583339054b245d006f4ea3caa7efab5f31e4a', id: "application", class: "sr-only" }, this.calName, this.calInstructions)));
|
|
558
558
|
}
|
|
559
559
|
get el() { return getElement(this); }
|
|
560
560
|
static get watchers() { return {
|
package/dist/esm/ripple.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { p as promiseResolve, b as bootstrapLazy } from './index-130e07bb.js';
|
|
2
2
|
export { s as setNonce } from './index-130e07bb.js';
|
|
3
|
-
import { g as globalScripts } from './app-globals-
|
|
3
|
+
import { g as globalScripts } from './app-globals-51ea1005.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
6
|
Stencil Client Patch Browser v4.21.0 | MIT Licensed | https://stenciljs.com
|
|
@@ -76,11 +76,10 @@ const DateRange = class {
|
|
|
76
76
|
}
|
|
77
77
|
return [startFocusDate, endFocusDate];
|
|
78
78
|
}
|
|
79
|
+
// same month of the same year
|
|
79
80
|
isSameMonth(date1, date2) {
|
|
80
81
|
if (date1 && date2) {
|
|
81
|
-
|
|
82
|
-
let month2 = parseInt(date2.split("-")[1]);
|
|
83
|
-
return month1 == month2;
|
|
82
|
+
return date1.slice(0, -3) === date2.slice(0, -3);
|
|
84
83
|
}
|
|
85
84
|
else {
|
|
86
85
|
return false;
|
|
@@ -438,19 +437,19 @@ const DateRange = class {
|
|
|
438
437
|
}
|
|
439
438
|
}
|
|
440
439
|
render() {
|
|
441
|
-
return (h(Host, { key: '
|
|
440
|
+
return (h(Host, { key: '889a8810b6a23a8e1165c6fb412dd305f452db31', "aria-busy": "false" }, h("div", { key: '0eb6d7f9b1d0f6708680511fd98359a8a337a312', ref: (d) => (this.wrapperEl = d), class: "wrapper" }, h("div", { key: '5a6c31e062e01553a6ca9222c98d63145a951b54', class: `range-wrapper ${this.calWidth <= this.availSpace ? "cal" : ""}` }, h("div", { key: '1b857cd7cd48ab1814c601895c63bc26aad7dad4', class: "label-wrapper", id: "start-label-wrapper" }, h("label", { key: '6672f83e8e452076c25d2f6476c59c70e8a07c91', ref: (e) => (this.labelEl = e), id: "startlabel", htmlFor: "start-date-input", class: "label", title: `${this.labelStart} (${this.dateFormat})` }, this.labelStart, this.requiredField && (h("span", { key: 'a6a540a425270f37dc68e839233b3fecc525c4a1', "aria-hidden": "true", class: "required" }, "*")))), h("div", { key: '6aed1fb0f7961dc109b9263073b0f145e4fee375', class: "label-wrapper", id: "end-label-wrapper" }, h("label", { key: '989654b4783454d89f18512834e051b81688d67b', id: "endlabel", htmlFor: "end-date-input", class: "label", title: `${this.labelEnd} (${this.dateFormat})` }, this.labelEnd, this.requiredField && (h("span", { key: '55079c3e88c3fea004b15c4542453e57413d6294', "aria-hidden": "true", class: "required" }, "*")))), h("input", { key: '6d234216d24be10320826f64fb6b5f3d9657575a', disabled: this._disabled, type: "text", id: "start-date-input", class: `date-input input ${this.invalidStart ? "invalid" : ""}`, name: "start-date", placeholder: this.dateFormat, value: this.valueStart, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleStartInput(ev), onBlur: () => this.handleStartInputBlur(), ref: (input) => (this.startInputEl = input), "aria-describedby": "error", "aria-label": this.labelStart, "aria-required": this.requiredField ? "true" : null }), h("div", { key: 'e78f22570d5ec03bc3c9242c0bff51856916529d', id: "hyphen" }, "\u00A0-\u00A0"), h("input", { key: 'eca403a543d0273f4b1b947d26049f3587b74e6a', disabled: this._disabled, type: "text", id: "end-date-input", class: `date-input input ${this.invalidEnd ? "invalid" : ""}`, name: "end-date", placeholder: this.dateFormat, value: this.valueEnd, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleEndInput(ev), onBlur: () => this.handleEndInputBlur(), ref: (input) => (this.endInputEl = input), "aria-describedby": "error", "aria-label": this.labelEnd, "aria-required": this.requiredField ? "true" : null }), h("div", { key: '3bb4310fb3c20b73ed5b4b0a5fe5988f694bfcf5', class: "toggle-wrapper", id: "toggle-wrapper" }, this.calWidth <= this.availSpace && (h("button", { key: '60e0e4d0c52cce17e0d7599de7181af3f15eafbd', disabled: this.disabled, onClick: this.togglePopup.bind(this), "aria-describedby": "date-input", ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle" }, h("span", { key: '2cc879207b9cad053f8e9fbc7ca2a7e6ce8c5c1b', class: "calendar", title: intl.formatMessage({
|
|
442
441
|
id: "date.calendarView",
|
|
443
442
|
defaultMessage: "Calendar View",
|
|
444
443
|
description: "Calendar button",
|
|
445
|
-
}) })))), this.renderCalendars()), h("div", { key: '
|
|
444
|
+
}) })))), this.renderCalendars()), h("div", { key: '37f8f6d94fb0255bdae379e6812da8b70704fe62' }, h("div", { key: '222c4b451d163d07c9a5ac6f2acbea55af9e0147', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '9dc194a3e5bd4a4bd8b1c1af9ef89aa1969ae58e', id: "month-title", class: "sr-only" }, intl.formatMessage({
|
|
446
445
|
id: "date.selectMonth",
|
|
447
446
|
defaultMessage: "Activate to select a month.",
|
|
448
447
|
description: "Calendar button",
|
|
449
|
-
})), h("div", { key: '
|
|
448
|
+
})), h("div", { key: 'dfbb468331754172ef76a16cc1c5447f20b90370', id: "year-title", class: "sr-only" }, intl.formatMessage({
|
|
450
449
|
id: "date.selectYear",
|
|
451
450
|
defaultMessage: "Activate to select a year.",
|
|
452
451
|
description: "Calendar button",
|
|
453
|
-
}))), h("div", { key: '
|
|
452
|
+
}))), h("div", { key: '08259e7644e9f685b721db5cd7c3614db286e0ef', id: "error", class: "error" }, this.errorMessage), h("div", { key: 'fbb39147a7cbca48d4f5e057833b387ad4d1e4b9', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" }))));
|
|
454
453
|
}
|
|
455
454
|
static get delegatesFocus() { return true; }
|
|
456
455
|
get el() { return getElement(this); }
|