@fluentui/react-drawer 9.0.0-beta.9 → 9.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 (279) hide show
  1. package/CHANGELOG.md +416 -2
  2. package/README.md +5 -4
  3. package/dist/index.d.ts +128 -78
  4. package/lib/InlineDrawer.js +1 -0
  5. package/lib/InlineDrawer.js.map +1 -0
  6. package/lib/OverlayDrawer.js +1 -0
  7. package/lib/OverlayDrawer.js.map +1 -0
  8. package/lib/components/Drawer/Drawer.js +1 -1
  9. package/lib/components/Drawer/Drawer.js.map +1 -1
  10. package/lib/components/Drawer/Drawer.types.js.map +1 -1
  11. package/lib/components/Drawer/renderDrawer.js +4 -4
  12. package/lib/components/Drawer/renderDrawer.js.map +1 -1
  13. package/lib/components/Drawer/useDrawer.js +10 -10
  14. package/lib/components/Drawer/useDrawer.js.map +1 -1
  15. package/lib/components/DrawerBody/DrawerBody.js +1 -1
  16. package/lib/components/DrawerBody/DrawerBody.js.map +1 -1
  17. package/lib/components/DrawerBody/renderDrawerBody.js +4 -4
  18. package/lib/components/DrawerBody/renderDrawerBody.js.map +1 -1
  19. package/lib/components/DrawerBody/useDrawerBody.js +8 -3
  20. package/lib/components/DrawerBody/useDrawerBody.js.map +1 -1
  21. package/lib/components/DrawerBody/useDrawerBodyStyles.styles.js +3 -30
  22. package/lib/components/DrawerBody/useDrawerBodyStyles.styles.js.map +1 -1
  23. package/lib/components/DrawerFooter/DrawerFooter.js +3 -1
  24. package/lib/components/DrawerFooter/DrawerFooter.js.map +1 -1
  25. package/lib/components/DrawerFooter/renderDrawerFooter.js +4 -4
  26. package/lib/components/DrawerFooter/renderDrawerFooter.js.map +1 -1
  27. package/lib/components/DrawerFooter/useDrawerFooter.js +4 -2
  28. package/lib/components/DrawerFooter/useDrawerFooter.js.map +1 -1
  29. package/lib/components/DrawerFooter/useDrawerFooterStyles.styles.js +3 -16
  30. package/lib/components/DrawerFooter/useDrawerFooterStyles.styles.js.map +1 -1
  31. package/lib/components/DrawerHeader/DrawerHeader.js +1 -1
  32. package/lib/components/DrawerHeader/DrawerHeader.js.map +1 -1
  33. package/lib/components/DrawerHeader/renderDrawerHeader.js +4 -4
  34. package/lib/components/DrawerHeader/renderDrawerHeader.js.map +1 -1
  35. package/lib/components/DrawerHeader/useDrawerHeader.js +4 -2
  36. package/lib/components/DrawerHeader/useDrawerHeader.js.map +1 -1
  37. package/lib/components/DrawerHeader/useDrawerHeaderStyles.styles.js +3 -17
  38. package/lib/components/DrawerHeader/useDrawerHeaderStyles.styles.js.map +1 -1
  39. package/lib/components/DrawerHeaderNavigation/DrawerHeaderNavigation.js +1 -1
  40. package/lib/components/DrawerHeaderNavigation/DrawerHeaderNavigation.js.map +1 -1
  41. package/lib/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.js +4 -4
  42. package/lib/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.js.map +1 -1
  43. package/lib/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.js +4 -2
  44. package/lib/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.js.map +1 -1
  45. package/lib/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.js +3 -13
  46. package/lib/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.js.map +1 -1
  47. package/lib/components/DrawerHeaderTitle/DrawerHeaderTitle.js +1 -1
  48. package/lib/components/DrawerHeaderTitle/DrawerHeaderTitle.js.map +1 -1
  49. package/lib/components/DrawerHeaderTitle/DrawerHeaderTitle.types.js +1 -1
  50. package/lib/components/DrawerHeaderTitle/DrawerHeaderTitle.types.js.map +1 -1
  51. package/lib/components/DrawerHeaderTitle/renderDrawerHeaderTitle.js +9 -4
  52. package/lib/components/DrawerHeaderTitle/renderDrawerHeaderTitle.js.map +1 -1
  53. package/lib/components/DrawerHeaderTitle/useDrawerHeaderTitle.js +26 -15
  54. package/lib/components/DrawerHeaderTitle/useDrawerHeaderTitle.js.map +1 -1
  55. package/lib/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.js +1 -1
  56. package/lib/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.js.map +1 -1
  57. package/lib/components/InlineDrawer/InlineDrawer.js +16 -0
  58. package/lib/components/InlineDrawer/InlineDrawer.js.map +1 -0
  59. package/lib/components/InlineDrawer/InlineDrawer.types.js.map +1 -0
  60. package/lib/components/InlineDrawer/index.js +5 -0
  61. package/lib/components/InlineDrawer/index.js.map +1 -0
  62. package/lib/components/InlineDrawer/renderInlineDrawer.js +11 -0
  63. package/lib/components/InlineDrawer/renderInlineDrawer.js.map +1 -0
  64. package/lib/components/InlineDrawer/useInlineDrawer.js +32 -0
  65. package/lib/components/InlineDrawer/useInlineDrawer.js.map +1 -0
  66. package/lib/components/InlineDrawer/useInlineDrawerStyles.styles.js +64 -0
  67. package/lib/components/InlineDrawer/useInlineDrawerStyles.styles.js.map +1 -0
  68. package/lib/components/OverlayDrawer/OverlayDrawer.js +15 -0
  69. package/lib/components/OverlayDrawer/OverlayDrawer.js.map +1 -0
  70. package/lib/components/OverlayDrawer/OverlayDrawer.types.js.map +1 -0
  71. package/lib/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.js +13 -0
  72. package/lib/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.js.map +1 -0
  73. package/lib/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.js.map +1 -0
  74. package/lib/components/OverlayDrawer/OverlayDrawerSurface/index.js +2 -0
  75. package/lib/components/OverlayDrawer/OverlayDrawerSurface/index.js.map +1 -0
  76. package/lib/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.js +29 -0
  77. package/lib/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.js.map +1 -0
  78. package/lib/components/OverlayDrawer/index.js +5 -0
  79. package/lib/components/OverlayDrawer/index.js.map +1 -0
  80. package/lib/components/OverlayDrawer/renderOverlayDrawer.js +13 -0
  81. package/lib/components/OverlayDrawer/renderOverlayDrawer.js.map +1 -0
  82. package/lib/components/OverlayDrawer/useOverlayDrawer.js +56 -0
  83. package/lib/components/OverlayDrawer/useOverlayDrawer.js.map +1 -0
  84. package/lib/components/OverlayDrawer/useOverlayDrawerStyles.styles.js +73 -0
  85. package/lib/components/OverlayDrawer/useOverlayDrawerStyles.styles.js.map +1 -0
  86. package/lib/e2e/DrawerShared.js +108 -0
  87. package/lib/e2e/DrawerShared.js.map +1 -0
  88. package/lib/index.js +3 -3
  89. package/lib/index.js.map +1 -1
  90. package/lib/shared/DrawerBase.types.js +1 -0
  91. package/lib/shared/DrawerBase.types.js.map +1 -0
  92. package/lib/shared/useDrawerBaseStyles.styles.js +96 -0
  93. package/lib/shared/useDrawerBaseStyles.styles.js.map +1 -0
  94. package/lib/shared/useDrawerDefaultProps.js +8 -0
  95. package/lib/shared/useDrawerDefaultProps.js.map +1 -0
  96. package/lib-commonjs/Drawer.js +2 -2
  97. package/lib-commonjs/Drawer.js.map +1 -1
  98. package/lib-commonjs/DrawerBody.js +2 -2
  99. package/lib-commonjs/DrawerBody.js.map +1 -1
  100. package/lib-commonjs/DrawerFooter.js +2 -2
  101. package/lib-commonjs/DrawerFooter.js.map +1 -1
  102. package/lib-commonjs/DrawerHeader.js +2 -2
  103. package/lib-commonjs/DrawerHeader.js.map +1 -1
  104. package/lib-commonjs/DrawerHeaderNavigation.js +2 -2
  105. package/lib-commonjs/DrawerHeaderNavigation.js.map +1 -1
  106. package/lib-commonjs/DrawerHeaderTitle.js +2 -2
  107. package/lib-commonjs/DrawerHeaderTitle.js.map +1 -1
  108. package/lib-commonjs/InlineDrawer.js +6 -0
  109. package/lib-commonjs/InlineDrawer.js.map +1 -0
  110. package/lib-commonjs/OverlayDrawer.js +6 -0
  111. package/lib-commonjs/OverlayDrawer.js.map +1 -0
  112. package/lib-commonjs/components/Drawer/Drawer.js +9 -7
  113. package/lib-commonjs/components/Drawer/Drawer.js.map +1 -1
  114. package/lib-commonjs/components/Drawer/index.js +6 -6
  115. package/lib-commonjs/components/Drawer/index.js.map +1 -1
  116. package/lib-commonjs/components/Drawer/renderDrawer.js +8 -6
  117. package/lib-commonjs/components/Drawer/renderDrawer.js.map +1 -1
  118. package/lib-commonjs/components/Drawer/useDrawer.js +15 -13
  119. package/lib-commonjs/components/Drawer/useDrawer.js.map +1 -1
  120. package/lib-commonjs/components/Drawer/useDrawerStyles.styles.js +6 -2
  121. package/lib-commonjs/components/Drawer/useDrawerStyles.styles.js.map +1 -1
  122. package/lib-commonjs/components/DrawerBody/DrawerBody.js +9 -7
  123. package/lib-commonjs/components/DrawerBody/DrawerBody.js.map +1 -1
  124. package/lib-commonjs/components/DrawerBody/index.js +6 -6
  125. package/lib-commonjs/components/DrawerBody/index.js.map +1 -1
  126. package/lib-commonjs/components/DrawerBody/renderDrawerBody.js +7 -6
  127. package/lib-commonjs/components/DrawerBody/renderDrawerBody.js.map +1 -1
  128. package/lib-commonjs/components/DrawerBody/useDrawerBody.js +13 -6
  129. package/lib-commonjs/components/DrawerBody/useDrawerBody.js.map +1 -1
  130. package/lib-commonjs/components/DrawerBody/useDrawerBodyStyles.styles.js +15 -66
  131. package/lib-commonjs/components/DrawerBody/useDrawerBodyStyles.styles.js.map +1 -1
  132. package/lib-commonjs/components/DrawerFooter/DrawerFooter.js +9 -5
  133. package/lib-commonjs/components/DrawerFooter/DrawerFooter.js.map +1 -1
  134. package/lib-commonjs/components/DrawerFooter/index.js +6 -6
  135. package/lib-commonjs/components/DrawerFooter/index.js.map +1 -1
  136. package/lib-commonjs/components/DrawerFooter/renderDrawerFooter.js +7 -6
  137. package/lib-commonjs/components/DrawerFooter/renderDrawerFooter.js.map +1 -1
  138. package/lib-commonjs/components/DrawerFooter/useDrawerFooter.js +9 -5
  139. package/lib-commonjs/components/DrawerFooter/useDrawerFooter.js.map +1 -1
  140. package/lib-commonjs/components/DrawerFooter/useDrawerFooterStyles.styles.js +11 -32
  141. package/lib-commonjs/components/DrawerFooter/useDrawerFooterStyles.styles.js.map +1 -1
  142. package/lib-commonjs/components/DrawerHeader/DrawerHeader.js +9 -7
  143. package/lib-commonjs/components/DrawerHeader/DrawerHeader.js.map +1 -1
  144. package/lib-commonjs/components/DrawerHeader/index.js +6 -6
  145. package/lib-commonjs/components/DrawerHeader/index.js.map +1 -1
  146. package/lib-commonjs/components/DrawerHeader/renderDrawerHeader.js +7 -6
  147. package/lib-commonjs/components/DrawerHeader/renderDrawerHeader.js.map +1 -1
  148. package/lib-commonjs/components/DrawerHeader/useDrawerHeader.js +9 -5
  149. package/lib-commonjs/components/DrawerHeader/useDrawerHeader.js.map +1 -1
  150. package/lib-commonjs/components/DrawerHeader/useDrawerHeaderStyles.styles.js +11 -34
  151. package/lib-commonjs/components/DrawerHeader/useDrawerHeaderStyles.styles.js.map +1 -1
  152. package/lib-commonjs/components/DrawerHeaderNavigation/DrawerHeaderNavigation.js +9 -7
  153. package/lib-commonjs/components/DrawerHeaderNavigation/DrawerHeaderNavigation.js.map +1 -1
  154. package/lib-commonjs/components/DrawerHeaderNavigation/index.js +6 -6
  155. package/lib-commonjs/components/DrawerHeaderNavigation/index.js.map +1 -1
  156. package/lib-commonjs/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.js +7 -6
  157. package/lib-commonjs/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.js.map +1 -1
  158. package/lib-commonjs/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.js +9 -5
  159. package/lib-commonjs/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.js.map +1 -1
  160. package/lib-commonjs/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.js +11 -26
  161. package/lib-commonjs/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.js.map +1 -1
  162. package/lib-commonjs/components/DrawerHeaderTitle/DrawerHeaderTitle.js +9 -7
  163. package/lib-commonjs/components/DrawerHeaderTitle/DrawerHeaderTitle.js.map +1 -1
  164. package/lib-commonjs/components/DrawerHeaderTitle/DrawerHeaderTitle.types.js +0 -2
  165. package/lib-commonjs/components/DrawerHeaderTitle/DrawerHeaderTitle.types.js.map +1 -1
  166. package/lib-commonjs/components/DrawerHeaderTitle/index.js +6 -6
  167. package/lib-commonjs/components/DrawerHeaderTitle/index.js.map +1 -1
  168. package/lib-commonjs/components/DrawerHeaderTitle/renderDrawerHeaderTitle.js +12 -6
  169. package/lib-commonjs/components/DrawerHeaderTitle/renderDrawerHeaderTitle.js.map +1 -1
  170. package/lib-commonjs/components/DrawerHeaderTitle/useDrawerHeaderTitle.js +31 -18
  171. package/lib-commonjs/components/DrawerHeaderTitle/useDrawerHeaderTitle.js.map +1 -1
  172. package/lib-commonjs/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.js +14 -10
  173. package/lib-commonjs/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.js.map +1 -1
  174. package/lib-commonjs/components/InlineDrawer/InlineDrawer.js +24 -0
  175. package/lib-commonjs/components/InlineDrawer/InlineDrawer.js.map +1 -0
  176. package/lib-commonjs/components/InlineDrawer/index.js +10 -0
  177. package/lib-commonjs/components/InlineDrawer/index.js.map +1 -0
  178. package/lib-commonjs/components/InlineDrawer/renderInlineDrawer.js +19 -0
  179. package/lib-commonjs/components/InlineDrawer/renderInlineDrawer.js.map +1 -0
  180. package/lib-commonjs/components/InlineDrawer/useInlineDrawer.js +35 -0
  181. package/lib-commonjs/components/InlineDrawer/useInlineDrawer.js.map +1 -0
  182. package/lib-commonjs/components/InlineDrawer/useInlineDrawerStyles.styles.js +122 -0
  183. package/lib-commonjs/components/InlineDrawer/useInlineDrawerStyles.styles.js.map +1 -0
  184. package/lib-commonjs/components/OverlayDrawer/OverlayDrawer.js +24 -0
  185. package/lib-commonjs/components/OverlayDrawer/OverlayDrawer.js.map +1 -0
  186. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.js +21 -0
  187. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.js.map +1 -0
  188. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/index.js +7 -0
  189. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/index.js.map +1 -0
  190. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.js +46 -0
  191. package/lib-commonjs/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.js.map +1 -0
  192. package/lib-commonjs/components/OverlayDrawer/index.js +10 -0
  193. package/lib-commonjs/components/OverlayDrawer/index.js.map +1 -0
  194. package/lib-commonjs/components/OverlayDrawer/renderOverlayDrawer.js +21 -0
  195. package/lib-commonjs/components/OverlayDrawer/renderOverlayDrawer.js.map +1 -0
  196. package/lib-commonjs/components/OverlayDrawer/useOverlayDrawer.js +59 -0
  197. package/lib-commonjs/components/OverlayDrawer/useOverlayDrawer.js.map +1 -0
  198. package/lib-commonjs/components/OverlayDrawer/useOverlayDrawerStyles.styles.js +112 -0
  199. package/lib-commonjs/components/OverlayDrawer/useOverlayDrawerStyles.styles.js.map +1 -0
  200. package/lib-commonjs/e2e/DrawerShared.js +119 -0
  201. package/lib-commonjs/e2e/DrawerShared.js.map +1 -0
  202. package/lib-commonjs/index.js +125 -46
  203. package/lib-commonjs/index.js.map +1 -1
  204. package/lib-commonjs/shared/DrawerBase.types.js +6 -0
  205. package/lib-commonjs/shared/DrawerBase.types.js.map +1 -0
  206. package/lib-commonjs/shared/useDrawerBaseStyles.styles.js +165 -0
  207. package/lib-commonjs/shared/useDrawerBaseStyles.styles.js.map +1 -0
  208. package/lib-commonjs/shared/useDrawerDefaultProps.js +18 -0
  209. package/lib-commonjs/shared/useDrawerDefaultProps.js.map +1 -0
  210. package/package.json +22 -15
  211. package/CHANGELOG.json +0 -303
  212. package/lib/DrawerInline.js +0 -1
  213. package/lib/DrawerInline.js.map +0 -1
  214. package/lib/DrawerOverlay.js +0 -1
  215. package/lib/DrawerOverlay.js.map +0 -1
  216. package/lib/components/DrawerInline/DrawerInline.js +0 -13
  217. package/lib/components/DrawerInline/DrawerInline.js.map +0 -1
  218. package/lib/components/DrawerInline/DrawerInline.types.js.map +0 -1
  219. package/lib/components/DrawerInline/index.js +0 -5
  220. package/lib/components/DrawerInline/index.js.map +0 -1
  221. package/lib/components/DrawerInline/renderDrawerInline.js +0 -11
  222. package/lib/components/DrawerInline/renderDrawerInline.js.map +0 -1
  223. package/lib/components/DrawerInline/useDrawerInline.js +0 -33
  224. package/lib/components/DrawerInline/useDrawerInline.js.map +0 -1
  225. package/lib/components/DrawerInline/useDrawerInlineStyles.styles.js +0 -43
  226. package/lib/components/DrawerInline/useDrawerInlineStyles.styles.js.map +0 -1
  227. package/lib/components/DrawerOverlay/DrawerOverlay.js +0 -12
  228. package/lib/components/DrawerOverlay/DrawerOverlay.js.map +0 -1
  229. package/lib/components/DrawerOverlay/DrawerOverlay.types.js.map +0 -1
  230. package/lib/components/DrawerOverlay/index.js +0 -5
  231. package/lib/components/DrawerOverlay/index.js.map +0 -1
  232. package/lib/components/DrawerOverlay/renderDrawerOverlay.js +0 -9
  233. package/lib/components/DrawerOverlay/renderDrawerOverlay.js.map +0 -1
  234. package/lib/components/DrawerOverlay/useDrawerOverlay.js +0 -35
  235. package/lib/components/DrawerOverlay/useDrawerOverlay.js.map +0 -1
  236. package/lib/components/DrawerOverlay/useDrawerOverlayStyles.styles.js +0 -33
  237. package/lib/components/DrawerOverlay/useDrawerOverlayStyles.styles.js.map +0 -1
  238. package/lib/util/DrawerBase.types.js.map +0 -1
  239. package/lib/util/getDefaultDrawerProps.js +0 -9
  240. package/lib/util/getDefaultDrawerProps.js.map +0 -1
  241. package/lib/util/useDrawerBaseStyles.styles.js +0 -55
  242. package/lib/util/useDrawerBaseStyles.styles.js.map +0 -1
  243. package/lib-commonjs/DrawerInline.js +0 -6
  244. package/lib-commonjs/DrawerInline.js.map +0 -1
  245. package/lib-commonjs/DrawerOverlay.js +0 -6
  246. package/lib-commonjs/DrawerOverlay.js.map +0 -1
  247. package/lib-commonjs/components/DrawerInline/DrawerInline.js +0 -19
  248. package/lib-commonjs/components/DrawerInline/DrawerInline.js.map +0 -1
  249. package/lib-commonjs/components/DrawerInline/index.js +0 -10
  250. package/lib-commonjs/components/DrawerInline/index.js.map +0 -1
  251. package/lib-commonjs/components/DrawerInline/renderDrawerInline.js +0 -18
  252. package/lib-commonjs/components/DrawerInline/renderDrawerInline.js.map +0 -1
  253. package/lib-commonjs/components/DrawerInline/useDrawerInline.js +0 -34
  254. package/lib-commonjs/components/DrawerInline/useDrawerInline.js.map +0 -1
  255. package/lib-commonjs/components/DrawerInline/useDrawerInlineStyles.styles.js +0 -83
  256. package/lib-commonjs/components/DrawerInline/useDrawerInlineStyles.styles.js.map +0 -1
  257. package/lib-commonjs/components/DrawerOverlay/DrawerOverlay.js +0 -19
  258. package/lib-commonjs/components/DrawerOverlay/DrawerOverlay.js.map +0 -1
  259. package/lib-commonjs/components/DrawerOverlay/index.js +0 -10
  260. package/lib-commonjs/components/DrawerOverlay/index.js.map +0 -1
  261. package/lib-commonjs/components/DrawerOverlay/renderDrawerOverlay.js +0 -16
  262. package/lib-commonjs/components/DrawerOverlay/renderDrawerOverlay.js.map +0 -1
  263. package/lib-commonjs/components/DrawerOverlay/useDrawerOverlay.js +0 -36
  264. package/lib-commonjs/components/DrawerOverlay/useDrawerOverlay.js.map +0 -1
  265. package/lib-commonjs/components/DrawerOverlay/useDrawerOverlayStyles.styles.js +0 -47
  266. package/lib-commonjs/components/DrawerOverlay/useDrawerOverlayStyles.styles.js.map +0 -1
  267. package/lib-commonjs/util/getDefaultDrawerProps.js +0 -17
  268. package/lib-commonjs/util/getDefaultDrawerProps.js.map +0 -1
  269. package/lib-commonjs/util/useDrawerBaseStyles.styles.js +0 -125
  270. package/lib-commonjs/util/useDrawerBaseStyles.styles.js.map +0 -1
  271. /package/lib/components/{DrawerInline/DrawerInline.types.js → InlineDrawer/InlineDrawer.types.js} +0 -0
  272. /package/lib/components/{DrawerOverlay/DrawerOverlay.types.js → OverlayDrawer/OverlayDrawer.types.js} +0 -0
  273. /package/lib/{util/DrawerBase.types.js → components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.js} +0 -0
  274. /package/lib-commonjs/components/{DrawerInline/DrawerInline.types.js → InlineDrawer/InlineDrawer.types.js} +0 -0
  275. /package/lib-commonjs/components/{DrawerInline/DrawerInline.types.js.map → InlineDrawer/InlineDrawer.types.js.map} +0 -0
  276. /package/lib-commonjs/components/{DrawerOverlay/DrawerOverlay.types.js → OverlayDrawer/OverlayDrawer.types.js} +0 -0
  277. /package/lib-commonjs/components/{DrawerOverlay/DrawerOverlay.types.js.map → OverlayDrawer/OverlayDrawer.types.js.map} +0 -0
  278. /package/lib-commonjs/{util/DrawerBase.types.js → components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.js} +0 -0
  279. /package/lib-commonjs/{util/DrawerBase.types.js.map → components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.js.map} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,12 +1,426 @@
1
1
  # Change Log - @fluentui/react-drawer
2
2
 
3
- This log was last generated on Thu, 20 Jul 2023 18:24:27 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 09 Nov 2023 17:23:04 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0)
8
+
9
+ Thu, 09 Nov 2023 17:23:04 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.41..@fluentui/react-drawer_v9.0.0)
11
+
12
+ ### Minor changes
13
+
14
+ - chore: Export missing useDrawerStyles_unstable. ([PR #29768](https://github.com/microsoft/fluentui/pull/29768) by Humberto.Morimoto@microsoft.com)
15
+ - Bump @fluentui/react-dialog to v9.8.4 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
16
+ - Bump @fluentui/react-jsx-runtime to v9.0.19 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
17
+ - Bump @fluentui/react-motion-preview to v0.5.1 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
18
+ - Bump @fluentui/react-shared-contexts to v9.12.0 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
19
+ - Bump @fluentui/react-tabster to v9.14.4 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
20
+ - Bump @fluentui/react-theme to v9.1.16 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
21
+ - Bump @fluentui/react-utilities to v9.15.2 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
22
+
23
+ ### Patches
24
+
25
+ - feat: release stable 9.0.0 ([PR #29711](https://github.com/microsoft/fluentui/pull/29711) by marcosvmmoura@gmail.com)
26
+
27
+ ## [9.0.0-beta.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.41)
28
+
29
+ Mon, 06 Nov 2023 13:16:04 GMT
30
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.40..@fluentui/react-drawer_v9.0.0-beta.41)
31
+
32
+ ### Changes
33
+
34
+ - Bump @fluentui/react-dialog to v9.8.3 ([PR #29755](https://github.com/microsoft/fluentui/pull/29755) by beachball)
35
+
36
+ ## [9.0.0-beta.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.40)
37
+
38
+ Thu, 02 Nov 2023 17:38:45 GMT
39
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.39..@fluentui/react-drawer_v9.0.0-beta.40)
40
+
41
+ ### Changes
42
+
43
+ - breaking: open prop now only accepts a boolean instead of MotionShorthand ([PR #29736](https://github.com/microsoft/fluentui/pull/29736) by marcosvmmoura@gmail.com)
44
+
45
+ ## [9.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.39)
46
+
47
+ Wed, 01 Nov 2023 12:55:59 GMT
48
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.38..@fluentui/react-drawer_v9.0.0-beta.39)
49
+
50
+ ### Changes
51
+
52
+ - Bump @fluentui/react-dialog to v9.8.2 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
53
+ - Bump @fluentui/react-motion-preview to v0.5.0 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
54
+ - Bump @fluentui/react-shared-contexts to v9.11.1 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
55
+ - Bump @fluentui/react-tabster to v9.14.3 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
56
+ - Bump @fluentui/react-theme to v9.1.15 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
57
+
58
+ ## [9.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.38)
59
+
60
+ Sat, 28 Oct 2023 23:35:56 GMT
61
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.37..@fluentui/react-drawer_v9.0.0-beta.38)
62
+
63
+ ### Changes
64
+
65
+ - fix: regression with mountNode prop not available after refactor ([PR #29524](https://github.com/microsoft/fluentui/pull/29524) by marcosvmmoura@gmail.com)
66
+ - feat: use useMotionClassNames to create drawer motion styles ([PR #29662](https://github.com/microsoft/fluentui/pull/29662) by marcosvmmoura@gmail.com)
67
+ - BREAKING CHANGE: rename main DrawerOverlay/DrawerInline components ([PR #29523](https://github.com/microsoft/fluentui/pull/29523) by marcosvmmoura@gmail.com)
68
+ - fix: improve high contrast mode ([PR #29627](https://github.com/microsoft/fluentui/pull/29627) by marcosvmmoura@gmail.com)
69
+ - docs: add example on how to implement multiple levels inside one drawer ([PR #29665](https://github.com/microsoft/fluentui/pull/29665) by marcosvmmoura@gmail.com)
70
+ - Bump @fluentui/react-dialog to v9.8.1 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
71
+ - Bump @fluentui/react-motion-preview to v0.4.0 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
72
+ - Bump @fluentui/react-shared-contexts to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
73
+ - Bump @fluentui/react-tabster to v9.14.2 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
74
+
75
+ ## [9.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.37)
76
+
77
+ Mon, 23 Oct 2023 09:51:57 GMT
78
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.36..@fluentui/react-drawer_v9.0.0-beta.37)
79
+
80
+ ### Changes
81
+
82
+ - Bump @fluentui/react-dialog to v9.8.0 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
83
+ - Bump @fluentui/react-tabster to v9.14.1 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
84
+
85
+ ## [9.0.0-beta.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.36)
86
+
87
+ Wed, 18 Oct 2023 17:54:08 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.35..@fluentui/react-drawer_v9.0.0-beta.36)
89
+
90
+ ### Changes
91
+
92
+ - Bump @fluentui/react-dialog to v9.7.10 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
93
+ - Bump @fluentui/react-jsx-runtime to v9.0.18 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
94
+ - Bump @fluentui/react-motion-preview to v0.3.4 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
95
+ - Bump @fluentui/react-tabster to v9.14.0 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
96
+ - Bump @fluentui/react-utilities to v9.15.1 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
97
+
98
+ ## [9.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.35)
99
+
100
+ Thu, 12 Oct 2023 14:55:43 GMT
101
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.34..@fluentui/react-drawer_v9.0.0-beta.35)
102
+
103
+ ### Changes
104
+
105
+ - chore: migrate from getNativeElementProps for getIntrinsicElementProps ([PR #29498](https://github.com/microsoft/fluentui/pull/29498) by bernardo.sunderhus@gmail.com)
106
+ - Bump @fluentui/react-dialog to v9.7.9 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
107
+ - Bump @fluentui/react-jsx-runtime to v9.0.17 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
108
+ - Bump @fluentui/react-motion-preview to v0.3.3 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
109
+
110
+ ## [9.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.34)
111
+
112
+ Wed, 11 Oct 2023 13:54:26 GMT
113
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.33..@fluentui/react-drawer_v9.0.0-beta.34)
114
+
115
+ ### Changes
116
+
117
+ - Bump @fluentui/react-dialog to v9.7.8 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
118
+ - Bump @fluentui/react-jsx-runtime to v9.0.16 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
119
+ - Bump @fluentui/react-motion-preview to v0.3.2 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
120
+ - Bump @fluentui/react-tabster to v9.13.6 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
121
+ - Bump @fluentui/react-utilities to v9.15.0 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
122
+
123
+ ## [9.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.33)
124
+
125
+ Mon, 09 Oct 2023 20:45:41 GMT
126
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.32..@fluentui/react-drawer_v9.0.0-beta.33)
127
+
128
+ ### Changes
129
+
130
+ - feat: make dialog slot internal to be used for composition only ([PR #29392](https://github.com/microsoft/fluentui/pull/29392) by marcosvmmoura@gmail.com)
131
+ - Bump @fluentui/react-dialog to v9.7.7 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
132
+ - Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
133
+ - Bump @fluentui/react-motion-preview to v0.3.1 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
134
+ - Bump @fluentui/react-shared-contexts to v9.10.0 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
135
+ - Bump @fluentui/react-tabster to v9.13.5 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
136
+ - Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
137
+
138
+ ## [9.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.32)
139
+
140
+ Thu, 05 Oct 2023 15:25:35 GMT
141
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.31..@fluentui/react-drawer_v9.0.0-beta.32)
142
+
143
+ ### Changes
144
+
145
+ - Bump @fluentui/react-dialog to v9.7.6 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
146
+ - Bump @fluentui/react-jsx-runtime to v9.0.14 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
147
+ - Bump @fluentui/react-motion-preview to v0.3.0 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
148
+ - Bump @fluentui/react-utilities to v9.14.1 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
149
+
150
+ ## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.31)
151
+
152
+ Wed, 04 Oct 2023 08:45:47 GMT
153
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.30..@fluentui/react-drawer_v9.0.0-beta.31)
154
+
155
+ ### Changes
156
+
157
+ - Bump @fluentui/react-dialog to v9.7.5 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
158
+ - Bump @fluentui/react-jsx-runtime to v9.0.13 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
159
+ - Bump @fluentui/react-motion-preview to v0.2.10 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
160
+ - Bump @fluentui/react-utilities to v9.14.0 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
161
+
162
+ ## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.30)
163
+
164
+ Mon, 02 Oct 2023 08:56:05 GMT
165
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.29..@fluentui/react-drawer_v9.0.0-beta.30)
166
+
167
+ ### Changes
168
+
169
+ - Bump @fluentui/react-dialog to v9.7.4 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
170
+ - Bump @fluentui/react-motion-preview to v0.2.9 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
171
+ - Bump @fluentui/react-shared-contexts to v9.9.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
172
+
173
+ ## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.29)
174
+
175
+ Tue, 26 Sep 2023 17:49:05 GMT
176
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.28..@fluentui/react-drawer_v9.0.0-beta.29)
177
+
178
+ ### Changes
179
+
180
+ - chore: trigger manual version bump after broken release ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by yuanboxue@microsoft.com)
181
+ - Bump @fluentui/react-dialog to v9.7.3 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
182
+ - Bump @fluentui/react-jsx-runtime to v9.0.12 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
183
+ - Bump @fluentui/react-motion-preview to v0.2.8 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
184
+ - Bump @fluentui/react-shared-contexts to v9.9.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
185
+ - Bump @fluentui/react-theme to v9.1.14 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
186
+ - Bump @fluentui/react-utilities to v9.13.5 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
187
+
188
+ ## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.28)
189
+
190
+ Tue, 26 Sep 2023 15:31:59 GMT
191
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.27..@fluentui/react-drawer_v9.0.0-beta.28)
192
+
193
+ ### Changes
194
+
195
+ - fix: improve performance of CSS classes ([PR #29263](https://github.com/microsoft/fluentui/pull/29263) by marcosvmmoura@gmail.com)
196
+ - fix: resolve technical debts ([PR #29272](https://github.com/microsoft/fluentui/pull/29272) by marcosvmmoura@gmail.com)
197
+ - fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com)
198
+ - fix: use context to fetch dialog id ([PR #29273](https://github.com/microsoft/fluentui/pull/29273) by marcosvmmoura@gmail.com)
199
+ - fix: remove defaultOpen prop from DrawerInline as it had no effect ([PR #29274](https://github.com/microsoft/fluentui/pull/29274) by marcosvmmoura@gmail.com)
200
+ - feat: add dialog slot ([PR #29217](https://github.com/microsoft/fluentui/pull/29217) by marcosvmmoura@gmail.com)
201
+ - Bump @fluentui/react-dialog to v9.7.2 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
202
+ - Bump @fluentui/react-jsx-runtime to v9.0.11 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
203
+ - Bump @fluentui/react-motion-preview to v0.2.7 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
204
+ - Bump @fluentui/react-shared-contexts to v9.9.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
205
+ - Bump @fluentui/react-theme to v9.1.13 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
206
+ - Bump @fluentui/react-utilities to v9.13.4 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
207
+
208
+ ## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.27)
209
+
210
+ Wed, 20 Sep 2023 17:47:37 GMT
211
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.26..@fluentui/react-drawer_v9.0.0-beta.27)
212
+
213
+ ### Changes
214
+
215
+ - chore: trigger manual version bump after broken release ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by martinhochel@microsoft.com)
216
+ - Bump @fluentui/react-dialog to v9.7.1 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
217
+ - Bump @fluentui/react-jsx-runtime to v9.0.10 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
218
+ - Bump @fluentui/react-motion-preview to v0.2.6 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
219
+ - Bump @fluentui/react-shared-contexts to v9.8.1 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
220
+
221
+ ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.26)
222
+
223
+ Wed, 20 Sep 2023 14:59:52 GMT
224
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.25..@fluentui/react-drawer_v9.0.0-beta.26)
225
+
226
+ ### Changes
227
+
228
+ - feat: add custom styling hooks for Drawer subcomponents ([PR #29041](https://github.com/microsoft/fluentui/pull/29041) by marcosvmmoura@gmail.com)
229
+ - fix: use dialog id for drawer title heading element ([PR #29163](https://github.com/microsoft/fluentui/pull/29163) by marcosvmmoura@gmail.com)
230
+ - Bump @fluentui/react-dialog to v9.7.0 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
231
+ - Bump @fluentui/react-jsx-runtime to v9.0.9 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
232
+ - Bump @fluentui/react-motion-preview to v0.2.5 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
233
+ - Bump @fluentui/react-shared-contexts to v9.8.0 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
234
+
235
+ ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.25)
236
+
237
+ Thu, 14 Sep 2023 16:44:47 GMT
238
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.24..@fluentui/react-drawer_v9.0.0-beta.25)
239
+
240
+ ### Changes
241
+
242
+ - Bump @fluentui/react-dialog to v9.6.5 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
243
+ - Bump @fluentui/react-jsx-runtime to v9.0.8 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
244
+ - Bump @fluentui/react-motion-preview to v0.2.4 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
245
+
246
+ ## [9.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.24)
247
+
248
+ Tue, 12 Sep 2023 08:51:34 GMT
249
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.23..@fluentui/react-drawer_v9.0.0-beta.24)
250
+
251
+ ### Changes
252
+
253
+ - Bump @fluentui/react-dialog to v9.6.4 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
254
+ - Bump @fluentui/react-jsx-runtime to v9.0.7 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
255
+ - Bump @fluentui/react-motion-preview to v0.2.3 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
256
+
257
+ ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.23)
258
+
259
+ Wed, 06 Sep 2023 13:31:31 GMT
260
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.22..@fluentui/react-drawer_v9.0.0-beta.23)
261
+
262
+ ### Changes
263
+
264
+ - Bump @fluentui/react-dialog to v9.6.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
265
+ - Bump @fluentui/react-jsx-runtime to v9.0.6 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
266
+ - Bump @fluentui/react-motion-preview to v0.2.2 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
267
+ - Bump @fluentui/react-utilities to v9.13.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
268
+
269
+ ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.22)
270
+
271
+ Tue, 05 Sep 2023 15:39:03 GMT
272
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.21..@fluentui/react-drawer_v9.0.0-beta.22)
273
+
274
+ ### Changes
275
+
276
+ - refactor: organize code imports ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by marcosvmmoura@gmail.com)
277
+ - test: add e2e tests for base Drawer components ([PR #29029](https://github.com/microsoft/fluentui/pull/29029) by marcosvmmoura@gmail.com)
278
+ - Bump @fluentui/react-dialog to v9.6.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
279
+ - Bump @fluentui/react-jsx-runtime to v9.0.5 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
280
+ - Bump @fluentui/react-motion-preview to v0.2.1 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
281
+ - Bump @fluentui/react-utilities to v9.13.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
282
+
283
+ ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.21)
284
+
285
+ Tue, 05 Sep 2023 13:29:22 GMT
286
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.20..@fluentui/react-drawer_v9.0.0-beta.21)
287
+
288
+ ### Changes
289
+
290
+ - fix: refactor DrawerHeaderTitle slot creation while keeping the same API ([PR #29042](https://github.com/microsoft/fluentui/pull/29042) by marcosvmmoura@gmail.com)
291
+ - chore: migrate package to use JSX importSource ([PR #28959](https://github.com/microsoft/fluentui/pull/28959) by bernardo.sunderhus@gmail.com)
292
+ - bumps @swc/helpers version to 0.5.1 ([PR #28989](https://github.com/microsoft/fluentui/pull/28989) by bernardo.sunderhus@gmail.com)
293
+ - test: add simple renderization tests for sub components ([PR #29043](https://github.com/microsoft/fluentui/pull/29043) by marcosvmmoura@gmail.com)
294
+ - feat: add motion for Drawer ([PR #28999](https://github.com/microsoft/fluentui/pull/28999) by marcosvmmoura@gmail.com)
295
+ - Bump @fluentui/react-dialog to v9.6.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
296
+ - Bump @fluentui/react-jsx-runtime to v9.0.4 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
297
+ - Bump @fluentui/react-motion-preview to v0.2.0 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
298
+ - Bump @fluentui/react-shared-contexts to v9.7.3 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
299
+ - Bump @fluentui/react-theme to v9.1.12 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
300
+ - Bump @fluentui/react-utilities to v9.13.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
301
+
302
+ ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.20)
303
+
304
+ Tue, 29 Aug 2023 12:57:36 GMT
305
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.19..@fluentui/react-drawer_v9.0.0-beta.20)
306
+
307
+ ### Changes
308
+
309
+ - Bump @fluentui/react-dialog to v9.6.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
310
+ - Bump @fluentui/react-jsx-runtime to v9.0.3 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
311
+ - Bump @fluentui/react-utilities to v9.13.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
312
+
313
+ ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.19)
314
+
315
+ Thu, 24 Aug 2023 10:26:35 GMT
316
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.18..@fluentui/react-drawer_v9.0.0-beta.19)
317
+
318
+ ### Changes
319
+
320
+ - Bump @fluentui/react-dialog to v9.5.26 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
321
+ - Bump @fluentui/react-jsx-runtime to v9.0.2 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
322
+ - Bump @fluentui/react-utilities to v9.12.0 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
323
+
324
+ ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.18)
325
+
326
+ Wed, 23 Aug 2023 12:01:49 GMT
327
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.17..@fluentui/react-drawer_v9.0.0-beta.18)
328
+
329
+ ### Changes
330
+
331
+ - Bump @fluentui/react-dialog to v9.5.25 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
332
+ - Bump @fluentui/react-jsx-runtime to v9.0.1 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
333
+ - Bump @fluentui/react-utilities to v9.11.2 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
334
+
335
+ ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.17)
336
+
337
+ Mon, 21 Aug 2023 11:38:00 GMT
338
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.16..@fluentui/react-drawer_v9.0.0-beta.17)
339
+
340
+ ### Changes
341
+
342
+ - fix: rename values of position prop from left/right to start/end ([PR #28905](https://github.com/microsoft/fluentui/pull/28905) by marcosvmmoura@gmail.com)
343
+
344
+ ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.16)
345
+
346
+ Wed, 16 Aug 2023 17:41:08 GMT
347
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.15..@fluentui/react-drawer_v9.0.0-beta.16)
348
+
349
+ ### Changes
350
+
351
+ - Bump @fluentui/react-dialog to v9.5.24 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
352
+ - Bump @fluentui/react-jsx-runtime to v9.0.0 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
353
+
354
+ ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.15)
355
+
356
+ Wed, 16 Aug 2023 11:38:33 GMT
357
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.14..@fluentui/react-drawer_v9.0.0-beta.15)
358
+
359
+ ### Changes
360
+
361
+ - Bump @fluentui/react-dialog to v9.5.23 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
362
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.16 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
363
+
364
+ ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.14)
365
+
366
+ Fri, 11 Aug 2023 12:14:26 GMT
367
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.13..@fluentui/react-drawer_v9.0.0-beta.14)
368
+
369
+ ### Changes
370
+
371
+ - Bump @fluentui/react-dialog to v9.5.22 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
372
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.15 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
373
+ - Bump @fluentui/react-utilities to v9.11.1 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
374
+
375
+ ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.13)
376
+
377
+ Wed, 09 Aug 2023 13:16:55 GMT
378
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.12..@fluentui/react-drawer_v9.0.0-beta.13)
379
+
380
+ ### Changes
381
+
382
+ - chore: Update Griffel to latest version ([PR #28684](https://github.com/microsoft/fluentui/pull/28684) by olfedias@microsoft.com)
383
+ - chore(cxe-prg): migrate to new slot API ([PR #28752](https://github.com/microsoft/fluentui/pull/28752) by bernardo.sunderhus@gmail.com)
384
+ - Bump @fluentui/react-dialog to v9.5.21 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
385
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.14 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
386
+ - Bump @fluentui/react-shared-contexts to v9.7.2 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
387
+ - Bump @fluentui/react-theme to v9.1.11 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
388
+
389
+ ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.12)
390
+
391
+ Fri, 04 Aug 2023 08:52:58 GMT
392
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.11..@fluentui/react-drawer_v9.0.0-beta.12)
393
+
394
+ ### Changes
395
+
396
+ - Bump @fluentui/react-dialog to v9.5.20 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
397
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
398
+ - Bump @fluentui/react-shared-contexts to v9.7.1 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
399
+ - Bump @fluentui/react-theme to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
400
+ - Bump @fluentui/react-utilities to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
401
+
402
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.11)
403
+
404
+ Tue, 01 Aug 2023 10:17:21 GMT
405
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.10..@fluentui/react-drawer_v9.0.0-beta.11)
406
+
407
+ ### Changes
408
+
409
+ - Bump @fluentui/react-dialog to v9.5.19 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
410
+ - Bump @fluentui/react-shared-contexts to v9.7.0 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
411
+
412
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.10)
413
+
414
+ Tue, 25 Jul 2023 13:29:23 GMT
415
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.9..@fluentui/react-drawer_v9.0.0-beta.10)
416
+
417
+ ### Changes
418
+
419
+ - Bump @fluentui/react-dialog to v9.5.18 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
420
+
7
421
  ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.0-beta.9)
8
422
 
9
- Thu, 20 Jul 2023 18:24:27 GMT
423
+ Thu, 20 Jul 2023 18:27:36 GMT
10
424
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.0-beta.8..@fluentui/react-drawer_v9.0.0-beta.9)
11
425
 
12
426
  ### Changes
package/README.md CHANGED
@@ -12,8 +12,9 @@ To import React Drawer components:
12
12
 
13
13
  ```tsx
14
14
  import {
15
- DrawerOverlay,
16
- DrawerInline,
15
+ Drawer,
16
+ OverlayDrawer,
17
+ InlineDrawer,
17
18
  DrawerHeader,
18
19
  DrawerHeaderTitle,
19
20
  DrawerHeaderNavigation,
@@ -24,7 +25,7 @@ import {
24
25
  Simple example of Drawer Usage:
25
26
 
26
27
  ```tsx
27
- import { DrawerBody, DrawerHeader, DrawerHeaderTitle, Drawer } from '@fluentui/react-drawer';
28
+ import { DrawerBody, DrawerHeader, DrawerHeaderTitle, Drawer } from '@fluentui/react-components';
28
29
  import { Button } from '@fluentui/react-components';
29
30
  import { Dismiss24Regular } from '@fluentui/react-icons';
30
31
 
@@ -58,4 +59,4 @@ See the [Spec.md](./docs/Spec.md) file for background information on the design/
58
59
 
59
60
  ## API
60
61
 
61
- For information about the components, please refer to the [API documentation](https://react.fluentui.dev/?path=/docs/preview-components-drawer--default).
62
+ For information about the components, please refer to the [API documentation](https://react.fluentui.dev/?path=/docs/components-drawer--default).