@fluentui/react-drawer 9.0.0-beta.4 → 9.0.0-beta.40

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