@fluentui/react-datepicker-compat 0.0.0-nightly-20230424-0419.1 → 0.0.0
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 +27 -55
- package/CHANGELOG.md +16 -18
- package/dist/index.d.ts +1160 -0
- package/lib/Calendar.js +2 -0
- package/lib/Calendar.js.map +1 -0
- package/lib/CalendarDay.js +2 -0
- package/lib/CalendarDay.js.map +1 -0
- package/lib/CalendarDayGrid.js +2 -0
- package/lib/CalendarDayGrid.js.map +1 -0
- package/lib/CalendarMonth.js +2 -0
- package/lib/CalendarMonth.js.map +1 -0
- package/lib/CalendarPicker.js +2 -0
- package/lib/CalendarPicker.js.map +1 -0
- package/lib/CalendarYear.js +2 -0
- package/lib/CalendarYear.js.map +1 -0
- package/lib/DatePicker.js +2 -0
- package/lib/DatePicker.js.map +1 -0
- package/lib/components/Calendar/Calendar.js +319 -0
- package/lib/components/Calendar/Calendar.js.map +1 -0
- package/lib/components/Calendar/Calendar.types.js +15 -0
- package/lib/components/Calendar/Calendar.types.js.map +1 -0
- package/lib/components/Calendar/defaults.js +3 -0
- package/lib/components/Calendar/defaults.js.map +1 -0
- package/lib/components/Calendar/index.js +5 -0
- package/lib/components/Calendar/index.js.map +1 -0
- package/lib/components/Calendar/useCalendarStyles.js +149 -0
- package/lib/components/Calendar/useCalendarStyles.js.map +1 -0
- package/lib/components/CalendarDay/CalendarDay.js +143 -0
- package/lib/components/CalendarDay/CalendarDay.js.map +1 -0
- package/lib/components/CalendarDay/CalendarDay.types.js +2 -0
- package/lib/components/CalendarDay/CalendarDay.types.js.map +1 -0
- package/lib/components/CalendarDay/index.js +4 -0
- package/lib/components/CalendarDay/index.js.map +1 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.js +180 -0
- package/lib/components/CalendarDay/useCalendarDayStyles.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.js +183 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js +2 -0
- package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js +193 -0
- package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarGridRow.js +40 -0
- package/lib/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
- package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js +46 -0
- package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
- package/lib/components/CalendarDayGrid/index.js +5 -0
- package/lib/components/CalendarDayGrid/index.js.map +1 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.js +443 -0
- package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.js +98 -0
- package/lib/components/CalendarDayGrid/useWeekCornerStyles.js.map +1 -0
- package/lib/components/CalendarDayGrid/useWeeks.js +47 -0
- package/lib/components/CalendarDayGrid/useWeeks.js.map +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.js +282 -0
- package/lib/components/CalendarMonth/CalendarMonth.js.map +1 -0
- package/lib/components/CalendarMonth/CalendarMonth.types.js +2 -0
- package/lib/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
- package/lib/components/CalendarMonth/index.js +4 -0
- package/lib/components/CalendarMonth/index.js.map +1 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.js +10 -0
- package/lib/components/CalendarMonth/useCalendarMonthStyles.js.map +1 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js +2 -0
- package/lib/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib/components/CalendarPicker/index.js +3 -0
- package/lib/components/CalendarPicker/index.js.map +1 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.js +371 -0
- package/lib/components/CalendarPicker/useCalendarPickerStyles.js.map +1 -0
- package/lib/components/CalendarYear/CalendarYear.js +350 -0
- package/lib/components/CalendarYear/CalendarYear.js.map +1 -0
- package/lib/components/CalendarYear/CalendarYear.types.js +2 -0
- package/lib/components/CalendarYear/CalendarYear.types.js.map +1 -0
- package/lib/components/CalendarYear/index.js +4 -0
- package/lib/components/CalendarYear/index.js.map +1 -0
- package/lib/components/CalendarYear/useCalendarYearStyles.js +10 -0
- package/lib/components/CalendarYear/useCalendarYearStyles.js.map +1 -0
- package/lib/components/DatePicker/DatePicker.js +11 -0
- package/lib/components/DatePicker/DatePicker.js.map +1 -0
- package/lib/components/DatePicker/DatePicker.types.js +2 -0
- package/lib/components/DatePicker/DatePicker.types.js.map +1 -0
- package/lib/components/DatePicker/defaults.js +15 -0
- package/lib/components/DatePicker/defaults.js.map +1 -0
- package/lib/components/DatePicker/index.js +7 -0
- package/lib/components/DatePicker/index.js.map +1 -0
- package/lib/components/DatePicker/renderDatePicker.js +18 -0
- package/lib/components/DatePicker/renderDatePicker.js.map +1 -0
- package/lib/components/DatePicker/useDatePicker.js +399 -0
- package/lib/components/DatePicker/useDatePicker.js.map +1 -0
- package/lib/components/DatePicker/useDatePickerStyles.js +38 -0
- package/lib/components/DatePicker/useDatePickerStyles.js.map +1 -0
- package/lib/index.js +4 -0
- package/lib/index.js.map +1 -0
- package/lib/utils/animations.js +98 -0
- package/lib/utils/animations.js.map +1 -0
- package/lib/utils/constants.js +64 -0
- package/lib/utils/constants.js.map +1 -0
- package/lib/utils/dateFormatting/dateFormatting.defaults.js +58 -0
- package/lib/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
- package/lib/utils/dateFormatting/dateFormatting.types.js +2 -0
- package/lib/utils/dateFormatting/dateFormatting.types.js.map +1 -0
- package/lib/utils/dateFormatting/index.js +3 -0
- package/lib/utils/dateFormatting/index.js.map +1 -0
- package/lib/utils/dateGrid/dateGrid.types.js +2 -0
- package/lib/utils/dateGrid/dateGrid.types.js.map +1 -0
- package/lib/utils/dateGrid/findAvailableDate.js +29 -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 +18 -0
- package/lib/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
- package/lib/utils/dateGrid/getDayGrid.js +85 -0
- package/lib/utils/dateGrid/getDayGrid.js.map +1 -0
- package/lib/utils/dateGrid/index.js +6 -0
- package/lib/utils/dateGrid/index.js.map +1 -0
- package/lib/utils/dateGrid/isAfterMaxDate.js +13 -0
- package/lib/utils/dateGrid/isAfterMaxDate.js.map +1 -0
- package/lib/utils/dateGrid/isBeforeMinDate.js +13 -0
- package/lib/utils/dateGrid/isBeforeMinDate.js.map +1 -0
- package/lib/utils/dateGrid/isContiguous.js +19 -0
- package/lib/utils/dateGrid/isContiguous.js.map +1 -0
- package/lib/utils/dateGrid/isRestrictedDate.js +21 -0
- package/lib/utils/dateGrid/isRestrictedDate.js.map +1 -0
- package/lib/utils/dateMath/dateMath.js +358 -0
- package/lib/utils/dateMath/dateMath.js.map +1 -0
- package/lib/utils/dateMath/index.js +2 -0
- package/lib/utils/dateMath/index.js.map +1 -0
- package/lib/utils/dom.js +9 -0
- package/lib/utils/dom.js.map +1 -0
- package/lib/utils/focus.js +28 -0
- package/lib/utils/focus.js.map +1 -0
- package/lib/utils/index.js +8 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/usePopupPositioning.js +25 -0
- package/lib/utils/usePopupPositioning.js.map +1 -0
- package/lib-commonjs/Calendar.js +9 -0
- package/lib-commonjs/Calendar.js.map +1 -0
- package/lib-commonjs/CalendarDay.js +9 -0
- package/lib-commonjs/CalendarDay.js.map +1 -0
- package/lib-commonjs/CalendarDayGrid.js +9 -0
- package/lib-commonjs/CalendarDayGrid.js.map +1 -0
- package/lib-commonjs/CalendarMonth.js +9 -0
- package/lib-commonjs/CalendarMonth.js.map +1 -0
- package/lib-commonjs/CalendarPicker.js +9 -0
- package/lib-commonjs/CalendarPicker.js.map +1 -0
- package/lib-commonjs/CalendarYear.js +9 -0
- package/lib-commonjs/CalendarYear.js.map +1 -0
- package/lib-commonjs/DatePicker.js +9 -0
- package/lib-commonjs/DatePicker.js.map +1 -0
- package/lib-commonjs/components/Calendar/Calendar.js +306 -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 +16 -0
- package/lib-commonjs/components/Calendar/index.js.map +1 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.js +286 -0
- package/lib-commonjs/components/Calendar/useCalendarStyles.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.js +124 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.types.js +9 -0
- package/lib-commonjs/components/CalendarDay/CalendarDay.types.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/index.js +11 -0
- package/lib-commonjs/components/CalendarDay/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.js +356 -0
- package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js +181 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js +9 -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 +21 -0
- package/lib-commonjs/components/CalendarDayGrid/index.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.js +916 -0
- package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.js.map +1 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.js +103 -0
- package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.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 +271 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js +9 -0
- package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
- package/lib-commonjs/components/CalendarMonth/index.js +11 -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 +7 -0
- package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/index.js +10 -0
- package/lib-commonjs/components/CalendarPicker/index.js.map +1 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.js +746 -0
- package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.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 +9 -0
- package/lib-commonjs/components/CalendarYear/CalendarYear.types.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/index.js +11 -0
- package/lib-commonjs/components/CalendarYear/index.js.map +1 -0
- package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.js +14 -0
- package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.js.map +1 -0
- package/lib-commonjs/components/DatePicker/DatePicker.js +21 -0
- package/lib-commonjs/components/DatePicker/DatePicker.js.map +1 -0
- package/lib-commonjs/components/DatePicker/DatePicker.types.js +9 -0
- package/lib-commonjs/components/DatePicker/DatePicker.types.js.map +1 -0
- package/lib-commonjs/components/DatePicker/defaults.js +30 -0
- package/lib-commonjs/components/DatePicker/defaults.js.map +1 -0
- package/lib-commonjs/components/DatePicker/index.js +14 -0
- package/lib-commonjs/components/DatePicker/index.js.map +1 -0
- package/lib-commonjs/components/DatePicker/renderDatePicker.js +20 -0
- package/lib-commonjs/components/DatePicker/renderDatePicker.js.map +1 -0
- package/lib-commonjs/components/DatePicker/useDatePicker.js +444 -0
- package/lib-commonjs/components/DatePicker/useDatePicker.js.map +1 -0
- package/lib-commonjs/components/DatePicker/useDatePickerStyles.js +55 -0
- package/lib-commonjs/components/DatePicker/useDatePickerStyles.js.map +1 -0
- package/lib-commonjs/index.js +50 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/utils/animations.js +126 -0
- package/lib-commonjs/utils/animations.js.map +1 -0
- package/lib-commonjs/utils/constants.js +82 -0
- package/lib-commonjs/utils/constants.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js +102 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js +7 -0
- package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js.map +1 -0
- package/lib-commonjs/utils/dateFormatting/index.js +10 -0
- package/lib-commonjs/utils/dateFormatting/index.js.map +1 -0
- package/lib-commonjs/utils/dateGrid/dateGrid.types.js +7 -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 +13 -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 +274 -0
- package/lib-commonjs/utils/dateMath/dateMath.js.map +1 -0
- package/lib-commonjs/utils/dateMath/index.js +9 -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 +15 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/usePopupPositioning.js +26 -0
- package/lib-commonjs/utils/usePopupPositioning.js.map +1 -0
- package/package.json +19 -14
package/CHANGELOG.json
CHANGED
|
@@ -2,88 +2,60 @@
|
|
|
2
2
|
"name": "@fluentui/react-datepicker-compat",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Mon, 24 Apr 2023
|
|
6
|
-
"tag": "@fluentui/react-datepicker-compat_v0.0.0
|
|
7
|
-
"version": "0.0.0
|
|
5
|
+
"date": "Mon, 24 Apr 2023 08:09:08 GMT",
|
|
6
|
+
"tag": "@fluentui/react-datepicker-compat_v0.0.0",
|
|
7
|
+
"version": "0.0.0",
|
|
8
8
|
"comments": {
|
|
9
|
-
"
|
|
10
|
-
{
|
|
11
|
-
"author": "fluentui-internal@service.microsoft.com",
|
|
12
|
-
"package": "@fluentui/react-datepicker-compat",
|
|
13
|
-
"commit": "not available",
|
|
14
|
-
"comment": "Release nightly v9"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"author": "beachball",
|
|
18
|
-
"package": "@fluentui/react-datepicker-compat",
|
|
19
|
-
"comment": "Bump @fluentui/keyboard-keys to v0.0.0-nightly-20230424-0419.1",
|
|
20
|
-
"commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
|
|
21
|
-
},
|
|
9
|
+
"minor": [
|
|
22
10
|
{
|
|
23
|
-
"author": "
|
|
24
|
-
"package": "@fluentui/react-datepicker-compat",
|
|
25
|
-
"comment": "Bump @fluentui/react-field to v0.0.0-nightly-20230424-0419.1",
|
|
26
|
-
"commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"author": "beachball",
|
|
30
|
-
"package": "@fluentui/react-datepicker-compat",
|
|
31
|
-
"comment": "Bump @fluentui/react-input to v0.0.0-nightly-20230424-0419.1",
|
|
32
|
-
"commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"author": "beachball",
|
|
36
|
-
"package": "@fluentui/react-datepicker-compat",
|
|
37
|
-
"comment": "Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20230424-0419.1",
|
|
38
|
-
"commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"author": "beachball",
|
|
11
|
+
"author": "esteban.230@hotmail.com",
|
|
42
12
|
"package": "@fluentui/react-datepicker-compat",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
13
|
+
"commit": "f7d88ee6fb582989efc057880ddfe60228649189",
|
|
14
|
+
"comment": "feat: Add error handling to DatePicker."
|
|
45
15
|
},
|
|
46
16
|
{
|
|
47
|
-
"author": "
|
|
17
|
+
"author": "esteban.230@hotmail.com",
|
|
48
18
|
"package": "@fluentui/react-datepicker-compat",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
19
|
+
"commit": "bb8dfe06f4f2910eef1561c76410bf91b009fa37",
|
|
20
|
+
"comment": "feat: Move DatePicker compat to stable."
|
|
51
21
|
},
|
|
52
22
|
{
|
|
53
|
-
"author": "
|
|
23
|
+
"author": "esteban.230@hotmail.com",
|
|
54
24
|
"package": "@fluentui/react-datepicker-compat",
|
|
55
|
-
"
|
|
56
|
-
"
|
|
25
|
+
"commit": "011c6f0665a03aa804aac1e0f900e70229518c7c",
|
|
26
|
+
"comment": "feat: Refactor DatePicker to remove Field and error handling logic."
|
|
57
27
|
},
|
|
58
28
|
{
|
|
59
29
|
"author": "beachball",
|
|
60
30
|
"package": "@fluentui/react-datepicker-compat",
|
|
61
|
-
"comment": "Bump @fluentui/react-
|
|
62
|
-
"commit": "
|
|
31
|
+
"comment": "Bump @fluentui/react-field to v9.1.1",
|
|
32
|
+
"commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
|
|
63
33
|
},
|
|
64
34
|
{
|
|
65
35
|
"author": "beachball",
|
|
66
36
|
"package": "@fluentui/react-datepicker-compat",
|
|
67
|
-
"comment": "Bump @fluentui/react-
|
|
68
|
-
"commit": "
|
|
37
|
+
"comment": "Bump @fluentui/react-input to v9.4.11",
|
|
38
|
+
"commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
|
|
69
39
|
},
|
|
70
40
|
{
|
|
71
41
|
"author": "beachball",
|
|
72
42
|
"package": "@fluentui/react-datepicker-compat",
|
|
73
|
-
"comment": "Bump @fluentui/react-
|
|
74
|
-
"commit": "
|
|
43
|
+
"comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2",
|
|
44
|
+
"commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
|
|
75
45
|
},
|
|
76
46
|
{
|
|
77
47
|
"author": "beachball",
|
|
78
48
|
"package": "@fluentui/react-datepicker-compat",
|
|
79
|
-
"comment": "Bump @fluentui/react-
|
|
80
|
-
"commit": "
|
|
81
|
-
}
|
|
49
|
+
"comment": "Bump @fluentui/react-popover to v9.5.10",
|
|
50
|
+
"commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"patch": [
|
|
82
54
|
{
|
|
83
|
-
"author": "
|
|
55
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
84
56
|
"package": "@fluentui/react-datepicker-compat",
|
|
85
|
-
"
|
|
86
|
-
"
|
|
57
|
+
"commit": "59ef51fcd9e2ab84a4a480e0a02bc05ecd3a6697",
|
|
58
|
+
"comment": "chore: adopt custom JSX pragma"
|
|
87
59
|
}
|
|
88
60
|
]
|
|
89
61
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,29 +1,27 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-datepicker-compat
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon, 24 Apr 2023
|
|
3
|
+
This log was last generated on Mon, 24 Apr 2023 08:09:08 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## [0.0.0
|
|
7
|
+
## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0)
|
|
8
8
|
|
|
9
|
-
Mon, 24 Apr 2023
|
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-datepicker-compat_v0.0.0-beta.2..@fluentui/react-datepicker-compat_v0.0.0
|
|
9
|
+
Mon, 24 Apr 2023 08:09:08 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-datepicker-compat_v0.0.0-beta.2..@fluentui/react-datepicker-compat_v0.0.0)
|
|
11
11
|
|
|
12
|
-
###
|
|
12
|
+
### Minor changes
|
|
13
|
+
|
|
14
|
+
- feat: Add error handling to DatePicker. ([PR #27637](https://github.com/microsoft/fluentui/pull/27637) by esteban.230@hotmail.com)
|
|
15
|
+
- feat: Move DatePicker compat to stable. ([PR #27378](https://github.com/microsoft/fluentui/pull/27378) by esteban.230@hotmail.com)
|
|
16
|
+
- feat: Refactor DatePicker to remove Field and error handling logic. ([PR #27509](https://github.com/microsoft/fluentui/pull/27509) by esteban.230@hotmail.com)
|
|
17
|
+
- Bump @fluentui/react-field to v9.1.1 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
|
|
18
|
+
- Bump @fluentui/react-input to v9.4.11 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
|
|
19
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
|
|
20
|
+
- Bump @fluentui/react-popover to v9.5.10 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
|
|
21
|
+
|
|
22
|
+
### Patches
|
|
13
23
|
|
|
14
|
-
-
|
|
15
|
-
- Bump @fluentui/keyboard-keys to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
16
|
-
- Bump @fluentui/react-field to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
17
|
-
- Bump @fluentui/react-input to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
18
|
-
- Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
19
|
-
- Bump @fluentui/react-popover to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
20
|
-
- Bump @fluentui/react-portal to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
21
|
-
- Bump @fluentui/react-positioning to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
22
|
-
- Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
23
|
-
- Bump @fluentui/react-tabster to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
24
|
-
- Bump @fluentui/react-theme to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
25
|
-
- Bump @fluentui/react-utilities to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
26
|
-
- Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20230424-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/0d81644093c3638d1277c880b4f9481962dd9e58) by beachball)
|
|
24
|
+
- chore: adopt custom JSX pragma ([PR #27609](https://github.com/microsoft/fluentui/pull/27609) by bernardo.sunderhus@gmail.com)
|
|
27
25
|
|
|
28
26
|
## [0.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0-beta.2)
|
|
29
27
|
|