@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.
Files changed (264) hide show
  1. package/CHANGELOG.json +27 -55
  2. package/CHANGELOG.md +16 -18
  3. package/dist/index.d.ts +1160 -0
  4. package/lib/Calendar.js +2 -0
  5. package/lib/Calendar.js.map +1 -0
  6. package/lib/CalendarDay.js +2 -0
  7. package/lib/CalendarDay.js.map +1 -0
  8. package/lib/CalendarDayGrid.js +2 -0
  9. package/lib/CalendarDayGrid.js.map +1 -0
  10. package/lib/CalendarMonth.js +2 -0
  11. package/lib/CalendarMonth.js.map +1 -0
  12. package/lib/CalendarPicker.js +2 -0
  13. package/lib/CalendarPicker.js.map +1 -0
  14. package/lib/CalendarYear.js +2 -0
  15. package/lib/CalendarYear.js.map +1 -0
  16. package/lib/DatePicker.js +2 -0
  17. package/lib/DatePicker.js.map +1 -0
  18. package/lib/components/Calendar/Calendar.js +319 -0
  19. package/lib/components/Calendar/Calendar.js.map +1 -0
  20. package/lib/components/Calendar/Calendar.types.js +15 -0
  21. package/lib/components/Calendar/Calendar.types.js.map +1 -0
  22. package/lib/components/Calendar/defaults.js +3 -0
  23. package/lib/components/Calendar/defaults.js.map +1 -0
  24. package/lib/components/Calendar/index.js +5 -0
  25. package/lib/components/Calendar/index.js.map +1 -0
  26. package/lib/components/Calendar/useCalendarStyles.js +149 -0
  27. package/lib/components/Calendar/useCalendarStyles.js.map +1 -0
  28. package/lib/components/CalendarDay/CalendarDay.js +143 -0
  29. package/lib/components/CalendarDay/CalendarDay.js.map +1 -0
  30. package/lib/components/CalendarDay/CalendarDay.types.js +2 -0
  31. package/lib/components/CalendarDay/CalendarDay.types.js.map +1 -0
  32. package/lib/components/CalendarDay/index.js +4 -0
  33. package/lib/components/CalendarDay/index.js.map +1 -0
  34. package/lib/components/CalendarDay/useCalendarDayStyles.js +180 -0
  35. package/lib/components/CalendarDay/useCalendarDayStyles.js.map +1 -0
  36. package/lib/components/CalendarDayGrid/CalendarDayGrid.js +183 -0
  37. package/lib/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
  38. package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js +2 -0
  39. package/lib/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
  40. package/lib/components/CalendarDayGrid/CalendarGridDayCell.js +193 -0
  41. package/lib/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
  42. package/lib/components/CalendarDayGrid/CalendarGridRow.js +40 -0
  43. package/lib/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
  44. package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js +46 -0
  45. package/lib/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
  46. package/lib/components/CalendarDayGrid/index.js +5 -0
  47. package/lib/components/CalendarDayGrid/index.js.map +1 -0
  48. package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.js +443 -0
  49. package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.js.map +1 -0
  50. package/lib/components/CalendarDayGrid/useWeekCornerStyles.js +98 -0
  51. package/lib/components/CalendarDayGrid/useWeekCornerStyles.js.map +1 -0
  52. package/lib/components/CalendarDayGrid/useWeeks.js +47 -0
  53. package/lib/components/CalendarDayGrid/useWeeks.js.map +1 -0
  54. package/lib/components/CalendarMonth/CalendarMonth.js +282 -0
  55. package/lib/components/CalendarMonth/CalendarMonth.js.map +1 -0
  56. package/lib/components/CalendarMonth/CalendarMonth.types.js +2 -0
  57. package/lib/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
  58. package/lib/components/CalendarMonth/index.js +4 -0
  59. package/lib/components/CalendarMonth/index.js.map +1 -0
  60. package/lib/components/CalendarMonth/useCalendarMonthStyles.js +10 -0
  61. package/lib/components/CalendarMonth/useCalendarMonthStyles.js.map +1 -0
  62. package/lib/components/CalendarPicker/CalendarPicker.types.js +2 -0
  63. package/lib/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
  64. package/lib/components/CalendarPicker/index.js +3 -0
  65. package/lib/components/CalendarPicker/index.js.map +1 -0
  66. package/lib/components/CalendarPicker/useCalendarPickerStyles.js +371 -0
  67. package/lib/components/CalendarPicker/useCalendarPickerStyles.js.map +1 -0
  68. package/lib/components/CalendarYear/CalendarYear.js +350 -0
  69. package/lib/components/CalendarYear/CalendarYear.js.map +1 -0
  70. package/lib/components/CalendarYear/CalendarYear.types.js +2 -0
  71. package/lib/components/CalendarYear/CalendarYear.types.js.map +1 -0
  72. package/lib/components/CalendarYear/index.js +4 -0
  73. package/lib/components/CalendarYear/index.js.map +1 -0
  74. package/lib/components/CalendarYear/useCalendarYearStyles.js +10 -0
  75. package/lib/components/CalendarYear/useCalendarYearStyles.js.map +1 -0
  76. package/lib/components/DatePicker/DatePicker.js +11 -0
  77. package/lib/components/DatePicker/DatePicker.js.map +1 -0
  78. package/lib/components/DatePicker/DatePicker.types.js +2 -0
  79. package/lib/components/DatePicker/DatePicker.types.js.map +1 -0
  80. package/lib/components/DatePicker/defaults.js +15 -0
  81. package/lib/components/DatePicker/defaults.js.map +1 -0
  82. package/lib/components/DatePicker/index.js +7 -0
  83. package/lib/components/DatePicker/index.js.map +1 -0
  84. package/lib/components/DatePicker/renderDatePicker.js +18 -0
  85. package/lib/components/DatePicker/renderDatePicker.js.map +1 -0
  86. package/lib/components/DatePicker/useDatePicker.js +399 -0
  87. package/lib/components/DatePicker/useDatePicker.js.map +1 -0
  88. package/lib/components/DatePicker/useDatePickerStyles.js +38 -0
  89. package/lib/components/DatePicker/useDatePickerStyles.js.map +1 -0
  90. package/lib/index.js +4 -0
  91. package/lib/index.js.map +1 -0
  92. package/lib/utils/animations.js +98 -0
  93. package/lib/utils/animations.js.map +1 -0
  94. package/lib/utils/constants.js +64 -0
  95. package/lib/utils/constants.js.map +1 -0
  96. package/lib/utils/dateFormatting/dateFormatting.defaults.js +58 -0
  97. package/lib/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
  98. package/lib/utils/dateFormatting/dateFormatting.types.js +2 -0
  99. package/lib/utils/dateFormatting/dateFormatting.types.js.map +1 -0
  100. package/lib/utils/dateFormatting/index.js +3 -0
  101. package/lib/utils/dateFormatting/index.js.map +1 -0
  102. package/lib/utils/dateGrid/dateGrid.types.js +2 -0
  103. package/lib/utils/dateGrid/dateGrid.types.js.map +1 -0
  104. package/lib/utils/dateGrid/findAvailableDate.js +29 -0
  105. package/lib/utils/dateGrid/findAvailableDate.js.map +1 -0
  106. package/lib/utils/dateGrid/getBoundedDateRange.js +18 -0
  107. package/lib/utils/dateGrid/getBoundedDateRange.js.map +1 -0
  108. package/lib/utils/dateGrid/getDateRangeTypeToUse.js +18 -0
  109. package/lib/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
  110. package/lib/utils/dateGrid/getDayGrid.js +85 -0
  111. package/lib/utils/dateGrid/getDayGrid.js.map +1 -0
  112. package/lib/utils/dateGrid/index.js +6 -0
  113. package/lib/utils/dateGrid/index.js.map +1 -0
  114. package/lib/utils/dateGrid/isAfterMaxDate.js +13 -0
  115. package/lib/utils/dateGrid/isAfterMaxDate.js.map +1 -0
  116. package/lib/utils/dateGrid/isBeforeMinDate.js +13 -0
  117. package/lib/utils/dateGrid/isBeforeMinDate.js.map +1 -0
  118. package/lib/utils/dateGrid/isContiguous.js +19 -0
  119. package/lib/utils/dateGrid/isContiguous.js.map +1 -0
  120. package/lib/utils/dateGrid/isRestrictedDate.js +21 -0
  121. package/lib/utils/dateGrid/isRestrictedDate.js.map +1 -0
  122. package/lib/utils/dateMath/dateMath.js +358 -0
  123. package/lib/utils/dateMath/dateMath.js.map +1 -0
  124. package/lib/utils/dateMath/index.js +2 -0
  125. package/lib/utils/dateMath/index.js.map +1 -0
  126. package/lib/utils/dom.js +9 -0
  127. package/lib/utils/dom.js.map +1 -0
  128. package/lib/utils/focus.js +28 -0
  129. package/lib/utils/focus.js.map +1 -0
  130. package/lib/utils/index.js +8 -0
  131. package/lib/utils/index.js.map +1 -0
  132. package/lib/utils/usePopupPositioning.js +25 -0
  133. package/lib/utils/usePopupPositioning.js.map +1 -0
  134. package/lib-commonjs/Calendar.js +9 -0
  135. package/lib-commonjs/Calendar.js.map +1 -0
  136. package/lib-commonjs/CalendarDay.js +9 -0
  137. package/lib-commonjs/CalendarDay.js.map +1 -0
  138. package/lib-commonjs/CalendarDayGrid.js +9 -0
  139. package/lib-commonjs/CalendarDayGrid.js.map +1 -0
  140. package/lib-commonjs/CalendarMonth.js +9 -0
  141. package/lib-commonjs/CalendarMonth.js.map +1 -0
  142. package/lib-commonjs/CalendarPicker.js +9 -0
  143. package/lib-commonjs/CalendarPicker.js.map +1 -0
  144. package/lib-commonjs/CalendarYear.js +9 -0
  145. package/lib-commonjs/CalendarYear.js.map +1 -0
  146. package/lib-commonjs/DatePicker.js +9 -0
  147. package/lib-commonjs/DatePicker.js.map +1 -0
  148. package/lib-commonjs/components/Calendar/Calendar.js +306 -0
  149. package/lib-commonjs/components/Calendar/Calendar.js.map +1 -0
  150. package/lib-commonjs/components/Calendar/Calendar.types.js +21 -0
  151. package/lib-commonjs/components/Calendar/Calendar.types.js.map +1 -0
  152. package/lib-commonjs/components/Calendar/defaults.js +12 -0
  153. package/lib-commonjs/components/Calendar/defaults.js.map +1 -0
  154. package/lib-commonjs/components/Calendar/index.js +16 -0
  155. package/lib-commonjs/components/Calendar/index.js.map +1 -0
  156. package/lib-commonjs/components/Calendar/useCalendarStyles.js +286 -0
  157. package/lib-commonjs/components/Calendar/useCalendarStyles.js.map +1 -0
  158. package/lib-commonjs/components/CalendarDay/CalendarDay.js +124 -0
  159. package/lib-commonjs/components/CalendarDay/CalendarDay.js.map +1 -0
  160. package/lib-commonjs/components/CalendarDay/CalendarDay.types.js +9 -0
  161. package/lib-commonjs/components/CalendarDay/CalendarDay.types.js.map +1 -0
  162. package/lib-commonjs/components/CalendarDay/index.js +11 -0
  163. package/lib-commonjs/components/CalendarDay/index.js.map +1 -0
  164. package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.js +356 -0
  165. package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.js.map +1 -0
  166. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js +181 -0
  167. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.js.map +1 -0
  168. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js +9 -0
  169. package/lib-commonjs/components/CalendarDayGrid/CalendarDayGrid.types.js.map +1 -0
  170. package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js +173 -0
  171. package/lib-commonjs/components/CalendarDayGrid/CalendarGridDayCell.js.map +1 -0
  172. package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js +35 -0
  173. package/lib-commonjs/components/CalendarDayGrid/CalendarGridRow.js.map +1 -0
  174. package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js +45 -0
  175. package/lib-commonjs/components/CalendarDayGrid/CalendarMonthHeaderRow.js.map +1 -0
  176. package/lib-commonjs/components/CalendarDayGrid/index.js +21 -0
  177. package/lib-commonjs/components/CalendarDayGrid/index.js.map +1 -0
  178. package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.js +916 -0
  179. package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.js.map +1 -0
  180. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.js +103 -0
  181. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.js.map +1 -0
  182. package/lib-commonjs/components/CalendarDayGrid/useWeeks.js +54 -0
  183. package/lib-commonjs/components/CalendarDayGrid/useWeeks.js.map +1 -0
  184. package/lib-commonjs/components/CalendarMonth/CalendarMonth.js +271 -0
  185. package/lib-commonjs/components/CalendarMonth/CalendarMonth.js.map +1 -0
  186. package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js +9 -0
  187. package/lib-commonjs/components/CalendarMonth/CalendarMonth.types.js.map +1 -0
  188. package/lib-commonjs/components/CalendarMonth/index.js +11 -0
  189. package/lib-commonjs/components/CalendarMonth/index.js.map +1 -0
  190. package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.js +14 -0
  191. package/lib-commonjs/components/CalendarMonth/useCalendarMonthStyles.js.map +1 -0
  192. package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js +7 -0
  193. package/lib-commonjs/components/CalendarPicker/CalendarPicker.types.js.map +1 -0
  194. package/lib-commonjs/components/CalendarPicker/index.js +10 -0
  195. package/lib-commonjs/components/CalendarPicker/index.js.map +1 -0
  196. package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.js +746 -0
  197. package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.js.map +1 -0
  198. package/lib-commonjs/components/CalendarYear/CalendarYear.js +307 -0
  199. package/lib-commonjs/components/CalendarYear/CalendarYear.js.map +1 -0
  200. package/lib-commonjs/components/CalendarYear/CalendarYear.types.js +9 -0
  201. package/lib-commonjs/components/CalendarYear/CalendarYear.types.js.map +1 -0
  202. package/lib-commonjs/components/CalendarYear/index.js +11 -0
  203. package/lib-commonjs/components/CalendarYear/index.js.map +1 -0
  204. package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.js +14 -0
  205. package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.js.map +1 -0
  206. package/lib-commonjs/components/DatePicker/DatePicker.js +21 -0
  207. package/lib-commonjs/components/DatePicker/DatePicker.js.map +1 -0
  208. package/lib-commonjs/components/DatePicker/DatePicker.types.js +9 -0
  209. package/lib-commonjs/components/DatePicker/DatePicker.types.js.map +1 -0
  210. package/lib-commonjs/components/DatePicker/defaults.js +30 -0
  211. package/lib-commonjs/components/DatePicker/defaults.js.map +1 -0
  212. package/lib-commonjs/components/DatePicker/index.js +14 -0
  213. package/lib-commonjs/components/DatePicker/index.js.map +1 -0
  214. package/lib-commonjs/components/DatePicker/renderDatePicker.js +20 -0
  215. package/lib-commonjs/components/DatePicker/renderDatePicker.js.map +1 -0
  216. package/lib-commonjs/components/DatePicker/useDatePicker.js +444 -0
  217. package/lib-commonjs/components/DatePicker/useDatePicker.js.map +1 -0
  218. package/lib-commonjs/components/DatePicker/useDatePickerStyles.js +55 -0
  219. package/lib-commonjs/components/DatePicker/useDatePickerStyles.js.map +1 -0
  220. package/lib-commonjs/index.js +50 -0
  221. package/lib-commonjs/index.js.map +1 -0
  222. package/lib-commonjs/utils/animations.js +126 -0
  223. package/lib-commonjs/utils/animations.js.map +1 -0
  224. package/lib-commonjs/utils/constants.js +82 -0
  225. package/lib-commonjs/utils/constants.js.map +1 -0
  226. package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js +102 -0
  227. package/lib-commonjs/utils/dateFormatting/dateFormatting.defaults.js.map +1 -0
  228. package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js +7 -0
  229. package/lib-commonjs/utils/dateFormatting/dateFormatting.types.js.map +1 -0
  230. package/lib-commonjs/utils/dateFormatting/index.js +10 -0
  231. package/lib-commonjs/utils/dateFormatting/index.js.map +1 -0
  232. package/lib-commonjs/utils/dateGrid/dateGrid.types.js +7 -0
  233. package/lib-commonjs/utils/dateGrid/dateGrid.types.js.map +1 -0
  234. package/lib-commonjs/utils/dateGrid/findAvailableDate.js +29 -0
  235. package/lib-commonjs/utils/dateGrid/findAvailableDate.js.map +1 -0
  236. package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js +23 -0
  237. package/lib-commonjs/utils/dateGrid/getBoundedDateRange.js.map +1 -0
  238. package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js +20 -0
  239. package/lib-commonjs/utils/dateGrid/getDateRangeTypeToUse.js.map +1 -0
  240. package/lib-commonjs/utils/dateGrid/getDayGrid.js +76 -0
  241. package/lib-commonjs/utils/dateGrid/getDayGrid.js.map +1 -0
  242. package/lib-commonjs/utils/dateGrid/index.js +13 -0
  243. package/lib-commonjs/utils/dateGrid/index.js.map +1 -0
  244. package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js +15 -0
  245. package/lib-commonjs/utils/dateGrid/isAfterMaxDate.js.map +1 -0
  246. package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js +15 -0
  247. package/lib-commonjs/utils/dateGrid/isBeforeMinDate.js.map +1 -0
  248. package/lib-commonjs/utils/dateGrid/isContiguous.js +28 -0
  249. package/lib-commonjs/utils/dateGrid/isContiguous.js.map +1 -0
  250. package/lib-commonjs/utils/dateGrid/isRestrictedDate.js +21 -0
  251. package/lib-commonjs/utils/dateGrid/isRestrictedDate.js.map +1 -0
  252. package/lib-commonjs/utils/dateMath/dateMath.js +274 -0
  253. package/lib-commonjs/utils/dateMath/dateMath.js.map +1 -0
  254. package/lib-commonjs/utils/dateMath/index.js +9 -0
  255. package/lib-commonjs/utils/dateMath/index.js.map +1 -0
  256. package/lib-commonjs/utils/dom.js +18 -0
  257. package/lib-commonjs/utils/dom.js.map +1 -0
  258. package/lib-commonjs/utils/focus.js +31 -0
  259. package/lib-commonjs/utils/focus.js.map +1 -0
  260. package/lib-commonjs/utils/index.js +15 -0
  261. package/lib-commonjs/utils/index.js.map +1 -0
  262. package/lib-commonjs/utils/usePopupPositioning.js +26 -0
  263. package/lib-commonjs/utils/usePopupPositioning.js.map +1 -0
  264. 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 04:26:06 GMT",
6
- "tag": "@fluentui/react-datepicker-compat_v0.0.0-nightly-20230424-0419.1",
7
- "version": "0.0.0-nightly-20230424-0419.1",
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
- "prerelease": [
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": "beachball",
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
- "comment": "Bump @fluentui/react-popover to v0.0.0-nightly-20230424-0419.1",
44
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
13
+ "commit": "f7d88ee6fb582989efc057880ddfe60228649189",
14
+ "comment": "feat: Add error handling to DatePicker."
45
15
  },
46
16
  {
47
- "author": "beachball",
17
+ "author": "esteban.230@hotmail.com",
48
18
  "package": "@fluentui/react-datepicker-compat",
49
- "comment": "Bump @fluentui/react-portal to v0.0.0-nightly-20230424-0419.1",
50
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
19
+ "commit": "bb8dfe06f4f2910eef1561c76410bf91b009fa37",
20
+ "comment": "feat: Move DatePicker compat to stable."
51
21
  },
52
22
  {
53
- "author": "beachball",
23
+ "author": "esteban.230@hotmail.com",
54
24
  "package": "@fluentui/react-datepicker-compat",
55
- "comment": "Bump @fluentui/react-positioning to v0.0.0-nightly-20230424-0419.1",
56
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
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-shared-contexts to v0.0.0-nightly-20230424-0419.1",
62
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
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-tabster to v0.0.0-nightly-20230424-0419.1",
68
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
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-theme to v0.0.0-nightly-20230424-0419.1",
74
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
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-utilities to v0.0.0-nightly-20230424-0419.1",
80
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
81
- },
49
+ "comment": "Bump @fluentui/react-popover to v9.5.10",
50
+ "commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
51
+ }
52
+ ],
53
+ "patch": [
82
54
  {
83
- "author": "beachball",
55
+ "author": "bernardo.sunderhus@gmail.com",
84
56
  "package": "@fluentui/react-datepicker-compat",
85
- "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20230424-0419.1",
86
- "commit": "0d81644093c3638d1277c880b4f9481962dd9e58"
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 04:26:06 GMT and should not be manually modified.
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-nightly-20230424-0419.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0-nightly-20230424-0419.1)
7
+ ## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0)
8
8
 
9
- Mon, 24 Apr 2023 04:26:06 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-nightly-20230424-0419.1)
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
- ### Changes
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
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
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