@fluentui/react-divider 0.0.0-nightly-20220617-0418.1 → 0.0.0-nightly-20220620-0419.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.
- package/CHANGELOG.json +11 -5
- package/CHANGELOG.md +5 -5
- package/MIGRATION.md +3 -4
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
"name": "@fluentui/react-divider",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
6
|
-
"tag": "@fluentui/react-divider_v0.0.0-nightly-
|
7
|
-
"version": "0.0.0-nightly-
|
5
|
+
"date": "Mon, 20 Jun 2022 04:30:43 GMT",
|
6
|
+
"tag": "@fluentui/react-divider_v0.0.0-nightly-20220620-0419.1",
|
7
|
+
"version": "0.0.0-nightly-20220620-0419.1",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
@@ -22,8 +22,8 @@
|
|
22
22
|
{
|
23
23
|
"author": "beachball",
|
24
24
|
"package": "@fluentui/react-divider",
|
25
|
-
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-
|
26
|
-
"commit": "
|
25
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220620-0419.1",
|
26
|
+
"commit": "c354a8c849d9732b606b2a5fe885c4e1bd790fc6"
|
27
27
|
}
|
28
28
|
],
|
29
29
|
"none": [
|
@@ -32,6 +32,12 @@
|
|
32
32
|
"package": "@fluentui/react-divider",
|
33
33
|
"commit": "b365ef88f8ccf64c5bd6e3a424f0196328627bb9",
|
34
34
|
"comment": "chore: Move Divider stories to folder with index entry."
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"author": "gcox@microsoft.com",
|
38
|
+
"package": "@fluentui/react-divider",
|
39
|
+
"commit": "ed08fb6d86fc74667a93db7d2cf43286aaa21faf",
|
40
|
+
"comment": "docs: Added upgrade guide for divider."
|
35
41
|
}
|
36
42
|
]
|
37
43
|
}
|
package/CHANGELOG.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
# Change Log - @fluentui/react-divider
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Mon, 20 Jun 2022 04:30:43 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
-
## [0.0.0-nightly-
|
7
|
+
## [0.0.0-nightly-20220620-0419.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v0.0.0-nightly-20220620-0419.1)
|
8
8
|
|
9
|
-
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.0.0-rc.11..@fluentui/react-divider_v0.0.0-nightly-
|
9
|
+
Mon, 20 Jun 2022 04:30:43 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-divider_v9.0.0-rc.11..@fluentui/react-divider_v0.0.0-nightly-20220620-0419.1)
|
11
11
|
|
12
12
|
### Changes
|
13
13
|
|
14
14
|
- chore: Using ::before and ::after instead of :before and :after. ([PR #23469](https://github.com/microsoft/fluentui/pull/23469) by Humberto.Morimoto@microsoft.com)
|
15
15
|
- README, spec and migration guide cleanup. ([PR #23439](https://github.com/microsoft/fluentui/pull/23439) by Humberto.Morimoto@microsoft.com)
|
16
|
-
- Bump @fluentui/react-utilities to v0.0.0-nightly-
|
16
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly-20220620-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/c354a8c849d9732b606b2a5fe885c4e1bd790fc6) by beachball)
|
17
17
|
|
18
18
|
## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.0.0-rc.11)
|
19
19
|
|
package/MIGRATION.md
CHANGED
@@ -4,9 +4,8 @@
|
|
4
4
|
|
5
5
|
The v8 `Separator` control supports a very similar set of props to the v9 `Divider` with a few differences that are outlined below:
|
6
6
|
|
7
|
-
- `
|
8
|
-
- `
|
9
|
-
- `theme` => NOT SUPPORTED
|
7
|
+
- `styles` => NOT SUPPORTED - use `makeStyles` to create styles and apply them with the `className` prop.
|
8
|
+
- `theme` => NOT SUPPORTED - use `FluentProvider`
|
10
9
|
|
11
10
|
## Migration from v0
|
12
11
|
|
@@ -23,7 +22,7 @@ The v0 `Divider` control supports a very similar set of props to the v9 `Divider
|
|
23
22
|
| `alignContent` | - | `alignContent` |
|
24
23
|
| - | - | `appearance` |
|
25
24
|
| - | `color` | |
|
26
|
-
| `
|
25
|
+
| `children` | `content` | `children` |
|
27
26
|
| - | `fitted` | |
|
28
27
|
| - | `important` | |
|
29
28
|
| - | - | `inset` |
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-divider",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20220620-0419.1",
|
4
4
|
"description": "Fluent UI component to visually separate content.",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -28,13 +28,13 @@
|
|
28
28
|
"devDependencies": {
|
29
29
|
"@fluentui/eslint-plugin": "*",
|
30
30
|
"@fluentui/react-conformance": "*",
|
31
|
-
"@fluentui/react-conformance-griffel": "0.0.0-nightly-
|
31
|
+
"@fluentui/react-conformance-griffel": "0.0.0-nightly-20220620-0419.0",
|
32
32
|
"@fluentui/scripts": "^1.0.0"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@griffel/react": "1.1.0",
|
36
|
-
"@fluentui/react-theme": "0.0.0-nightly-
|
37
|
-
"@fluentui/react-utilities": "0.0.0-nightly-
|
36
|
+
"@fluentui/react-theme": "0.0.0-nightly-20220620-0419.0",
|
37
|
+
"@fluentui/react-utilities": "0.0.0-nightly-20220620-0419.1",
|
38
38
|
"tslib": "^2.1.0"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|