@fluentui/react-calendar-compat 0.1.8 → 0.1.10
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/CHANGELOG.md +26 -2
- package/dist/index.d.ts +11 -1
- package/lib/components/Calendar/Calendar.js +6 -19
- package/lib/components/Calendar/Calendar.js.map +1 -1
- package/lib/components/Calendar/useCalendarStyles.styles.js +89 -53
- package/lib/components/Calendar/useCalendarStyles.styles.js.map +1 -1
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js +84 -46
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -1
- package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -1
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js +2 -1
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -1
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +245 -114
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -1
- package/lib/components/CalendarMonth/CalendarMonth.js +1 -1
- package/lib/components/CalendarMonth/CalendarMonth.js.map +1 -1
- package/lib/components/CalendarMonth/index.js +1 -1
- package/lib/components/CalendarMonth/index.js.map +1 -1
- package/lib/components/CalendarMonth/{useCalendarMonthStyles.js → useCalendarMonthStyles.styles.js} +4 -2
- package/lib/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js +169 -79
- package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -1
- package/lib/utils/animations.js +5 -6
- package/lib/utils/animations.js.map +1 -1
- package/lib/utils/dateGrid/dateGrid.types.js.map +1 -1
- package/lib/utils/dateGrid/getDayGrid.js +1 -0
- package/lib/utils/dateGrid/getDayGrid.js.map +1 -1
- package/lib-commonjs/components/Calendar/Calendar.js +6 -19
- package/lib-commonjs/components/Calendar/Calendar.js.map +1 -1
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js +126 -155
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js.map +1 -1
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js +133 -137
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -1
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js +2 -1
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -1
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +417 -333
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -1
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js +2 -2
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js.map +1 -1
- package/lib-commonjs/components/CalendarMonth/index.js +1 -1
- package/lib-commonjs/components/CalendarMonth/index.js.map +1 -1
- package/lib-commonjs/components/CalendarMonth/{useCalendarMonthStyles.js → useCalendarMonthStyles.styles.js} +1 -1
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js +255 -225
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -1
- package/lib-commonjs/utils/animations.js +4 -5
- package/lib-commonjs/utils/animations.js.map +1 -1
- package/lib-commonjs/utils/dateGrid/getDayGrid.js +1 -0
- package/lib-commonjs/utils/dateGrid/getDayGrid.js.map +1 -1
- package/package.json +4 -4
- package/lib/components/CalendarMonth/useCalendarMonthStyles.js.map +0 -1
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.js.map +0 -1
|
@@ -26,6 +26,7 @@ const calendarDayGridClassNames = {
|
|
|
26
26
|
table: 'fui-CalendarDayGrid__table',
|
|
27
27
|
dayCell: 'fui-CalendarDayGrid__dayCell',
|
|
28
28
|
daySelected: 'fui-CalendarDayGrid__daySelected',
|
|
29
|
+
daySingleSelected: 'fui-CalendarDayGrid__daySingleSelected',
|
|
29
30
|
weekRow: 'fui-CalendarDayGrid__weekRow',
|
|
30
31
|
weekDayLabelCell: 'fui-CalendarDayGrid__weekDayLabelCell',
|
|
31
32
|
weekNumberCell: 'fui-CalendarDayGrid__weekNumberCell',
|
|
@@ -35,7 +36,8 @@ const calendarDayGridClassNames = {
|
|
|
35
36
|
dayIsToday: 'fui-CalendarDayGrid__dayIsToday',
|
|
36
37
|
firstTransitionWeek: 'fui-CalendarDayGrid__firstTransitionWeek',
|
|
37
38
|
lastTransitionWeek: 'fui-CalendarDayGrid__lastTransitionWeek',
|
|
38
|
-
dayMarker: 'fui-CalendarDayGrid__dayMarker'
|
|
39
|
+
dayMarker: 'fui-CalendarDayGrid__dayMarker',
|
|
40
|
+
dayTodayMarker: 'fui-CalendarDayGrid__dayTodayMarker'
|
|
39
41
|
};
|
|
40
42
|
const extraCalendarDayGridClassNames = {
|
|
41
43
|
hoverStyle: 'fui-CalendarDayGrid__hoverStyle',
|
|
@@ -85,40 +87,27 @@ const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
85
87
|
Bceei9c: "f1k6fduh",
|
|
86
88
|
Be2twd7: "fy9rknc",
|
|
87
89
|
Bhrd7zp: "figsok6",
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"f11qmguv"
|
|
99
|
-
],
|
|
100
|
-
z8tnut: "f1g0x7ka",
|
|
101
|
-
z189sj: [
|
|
102
|
-
"fhxju0i",
|
|
103
|
-
"f1cnd47f"
|
|
104
|
-
],
|
|
105
|
-
Byoj8tv: "f1qch9an",
|
|
106
|
-
uwmqm3: [
|
|
107
|
-
"f1cnd47f",
|
|
108
|
-
"fhxju0i"
|
|
109
|
-
],
|
|
90
|
+
jrapky: 0,
|
|
91
|
+
Frg6f3: 0,
|
|
92
|
+
t21cq0: 0,
|
|
93
|
+
B6of3ja: 0,
|
|
94
|
+
B74szlk: "f1s184ao",
|
|
95
|
+
Byoj8tv: 0,
|
|
96
|
+
uwmqm3: 0,
|
|
97
|
+
z189sj: 0,
|
|
98
|
+
z8tnut: 0,
|
|
99
|
+
B0ocmuz: "fqtknz5",
|
|
110
100
|
qhf8xq: "f10pi13n",
|
|
111
|
-
a9b677: "f1w9dchk",
|
|
112
101
|
Bsw6fvg: "f8pusc0",
|
|
113
102
|
Bbusuzp: "fqgauei",
|
|
114
103
|
cvlxnx: "fp6dsbd",
|
|
115
104
|
Bweudez: "f4xgodq",
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
dua3dm:
|
|
119
|
-
|
|
120
|
-
Bsnevi5: "f15e7s3w",
|
|
105
|
+
Bsnevi5: 0,
|
|
106
|
+
z1p9vi: 0,
|
|
107
|
+
dua3dm: 0,
|
|
108
|
+
Bf7el8m: "f1ko8o2g",
|
|
121
109
|
xnb59o: "fts5qqo",
|
|
110
|
+
B0mcfed: "fq2wdp5",
|
|
122
111
|
Bj67fi1: "f1lhgsq9",
|
|
123
112
|
B2gfgcj: "fdbuq6n",
|
|
124
113
|
B6cqqer: "f16j2ub3",
|
|
@@ -161,61 +150,37 @@ const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
161
150
|
B7ys5i9: "f14e48fq",
|
|
162
151
|
Busjfv9: "f18yb2kv",
|
|
163
152
|
Bhk32uz: "fd6o370",
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
Blkhhs4:
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
clg4pj:
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
],
|
|
188
|
-
Dah5zi: [
|
|
189
|
-
"ftffrms",
|
|
190
|
-
"f1jqcqds"
|
|
191
|
-
],
|
|
192
|
-
Bkh64rk: [
|
|
193
|
-
"f2e7qr6",
|
|
194
|
-
"fsr1zz6"
|
|
195
|
-
],
|
|
196
|
-
qqdqy8: [
|
|
197
|
-
"fsr1zz6",
|
|
198
|
-
"f2e7qr6"
|
|
199
|
-
],
|
|
200
|
-
B6dhp37: "f1dvezut",
|
|
201
|
-
i03rao: [
|
|
202
|
-
"fd0oaoj",
|
|
203
|
-
"f1cwg4i8"
|
|
204
|
-
],
|
|
205
|
-
Boxcth7: "fjvm52t",
|
|
206
|
-
Bsom6fd: [
|
|
207
|
-
"f1cwg4i8",
|
|
208
|
-
"fd0oaoj"
|
|
209
|
-
],
|
|
210
|
-
J0r882: "fehyjer",
|
|
153
|
+
f6g5ot: 0,
|
|
154
|
+
Boxcth7: 0,
|
|
155
|
+
Bhdgwq3: 0,
|
|
156
|
+
hgwjuy: 0,
|
|
157
|
+
Bshpdp8: 0,
|
|
158
|
+
Bsom6fd: 0,
|
|
159
|
+
Blkhhs4: 0,
|
|
160
|
+
Bonggc9: 0,
|
|
161
|
+
Ddfuxk: 0,
|
|
162
|
+
i03rao: 0,
|
|
163
|
+
kclons: 0,
|
|
164
|
+
clg4pj: 0,
|
|
165
|
+
Bpqj9nj: 0,
|
|
166
|
+
B6dhp37: 0,
|
|
167
|
+
Bf4ptjt: 0,
|
|
168
|
+
Bqtpl0w: 0,
|
|
169
|
+
i4rwgc: "fpqizxz",
|
|
170
|
+
Dah5zi: 0,
|
|
171
|
+
B1tsrr9: 0,
|
|
172
|
+
qqdqy8: 0,
|
|
173
|
+
Bkh64rk: 0,
|
|
174
|
+
e3fwne: "f3znvyf",
|
|
175
|
+
J0r882: "fqkqgbk",
|
|
211
176
|
Bule8hv: [
|
|
212
|
-
"
|
|
213
|
-
"
|
|
177
|
+
"f1as04kd",
|
|
178
|
+
"ft30ozv"
|
|
214
179
|
],
|
|
215
|
-
Bjwuhne: "
|
|
180
|
+
Bjwuhne: "f8pxvb2",
|
|
216
181
|
Ghsupd: [
|
|
217
|
-
"
|
|
218
|
-
"
|
|
182
|
+
"ft30ozv",
|
|
183
|
+
"f1as04kd"
|
|
219
184
|
]
|
|
220
185
|
}
|
|
221
186
|
}, {
|
|
@@ -224,18 +189,19 @@ const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
224
189
|
".f1k6fduh{cursor:pointer;}",
|
|
225
190
|
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
|
226
191
|
".figsok6{font-weight:var(--fontWeightRegular);}",
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
192
|
+
[
|
|
193
|
+
".f1s184ao{margin:0;}",
|
|
194
|
+
{
|
|
195
|
+
p: -1
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
[
|
|
199
|
+
".fqtknz5{padding:2px;}",
|
|
200
|
+
{
|
|
201
|
+
p: -1
|
|
202
|
+
}
|
|
203
|
+
],
|
|
237
204
|
".f10pi13n{position:relative;}",
|
|
238
|
-
".f1w9dchk{width:28px;}",
|
|
239
205
|
".fp6dsbd.fui-CalendarDayGrid__hoverStyle{color:var(--colorNeutralForeground1Static);}",
|
|
240
206
|
".f4xgodq.fui-CalendarDayGrid__hoverStyle{background-color:var(--colorBrandBackgroundInvertedHover);}",
|
|
241
207
|
".f1lhgsq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}",
|
|
@@ -248,72 +214,51 @@ const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
248
214
|
".f14e48fq[data-fui-focus-visible]::after{position:absolute;}",
|
|
249
215
|
".f18yb2kv[data-fui-focus-visible]::after{pointer-events:none;}",
|
|
250
216
|
".fd6o370[data-fui-focus-visible]::after{z-index:1;}",
|
|
251
|
-
".fh1cnn4[data-fui-focus-visible]::after{border-top-style:solid;}",
|
|
252
|
-
".fy7oxxb[data-fui-focus-visible]::after{border-right-style:solid;}",
|
|
253
|
-
".f184ne2d[data-fui-focus-visible]::after{border-left-style:solid;}",
|
|
254
|
-
".fpukqih[data-fui-focus-visible]::after{border-bottom-style:solid;}",
|
|
255
|
-
".f1umxd9d[data-fui-focus-visible]::after{border-top-width:var(--strokeWidthThin);}",
|
|
256
|
-
".fp9lxrq[data-fui-focus-visible]::after{border-right-width:var(--strokeWidthThin);}",
|
|
257
|
-
".f4twznv[data-fui-focus-visible]::after{border-left-width:var(--strokeWidthThin);}",
|
|
258
|
-
".f1eh9j8j[data-fui-focus-visible]::after{border-bottom-width:var(--strokeWidthThin);}",
|
|
259
|
-
".f1jqcqds[data-fui-focus-visible]::after{border-bottom-right-radius:var(--borderRadiusMedium);}",
|
|
260
|
-
".ftffrms[data-fui-focus-visible]::after{border-bottom-left-radius:var(--borderRadiusMedium);}",
|
|
261
|
-
".f2e7qr6[data-fui-focus-visible]::after{border-top-right-radius:var(--borderRadiusMedium);}",
|
|
262
|
-
".fsr1zz6[data-fui-focus-visible]::after{border-top-left-radius:var(--borderRadiusMedium);}",
|
|
263
|
-
".f1dvezut[data-fui-focus-visible]::after{border-top-color:var(--colorStrokeFocus2);}",
|
|
264
|
-
".fd0oaoj[data-fui-focus-visible]::after{border-right-color:var(--colorStrokeFocus2);}",
|
|
265
|
-
".f1cwg4i8[data-fui-focus-visible]::after{border-left-color:var(--colorStrokeFocus2);}",
|
|
266
|
-
".fjvm52t[data-fui-focus-visible]::after{border-bottom-color:var(--colorStrokeFocus2);}",
|
|
267
|
-
".fehyjer[data-fui-focus-visible]::after{top:calc(var(--strokeWidthThin) * -1);}",
|
|
268
|
-
".f1e5jfm0[data-fui-focus-visible]::after{right:calc(var(--strokeWidthThin) * -1);}",
|
|
269
|
-
".f1e134r0[data-fui-focus-visible]::after{left:calc(var(--strokeWidthThin) * -1);}",
|
|
270
|
-
".f1ykb25c[data-fui-focus-visible]::after{bottom:calc(var(--strokeWidthThin) * -1);}"
|
|
271
|
-
],
|
|
272
|
-
m: [
|
|
273
|
-
[
|
|
274
|
-
"@media (forced-colors: active){.f8pusc0{background-color:Window;}}",
|
|
275
|
-
{
|
|
276
|
-
m: "(forced-colors: active)"
|
|
277
|
-
}
|
|
278
|
-
],
|
|
279
217
|
[
|
|
280
|
-
"
|
|
218
|
+
".fpqizxz[data-fui-focus-visible]::after{border:var(--strokeWidthThick) solid var(--colorStrokeFocus2);}",
|
|
281
219
|
{
|
|
282
|
-
|
|
220
|
+
p: -2
|
|
283
221
|
}
|
|
284
222
|
],
|
|
285
223
|
[
|
|
286
|
-
"
|
|
224
|
+
".f3znvyf[data-fui-focus-visible]::after{border-radius:var(--borderRadiusMedium);}",
|
|
287
225
|
{
|
|
288
|
-
|
|
226
|
+
p: -1
|
|
289
227
|
}
|
|
290
228
|
],
|
|
229
|
+
".fqkqgbk[data-fui-focus-visible]::after{top:calc(var(--strokeWidthThick) * -1);}",
|
|
230
|
+
".f1as04kd[data-fui-focus-visible]::after{right:calc(var(--strokeWidthThick) * -1);}",
|
|
231
|
+
".ft30ozv[data-fui-focus-visible]::after{left:calc(var(--strokeWidthThick) * -1);}",
|
|
232
|
+
".f8pxvb2[data-fui-focus-visible]::after{bottom:calc(var(--strokeWidthThick) * -1);}"
|
|
233
|
+
],
|
|
234
|
+
m: [
|
|
291
235
|
[
|
|
292
|
-
"@media (forced-colors: active){.
|
|
236
|
+
"@media (forced-colors: active){.f8pusc0{background-color:Window;}}",
|
|
293
237
|
{
|
|
294
238
|
m: "(forced-colors: active)"
|
|
295
239
|
}
|
|
296
240
|
],
|
|
297
241
|
[
|
|
298
|
-
"@media (forced-colors: active){.
|
|
242
|
+
"@media (forced-colors: active){.fqgauei{color:WindowText;}}",
|
|
299
243
|
{
|
|
300
244
|
m: "(forced-colors: active)"
|
|
301
245
|
}
|
|
302
246
|
],
|
|
303
247
|
[
|
|
304
|
-
"@media (forced-colors: active){.
|
|
248
|
+
"@media (forced-colors: active){.f1ko8o2g.fui-CalendarDayGrid__hoverStyle{outline:1px solid Highlight;}}",
|
|
305
249
|
{
|
|
250
|
+
p: -1,
|
|
306
251
|
m: "(forced-colors: active)"
|
|
307
252
|
}
|
|
308
253
|
],
|
|
309
254
|
[
|
|
310
|
-
"@media (forced-colors: active){.
|
|
255
|
+
"@media (forced-colors: active){.fts5qqo.fui-CalendarDayGrid__hoverStyle{z-index:3;}}",
|
|
311
256
|
{
|
|
312
257
|
m: "(forced-colors: active)"
|
|
313
258
|
}
|
|
314
259
|
],
|
|
315
260
|
[
|
|
316
|
-
"@media (forced-colors: active){.
|
|
261
|
+
"@media (forced-colors: active){.fq2wdp5.fui-CalendarDayGrid__hoverStyle .fui-CalendarDayGrid__dayTodayMarker{background-color:Highlight;}}",
|
|
317
262
|
{
|
|
318
263
|
m: "(forced-colors: active)"
|
|
319
264
|
}
|
|
@@ -463,6 +408,128 @@ const useDaySelectedStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
463
408
|
".fq0dbue:hover,.fq0dbue.fui-CalendarDayGrid__hoverStyle,.fq0dbue.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedSelected);}"
|
|
464
409
|
]
|
|
465
410
|
});
|
|
411
|
+
const useDaySingleSelectedStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
412
|
+
base: {
|
|
413
|
+
sj55zd: "ff5vbop",
|
|
414
|
+
E9zv3o: "ft4goo8",
|
|
415
|
+
B2ns3jv: "fy35frb",
|
|
416
|
+
Bwxf4zv: 0,
|
|
417
|
+
Bp8cau8: 0,
|
|
418
|
+
Buy161k: 0,
|
|
419
|
+
Bpzqh5e: 0,
|
|
420
|
+
Fh6yq5: "f8kna22",
|
|
421
|
+
B75pphk: "f3ef5pp",
|
|
422
|
+
Cmeexk: [
|
|
423
|
+
"f1lmnm0c",
|
|
424
|
+
"f1nrej41"
|
|
425
|
+
],
|
|
426
|
+
yen2pv: "f1pt3b1q",
|
|
427
|
+
ydc5we: [
|
|
428
|
+
"f1nrej41",
|
|
429
|
+
"f1lmnm0c"
|
|
430
|
+
],
|
|
431
|
+
Bz06psx: "fcydihv",
|
|
432
|
+
Bvql7r5: [
|
|
433
|
+
"fgb2y1b",
|
|
434
|
+
"fzbode6"
|
|
435
|
+
],
|
|
436
|
+
k24jl4: "fofq8g1",
|
|
437
|
+
Bksmc0g: [
|
|
438
|
+
"fzbode6",
|
|
439
|
+
"fgb2y1b"
|
|
440
|
+
],
|
|
441
|
+
Buxuwzc: "f36ub4m",
|
|
442
|
+
xn840g: [
|
|
443
|
+
"f19aczhj",
|
|
444
|
+
"ffhc5ea"
|
|
445
|
+
],
|
|
446
|
+
Jh9m0u: "flfq9gv",
|
|
447
|
+
Fmkg4n: [
|
|
448
|
+
"ffhc5ea",
|
|
449
|
+
"f19aczhj"
|
|
450
|
+
],
|
|
451
|
+
kmtgwu: "fv38a4k",
|
|
452
|
+
g6m10a: "f1wil596",
|
|
453
|
+
Birdjzs: [
|
|
454
|
+
"f1941p3i",
|
|
455
|
+
"fsfopon"
|
|
456
|
+
],
|
|
457
|
+
yojo9v: "f14tb4e3",
|
|
458
|
+
qdeutu: [
|
|
459
|
+
"fsfopon",
|
|
460
|
+
"f1941p3i"
|
|
461
|
+
],
|
|
462
|
+
yfp87c: "f161hy0n",
|
|
463
|
+
zuskld: "fbp2bxz"
|
|
464
|
+
}
|
|
465
|
+
}, {
|
|
466
|
+
d: [
|
|
467
|
+
".ff5vbop{color:var(--colorNeutralForeground1Static);}",
|
|
468
|
+
".fy35frb>.fui-CalendarDayGrid__dayButton{background-color:var(--colorBrandBackgroundInvertedSelected);}",
|
|
469
|
+
[
|
|
470
|
+
".f8kna22>.fui-CalendarDayGrid__dayButton{border-radius:var(--borderRadiusMedium);}",
|
|
471
|
+
{
|
|
472
|
+
p: -1
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
".f3ef5pp>.fui-CalendarDayGrid__dayButton{border-top-width:1px;}",
|
|
476
|
+
".f1lmnm0c>.fui-CalendarDayGrid__dayButton{border-right-width:1px;}",
|
|
477
|
+
".f1nrej41>.fui-CalendarDayGrid__dayButton{border-left-width:1px;}",
|
|
478
|
+
".f1pt3b1q>.fui-CalendarDayGrid__dayButton{border-bottom-width:1px;}",
|
|
479
|
+
".fcydihv>.fui-CalendarDayGrid__dayButton{border-top-style:solid;}",
|
|
480
|
+
".fgb2y1b>.fui-CalendarDayGrid__dayButton{border-right-style:solid;}",
|
|
481
|
+
".fzbode6>.fui-CalendarDayGrid__dayButton{border-left-style:solid;}",
|
|
482
|
+
".fofq8g1>.fui-CalendarDayGrid__dayButton{border-bottom-style:solid;}",
|
|
483
|
+
".f36ub4m>.fui-CalendarDayGrid__dayButton{border-top-color:var(--colorBrandStroke1);}",
|
|
484
|
+
".f19aczhj>.fui-CalendarDayGrid__dayButton{border-right-color:var(--colorBrandStroke1);}",
|
|
485
|
+
".ffhc5ea>.fui-CalendarDayGrid__dayButton{border-left-color:var(--colorBrandStroke1);}",
|
|
486
|
+
".flfq9gv>.fui-CalendarDayGrid__dayButton{border-bottom-color:var(--colorBrandStroke1);}"
|
|
487
|
+
],
|
|
488
|
+
m: [
|
|
489
|
+
[
|
|
490
|
+
"@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
|
|
491
|
+
{
|
|
492
|
+
m: "(forced-colors: active)"
|
|
493
|
+
}
|
|
494
|
+
],
|
|
495
|
+
[
|
|
496
|
+
"@media (forced-colors: active){.fv38a4k>.fui-CalendarDayGrid__dayButton{background-color:Highlight;}}",
|
|
497
|
+
{
|
|
498
|
+
m: "(forced-colors: active)"
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
[
|
|
502
|
+
"@media (forced-colors: active){.f1wil596>.fui-CalendarDayGrid__dayButton{border-top-color:Highlight;}}",
|
|
503
|
+
{
|
|
504
|
+
m: "(forced-colors: active)"
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
[
|
|
508
|
+
"@media (forced-colors: active){.f1941p3i>.fui-CalendarDayGrid__dayButton{border-right-color:Highlight;}.fsfopon>.fui-CalendarDayGrid__dayButton{border-left-color:Highlight;}}",
|
|
509
|
+
{
|
|
510
|
+
m: "(forced-colors: active)"
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
[
|
|
514
|
+
"@media (forced-colors: active){.f14tb4e3>.fui-CalendarDayGrid__dayButton{border-bottom-color:Highlight;}}",
|
|
515
|
+
{
|
|
516
|
+
m: "(forced-colors: active)"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
[
|
|
520
|
+
"@media (forced-colors: active){.f161hy0n>.fui-CalendarDayGrid__dayButton{color:HighlightText;}}",
|
|
521
|
+
{
|
|
522
|
+
m: "(forced-colors: active)"
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
[
|
|
526
|
+
"@media (forced-colors: active){.fbp2bxz>.fui-CalendarDayGrid__dayButton{forced-color-adjust:none;}}",
|
|
527
|
+
{
|
|
528
|
+
m: "(forced-colors: active)"
|
|
529
|
+
}
|
|
530
|
+
]
|
|
531
|
+
]
|
|
532
|
+
});
|
|
466
533
|
const useWeekRowStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
467
534
|
base: {
|
|
468
535
|
vin17d: "f5f2jbu",
|
|
@@ -528,75 +595,62 @@ const useWeekDayLabelCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
528
595
|
const useWeekNumberCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
529
596
|
base: {
|
|
530
597
|
De3pzq: "f1c21dwh",
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
zhjwy3: [
|
|
538
|
-
"fw35ms5",
|
|
539
|
-
"f7pw515"
|
|
540
|
-
],
|
|
541
|
-
Bekrc4i: [
|
|
542
|
-
"f1hqa2wf",
|
|
543
|
-
"finvdd3"
|
|
544
|
-
],
|
|
545
|
-
vrafjx: [
|
|
546
|
-
"fcdblym",
|
|
547
|
-
"fjik90z"
|
|
598
|
+
h3c5rm: 0,
|
|
599
|
+
vrafjx: 0,
|
|
600
|
+
Bekrc4i: 0,
|
|
601
|
+
u1mtju: [
|
|
602
|
+
"fe2nn5g",
|
|
603
|
+
"f1rcbay7"
|
|
548
604
|
],
|
|
549
605
|
B7ck84d: "f1ewtqcl",
|
|
550
606
|
sj55zd: "fxc4j92",
|
|
551
607
|
Be2twd7: "fy9rknc",
|
|
552
608
|
Bhrd7zp: "figsok6",
|
|
553
609
|
Bqenvij: "fxldao9",
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
z8tnut: "f1g0x7ka",
|
|
565
|
-
z189sj: [
|
|
566
|
-
"fhxju0i",
|
|
567
|
-
"f1cnd47f"
|
|
568
|
-
],
|
|
569
|
-
Byoj8tv: "f1qch9an",
|
|
570
|
-
uwmqm3: [
|
|
571
|
-
"f1cnd47f",
|
|
572
|
-
"fhxju0i"
|
|
573
|
-
],
|
|
610
|
+
jrapky: 0,
|
|
611
|
+
Frg6f3: 0,
|
|
612
|
+
t21cq0: 0,
|
|
613
|
+
B6of3ja: 0,
|
|
614
|
+
B74szlk: "f1s184ao",
|
|
615
|
+
Byoj8tv: 0,
|
|
616
|
+
uwmqm3: 0,
|
|
617
|
+
z189sj: 0,
|
|
618
|
+
z8tnut: 0,
|
|
619
|
+
B0ocmuz: "f1mk8lai",
|
|
574
620
|
a9b677: "f1w9dchk"
|
|
575
621
|
}
|
|
576
622
|
}, {
|
|
577
623
|
d: [
|
|
578
624
|
".f1c21dwh{background-color:var(--colorTransparentBackground);}",
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
625
|
+
[
|
|
626
|
+
".fe2nn5g{border-right:1px solid var(--colorNeutralStroke2);}",
|
|
627
|
+
{
|
|
628
|
+
p: -1
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
[
|
|
632
|
+
".f1rcbay7{border-left:1px solid var(--colorNeutralStroke2);}",
|
|
633
|
+
{
|
|
634
|
+
p: -1
|
|
635
|
+
}
|
|
636
|
+
],
|
|
587
637
|
".f1ewtqcl{box-sizing:border-box;}",
|
|
588
638
|
".fxc4j92{color:var(--colorNeutralForeground4);}",
|
|
589
639
|
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
|
590
640
|
".figsok6{font-weight:var(--fontWeightRegular);}",
|
|
591
641
|
".fxldao9{height:28px;}",
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
642
|
+
[
|
|
643
|
+
".f1s184ao{margin:0;}",
|
|
644
|
+
{
|
|
645
|
+
p: -1
|
|
646
|
+
}
|
|
647
|
+
],
|
|
648
|
+
[
|
|
649
|
+
".f1mk8lai{padding:0;}",
|
|
650
|
+
{
|
|
651
|
+
p: -1
|
|
652
|
+
}
|
|
653
|
+
],
|
|
600
654
|
".f1w9dchk{width:28px;}"
|
|
601
655
|
]
|
|
602
656
|
});
|
|
@@ -645,103 +699,134 @@ const useDayOutsideNavigatedMonthStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
645
699
|
const useDayButtonStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
646
700
|
base: {
|
|
647
701
|
De3pzq: "f1c21dwh",
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
vrafjx: [
|
|
666
|
-
"f1n71otn",
|
|
667
|
-
"f1deefiw"
|
|
668
|
-
],
|
|
669
|
-
oivjwe: "f1h8hb77",
|
|
670
|
-
wvpqe5: [
|
|
671
|
-
"f1deefiw",
|
|
672
|
-
"f1n71otn"
|
|
673
|
-
],
|
|
702
|
+
Bgfg5da: 0,
|
|
703
|
+
B9xav0g: 0,
|
|
704
|
+
oivjwe: 0,
|
|
705
|
+
Bn0qgzm: 0,
|
|
706
|
+
B4g9neb: 0,
|
|
707
|
+
zhjwy3: 0,
|
|
708
|
+
wvpqe5: 0,
|
|
709
|
+
ibv6hh: 0,
|
|
710
|
+
u1mtju: 0,
|
|
711
|
+
h3c5rm: 0,
|
|
712
|
+
vrafjx: 0,
|
|
713
|
+
Bekrc4i: 0,
|
|
714
|
+
i8vvqc: 0,
|
|
715
|
+
g2u3we: 0,
|
|
716
|
+
icvyot: 0,
|
|
717
|
+
B4j52fo: 0,
|
|
718
|
+
irswps: "f3bhgqh",
|
|
674
719
|
sj55zd: "f1ym3bx4",
|
|
675
720
|
Bceei9c: "f1k6fduh",
|
|
676
721
|
Be2twd7: "fy9rknc",
|
|
677
722
|
Bhrd7zp: "ff5ikls",
|
|
678
723
|
Bqenvij: "frvgh55",
|
|
679
724
|
Bg96gwp: "f8xlz6g",
|
|
680
|
-
B68tc82:
|
|
681
|
-
Bmxbyg5:
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
uwmqm3: [
|
|
689
|
-
"f1cnd47f",
|
|
690
|
-
"fhxju0i"
|
|
691
|
-
],
|
|
725
|
+
B68tc82: 0,
|
|
726
|
+
Bmxbyg5: 0,
|
|
727
|
+
Bpg54ce: "f1gl81tg",
|
|
728
|
+
Byoj8tv: 0,
|
|
729
|
+
uwmqm3: 0,
|
|
730
|
+
z189sj: 0,
|
|
731
|
+
z8tnut: 0,
|
|
732
|
+
B0ocmuz: "f1mk8lai",
|
|
692
733
|
a9b677: "fq4mcun",
|
|
693
734
|
Bx0yju7: "f10y451g",
|
|
694
|
-
l98f4w: "f1dwpgx3"
|
|
735
|
+
l98f4w: "f1dwpgx3",
|
|
736
|
+
Jwef8y: "f18a0fwf",
|
|
737
|
+
Btmb5he: 0,
|
|
738
|
+
gu71dq: 0,
|
|
739
|
+
B2zomw9: 0,
|
|
740
|
+
Fgk69s: 0,
|
|
741
|
+
Bw6eyry: "f1mhq3ai",
|
|
742
|
+
ecr2s2: "f7la2e8"
|
|
695
743
|
}
|
|
696
744
|
}, {
|
|
697
745
|
d: [
|
|
698
746
|
".f1c21dwh{background-color:var(--colorTransparentBackground);}",
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
".f1deefiw{border-left-style:none;}",
|
|
706
|
-
".f1h8hb77{border-bottom-style:none;}",
|
|
747
|
+
[
|
|
748
|
+
".f3bhgqh{border:none;}",
|
|
749
|
+
{
|
|
750
|
+
p: -2
|
|
751
|
+
}
|
|
752
|
+
],
|
|
707
753
|
".f1ym3bx4{color:inherit;}",
|
|
708
754
|
".f1k6fduh{cursor:pointer;}",
|
|
709
755
|
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
|
710
756
|
".ff5ikls{font-weight:inherit;}",
|
|
711
757
|
".frvgh55{height:24px;}",
|
|
712
758
|
".f8xlz6g{line-height:24px;}",
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
759
|
+
[
|
|
760
|
+
".f1gl81tg{overflow:visible;}",
|
|
761
|
+
{
|
|
762
|
+
p: -1
|
|
763
|
+
}
|
|
764
|
+
],
|
|
765
|
+
[
|
|
766
|
+
".f1mk8lai{padding:0;}",
|
|
767
|
+
{
|
|
768
|
+
p: -1
|
|
769
|
+
}
|
|
770
|
+
],
|
|
719
771
|
".fq4mcun{width:24px;}",
|
|
720
772
|
".f10y451gspan{height:inherit;}",
|
|
721
773
|
".f1dwpgx3span{line-height:inherit;}"
|
|
774
|
+
],
|
|
775
|
+
h: [
|
|
776
|
+
".f18a0fwf:hover{background-color:var(--colorBrandBackgroundInvertedHover);}",
|
|
777
|
+
[
|
|
778
|
+
".f1mhq3ai:hover{border-radius:var(--borderRadiusMedium);}",
|
|
779
|
+
{
|
|
780
|
+
p: -1
|
|
781
|
+
}
|
|
782
|
+
]
|
|
783
|
+
],
|
|
784
|
+
a: [
|
|
785
|
+
".f7la2e8:active{background-color:var(--colorBrandBackgroundInvertedPressed);}"
|
|
722
786
|
]
|
|
723
787
|
});
|
|
724
788
|
const useDayIsTodayStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
725
789
|
base: {
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
"fh9p2o2"
|
|
730
|
-
],
|
|
731
|
-
Beyfa6y: [
|
|
732
|
-
"fh9p2o2",
|
|
733
|
-
"f1xbx3v5"
|
|
734
|
-
],
|
|
735
|
-
B7oj6ja: [
|
|
736
|
-
"f18mldvw",
|
|
737
|
-
"f3h6kr5"
|
|
738
|
-
],
|
|
739
|
-
Btl43ni: [
|
|
740
|
-
"f3h6kr5",
|
|
741
|
-
"f18mldvw"
|
|
742
|
-
],
|
|
790
|
+
mc9l5x: "f22iagw",
|
|
791
|
+
Brf1p80: "f4d9j23",
|
|
792
|
+
Bt984gj: "f122n59",
|
|
743
793
|
sj55zd: "f1phragk",
|
|
744
794
|
Bhrd7zp: "fl43uef",
|
|
795
|
+
kof2un: "f1b5s8wn",
|
|
796
|
+
E9zv3o: "ft4goo8"
|
|
797
|
+
}
|
|
798
|
+
}, {
|
|
799
|
+
d: [
|
|
800
|
+
".f22iagw{display:flex;}",
|
|
801
|
+
".f4d9j23{justify-content:center;}",
|
|
802
|
+
".f122n59{align-items:center;}",
|
|
803
|
+
".f1phragk{color:var(--colorNeutralForegroundOnBrand);}",
|
|
804
|
+
".fl43uef{font-weight:var(--fontWeightSemibold);}",
|
|
805
|
+
".f1b5s8wn>.fui-CalendarDayGrid__dayMarker{background-color:var(--colorNeutralForegroundOnBrand);}"
|
|
806
|
+
],
|
|
807
|
+
m: [
|
|
808
|
+
[
|
|
809
|
+
"@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
|
|
810
|
+
{
|
|
811
|
+
m: "(forced-colors: active)"
|
|
812
|
+
}
|
|
813
|
+
]
|
|
814
|
+
]
|
|
815
|
+
});
|
|
816
|
+
const useDayTodayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
817
|
+
base: {
|
|
818
|
+
mc9l5x: "f22iagw",
|
|
819
|
+
Brf1p80: "f4d9j23",
|
|
820
|
+
Bt984gj: "f122n59",
|
|
821
|
+
De3pzq: "ffp7eso",
|
|
822
|
+
Beyfa6y: 0,
|
|
823
|
+
Bbmb7ep: 0,
|
|
824
|
+
Btl43ni: 0,
|
|
825
|
+
B7oj6ja: 0,
|
|
826
|
+
Dimara: "f1qtlz2s",
|
|
827
|
+
a9b677: "f64fuq3",
|
|
828
|
+
Bqenvij: "fjamq6b",
|
|
829
|
+
Bg96gwp: "f1n95isl",
|
|
745
830
|
Bsw6fvg: "fg374yq",
|
|
746
831
|
Bjwas2f: "fx4t0an",
|
|
747
832
|
Bn1d65q: [
|
|
@@ -754,20 +839,23 @@ const useDayIsTodayStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
754
839
|
"f1bd7qk0"
|
|
755
840
|
],
|
|
756
841
|
Bbusuzp: "f1yig07e",
|
|
757
|
-
ycbfsm: "fkc42ay"
|
|
758
|
-
kof2un: "f1b5s8wn",
|
|
759
|
-
E9zv3o: "ft4goo8"
|
|
842
|
+
ycbfsm: "fkc42ay"
|
|
760
843
|
}
|
|
761
844
|
}, {
|
|
762
845
|
d: [
|
|
846
|
+
".f22iagw{display:flex;}",
|
|
847
|
+
".f4d9j23{justify-content:center;}",
|
|
848
|
+
".f122n59{align-items:center;}",
|
|
763
849
|
".ffp7eso{background-color:var(--colorBrandBackground);}",
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
".
|
|
850
|
+
[
|
|
851
|
+
".f1qtlz2s{border-radius:100%;}",
|
|
852
|
+
{
|
|
853
|
+
p: -1
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
".f64fuq3{width:20px;}",
|
|
857
|
+
".fjamq6b{height:20px;}",
|
|
858
|
+
".f1n95isl{line-height:20px;}"
|
|
771
859
|
],
|
|
772
860
|
m: [
|
|
773
861
|
[
|
|
@@ -805,12 +893,6 @@ const useDayIsTodayStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
805
893
|
{
|
|
806
894
|
m: "(forced-colors: active)"
|
|
807
895
|
}
|
|
808
|
-
],
|
|
809
|
-
[
|
|
810
|
-
"@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
|
|
811
|
-
{
|
|
812
|
-
m: "(forced-colors: active)"
|
|
813
|
-
}
|
|
814
896
|
]
|
|
815
897
|
]
|
|
816
898
|
});
|
|
@@ -818,34 +900,39 @@ const useFirstTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
818
900
|
base: {
|
|
819
901
|
Bqenvij: "fniina8",
|
|
820
902
|
abs64n: "fk73vx1",
|
|
821
|
-
B68tc82:
|
|
822
|
-
Bmxbyg5:
|
|
903
|
+
B68tc82: 0,
|
|
904
|
+
Bmxbyg5: 0,
|
|
905
|
+
Bpg54ce: "f1a3p1vp",
|
|
823
906
|
qhf8xq: "f1euv43f",
|
|
824
907
|
a9b677: "f3tsq5r"
|
|
825
908
|
},
|
|
826
909
|
verticalForward: {
|
|
827
910
|
vin17d: "f5f2jbu",
|
|
828
911
|
Bf5fcs: "fywypte",
|
|
829
|
-
Bv12yb3: "
|
|
912
|
+
Bv12yb3: "fupj2f5",
|
|
830
913
|
Ezkn3b: "f1ee2ue"
|
|
831
914
|
}
|
|
832
915
|
}, {
|
|
833
916
|
d: [
|
|
834
917
|
".fniina8{height:0;}",
|
|
835
918
|
".fk73vx1{opacity:0;}",
|
|
836
|
-
|
|
837
|
-
|
|
919
|
+
[
|
|
920
|
+
".f1a3p1vp{overflow:hidden;}",
|
|
921
|
+
{
|
|
922
|
+
p: -1
|
|
923
|
+
}
|
|
924
|
+
],
|
|
838
925
|
".f1euv43f{position:absolute;}",
|
|
839
926
|
".f3tsq5r{width:0;}",
|
|
840
927
|
".f5f2jbu{animation-duration:0.367s;}",
|
|
841
928
|
".fywypte{animation-fill-mode:both;}",
|
|
842
|
-
".
|
|
929
|
+
".fupj2f5{animation-name:f199e34v,f76svrd,f13agkrc;}",
|
|
843
930
|
".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
|
|
844
931
|
],
|
|
845
932
|
k: [
|
|
846
933
|
"@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
|
|
847
934
|
"@keyframes f76svrd{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -20px, 0);}}",
|
|
848
|
-
"@keyframes
|
|
935
|
+
"@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"
|
|
849
936
|
]
|
|
850
937
|
});
|
|
851
938
|
const useLastTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
@@ -853,15 +940,16 @@ const useLastTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
853
940
|
Bqenvij: "fniina8",
|
|
854
941
|
B6of3ja: "flykjtj",
|
|
855
942
|
abs64n: "fk73vx1",
|
|
856
|
-
B68tc82:
|
|
857
|
-
Bmxbyg5:
|
|
943
|
+
B68tc82: 0,
|
|
944
|
+
Bmxbyg5: 0,
|
|
945
|
+
Bpg54ce: "f1a3p1vp",
|
|
858
946
|
qhf8xq: "f1euv43f",
|
|
859
947
|
a9b677: "f3tsq5r"
|
|
860
948
|
},
|
|
861
949
|
verticalBackward: {
|
|
862
950
|
vin17d: "f5f2jbu",
|
|
863
951
|
Bf5fcs: "fywypte",
|
|
864
|
-
Bv12yb3: "
|
|
952
|
+
Bv12yb3: "fifoktk",
|
|
865
953
|
Ezkn3b: "f1ee2ue"
|
|
866
954
|
}
|
|
867
955
|
}, {
|
|
@@ -869,56 +957,44 @@ const useLastTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
869
957
|
".fniina8{height:0;}",
|
|
870
958
|
".flykjtj{margin-top:-28px;}",
|
|
871
959
|
".fk73vx1{opacity:0;}",
|
|
872
|
-
|
|
873
|
-
|
|
960
|
+
[
|
|
961
|
+
".f1a3p1vp{overflow:hidden;}",
|
|
962
|
+
{
|
|
963
|
+
p: -1
|
|
964
|
+
}
|
|
965
|
+
],
|
|
874
966
|
".f1euv43f{position:absolute;}",
|
|
875
967
|
".f3tsq5r{width:0;}",
|
|
876
968
|
".f5f2jbu{animation-duration:0.367s;}",
|
|
877
969
|
".fywypte{animation-fill-mode:both;}",
|
|
878
|
-
".
|
|
970
|
+
".fifoktk{animation-name:f199e34v,f18895iq,f13agkrc;}",
|
|
879
971
|
".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
|
|
880
972
|
],
|
|
881
973
|
k: [
|
|
882
974
|
"@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
|
|
883
975
|
"@keyframes f18895iq{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 20px, 0);}}",
|
|
884
|
-
"@keyframes
|
|
976
|
+
"@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"
|
|
885
977
|
]
|
|
886
978
|
});
|
|
887
979
|
const useDayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
888
980
|
base: {
|
|
889
981
|
De3pzq: "fnggedw",
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
"fh9p2o2",
|
|
896
|
-
"f1xbx3v5"
|
|
897
|
-
],
|
|
898
|
-
B7oj6ja: [
|
|
899
|
-
"f18mldvw",
|
|
900
|
-
"f3h6kr5"
|
|
901
|
-
],
|
|
902
|
-
Btl43ni: [
|
|
903
|
-
"f3h6kr5",
|
|
904
|
-
"f18mldvw"
|
|
905
|
-
],
|
|
982
|
+
Beyfa6y: 0,
|
|
983
|
+
Bbmb7ep: 0,
|
|
984
|
+
Btl43ni: 0,
|
|
985
|
+
B7oj6ja: 0,
|
|
986
|
+
Dimara: "f1qtlz2s",
|
|
906
987
|
B5kzvoi: "f1oq0udb",
|
|
907
988
|
Bqenvij: "f6ywr7j",
|
|
908
989
|
oyh7mz: [
|
|
909
990
|
"f1vgc2s3",
|
|
910
991
|
"f1e31b4d"
|
|
911
992
|
],
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
jrapky: "f10jk5vf",
|
|
918
|
-
Frg6f3: [
|
|
919
|
-
"fcgxt0o",
|
|
920
|
-
"f1ujusj6"
|
|
921
|
-
],
|
|
993
|
+
jrapky: 0,
|
|
994
|
+
Frg6f3: 0,
|
|
995
|
+
t21cq0: 0,
|
|
996
|
+
B6of3ja: 0,
|
|
997
|
+
B74szlk: "fcpdi13",
|
|
922
998
|
qhf8xq: "f1euv43f",
|
|
923
999
|
j35jbq: [
|
|
924
1000
|
"f1e31b4d",
|
|
@@ -931,18 +1007,22 @@ const useDayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
931
1007
|
}, {
|
|
932
1008
|
d: [
|
|
933
1009
|
".fnggedw{background-color:var(--colorBrandForeground2);}",
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
1010
|
+
[
|
|
1011
|
+
".f1qtlz2s{border-radius:100%;}",
|
|
1012
|
+
{
|
|
1013
|
+
p: -1
|
|
1014
|
+
}
|
|
1015
|
+
],
|
|
938
1016
|
".f1oq0udb{bottom:1px;}",
|
|
939
1017
|
".f6ywr7j{height:4px;}",
|
|
940
1018
|
".f1vgc2s3{left:0;}",
|
|
941
1019
|
".f1e31b4d{right:0;}",
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
1020
|
+
[
|
|
1021
|
+
".fcpdi13{margin:auto;}",
|
|
1022
|
+
{
|
|
1023
|
+
p: -1
|
|
1024
|
+
}
|
|
1025
|
+
],
|
|
946
1026
|
".f1euv43f{position:absolute;}",
|
|
947
1027
|
".faro0ui{width:4px;}"
|
|
948
1028
|
],
|
|
@@ -964,32 +1044,32 @@ const useDayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
964
1044
|
const useCornerBorderAndRadiusStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
965
1045
|
corners: {
|
|
966
1046
|
Cy64m2: [
|
|
967
|
-
"
|
|
968
|
-
"
|
|
1047
|
+
"f1yxjewa",
|
|
1048
|
+
"f5xfyye"
|
|
969
1049
|
],
|
|
970
1050
|
Bnn43bw: [
|
|
971
|
-
"
|
|
972
|
-
"
|
|
1051
|
+
"f1kpdnd7",
|
|
1052
|
+
"fokqrni"
|
|
973
1053
|
],
|
|
974
1054
|
feanbc: [
|
|
975
|
-
"
|
|
976
|
-
"
|
|
1055
|
+
"f127emps",
|
|
1056
|
+
"f1s6s1el"
|
|
977
1057
|
],
|
|
978
1058
|
B4268ip: [
|
|
979
|
-
"
|
|
980
|
-
"
|
|
1059
|
+
"f39vr2a",
|
|
1060
|
+
"frpqyrn"
|
|
981
1061
|
]
|
|
982
1062
|
}
|
|
983
1063
|
}, {
|
|
984
1064
|
d: [
|
|
985
|
-
".
|
|
986
|
-
".
|
|
987
|
-
".
|
|
988
|
-
".
|
|
989
|
-
".
|
|
990
|
-
".
|
|
991
|
-
".
|
|
992
|
-
".
|
|
1065
|
+
".f1yxjewa.fui-CalendarDayGrid__topRightCornerDate{border-top-right-radius:var(--borderRadiusMedium);}",
|
|
1066
|
+
".f5xfyye.fui-CalendarDayGrid__topRightCornerDate{border-top-left-radius:var(--borderRadiusMedium);}",
|
|
1067
|
+
".f1kpdnd7.fui-CalendarDayGrid__topLeftCornerDate{border-top-left-radius:var(--borderRadiusMedium);}",
|
|
1068
|
+
".fokqrni.fui-CalendarDayGrid__topLeftCornerDate{border-top-right-radius:var(--borderRadiusMedium);}",
|
|
1069
|
+
".f127emps.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}",
|
|
1070
|
+
".f1s6s1el.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}",
|
|
1071
|
+
".f39vr2a.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}",
|
|
1072
|
+
".frpqyrn.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}"
|
|
993
1073
|
]
|
|
994
1074
|
});
|
|
995
1075
|
const useCalendarDayGridStyles_unstable = (props)=>{
|
|
@@ -997,6 +1077,7 @@ const useCalendarDayGridStyles_unstable = (props)=>{
|
|
|
997
1077
|
const tableStyles = useTableStyles();
|
|
998
1078
|
const dayCellStyles = useDayCellStyles();
|
|
999
1079
|
const daySelectedStyles = useDaySelectedStyles();
|
|
1080
|
+
const daySingleSelectedStyles = useDaySingleSelectedStyles();
|
|
1000
1081
|
const weekRowStyles = useWeekRowStyles();
|
|
1001
1082
|
const weekDayLabelCellStyles = useWeekDayLabelCellStyles();
|
|
1002
1083
|
const weekNumberCellStyles = useWeekNumberCellStyles();
|
|
@@ -1008,12 +1089,14 @@ const useCalendarDayGridStyles_unstable = (props)=>{
|
|
|
1008
1089
|
const lastTransitionWeekStyles = useLastTransitionWeekStyles();
|
|
1009
1090
|
const dayMarkerStyles = useDayMarkerStyles();
|
|
1010
1091
|
const cornerBorderAndRadiusStyles = useCornerBorderAndRadiusStyles();
|
|
1092
|
+
const dayTodayMarkerStyles = useDayTodayMarkerStyles();
|
|
1011
1093
|
const { animateBackwards, animationDirection, lightenDaysOutsideNavigatedMonth, showWeekNumbers } = props;
|
|
1012
1094
|
return {
|
|
1013
1095
|
wrapper: (0, _react.mergeClasses)(calendarDayGridClassNames.wrapper, wrapperStyles.base),
|
|
1014
1096
|
table: (0, _react.mergeClasses)(calendarDayGridClassNames.table, tableStyles.base, showWeekNumbers && tableStyles.showWeekNumbers),
|
|
1015
1097
|
dayCell: (0, _react.mergeClasses)(calendarDayGridClassNames.dayCell, dayCellStyles.base, dayCellStyles.focusIndicator, cornerBorderAndRadiusStyles.corners),
|
|
1016
1098
|
daySelected: (0, _react.mergeClasses)(calendarDayGridClassNames.daySelected, daySelectedStyles.base),
|
|
1099
|
+
daySingleSelected: (0, _react.mergeClasses)(calendarDayGridClassNames.daySingleSelected, daySingleSelectedStyles.base),
|
|
1017
1100
|
weekRow: (0, _react.mergeClasses)(calendarDayGridClassNames.weekRow, animateBackwards !== undefined && weekRowStyles.base, animateBackwards !== undefined && (animationDirection === _Calendartypes.AnimationDirection.Horizontal ? animateBackwards ? weekRowStyles.horizontalBackward : weekRowStyles.horizontalForward : animateBackwards ? weekRowStyles.verticalBackward : weekRowStyles.verticalForward)),
|
|
1018
1101
|
weekDayLabelCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekDayLabelCell, weekDayLabelCellStyles.base),
|
|
1019
1102
|
weekNumberCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekNumberCell, weekNumberCellStyles.base),
|
|
@@ -1023,6 +1106,7 @@ const useCalendarDayGridStyles_unstable = (props)=>{
|
|
|
1023
1106
|
dayIsToday: (0, _react.mergeClasses)(calendarDayGridClassNames.dayIsToday, dayIsTodayStyles.base),
|
|
1024
1107
|
firstTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.firstTransitionWeek, firstTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && !animateBackwards && firstTransitionWeekStyles.verticalForward),
|
|
1025
1108
|
lastTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.lastTransitionWeek, lastTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && animateBackwards && lastTransitionWeekStyles.verticalBackward),
|
|
1026
|
-
dayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayMarker, dayMarkerStyles.base)
|
|
1109
|
+
dayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayMarker, dayMarkerStyles.base),
|
|
1110
|
+
dayTodayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayTodayMarker, dayTodayMarkerStyles.base)
|
|
1027
1111
|
};
|
|
1028
1112
|
}; //# sourceMappingURL=useCalendarDayGridStyles.styles.js.map
|