@fluentui/react-calendar-compat 0.0.0-nightly-20231023-0416.1 → 0.0.2
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.json +9 -51
- package/CHANGELOG.md +7 -14
- package/dist/index.d.ts +1376 -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 +302 -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/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 +167 -0
- package/lib/components/Calendar/useCalendarStyles.styles.js.map +1 -0
- package/lib/components/CalendarDay/CalendarDay.js +111 -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 +3 -0
- package/lib/components/CalendarDay/index.js.map +1 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js +180 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.js +168 -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 +164 -0
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarGridRow.js +26 -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 +4 -0
- package/lib/components/CalendarDayGrid/index.js.map +1 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +437 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js +98 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeeks.js +45 -0
- package/lib/components/CalendarDayGrid/useWeeks.js.map +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.js +263 -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 +3 -0
- package/lib/components/CalendarMonth/index.js.map +1 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.js +8 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.js.map +1 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js +1 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib/components/CalendarPicker/index.js +2 -0
- package/lib/components/CalendarPicker/index.js.map +1 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js +371 -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 +3 -0
- package/lib/components/CalendarYear/index.js.map +1 -0
- package/lib/components/CalendarYear/useCalendarYearStyles.styles.js +10 -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 +97 -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 +2 -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 +71 -0
- package/lib/utils/dateGrid/getDayGrid.js.map +1 -0
- package/lib/utils/dateGrid/index.js +5 -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/dom.js +8 -0
- package/lib/utils/dom.js.map +1 -0
- package/lib/utils/focus.js +26 -0
- package/lib/utils/focus.js.map +1 -0
- package/lib/utils/index.js +7 -0
- package/lib/utils/index.js.map +1 -0
- package/lib-commonjs/Calendar.js +6 -0
- package/lib-commonjs/Calendar.js.map +1 -0
- package/lib-commonjs/CalendarDay.js +6 -0
- package/lib-commonjs/CalendarDay.js.map +1 -0
- package/lib-commonjs/CalendarDayGrid.js +6 -0
- package/lib-commonjs/CalendarDayGrid.js.map +1 -0
- package/lib-commonjs/CalendarMonth.js +6 -0
- package/lib-commonjs/CalendarMonth.js.map +1 -0
- package/lib-commonjs/CalendarPicker.js +6 -0
- package/lib-commonjs/CalendarPicker.js.map +1 -0
- package/lib-commonjs/CalendarYear.js +6 -0
- package/lib-commonjs/CalendarYear.js.map +1 -0
- package/lib-commonjs/components/Calendar/Calendar.js +311 -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/defaults.js +12 -0
- package/lib-commonjs/components/Calendar/defaults.js.map +1 -0
- package/lib-commonjs/components/Calendar/index.js +15 -0
- package/lib-commonjs/components/Calendar/index.js.map +1 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js +339 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.js +120 -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 +8 -0
- package/lib-commonjs/components/CalendarDay/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js +357 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js +179 -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 +173 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js +35 -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 +22 -0
- package/lib-commonjs/components/CalendarDayGrid/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +890 -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 +54 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeeks.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js +272 -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 +8 -0
- package/lib-commonjs/components/CalendarMonth/index.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.js +14 -0
- package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js +4 -0
- package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/index.js +7 -0
- package/lib-commonjs/components/CalendarPicker/index.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js +742 -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 +8 -0
- package/lib-commonjs/components/CalendarYear/index.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.js +14 -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 +154 -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 +7 -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 +76 -0
- package/lib-commonjs/utils/dateGrid/getDayGrid.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/index.js +10 -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 +6 -0
- package/lib-commonjs/utils/dateMath/index.js.map +1 -0
- package/lib-commonjs/utils/dom.js +18 -0
- package/lib-commonjs/utils/dom.js.map +1 -0
- package/lib-commonjs/utils/focus.js +31 -0
- package/lib-commonjs/utils/focus.js.map +1 -0
- package/lib-commonjs/utils/index.js +12 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/package.json +15 -10
@@ -0,0 +1,890 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
3
|
+
value: true
|
4
|
+
});
|
5
|
+
function _export(target, all) {
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
7
|
+
enumerable: true,
|
8
|
+
get: all[name]
|
9
|
+
});
|
10
|
+
}
|
11
|
+
_export(exports, {
|
12
|
+
calendarDayGridClassNames: function() {
|
13
|
+
return calendarDayGridClassNames;
|
14
|
+
},
|
15
|
+
extraCalendarDayGridClassNames: function() {
|
16
|
+
return extraCalendarDayGridClassNames;
|
17
|
+
},
|
18
|
+
useCalendarDayGridStyles_unstable: function() {
|
19
|
+
return useCalendarDayGridStyles_unstable;
|
20
|
+
}
|
21
|
+
});
|
22
|
+
const _react = require("@griffel/react");
|
23
|
+
const _Calendartypes = require("../Calendar/Calendar.types");
|
24
|
+
const calendarDayGridClassNames = {
|
25
|
+
wrapper: 'fui-CalendarDayGrid__wrapper',
|
26
|
+
table: 'fui-CalendarDayGrid__table',
|
27
|
+
dayCell: 'fui-CalendarDayGrid__dayCell',
|
28
|
+
daySelected: 'fui-CalendarDayGrid__daySelected',
|
29
|
+
weekRow: 'fui-CalendarDayGrid__weekRow',
|
30
|
+
weekDayLabelCell: 'fui-CalendarDayGrid__weekDayLabelCell',
|
31
|
+
weekNumberCell: 'fui-CalendarDayGrid__weekNumberCell',
|
32
|
+
dayOutsideBounds: 'fui-CalendarDayGrid__dayOutsideBounds',
|
33
|
+
dayOutsideNavigatedMonth: 'fui-CalendarDayGrid__dayOutsideNavigatedMonth',
|
34
|
+
dayButton: 'fui-CalendarDayGrid__dayButton',
|
35
|
+
dayIsToday: 'fui-CalendarDayGrid__dayIsToday',
|
36
|
+
firstTransitionWeek: 'fui-CalendarDayGrid__firstTransitionWeek',
|
37
|
+
lastTransitionWeek: 'fui-CalendarDayGrid__lastTransitionWeek',
|
38
|
+
dayMarker: 'fui-CalendarDayGrid__dayMarker'
|
39
|
+
};
|
40
|
+
const extraCalendarDayGridClassNames = {
|
41
|
+
hoverStyle: 'fui-CalendarDayGrid__hoverStyle',
|
42
|
+
pressedStyle: 'fui-CalendarDayGrid__pressedStyle'
|
43
|
+
};
|
44
|
+
const useWrapperStyles = /*#__PURE__*/ (0, _react.__styles)({
|
45
|
+
base: {
|
46
|
+
Byoj8tv: "f1fow5ox"
|
47
|
+
}
|
48
|
+
}, {
|
49
|
+
d: [
|
50
|
+
".f1fow5ox{padding-bottom:10px;}"
|
51
|
+
]
|
52
|
+
});
|
53
|
+
const useTableStyles = /*#__PURE__*/ (0, _react.__styles)({
|
54
|
+
base: {
|
55
|
+
po53p8: "fgkb47j",
|
56
|
+
Bxjg3zr: "f16vktn6",
|
57
|
+
Be2twd7: "fjoy568",
|
58
|
+
B6of3ja: "fvjh0tl",
|
59
|
+
Byoj8tv: "f1fow5ox",
|
60
|
+
qhf8xq: "f10pi13n",
|
61
|
+
B73mfa3: "f14m3nip",
|
62
|
+
fsow6f: "f17mccla",
|
63
|
+
a9b677: "f4m2ahc"
|
64
|
+
},
|
65
|
+
showWeekNumbers: {
|
66
|
+
a9b677: "fl524qk"
|
67
|
+
}
|
68
|
+
}, {
|
69
|
+
d: [
|
70
|
+
".fgkb47j{border-collapse:collapse;}",
|
71
|
+
".f16vktn6{border-spacing:0;}",
|
72
|
+
".fjoy568{font-size:inherit;}",
|
73
|
+
".fvjh0tl{margin-top:4px;}",
|
74
|
+
".f1fow5ox{padding-bottom:10px;}",
|
75
|
+
".f10pi13n{position:relative;}",
|
76
|
+
".f14m3nip{table-layout:fixed;}",
|
77
|
+
".f17mccla{text-align:center;}",
|
78
|
+
".f4m2ahc{width:196px;}",
|
79
|
+
".fl524qk{width:226px;}"
|
80
|
+
]
|
81
|
+
});
|
82
|
+
const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
83
|
+
base: {
|
84
|
+
sj55zd: "f19n0e5",
|
85
|
+
Bceei9c: "f1k6fduh",
|
86
|
+
Be2twd7: "fy9rknc",
|
87
|
+
Bhrd7zp: "figsok6",
|
88
|
+
Bqenvij: "fxldao9",
|
89
|
+
Bg96gwp: "f336tjw",
|
90
|
+
B6of3ja: "f1hu3pq6",
|
91
|
+
t21cq0: [
|
92
|
+
"f11qmguv",
|
93
|
+
"f1tyq0we"
|
94
|
+
],
|
95
|
+
jrapky: "f19f4twv",
|
96
|
+
Frg6f3: [
|
97
|
+
"f1tyq0we",
|
98
|
+
"f11qmguv"
|
99
|
+
],
|
100
|
+
z8tnut: "f1g0x7ka",
|
101
|
+
z189sj: [
|
102
|
+
"fhxju0i",
|
103
|
+
"f1cnd47f"
|
104
|
+
],
|
105
|
+
Byoj8tv: "f1qch9an",
|
106
|
+
uwmqm3: [
|
107
|
+
"f1cnd47f",
|
108
|
+
"fhxju0i"
|
109
|
+
],
|
110
|
+
qhf8xq: "f10pi13n",
|
111
|
+
a9b677: "f1w9dchk",
|
112
|
+
Bsw6fvg: "f8pusc0",
|
113
|
+
Bbusuzp: "fqgauei",
|
114
|
+
cvlxnx: "fp6dsbd",
|
115
|
+
Bweudez: "f4xgodq",
|
116
|
+
hzfqlu: "fehmveg",
|
117
|
+
Bb91d7d: "ff78tpz",
|
118
|
+
dua3dm: "f128nre3",
|
119
|
+
z1p9vi: "f1elgve3",
|
120
|
+
Bsnevi5: "f15e7s3w",
|
121
|
+
xnb59o: "fts5qqo",
|
122
|
+
Bj67fi1: "f1lhgsq9",
|
123
|
+
B2gfgcj: "fdbuq6n",
|
124
|
+
B6cqqer: "f16j2ub3",
|
125
|
+
fpurfy: "f5hk6jp",
|
126
|
+
Fioj4w: [
|
127
|
+
"f1d258es",
|
128
|
+
"f1llk4aj"
|
129
|
+
],
|
130
|
+
Bq9yiu4: "ftezgwa",
|
131
|
+
cpbo2x: [
|
132
|
+
"f1llk4aj",
|
133
|
+
"f1d258es"
|
134
|
+
],
|
135
|
+
Bq268z6: "f1iohfpm"
|
136
|
+
}
|
137
|
+
}, {
|
138
|
+
d: [
|
139
|
+
".f19n0e5{color:var(--colorNeutralForeground1);}",
|
140
|
+
".f1k6fduh{cursor:pointer;}",
|
141
|
+
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
142
|
+
".figsok6{font-weight:var(--fontWeightRegular);}",
|
143
|
+
".fxldao9{height:28px;}",
|
144
|
+
".f336tjw{line-height:28px;}",
|
145
|
+
".f1hu3pq6{margin-top:0;}",
|
146
|
+
".f11qmguv{margin-right:0;}",
|
147
|
+
".f1tyq0we{margin-left:0;}",
|
148
|
+
".f19f4twv{margin-bottom:0;}",
|
149
|
+
".f1g0x7ka{padding-top:0;}",
|
150
|
+
".fhxju0i{padding-right:0;}",
|
151
|
+
".f1cnd47f{padding-left:0;}",
|
152
|
+
".f1qch9an{padding-bottom:0;}",
|
153
|
+
".f10pi13n{position:relative;}",
|
154
|
+
".f1w9dchk{width:28px;}",
|
155
|
+
".fp6dsbd.fui-CalendarDayGrid__hoverStyle{color:var(--colorNeutralForeground1Static);}",
|
156
|
+
".f4xgodq.fui-CalendarDayGrid__hoverStyle{background-color:var(--colorBrandBackgroundInvertedHover);}",
|
157
|
+
".f1lhgsq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}",
|
158
|
+
".fdbuq6n.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedPressed);}"
|
159
|
+
],
|
160
|
+
m: [
|
161
|
+
[
|
162
|
+
"@media (forced-colors: active){.f8pusc0{background-color:Window;}}",
|
163
|
+
{
|
164
|
+
m: "(forced-colors: active)"
|
165
|
+
}
|
166
|
+
],
|
167
|
+
[
|
168
|
+
"@media (forced-colors: active){.fqgauei{color:WindowText;}}",
|
169
|
+
{
|
170
|
+
m: "(forced-colors: active)"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
[
|
174
|
+
"@media (forced-colors: active){.fehmveg.fui-CalendarDayGrid__hoverStyle{background-color:Window;}}",
|
175
|
+
{
|
176
|
+
m: "(forced-colors: active)"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
[
|
180
|
+
"@media (forced-colors: active){.ff78tpz.fui-CalendarDayGrid__hoverStyle{color:WindowText;}}",
|
181
|
+
{
|
182
|
+
m: "(forced-colors: active)"
|
183
|
+
}
|
184
|
+
],
|
185
|
+
[
|
186
|
+
"@media (forced-colors: active){.f128nre3.fui-CalendarDayGrid__hoverStyle{outline-width:1px;}}",
|
187
|
+
{
|
188
|
+
m: "(forced-colors: active)"
|
189
|
+
}
|
190
|
+
],
|
191
|
+
[
|
192
|
+
"@media (forced-colors: active){.f1elgve3.fui-CalendarDayGrid__hoverStyle{outline-style:solid;}}",
|
193
|
+
{
|
194
|
+
m: "(forced-colors: active)"
|
195
|
+
}
|
196
|
+
],
|
197
|
+
[
|
198
|
+
"@media (forced-colors: active){.f15e7s3w.fui-CalendarDayGrid__hoverStyle{outline-color:Highlight;}}",
|
199
|
+
{
|
200
|
+
m: "(forced-colors: active)"
|
201
|
+
}
|
202
|
+
],
|
203
|
+
[
|
204
|
+
"@media (forced-colors: active){.fts5qqo.fui-CalendarDayGrid__hoverStyle{z-index:3;}}",
|
205
|
+
{
|
206
|
+
m: "(forced-colors: active)"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
[
|
210
|
+
"@media (forced-colors: active){.f16j2ub3.fui-CalendarDayGrid__pressedStyle{background-color:Window;}}",
|
211
|
+
{
|
212
|
+
m: "(forced-colors: active)"
|
213
|
+
}
|
214
|
+
],
|
215
|
+
[
|
216
|
+
"@media (forced-colors: active){.f5hk6jp.fui-CalendarDayGrid__pressedStyle{border-top-color:Highlight;}}",
|
217
|
+
{
|
218
|
+
m: "(forced-colors: active)"
|
219
|
+
}
|
220
|
+
],
|
221
|
+
[
|
222
|
+
"@media (forced-colors: active){.f1d258es.fui-CalendarDayGrid__pressedStyle{border-right-color:Highlight;}.f1llk4aj.fui-CalendarDayGrid__pressedStyle{border-left-color:Highlight;}}",
|
223
|
+
{
|
224
|
+
m: "(forced-colors: active)"
|
225
|
+
}
|
226
|
+
],
|
227
|
+
[
|
228
|
+
"@media (forced-colors: active){.ftezgwa.fui-CalendarDayGrid__pressedStyle{border-bottom-color:Highlight;}}",
|
229
|
+
{
|
230
|
+
m: "(forced-colors: active)"
|
231
|
+
}
|
232
|
+
],
|
233
|
+
[
|
234
|
+
"@media (forced-colors: active){.f1iohfpm.fui-CalendarDayGrid__pressedStyle{color:Highlight;}}",
|
235
|
+
{
|
236
|
+
m: "(forced-colors: active)"
|
237
|
+
}
|
238
|
+
]
|
239
|
+
]
|
240
|
+
});
|
241
|
+
const useDaySelectedStyles = /*#__PURE__*/ (0, _react.__styles)({
|
242
|
+
base: {
|
243
|
+
De3pzq: "f1vevd59",
|
244
|
+
sj55zd: "ff5vbop",
|
245
|
+
Bsw6fvg: "f1rirnrt",
|
246
|
+
Bjwas2f: "f132fbg1",
|
247
|
+
Bn1d65q: [
|
248
|
+
"f1ene5x0",
|
249
|
+
"fzbc999"
|
250
|
+
],
|
251
|
+
Bxeuatn: "f6jgcol",
|
252
|
+
n51gp8: [
|
253
|
+
"fzbc999",
|
254
|
+
"f1ene5x0"
|
255
|
+
],
|
256
|
+
Bbusuzp: "f1lkg8j3",
|
257
|
+
ycbfsm: "fkc42ay",
|
258
|
+
a3nq4f: "f1chdfq9",
|
259
|
+
Bnf3alp: "fq0dbue",
|
260
|
+
H2c3sd: "f3pe0v7",
|
261
|
+
qu8ld: "f3t0uu2",
|
262
|
+
Bg4iunc: "f1cikclm"
|
263
|
+
}
|
264
|
+
}, {
|
265
|
+
d: [
|
266
|
+
".f1vevd59{background-color:var(--colorBrandBackgroundInvertedSelected);}",
|
267
|
+
".ff5vbop{color:var(--colorNeutralForeground1Static);}"
|
268
|
+
],
|
269
|
+
m: [
|
270
|
+
[
|
271
|
+
"@media (forced-colors: active){.f1rirnrt{background-color:Highlight;}}",
|
272
|
+
{
|
273
|
+
m: "(forced-colors: active)"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
[
|
277
|
+
"@media (forced-colors: active){.f132fbg1{border-top-color:Highlight;}}",
|
278
|
+
{
|
279
|
+
m: "(forced-colors: active)"
|
280
|
+
}
|
281
|
+
],
|
282
|
+
[
|
283
|
+
"@media (forced-colors: active){.f1ene5x0{border-right-color:Highlight;}.fzbc999{border-left-color:Highlight;}}",
|
284
|
+
{
|
285
|
+
m: "(forced-colors: active)"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
[
|
289
|
+
"@media (forced-colors: active){.f6jgcol{border-bottom-color:Highlight;}}",
|
290
|
+
{
|
291
|
+
m: "(forced-colors: active)"
|
292
|
+
}
|
293
|
+
],
|
294
|
+
[
|
295
|
+
"@media (forced-colors: active){.f1lkg8j3{color:HighlightText;}}",
|
296
|
+
{
|
297
|
+
m: "(forced-colors: active)"
|
298
|
+
}
|
299
|
+
],
|
300
|
+
[
|
301
|
+
"@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
|
302
|
+
{
|
303
|
+
m: "(forced-colors: active)"
|
304
|
+
}
|
305
|
+
],
|
306
|
+
[
|
307
|
+
"@media (forced-colors: active){.f3pe0v7:hover,.f3pe0v7.fui-CalendarDayGrid__hoverStyle,.f3pe0v7.fui-CalendarDayGrid__pressedStyle{background-color:Highlight;}}",
|
308
|
+
{
|
309
|
+
m: "(forced-colors: active)"
|
310
|
+
}
|
311
|
+
],
|
312
|
+
[
|
313
|
+
"@media (forced-colors: active){.f3t0uu2:hover,.f3t0uu2.fui-CalendarDayGrid__hoverStyle,.f3t0uu2.fui-CalendarDayGrid__pressedStyle{color:HighlightText;}}",
|
314
|
+
{
|
315
|
+
m: "(forced-colors: active)"
|
316
|
+
}
|
317
|
+
],
|
318
|
+
[
|
319
|
+
"@media (forced-colors: active){.f1cikclm>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
|
320
|
+
{
|
321
|
+
m: "(forced-colors: active)"
|
322
|
+
}
|
323
|
+
]
|
324
|
+
],
|
325
|
+
h: [
|
326
|
+
".f1chdfq9:hover,.f1chdfq9.fui-CalendarDayGrid__hoverStyle,.f1chdfq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}",
|
327
|
+
".fq0dbue:hover,.fq0dbue.fui-CalendarDayGrid__hoverStyle,.fq0dbue.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedSelected);}"
|
328
|
+
]
|
329
|
+
});
|
330
|
+
const useWeekRowStyles = /*#__PURE__*/ (0, _react.__styles)({
|
331
|
+
base: {
|
332
|
+
vin17d: "f5f2jbu",
|
333
|
+
Bf5fcs: "fywypte",
|
334
|
+
Ezkn3b: "f1ee2ue"
|
335
|
+
},
|
336
|
+
horizontalBackward: {
|
337
|
+
Bv12yb3: [
|
338
|
+
"f1o9w3l8",
|
339
|
+
"f1kwjajc"
|
340
|
+
]
|
341
|
+
},
|
342
|
+
horizontalForward: {
|
343
|
+
Bv12yb3: [
|
344
|
+
"f1kwjajc",
|
345
|
+
"f1o9w3l8"
|
346
|
+
]
|
347
|
+
},
|
348
|
+
verticalBackward: {
|
349
|
+
Bv12yb3: "fgl3yn7"
|
350
|
+
},
|
351
|
+
verticalForward: {
|
352
|
+
Bv12yb3: "faiu5ye"
|
353
|
+
}
|
354
|
+
}, {
|
355
|
+
d: [
|
356
|
+
".f5f2jbu{animation-duration:0.367s;}",
|
357
|
+
".fywypte{animation-fill-mode:both;}",
|
358
|
+
".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}",
|
359
|
+
".f1o9w3l8{animation-name:f5j8bii,f2lgmc3;}",
|
360
|
+
".f1kwjajc{animation-name:f5j8bii,fpktcv7;}",
|
361
|
+
".fgl3yn7{animation-name:f5j8bii,f3bv9km;}",
|
362
|
+
".faiu5ye{animation-name:f5j8bii,funtx0y;}"
|
363
|
+
],
|
364
|
+
k: [
|
365
|
+
"@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}",
|
366
|
+
"@keyframes f2lgmc3{from{pointer-events:none;transform:translate3d(-20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
|
367
|
+
"@keyframes fpktcv7{from{pointer-events:none;transform:translate3d(20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
|
368
|
+
"@keyframes f3bv9km{from{pointer-events:none;transform:translate3d(0, -20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
|
369
|
+
"@keyframes funtx0y{from{pointer-events:none;transform:translate3d(0, 20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}"
|
370
|
+
]
|
371
|
+
});
|
372
|
+
const useWeekDayLabelCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
373
|
+
base: {
|
374
|
+
vin17d: "fhsqnsn",
|
375
|
+
Bf5fcs: "fywypte",
|
376
|
+
Bv12yb3: "f1h7u52p",
|
377
|
+
Ezkn3b: "fjq4c94"
|
378
|
+
}
|
379
|
+
}, {
|
380
|
+
d: [
|
381
|
+
".fhsqnsn{animation-duration:0.267s;}",
|
382
|
+
".fywypte{animation-fill-mode:both;}",
|
383
|
+
".f1h7u52p{animation-name:f5j8bii;}",
|
384
|
+
".fjq4c94{animation-timing-function:cubic-bezier(.1,.25,.75,.9);}"
|
385
|
+
],
|
386
|
+
k: [
|
387
|
+
"@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}"
|
388
|
+
]
|
389
|
+
});
|
390
|
+
const useWeekNumberCellStyles = /*#__PURE__*/ (0, _react.__styles)({
|
391
|
+
base: {
|
392
|
+
De3pzq: "f1c21dwh",
|
393
|
+
g2u3we: "f68mrw8",
|
394
|
+
h3c5rm: [
|
395
|
+
"f7pw515",
|
396
|
+
"fw35ms5"
|
397
|
+
],
|
398
|
+
B9xav0g: "frpde29",
|
399
|
+
zhjwy3: [
|
400
|
+
"fw35ms5",
|
401
|
+
"f7pw515"
|
402
|
+
],
|
403
|
+
Bekrc4i: [
|
404
|
+
"f1hqa2wf",
|
405
|
+
"finvdd3"
|
406
|
+
],
|
407
|
+
vrafjx: [
|
408
|
+
"fcdblym",
|
409
|
+
"fjik90z"
|
410
|
+
],
|
411
|
+
B7ck84d: "f1ewtqcl",
|
412
|
+
sj55zd: "fxc4j92",
|
413
|
+
Be2twd7: "fy9rknc",
|
414
|
+
Bhrd7zp: "figsok6",
|
415
|
+
Bqenvij: "fxldao9",
|
416
|
+
B6of3ja: "f1hu3pq6",
|
417
|
+
t21cq0: [
|
418
|
+
"f11qmguv",
|
419
|
+
"f1tyq0we"
|
420
|
+
],
|
421
|
+
jrapky: "f19f4twv",
|
422
|
+
Frg6f3: [
|
423
|
+
"f1tyq0we",
|
424
|
+
"f11qmguv"
|
425
|
+
],
|
426
|
+
z8tnut: "f1g0x7ka",
|
427
|
+
z189sj: [
|
428
|
+
"fhxju0i",
|
429
|
+
"f1cnd47f"
|
430
|
+
],
|
431
|
+
Byoj8tv: "f1qch9an",
|
432
|
+
uwmqm3: [
|
433
|
+
"f1cnd47f",
|
434
|
+
"fhxju0i"
|
435
|
+
],
|
436
|
+
a9b677: "f1w9dchk"
|
437
|
+
}
|
438
|
+
}, {
|
439
|
+
d: [
|
440
|
+
".f1c21dwh{background-color:var(--colorTransparentBackground);}",
|
441
|
+
".f68mrw8{border-top-color:var(--colorNeutralStroke2);}",
|
442
|
+
".f7pw515{border-right-color:var(--colorNeutralStroke2);}",
|
443
|
+
".fw35ms5{border-left-color:var(--colorNeutralStroke2);}",
|
444
|
+
".frpde29{border-bottom-color:var(--colorNeutralStroke2);}",
|
445
|
+
".f1hqa2wf{border-right-width:1px;}",
|
446
|
+
".finvdd3{border-left-width:1px;}",
|
447
|
+
".fcdblym{border-right-style:solid;}",
|
448
|
+
".fjik90z{border-left-style:solid;}",
|
449
|
+
".f1ewtqcl{box-sizing:border-box;}",
|
450
|
+
".fxc4j92{color:var(--colorNeutralForeground4);}",
|
451
|
+
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
452
|
+
".figsok6{font-weight:var(--fontWeightRegular);}",
|
453
|
+
".fxldao9{height:28px;}",
|
454
|
+
".f1hu3pq6{margin-top:0;}",
|
455
|
+
".f11qmguv{margin-right:0;}",
|
456
|
+
".f1tyq0we{margin-left:0;}",
|
457
|
+
".f19f4twv{margin-bottom:0;}",
|
458
|
+
".f1g0x7ka{padding-top:0;}",
|
459
|
+
".fhxju0i{padding-right:0;}",
|
460
|
+
".f1cnd47f{padding-left:0;}",
|
461
|
+
".f1qch9an{padding-bottom:0;}",
|
462
|
+
".f1w9dchk{width:28px;}"
|
463
|
+
]
|
464
|
+
});
|
465
|
+
const useDayOutsideBoundsStyles = /*#__PURE__*/ (0, _react.__styles)({
|
466
|
+
base: {
|
467
|
+
x734em: "f1v4z6xg",
|
468
|
+
B0ssf13: "f1u9q7oh",
|
469
|
+
B8h8h5z: "f1a22lcc",
|
470
|
+
Bbusuzp: "f1dcs8yz"
|
471
|
+
}
|
472
|
+
}, {
|
473
|
+
d: [
|
474
|
+
".f1v4z6xg,.f1v4z6xg:disabled,.f1v4z6xg button,.f1v4z6xg.fui-CalendarDayGrid__hoverStyle,.f1v4z6xg.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorTransparentBackground);}",
|
475
|
+
".f1u9q7oh,.f1u9q7oh:disabled,.f1u9q7oh button,.f1u9q7oh.fui-CalendarDayGrid__hoverStyle,.f1u9q7oh.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForegroundDisabled);}",
|
476
|
+
".f1a22lcc,.f1a22lcc:disabled,.f1a22lcc button,.f1a22lcc.fui-CalendarDayGrid__hoverStyle,.f1a22lcc.fui-CalendarDayGrid__pressedStyle{pointer-events:none;}"
|
477
|
+
],
|
478
|
+
m: [
|
479
|
+
[
|
480
|
+
"@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}",
|
481
|
+
{
|
482
|
+
m: "(forced-colors: active)"
|
483
|
+
}
|
484
|
+
]
|
485
|
+
]
|
486
|
+
});
|
487
|
+
const useDayOutsideNavigatedMonthStyles = /*#__PURE__*/ (0, _react.__styles)({
|
488
|
+
lightenDaysOutsideNavigatedMonth: {
|
489
|
+
sj55zd: "fxc4j92",
|
490
|
+
Bhrd7zp: "figsok6",
|
491
|
+
Bbusuzp: "f1dcs8yz"
|
492
|
+
}
|
493
|
+
}, {
|
494
|
+
d: [
|
495
|
+
".fxc4j92{color:var(--colorNeutralForeground4);}",
|
496
|
+
".figsok6{font-weight:var(--fontWeightRegular);}"
|
497
|
+
],
|
498
|
+
m: [
|
499
|
+
[
|
500
|
+
"@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}",
|
501
|
+
{
|
502
|
+
m: "(forced-colors: active)"
|
503
|
+
}
|
504
|
+
]
|
505
|
+
]
|
506
|
+
});
|
507
|
+
const useDayButtonStyles = /*#__PURE__*/ (0, _react.__styles)({
|
508
|
+
base: {
|
509
|
+
De3pzq: "f1c21dwh",
|
510
|
+
Bbmb7ep: [
|
511
|
+
"f2i1086",
|
512
|
+
"f1rlsnju"
|
513
|
+
],
|
514
|
+
Beyfa6y: [
|
515
|
+
"f1rlsnju",
|
516
|
+
"f2i1086"
|
517
|
+
],
|
518
|
+
B7oj6ja: [
|
519
|
+
"f1stktl2",
|
520
|
+
"f1127022"
|
521
|
+
],
|
522
|
+
Btl43ni: [
|
523
|
+
"f1127022",
|
524
|
+
"f1stktl2"
|
525
|
+
],
|
526
|
+
icvyot: "f1ern45e",
|
527
|
+
vrafjx: [
|
528
|
+
"f1n71otn",
|
529
|
+
"f1deefiw"
|
530
|
+
],
|
531
|
+
oivjwe: "f1h8hb77",
|
532
|
+
wvpqe5: [
|
533
|
+
"f1deefiw",
|
534
|
+
"f1n71otn"
|
535
|
+
],
|
536
|
+
sj55zd: "f1ym3bx4",
|
537
|
+
Bceei9c: "f1k6fduh",
|
538
|
+
Be2twd7: "fy9rknc",
|
539
|
+
Bhrd7zp: "ff5ikls",
|
540
|
+
Bqenvij: "frvgh55",
|
541
|
+
Bg96gwp: "f8xlz6g",
|
542
|
+
B68tc82: "f1mtd64y",
|
543
|
+
Bmxbyg5: "f1y7q3j9",
|
544
|
+
z8tnut: "f1g0x7ka",
|
545
|
+
z189sj: [
|
546
|
+
"fhxju0i",
|
547
|
+
"f1cnd47f"
|
548
|
+
],
|
549
|
+
Byoj8tv: "f1qch9an",
|
550
|
+
uwmqm3: [
|
551
|
+
"f1cnd47f",
|
552
|
+
"fhxju0i"
|
553
|
+
],
|
554
|
+
a9b677: "fq4mcun",
|
555
|
+
Bx0yju7: "f10y451g",
|
556
|
+
l98f4w: "f1dwpgx3"
|
557
|
+
}
|
558
|
+
}, {
|
559
|
+
d: [
|
560
|
+
".f1c21dwh{background-color:var(--colorTransparentBackground);}",
|
561
|
+
".f2i1086{border-bottom-right-radius:2px;}",
|
562
|
+
".f1rlsnju{border-bottom-left-radius:2px;}",
|
563
|
+
".f1stktl2{border-top-right-radius:2px;}",
|
564
|
+
".f1127022{border-top-left-radius:2px;}",
|
565
|
+
".f1ern45e{border-top-style:none;}",
|
566
|
+
".f1n71otn{border-right-style:none;}",
|
567
|
+
".f1deefiw{border-left-style:none;}",
|
568
|
+
".f1h8hb77{border-bottom-style:none;}",
|
569
|
+
".f1ym3bx4{color:inherit;}",
|
570
|
+
".f1k6fduh{cursor:pointer;}",
|
571
|
+
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
572
|
+
".ff5ikls{font-weight:inherit;}",
|
573
|
+
".frvgh55{height:24px;}",
|
574
|
+
".f8xlz6g{line-height:24px;}",
|
575
|
+
".f1mtd64y{overflow-x:visible;}",
|
576
|
+
".f1y7q3j9{overflow-y:visible;}",
|
577
|
+
".f1g0x7ka{padding-top:0;}",
|
578
|
+
".fhxju0i{padding-right:0;}",
|
579
|
+
".f1cnd47f{padding-left:0;}",
|
580
|
+
".f1qch9an{padding-bottom:0;}",
|
581
|
+
".fq4mcun{width:24px;}",
|
582
|
+
".f10y451gspan{height:inherit;}",
|
583
|
+
".f1dwpgx3span{line-height:inherit;}"
|
584
|
+
]
|
585
|
+
});
|
586
|
+
const useDayIsTodayStyles = /*#__PURE__*/ (0, _react.__styles)({
|
587
|
+
base: {
|
588
|
+
De3pzq: "ffp7eso",
|
589
|
+
Bbmb7ep: [
|
590
|
+
"f1xbx3v5",
|
591
|
+
"fh9p2o2"
|
592
|
+
],
|
593
|
+
Beyfa6y: [
|
594
|
+
"fh9p2o2",
|
595
|
+
"f1xbx3v5"
|
596
|
+
],
|
597
|
+
B7oj6ja: [
|
598
|
+
"f18mldvw",
|
599
|
+
"f3h6kr5"
|
600
|
+
],
|
601
|
+
Btl43ni: [
|
602
|
+
"f3h6kr5",
|
603
|
+
"f18mldvw"
|
604
|
+
],
|
605
|
+
sj55zd: "f1phragk",
|
606
|
+
Bhrd7zp: "fl43uef",
|
607
|
+
Bsw6fvg: "fg374yq",
|
608
|
+
Bjwas2f: "fx4t0an",
|
609
|
+
Bn1d65q: [
|
610
|
+
"f1bd7qk0",
|
611
|
+
"fk5vpic"
|
612
|
+
],
|
613
|
+
Bxeuatn: "fgxnpfp",
|
614
|
+
n51gp8: [
|
615
|
+
"fk5vpic",
|
616
|
+
"f1bd7qk0"
|
617
|
+
],
|
618
|
+
Bbusuzp: "f1yig07e",
|
619
|
+
ycbfsm: "fkc42ay",
|
620
|
+
jxbfoe: "fj0lumn",
|
621
|
+
Bg4iunc: "f1cikclm"
|
622
|
+
}
|
623
|
+
}, {
|
624
|
+
d: [
|
625
|
+
".ffp7eso{background-color:var(--colorBrandBackground);}",
|
626
|
+
".f1xbx3v5{border-bottom-right-radius:100%;}",
|
627
|
+
".fh9p2o2{border-bottom-left-radius:100%;}",
|
628
|
+
".f18mldvw{border-top-right-radius:100%;}",
|
629
|
+
".f3h6kr5{border-top-left-radius:100%;}",
|
630
|
+
".f1phragk{color:var(--colorNeutralForegroundOnBrand);}",
|
631
|
+
".fl43uef{font-weight:var(--fontWeightSemibold);}",
|
632
|
+
".fj0lumn>.fui-CalendarDayGrid__dayMarker{background-color:var(--colorNeutralForegroundOnBrand);}"
|
633
|
+
],
|
634
|
+
m: [
|
635
|
+
[
|
636
|
+
"@media (forced-colors: active){.fg374yq{background-color:WindowText;}}",
|
637
|
+
{
|
638
|
+
m: "(forced-colors: active)"
|
639
|
+
}
|
640
|
+
],
|
641
|
+
[
|
642
|
+
"@media (forced-colors: active){.fx4t0an{border-top-color:WindowText;}}",
|
643
|
+
{
|
644
|
+
m: "(forced-colors: active)"
|
645
|
+
}
|
646
|
+
],
|
647
|
+
[
|
648
|
+
"@media (forced-colors: active){.f1bd7qk0{border-right-color:WindowText;}.fk5vpic{border-left-color:WindowText;}}",
|
649
|
+
{
|
650
|
+
m: "(forced-colors: active)"
|
651
|
+
}
|
652
|
+
],
|
653
|
+
[
|
654
|
+
"@media (forced-colors: active){.fgxnpfp{border-bottom-color:WindowText;}}",
|
655
|
+
{
|
656
|
+
m: "(forced-colors: active)"
|
657
|
+
}
|
658
|
+
],
|
659
|
+
[
|
660
|
+
"@media (forced-colors: active){.f1yig07e{color:Window;}}",
|
661
|
+
{
|
662
|
+
m: "(forced-colors: active)"
|
663
|
+
}
|
664
|
+
],
|
665
|
+
[
|
666
|
+
"@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
|
667
|
+
{
|
668
|
+
m: "(forced-colors: active)"
|
669
|
+
}
|
670
|
+
],
|
671
|
+
[
|
672
|
+
"@media (forced-colors: active){.f1cikclm>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
|
673
|
+
{
|
674
|
+
m: "(forced-colors: active)"
|
675
|
+
}
|
676
|
+
]
|
677
|
+
]
|
678
|
+
});
|
679
|
+
const useFirstTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
680
|
+
base: {
|
681
|
+
Bqenvij: "fniina8",
|
682
|
+
abs64n: "fk73vx1",
|
683
|
+
B68tc82: "f1p9o1ba",
|
684
|
+
Bmxbyg5: "f1sil6mw",
|
685
|
+
qhf8xq: "f1euv43f",
|
686
|
+
a9b677: "f3tsq5r"
|
687
|
+
},
|
688
|
+
verticalForward: {
|
689
|
+
vin17d: "f5f2jbu",
|
690
|
+
Bf5fcs: "fywypte",
|
691
|
+
Bv12yb3: "fb3mxun",
|
692
|
+
Ezkn3b: "f1ee2ue"
|
693
|
+
}
|
694
|
+
}, {
|
695
|
+
d: [
|
696
|
+
".fniina8{height:0;}",
|
697
|
+
".fk73vx1{opacity:0;}",
|
698
|
+
".f1p9o1ba{overflow-x:hidden;}",
|
699
|
+
".f1sil6mw{overflow-y:hidden;}",
|
700
|
+
".f1euv43f{position:absolute;}",
|
701
|
+
".f3tsq5r{width:0;}",
|
702
|
+
".f5f2jbu{animation-duration:0.367s;}",
|
703
|
+
".fywypte{animation-fill-mode:both;}",
|
704
|
+
".fb3mxun{animation-name:f199e34v,f76svrd,fhwv0sk;}",
|
705
|
+
".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
|
706
|
+
],
|
707
|
+
k: [
|
708
|
+
"@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
|
709
|
+
"@keyframes f76svrd{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -20px, 0);}}",
|
710
|
+
"@keyframes fhwv0sk{100%{height:0px;overflow-x:hidden;overflow-y:hidden;width:0px;}99.9%{height:28px;overflow-x:visible;overflow-y:visible;width:100%;}0%{height:28px;overflow-x:visible;overflow-y:visible;width:100%;}}"
|
711
|
+
]
|
712
|
+
});
|
713
|
+
const useLastTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
|
714
|
+
base: {
|
715
|
+
Bqenvij: "fniina8",
|
716
|
+
B6of3ja: "flykjtj",
|
717
|
+
abs64n: "fk73vx1",
|
718
|
+
B68tc82: "f1p9o1ba",
|
719
|
+
Bmxbyg5: "f1sil6mw",
|
720
|
+
qhf8xq: "f1euv43f",
|
721
|
+
a9b677: "f3tsq5r"
|
722
|
+
},
|
723
|
+
verticalBackward: {
|
724
|
+
vin17d: "f5f2jbu",
|
725
|
+
Bf5fcs: "fywypte",
|
726
|
+
Bv12yb3: "f1h56eac",
|
727
|
+
Ezkn3b: "f1ee2ue"
|
728
|
+
}
|
729
|
+
}, {
|
730
|
+
d: [
|
731
|
+
".fniina8{height:0;}",
|
732
|
+
".flykjtj{margin-top:-28px;}",
|
733
|
+
".fk73vx1{opacity:0;}",
|
734
|
+
".f1p9o1ba{overflow-x:hidden;}",
|
735
|
+
".f1sil6mw{overflow-y:hidden;}",
|
736
|
+
".f1euv43f{position:absolute;}",
|
737
|
+
".f3tsq5r{width:0;}",
|
738
|
+
".f5f2jbu{animation-duration:0.367s;}",
|
739
|
+
".fywypte{animation-fill-mode:both;}",
|
740
|
+
".f1h56eac{animation-name:f199e34v,f18895iq,fhwv0sk;}",
|
741
|
+
".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
|
742
|
+
],
|
743
|
+
k: [
|
744
|
+
"@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
|
745
|
+
"@keyframes f18895iq{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 20px, 0);}}",
|
746
|
+
"@keyframes fhwv0sk{100%{height:0px;overflow-x:hidden;overflow-y:hidden;width:0px;}99.9%{height:28px;overflow-x:visible;overflow-y:visible;width:100%;}0%{height:28px;overflow-x:visible;overflow-y:visible;width:100%;}}"
|
747
|
+
]
|
748
|
+
});
|
749
|
+
const useDayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
|
750
|
+
base: {
|
751
|
+
De3pzq: "fnggedw",
|
752
|
+
Bbmb7ep: [
|
753
|
+
"f1xbx3v5",
|
754
|
+
"fh9p2o2"
|
755
|
+
],
|
756
|
+
Beyfa6y: [
|
757
|
+
"fh9p2o2",
|
758
|
+
"f1xbx3v5"
|
759
|
+
],
|
760
|
+
B7oj6ja: [
|
761
|
+
"f18mldvw",
|
762
|
+
"f3h6kr5"
|
763
|
+
],
|
764
|
+
Btl43ni: [
|
765
|
+
"f3h6kr5",
|
766
|
+
"f18mldvw"
|
767
|
+
],
|
768
|
+
B5kzvoi: "f1oq0udb",
|
769
|
+
Bqenvij: "f6ywr7j",
|
770
|
+
oyh7mz: [
|
771
|
+
"f1vgc2s3",
|
772
|
+
"f1e31b4d"
|
773
|
+
],
|
774
|
+
B6of3ja: "fgr6219",
|
775
|
+
t21cq0: [
|
776
|
+
"f1ujusj6",
|
777
|
+
"fcgxt0o"
|
778
|
+
],
|
779
|
+
jrapky: "f10jk5vf",
|
780
|
+
Frg6f3: [
|
781
|
+
"fcgxt0o",
|
782
|
+
"f1ujusj6"
|
783
|
+
],
|
784
|
+
qhf8xq: "f1euv43f",
|
785
|
+
j35jbq: [
|
786
|
+
"f1e31b4d",
|
787
|
+
"f1vgc2s3"
|
788
|
+
],
|
789
|
+
a9b677: "faro0ui",
|
790
|
+
Bsw6fvg: "fg374yq",
|
791
|
+
ycbfsm: "fkc42ay"
|
792
|
+
}
|
793
|
+
}, {
|
794
|
+
d: [
|
795
|
+
".fnggedw{background-color:var(--colorBrandForeground2);}",
|
796
|
+
".f1xbx3v5{border-bottom-right-radius:100%;}",
|
797
|
+
".fh9p2o2{border-bottom-left-radius:100%;}",
|
798
|
+
".f18mldvw{border-top-right-radius:100%;}",
|
799
|
+
".f3h6kr5{border-top-left-radius:100%;}",
|
800
|
+
".f1oq0udb{bottom:1px;}",
|
801
|
+
".f6ywr7j{height:4px;}",
|
802
|
+
".f1vgc2s3{left:0;}",
|
803
|
+
".f1e31b4d{right:0;}",
|
804
|
+
".fgr6219{margin-top:auto;}",
|
805
|
+
".f1ujusj6{margin-right:auto;}",
|
806
|
+
".fcgxt0o{margin-left:auto;}",
|
807
|
+
".f10jk5vf{margin-bottom:auto;}",
|
808
|
+
".f1euv43f{position:absolute;}",
|
809
|
+
".faro0ui{width:4px;}"
|
810
|
+
],
|
811
|
+
m: [
|
812
|
+
[
|
813
|
+
"@media (forced-colors: active){.fg374yq{background-color:WindowText;}}",
|
814
|
+
{
|
815
|
+
m: "(forced-colors: active)"
|
816
|
+
}
|
817
|
+
],
|
818
|
+
[
|
819
|
+
"@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
|
820
|
+
{
|
821
|
+
m: "(forced-colors: active)"
|
822
|
+
}
|
823
|
+
]
|
824
|
+
]
|
825
|
+
});
|
826
|
+
const useCornerBorderAndRadiusStyles = /*#__PURE__*/ (0, _react.__styles)({
|
827
|
+
corners: {
|
828
|
+
Cy64m2: [
|
829
|
+
"fgk2v8v",
|
830
|
+
"flgychs"
|
831
|
+
],
|
832
|
+
Bnn43bw: [
|
833
|
+
"fon8hnx",
|
834
|
+
"f1dzb7s0"
|
835
|
+
],
|
836
|
+
feanbc: [
|
837
|
+
"f5gufe6",
|
838
|
+
"f6b3fnj"
|
839
|
+
],
|
840
|
+
B4268ip: [
|
841
|
+
"fo35n0e",
|
842
|
+
"f96pych"
|
843
|
+
]
|
844
|
+
}
|
845
|
+
}, {
|
846
|
+
d: [
|
847
|
+
".fgk2v8v.fui-CalendarDayGrid__topRightCornerDate{border-top-right-radius:2px;}",
|
848
|
+
".flgychs.fui-CalendarDayGrid__topRightCornerDate{border-top-left-radius:2px;}",
|
849
|
+
".fon8hnx.fui-CalendarDayGrid__topLeftCornerDate{border-top-left-radius:2px;}",
|
850
|
+
".f1dzb7s0.fui-CalendarDayGrid__topLeftCornerDate{border-top-right-radius:2px;}",
|
851
|
+
".f5gufe6.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-right-radius:2px;}",
|
852
|
+
".f6b3fnj.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-left-radius:2px;}",
|
853
|
+
".fo35n0e.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-left-radius:2px;}",
|
854
|
+
".f96pych.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-right-radius:2px;}"
|
855
|
+
]
|
856
|
+
});
|
857
|
+
const useCalendarDayGridStyles_unstable = (props)=>{
|
858
|
+
const wrapperStyles = useWrapperStyles();
|
859
|
+
const tableStyles = useTableStyles();
|
860
|
+
const dayCellStyles = useDayCellStyles();
|
861
|
+
const daySelectedStyles = useDaySelectedStyles();
|
862
|
+
const weekRowStyles = useWeekRowStyles();
|
863
|
+
const weekDayLabelCellStyles = useWeekDayLabelCellStyles();
|
864
|
+
const weekNumberCellStyles = useWeekNumberCellStyles();
|
865
|
+
const dayOutsideBoundsStyles = useDayOutsideBoundsStyles();
|
866
|
+
const dayOutsideNavigatedMonthStyles = useDayOutsideNavigatedMonthStyles();
|
867
|
+
const dayButtonStyles = useDayButtonStyles();
|
868
|
+
const dayIsTodayStyles = useDayIsTodayStyles();
|
869
|
+
const firstTransitionWeekStyles = useFirstTransitionWeekStyles();
|
870
|
+
const lastTransitionWeekStyles = useLastTransitionWeekStyles();
|
871
|
+
const dayMarkerStyles = useDayMarkerStyles();
|
872
|
+
const cornerBorderAndRadiusStyles = useCornerBorderAndRadiusStyles();
|
873
|
+
const { animateBackwards, animationDirection, lightenDaysOutsideNavigatedMonth, showWeekNumbers } = props;
|
874
|
+
return {
|
875
|
+
wrapper: (0, _react.mergeClasses)(calendarDayGridClassNames.wrapper, wrapperStyles.base),
|
876
|
+
table: (0, _react.mergeClasses)(calendarDayGridClassNames.table, tableStyles.base, showWeekNumbers && tableStyles.showWeekNumbers),
|
877
|
+
dayCell: (0, _react.mergeClasses)(calendarDayGridClassNames.dayCell, dayCellStyles.base, cornerBorderAndRadiusStyles.corners),
|
878
|
+
daySelected: (0, _react.mergeClasses)(calendarDayGridClassNames.daySelected, daySelectedStyles.base),
|
879
|
+
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)),
|
880
|
+
weekDayLabelCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekDayLabelCell, weekDayLabelCellStyles.base),
|
881
|
+
weekNumberCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekNumberCell, weekNumberCellStyles.base),
|
882
|
+
dayOutsideBounds: (0, _react.mergeClasses)(calendarDayGridClassNames.dayOutsideBounds, dayOutsideBoundsStyles.base),
|
883
|
+
dayOutsideNavigatedMonth: (0, _react.mergeClasses)(calendarDayGridClassNames.dayOutsideNavigatedMonth, lightenDaysOutsideNavigatedMonth && dayOutsideNavigatedMonthStyles.lightenDaysOutsideNavigatedMonth),
|
884
|
+
dayButton: (0, _react.mergeClasses)(calendarDayGridClassNames.dayButton, dayButtonStyles.base),
|
885
|
+
dayIsToday: (0, _react.mergeClasses)(calendarDayGridClassNames.dayIsToday, dayIsTodayStyles.base),
|
886
|
+
firstTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.firstTransitionWeek, firstTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && !animateBackwards && firstTransitionWeekStyles.verticalForward),
|
887
|
+
lastTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.lastTransitionWeek, lastTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && animateBackwards && lastTransitionWeekStyles.verticalBackward),
|
888
|
+
dayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayMarker, dayMarkerStyles.base)
|
889
|
+
};
|
890
|
+
}; //# sourceMappingURL=useCalendarDayGridStyles.styles.js.map
|