@fluentui/react-divider 9.2.12 → 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 +30 -1
- package/CHANGELOG.md +12 -2
- package/dist/index.d.ts +2 -2
- package/lib/components/Divider/Divider.types.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,36 @@
|
|
2
2
|
"name": "@fluentui/react-divider",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
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",
|
6
35
|
"tag": "@fluentui/react-divider_v9.2.12",
|
7
36
|
"version": "9.2.12",
|
8
37
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,22 @@
|
|
1
1
|
# Change Log - @fluentui/react-divider
|
2
2
|
|
3
|
-
This log was last generated on
|
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
|
+
|
7
17
|
## [9.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.2.12)
|
8
18
|
|
9
|
-
Thu, 18 May 2023 00:
|
19
|
+
Thu, 18 May 2023 00:39:06 GMT
|
10
20
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.2.11..@fluentui/react-divider_v9.2.12)
|
11
21
|
|
12
22
|
### 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'
|
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.
|
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",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"storybook": "start-storybook",
|
24
24
|
"type-check": "tsc -b tsconfig.json",
|
25
25
|
"generate-api": "just-scripts generate-api",
|
26
|
-
"test-ssr": "test-ssr ./stories/**/*.stories.tsx"
|
26
|
+
"test-ssr": "test-ssr \"./stories/**/*.stories.tsx\""
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
29
|
"@fluentui/eslint-plugin": "*",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"dependencies": {
|
36
36
|
"@griffel/react": "^1.5.2",
|
37
37
|
"@fluentui/react-jsx-runtime": "9.0.0-alpha.4",
|
38
|
-
"@fluentui/react-shared-contexts": "^9.
|
38
|
+
"@fluentui/react-shared-contexts": "^9.5.0",
|
39
39
|
"@fluentui/react-theme": "^9.1.8",
|
40
40
|
"@fluentui/react-utilities": "^9.9.0",
|
41
41
|
"@swc/helpers": "^0.4.14"
|