@fluentui/react-divider 9.2.11 → 9.2.13

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.json CHANGED
@@ -2,7 +2,65 @@
2
2
  "name": "@fluentui/react-divider",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 12 May 2023 20:21:46 GMT",
5
+ "date": "Wed, 24 May 2023 20:42:38 GMT",
6
+ "tag": "@fluentui/react-divider_v9.2.13",
7
+ "version": "9.2.13",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-divider",
13
+ "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
14
+ "comment": "chore: update test-ssr script"
15
+ }
16
+ ],
17
+ "patch": [
18
+ {
19
+ "author": "bernardo.sunderhus@gmail.com",
20
+ "package": "@fluentui/react-divider",
21
+ "commit": "ebd932a81bfc84a048d74f3696a2596f188f936f",
22
+ "comment": "bugfix: wrapper slot type to NonNullable"
23
+ },
24
+ {
25
+ "author": "beachball",
26
+ "package": "@fluentui/react-divider",
27
+ "comment": "Bump @fluentui/react-shared-contexts to v9.5.0",
28
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
29
+ }
30
+ ]
31
+ }
32
+ },
33
+ {
34
+ "date": "Thu, 18 May 2023 00:39:06 GMT",
35
+ "tag": "@fluentui/react-divider_v9.2.12",
36
+ "version": "9.2.12",
37
+ "comments": {
38
+ "none": [
39
+ {
40
+ "author": "olfedias@microsoft.com",
41
+ "package": "@fluentui/react-divider",
42
+ "commit": "06cd515eda59a3078bfe32f9cc7c1f281cd20208",
43
+ "comment": "chore: add test-ssr script to v9 packages"
44
+ }
45
+ ],
46
+ "patch": [
47
+ {
48
+ "author": "beachball",
49
+ "package": "@fluentui/react-divider",
50
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4",
51
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
52
+ },
53
+ {
54
+ "author": "beachball",
55
+ "package": "@fluentui/react-divider",
56
+ "comment": "Bump @fluentui/react-utilities to v9.9.0",
57
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
58
+ }
59
+ ]
60
+ }
61
+ },
62
+ {
63
+ "date": "Fri, 12 May 2023 20:27:17 GMT",
6
64
  "tag": "@fluentui/react-divider_v9.2.11",
7
65
  "version": "9.2.11",
8
66
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,32 @@
1
1
  # Change Log - @fluentui/react-divider
2
2
 
3
- This log was last generated on Fri, 12 May 2023 20:21:46 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 24 May 2023 20:42:38 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.2.13)
8
+
9
+ Wed, 24 May 2023 20:42:38 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.2.12..@fluentui/react-divider_v9.2.13)
11
+
12
+ ### Patches
13
+
14
+ - bugfix: wrapper slot type to NonNullable ([PR #27928](https://github.com/microsoft/fluentui/pull/27928) by bernardo.sunderhus@gmail.com)
15
+ - Bump @fluentui/react-shared-contexts to v9.5.0 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball)
16
+
17
+ ## [9.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.2.12)
18
+
19
+ Thu, 18 May 2023 00:39:06 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.2.11..@fluentui/react-divider_v9.2.12)
21
+
22
+ ### Patches
23
+
24
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
25
+ - Bump @fluentui/react-utilities to v9.9.0 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
26
+
7
27
  ## [9.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.2.11)
8
28
 
9
- Fri, 12 May 2023 20:21:46 GMT
29
+ Fri, 12 May 2023 20:27:17 GMT
10
30
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.2.10..@fluentui/react-divider_v9.2.11)
11
31
 
12
32
  ### Patches
package/dist/index.d.ts CHANGED
@@ -44,11 +44,11 @@ export declare type DividerSlots = {
44
44
  /**
45
45
  * Root of the component that renders as a `<div>` tag.
46
46
  */
47
- root: Slot<'div'>;
47
+ root: NonNullable<Slot<'div'>>;
48
48
  /**
49
49
  * Accessibility wrapper for content when presented.
50
50
  */
51
- wrapper: Slot<'div'>;
51
+ wrapper: NonNullable<Slot<'div'>>;
52
52
  };
53
53
 
54
54
  export declare type DividerState = ComponentState<DividerSlots> & Required<Pick<DividerProps, 'alignContent' | 'appearance' | 'inset' | 'vertical'>>;
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["../../../src/components/Divider/Divider.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type DividerSlots = {\n /**\n * Root of the component that renders as a `<div>` tag.\n */\n root: Slot<'div'>;\n\n /**\n * Accessibility wrapper for content when presented.\n */\n wrapper: Slot<'div'>;\n};\n\nexport type DividerProps = ComponentProps<Partial<DividerSlots>> & {\n /**\n * Determines the alignment of the content within the divider.\n *\n * @default 'center'\n */\n alignContent?: 'start' | 'center' | 'end';\n\n /**\n * A divider can have one of the preset appearances.\n * When not specified, the divider has its default appearance.\n *\n * @default 'default'\n */\n appearance?: 'brand' | 'default' | 'strong' | 'subtle';\n\n /**\n * Adds padding to the beginning and end of the divider.\n *\n * @default false\n */\n inset?: boolean;\n\n /**\n * A divider can be horizontal (default) or vertical.\n *\n * @default false\n */\n vertical?: boolean;\n};\n\nexport type DividerState = ComponentState<DividerSlots> &\n Required<Pick<DividerProps, 'alignContent' | 'appearance' | 'inset' | 'vertical'>>;\n"],"mappings":"AAAA"}
1
+ {"version":3,"names":[],"sources":["../../../src/components/Divider/Divider.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type DividerSlots = {\n /**\n * Root of the component that renders as a `<div>` tag.\n */\n root: NonNullable<Slot<'div'>>;\n\n /**\n * Accessibility wrapper for content when presented.\n */\n wrapper: NonNullable<Slot<'div'>>;\n};\n\nexport type DividerProps = ComponentProps<Partial<DividerSlots>> & {\n /**\n * Determines the alignment of the content within the divider.\n *\n * @default 'center'\n */\n alignContent?: 'start' | 'center' | 'end';\n\n /**\n * A divider can have one of the preset appearances.\n * When not specified, the divider has its default appearance.\n *\n * @default 'default'\n */\n appearance?: 'brand' | 'default' | 'strong' | 'subtle';\n\n /**\n * Adds padding to the beginning and end of the divider.\n *\n * @default false\n */\n inset?: boolean;\n\n /**\n * A divider can be horizontal (default) or vertical.\n *\n * @default false\n */\n vertical?: boolean;\n};\n\nexport type DividerState = ComponentState<DividerSlots> &\n Required<Pick<DividerProps, 'alignContent' | 'appearance' | 'inset' | 'vertical'>>;\n"],"mappings":"AAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-divider",
3
- "version": "9.2.11",
3
+ "version": "9.2.13",
4
4
  "description": "Fluent UI component to visually separate content.",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -22,7 +22,8 @@
22
22
  "test": "jest --passWithNoTests",
23
23
  "storybook": "start-storybook",
24
24
  "type-check": "tsc -b tsconfig.json",
25
- "generate-api": "just-scripts generate-api"
25
+ "generate-api": "just-scripts generate-api",
26
+ "test-ssr": "test-ssr \"./stories/**/*.stories.tsx\""
26
27
  },
27
28
  "devDependencies": {
28
29
  "@fluentui/eslint-plugin": "*",
@@ -33,10 +34,10 @@
33
34
  },
34
35
  "dependencies": {
35
36
  "@griffel/react": "^1.5.2",
36
- "@fluentui/react-jsx-runtime": "9.0.0-alpha.3",
37
- "@fluentui/react-shared-contexts": "^9.4.0",
37
+ "@fluentui/react-jsx-runtime": "9.0.0-alpha.4",
38
+ "@fluentui/react-shared-contexts": "^9.5.0",
38
39
  "@fluentui/react-theme": "^9.1.8",
39
- "@fluentui/react-utilities": "^9.8.1",
40
+ "@fluentui/react-utilities": "^9.9.0",
40
41
  "@swc/helpers": "^0.4.14"
41
42
  },
42
43
  "peerDependencies": {