@fluentui/react-calendar-compat 0.0.0-nightly-20250423-1342.1 → 0.0.0-nightly-20250423-1415.1
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 +12 -12
- package/dist/index.d.ts +1422 -0
- package/lib/Calendar.js +1 -0
- package/lib/Calendar.js.map +1 -0
- package/lib/CalendarDay.js +1 -0
- package/lib/CalendarDay.js.map +1 -0
- package/lib/CalendarDayGrid.js +1 -0
- package/lib/CalendarDayGrid.js.map +1 -0
- package/lib/CalendarMonth.js +1 -0
- package/lib/CalendarMonth.js.map +1 -0
- package/lib/CalendarPicker.js +1 -0
- package/lib/CalendarPicker.js.map +1 -0
- package/lib/CalendarYear.js +1 -0
- package/lib/CalendarYear.js.map +1 -0
- package/lib/components/Calendar/Calendar.js +308 -0
- package/lib/components/Calendar/Calendar.js.map +1 -0
- package/lib/components/Calendar/Calendar.types.js +10 -0
- package/lib/components/Calendar/Calendar.types.js.map +1 -0
- package/lib/components/Calendar/calendarNavigationIcons.js +7 -0
- package/lib/components/Calendar/calendarNavigationIcons.js.map +1 -0
- package/lib/components/Calendar/defaults.js +2 -0
- package/lib/components/Calendar/defaults.js.map +1 -0
- package/lib/components/Calendar/index.js +4 -0
- package/lib/components/Calendar/index.js.map +1 -0
- package/lib/components/Calendar/useCalendarStyles.styles.js +204 -0
- package/lib/components/Calendar/useCalendarStyles.styles.js.map +1 -0
- package/lib/components/CalendarDay/CalendarDay.js +107 -0
- package/lib/components/CalendarDay/CalendarDay.js.map +1 -0
- package/lib/components/CalendarDay/CalendarDay.types.js +1 -0
- package/lib/components/CalendarDay/CalendarDay.types.js.map +1 -0
- package/lib/components/CalendarDay/index.js +2 -0
- package/lib/components/CalendarDay/index.js.map +1 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js +227 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.js +169 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js +163 -0
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarGridRow.js +27 -0
- package/lib/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js +36 -0
- package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
- package/lib/components/CalendarDayGrid/index.js +2 -0
- package/lib/components/CalendarDayGrid/index.js.map +1 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +620 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js +97 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeeks.js +46 -0
- package/lib/components/CalendarDayGrid/useWeeks.js.map +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.js +261 -0
- package/lib/components/CalendarMonth/CalendarMonth.js.map +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.types.js +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
- package/lib/components/CalendarMonth/index.js +2 -0
- package/lib/components/CalendarMonth/index.js.map +1 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.styles.js +11 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js +3 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib/components/CalendarPicker/index.js +1 -0
- package/lib/components/CalendarPicker/index.js.map +1 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js +462 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -0
- package/lib/components/CalendarYear/CalendarYear.js +298 -0
- package/lib/components/CalendarYear/CalendarYear.js.map +1 -0
- package/lib/components/CalendarYear/CalendarYear.types.js +1 -0
- package/lib/components/CalendarYear/CalendarYear.types.js.map +1 -0
- package/lib/components/CalendarYear/index.js +2 -0
- package/lib/components/CalendarYear/index.js.map +1 -0
- package/lib/components/CalendarYear/useCalendarYearStyles.styles.js +11 -0
- package/lib/components/CalendarYear/useCalendarYearStyles.styles.js.map +1 -0
- package/lib/index.js +7 -0
- package/lib/index.js.map +1 -0
- package/lib/utils/animations.js +96 -0
- package/lib/utils/animations.js.map +1 -0
- package/lib/utils/constants.js +62 -0
- package/lib/utils/constants.js.map +1 -0
- package/lib/utils/dateFormatting/dateFormatting.defaults.js +95 -0
- package/lib/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
- package/lib/utils/dateFormatting/dateFormatting.types.js +1 -0
- package/lib/utils/dateFormatting/dateFormatting.types.js.map +1 -0
- package/lib/utils/dateFormatting/index.js +1 -0
- package/lib/utils/dateFormatting/index.js.map +1 -0
- package/lib/utils/dateGrid/dateGrid.types.js +1 -0
- package/lib/utils/dateGrid/dateGrid.types.js.map +1 -0
- package/lib/utils/dateGrid/findAvailableDate.js +22 -0
- package/lib/utils/dateGrid/findAvailableDate.js.map +1 -0
- package/lib/utils/dateGrid/getBoundedDateRange.js +18 -0
- package/lib/utils/dateGrid/getBoundedDateRange.js.map +1 -0
- package/lib/utils/dateGrid/getDateRangeTypeToUse.js +16 -0
- package/lib/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
- package/lib/utils/dateGrid/getDayGrid.js +72 -0
- package/lib/utils/dateGrid/getDayGrid.js.map +1 -0
- package/lib/utils/dateGrid/index.js +4 -0
- package/lib/utils/dateGrid/index.js.map +1 -0
- package/lib/utils/dateGrid/isAfterMaxDate.js +9 -0
- package/lib/utils/dateGrid/isAfterMaxDate.js.map +1 -0
- package/lib/utils/dateGrid/isBeforeMinDate.js +9 -0
- package/lib/utils/dateGrid/isBeforeMinDate.js.map +1 -0
- package/lib/utils/dateGrid/isContiguous.js +18 -0
- package/lib/utils/dateGrid/isContiguous.js.map +1 -0
- package/lib/utils/dateGrid/isRestrictedDate.js +15 -0
- package/lib/utils/dateGrid/isRestrictedDate.js.map +1 -0
- package/lib/utils/dateMath/dateMath.js +339 -0
- package/lib/utils/dateMath/dateMath.js.map +1 -0
- package/lib/utils/dateMath/index.js +1 -0
- package/lib/utils/dateMath/index.js.map +1 -0
- package/lib/utils/focus.js +24 -0
- package/lib/utils/focus.js.map +1 -0
- package/lib/utils/index.js +6 -0
- package/lib/utils/index.js.map +1 -0
- package/lib-commonjs/Calendar.js +28 -0
- package/lib-commonjs/Calendar.js.map +1 -0
- package/lib-commonjs/CalendarDay.js +22 -0
- package/lib-commonjs/CalendarDay.js.map +1 -0
- package/lib-commonjs/CalendarDayGrid.js +25 -0
- package/lib-commonjs/CalendarDayGrid.js.map +1 -0
- package/lib-commonjs/CalendarMonth.js +19 -0
- package/lib-commonjs/CalendarMonth.js.map +1 -0
- package/lib-commonjs/CalendarPicker.js +19 -0
- package/lib-commonjs/CalendarPicker.js.map +1 -0
- package/lib-commonjs/CalendarYear.js +19 -0
- package/lib-commonjs/CalendarYear.js.map +1 -0
- package/lib-commonjs/components/Calendar/Calendar.js +317 -0
- package/lib-commonjs/components/Calendar/Calendar.js.map +1 -0
- package/lib-commonjs/components/Calendar/Calendar.types.js +21 -0
- package/lib-commonjs/components/Calendar/Calendar.types.js.map +1 -0
- package/lib-commonjs/components/Calendar/calendarNavigationIcons.js +18 -0
- package/lib-commonjs/components/Calendar/calendarNavigationIcons.js.map +1 -0
- package/lib-commonjs/components/Calendar/defaults.js +12 -0
- package/lib-commonjs/components/Calendar/defaults.js.map +1 -0
- package/lib-commonjs/components/Calendar/index.js +31 -0
- package/lib-commonjs/components/Calendar/index.js.map +1 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js +311 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.js +116 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.types.js +6 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.types.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/index.js +23 -0
- package/lib-commonjs/components/CalendarDay/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js +370 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js +180 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js +6 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js +172 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js +36 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js +45 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/index.js +26 -0
- package/lib-commonjs/components/CalendarDayGrid/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +1121 -0
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.js +105 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeeks.js +55 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeeks.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js +270 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js +6 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/index.js +20 -0
- package/lib-commonjs/components/CalendarMonth/index.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.styles.js +15 -0
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js +6 -0
- package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/index.js +19 -0
- package/lib-commonjs/components/CalendarPicker/index.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js +773 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/CalendarYear.js +307 -0
- package/lib-commonjs/components/CalendarYear/CalendarYear.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/CalendarYear.types.js +6 -0
- package/lib-commonjs/components/CalendarYear/CalendarYear.types.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/index.js +20 -0
- package/lib-commonjs/components/CalendarYear/index.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.js +15 -0
- package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.js.map +1 -0
- package/lib-commonjs/index.js +154 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/utils/animations.js +153 -0
- package/lib-commonjs/utils/animations.js.map +1 -0
- package/lib-commonjs/utils/constants.js +92 -0
- package/lib-commonjs/utils/constants.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js +116 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js +4 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/index.js +37 -0
- package/lib-commonjs/utils/dateFormatting/index.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/dateGrid.types.js +4 -0
- package/lib-commonjs/utils/dateGrid/dateGrid.types.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/findAvailableDate.js +29 -0
- package/lib-commonjs/utils/dateGrid/findAvailableDate.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js +23 -0
- package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js +20 -0
- package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/getDayGrid.js +77 -0
- package/lib-commonjs/utils/dateGrid/getDayGrid.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/index.js +28 -0
- package/lib-commonjs/utils/dateGrid/index.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js +15 -0
- package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js +15 -0
- package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/isContiguous.js +28 -0
- package/lib-commonjs/utils/dateGrid/isContiguous.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/isRestrictedDate.js +21 -0
- package/lib-commonjs/utils/dateGrid/isRestrictedDate.js.map +1 -0
- package/lib-commonjs/utils/dateMath/dateMath.js +308 -0
- package/lib-commonjs/utils/dateMath/dateMath.js.map +1 -0
- package/lib-commonjs/utils/dateMath/index.js +67 -0
- package/lib-commonjs/utils/dateMath/index.js.map +1 -0
- package/lib-commonjs/utils/focus.js +29 -0
- package/lib-commonjs/utils/focus.js.map +1 -0
- package/lib-commonjs/utils/index.js +174 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/package.json +9 -9
@@ -0,0 +1,620 @@
|
|
1
|
+
import { tokens } from '@fluentui/react-theme';
|
2
|
+
import { __styles, mergeClasses, shorthands } from '@griffel/react';
|
3
|
+
import { DURATION_2, DURATION_3, EASING_FUNCTION_1, EASING_FUNCTION_2, FADE_IN, FADE_OUT, SLIDE_DOWN_IN20, SLIDE_DOWN_OUT20, SLIDE_LEFT_IN20, SLIDE_RIGHT_IN20, SLIDE_UP_IN20, SLIDE_UP_OUT20, TRANSITION_ROW_DISAPPEARANCE } from '../../utils';
|
4
|
+
import { AnimationDirection } from '../Calendar/Calendar.types';
|
5
|
+
import { weekCornersClassNames } from './useWeekCornerStyles.styles';
|
6
|
+
import { createFocusOutlineStyle } from '@fluentui/react-tabster';
|
7
|
+
/**
|
8
|
+
* @internal
|
9
|
+
*/
|
10
|
+
export const calendarDayGridClassNames = {
|
11
|
+
wrapper: 'fui-CalendarDayGrid__wrapper',
|
12
|
+
table: 'fui-CalendarDayGrid__table',
|
13
|
+
dayCell: 'fui-CalendarDayGrid__dayCell',
|
14
|
+
daySelected: 'fui-CalendarDayGrid__daySelected',
|
15
|
+
daySingleSelected: 'fui-CalendarDayGrid__daySingleSelected',
|
16
|
+
weekRow: 'fui-CalendarDayGrid__weekRow',
|
17
|
+
weekDayLabelCell: 'fui-CalendarDayGrid__weekDayLabelCell',
|
18
|
+
weekNumberCell: 'fui-CalendarDayGrid__weekNumberCell',
|
19
|
+
dayOutsideBounds: 'fui-CalendarDayGrid__dayOutsideBounds',
|
20
|
+
dayOutsideNavigatedMonth: 'fui-CalendarDayGrid__dayOutsideNavigatedMonth',
|
21
|
+
dayButton: 'fui-CalendarDayGrid__dayButton',
|
22
|
+
dayIsToday: 'fui-CalendarDayGrid__dayIsToday',
|
23
|
+
firstTransitionWeek: 'fui-CalendarDayGrid__firstTransitionWeek',
|
24
|
+
lastTransitionWeek: 'fui-CalendarDayGrid__lastTransitionWeek',
|
25
|
+
dayMarker: 'fui-CalendarDayGrid__dayMarker',
|
26
|
+
dayTodayMarker: 'fui-CalendarDayGrid__dayTodayMarker'
|
27
|
+
};
|
28
|
+
/**
|
29
|
+
* @internal
|
30
|
+
*/
|
31
|
+
export const extraCalendarDayGridClassNames = {
|
32
|
+
hoverStyle: 'fui-CalendarDayGrid__hoverStyle',
|
33
|
+
pressedStyle: 'fui-CalendarDayGrid__pressedStyle'
|
34
|
+
};
|
35
|
+
const useWrapperStyles = /*#__PURE__*/__styles({
|
36
|
+
base: {
|
37
|
+
Byoj8tv: "f1fow5ox"
|
38
|
+
}
|
39
|
+
}, {
|
40
|
+
d: [".f1fow5ox{padding-bottom:10px;}"]
|
41
|
+
});
|
42
|
+
const useTableStyles = /*#__PURE__*/__styles({
|
43
|
+
base: {
|
44
|
+
po53p8: "fgkb47j",
|
45
|
+
Bxjg3zr: "f16vktn6",
|
46
|
+
Be2twd7: "fjoy568",
|
47
|
+
B6of3ja: "fvjh0tl",
|
48
|
+
Byoj8tv: "f1fow5ox",
|
49
|
+
qhf8xq: "f10pi13n",
|
50
|
+
B73mfa3: "f14m3nip",
|
51
|
+
fsow6f: "f17mccla",
|
52
|
+
a9b677: "f4m2ahc"
|
53
|
+
},
|
54
|
+
showWeekNumbers: {
|
55
|
+
a9b677: "fl524qk"
|
56
|
+
}
|
57
|
+
}, {
|
58
|
+
d: [".fgkb47j{border-collapse:collapse;}", ".f16vktn6{border-spacing:0;}", ".fjoy568{font-size:inherit;}", ".fvjh0tl{margin-top:4px;}", ".f1fow5ox{padding-bottom:10px;}", ".f10pi13n{position:relative;}", ".f14m3nip{table-layout:fixed;}", ".f17mccla{text-align:center;}", ".f4m2ahc{width:196px;}", ".fl524qk{width:226px;}"]
|
59
|
+
});
|
60
|
+
const useDayCellStyles = /*#__PURE__*/__styles({
|
61
|
+
base: {
|
62
|
+
sj55zd: "f19n0e5",
|
63
|
+
Bceei9c: "f1k6fduh",
|
64
|
+
Be2twd7: "fy9rknc",
|
65
|
+
Bhrd7zp: "figsok6",
|
66
|
+
jrapky: 0,
|
67
|
+
Frg6f3: 0,
|
68
|
+
t21cq0: 0,
|
69
|
+
B6of3ja: 0,
|
70
|
+
B74szlk: "f1s184ao",
|
71
|
+
Byoj8tv: 0,
|
72
|
+
uwmqm3: 0,
|
73
|
+
z189sj: 0,
|
74
|
+
z8tnut: 0,
|
75
|
+
B0ocmuz: "fqtknz5",
|
76
|
+
qhf8xq: "f10pi13n",
|
77
|
+
Bsw6fvg: "f8pusc0",
|
78
|
+
Bbusuzp: "fqgauei",
|
79
|
+
cvlxnx: "fp6dsbd",
|
80
|
+
Bweudez: "f4xgodq",
|
81
|
+
Bsnevi5: 0,
|
82
|
+
z1p9vi: 0,
|
83
|
+
dua3dm: 0,
|
84
|
+
Bf7el8m: "f1ko8o2g",
|
85
|
+
xnb59o: "fts5qqo",
|
86
|
+
B0mcfed: "fq2wdp5",
|
87
|
+
Bj67fi1: "f1lhgsq9",
|
88
|
+
B2gfgcj: "fdbuq6n",
|
89
|
+
B6cqqer: "f16j2ub3",
|
90
|
+
fpurfy: "f5hk6jp",
|
91
|
+
Fioj4w: ["f1d258es", "f1llk4aj"],
|
92
|
+
Bq9yiu4: "ftezgwa",
|
93
|
+
cpbo2x: ["f1llk4aj", "f1d258es"],
|
94
|
+
Bq268z6: "f1iohfpm"
|
95
|
+
},
|
96
|
+
focusIndicator: {
|
97
|
+
Brovlpu: "ftqa4ok",
|
98
|
+
B486eqv: "f2hkw1w",
|
99
|
+
B8q5s1w: "f8hki3x",
|
100
|
+
Bci5o5g: ["f1d2448m", "ffh67wi"],
|
101
|
+
n8qw10: "f1bjia2o",
|
102
|
+
Bdrgwmp: ["ffh67wi", "f1d2448m"],
|
103
|
+
Bb7d1vk: "f226i61",
|
104
|
+
zhwhgb: ["f13kzufm", "fsx75g8"],
|
105
|
+
dhy2o1: "flujwa2",
|
106
|
+
Gfyso: ["fsx75g8", "f13kzufm"],
|
107
|
+
Bm4h7ae: "f15bsgw9",
|
108
|
+
B7ys5i9: "f14e48fq",
|
109
|
+
Busjfv9: "f18yb2kv",
|
110
|
+
Bhk32uz: "fd6o370",
|
111
|
+
f6g5ot: 0,
|
112
|
+
Boxcth7: 0,
|
113
|
+
Bhdgwq3: 0,
|
114
|
+
hgwjuy: 0,
|
115
|
+
Bshpdp8: 0,
|
116
|
+
Bsom6fd: 0,
|
117
|
+
Blkhhs4: 0,
|
118
|
+
Bonggc9: 0,
|
119
|
+
Ddfuxk: 0,
|
120
|
+
i03rao: 0,
|
121
|
+
kclons: 0,
|
122
|
+
clg4pj: 0,
|
123
|
+
Bpqj9nj: 0,
|
124
|
+
B6dhp37: 0,
|
125
|
+
Bf4ptjt: 0,
|
126
|
+
Bqtpl0w: 0,
|
127
|
+
i4rwgc: "fpqizxz",
|
128
|
+
Dah5zi: 0,
|
129
|
+
B1tsrr9: 0,
|
130
|
+
qqdqy8: 0,
|
131
|
+
Bkh64rk: 0,
|
132
|
+
e3fwne: "f3znvyf",
|
133
|
+
J0r882: "fqkqgbk",
|
134
|
+
Bule8hv: ["f1as04kd", "ft30ozv"],
|
135
|
+
Bjwuhne: "f8pxvb2",
|
136
|
+
Ghsupd: ["ft30ozv", "f1as04kd"]
|
137
|
+
}
|
138
|
+
}, {
|
139
|
+
d: [".f19n0e5{color:var(--colorNeutralForeground1);}", ".f1k6fduh{cursor:pointer;}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", [".f1s184ao{margin:0;}", {
|
140
|
+
p: -1
|
141
|
+
}], [".fqtknz5{padding:2px;}", {
|
142
|
+
p: -1
|
143
|
+
}], ".f10pi13n{position:relative;}", ".fp6dsbd.fui-CalendarDayGrid__hoverStyle{color:var(--colorNeutralForeground1Static);}", ".f4xgodq.fui-CalendarDayGrid__hoverStyle{background-color:var(--colorBrandBackgroundInvertedHover);}", ".f1lhgsq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}", ".fdbuq6n.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedPressed);}", ".f8hki3x[data-fui-focus-visible]{border-top-color:transparent;}", ".f1d2448m[data-fui-focus-visible]{border-right-color:transparent;}", ".ffh67wi[data-fui-focus-visible]{border-left-color:transparent;}", ".f1bjia2o[data-fui-focus-visible]{border-bottom-color:transparent;}", ".f15bsgw9[data-fui-focus-visible]::after{content:\"\";}", ".f14e48fq[data-fui-focus-visible]::after{position:absolute;}", ".f18yb2kv[data-fui-focus-visible]::after{pointer-events:none;}", ".fd6o370[data-fui-focus-visible]::after{z-index:1;}", [".fpqizxz[data-fui-focus-visible]::after{border:var(--strokeWidthThick) solid var(--colorStrokeFocus2);}", {
|
144
|
+
p: -2
|
145
|
+
}], [".f3znvyf[data-fui-focus-visible]::after{border-radius:var(--borderRadiusMedium);}", {
|
146
|
+
p: -1
|
147
|
+
}], ".fqkqgbk[data-fui-focus-visible]::after{top:calc(var(--strokeWidthThick) * -1);}", ".f1as04kd[data-fui-focus-visible]::after{right:calc(var(--strokeWidthThick) * -1);}", ".ft30ozv[data-fui-focus-visible]::after{left:calc(var(--strokeWidthThick) * -1);}", ".f8pxvb2[data-fui-focus-visible]::after{bottom:calc(var(--strokeWidthThick) * -1);}"],
|
148
|
+
m: [["@media (forced-colors: active){.f8pusc0{background-color:Window;}}", {
|
149
|
+
m: "(forced-colors: active)"
|
150
|
+
}], ["@media (forced-colors: active){.fqgauei{color:WindowText;}}", {
|
151
|
+
m: "(forced-colors: active)"
|
152
|
+
}], ["@media (forced-colors: active){.f1ko8o2g.fui-CalendarDayGrid__hoverStyle{outline:1px solid Highlight;}}", {
|
153
|
+
p: -1,
|
154
|
+
m: "(forced-colors: active)"
|
155
|
+
}], ["@media (forced-colors: active){.fts5qqo.fui-CalendarDayGrid__hoverStyle{z-index:3;}}", {
|
156
|
+
m: "(forced-colors: active)"
|
157
|
+
}], ["@media (forced-colors: active){.fq2wdp5.fui-CalendarDayGrid__hoverStyle .fui-CalendarDayGrid__dayTodayMarker{background-color:Highlight;}}", {
|
158
|
+
m: "(forced-colors: active)"
|
159
|
+
}], ["@media (forced-colors: active){.f16j2ub3.fui-CalendarDayGrid__pressedStyle{background-color:Window;}}", {
|
160
|
+
m: "(forced-colors: active)"
|
161
|
+
}], ["@media (forced-colors: active){.f5hk6jp.fui-CalendarDayGrid__pressedStyle{border-top-color:Highlight;}}", {
|
162
|
+
m: "(forced-colors: active)"
|
163
|
+
}], ["@media (forced-colors: active){.f1d258es.fui-CalendarDayGrid__pressedStyle{border-right-color:Highlight;}.f1llk4aj.fui-CalendarDayGrid__pressedStyle{border-left-color:Highlight;}}", {
|
164
|
+
m: "(forced-colors: active)"
|
165
|
+
}], ["@media (forced-colors: active){.ftezgwa.fui-CalendarDayGrid__pressedStyle{border-bottom-color:Highlight;}}", {
|
166
|
+
m: "(forced-colors: active)"
|
167
|
+
}], ["@media (forced-colors: active){.f1iohfpm.fui-CalendarDayGrid__pressedStyle{color:Highlight;}}", {
|
168
|
+
m: "(forced-colors: active)"
|
169
|
+
}], ["@media (forced-colors: active){.f226i61[data-fui-focus-visible]::after{border-top-color:Highlight;}}", {
|
170
|
+
m: "(forced-colors: active)"
|
171
|
+
}], ["@media (forced-colors: active){.f13kzufm[data-fui-focus-visible]::after{border-right-color:Highlight;}.fsx75g8[data-fui-focus-visible]::after{border-left-color:Highlight;}}", {
|
172
|
+
m: "(forced-colors: active)"
|
173
|
+
}], ["@media (forced-colors: active){.flujwa2[data-fui-focus-visible]::after{border-bottom-color:Highlight;}}", {
|
174
|
+
m: "(forced-colors: active)"
|
175
|
+
}]],
|
176
|
+
f: [".ftqa4ok:focus{outline-style:none;}"],
|
177
|
+
i: [".f2hkw1w:focus-visible{outline-style:none;}"]
|
178
|
+
});
|
179
|
+
const useDaySelectedStyles = /*#__PURE__*/__styles({
|
180
|
+
base: {
|
181
|
+
De3pzq: "f1vevd59",
|
182
|
+
sj55zd: "ff5vbop",
|
183
|
+
Bsw6fvg: "f1rirnrt",
|
184
|
+
Bjwas2f: "f132fbg1",
|
185
|
+
Bn1d65q: ["f1ene5x0", "fzbc999"],
|
186
|
+
Bxeuatn: "f6jgcol",
|
187
|
+
n51gp8: ["fzbc999", "f1ene5x0"],
|
188
|
+
Bbusuzp: "f1lkg8j3",
|
189
|
+
ycbfsm: "fkc42ay",
|
190
|
+
a3nq4f: "f1chdfq9",
|
191
|
+
Bnf3alp: "fq0dbue",
|
192
|
+
H2c3sd: "f3pe0v7",
|
193
|
+
qu8ld: "f3t0uu2",
|
194
|
+
E9zv3o: "ft4goo8"
|
195
|
+
}
|
196
|
+
}, {
|
197
|
+
d: [".f1vevd59{background-color:var(--colorBrandBackgroundInvertedSelected);}", ".ff5vbop{color:var(--colorNeutralForeground1Static);}"],
|
198
|
+
m: [["@media (forced-colors: active){.f1rirnrt{background-color:Highlight;}}", {
|
199
|
+
m: "(forced-colors: active)"
|
200
|
+
}], ["@media (forced-colors: active){.f132fbg1{border-top-color:Highlight;}}", {
|
201
|
+
m: "(forced-colors: active)"
|
202
|
+
}], ["@media (forced-colors: active){.f1ene5x0{border-right-color:Highlight;}.fzbc999{border-left-color:Highlight;}}", {
|
203
|
+
m: "(forced-colors: active)"
|
204
|
+
}], ["@media (forced-colors: active){.f6jgcol{border-bottom-color:Highlight;}}", {
|
205
|
+
m: "(forced-colors: active)"
|
206
|
+
}], ["@media (forced-colors: active){.f1lkg8j3{color:HighlightText;}}", {
|
207
|
+
m: "(forced-colors: active)"
|
208
|
+
}], ["@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}", {
|
209
|
+
m: "(forced-colors: active)"
|
210
|
+
}], ["@media (forced-colors: active){.f3pe0v7:hover,.f3pe0v7.fui-CalendarDayGrid__hoverStyle,.f3pe0v7.fui-CalendarDayGrid__pressedStyle{background-color:Highlight;}}", {
|
211
|
+
m: "(forced-colors: active)"
|
212
|
+
}], ["@media (forced-colors: active){.f3t0uu2:hover,.f3t0uu2.fui-CalendarDayGrid__hoverStyle,.f3t0uu2.fui-CalendarDayGrid__pressedStyle{color:HighlightText;}}", {
|
213
|
+
m: "(forced-colors: active)"
|
214
|
+
}], ["@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}", {
|
215
|
+
m: "(forced-colors: active)"
|
216
|
+
}]],
|
217
|
+
h: [".f1chdfq9:hover,.f1chdfq9.fui-CalendarDayGrid__hoverStyle,.f1chdfq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}", ".fq0dbue:hover,.fq0dbue.fui-CalendarDayGrid__hoverStyle,.fq0dbue.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedSelected);}"]
|
218
|
+
});
|
219
|
+
const useDaySingleSelectedStyles = /*#__PURE__*/__styles({
|
220
|
+
base: {
|
221
|
+
sj55zd: "ff5vbop",
|
222
|
+
E9zv3o: "ft4goo8",
|
223
|
+
B2ns3jv: "fy35frb",
|
224
|
+
Bwxf4zv: 0,
|
225
|
+
Bp8cau8: 0,
|
226
|
+
Buy161k: 0,
|
227
|
+
Bpzqh5e: 0,
|
228
|
+
Fh6yq5: "f8kna22",
|
229
|
+
B75pphk: "f3ef5pp",
|
230
|
+
Cmeexk: ["f1lmnm0c", "f1nrej41"],
|
231
|
+
yen2pv: "f1pt3b1q",
|
232
|
+
ydc5we: ["f1nrej41", "f1lmnm0c"],
|
233
|
+
Bz06psx: "fcydihv",
|
234
|
+
Bvql7r5: ["fgb2y1b", "fzbode6"],
|
235
|
+
k24jl4: "fofq8g1",
|
236
|
+
Bksmc0g: ["fzbode6", "fgb2y1b"],
|
237
|
+
Buxuwzc: "f36ub4m",
|
238
|
+
xn840g: ["f19aczhj", "ffhc5ea"],
|
239
|
+
Jh9m0u: "flfq9gv",
|
240
|
+
Fmkg4n: ["ffhc5ea", "f19aczhj"],
|
241
|
+
kmtgwu: "fv38a4k",
|
242
|
+
g6m10a: "f1wil596",
|
243
|
+
Birdjzs: ["f1941p3i", "fsfopon"],
|
244
|
+
yojo9v: "f14tb4e3",
|
245
|
+
qdeutu: ["fsfopon", "f1941p3i"],
|
246
|
+
yfp87c: "f161hy0n",
|
247
|
+
zuskld: "fbp2bxz"
|
248
|
+
}
|
249
|
+
}, {
|
250
|
+
d: [".ff5vbop{color:var(--colorNeutralForeground1Static);}", ".fy35frb>.fui-CalendarDayGrid__dayButton{background-color:var(--colorBrandBackgroundInvertedSelected);}", [".f8kna22>.fui-CalendarDayGrid__dayButton{border-radius:var(--borderRadiusMedium);}", {
|
251
|
+
p: -1
|
252
|
+
}], ".f3ef5pp>.fui-CalendarDayGrid__dayButton{border-top-width:1px;}", ".f1lmnm0c>.fui-CalendarDayGrid__dayButton{border-right-width:1px;}", ".f1nrej41>.fui-CalendarDayGrid__dayButton{border-left-width:1px;}", ".f1pt3b1q>.fui-CalendarDayGrid__dayButton{border-bottom-width:1px;}", ".fcydihv>.fui-CalendarDayGrid__dayButton{border-top-style:solid;}", ".fgb2y1b>.fui-CalendarDayGrid__dayButton{border-right-style:solid;}", ".fzbode6>.fui-CalendarDayGrid__dayButton{border-left-style:solid;}", ".fofq8g1>.fui-CalendarDayGrid__dayButton{border-bottom-style:solid;}", ".f36ub4m>.fui-CalendarDayGrid__dayButton{border-top-color:var(--colorBrandStroke1);}", ".f19aczhj>.fui-CalendarDayGrid__dayButton{border-right-color:var(--colorBrandStroke1);}", ".ffhc5ea>.fui-CalendarDayGrid__dayButton{border-left-color:var(--colorBrandStroke1);}", ".flfq9gv>.fui-CalendarDayGrid__dayButton{border-bottom-color:var(--colorBrandStroke1);}"],
|
253
|
+
m: [["@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}", {
|
254
|
+
m: "(forced-colors: active)"
|
255
|
+
}], ["@media (forced-colors: active){.fv38a4k>.fui-CalendarDayGrid__dayButton{background-color:Highlight;}}", {
|
256
|
+
m: "(forced-colors: active)"
|
257
|
+
}], ["@media (forced-colors: active){.f1wil596>.fui-CalendarDayGrid__dayButton{border-top-color:Highlight;}}", {
|
258
|
+
m: "(forced-colors: active)"
|
259
|
+
}], ["@media (forced-colors: active){.f1941p3i>.fui-CalendarDayGrid__dayButton{border-right-color:Highlight;}.fsfopon>.fui-CalendarDayGrid__dayButton{border-left-color:Highlight;}}", {
|
260
|
+
m: "(forced-colors: active)"
|
261
|
+
}], ["@media (forced-colors: active){.f14tb4e3>.fui-CalendarDayGrid__dayButton{border-bottom-color:Highlight;}}", {
|
262
|
+
m: "(forced-colors: active)"
|
263
|
+
}], ["@media (forced-colors: active){.f161hy0n>.fui-CalendarDayGrid__dayButton{color:HighlightText;}}", {
|
264
|
+
m: "(forced-colors: active)"
|
265
|
+
}], ["@media (forced-colors: active){.fbp2bxz>.fui-CalendarDayGrid__dayButton{forced-color-adjust:none;}}", {
|
266
|
+
m: "(forced-colors: active)"
|
267
|
+
}]]
|
268
|
+
});
|
269
|
+
const useWeekRowStyles = /*#__PURE__*/__styles({
|
270
|
+
base: {
|
271
|
+
qhf8xq: "f10pi13n",
|
272
|
+
mlyf9c: "f1gazwyt"
|
273
|
+
},
|
274
|
+
animation: {
|
275
|
+
vin17d: "f5f2jbu",
|
276
|
+
Bf5fcs: "fywypte",
|
277
|
+
Ezkn3b: "f1ee2ue"
|
278
|
+
},
|
279
|
+
horizontalBackward: {
|
280
|
+
Bv12yb3: ["f1o9w3l8", "f1kwjajc"]
|
281
|
+
},
|
282
|
+
horizontalForward: {
|
283
|
+
Bv12yb3: ["f1kwjajc", "f1o9w3l8"]
|
284
|
+
},
|
285
|
+
verticalBackward: {
|
286
|
+
Bv12yb3: "fgl3yn7"
|
287
|
+
},
|
288
|
+
verticalForward: {
|
289
|
+
Bv12yb3: "faiu5ye"
|
290
|
+
}
|
291
|
+
}, {
|
292
|
+
d: [".f10pi13n{position:relative;}", ".f5f2jbu{animation-duration:0.367s;}", ".fywypte{animation-fill-mode:both;}", ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}", ".f1o9w3l8{animation-name:f5j8bii,f2lgmc3;}", ".f1kwjajc{animation-name:f5j8bii,fpktcv7;}", ".fgl3yn7{animation-name:f5j8bii,f3bv9km;}", ".faiu5ye{animation-name:f5j8bii,funtx0y;}"],
|
293
|
+
w: [".f1gazwyt:focus-within{z-index:1;}"],
|
294
|
+
k: ["@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}", "@keyframes f2lgmc3{from{pointer-events:none;transform:translate3d(-20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}", "@keyframes fpktcv7{from{pointer-events:none;transform:translate3d(20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}", "@keyframes f3bv9km{from{pointer-events:none;transform:translate3d(0, -20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}", "@keyframes funtx0y{from{pointer-events:none;transform:translate3d(0, 20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}"]
|
295
|
+
});
|
296
|
+
const useWeekDayLabelCellStyles = /*#__PURE__*/__styles({
|
297
|
+
base: {
|
298
|
+
famaaq: "f1xqy1su",
|
299
|
+
vin17d: "fhsqnsn",
|
300
|
+
Bf5fcs: "fywypte",
|
301
|
+
Bv12yb3: "f1h7u52p",
|
302
|
+
Ezkn3b: "fjq4c94"
|
303
|
+
}
|
304
|
+
}, {
|
305
|
+
d: [".f1xqy1su{-webkit-user-select:none;-moz-user-select:none;user-select:none;}", ".fhsqnsn{animation-duration:0.267s;}", ".fywypte{animation-fill-mode:both;}", ".f1h7u52p{animation-name:f5j8bii;}", ".fjq4c94{animation-timing-function:cubic-bezier(.1,.25,.75,.9);}"],
|
306
|
+
k: ["@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}"]
|
307
|
+
});
|
308
|
+
const useWeekNumberCellStyles = /*#__PURE__*/__styles({
|
309
|
+
base: {
|
310
|
+
De3pzq: "f1c21dwh",
|
311
|
+
h3c5rm: 0,
|
312
|
+
vrafjx: 0,
|
313
|
+
Bekrc4i: 0,
|
314
|
+
u1mtju: ["fe2nn5g", "f1rcbay7"],
|
315
|
+
B7ck84d: "f1ewtqcl",
|
316
|
+
sj55zd: "fxc4j92",
|
317
|
+
Be2twd7: "fy9rknc",
|
318
|
+
Bhrd7zp: "figsok6",
|
319
|
+
Bqenvij: "fxldao9",
|
320
|
+
jrapky: 0,
|
321
|
+
Frg6f3: 0,
|
322
|
+
t21cq0: 0,
|
323
|
+
B6of3ja: 0,
|
324
|
+
B74szlk: "f1s184ao",
|
325
|
+
Byoj8tv: 0,
|
326
|
+
uwmqm3: 0,
|
327
|
+
z189sj: 0,
|
328
|
+
z8tnut: 0,
|
329
|
+
B0ocmuz: "f1mk8lai",
|
330
|
+
a9b677: "f1w9dchk"
|
331
|
+
}
|
332
|
+
}, {
|
333
|
+
d: [".f1c21dwh{background-color:var(--colorTransparentBackground);}", [".fe2nn5g{border-right:1px solid var(--colorNeutralStroke2);}", {
|
334
|
+
p: -1
|
335
|
+
}], [".f1rcbay7{border-left:1px solid var(--colorNeutralStroke2);}", {
|
336
|
+
p: -1
|
337
|
+
}], ".f1ewtqcl{box-sizing:border-box;}", ".fxc4j92{color:var(--colorNeutralForeground4);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".fxldao9{height:28px;}", [".f1s184ao{margin:0;}", {
|
338
|
+
p: -1
|
339
|
+
}], [".f1mk8lai{padding:0;}", {
|
340
|
+
p: -1
|
341
|
+
}], ".f1w9dchk{width:28px;}"]
|
342
|
+
});
|
343
|
+
const useDayOutsideBoundsStyles = /*#__PURE__*/__styles({
|
344
|
+
base: {
|
345
|
+
x734em: "f1v4z6xg",
|
346
|
+
B0ssf13: "f1u9q7oh",
|
347
|
+
B8h8h5z: "f1a22lcc",
|
348
|
+
Bbusuzp: "f1dcs8yz"
|
349
|
+
}
|
350
|
+
}, {
|
351
|
+
d: [".f1v4z6xg,.f1v4z6xg:disabled,.f1v4z6xg button,.f1v4z6xg.fui-CalendarDayGrid__hoverStyle,.f1v4z6xg.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorTransparentBackground);}", ".f1u9q7oh,.f1u9q7oh:disabled,.f1u9q7oh button,.f1u9q7oh.fui-CalendarDayGrid__hoverStyle,.f1u9q7oh.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForegroundDisabled);}", ".f1a22lcc,.f1a22lcc:disabled,.f1a22lcc button,.f1a22lcc.fui-CalendarDayGrid__hoverStyle,.f1a22lcc.fui-CalendarDayGrid__pressedStyle{pointer-events:none;}"],
|
352
|
+
m: [["@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}", {
|
353
|
+
m: "(forced-colors: active)"
|
354
|
+
}]]
|
355
|
+
});
|
356
|
+
const useDayOutsideNavigatedMonthStyles = /*#__PURE__*/__styles({
|
357
|
+
lightenDaysOutsideNavigatedMonth: {
|
358
|
+
sj55zd: "fxc4j92",
|
359
|
+
Bhrd7zp: "figsok6",
|
360
|
+
Bbusuzp: "f1dcs8yz"
|
361
|
+
}
|
362
|
+
}, {
|
363
|
+
d: [".fxc4j92{color:var(--colorNeutralForeground4);}", ".figsok6{font-weight:var(--fontWeightRegular);}"],
|
364
|
+
m: [["@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}", {
|
365
|
+
m: "(forced-colors: active)"
|
366
|
+
}]]
|
367
|
+
});
|
368
|
+
const useDayButtonStyles = /*#__PURE__*/__styles({
|
369
|
+
base: {
|
370
|
+
De3pzq: "f1c21dwh",
|
371
|
+
Bgfg5da: 0,
|
372
|
+
B9xav0g: 0,
|
373
|
+
oivjwe: 0,
|
374
|
+
Bn0qgzm: 0,
|
375
|
+
B4g9neb: 0,
|
376
|
+
zhjwy3: 0,
|
377
|
+
wvpqe5: 0,
|
378
|
+
ibv6hh: 0,
|
379
|
+
u1mtju: 0,
|
380
|
+
h3c5rm: 0,
|
381
|
+
vrafjx: 0,
|
382
|
+
Bekrc4i: 0,
|
383
|
+
i8vvqc: 0,
|
384
|
+
g2u3we: 0,
|
385
|
+
icvyot: 0,
|
386
|
+
B4j52fo: 0,
|
387
|
+
irswps: "f3bhgqh",
|
388
|
+
sj55zd: "f1ym3bx4",
|
389
|
+
Bceei9c: "f1k6fduh",
|
390
|
+
Be2twd7: "fy9rknc",
|
391
|
+
Bhrd7zp: "ff5ikls",
|
392
|
+
Bqenvij: "frvgh55",
|
393
|
+
Bg96gwp: "f8xlz6g",
|
394
|
+
B68tc82: 0,
|
395
|
+
Bmxbyg5: 0,
|
396
|
+
Bpg54ce: "f1gl81tg",
|
397
|
+
Byoj8tv: 0,
|
398
|
+
uwmqm3: 0,
|
399
|
+
z189sj: 0,
|
400
|
+
z8tnut: 0,
|
401
|
+
B0ocmuz: "f1mk8lai",
|
402
|
+
a9b677: "fq4mcun",
|
403
|
+
Bx0yju7: "f10y451g",
|
404
|
+
l98f4w: "f1dwpgx3",
|
405
|
+
Jwef8y: "f18a0fwf",
|
406
|
+
Btmb5he: 0,
|
407
|
+
gu71dq: 0,
|
408
|
+
B2zomw9: 0,
|
409
|
+
Fgk69s: 0,
|
410
|
+
Bw6eyry: "f1mhq3ai",
|
411
|
+
ecr2s2: "f7la2e8"
|
412
|
+
}
|
413
|
+
}, {
|
414
|
+
d: [".f1c21dwh{background-color:var(--colorTransparentBackground);}", [".f3bhgqh{border:none;}", {
|
415
|
+
p: -2
|
416
|
+
}], ".f1ym3bx4{color:inherit;}", ".f1k6fduh{cursor:pointer;}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".ff5ikls{font-weight:inherit;}", ".frvgh55{height:24px;}", ".f8xlz6g{line-height:24px;}", [".f1gl81tg{overflow:visible;}", {
|
417
|
+
p: -1
|
418
|
+
}], [".f1mk8lai{padding:0;}", {
|
419
|
+
p: -1
|
420
|
+
}], ".fq4mcun{width:24px;}", ".f10y451gspan{height:inherit;}", ".f1dwpgx3span{line-height:inherit;}"],
|
421
|
+
h: [".f18a0fwf:hover{background-color:var(--colorBrandBackgroundInvertedHover);}", [".f1mhq3ai:hover{border-radius:var(--borderRadiusMedium);}", {
|
422
|
+
p: -1
|
423
|
+
}]],
|
424
|
+
a: [".f7la2e8:active{background-color:var(--colorBrandBackgroundInvertedPressed);}"]
|
425
|
+
});
|
426
|
+
const useDayIsTodayStyles = /*#__PURE__*/__styles({
|
427
|
+
base: {
|
428
|
+
mc9l5x: "f22iagw",
|
429
|
+
Brf1p80: "f4d9j23",
|
430
|
+
Bt984gj: "f122n59",
|
431
|
+
sj55zd: "f1phragk",
|
432
|
+
Bhrd7zp: "fl43uef",
|
433
|
+
kof2un: "f1b5s8wn",
|
434
|
+
E9zv3o: "ft4goo8"
|
435
|
+
}
|
436
|
+
}, {
|
437
|
+
d: [".f22iagw{display:flex;}", ".f4d9j23{justify-content:center;}", ".f122n59{align-items:center;}", ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}", ".fl43uef{font-weight:var(--fontWeightSemibold);}", ".f1b5s8wn>.fui-CalendarDayGrid__dayMarker{background-color:var(--colorNeutralForegroundOnBrand);}"],
|
438
|
+
m: [["@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}", {
|
439
|
+
m: "(forced-colors: active)"
|
440
|
+
}]]
|
441
|
+
});
|
442
|
+
const useDayTodayMarkerStyles = /*#__PURE__*/__styles({
|
443
|
+
base: {
|
444
|
+
mc9l5x: "f22iagw",
|
445
|
+
Brf1p80: "f4d9j23",
|
446
|
+
Bt984gj: "f122n59",
|
447
|
+
De3pzq: "ffp7eso",
|
448
|
+
Beyfa6y: 0,
|
449
|
+
Bbmb7ep: 0,
|
450
|
+
Btl43ni: 0,
|
451
|
+
B7oj6ja: 0,
|
452
|
+
Dimara: "f1qtlz2s",
|
453
|
+
a9b677: "f64fuq3",
|
454
|
+
Bqenvij: "fjamq6b",
|
455
|
+
Bg96gwp: "f1n95isl",
|
456
|
+
Bsw6fvg: "fg374yq",
|
457
|
+
Bjwas2f: "fx4t0an",
|
458
|
+
Bn1d65q: ["f1bd7qk0", "fk5vpic"],
|
459
|
+
Bxeuatn: "fgxnpfp",
|
460
|
+
n51gp8: ["fk5vpic", "f1bd7qk0"],
|
461
|
+
Bbusuzp: "f1yig07e",
|
462
|
+
ycbfsm: "fkc42ay"
|
463
|
+
}
|
464
|
+
}, {
|
465
|
+
d: [".f22iagw{display:flex;}", ".f4d9j23{justify-content:center;}", ".f122n59{align-items:center;}", ".ffp7eso{background-color:var(--colorBrandBackground);}", [".f1qtlz2s{border-radius:100%;}", {
|
466
|
+
p: -1
|
467
|
+
}], ".f64fuq3{width:20px;}", ".fjamq6b{height:20px;}", ".f1n95isl{line-height:20px;}"],
|
468
|
+
m: [["@media (forced-colors: active){.fg374yq{background-color:WindowText;}}", {
|
469
|
+
m: "(forced-colors: active)"
|
470
|
+
}], ["@media (forced-colors: active){.fx4t0an{border-top-color:WindowText;}}", {
|
471
|
+
m: "(forced-colors: active)"
|
472
|
+
}], ["@media (forced-colors: active){.f1bd7qk0{border-right-color:WindowText;}.fk5vpic{border-left-color:WindowText;}}", {
|
473
|
+
m: "(forced-colors: active)"
|
474
|
+
}], ["@media (forced-colors: active){.fgxnpfp{border-bottom-color:WindowText;}}", {
|
475
|
+
m: "(forced-colors: active)"
|
476
|
+
}], ["@media (forced-colors: active){.f1yig07e{color:Window;}}", {
|
477
|
+
m: "(forced-colors: active)"
|
478
|
+
}], ["@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}", {
|
479
|
+
m: "(forced-colors: active)"
|
480
|
+
}]]
|
481
|
+
});
|
482
|
+
const useFirstTransitionWeekStyles = /*#__PURE__*/__styles({
|
483
|
+
base: {
|
484
|
+
Bqenvij: "fniina8",
|
485
|
+
abs64n: "fk73vx1",
|
486
|
+
B68tc82: 0,
|
487
|
+
Bmxbyg5: 0,
|
488
|
+
Bpg54ce: "f1a3p1vp",
|
489
|
+
qhf8xq: "f1euv43f",
|
490
|
+
a9b677: "f3tsq5r"
|
491
|
+
},
|
492
|
+
verticalForward: {
|
493
|
+
vin17d: "f5f2jbu",
|
494
|
+
Bf5fcs: "fywypte",
|
495
|
+
Bv12yb3: "fupj2f5",
|
496
|
+
Ezkn3b: "f1ee2ue"
|
497
|
+
}
|
498
|
+
}, {
|
499
|
+
d: [".fniina8{height:0;}", ".fk73vx1{opacity:0;}", [".f1a3p1vp{overflow:hidden;}", {
|
500
|
+
p: -1
|
501
|
+
}], ".f1euv43f{position:absolute;}", ".f3tsq5r{width:0;}", ".f5f2jbu{animation-duration:0.367s;}", ".fywypte{animation-fill-mode:both;}", ".fupj2f5{animation-name:f199e34v,f76svrd,f13agkrc;}", ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"],
|
502
|
+
k: ["@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}", "@keyframes f76svrd{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -20px, 0);}}", "@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"]
|
503
|
+
});
|
504
|
+
const useLastTransitionWeekStyles = /*#__PURE__*/__styles({
|
505
|
+
base: {
|
506
|
+
Bqenvij: "fniina8",
|
507
|
+
B6of3ja: "flykjtj",
|
508
|
+
abs64n: "fk73vx1",
|
509
|
+
B68tc82: 0,
|
510
|
+
Bmxbyg5: 0,
|
511
|
+
Bpg54ce: "f1a3p1vp",
|
512
|
+
qhf8xq: "f1euv43f",
|
513
|
+
a9b677: "f3tsq5r"
|
514
|
+
},
|
515
|
+
verticalBackward: {
|
516
|
+
vin17d: "f5f2jbu",
|
517
|
+
Bf5fcs: "fywypte",
|
518
|
+
Bv12yb3: "fifoktk",
|
519
|
+
Ezkn3b: "f1ee2ue"
|
520
|
+
}
|
521
|
+
}, {
|
522
|
+
d: [".fniina8{height:0;}", ".flykjtj{margin-top:-28px;}", ".fk73vx1{opacity:0;}", [".f1a3p1vp{overflow:hidden;}", {
|
523
|
+
p: -1
|
524
|
+
}], ".f1euv43f{position:absolute;}", ".f3tsq5r{width:0;}", ".f5f2jbu{animation-duration:0.367s;}", ".fywypte{animation-fill-mode:both;}", ".fifoktk{animation-name:f199e34v,f18895iq,f13agkrc;}", ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"],
|
525
|
+
k: ["@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}", "@keyframes f18895iq{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 20px, 0);}}", "@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"]
|
526
|
+
});
|
527
|
+
const useDayMarkerStyles = /*#__PURE__*/__styles({
|
528
|
+
base: {
|
529
|
+
De3pzq: "fnggedw",
|
530
|
+
Beyfa6y: 0,
|
531
|
+
Bbmb7ep: 0,
|
532
|
+
Btl43ni: 0,
|
533
|
+
B7oj6ja: 0,
|
534
|
+
Dimara: "f1qtlz2s",
|
535
|
+
B5kzvoi: "f1oq0udb",
|
536
|
+
Bqenvij: "f6ywr7j",
|
537
|
+
oyh7mz: ["f1vgc2s3", "f1e31b4d"],
|
538
|
+
jrapky: 0,
|
539
|
+
Frg6f3: 0,
|
540
|
+
t21cq0: 0,
|
541
|
+
B6of3ja: 0,
|
542
|
+
B74szlk: "fcpdi13",
|
543
|
+
qhf8xq: "f1euv43f",
|
544
|
+
j35jbq: ["f1e31b4d", "f1vgc2s3"],
|
545
|
+
a9b677: "faro0ui",
|
546
|
+
Bsw6fvg: "fg374yq",
|
547
|
+
ycbfsm: "fkc42ay"
|
548
|
+
}
|
549
|
+
}, {
|
550
|
+
d: [".fnggedw{background-color:var(--colorBrandForeground2);}", [".f1qtlz2s{border-radius:100%;}", {
|
551
|
+
p: -1
|
552
|
+
}], ".f1oq0udb{bottom:1px;}", ".f6ywr7j{height:4px;}", ".f1vgc2s3{left:0;}", ".f1e31b4d{right:0;}", [".fcpdi13{margin:auto;}", {
|
553
|
+
p: -1
|
554
|
+
}], ".f1euv43f{position:absolute;}", ".faro0ui{width:4px;}"],
|
555
|
+
m: [["@media (forced-colors: active){.fg374yq{background-color:WindowText;}}", {
|
556
|
+
m: "(forced-colors: active)"
|
557
|
+
}], ["@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}", {
|
558
|
+
m: "(forced-colors: active)"
|
559
|
+
}]]
|
560
|
+
});
|
561
|
+
const useCornerBorderAndRadiusStyles = /*#__PURE__*/__styles({
|
562
|
+
corners: {
|
563
|
+
Cy64m2: ["f1yxjewa", "f5xfyye"],
|
564
|
+
Bnn43bw: ["f1kpdnd7", "fokqrni"],
|
565
|
+
feanbc: ["f127emps", "f1s6s1el"],
|
566
|
+
B4268ip: ["f39vr2a", "frpqyrn"]
|
567
|
+
}
|
568
|
+
}, {
|
569
|
+
d: [".f1yxjewa.fui-CalendarDayGrid__topRightCornerDate{border-top-right-radius:var(--borderRadiusMedium);}", ".f5xfyye.fui-CalendarDayGrid__topRightCornerDate{border-top-left-radius:var(--borderRadiusMedium);}", ".f1kpdnd7.fui-CalendarDayGrid__topLeftCornerDate{border-top-left-radius:var(--borderRadiusMedium);}", ".fokqrni.fui-CalendarDayGrid__topLeftCornerDate{border-top-right-radius:var(--borderRadiusMedium);}", ".f127emps.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}", ".f1s6s1el.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}", ".f39vr2a.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}", ".frpqyrn.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}"]
|
570
|
+
});
|
571
|
+
/**
|
572
|
+
* @internal
|
573
|
+
*
|
574
|
+
* Apply styling to the CalendarDayGrid slots based on the state
|
575
|
+
*/
|
576
|
+
export const useCalendarDayGridStyles_unstable = props => {
|
577
|
+
'use no memo';
|
578
|
+
|
579
|
+
const wrapperStyles = useWrapperStyles();
|
580
|
+
const tableStyles = useTableStyles();
|
581
|
+
const dayCellStyles = useDayCellStyles();
|
582
|
+
const daySelectedStyles = useDaySelectedStyles();
|
583
|
+
const daySingleSelectedStyles = useDaySingleSelectedStyles();
|
584
|
+
const weekRowStyles = useWeekRowStyles();
|
585
|
+
const weekDayLabelCellStyles = useWeekDayLabelCellStyles();
|
586
|
+
const weekNumberCellStyles = useWeekNumberCellStyles();
|
587
|
+
const dayOutsideBoundsStyles = useDayOutsideBoundsStyles();
|
588
|
+
const dayOutsideNavigatedMonthStyles = useDayOutsideNavigatedMonthStyles();
|
589
|
+
const dayButtonStyles = useDayButtonStyles();
|
590
|
+
const dayIsTodayStyles = useDayIsTodayStyles();
|
591
|
+
const firstTransitionWeekStyles = useFirstTransitionWeekStyles();
|
592
|
+
const lastTransitionWeekStyles = useLastTransitionWeekStyles();
|
593
|
+
const dayMarkerStyles = useDayMarkerStyles();
|
594
|
+
const cornerBorderAndRadiusStyles = useCornerBorderAndRadiusStyles();
|
595
|
+
const dayTodayMarkerStyles = useDayTodayMarkerStyles();
|
596
|
+
const {
|
597
|
+
animateBackwards,
|
598
|
+
animationDirection,
|
599
|
+
lightenDaysOutsideNavigatedMonth,
|
600
|
+
showWeekNumbers
|
601
|
+
} = props;
|
602
|
+
return {
|
603
|
+
wrapper: mergeClasses(calendarDayGridClassNames.wrapper, wrapperStyles.base),
|
604
|
+
table: mergeClasses(calendarDayGridClassNames.table, tableStyles.base, showWeekNumbers && tableStyles.showWeekNumbers),
|
605
|
+
dayCell: mergeClasses(calendarDayGridClassNames.dayCell, dayCellStyles.base, dayCellStyles.focusIndicator, cornerBorderAndRadiusStyles.corners),
|
606
|
+
daySelected: mergeClasses(calendarDayGridClassNames.daySelected, daySelectedStyles.base),
|
607
|
+
daySingleSelected: mergeClasses(calendarDayGridClassNames.daySingleSelected, daySingleSelectedStyles.base),
|
608
|
+
weekRow: mergeClasses(calendarDayGridClassNames.weekRow, weekRowStyles.base, animateBackwards !== undefined && weekRowStyles.animation, animateBackwards !== undefined && (animationDirection === AnimationDirection.Horizontal ? animateBackwards ? weekRowStyles.horizontalBackward : weekRowStyles.horizontalForward : animateBackwards ? weekRowStyles.verticalBackward : weekRowStyles.verticalForward)),
|
609
|
+
weekDayLabelCell: mergeClasses(calendarDayGridClassNames.weekDayLabelCell, weekDayLabelCellStyles.base),
|
610
|
+
weekNumberCell: mergeClasses(calendarDayGridClassNames.weekNumberCell, weekNumberCellStyles.base),
|
611
|
+
dayOutsideBounds: mergeClasses(calendarDayGridClassNames.dayOutsideBounds, dayOutsideBoundsStyles.base),
|
612
|
+
dayOutsideNavigatedMonth: mergeClasses(calendarDayGridClassNames.dayOutsideNavigatedMonth, lightenDaysOutsideNavigatedMonth && dayOutsideNavigatedMonthStyles.lightenDaysOutsideNavigatedMonth),
|
613
|
+
dayButton: mergeClasses(calendarDayGridClassNames.dayButton, dayButtonStyles.base),
|
614
|
+
dayIsToday: mergeClasses(calendarDayGridClassNames.dayIsToday, dayIsTodayStyles.base),
|
615
|
+
firstTransitionWeek: mergeClasses(calendarDayGridClassNames.firstTransitionWeek, firstTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== AnimationDirection.Horizontal && !animateBackwards && firstTransitionWeekStyles.verticalForward),
|
616
|
+
lastTransitionWeek: mergeClasses(calendarDayGridClassNames.lastTransitionWeek, lastTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== AnimationDirection.Horizontal && animateBackwards && lastTransitionWeekStyles.verticalBackward),
|
617
|
+
dayMarker: mergeClasses(calendarDayGridClassNames.dayMarker, dayMarkerStyles.base),
|
618
|
+
dayTodayMarker: mergeClasses(calendarDayGridClassNames.dayTodayMarker, dayTodayMarkerStyles.base)
|
619
|
+
};
|
620
|
+
};
|