@fluentui/react-divider 0.0.0-nightly-20220617-0418.1 → 0.0.0-nightly-20220623-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 CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@fluentui/react-divider",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 17 Jun 2022 04:29:54 GMT",
6
- "tag": "@fluentui/react-divider_v0.0.0-nightly-20220617-0418.1",
7
- "version": "0.0.0-nightly-20220617-0418.1",
5
+ "date": "Thu, 23 Jun 2022 04:31:08 GMT",
6
+ "tag": "@fluentui/react-divider_v0.0.0-nightly-20220623-0419.1",
7
+ "version": "0.0.0-nightly-20220623-0419.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
@@ -22,8 +22,14 @@
22
22
  {
23
23
  "author": "beachball",
24
24
  "package": "@fluentui/react-divider",
25
- "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220617-0418.1",
26
- "commit": "a1d7056dec836840c62a0f1a57a8d53af83c9dc5"
25
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20220623-0419.1",
26
+ "commit": "9df169f017c97b7fe34f7b7618e4a29baf38b22b"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-divider",
31
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220623-0419.1",
32
+ "commit": "9df169f017c97b7fe34f7b7618e4a29baf38b22b"
27
33
  }
28
34
  ],
29
35
  "none": [
@@ -32,6 +38,12 @@
32
38
  "package": "@fluentui/react-divider",
33
39
  "commit": "b365ef88f8ccf64c5bd6e3a424f0196328627bb9",
34
40
  "comment": "chore: Move Divider stories to folder with index entry."
41
+ },
42
+ {
43
+ "author": "gcox@microsoft.com",
44
+ "package": "@fluentui/react-divider",
45
+ "commit": "ed08fb6d86fc74667a93db7d2cf43286aaa21faf",
46
+ "comment": "docs: Added upgrade guide for divider."
35
47
  }
36
48
  ]
37
49
  }
package/CHANGELOG.md CHANGED
@@ -1,19 +1,20 @@
1
1
  # Change Log - @fluentui/react-divider
2
2
 
3
- This log was last generated on Fri, 17 Jun 2022 04:29:54 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 Jun 2022 04:31:08 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightly-20220617-0418.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v0.0.0-nightly-20220617-0418.1)
7
+ ## [0.0.0-nightly-20220623-0419.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v0.0.0-nightly-20220623-0419.1)
8
8
 
9
- Fri, 17 Jun 2022 04:29:54 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-20220617-0418.1)
9
+ Thu, 23 Jun 2022 04:31:08 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-20220623-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-20220617-0418.1 ([commit](https://github.com/microsoft/fluentui/commit/a1d7056dec836840c62a0f1a57a8d53af83c9dc5) by beachball)
16
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220623-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/9df169f017c97b7fe34f7b7618e4a29baf38b22b) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220623-0419.1 ([commit](https://github.com/microsoft/fluentui/commit/9df169f017c97b7fe34f7b7618e4a29baf38b22b) by beachball)
17
18
 
18
19
  ## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-divider_v9.0.0-rc.11)
19
20
 
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
- - `content` => `children` of the `Divider`
8
- - `styles` => NOT SUPPORTED - use new styling system via `FluentProvider`
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
- | `content` | `content` | `children` |
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-20220617-0418.1",
3
+ "version": "0.0.0-nightly-20220623-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-20220617-0418.0",
31
+ "@fluentui/react-conformance-griffel": "0.0.0-nightly-20220623-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-20220617-0418.0",
37
- "@fluentui/react-utilities": "0.0.0-nightly-20220617-0418.1",
36
+ "@fluentui/react-theme": "0.0.0-nightly-20220623-0419.1",
37
+ "@fluentui/react-utilities": "0.0.0-nightly-20220623-0419.1",
38
38
  "tslib": "^2.1.0"
39
39
  },
40
40
  "peerDependencies": {