@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.
Files changed (227) hide show
  1. package/CHANGELOG.md +12 -12
  2. package/dist/index.d.ts +1422 -0
  3. package/lib/Calendar.js +1 -0
  4. package/lib/Calendar.js.map +1 -0
  5. package/lib/CalendarDay.js +1 -0
  6. package/lib/CalendarDay.js.map +1 -0
  7. package/lib/CalendarDayGrid.js +1 -0
  8. package/lib/CalendarDayGrid.js.map +1 -0
  9. package/lib/CalendarMonth.js +1 -0
  10. package/lib/CalendarMonth.js.map +1 -0
  11. package/lib/CalendarPicker.js +1 -0
  12. package/lib/CalendarPicker.js.map +1 -0
  13. package/lib/CalendarYear.js +1 -0
  14. package/lib/CalendarYear.js.map +1 -0
  15. package/lib/components/Calendar/Calendar.js +308 -0
  16. package/lib/components/Calendar/Calendar.js.map +1 -0
  17. package/lib/components/Calendar/Calendar.types.js +10 -0
  18. package/lib/components/Calendar/Calendar.types.js.map +1 -0
  19. package/lib/components/Calendar/calendarNavigationIcons.js +7 -0
  20. package/lib/components/Calendar/calendarNavigationIcons.js.map +1 -0
  21. package/lib/components/Calendar/defaults.js +2 -0
  22. package/lib/components/Calendar/defaults.js.map +1 -0
  23. package/lib/components/Calendar/index.js +4 -0
  24. package/lib/components/Calendar/index.js.map +1 -0
  25. package/lib/components/Calendar/useCalendarStyles.styles.js +204 -0
  26. package/lib/components/Calendar/useCalendarStyles.styles.js.map +1 -0
  27. package/lib/components/CalendarDay/CalendarDay.js +107 -0
  28. package/lib/components/CalendarDay/CalendarDay.js.map +1 -0
  29. package/lib/components/CalendarDay/CalendarDay.types.js +1 -0
  30. package/lib/components/CalendarDay/CalendarDay.types.js.map +1 -0
  31. package/lib/components/CalendarDay/index.js +2 -0
  32. package/lib/components/CalendarDay/index.js.map +1 -0
  33. package/lib/components/CalendarDay/useCalendarDayStyles.styles.js +227 -0
  34. package/lib/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
  35. package/lib/components/CalendarDayGrid/CalendarDayGrid.js +169 -0
  36. package/lib/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
  37. package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js +1 -0
  38. package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
  39. package/lib/components/CalendarDayGrid/CalendarGridDayCell.js +163 -0
  40. package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
  41. package/lib/components/CalendarDayGrid/CalendarGridRow.js +27 -0
  42. package/lib/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
  43. package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js +36 -0
  44. package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
  45. package/lib/components/CalendarDayGrid/index.js +2 -0
  46. package/lib/components/CalendarDayGrid/index.js.map +1 -0
  47. package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +620 -0
  48. package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
  49. package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js +97 -0
  50. package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js.map +1 -0
  51. package/lib/components/CalendarDayGrid/useWeeks.js +46 -0
  52. package/lib/components/CalendarDayGrid/useWeeks.js.map +1 -0
  53. package/lib/components/CalendarMonth/CalendarMonth.js +261 -0
  54. package/lib/components/CalendarMonth/CalendarMonth.js.map +1 -0
  55. package/lib/components/CalendarMonth/CalendarMonth.types.js +1 -0
  56. package/lib/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
  57. package/lib/components/CalendarMonth/index.js +2 -0
  58. package/lib/components/CalendarMonth/index.js.map +1 -0
  59. package/lib/components/CalendarMonth/useCalendarMonthStyles.styles.js +11 -0
  60. package/lib/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
  61. package/lib/components/CalendarPicker/CalendarPicker.types.js +3 -0
  62. package/lib/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
  63. package/lib/components/CalendarPicker/index.js +1 -0
  64. package/lib/components/CalendarPicker/index.js.map +1 -0
  65. package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js +462 -0
  66. package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -0
  67. package/lib/components/CalendarYear/CalendarYear.js +298 -0
  68. package/lib/components/CalendarYear/CalendarYear.js.map +1 -0
  69. package/lib/components/CalendarYear/CalendarYear.types.js +1 -0
  70. package/lib/components/CalendarYear/CalendarYear.types.js.map +1 -0
  71. package/lib/components/CalendarYear/index.js +2 -0
  72. package/lib/components/CalendarYear/index.js.map +1 -0
  73. package/lib/components/CalendarYear/useCalendarYearStyles.styles.js +11 -0
  74. package/lib/components/CalendarYear/useCalendarYearStyles.styles.js.map +1 -0
  75. package/lib/index.js +7 -0
  76. package/lib/index.js.map +1 -0
  77. package/lib/utils/animations.js +96 -0
  78. package/lib/utils/animations.js.map +1 -0
  79. package/lib/utils/constants.js +62 -0
  80. package/lib/utils/constants.js.map +1 -0
  81. package/lib/utils/dateFormatting/dateFormatting.defaults.js +95 -0
  82. package/lib/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
  83. package/lib/utils/dateFormatting/dateFormatting.types.js +1 -0
  84. package/lib/utils/dateFormatting/dateFormatting.types.js.map +1 -0
  85. package/lib/utils/dateFormatting/index.js +1 -0
  86. package/lib/utils/dateFormatting/index.js.map +1 -0
  87. package/lib/utils/dateGrid/dateGrid.types.js +1 -0
  88. package/lib/utils/dateGrid/dateGrid.types.js.map +1 -0
  89. package/lib/utils/dateGrid/findAvailableDate.js +22 -0
  90. package/lib/utils/dateGrid/findAvailableDate.js.map +1 -0
  91. package/lib/utils/dateGrid/getBoundedDateRange.js +18 -0
  92. package/lib/utils/dateGrid/getBoundedDateRange.js.map +1 -0
  93. package/lib/utils/dateGrid/getDateRangeTypeToUse.js +16 -0
  94. package/lib/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
  95. package/lib/utils/dateGrid/getDayGrid.js +72 -0
  96. package/lib/utils/dateGrid/getDayGrid.js.map +1 -0
  97. package/lib/utils/dateGrid/index.js +4 -0
  98. package/lib/utils/dateGrid/index.js.map +1 -0
  99. package/lib/utils/dateGrid/isAfterMaxDate.js +9 -0
  100. package/lib/utils/dateGrid/isAfterMaxDate.js.map +1 -0
  101. package/lib/utils/dateGrid/isBeforeMinDate.js +9 -0
  102. package/lib/utils/dateGrid/isBeforeMinDate.js.map +1 -0
  103. package/lib/utils/dateGrid/isContiguous.js +18 -0
  104. package/lib/utils/dateGrid/isContiguous.js.map +1 -0
  105. package/lib/utils/dateGrid/isRestrictedDate.js +15 -0
  106. package/lib/utils/dateGrid/isRestrictedDate.js.map +1 -0
  107. package/lib/utils/dateMath/dateMath.js +339 -0
  108. package/lib/utils/dateMath/dateMath.js.map +1 -0
  109. package/lib/utils/dateMath/index.js +1 -0
  110. package/lib/utils/dateMath/index.js.map +1 -0
  111. package/lib/utils/focus.js +24 -0
  112. package/lib/utils/focus.js.map +1 -0
  113. package/lib/utils/index.js +6 -0
  114. package/lib/utils/index.js.map +1 -0
  115. package/lib-commonjs/Calendar.js +28 -0
  116. package/lib-commonjs/Calendar.js.map +1 -0
  117. package/lib-commonjs/CalendarDay.js +22 -0
  118. package/lib-commonjs/CalendarDay.js.map +1 -0
  119. package/lib-commonjs/CalendarDayGrid.js +25 -0
  120. package/lib-commonjs/CalendarDayGrid.js.map +1 -0
  121. package/lib-commonjs/CalendarMonth.js +19 -0
  122. package/lib-commonjs/CalendarMonth.js.map +1 -0
  123. package/lib-commonjs/CalendarPicker.js +19 -0
  124. package/lib-commonjs/CalendarPicker.js.map +1 -0
  125. package/lib-commonjs/CalendarYear.js +19 -0
  126. package/lib-commonjs/CalendarYear.js.map +1 -0
  127. package/lib-commonjs/components/Calendar/Calendar.js +317 -0
  128. package/lib-commonjs/components/Calendar/Calendar.js.map +1 -0
  129. package/lib-commonjs/components/Calendar/Calendar.types.js +21 -0
  130. package/lib-commonjs/components/Calendar/Calendar.types.js.map +1 -0
  131. package/lib-commonjs/components/Calendar/calendarNavigationIcons.js +18 -0
  132. package/lib-commonjs/components/Calendar/calendarNavigationIcons.js.map +1 -0
  133. package/lib-commonjs/components/Calendar/defaults.js +12 -0
  134. package/lib-commonjs/components/Calendar/defaults.js.map +1 -0
  135. package/lib-commonjs/components/Calendar/index.js +31 -0
  136. package/lib-commonjs/components/Calendar/index.js.map +1 -0
  137. package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js +311 -0
  138. package/lib-commonjs/components/Calendar/useCalendarStyles.styles.js.map +1 -0
  139. package/lib-commonjs/components/CalendarDay/CalendarDay.js +116 -0
  140. package/lib-commonjs/components/CalendarDay/CalendarDay.js.map +1 -0
  141. package/lib-commonjs/components/CalendarDay/CalendarDay.types.js +6 -0
  142. package/lib-commonjs/components/CalendarDay/CalendarDay.types.js.map +1 -0
  143. package/lib-commonjs/components/CalendarDay/index.js +23 -0
  144. package/lib-commonjs/components/CalendarDay/index.js.map +1 -0
  145. package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js +370 -0
  146. package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.js.map +1 -0
  147. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js +180 -0
  148. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
  149. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js +6 -0
  150. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
  151. package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js +172 -0
  152. package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
  153. package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js +36 -0
  154. package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
  155. package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js +45 -0
  156. package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
  157. package/lib-commonjs/components/CalendarDayGrid/index.js +26 -0
  158. package/lib-commonjs/components/CalendarDayGrid/index.js.map +1 -0
  159. package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js +1121 -0
  160. package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
  161. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.js +105 -0
  162. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.js.map +1 -0
  163. package/lib-commonjs/components/CalendarDayGrid/useWeeks.js +55 -0
  164. package/lib-commonjs/components/CalendarDayGrid/useWeeks.js.map +1 -0
  165. package/lib-commonjs/components/CalendarMonth/CalendarMonth.js +270 -0
  166. package/lib-commonjs/components/CalendarMonth/CalendarMonth.js.map +1 -0
  167. package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js +6 -0
  168. package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
  169. package/lib-commonjs/components/CalendarMonth/index.js +20 -0
  170. package/lib-commonjs/components/CalendarMonth/index.js.map +1 -0
  171. package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.styles.js +15 -0
  172. package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.styles.js.map +1 -0
  173. package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js +6 -0
  174. package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
  175. package/lib-commonjs/components/CalendarPicker/index.js +19 -0
  176. package/lib-commonjs/components/CalendarPicker/index.js.map +1 -0
  177. package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js +773 -0
  178. package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.js.map +1 -0
  179. package/lib-commonjs/components/CalendarYear/CalendarYear.js +307 -0
  180. package/lib-commonjs/components/CalendarYear/CalendarYear.js.map +1 -0
  181. package/lib-commonjs/components/CalendarYear/CalendarYear.types.js +6 -0
  182. package/lib-commonjs/components/CalendarYear/CalendarYear.types.js.map +1 -0
  183. package/lib-commonjs/components/CalendarYear/index.js +20 -0
  184. package/lib-commonjs/components/CalendarYear/index.js.map +1 -0
  185. package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.js +15 -0
  186. package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.js.map +1 -0
  187. package/lib-commonjs/index.js +154 -0
  188. package/lib-commonjs/index.js.map +1 -0
  189. package/lib-commonjs/utils/animations.js +153 -0
  190. package/lib-commonjs/utils/animations.js.map +1 -0
  191. package/lib-commonjs/utils/constants.js +92 -0
  192. package/lib-commonjs/utils/constants.js.map +1 -0
  193. package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js +116 -0
  194. package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
  195. package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js +4 -0
  196. package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js.map +1 -0
  197. package/lib-commonjs/utils/dateFormatting/index.js +37 -0
  198. package/lib-commonjs/utils/dateFormatting/index.js.map +1 -0
  199. package/lib-commonjs/utils/dateGrid/dateGrid.types.js +4 -0
  200. package/lib-commonjs/utils/dateGrid/dateGrid.types.js.map +1 -0
  201. package/lib-commonjs/utils/dateGrid/findAvailableDate.js +29 -0
  202. package/lib-commonjs/utils/dateGrid/findAvailableDate.js.map +1 -0
  203. package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js +23 -0
  204. package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js.map +1 -0
  205. package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js +20 -0
  206. package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
  207. package/lib-commonjs/utils/dateGrid/getDayGrid.js +77 -0
  208. package/lib-commonjs/utils/dateGrid/getDayGrid.js.map +1 -0
  209. package/lib-commonjs/utils/dateGrid/index.js +28 -0
  210. package/lib-commonjs/utils/dateGrid/index.js.map +1 -0
  211. package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js +15 -0
  212. package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js.map +1 -0
  213. package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js +15 -0
  214. package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js.map +1 -0
  215. package/lib-commonjs/utils/dateGrid/isContiguous.js +28 -0
  216. package/lib-commonjs/utils/dateGrid/isContiguous.js.map +1 -0
  217. package/lib-commonjs/utils/dateGrid/isRestrictedDate.js +21 -0
  218. package/lib-commonjs/utils/dateGrid/isRestrictedDate.js.map +1 -0
  219. package/lib-commonjs/utils/dateMath/dateMath.js +308 -0
  220. package/lib-commonjs/utils/dateMath/dateMath.js.map +1 -0
  221. package/lib-commonjs/utils/dateMath/index.js +67 -0
  222. package/lib-commonjs/utils/dateMath/index.js.map +1 -0
  223. package/lib-commonjs/utils/focus.js +29 -0
  224. package/lib-commonjs/utils/focus.js.map +1 -0
  225. package/lib-commonjs/utils/index.js +174 -0
  226. package/lib-commonjs/utils/index.js.map +1 -0
  227. package/package.json +9 -9
@@ -0,0 +1,1121 @@
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
+ daySingleSelected: 'fui-CalendarDayGrid__daySingleSelected',
30
+ weekRow: 'fui-CalendarDayGrid__weekRow',
31
+ weekDayLabelCell: 'fui-CalendarDayGrid__weekDayLabelCell',
32
+ weekNumberCell: 'fui-CalendarDayGrid__weekNumberCell',
33
+ dayOutsideBounds: 'fui-CalendarDayGrid__dayOutsideBounds',
34
+ dayOutsideNavigatedMonth: 'fui-CalendarDayGrid__dayOutsideNavigatedMonth',
35
+ dayButton: 'fui-CalendarDayGrid__dayButton',
36
+ dayIsToday: 'fui-CalendarDayGrid__dayIsToday',
37
+ firstTransitionWeek: 'fui-CalendarDayGrid__firstTransitionWeek',
38
+ lastTransitionWeek: 'fui-CalendarDayGrid__lastTransitionWeek',
39
+ dayMarker: 'fui-CalendarDayGrid__dayMarker',
40
+ dayTodayMarker: 'fui-CalendarDayGrid__dayTodayMarker'
41
+ };
42
+ const extraCalendarDayGridClassNames = {
43
+ hoverStyle: 'fui-CalendarDayGrid__hoverStyle',
44
+ pressedStyle: 'fui-CalendarDayGrid__pressedStyle'
45
+ };
46
+ const useWrapperStyles = /*#__PURE__*/ (0, _react.__styles)({
47
+ base: {
48
+ Byoj8tv: "f1fow5ox"
49
+ }
50
+ }, {
51
+ d: [
52
+ ".f1fow5ox{padding-bottom:10px;}"
53
+ ]
54
+ });
55
+ const useTableStyles = /*#__PURE__*/ (0, _react.__styles)({
56
+ base: {
57
+ po53p8: "fgkb47j",
58
+ Bxjg3zr: "f16vktn6",
59
+ Be2twd7: "fjoy568",
60
+ B6of3ja: "fvjh0tl",
61
+ Byoj8tv: "f1fow5ox",
62
+ qhf8xq: "f10pi13n",
63
+ B73mfa3: "f14m3nip",
64
+ fsow6f: "f17mccla",
65
+ a9b677: "f4m2ahc"
66
+ },
67
+ showWeekNumbers: {
68
+ a9b677: "fl524qk"
69
+ }
70
+ }, {
71
+ d: [
72
+ ".fgkb47j{border-collapse:collapse;}",
73
+ ".f16vktn6{border-spacing:0;}",
74
+ ".fjoy568{font-size:inherit;}",
75
+ ".fvjh0tl{margin-top:4px;}",
76
+ ".f1fow5ox{padding-bottom:10px;}",
77
+ ".f10pi13n{position:relative;}",
78
+ ".f14m3nip{table-layout:fixed;}",
79
+ ".f17mccla{text-align:center;}",
80
+ ".f4m2ahc{width:196px;}",
81
+ ".fl524qk{width:226px;}"
82
+ ]
83
+ });
84
+ const useDayCellStyles = /*#__PURE__*/ (0, _react.__styles)({
85
+ base: {
86
+ sj55zd: "f19n0e5",
87
+ Bceei9c: "f1k6fduh",
88
+ Be2twd7: "fy9rknc",
89
+ Bhrd7zp: "figsok6",
90
+ jrapky: 0,
91
+ Frg6f3: 0,
92
+ t21cq0: 0,
93
+ B6of3ja: 0,
94
+ B74szlk: "f1s184ao",
95
+ Byoj8tv: 0,
96
+ uwmqm3: 0,
97
+ z189sj: 0,
98
+ z8tnut: 0,
99
+ B0ocmuz: "fqtknz5",
100
+ qhf8xq: "f10pi13n",
101
+ Bsw6fvg: "f8pusc0",
102
+ Bbusuzp: "fqgauei",
103
+ cvlxnx: "fp6dsbd",
104
+ Bweudez: "f4xgodq",
105
+ Bsnevi5: 0,
106
+ z1p9vi: 0,
107
+ dua3dm: 0,
108
+ Bf7el8m: "f1ko8o2g",
109
+ xnb59o: "fts5qqo",
110
+ B0mcfed: "fq2wdp5",
111
+ Bj67fi1: "f1lhgsq9",
112
+ B2gfgcj: "fdbuq6n",
113
+ B6cqqer: "f16j2ub3",
114
+ fpurfy: "f5hk6jp",
115
+ Fioj4w: [
116
+ "f1d258es",
117
+ "f1llk4aj"
118
+ ],
119
+ Bq9yiu4: "ftezgwa",
120
+ cpbo2x: [
121
+ "f1llk4aj",
122
+ "f1d258es"
123
+ ],
124
+ Bq268z6: "f1iohfpm"
125
+ },
126
+ focusIndicator: {
127
+ Brovlpu: "ftqa4ok",
128
+ B486eqv: "f2hkw1w",
129
+ B8q5s1w: "f8hki3x",
130
+ Bci5o5g: [
131
+ "f1d2448m",
132
+ "ffh67wi"
133
+ ],
134
+ n8qw10: "f1bjia2o",
135
+ Bdrgwmp: [
136
+ "ffh67wi",
137
+ "f1d2448m"
138
+ ],
139
+ Bb7d1vk: "f226i61",
140
+ zhwhgb: [
141
+ "f13kzufm",
142
+ "fsx75g8"
143
+ ],
144
+ dhy2o1: "flujwa2",
145
+ Gfyso: [
146
+ "fsx75g8",
147
+ "f13kzufm"
148
+ ],
149
+ Bm4h7ae: "f15bsgw9",
150
+ B7ys5i9: "f14e48fq",
151
+ Busjfv9: "f18yb2kv",
152
+ Bhk32uz: "fd6o370",
153
+ f6g5ot: 0,
154
+ Boxcth7: 0,
155
+ Bhdgwq3: 0,
156
+ hgwjuy: 0,
157
+ Bshpdp8: 0,
158
+ Bsom6fd: 0,
159
+ Blkhhs4: 0,
160
+ Bonggc9: 0,
161
+ Ddfuxk: 0,
162
+ i03rao: 0,
163
+ kclons: 0,
164
+ clg4pj: 0,
165
+ Bpqj9nj: 0,
166
+ B6dhp37: 0,
167
+ Bf4ptjt: 0,
168
+ Bqtpl0w: 0,
169
+ i4rwgc: "fpqizxz",
170
+ Dah5zi: 0,
171
+ B1tsrr9: 0,
172
+ qqdqy8: 0,
173
+ Bkh64rk: 0,
174
+ e3fwne: "f3znvyf",
175
+ J0r882: "fqkqgbk",
176
+ Bule8hv: [
177
+ "f1as04kd",
178
+ "ft30ozv"
179
+ ],
180
+ Bjwuhne: "f8pxvb2",
181
+ Ghsupd: [
182
+ "ft30ozv",
183
+ "f1as04kd"
184
+ ]
185
+ }
186
+ }, {
187
+ d: [
188
+ ".f19n0e5{color:var(--colorNeutralForeground1);}",
189
+ ".f1k6fduh{cursor:pointer;}",
190
+ ".fy9rknc{font-size:var(--fontSizeBase200);}",
191
+ ".figsok6{font-weight:var(--fontWeightRegular);}",
192
+ [
193
+ ".f1s184ao{margin:0;}",
194
+ {
195
+ p: -1
196
+ }
197
+ ],
198
+ [
199
+ ".fqtknz5{padding:2px;}",
200
+ {
201
+ p: -1
202
+ }
203
+ ],
204
+ ".f10pi13n{position:relative;}",
205
+ ".fp6dsbd.fui-CalendarDayGrid__hoverStyle{color:var(--colorNeutralForeground1Static);}",
206
+ ".f4xgodq.fui-CalendarDayGrid__hoverStyle{background-color:var(--colorBrandBackgroundInvertedHover);}",
207
+ ".f1lhgsq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}",
208
+ ".fdbuq6n.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedPressed);}",
209
+ ".f8hki3x[data-fui-focus-visible]{border-top-color:transparent;}",
210
+ ".f1d2448m[data-fui-focus-visible]{border-right-color:transparent;}",
211
+ ".ffh67wi[data-fui-focus-visible]{border-left-color:transparent;}",
212
+ ".f1bjia2o[data-fui-focus-visible]{border-bottom-color:transparent;}",
213
+ ".f15bsgw9[data-fui-focus-visible]::after{content:\"\";}",
214
+ ".f14e48fq[data-fui-focus-visible]::after{position:absolute;}",
215
+ ".f18yb2kv[data-fui-focus-visible]::after{pointer-events:none;}",
216
+ ".fd6o370[data-fui-focus-visible]::after{z-index:1;}",
217
+ [
218
+ ".fpqizxz[data-fui-focus-visible]::after{border:var(--strokeWidthThick) solid var(--colorStrokeFocus2);}",
219
+ {
220
+ p: -2
221
+ }
222
+ ],
223
+ [
224
+ ".f3znvyf[data-fui-focus-visible]::after{border-radius:var(--borderRadiusMedium);}",
225
+ {
226
+ p: -1
227
+ }
228
+ ],
229
+ ".fqkqgbk[data-fui-focus-visible]::after{top:calc(var(--strokeWidthThick) * -1);}",
230
+ ".f1as04kd[data-fui-focus-visible]::after{right:calc(var(--strokeWidthThick) * -1);}",
231
+ ".ft30ozv[data-fui-focus-visible]::after{left:calc(var(--strokeWidthThick) * -1);}",
232
+ ".f8pxvb2[data-fui-focus-visible]::after{bottom:calc(var(--strokeWidthThick) * -1);}"
233
+ ],
234
+ m: [
235
+ [
236
+ "@media (forced-colors: active){.f8pusc0{background-color:Window;}}",
237
+ {
238
+ m: "(forced-colors: active)"
239
+ }
240
+ ],
241
+ [
242
+ "@media (forced-colors: active){.fqgauei{color:WindowText;}}",
243
+ {
244
+ m: "(forced-colors: active)"
245
+ }
246
+ ],
247
+ [
248
+ "@media (forced-colors: active){.f1ko8o2g.fui-CalendarDayGrid__hoverStyle{outline:1px solid Highlight;}}",
249
+ {
250
+ p: -1,
251
+ m: "(forced-colors: active)"
252
+ }
253
+ ],
254
+ [
255
+ "@media (forced-colors: active){.fts5qqo.fui-CalendarDayGrid__hoverStyle{z-index:3;}}",
256
+ {
257
+ m: "(forced-colors: active)"
258
+ }
259
+ ],
260
+ [
261
+ "@media (forced-colors: active){.fq2wdp5.fui-CalendarDayGrid__hoverStyle .fui-CalendarDayGrid__dayTodayMarker{background-color:Highlight;}}",
262
+ {
263
+ m: "(forced-colors: active)"
264
+ }
265
+ ],
266
+ [
267
+ "@media (forced-colors: active){.f16j2ub3.fui-CalendarDayGrid__pressedStyle{background-color:Window;}}",
268
+ {
269
+ m: "(forced-colors: active)"
270
+ }
271
+ ],
272
+ [
273
+ "@media (forced-colors: active){.f5hk6jp.fui-CalendarDayGrid__pressedStyle{border-top-color:Highlight;}}",
274
+ {
275
+ m: "(forced-colors: active)"
276
+ }
277
+ ],
278
+ [
279
+ "@media (forced-colors: active){.f1d258es.fui-CalendarDayGrid__pressedStyle{border-right-color:Highlight;}.f1llk4aj.fui-CalendarDayGrid__pressedStyle{border-left-color:Highlight;}}",
280
+ {
281
+ m: "(forced-colors: active)"
282
+ }
283
+ ],
284
+ [
285
+ "@media (forced-colors: active){.ftezgwa.fui-CalendarDayGrid__pressedStyle{border-bottom-color:Highlight;}}",
286
+ {
287
+ m: "(forced-colors: active)"
288
+ }
289
+ ],
290
+ [
291
+ "@media (forced-colors: active){.f1iohfpm.fui-CalendarDayGrid__pressedStyle{color:Highlight;}}",
292
+ {
293
+ m: "(forced-colors: active)"
294
+ }
295
+ ],
296
+ [
297
+ "@media (forced-colors: active){.f226i61[data-fui-focus-visible]::after{border-top-color:Highlight;}}",
298
+ {
299
+ m: "(forced-colors: active)"
300
+ }
301
+ ],
302
+ [
303
+ "@media (forced-colors: active){.f13kzufm[data-fui-focus-visible]::after{border-right-color:Highlight;}.fsx75g8[data-fui-focus-visible]::after{border-left-color:Highlight;}}",
304
+ {
305
+ m: "(forced-colors: active)"
306
+ }
307
+ ],
308
+ [
309
+ "@media (forced-colors: active){.flujwa2[data-fui-focus-visible]::after{border-bottom-color:Highlight;}}",
310
+ {
311
+ m: "(forced-colors: active)"
312
+ }
313
+ ]
314
+ ],
315
+ f: [
316
+ ".ftqa4ok:focus{outline-style:none;}"
317
+ ],
318
+ i: [
319
+ ".f2hkw1w:focus-visible{outline-style:none;}"
320
+ ]
321
+ });
322
+ const useDaySelectedStyles = /*#__PURE__*/ (0, _react.__styles)({
323
+ base: {
324
+ De3pzq: "f1vevd59",
325
+ sj55zd: "ff5vbop",
326
+ Bsw6fvg: "f1rirnrt",
327
+ Bjwas2f: "f132fbg1",
328
+ Bn1d65q: [
329
+ "f1ene5x0",
330
+ "fzbc999"
331
+ ],
332
+ Bxeuatn: "f6jgcol",
333
+ n51gp8: [
334
+ "fzbc999",
335
+ "f1ene5x0"
336
+ ],
337
+ Bbusuzp: "f1lkg8j3",
338
+ ycbfsm: "fkc42ay",
339
+ a3nq4f: "f1chdfq9",
340
+ Bnf3alp: "fq0dbue",
341
+ H2c3sd: "f3pe0v7",
342
+ qu8ld: "f3t0uu2",
343
+ E9zv3o: "ft4goo8"
344
+ }
345
+ }, {
346
+ d: [
347
+ ".f1vevd59{background-color:var(--colorBrandBackgroundInvertedSelected);}",
348
+ ".ff5vbop{color:var(--colorNeutralForeground1Static);}"
349
+ ],
350
+ m: [
351
+ [
352
+ "@media (forced-colors: active){.f1rirnrt{background-color:Highlight;}}",
353
+ {
354
+ m: "(forced-colors: active)"
355
+ }
356
+ ],
357
+ [
358
+ "@media (forced-colors: active){.f132fbg1{border-top-color:Highlight;}}",
359
+ {
360
+ m: "(forced-colors: active)"
361
+ }
362
+ ],
363
+ [
364
+ "@media (forced-colors: active){.f1ene5x0{border-right-color:Highlight;}.fzbc999{border-left-color:Highlight;}}",
365
+ {
366
+ m: "(forced-colors: active)"
367
+ }
368
+ ],
369
+ [
370
+ "@media (forced-colors: active){.f6jgcol{border-bottom-color:Highlight;}}",
371
+ {
372
+ m: "(forced-colors: active)"
373
+ }
374
+ ],
375
+ [
376
+ "@media (forced-colors: active){.f1lkg8j3{color:HighlightText;}}",
377
+ {
378
+ m: "(forced-colors: active)"
379
+ }
380
+ ],
381
+ [
382
+ "@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
383
+ {
384
+ m: "(forced-colors: active)"
385
+ }
386
+ ],
387
+ [
388
+ "@media (forced-colors: active){.f3pe0v7:hover,.f3pe0v7.fui-CalendarDayGrid__hoverStyle,.f3pe0v7.fui-CalendarDayGrid__pressedStyle{background-color:Highlight;}}",
389
+ {
390
+ m: "(forced-colors: active)"
391
+ }
392
+ ],
393
+ [
394
+ "@media (forced-colors: active){.f3t0uu2:hover,.f3t0uu2.fui-CalendarDayGrid__hoverStyle,.f3t0uu2.fui-CalendarDayGrid__pressedStyle{color:HighlightText;}}",
395
+ {
396
+ m: "(forced-colors: active)"
397
+ }
398
+ ],
399
+ [
400
+ "@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
401
+ {
402
+ m: "(forced-colors: active)"
403
+ }
404
+ ]
405
+ ],
406
+ h: [
407
+ ".f1chdfq9:hover,.f1chdfq9.fui-CalendarDayGrid__hoverStyle,.f1chdfq9.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForeground1Static);}",
408
+ ".fq0dbue:hover,.fq0dbue.fui-CalendarDayGrid__hoverStyle,.fq0dbue.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorBrandBackgroundInvertedSelected);}"
409
+ ]
410
+ });
411
+ const useDaySingleSelectedStyles = /*#__PURE__*/ (0, _react.__styles)({
412
+ base: {
413
+ sj55zd: "ff5vbop",
414
+ E9zv3o: "ft4goo8",
415
+ B2ns3jv: "fy35frb",
416
+ Bwxf4zv: 0,
417
+ Bp8cau8: 0,
418
+ Buy161k: 0,
419
+ Bpzqh5e: 0,
420
+ Fh6yq5: "f8kna22",
421
+ B75pphk: "f3ef5pp",
422
+ Cmeexk: [
423
+ "f1lmnm0c",
424
+ "f1nrej41"
425
+ ],
426
+ yen2pv: "f1pt3b1q",
427
+ ydc5we: [
428
+ "f1nrej41",
429
+ "f1lmnm0c"
430
+ ],
431
+ Bz06psx: "fcydihv",
432
+ Bvql7r5: [
433
+ "fgb2y1b",
434
+ "fzbode6"
435
+ ],
436
+ k24jl4: "fofq8g1",
437
+ Bksmc0g: [
438
+ "fzbode6",
439
+ "fgb2y1b"
440
+ ],
441
+ Buxuwzc: "f36ub4m",
442
+ xn840g: [
443
+ "f19aczhj",
444
+ "ffhc5ea"
445
+ ],
446
+ Jh9m0u: "flfq9gv",
447
+ Fmkg4n: [
448
+ "ffhc5ea",
449
+ "f19aczhj"
450
+ ],
451
+ kmtgwu: "fv38a4k",
452
+ g6m10a: "f1wil596",
453
+ Birdjzs: [
454
+ "f1941p3i",
455
+ "fsfopon"
456
+ ],
457
+ yojo9v: "f14tb4e3",
458
+ qdeutu: [
459
+ "fsfopon",
460
+ "f1941p3i"
461
+ ],
462
+ yfp87c: "f161hy0n",
463
+ zuskld: "fbp2bxz"
464
+ }
465
+ }, {
466
+ d: [
467
+ ".ff5vbop{color:var(--colorNeutralForeground1Static);}",
468
+ ".fy35frb>.fui-CalendarDayGrid__dayButton{background-color:var(--colorBrandBackgroundInvertedSelected);}",
469
+ [
470
+ ".f8kna22>.fui-CalendarDayGrid__dayButton{border-radius:var(--borderRadiusMedium);}",
471
+ {
472
+ p: -1
473
+ }
474
+ ],
475
+ ".f3ef5pp>.fui-CalendarDayGrid__dayButton{border-top-width:1px;}",
476
+ ".f1lmnm0c>.fui-CalendarDayGrid__dayButton{border-right-width:1px;}",
477
+ ".f1nrej41>.fui-CalendarDayGrid__dayButton{border-left-width:1px;}",
478
+ ".f1pt3b1q>.fui-CalendarDayGrid__dayButton{border-bottom-width:1px;}",
479
+ ".fcydihv>.fui-CalendarDayGrid__dayButton{border-top-style:solid;}",
480
+ ".fgb2y1b>.fui-CalendarDayGrid__dayButton{border-right-style:solid;}",
481
+ ".fzbode6>.fui-CalendarDayGrid__dayButton{border-left-style:solid;}",
482
+ ".fofq8g1>.fui-CalendarDayGrid__dayButton{border-bottom-style:solid;}",
483
+ ".f36ub4m>.fui-CalendarDayGrid__dayButton{border-top-color:var(--colorBrandStroke1);}",
484
+ ".f19aczhj>.fui-CalendarDayGrid__dayButton{border-right-color:var(--colorBrandStroke1);}",
485
+ ".ffhc5ea>.fui-CalendarDayGrid__dayButton{border-left-color:var(--colorBrandStroke1);}",
486
+ ".flfq9gv>.fui-CalendarDayGrid__dayButton{border-bottom-color:var(--colorBrandStroke1);}"
487
+ ],
488
+ m: [
489
+ [
490
+ "@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
491
+ {
492
+ m: "(forced-colors: active)"
493
+ }
494
+ ],
495
+ [
496
+ "@media (forced-colors: active){.fv38a4k>.fui-CalendarDayGrid__dayButton{background-color:Highlight;}}",
497
+ {
498
+ m: "(forced-colors: active)"
499
+ }
500
+ ],
501
+ [
502
+ "@media (forced-colors: active){.f1wil596>.fui-CalendarDayGrid__dayButton{border-top-color:Highlight;}}",
503
+ {
504
+ m: "(forced-colors: active)"
505
+ }
506
+ ],
507
+ [
508
+ "@media (forced-colors: active){.f1941p3i>.fui-CalendarDayGrid__dayButton{border-right-color:Highlight;}.fsfopon>.fui-CalendarDayGrid__dayButton{border-left-color:Highlight;}}",
509
+ {
510
+ m: "(forced-colors: active)"
511
+ }
512
+ ],
513
+ [
514
+ "@media (forced-colors: active){.f14tb4e3>.fui-CalendarDayGrid__dayButton{border-bottom-color:Highlight;}}",
515
+ {
516
+ m: "(forced-colors: active)"
517
+ }
518
+ ],
519
+ [
520
+ "@media (forced-colors: active){.f161hy0n>.fui-CalendarDayGrid__dayButton{color:HighlightText;}}",
521
+ {
522
+ m: "(forced-colors: active)"
523
+ }
524
+ ],
525
+ [
526
+ "@media (forced-colors: active){.fbp2bxz>.fui-CalendarDayGrid__dayButton{forced-color-adjust:none;}}",
527
+ {
528
+ m: "(forced-colors: active)"
529
+ }
530
+ ]
531
+ ]
532
+ });
533
+ const useWeekRowStyles = /*#__PURE__*/ (0, _react.__styles)({
534
+ base: {
535
+ qhf8xq: "f10pi13n",
536
+ mlyf9c: "f1gazwyt"
537
+ },
538
+ animation: {
539
+ vin17d: "f5f2jbu",
540
+ Bf5fcs: "fywypte",
541
+ Ezkn3b: "f1ee2ue"
542
+ },
543
+ horizontalBackward: {
544
+ Bv12yb3: [
545
+ "f1o9w3l8",
546
+ "f1kwjajc"
547
+ ]
548
+ },
549
+ horizontalForward: {
550
+ Bv12yb3: [
551
+ "f1kwjajc",
552
+ "f1o9w3l8"
553
+ ]
554
+ },
555
+ verticalBackward: {
556
+ Bv12yb3: "fgl3yn7"
557
+ },
558
+ verticalForward: {
559
+ Bv12yb3: "faiu5ye"
560
+ }
561
+ }, {
562
+ d: [
563
+ ".f10pi13n{position:relative;}",
564
+ ".f5f2jbu{animation-duration:0.367s;}",
565
+ ".fywypte{animation-fill-mode:both;}",
566
+ ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}",
567
+ ".f1o9w3l8{animation-name:f5j8bii,f2lgmc3;}",
568
+ ".f1kwjajc{animation-name:f5j8bii,fpktcv7;}",
569
+ ".fgl3yn7{animation-name:f5j8bii,f3bv9km;}",
570
+ ".faiu5ye{animation-name:f5j8bii,funtx0y;}"
571
+ ],
572
+ w: [
573
+ ".f1gazwyt:focus-within{z-index:1;}"
574
+ ],
575
+ k: [
576
+ "@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}",
577
+ "@keyframes f2lgmc3{from{pointer-events:none;transform:translate3d(-20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
578
+ "@keyframes fpktcv7{from{pointer-events:none;transform:translate3d(20px, 0, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
579
+ "@keyframes f3bv9km{from{pointer-events:none;transform:translate3d(0, -20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}",
580
+ "@keyframes funtx0y{from{pointer-events:none;transform:translate3d(0, 20px, 0);}to{pointer-events:auto;transform:translate3d(0, 0, 0);}}"
581
+ ]
582
+ });
583
+ const useWeekDayLabelCellStyles = /*#__PURE__*/ (0, _react.__styles)({
584
+ base: {
585
+ famaaq: "f1xqy1su",
586
+ vin17d: "fhsqnsn",
587
+ Bf5fcs: "fywypte",
588
+ Bv12yb3: "f1h7u52p",
589
+ Ezkn3b: "fjq4c94"
590
+ }
591
+ }, {
592
+ d: [
593
+ ".f1xqy1su{-webkit-user-select:none;-moz-user-select:none;user-select:none;}",
594
+ ".fhsqnsn{animation-duration:0.267s;}",
595
+ ".fywypte{animation-fill-mode:both;}",
596
+ ".f1h7u52p{animation-name:f5j8bii;}",
597
+ ".fjq4c94{animation-timing-function:cubic-bezier(.1,.25,.75,.9);}"
598
+ ],
599
+ k: [
600
+ "@keyframes f5j8bii{from{opacity:0;}to{opacity:1;}}"
601
+ ]
602
+ });
603
+ const useWeekNumberCellStyles = /*#__PURE__*/ (0, _react.__styles)({
604
+ base: {
605
+ De3pzq: "f1c21dwh",
606
+ h3c5rm: 0,
607
+ vrafjx: 0,
608
+ Bekrc4i: 0,
609
+ u1mtju: [
610
+ "fe2nn5g",
611
+ "f1rcbay7"
612
+ ],
613
+ B7ck84d: "f1ewtqcl",
614
+ sj55zd: "fxc4j92",
615
+ Be2twd7: "fy9rknc",
616
+ Bhrd7zp: "figsok6",
617
+ Bqenvij: "fxldao9",
618
+ jrapky: 0,
619
+ Frg6f3: 0,
620
+ t21cq0: 0,
621
+ B6of3ja: 0,
622
+ B74szlk: "f1s184ao",
623
+ Byoj8tv: 0,
624
+ uwmqm3: 0,
625
+ z189sj: 0,
626
+ z8tnut: 0,
627
+ B0ocmuz: "f1mk8lai",
628
+ a9b677: "f1w9dchk"
629
+ }
630
+ }, {
631
+ d: [
632
+ ".f1c21dwh{background-color:var(--colorTransparentBackground);}",
633
+ [
634
+ ".fe2nn5g{border-right:1px solid var(--colorNeutralStroke2);}",
635
+ {
636
+ p: -1
637
+ }
638
+ ],
639
+ [
640
+ ".f1rcbay7{border-left:1px solid var(--colorNeutralStroke2);}",
641
+ {
642
+ p: -1
643
+ }
644
+ ],
645
+ ".f1ewtqcl{box-sizing:border-box;}",
646
+ ".fxc4j92{color:var(--colorNeutralForeground4);}",
647
+ ".fy9rknc{font-size:var(--fontSizeBase200);}",
648
+ ".figsok6{font-weight:var(--fontWeightRegular);}",
649
+ ".fxldao9{height:28px;}",
650
+ [
651
+ ".f1s184ao{margin:0;}",
652
+ {
653
+ p: -1
654
+ }
655
+ ],
656
+ [
657
+ ".f1mk8lai{padding:0;}",
658
+ {
659
+ p: -1
660
+ }
661
+ ],
662
+ ".f1w9dchk{width:28px;}"
663
+ ]
664
+ });
665
+ const useDayOutsideBoundsStyles = /*#__PURE__*/ (0, _react.__styles)({
666
+ base: {
667
+ x734em: "f1v4z6xg",
668
+ B0ssf13: "f1u9q7oh",
669
+ B8h8h5z: "f1a22lcc",
670
+ Bbusuzp: "f1dcs8yz"
671
+ }
672
+ }, {
673
+ d: [
674
+ ".f1v4z6xg,.f1v4z6xg:disabled,.f1v4z6xg button,.f1v4z6xg.fui-CalendarDayGrid__hoverStyle,.f1v4z6xg.fui-CalendarDayGrid__pressedStyle{background-color:var(--colorTransparentBackground);}",
675
+ ".f1u9q7oh,.f1u9q7oh:disabled,.f1u9q7oh button,.f1u9q7oh.fui-CalendarDayGrid__hoverStyle,.f1u9q7oh.fui-CalendarDayGrid__pressedStyle{color:var(--colorNeutralForegroundDisabled);}",
676
+ ".f1a22lcc,.f1a22lcc:disabled,.f1a22lcc button,.f1a22lcc.fui-CalendarDayGrid__hoverStyle,.f1a22lcc.fui-CalendarDayGrid__pressedStyle{pointer-events:none;}"
677
+ ],
678
+ m: [
679
+ [
680
+ "@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}",
681
+ {
682
+ m: "(forced-colors: active)"
683
+ }
684
+ ]
685
+ ]
686
+ });
687
+ const useDayOutsideNavigatedMonthStyles = /*#__PURE__*/ (0, _react.__styles)({
688
+ lightenDaysOutsideNavigatedMonth: {
689
+ sj55zd: "fxc4j92",
690
+ Bhrd7zp: "figsok6",
691
+ Bbusuzp: "f1dcs8yz"
692
+ }
693
+ }, {
694
+ d: [
695
+ ".fxc4j92{color:var(--colorNeutralForeground4);}",
696
+ ".figsok6{font-weight:var(--fontWeightRegular);}"
697
+ ],
698
+ m: [
699
+ [
700
+ "@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}",
701
+ {
702
+ m: "(forced-colors: active)"
703
+ }
704
+ ]
705
+ ]
706
+ });
707
+ const useDayButtonStyles = /*#__PURE__*/ (0, _react.__styles)({
708
+ base: {
709
+ De3pzq: "f1c21dwh",
710
+ Bgfg5da: 0,
711
+ B9xav0g: 0,
712
+ oivjwe: 0,
713
+ Bn0qgzm: 0,
714
+ B4g9neb: 0,
715
+ zhjwy3: 0,
716
+ wvpqe5: 0,
717
+ ibv6hh: 0,
718
+ u1mtju: 0,
719
+ h3c5rm: 0,
720
+ vrafjx: 0,
721
+ Bekrc4i: 0,
722
+ i8vvqc: 0,
723
+ g2u3we: 0,
724
+ icvyot: 0,
725
+ B4j52fo: 0,
726
+ irswps: "f3bhgqh",
727
+ sj55zd: "f1ym3bx4",
728
+ Bceei9c: "f1k6fduh",
729
+ Be2twd7: "fy9rknc",
730
+ Bhrd7zp: "ff5ikls",
731
+ Bqenvij: "frvgh55",
732
+ Bg96gwp: "f8xlz6g",
733
+ B68tc82: 0,
734
+ Bmxbyg5: 0,
735
+ Bpg54ce: "f1gl81tg",
736
+ Byoj8tv: 0,
737
+ uwmqm3: 0,
738
+ z189sj: 0,
739
+ z8tnut: 0,
740
+ B0ocmuz: "f1mk8lai",
741
+ a9b677: "fq4mcun",
742
+ Bx0yju7: "f10y451g",
743
+ l98f4w: "f1dwpgx3",
744
+ Jwef8y: "f18a0fwf",
745
+ Btmb5he: 0,
746
+ gu71dq: 0,
747
+ B2zomw9: 0,
748
+ Fgk69s: 0,
749
+ Bw6eyry: "f1mhq3ai",
750
+ ecr2s2: "f7la2e8"
751
+ }
752
+ }, {
753
+ d: [
754
+ ".f1c21dwh{background-color:var(--colorTransparentBackground);}",
755
+ [
756
+ ".f3bhgqh{border:none;}",
757
+ {
758
+ p: -2
759
+ }
760
+ ],
761
+ ".f1ym3bx4{color:inherit;}",
762
+ ".f1k6fduh{cursor:pointer;}",
763
+ ".fy9rknc{font-size:var(--fontSizeBase200);}",
764
+ ".ff5ikls{font-weight:inherit;}",
765
+ ".frvgh55{height:24px;}",
766
+ ".f8xlz6g{line-height:24px;}",
767
+ [
768
+ ".f1gl81tg{overflow:visible;}",
769
+ {
770
+ p: -1
771
+ }
772
+ ],
773
+ [
774
+ ".f1mk8lai{padding:0;}",
775
+ {
776
+ p: -1
777
+ }
778
+ ],
779
+ ".fq4mcun{width:24px;}",
780
+ ".f10y451gspan{height:inherit;}",
781
+ ".f1dwpgx3span{line-height:inherit;}"
782
+ ],
783
+ h: [
784
+ ".f18a0fwf:hover{background-color:var(--colorBrandBackgroundInvertedHover);}",
785
+ [
786
+ ".f1mhq3ai:hover{border-radius:var(--borderRadiusMedium);}",
787
+ {
788
+ p: -1
789
+ }
790
+ ]
791
+ ],
792
+ a: [
793
+ ".f7la2e8:active{background-color:var(--colorBrandBackgroundInvertedPressed);}"
794
+ ]
795
+ });
796
+ const useDayIsTodayStyles = /*#__PURE__*/ (0, _react.__styles)({
797
+ base: {
798
+ mc9l5x: "f22iagw",
799
+ Brf1p80: "f4d9j23",
800
+ Bt984gj: "f122n59",
801
+ sj55zd: "f1phragk",
802
+ Bhrd7zp: "fl43uef",
803
+ kof2un: "f1b5s8wn",
804
+ E9zv3o: "ft4goo8"
805
+ }
806
+ }, {
807
+ d: [
808
+ ".f22iagw{display:flex;}",
809
+ ".f4d9j23{justify-content:center;}",
810
+ ".f122n59{align-items:center;}",
811
+ ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}",
812
+ ".fl43uef{font-weight:var(--fontWeightSemibold);}",
813
+ ".f1b5s8wn>.fui-CalendarDayGrid__dayMarker{background-color:var(--colorNeutralForegroundOnBrand);}"
814
+ ],
815
+ m: [
816
+ [
817
+ "@media (forced-colors: active){.ft4goo8>.fui-CalendarDayGrid__dayMarker{background-color:Window;}}",
818
+ {
819
+ m: "(forced-colors: active)"
820
+ }
821
+ ]
822
+ ]
823
+ });
824
+ const useDayTodayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
825
+ base: {
826
+ mc9l5x: "f22iagw",
827
+ Brf1p80: "f4d9j23",
828
+ Bt984gj: "f122n59",
829
+ De3pzq: "ffp7eso",
830
+ Beyfa6y: 0,
831
+ Bbmb7ep: 0,
832
+ Btl43ni: 0,
833
+ B7oj6ja: 0,
834
+ Dimara: "f1qtlz2s",
835
+ a9b677: "f64fuq3",
836
+ Bqenvij: "fjamq6b",
837
+ Bg96gwp: "f1n95isl",
838
+ Bsw6fvg: "fg374yq",
839
+ Bjwas2f: "fx4t0an",
840
+ Bn1d65q: [
841
+ "f1bd7qk0",
842
+ "fk5vpic"
843
+ ],
844
+ Bxeuatn: "fgxnpfp",
845
+ n51gp8: [
846
+ "fk5vpic",
847
+ "f1bd7qk0"
848
+ ],
849
+ Bbusuzp: "f1yig07e",
850
+ ycbfsm: "fkc42ay"
851
+ }
852
+ }, {
853
+ d: [
854
+ ".f22iagw{display:flex;}",
855
+ ".f4d9j23{justify-content:center;}",
856
+ ".f122n59{align-items:center;}",
857
+ ".ffp7eso{background-color:var(--colorBrandBackground);}",
858
+ [
859
+ ".f1qtlz2s{border-radius:100%;}",
860
+ {
861
+ p: -1
862
+ }
863
+ ],
864
+ ".f64fuq3{width:20px;}",
865
+ ".fjamq6b{height:20px;}",
866
+ ".f1n95isl{line-height:20px;}"
867
+ ],
868
+ m: [
869
+ [
870
+ "@media (forced-colors: active){.fg374yq{background-color:WindowText;}}",
871
+ {
872
+ m: "(forced-colors: active)"
873
+ }
874
+ ],
875
+ [
876
+ "@media (forced-colors: active){.fx4t0an{border-top-color:WindowText;}}",
877
+ {
878
+ m: "(forced-colors: active)"
879
+ }
880
+ ],
881
+ [
882
+ "@media (forced-colors: active){.f1bd7qk0{border-right-color:WindowText;}.fk5vpic{border-left-color:WindowText;}}",
883
+ {
884
+ m: "(forced-colors: active)"
885
+ }
886
+ ],
887
+ [
888
+ "@media (forced-colors: active){.fgxnpfp{border-bottom-color:WindowText;}}",
889
+ {
890
+ m: "(forced-colors: active)"
891
+ }
892
+ ],
893
+ [
894
+ "@media (forced-colors: active){.f1yig07e{color:Window;}}",
895
+ {
896
+ m: "(forced-colors: active)"
897
+ }
898
+ ],
899
+ [
900
+ "@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
901
+ {
902
+ m: "(forced-colors: active)"
903
+ }
904
+ ]
905
+ ]
906
+ });
907
+ const useFirstTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
908
+ base: {
909
+ Bqenvij: "fniina8",
910
+ abs64n: "fk73vx1",
911
+ B68tc82: 0,
912
+ Bmxbyg5: 0,
913
+ Bpg54ce: "f1a3p1vp",
914
+ qhf8xq: "f1euv43f",
915
+ a9b677: "f3tsq5r"
916
+ },
917
+ verticalForward: {
918
+ vin17d: "f5f2jbu",
919
+ Bf5fcs: "fywypte",
920
+ Bv12yb3: "fupj2f5",
921
+ Ezkn3b: "f1ee2ue"
922
+ }
923
+ }, {
924
+ d: [
925
+ ".fniina8{height:0;}",
926
+ ".fk73vx1{opacity:0;}",
927
+ [
928
+ ".f1a3p1vp{overflow:hidden;}",
929
+ {
930
+ p: -1
931
+ }
932
+ ],
933
+ ".f1euv43f{position:absolute;}",
934
+ ".f3tsq5r{width:0;}",
935
+ ".f5f2jbu{animation-duration:0.367s;}",
936
+ ".fywypte{animation-fill-mode:both;}",
937
+ ".fupj2f5{animation-name:f199e34v,f76svrd,f13agkrc;}",
938
+ ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
939
+ ],
940
+ k: [
941
+ "@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
942
+ "@keyframes f76svrd{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -20px, 0);}}",
943
+ "@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"
944
+ ]
945
+ });
946
+ const useLastTransitionWeekStyles = /*#__PURE__*/ (0, _react.__styles)({
947
+ base: {
948
+ Bqenvij: "fniina8",
949
+ B6of3ja: "flykjtj",
950
+ abs64n: "fk73vx1",
951
+ B68tc82: 0,
952
+ Bmxbyg5: 0,
953
+ Bpg54ce: "f1a3p1vp",
954
+ qhf8xq: "f1euv43f",
955
+ a9b677: "f3tsq5r"
956
+ },
957
+ verticalBackward: {
958
+ vin17d: "f5f2jbu",
959
+ Bf5fcs: "fywypte",
960
+ Bv12yb3: "fifoktk",
961
+ Ezkn3b: "f1ee2ue"
962
+ }
963
+ }, {
964
+ d: [
965
+ ".fniina8{height:0;}",
966
+ ".flykjtj{margin-top:-28px;}",
967
+ ".fk73vx1{opacity:0;}",
968
+ [
969
+ ".f1a3p1vp{overflow:hidden;}",
970
+ {
971
+ p: -1
972
+ }
973
+ ],
974
+ ".f1euv43f{position:absolute;}",
975
+ ".f3tsq5r{width:0;}",
976
+ ".f5f2jbu{animation-duration:0.367s;}",
977
+ ".fywypte{animation-fill-mode:both;}",
978
+ ".fifoktk{animation-name:f199e34v,f18895iq,f13agkrc;}",
979
+ ".f1ee2ue{animation-timing-function:cubic-bezier(.1,.9,.2,1);}"
980
+ ],
981
+ k: [
982
+ "@keyframes f199e34v{from{opacity:1;}to{opacity:0;visibility:hidden;}}",
983
+ "@keyframes f18895iq{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 20px, 0);}}",
984
+ "@keyframes f13agkrc{100%{height:0px;overflow:hidden;width:0px;}99.9%{height:28px;overflow:visible;width:100%;}0%{height:28px;overflow:visible;width:100%;}}"
985
+ ]
986
+ });
987
+ const useDayMarkerStyles = /*#__PURE__*/ (0, _react.__styles)({
988
+ base: {
989
+ De3pzq: "fnggedw",
990
+ Beyfa6y: 0,
991
+ Bbmb7ep: 0,
992
+ Btl43ni: 0,
993
+ B7oj6ja: 0,
994
+ Dimara: "f1qtlz2s",
995
+ B5kzvoi: "f1oq0udb",
996
+ Bqenvij: "f6ywr7j",
997
+ oyh7mz: [
998
+ "f1vgc2s3",
999
+ "f1e31b4d"
1000
+ ],
1001
+ jrapky: 0,
1002
+ Frg6f3: 0,
1003
+ t21cq0: 0,
1004
+ B6of3ja: 0,
1005
+ B74szlk: "fcpdi13",
1006
+ qhf8xq: "f1euv43f",
1007
+ j35jbq: [
1008
+ "f1e31b4d",
1009
+ "f1vgc2s3"
1010
+ ],
1011
+ a9b677: "faro0ui",
1012
+ Bsw6fvg: "fg374yq",
1013
+ ycbfsm: "fkc42ay"
1014
+ }
1015
+ }, {
1016
+ d: [
1017
+ ".fnggedw{background-color:var(--colorBrandForeground2);}",
1018
+ [
1019
+ ".f1qtlz2s{border-radius:100%;}",
1020
+ {
1021
+ p: -1
1022
+ }
1023
+ ],
1024
+ ".f1oq0udb{bottom:1px;}",
1025
+ ".f6ywr7j{height:4px;}",
1026
+ ".f1vgc2s3{left:0;}",
1027
+ ".f1e31b4d{right:0;}",
1028
+ [
1029
+ ".fcpdi13{margin:auto;}",
1030
+ {
1031
+ p: -1
1032
+ }
1033
+ ],
1034
+ ".f1euv43f{position:absolute;}",
1035
+ ".faro0ui{width:4px;}"
1036
+ ],
1037
+ m: [
1038
+ [
1039
+ "@media (forced-colors: active){.fg374yq{background-color:WindowText;}}",
1040
+ {
1041
+ m: "(forced-colors: active)"
1042
+ }
1043
+ ],
1044
+ [
1045
+ "@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",
1046
+ {
1047
+ m: "(forced-colors: active)"
1048
+ }
1049
+ ]
1050
+ ]
1051
+ });
1052
+ const useCornerBorderAndRadiusStyles = /*#__PURE__*/ (0, _react.__styles)({
1053
+ corners: {
1054
+ Cy64m2: [
1055
+ "f1yxjewa",
1056
+ "f5xfyye"
1057
+ ],
1058
+ Bnn43bw: [
1059
+ "f1kpdnd7",
1060
+ "fokqrni"
1061
+ ],
1062
+ feanbc: [
1063
+ "f127emps",
1064
+ "f1s6s1el"
1065
+ ],
1066
+ B4268ip: [
1067
+ "f39vr2a",
1068
+ "frpqyrn"
1069
+ ]
1070
+ }
1071
+ }, {
1072
+ d: [
1073
+ ".f1yxjewa.fui-CalendarDayGrid__topRightCornerDate{border-top-right-radius:var(--borderRadiusMedium);}",
1074
+ ".f5xfyye.fui-CalendarDayGrid__topRightCornerDate{border-top-left-radius:var(--borderRadiusMedium);}",
1075
+ ".f1kpdnd7.fui-CalendarDayGrid__topLeftCornerDate{border-top-left-radius:var(--borderRadiusMedium);}",
1076
+ ".fokqrni.fui-CalendarDayGrid__topLeftCornerDate{border-top-right-radius:var(--borderRadiusMedium);}",
1077
+ ".f127emps.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}",
1078
+ ".f1s6s1el.fui-CalendarDayGrid__bottomRightCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}",
1079
+ ".f39vr2a.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-left-radius:var(--borderRadiusMedium);}",
1080
+ ".frpqyrn.fui-CalendarDayGrid__bottomLeftCornerDate{border-bottom-right-radius:var(--borderRadiusMedium);}"
1081
+ ]
1082
+ });
1083
+ const useCalendarDayGridStyles_unstable = (props)=>{
1084
+ 'use no memo';
1085
+ const wrapperStyles = useWrapperStyles();
1086
+ const tableStyles = useTableStyles();
1087
+ const dayCellStyles = useDayCellStyles();
1088
+ const daySelectedStyles = useDaySelectedStyles();
1089
+ const daySingleSelectedStyles = useDaySingleSelectedStyles();
1090
+ const weekRowStyles = useWeekRowStyles();
1091
+ const weekDayLabelCellStyles = useWeekDayLabelCellStyles();
1092
+ const weekNumberCellStyles = useWeekNumberCellStyles();
1093
+ const dayOutsideBoundsStyles = useDayOutsideBoundsStyles();
1094
+ const dayOutsideNavigatedMonthStyles = useDayOutsideNavigatedMonthStyles();
1095
+ const dayButtonStyles = useDayButtonStyles();
1096
+ const dayIsTodayStyles = useDayIsTodayStyles();
1097
+ const firstTransitionWeekStyles = useFirstTransitionWeekStyles();
1098
+ const lastTransitionWeekStyles = useLastTransitionWeekStyles();
1099
+ const dayMarkerStyles = useDayMarkerStyles();
1100
+ const cornerBorderAndRadiusStyles = useCornerBorderAndRadiusStyles();
1101
+ const dayTodayMarkerStyles = useDayTodayMarkerStyles();
1102
+ const { animateBackwards, animationDirection, lightenDaysOutsideNavigatedMonth, showWeekNumbers } = props;
1103
+ return {
1104
+ wrapper: (0, _react.mergeClasses)(calendarDayGridClassNames.wrapper, wrapperStyles.base),
1105
+ table: (0, _react.mergeClasses)(calendarDayGridClassNames.table, tableStyles.base, showWeekNumbers && tableStyles.showWeekNumbers),
1106
+ dayCell: (0, _react.mergeClasses)(calendarDayGridClassNames.dayCell, dayCellStyles.base, dayCellStyles.focusIndicator, cornerBorderAndRadiusStyles.corners),
1107
+ daySelected: (0, _react.mergeClasses)(calendarDayGridClassNames.daySelected, daySelectedStyles.base),
1108
+ daySingleSelected: (0, _react.mergeClasses)(calendarDayGridClassNames.daySingleSelected, daySingleSelectedStyles.base),
1109
+ weekRow: (0, _react.mergeClasses)(calendarDayGridClassNames.weekRow, weekRowStyles.base, animateBackwards !== undefined && weekRowStyles.animation, animateBackwards !== undefined && (animationDirection === _Calendartypes.AnimationDirection.Horizontal ? animateBackwards ? weekRowStyles.horizontalBackward : weekRowStyles.horizontalForward : animateBackwards ? weekRowStyles.verticalBackward : weekRowStyles.verticalForward)),
1110
+ weekDayLabelCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekDayLabelCell, weekDayLabelCellStyles.base),
1111
+ weekNumberCell: (0, _react.mergeClasses)(calendarDayGridClassNames.weekNumberCell, weekNumberCellStyles.base),
1112
+ dayOutsideBounds: (0, _react.mergeClasses)(calendarDayGridClassNames.dayOutsideBounds, dayOutsideBoundsStyles.base),
1113
+ dayOutsideNavigatedMonth: (0, _react.mergeClasses)(calendarDayGridClassNames.dayOutsideNavigatedMonth, lightenDaysOutsideNavigatedMonth && dayOutsideNavigatedMonthStyles.lightenDaysOutsideNavigatedMonth),
1114
+ dayButton: (0, _react.mergeClasses)(calendarDayGridClassNames.dayButton, dayButtonStyles.base),
1115
+ dayIsToday: (0, _react.mergeClasses)(calendarDayGridClassNames.dayIsToday, dayIsTodayStyles.base),
1116
+ firstTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.firstTransitionWeek, firstTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && !animateBackwards && firstTransitionWeekStyles.verticalForward),
1117
+ lastTransitionWeek: (0, _react.mergeClasses)(calendarDayGridClassNames.lastTransitionWeek, lastTransitionWeekStyles.base, animateBackwards !== undefined && animationDirection !== _Calendartypes.AnimationDirection.Horizontal && animateBackwards && lastTransitionWeekStyles.verticalBackward),
1118
+ dayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayMarker, dayMarkerStyles.base),
1119
+ dayTodayMarker: (0, _react.mergeClasses)(calendarDayGridClassNames.dayTodayMarker, dayTodayMarkerStyles.base)
1120
+ };
1121
+ };