@fluentui/react-components 9.18.6 → 9.18.7

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,72 @@
2
2
  "name": "@fluentui/react-components",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 24 Mar 2023 17:36:26 GMT",
5
+ "date": "Tue, 04 Apr 2023 18:42:16 GMT",
6
+ "tag": "@fluentui/react-components_v9.18.7",
7
+ "version": "9.18.7",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "behowell@microsoft.com",
12
+ "package": "@fluentui/react-checkbox",
13
+ "commit": "4fad4cbbcbdb48847857c388135a3abda472add7",
14
+ "comment": "fix: Fix vertical alignment of inline Checkbox when checked vs. unchecked"
15
+ },
16
+ {
17
+ "author": "seanmonahan@microsoft.com",
18
+ "package": "@fluentui/react-combobox",
19
+ "commit": "83c18ac81b068a45f6ea4d3b7912d5d6873e9d06",
20
+ "comment": "fix: make Option's checkIcon slot render conditionally"
21
+ },
22
+ {
23
+ "author": "bernardo.sunderhus@gmail.com",
24
+ "package": "@fluentui/react-dialog",
25
+ "commit": "263ea175b5da60d0abacc0eec88d7c338ce5c74a",
26
+ "comment": "fix: DialogContent scrollbar always visible"
27
+ },
28
+ {
29
+ "author": "lingfangao@hotmail.com",
30
+ "package": "@fluentui/react-menu",
31
+ "commit": "15a497fda9801df50990a42c9fe09d6b98b51144",
32
+ "comment": "fix: Menu should not steal focus on close"
33
+ },
34
+ {
35
+ "author": "vkozlova@microsoft.com",
36
+ "package": "@fluentui/react-overflow",
37
+ "commit": "34124853ca638421e5b90d6c3b1ad2611b78b4f7",
38
+ "comment": "fix: overflow item style should be applied when overflow items are nested in wrapper elements"
39
+ },
40
+ {
41
+ "author": "bernardo.sunderhus@gmail.com",
42
+ "package": "@fluentui/react-utilities",
43
+ "commit": "60f71394c7ac9aa81e6e243cbd011845b43c705f",
44
+ "comment": "bugfix: increments SlotRenderFunction signature to include children"
45
+ }
46
+ ],
47
+ "prerelease": [
48
+ {
49
+ "author": "esteban.230@hotmail.com",
50
+ "package": "@fluentui/react-infobutton",
51
+ "commit": "df9564ee42c12b0dfab646f9e4dd4038c636d3ee",
52
+ "comment": "chore: Rename content slot to info."
53
+ },
54
+ {
55
+ "author": "bernardo.sunderhus@gmail.com",
56
+ "package": "@fluentui/react-tree",
57
+ "commit": "7dc03924c99ea14c4df43e56454fc7781e1fdb89",
58
+ "comment": "chore: adds e2e flat tree tests"
59
+ },
60
+ {
61
+ "author": "martinhochel@microsoft.com",
62
+ "package": "@fluentui/react-virtualizer",
63
+ "commit": "5c53cfd7875712af78dd5bca396ce0d24030973c",
64
+ "comment": "fix: remove disallowed v9 react-fabric/v8 from dependency to mitigate dep-tree creep"
65
+ }
66
+ ]
67
+ }
68
+ },
69
+ {
70
+ "date": "Fri, 24 Mar 2023 17:36:41 GMT",
6
71
  "tag": "@fluentui/react-components_v9.18.6",
7
72
  "version": "9.18.6",
8
73
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,41 @@
1
1
  # Change Log - @fluentui/react-components
2
2
 
3
- This log was last generated on Fri, 24 Mar 2023 17:36:26 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 04 Apr 2023 18:42:16 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.18.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.7)
8
+
9
+ Tue, 04 Apr 2023 18:42:16 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.6..@fluentui/react-components_v9.18.7)
11
+
12
+ ### Patches
13
+
14
+ - `@fluentui/react-checkbox`
15
+ - fix: Fix vertical alignment of inline Checkbox when checked vs. unchecked ([PR #27324](https://github.com/microsoft/fluentui/pull/27324) by behowell@microsoft.com)
16
+ - `@fluentui/react-combobox`
17
+ - fix: make Option's checkIcon slot render conditionally ([PR #27409](https://github.com/microsoft/fluentui/pull/27409) by seanmonahan@microsoft.com)
18
+ - `@fluentui/react-dialog`
19
+ - fix: DialogContent scrollbar always visible ([PR #27367](https://github.com/microsoft/fluentui/pull/27367) by bernardo.sunderhus@gmail.com)
20
+ - `@fluentui/react-menu`
21
+ - fix: Menu should not steal focus on close ([PR #27414](https://github.com/microsoft/fluentui/pull/27414) by lingfangao@hotmail.com)
22
+ - `@fluentui/react-overflow`
23
+ - fix: overflow item style should be applied when overflow items are nested in wrapper elements ([PR #27402](https://github.com/microsoft/fluentui/pull/27402) by vkozlova@microsoft.com)
24
+ - `@fluentui/react-utilities`
25
+ - bugfix: increments SlotRenderFunction signature to include children ([PR #27377](https://github.com/microsoft/fluentui/pull/27377) by bernardo.sunderhus@gmail.com)
26
+
27
+ ### Changes
28
+
29
+ - `@fluentui/react-infobutton`
30
+ - chore: Rename content slot to info. ([PR #27316](https://github.com/microsoft/fluentui/pull/27316) by esteban.230@hotmail.com)
31
+ - `@fluentui/react-tree`
32
+ - chore: adds e2e flat tree tests ([PR #27318](https://github.com/microsoft/fluentui/pull/27318) by bernardo.sunderhus@gmail.com)
33
+ - `@fluentui/react-virtualizer`
34
+ - fix: remove disallowed v9 react-fabric/v8 from dependency to mitigate dep-tree creep ([PR #27334](https://github.com/microsoft/fluentui/pull/27334) by martinhochel@microsoft.com)
35
+
7
36
  ## [9.18.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.6)
8
37
 
9
- Fri, 24 Mar 2023 17:36:26 GMT
38
+ Fri, 24 Mar 2023 17:36:41 GMT
10
39
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.5..@fluentui/react-components_v9.18.6)
11
40
 
12
41
  ### Patches
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-components",
3
- "version": "9.18.6",
3
+ "version": "9.18.7",
4
4
  "description": "Suite package for converged React components",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -31,49 +31,49 @@
31
31
  "@fluentui/scripts-tasks": "*"
32
32
  },
33
33
  "dependencies": {
34
- "@fluentui/react-accordion": "^9.1.6",
35
- "@fluentui/react-alert": "9.0.0-beta.41",
36
- "@fluentui/react-avatar": "^9.4.6",
37
- "@fluentui/react-badge": "^9.1.6",
38
- "@fluentui/react-button": "^9.3.6",
39
- "@fluentui/react-card": "^9.0.4",
40
- "@fluentui/react-checkbox": "^9.1.6",
41
- "@fluentui/react-combobox": "^9.2.6",
42
- "@fluentui/react-dialog": "^9.4.2",
43
- "@fluentui/react-divider": "^9.2.6",
44
- "@fluentui/react-field": "9.0.0-alpha.28",
45
- "@fluentui/react-image": "^9.1.3",
46
- "@fluentui/react-infobutton": "9.0.0-beta.24",
47
- "@fluentui/react-input": "^9.4.6",
48
- "@fluentui/react-label": "^9.1.6",
49
- "@fluentui/react-link": "^9.0.32",
50
- "@fluentui/react-menu": "^9.7.6",
51
- "@fluentui/react-overflow": "^9.0.12",
52
- "@fluentui/react-persona": "^9.2.5",
53
- "@fluentui/react-portal": "^9.2.3",
54
- "@fluentui/react-popover": "^9.5.6",
55
- "@fluentui/react-positioning": "^9.5.7",
56
- "@fluentui/react-progress": "^9.1.6",
57
- "@fluentui/react-provider": "^9.5.0",
58
- "@fluentui/react-radio": "^9.1.6",
59
- "@fluentui/react-select": "^9.1.6",
34
+ "@fluentui/react-accordion": "^9.1.7",
35
+ "@fluentui/react-alert": "9.0.0-beta.42",
36
+ "@fluentui/react-avatar": "^9.4.7",
37
+ "@fluentui/react-badge": "^9.1.7",
38
+ "@fluentui/react-button": "^9.3.7",
39
+ "@fluentui/react-card": "^9.0.5",
40
+ "@fluentui/react-checkbox": "^9.1.7",
41
+ "@fluentui/react-combobox": "^9.2.7",
42
+ "@fluentui/react-dialog": "^9.4.3",
43
+ "@fluentui/react-divider": "^9.2.7",
44
+ "@fluentui/react-field": "9.0.0-alpha.29",
45
+ "@fluentui/react-image": "^9.1.4",
46
+ "@fluentui/react-infobutton": "9.0.0-beta.25",
47
+ "@fluentui/react-input": "^9.4.7",
48
+ "@fluentui/react-label": "^9.1.7",
49
+ "@fluentui/react-link": "^9.0.33",
50
+ "@fluentui/react-menu": "^9.7.7",
51
+ "@fluentui/react-overflow": "^9.0.13",
52
+ "@fluentui/react-persona": "^9.2.6",
53
+ "@fluentui/react-portal": "^9.2.4",
54
+ "@fluentui/react-popover": "^9.5.7",
55
+ "@fluentui/react-positioning": "^9.5.8",
56
+ "@fluentui/react-progress": "^9.1.7",
57
+ "@fluentui/react-provider": "^9.5.1",
58
+ "@fluentui/react-radio": "^9.1.7",
59
+ "@fluentui/react-select": "^9.1.7",
60
60
  "@fluentui/react-shared-contexts": "^9.3.3",
61
- "@fluentui/react-skeleton": "9.0.0-beta.5",
62
- "@fluentui/react-slider": "^9.1.6",
63
- "@fluentui/react-spinbutton": "^9.2.6",
64
- "@fluentui/react-spinner": "^9.1.6",
65
- "@fluentui/react-switch": "^9.1.6",
66
- "@fluentui/react-table": "^9.2.2",
67
- "@fluentui/react-tabs": "^9.3.6",
68
- "@fluentui/react-tabster": "^9.6.2",
69
- "@fluentui/react-textarea": "^9.3.6",
61
+ "@fluentui/react-skeleton": "9.0.0-beta.6",
62
+ "@fluentui/react-slider": "^9.1.7",
63
+ "@fluentui/react-spinbutton": "^9.2.7",
64
+ "@fluentui/react-spinner": "^9.1.7",
65
+ "@fluentui/react-switch": "^9.1.7",
66
+ "@fluentui/react-table": "^9.2.3",
67
+ "@fluentui/react-tabs": "^9.3.7",
68
+ "@fluentui/react-tabster": "^9.6.3",
69
+ "@fluentui/react-textarea": "^9.3.7",
70
70
  "@fluentui/react-theme": "^9.1.7",
71
- "@fluentui/react-toolbar": "^9.1.6",
72
- "@fluentui/react-tooltip": "^9.2.6",
73
- "@fluentui/react-utilities": "^9.7.2",
74
- "@fluentui/react-text": "^9.3.3",
75
- "@fluentui/react-virtualizer": "9.0.0-alpha.14",
76
- "@fluentui/react-tree": "9.0.0-beta.8",
71
+ "@fluentui/react-toolbar": "^9.1.7",
72
+ "@fluentui/react-tooltip": "^9.2.7",
73
+ "@fluentui/react-utilities": "^9.7.3",
74
+ "@fluentui/react-text": "^9.3.4",
75
+ "@fluentui/react-virtualizer": "9.0.0-alpha.15",
76
+ "@fluentui/react-tree": "9.0.0-beta.9",
77
77
  "@griffel/react": "^1.5.2",
78
78
  "@swc/helpers": "^0.4.14"
79
79
  },