@fluentui/react-drawer 9.0.2 → 9.0.4

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.
package/CHANGELOG.md CHANGED
@@ -1,12 +1,39 @@
1
1
  # Change Log - @fluentui/react-drawer
2
2
 
3
- This log was last generated on Mon, 20 Nov 2023 09:51:22 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 14 Dec 2023 09:51:34 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.4)
8
+
9
+ Thu, 14 Dec 2023 09:51:34 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.3..@fluentui/react-drawer_v9.0.4)
11
+
12
+ ### Patches
13
+
14
+ - fix: OverlayDrawer accepts mountNode in types ([PR #29871](https://github.com/microsoft/fluentui/pull/29871) by sarah.higley@microsoft.com)
15
+ - Bump @fluentui/react-dialog to v9.9.0 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
16
+ - Bump @fluentui/react-jsx-runtime to v9.0.21 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
17
+ - Bump @fluentui/react-motion-preview to v0.5.4 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
18
+ - Bump @fluentui/react-shared-contexts to v9.13.1 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
19
+ - Bump @fluentui/react-tabster to v9.15.1 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
20
+ - Bump @fluentui/react-utilities to v9.15.3 ([commit](https://github.com/microsoft/fluentui/commit/80a1b02be2fbbdde916ac87fbf760e442a2295c4) by beachball)
21
+
22
+ ## [9.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.3)
23
+
24
+ Thu, 30 Nov 2023 13:42:08 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.2..@fluentui/react-drawer_v9.0.3)
26
+
27
+ ### Patches
28
+
29
+ - Bump @fluentui/react-dialog to v9.8.7 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball)
30
+ - Bump @fluentui/react-jsx-runtime to v9.0.20 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball)
31
+ - Bump @fluentui/react-motion-preview to v0.5.3 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball)
32
+ - Bump @fluentui/react-tabster to v9.15.0 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball)
33
+
7
34
  ## [9.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-drawer_v9.0.2)
8
35
 
9
- Mon, 20 Nov 2023 09:51:22 GMT
36
+ Mon, 20 Nov 2023 09:55:10 GMT
10
37
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-drawer_v9.0.1..@fluentui/react-drawer_v9.0.2)
11
38
 
12
39
  ### Patches
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@
3
3
  import type { ComponentProps } from '@fluentui/react-utilities';
4
4
  import type { ComponentState } from '@fluentui/react-utilities';
5
5
  import type { DialogProps } from '@fluentui/react-dialog';
6
+ import type { DialogSurfaceProps } from '@fluentui/react-dialog';
6
7
  import type { DialogSurfaceSlots } from '@fluentui/react-dialog';
7
8
  import type { ForwardRefComponent } from '@fluentui/react-utilities';
8
9
  import * as React_2 from 'react';
@@ -287,7 +288,7 @@ export declare type OverlayDrawerState = Omit<ComponentState<OverlayDrawerIntern
287
288
  /**
288
289
  * OverlayDrawerSurface Props
289
290
  */
290
- declare type OverlayDrawerSurfaceProps = ComponentProps<OverlayDrawerSurfaceSlots>;
291
+ declare type OverlayDrawerSurfaceProps = DialogSurfaceProps;
291
292
 
292
293
  /**
293
294
  * OverlayDrawerSurface slots
@@ -1 +1 @@
1
- {"version":3,"sources":["OverlayDrawerSurface.types.ts"],"sourcesContent":["import type { DialogSurfaceSlots, DialogSurfaceState } from '@fluentui/react-dialog';\nimport type { ComponentProps, ComponentState } from '@fluentui/react-utilities';\n\n/**\n * OverlayDrawerSurface slots\n */\nexport type OverlayDrawerSurfaceSlots = DialogSurfaceSlots;\n\n/**\n * OverlayDrawerSurface Props\n */\nexport type OverlayDrawerSurfaceProps = ComponentProps<OverlayDrawerSurfaceSlots>;\n\n/**\n * State used in rendering OverlayDrawerSurface\n */\nexport type OverlayDrawerSurfaceState = ComponentState<OverlayDrawerSurfaceSlots> & DialogSurfaceState;\n"],"names":[],"mappings":"AAAA,WAgBuG"}
1
+ {"version":3,"sources":["OverlayDrawerSurface.types.ts"],"sourcesContent":["import type { DialogSurfaceProps, DialogSurfaceSlots, DialogSurfaceState } from '@fluentui/react-dialog';\nimport type { ComponentState } from '@fluentui/react-utilities';\n\n/**\n * OverlayDrawerSurface slots\n */\nexport type OverlayDrawerSurfaceSlots = DialogSurfaceSlots;\n\n/**\n * OverlayDrawerSurface Props\n */\nexport type OverlayDrawerSurfaceProps = DialogSurfaceProps;\n\n/**\n * State used in rendering OverlayDrawerSurface\n */\nexport type OverlayDrawerSurfaceState = ComponentState<OverlayDrawerSurfaceSlots> & DialogSurfaceState;\n"],"names":[],"mappings":"AAAA,WAgBuG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-drawer",
3
- "version": "9.0.2",
3
+ "version": "9.0.4",
4
4
  "description": "Drawer components for Fluent UI React",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -35,13 +35,13 @@
35
35
  "@fluentui/scripts-cypress": "*"
36
36
  },
37
37
  "dependencies": {
38
- "@fluentui/react-dialog": "^9.8.6",
39
- "@fluentui/react-jsx-runtime": "^9.0.19",
40
- "@fluentui/react-motion-preview": "^0.5.2",
41
- "@fluentui/react-shared-contexts": "^9.13.0",
42
- "@fluentui/react-tabster": "^9.14.6",
38
+ "@fluentui/react-dialog": "^9.9.0",
39
+ "@fluentui/react-jsx-runtime": "^9.0.21",
40
+ "@fluentui/react-motion-preview": "^0.5.4",
41
+ "@fluentui/react-shared-contexts": "^9.13.1",
42
+ "@fluentui/react-tabster": "^9.15.1",
43
43
  "@fluentui/react-theme": "^9.1.16",
44
- "@fluentui/react-utilities": "^9.15.2",
44
+ "@fluentui/react-utilities": "^9.15.3",
45
45
  "@griffel/react": "^1.5.14",
46
46
  "@swc/helpers": "^0.5.1"
47
47
  },