@fluentui/react-datepicker-compat 0.0.0-nightly-20230512-0423.1 → 0.1.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 +65 -31
  2. package/CHANGELOG.md +24 -18
  3. package/dist/index.d.ts +1165 -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.styles.js +149 -0
  27. package/lib/components/Calendar/useCalendarStyles.styles.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.styles.js +180 -0
  35. package/lib/components/CalendarDay/useCalendarDayStyles.styles.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.styles.js +443 -0
  49. package/lib/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
  50. package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.js +98 -0
  51. package/lib/components/CalendarDayGrid/useWeekCornerStyles.styles.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.styles.js +371 -0
  67. package/lib/components/CalendarPicker/useCalendarPickerStyles.styles.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.styles.js +10 -0
  75. package/lib/components/CalendarYear/useCalendarYearStyles.styles.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 +395 -0
  87. package/lib/components/DatePicker/useDatePicker.js.map +1 -0
  88. package/lib/components/DatePicker/useDatePickerStyles.styles.js +38 -0
  89. package/lib/components/DatePicker/useDatePickerStyles.styles.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.styles.js +286 -0
  157. package/lib-commonjs/components/Calendar/useCalendarStyles.styles.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.styles.js +356 -0
  165. package/lib-commonjs/components/CalendarDay/useCalendarDayStyles.styles.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.styles.js +916 -0
  179. package/lib-commonjs/components/CalendarDayGrid/useCalendarDayGridStyles.styles.js.map +1 -0
  180. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.js +103 -0
  181. package/lib-commonjs/components/CalendarDayGrid/useWeekCornerStyles.styles.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.styles.js +746 -0
  197. package/lib-commonjs/components/CalendarPicker/useCalendarPickerStyles.styles.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.styles.js +14 -0
  205. package/lib-commonjs/components/CalendarYear/useCalendarYearStyles.styles.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 +440 -0
  217. package/lib-commonjs/components/DatePicker/useDatePicker.js.map +1 -0
  218. package/lib-commonjs/components/DatePicker/useDatePickerStyles.styles.js +55 -0
  219. package/lib-commonjs/components/DatePicker/useDatePickerStyles.styles.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,122 @@
2
2
  "name": "@fluentui/react-datepicker-compat",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 12 May 2023 04:28:38 GMT",
6
- "tag": "@fluentui/react-datepicker-compat_v0.0.0-nightly-20230512-0423.1",
7
- "version": "0.0.0-nightly-20230512-0423.1",
5
+ "date": "Fri, 12 May 2023 20:22:55 GMT",
6
+ "tag": "@fluentui/react-datepicker-compat_v0.1.0",
7
+ "version": "0.1.0",
8
8
  "comments": {
9
- "prerelease": [
9
+ "none": [
10
+ {
11
+ "author": "esteban.230@hotmail.com",
12
+ "package": "@fluentui/react-datepicker-compat",
13
+ "commit": "66f1e1d23e4e6cf93bd513c69751740621d67894",
14
+ "comment": "chore: Add description to README."
15
+ },
16
+ {
17
+ "author": "martinhochel@microsoft.com",
18
+ "package": "@fluentui/react-datepicker-compat",
19
+ "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
20
+ "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
21
+ }
22
+ ],
23
+ "patch": [
24
+ {
25
+ "author": "olfedias@microsoft.com",
26
+ "package": "@fluentui/react-datepicker-compat",
27
+ "commit": "871192b67e1bc8a68da1b4c55b4e0ee2aed0b604",
28
+ "comment": "chore: move makeStyles() calls to .styles.ts files"
29
+ },
30
+ {
31
+ "author": "olfedias@microsoft.com",
32
+ "package": "@fluentui/react-datepicker-compat",
33
+ "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
34
+ "comment": "chore: exclude .swcrc from being published"
35
+ },
10
36
  {
11
- "author": "fluentui-internal@service.microsoft.com",
37
+ "author": "olfedias@microsoft.com",
38
+ "package": "@fluentui/react-datepicker-compat",
39
+ "commit": "6c236e60a1a0def5418dc8d930df1e16dbad70d4",
40
+ "comment": "chore: update version"
41
+ }
42
+ ],
43
+ "minor": [
44
+ {
45
+ "author": "esteban.230@hotmail.com",
12
46
  "package": "@fluentui/react-datepicker-compat",
13
- "commit": "not available",
14
- "comment": "Release nightly v9"
47
+ "commit": "ae2b1a097d0dc2e53699f600d1d5d96110e99a5f",
48
+ "comment": "fix: Make onValidationError onValidationResult so the error is updated when there's no longer an error."
15
49
  },
16
50
  {
17
51
  "author": "beachball",
18
52
  "package": "@fluentui/react-datepicker-compat",
19
- "comment": "Bump @fluentui/keyboard-keys to v0.0.0-nightly-20230512-0423.1",
20
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
53
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.3",
54
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
21
55
  },
22
56
  {
23
57
  "author": "beachball",
24
58
  "package": "@fluentui/react-datepicker-compat",
25
- "comment": "Bump @fluentui/react-field to v0.0.0-nightly-20230512-0423.1",
26
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
59
+ "comment": "Bump @fluentui/react-field to v9.1.2",
60
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
27
61
  },
28
62
  {
29
63
  "author": "beachball",
30
64
  "package": "@fluentui/react-datepicker-compat",
31
- "comment": "Bump @fluentui/react-input to v0.0.0-nightly-20230512-0423.1",
32
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
65
+ "comment": "Bump @fluentui/react-input to v9.4.12",
66
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
33
67
  },
34
68
  {
35
69
  "author": "beachball",
36
70
  "package": "@fluentui/react-datepicker-compat",
37
- "comment": "Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20230512-0423.1",
38
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
71
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3",
72
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
39
73
  },
40
74
  {
41
75
  "author": "beachball",
42
76
  "package": "@fluentui/react-datepicker-compat",
43
- "comment": "Bump @fluentui/react-popover to v0.0.0-nightly-20230512-0423.1",
44
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
77
+ "comment": "Bump @fluentui/react-popover to v9.5.11",
78
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
45
79
  },
46
80
  {
47
81
  "author": "beachball",
48
82
  "package": "@fluentui/react-datepicker-compat",
49
- "comment": "Bump @fluentui/react-portal to v0.0.0-nightly-20230512-0423.1",
50
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
83
+ "comment": "Bump @fluentui/react-portal to v9.2.7",
84
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
51
85
  },
52
86
  {
53
87
  "author": "beachball",
54
88
  "package": "@fluentui/react-datepicker-compat",
55
- "comment": "Bump @fluentui/react-positioning to v0.0.0-nightly-20230512-0423.1",
56
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
89
+ "comment": "Bump @fluentui/react-positioning to v9.5.11",
90
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
57
91
  },
58
92
  {
59
93
  "author": "beachball",
60
94
  "package": "@fluentui/react-datepicker-compat",
61
- "comment": "Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20230512-0423.1",
62
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
95
+ "comment": "Bump @fluentui/react-shared-contexts to v9.4.0",
96
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
63
97
  },
64
98
  {
65
99
  "author": "beachball",
66
100
  "package": "@fluentui/react-datepicker-compat",
67
- "comment": "Bump @fluentui/react-tabster to v0.0.0-nightly-20230512-0423.1",
68
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
101
+ "comment": "Bump @fluentui/react-tabster to v9.7.0",
102
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
69
103
  },
70
104
  {
71
105
  "author": "beachball",
72
106
  "package": "@fluentui/react-datepicker-compat",
73
- "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20230512-0423.1",
74
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
107
+ "comment": "Bump @fluentui/react-theme to v9.1.8",
108
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
75
109
  },
76
110
  {
77
111
  "author": "beachball",
78
112
  "package": "@fluentui/react-datepicker-compat",
79
- "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20230512-0423.1",
80
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
113
+ "comment": "Bump @fluentui/react-utilities to v9.8.1",
114
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
81
115
  },
82
116
  {
83
117
  "author": "beachball",
84
118
  "package": "@fluentui/react-datepicker-compat",
85
- "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20230512-0423.1",
86
- "commit": "c57dd462611ae26d167c09a66526ef8bc80b8ff9"
119
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21",
120
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
87
121
  }
88
122
  ]
89
123
  }
package/CHANGELOG.md CHANGED
@@ -1,29 +1,35 @@
1
1
  # Change Log - @fluentui/react-datepicker-compat
2
2
 
3
- This log was last generated on Fri, 12 May 2023 04:28:38 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 12 May 2023 20:22:55 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightly-20230512-0423.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0-nightly-20230512-0423.1)
7
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.1.0)
8
8
 
9
- Fri, 12 May 2023 04:28:38 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-datepicker-compat_v0.0.0..@fluentui/react-datepicker-compat_v0.0.0-nightly-20230512-0423.1)
9
+ Fri, 12 May 2023 20:22:55 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-datepicker-compat_v0.0.0..@fluentui/react-datepicker-compat_v0.1.0)
11
11
 
12
- ### Changes
12
+ ### Minor changes
13
+
14
+ - fix: Make onValidationError onValidationResult so the error is updated when there's no longer an error. ([PR #27655](https://github.com/microsoft/fluentui/pull/27655) by esteban.230@hotmail.com)
15
+ - Bump @fluentui/keyboard-keys to v9.0.3 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
16
+ - Bump @fluentui/react-field to v9.1.2 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
17
+ - Bump @fluentui/react-input to v9.4.12 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
18
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
19
+ - Bump @fluentui/react-popover to v9.5.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
20
+ - Bump @fluentui/react-portal to v9.2.7 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
21
+ - Bump @fluentui/react-positioning to v9.5.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
22
+ - Bump @fluentui/react-shared-contexts to v9.4.0 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
23
+ - Bump @fluentui/react-tabster to v9.7.0 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
24
+ - Bump @fluentui/react-theme to v9.1.8 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
25
+ - Bump @fluentui/react-utilities to v9.8.1 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
26
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
27
+
28
+ ### Patches
13
29
 
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-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
16
- - Bump @fluentui/react-field to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
17
- - Bump @fluentui/react-input to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
18
- - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
19
- - Bump @fluentui/react-popover to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
20
- - Bump @fluentui/react-portal to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
21
- - Bump @fluentui/react-positioning to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
22
- - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
23
- - Bump @fluentui/react-tabster to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
24
- - Bump @fluentui/react-theme to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
25
- - Bump @fluentui/react-utilities to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
26
- - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20230512-0423.1 ([commit](https://github.com/microsoft/fluentui/commit/c57dd462611ae26d167c09a66526ef8bc80b8ff9) by beachball)
30
+ - chore: move makeStyles() calls to .styles.ts files ([PR #27710](https://github.com/microsoft/fluentui/pull/27710) by olfedias@microsoft.com)
31
+ - chore: exclude .swcrc from being published ([PR #27740](https://github.com/microsoft/fluentui/pull/27740) by olfedias@microsoft.com)
32
+ - chore: update version ([PR #27666](https://github.com/microsoft/fluentui/pull/27666) by olfedias@microsoft.com)
27
33
 
28
34
  ## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-datepicker-compat_v0.0.0)
29
35