@fluentui/react-drawer 9.0.0-beta.9 → 9.0.1

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