@fluentui/react-menu 0.0.0-nightly9edaf68d4420211116.1 → 0.0.0-nightlya9c3d10d9520220113.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 +207 -26
- package/CHANGELOG.md +53 -20
- package/Spec.md +21 -16
- package/dist/react-menu.d.ts +49 -9
- package/lib/MenuSplitGroup.d.ts +1 -0
- package/lib/MenuSplitGroup.js +2 -0
- package/lib/MenuSplitGroup.js.map +1 -0
- package/lib/components/Menu/useMenu.js +29 -21
- package/lib/components/Menu/useMenu.js.map +1 -1
- package/lib/components/MenuDivider/renderMenuDivider.js +2 -1
- package/lib/components/MenuDivider/renderMenuDivider.js.map +1 -1
- package/lib/components/MenuDivider/useMenuDivider.js +3 -0
- package/lib/components/MenuDivider/useMenuDivider.js.map +1 -1
- package/lib/components/MenuDivider/useMenuDividerStyles.d.ts +1 -1
- package/lib/components/MenuDivider/useMenuDividerStyles.js +2 -1
- package/lib/components/MenuDivider/useMenuDividerStyles.js.map +1 -1
- package/lib/components/MenuGroup/renderMenuGroup.js +2 -1
- package/lib/components/MenuGroup/renderMenuGroup.js.map +1 -1
- package/lib/components/MenuGroup/useMenuGroup.js +3 -0
- package/lib/components/MenuGroup/useMenuGroup.js.map +1 -1
- package/lib/components/MenuGroupHeader/renderMenuGroupHeader.js +2 -1
- package/lib/components/MenuGroupHeader/renderMenuGroupHeader.js.map +1 -1
- package/lib/components/MenuGroupHeader/useMenuGroupHeader.js +3 -0
- package/lib/components/MenuGroupHeader/useMenuGroupHeader.js.map +1 -1
- package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.d.ts +1 -1
- package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.js +1 -0
- package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.js.map +1 -1
- package/lib/components/MenuItem/MenuItem.js +0 -2
- package/lib/components/MenuItem/MenuItem.js.map +1 -1
- package/lib/components/MenuItem/MenuItem.types.d.ts +1 -1
- package/lib/components/MenuItem/renderMenuItem.js +8 -3
- package/lib/components/MenuItem/renderMenuItem.js.map +1 -1
- package/lib/components/MenuItem/useMenuItem.d.ts +1 -5
- package/lib/components/MenuItem/useMenuItem.js +3 -8
- package/lib/components/MenuItem/useMenuItem.js.map +1 -1
- package/lib/components/MenuItem/useMenuItemStyles.js +26 -23
- package/lib/components/MenuItem/useMenuItemStyles.js.map +1 -1
- package/lib/components/MenuItemCheckbox/renderMenuItemCheckbox.js +7 -3
- package/lib/components/MenuItemCheckbox/renderMenuItemCheckbox.js.map +1 -1
- package/lib/components/MenuItemRadio/renderMenuItemRadio.js +7 -3
- package/lib/components/MenuItemRadio/renderMenuItemRadio.js.map +1 -1
- package/lib/components/MenuList/renderMenuList.js +2 -1
- package/lib/components/MenuList/renderMenuList.js.map +1 -1
- package/lib/components/MenuList/useMenuList.js +3 -0
- package/lib/components/MenuList/useMenuList.js.map +1 -1
- package/lib/components/MenuList/useMenuListStyles.js +4 -3
- package/lib/components/MenuList/useMenuListStyles.js.map +1 -1
- package/lib/components/MenuPopover/renderMenuPopover.js +4 -2
- package/lib/components/MenuPopover/renderMenuPopover.js.map +1 -1
- package/lib/components/MenuPopover/useMenuPopover.js +3 -0
- package/lib/components/MenuPopover/useMenuPopover.js.map +1 -1
- package/lib/components/MenuPopover/useMenuPopoverStyles.js +8 -4
- package/lib/components/MenuPopover/useMenuPopoverStyles.js.map +1 -1
- package/lib/components/MenuSplitGroup/MenuSplitGroup.d.ts +6 -0
- package/lib/components/MenuSplitGroup/MenuSplitGroup.js +15 -0
- package/lib/components/MenuSplitGroup/MenuSplitGroup.js.map +1 -0
- package/lib/components/MenuSplitGroup/MenuSplitGroup.types.d.ts +13 -0
- package/lib/components/MenuSplitGroup/MenuSplitGroup.types.js +2 -0
- package/lib/components/MenuSplitGroup/MenuSplitGroup.types.js.map +1 -0
- package/lib/components/MenuSplitGroup/index.d.ts +5 -0
- package/lib/components/MenuSplitGroup/index.js +6 -0
- package/lib/components/MenuSplitGroup/index.js.map +1 -0
- package/lib/components/MenuSplitGroup/renderMenuSplitGroup.d.ts +5 -0
- package/lib/components/MenuSplitGroup/renderMenuSplitGroup.js +15 -0
- package/lib/components/MenuSplitGroup/renderMenuSplitGroup.js.map +1 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroup.d.ts +12 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroup.js +67 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroup.js.map +1 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.d.ts +6 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.js +35 -0
- package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.js.map +1 -0
- package/lib/components/MenuTrigger/MenuTrigger.types.d.ts +2 -1
- package/lib/components/MenuTrigger/useTriggerElement.js +6 -5
- package/lib/components/MenuTrigger/useTriggerElement.js.map +1 -1
- package/lib/index.d.ts +11 -10
- package/lib/index.js +11 -10
- package/lib/index.js.map +1 -1
- package/lib/utils/useOnMenuEnter.js.map +1 -1
- package/lib-commonjs/MenuSplitGroup.d.ts +1 -0
- package/lib-commonjs/MenuSplitGroup.js +10 -0
- package/lib-commonjs/MenuSplitGroup.js.map +1 -0
- package/lib-commonjs/components/Menu/useMenu.js +33 -26
- package/lib-commonjs/components/Menu/useMenu.js.map +1 -1
- package/lib-commonjs/components/MenuDivider/renderMenuDivider.js +2 -1
- package/lib-commonjs/components/MenuDivider/renderMenuDivider.js.map +1 -1
- package/lib-commonjs/components/MenuDivider/useMenuDivider.js +3 -0
- package/lib-commonjs/components/MenuDivider/useMenuDivider.js.map +1 -1
- package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.d.ts +1 -1
- package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.js +2 -0
- package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.js.map +1 -1
- package/lib-commonjs/components/MenuGroup/renderMenuGroup.js +2 -1
- package/lib-commonjs/components/MenuGroup/renderMenuGroup.js.map +1 -1
- package/lib-commonjs/components/MenuGroup/useMenuGroup.js +3 -0
- package/lib-commonjs/components/MenuGroup/useMenuGroup.js.map +1 -1
- package/lib-commonjs/components/MenuGroupHeader/renderMenuGroupHeader.js +2 -1
- package/lib-commonjs/components/MenuGroupHeader/renderMenuGroupHeader.js.map +1 -1
- package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeader.js +3 -0
- package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeader.js.map +1 -1
- package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.d.ts +1 -1
- package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.js +2 -0
- package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.js.map +1 -1
- package/lib-commonjs/components/MenuItem/MenuItem.js +0 -3
- package/lib-commonjs/components/MenuItem/MenuItem.js.map +1 -1
- package/lib-commonjs/components/MenuItem/MenuItem.types.d.ts +1 -1
- package/lib-commonjs/components/MenuItem/renderMenuItem.js +8 -4
- package/lib-commonjs/components/MenuItem/renderMenuItem.js.map +1 -1
- package/lib-commonjs/components/MenuItem/useMenuItem.d.ts +1 -5
- package/lib-commonjs/components/MenuItem/useMenuItem.js +5 -10
- package/lib-commonjs/components/MenuItem/useMenuItem.js.map +1 -1
- package/lib-commonjs/components/MenuItem/useMenuItemStyles.js +27 -22
- package/lib-commonjs/components/MenuItem/useMenuItemStyles.js.map +1 -1
- package/lib-commonjs/components/MenuItemCheckbox/renderMenuItemCheckbox.js +7 -4
- package/lib-commonjs/components/MenuItemCheckbox/renderMenuItemCheckbox.js.map +1 -1
- package/lib-commonjs/components/MenuItemRadio/renderMenuItemRadio.js +7 -4
- package/lib-commonjs/components/MenuItemRadio/renderMenuItemRadio.js.map +1 -1
- package/lib-commonjs/components/MenuList/renderMenuList.js +2 -1
- package/lib-commonjs/components/MenuList/renderMenuList.js.map +1 -1
- package/lib-commonjs/components/MenuList/useMenuList.js +3 -0
- package/lib-commonjs/components/MenuList/useMenuList.js.map +1 -1
- package/lib-commonjs/components/MenuList/useMenuListStyles.js +3 -2
- package/lib-commonjs/components/MenuList/useMenuListStyles.js.map +1 -1
- package/lib-commonjs/components/MenuPopover/renderMenuPopover.js +4 -2
- package/lib-commonjs/components/MenuPopover/renderMenuPopover.js.map +1 -1
- package/lib-commonjs/components/MenuPopover/useMenuPopover.js +3 -0
- package/lib-commonjs/components/MenuPopover/useMenuPopover.js.map +1 -1
- package/lib-commonjs/components/MenuPopover/useMenuPopoverStyles.js +8 -3
- package/lib-commonjs/components/MenuPopover/useMenuPopoverStyles.js.map +1 -1
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.d.ts +6 -0
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.js +26 -0
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.js.map +1 -0
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.d.ts +13 -0
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.js +6 -0
- package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.js.map +1 -0
- package/lib-commonjs/components/MenuSplitGroup/index.d.ts +5 -0
- package/lib-commonjs/components/MenuSplitGroup/index.js +18 -0
- package/lib-commonjs/components/MenuSplitGroup/index.js.map +1 -0
- package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.d.ts +5 -0
- package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.js +26 -0
- package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.js.map +1 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.d.ts +12 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.js +81 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.js.map +1 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.d.ts +6 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.js +47 -0
- package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.js.map +1 -0
- package/lib-commonjs/components/MenuTrigger/MenuTrigger.types.d.ts +2 -1
- package/lib-commonjs/components/MenuTrigger/useTriggerElement.js +6 -5
- package/lib-commonjs/components/MenuTrigger/useTriggerElement.js.map +1 -1
- package/lib-commonjs/index.d.ts +11 -10
- package/lib-commonjs/index.js +16 -14
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/useOnMenuEnter.js.map +1 -1
- package/package.json +16 -15
- package/lib/common/isConformant.d.ts +0 -4
- package/lib/common/isConformant.js +0 -12
- package/lib/common/isConformant.js.map +0 -1
- package/lib/common/mockUseMenuContext.d.ts +0 -7
- package/lib/common/mockUseMenuContext.js +0 -29
- package/lib/common/mockUseMenuContext.js.map +0 -1
- package/lib-commonjs/common/isConformant.d.ts +0 -4
- package/lib-commonjs/common/isConformant.js +0 -23
- package/lib-commonjs/common/isConformant.js.map +0 -1
- package/lib-commonjs/common/mockUseMenuContext.d.ts +0 -7
- package/lib-commonjs/common/mockUseMenuContext.js +0 -39
- package/lib-commonjs/common/mockUseMenuContext.js.map +0 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,82 +2,263 @@
|
|
|
2
2
|
"name": "@fluentui/react-menu",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
6
|
-
"tag": "@fluentui/react-menu_v0.0.0-
|
|
7
|
-
"version": "0.0.0-
|
|
5
|
+
"date": "Thu, 13 Jan 2022 04:15:43 GMT",
|
|
6
|
+
"tag": "@fluentui/react-menu_v0.0.0-nightlya9c3d10d9520220113.1",
|
|
7
|
+
"version": "0.0.0-nightlya9c3d10d9520220113.1",
|
|
8
8
|
"comments": {
|
|
9
9
|
"prerelease": [
|
|
10
10
|
{
|
|
11
11
|
"author": "email not defined",
|
|
12
12
|
"package": "@fluentui/react-menu",
|
|
13
|
-
"commit": "
|
|
13
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075",
|
|
14
14
|
"comment": "Release nightly v9"
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"author": "lingfangao@hotmail.com",
|
|
18
|
+
"package": "@fluentui/react-menu",
|
|
19
|
+
"commit": "c2e6c50d56dcb45b4ca9e3a9daf2fae4be10a19e",
|
|
20
|
+
"comment": "fix: set `aria-expanded` and `aria-haspopup` values correctly"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "lingfangao@hotmail.com",
|
|
24
|
+
"package": "@fluentui/react-menu",
|
|
25
|
+
"commit": "6ca0355f6740f836ff4df009687718a380085247",
|
|
26
|
+
"comment": "fix: Focus on first menu item on click"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
30
|
+
"package": "@fluentui/react-menu",
|
|
31
|
+
"commit": "38c8bed2c707014688ae2ae689033fa36ef23075",
|
|
32
|
+
"comment": "Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "behowell@microsoft.com",
|
|
36
|
+
"package": "@fluentui/react-menu",
|
|
37
|
+
"commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
|
|
38
|
+
"comment": "Remove component's shorthandProps array"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"author": "olfedias@microsoft.com",
|
|
42
|
+
"package": "@fluentui/react-menu",
|
|
43
|
+
"commit": "7e0933ed386742df28c416e6b3a6903a0c041f28",
|
|
44
|
+
"comment": "update styles to not use CSS shorthands"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"author": "lingfangao@hotmail.com",
|
|
48
|
+
"package": "@fluentui/react-menu",
|
|
49
|
+
"commit": "4121754498bba5137f769295e2b7a2899f557278",
|
|
50
|
+
"comment": "fix: Call `useCheckmarkStyles` in `useMenuItemStyles`"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
54
|
+
"package": "@fluentui/react-menu",
|
|
55
|
+
"commit": "6c32d0180e89674a46daf795de69e5dc6ca71ef7",
|
|
56
|
+
"comment": "Updating based on removal of functions from makeStyles."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
60
|
+
"package": "@fluentui/react-menu",
|
|
61
|
+
"commit": "227e09f59026e2bd243422427d9e230d6aa892ca",
|
|
62
|
+
"comment": "Replacing use of functions in makeStyles with direct use of tokens."
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"author": "behowell@microsoft.com",
|
|
66
|
+
"package": "@fluentui/react-menu",
|
|
67
|
+
"commit": "23b8a6df449d6e76b90ae5ca9bd2285febdff222",
|
|
68
|
+
"comment": "Apply fontSize styling to icon slot"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"author": "ololubek@microsoft.com",
|
|
72
|
+
"package": "@fluentui/react-menu",
|
|
73
|
+
"commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
|
|
74
|
+
"comment": "Update react-icons usage to resizable icons"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"author": "lingfangao@hotmail.com",
|
|
78
|
+
"package": "@fluentui/react-menu",
|
|
79
|
+
"commit": "95a6a32cbffa9d86d6017cf8e0204d4b459ef370",
|
|
80
|
+
"comment": "feat: implement `MenuSplitGroup` component for split menu items"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
84
|
+
"package": "@fluentui/react-menu",
|
|
85
|
+
"commit": "00a5d945904c896a0664de6ba72c145a255f0848",
|
|
86
|
+
"comment": "Updating use of tokens.fontWeight now that we don't need to use casting."
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"author": "ololubek@microsoft.com",
|
|
90
|
+
"package": "@fluentui/react-menu",
|
|
91
|
+
"commit": "7cb2a5d8db1b6a1ddb638aa82d5815ab5ae84e69",
|
|
92
|
+
"comment": "(fix): Update react-icons dependency to latest version"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"author": "lingfangao@hotmail.com",
|
|
96
|
+
"package": "@fluentui/react-menu",
|
|
97
|
+
"commit": "07d9ed6d1b436b7ca9571c94fbb0bcbdb080f235",
|
|
98
|
+
"comment": "breaking: MenuTrigger must be the first child of the `Menu`"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"author": "beachball",
|
|
102
|
+
"package": "@fluentui/react-menu",
|
|
103
|
+
"comment": "Bump @fluentui/keyboard-keys to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
104
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"author": "beachball",
|
|
108
|
+
"package": "@fluentui/react-menu",
|
|
109
|
+
"comment": "Bump @fluentui/react-context-selector to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
110
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"author": "beachball",
|
|
114
|
+
"package": "@fluentui/react-menu",
|
|
115
|
+
"comment": "Bump @fluentui/react-make-styles to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
116
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"author": "beachball",
|
|
120
|
+
"package": "@fluentui/react-menu",
|
|
121
|
+
"comment": "Bump @fluentui/react-portal to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
122
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"author": "beachball",
|
|
126
|
+
"package": "@fluentui/react-menu",
|
|
127
|
+
"comment": "Bump @fluentui/react-positioning to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
128
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"author": "beachball",
|
|
132
|
+
"package": "@fluentui/react-menu",
|
|
133
|
+
"comment": "Bump @fluentui/react-shared-contexts to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
134
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"author": "beachball",
|
|
138
|
+
"package": "@fluentui/react-menu",
|
|
139
|
+
"comment": "Bump @fluentui/react-tabster to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
140
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"author": "beachball",
|
|
144
|
+
"package": "@fluentui/react-menu",
|
|
145
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
146
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"author": "beachball",
|
|
150
|
+
"package": "@fluentui/react-menu",
|
|
151
|
+
"comment": "Bump @fluentui/babel-make-styles to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
152
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
153
|
+
},
|
|
16
154
|
{
|
|
17
155
|
"author": "beachball",
|
|
18
156
|
"package": "@fluentui/react-menu",
|
|
19
|
-
"comment": "Bump @fluentui/
|
|
20
|
-
"commit": "
|
|
157
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
158
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"author": "beachball",
|
|
162
|
+
"package": "@fluentui/react-menu",
|
|
163
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v0.0.0-nightlya9c3d10d9520220113.1",
|
|
164
|
+
"commit": "e5182b449d13b07c2da6a36ece6f79ec664c4075"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"none": [
|
|
168
|
+
{
|
|
169
|
+
"author": "email not defined",
|
|
170
|
+
"package": "@fluentui/react-menu",
|
|
171
|
+
"commit": "97752a0e494875c4dc22b268030d7d5e51b19211",
|
|
172
|
+
"comment": "Add workaround for cypress bug"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"author": "elcraig@microsoft.com",
|
|
176
|
+
"package": "@fluentui/react-menu",
|
|
177
|
+
"commit": "3360b45ec159250b1346c91afad7dce138e6bc20",
|
|
178
|
+
"comment": "Update API file to version generated by typescript 4.3"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"date": "Thu, 25 Nov 2021 08:34:14 GMT",
|
|
185
|
+
"tag": "@fluentui/react-menu_v9.0.0-beta.5",
|
|
186
|
+
"version": "9.0.0-beta.5",
|
|
187
|
+
"comments": {
|
|
188
|
+
"none": [
|
|
189
|
+
{
|
|
190
|
+
"author": "lingfangao@hotmail.com",
|
|
191
|
+
"package": "@fluentui/react-menu",
|
|
192
|
+
"commit": "8a141d14f3a14de2e1c4691dad908622f310a9d1",
|
|
193
|
+
"comment": "Migrate package to use solution tsconfigs"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"prerelease": [
|
|
197
|
+
{
|
|
198
|
+
"author": "ololubek@microsoft.com",
|
|
199
|
+
"package": "@fluentui/react-menu",
|
|
200
|
+
"commit": "ecab13cfd6ac22657020db8f86eb89f952b0f953",
|
|
201
|
+
"comment": "update react-icons dependency"
|
|
21
202
|
},
|
|
22
203
|
{
|
|
23
204
|
"author": "beachball",
|
|
24
205
|
"package": "@fluentui/react-menu",
|
|
25
|
-
"comment": "Bump @fluentui/react-context-selector to
|
|
26
|
-
"commit": "
|
|
206
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.4",
|
|
207
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
27
208
|
},
|
|
28
209
|
{
|
|
29
210
|
"author": "beachball",
|
|
30
211
|
"package": "@fluentui/react-menu",
|
|
31
|
-
"comment": "Bump @fluentui/react-make-styles to
|
|
32
|
-
"commit": "
|
|
212
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
|
|
213
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
33
214
|
},
|
|
34
215
|
{
|
|
35
216
|
"author": "beachball",
|
|
36
217
|
"package": "@fluentui/react-menu",
|
|
37
|
-
"comment": "Bump @fluentui/react-portal to
|
|
38
|
-
"commit": "
|
|
218
|
+
"comment": "Bump @fluentui/react-portal to v9.0.0-beta.5",
|
|
219
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
39
220
|
},
|
|
40
221
|
{
|
|
41
222
|
"author": "beachball",
|
|
42
223
|
"package": "@fluentui/react-menu",
|
|
43
|
-
"comment": "Bump @fluentui/react-positioning to
|
|
44
|
-
"commit": "
|
|
224
|
+
"comment": "Bump @fluentui/react-positioning to v9.0.0-beta.4",
|
|
225
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
45
226
|
},
|
|
46
227
|
{
|
|
47
228
|
"author": "beachball",
|
|
48
229
|
"package": "@fluentui/react-menu",
|
|
49
|
-
"comment": "Bump @fluentui/react-shared-contexts to
|
|
50
|
-
"commit": "
|
|
230
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.4",
|
|
231
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
51
232
|
},
|
|
52
233
|
{
|
|
53
234
|
"author": "beachball",
|
|
54
235
|
"package": "@fluentui/react-menu",
|
|
55
|
-
"comment": "Bump @fluentui/react-tabster to
|
|
56
|
-
"commit": "
|
|
236
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
|
|
237
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
57
238
|
},
|
|
58
239
|
{
|
|
59
240
|
"author": "beachball",
|
|
60
241
|
"package": "@fluentui/react-menu",
|
|
61
|
-
"comment": "Bump @fluentui/react-utilities to
|
|
62
|
-
"commit": "
|
|
242
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
|
|
243
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
63
244
|
},
|
|
64
245
|
{
|
|
65
246
|
"author": "beachball",
|
|
66
247
|
"package": "@fluentui/react-menu",
|
|
67
|
-
"comment": "Bump @fluentui/babel-make-styles to
|
|
68
|
-
"commit": "
|
|
248
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
|
|
249
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
69
250
|
},
|
|
70
251
|
{
|
|
71
252
|
"author": "beachball",
|
|
72
253
|
"package": "@fluentui/react-menu",
|
|
73
|
-
"comment": "Bump @fluentui/jest-serializer-make-styles to
|
|
74
|
-
"commit": "
|
|
254
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
|
|
255
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
75
256
|
},
|
|
76
257
|
{
|
|
77
258
|
"author": "beachball",
|
|
78
259
|
"package": "@fluentui/react-menu",
|
|
79
|
-
"comment": "Bump @fluentui/react-conformance-make-styles to
|
|
80
|
-
"commit": "
|
|
260
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
|
|
261
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
|
81
262
|
}
|
|
82
263
|
]
|
|
83
264
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,61 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-menu
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 13 Jan 2022 04:15:43 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## [0.0.0-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.
|
|
11
|
-
|
|
12
|
-
### Changes
|
|
13
|
-
|
|
14
|
-
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
7
|
+
## [0.0.0-nightlya9c3d10d9520220113.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.0.0-nightlya9c3d10d9520220113.1)
|
|
8
|
+
|
|
9
|
+
Thu, 13 Jan 2022 04:15:43 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.5..@fluentui/react-menu_v0.0.0-nightlya9c3d10d9520220113.1)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by email not defined)
|
|
15
|
+
- fix: set `aria-expanded` and `aria-haspopup` values correctly ([PR #20957](https://github.com/microsoft/fluentui/pull/20957) by lingfangao@hotmail.com)
|
|
16
|
+
- fix: Focus on first menu item on click ([PR #20955](https://github.com/microsoft/fluentui/pull/20955) by lingfangao@hotmail.com)
|
|
17
|
+
- Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster. ([PR #21035](https://github.com/microsoft/fluentui/pull/21035) by Humberto.Morimoto@microsoft.com)
|
|
18
|
+
- Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
|
|
19
|
+
- update styles to not use CSS shorthands ([PR #20820](https://github.com/microsoft/fluentui/pull/20820) by olfedias@microsoft.com)
|
|
20
|
+
- fix: Call `useCheckmarkStyles` in `useMenuItemStyles` ([PR #20956](https://github.com/microsoft/fluentui/pull/20956) by lingfangao@hotmail.com)
|
|
21
|
+
- Updating based on removal of functions from makeStyles. ([PR #21239](https://github.com/microsoft/fluentui/pull/21239) by Humberto.Morimoto@microsoft.com)
|
|
22
|
+
- Replacing use of functions in makeStyles with direct use of tokens. ([PR #21048](https://github.com/microsoft/fluentui/pull/21048) by Humberto.Morimoto@microsoft.com)
|
|
23
|
+
- Apply fontSize styling to icon slot ([PR #21222](https://github.com/microsoft/fluentui/pull/21222) by behowell@microsoft.com)
|
|
24
|
+
- Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
|
|
25
|
+
- feat: implement `MenuSplitGroup` component for split menu items ([PR #21095](https://github.com/microsoft/fluentui/pull/21095) by lingfangao@hotmail.com)
|
|
26
|
+
- Updating use of tokens.fontWeight now that we don't need to use casting. ([PR #21217](https://github.com/microsoft/fluentui/pull/21217) by Humberto.Morimoto@microsoft.com)
|
|
27
|
+
- (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
|
|
28
|
+
- breaking: MenuTrigger must be the first child of the `Menu` ([PR #21096](https://github.com/microsoft/fluentui/pull/21096) by lingfangao@hotmail.com)
|
|
29
|
+
- Bump @fluentui/keyboard-keys to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
30
|
+
- Bump @fluentui/react-context-selector to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
31
|
+
- Bump @fluentui/react-make-styles to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
32
|
+
- Bump @fluentui/react-portal to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
33
|
+
- Bump @fluentui/react-positioning to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
34
|
+
- Bump @fluentui/react-shared-contexts to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
35
|
+
- Bump @fluentui/react-tabster to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
36
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
37
|
+
- Bump @fluentui/babel-make-styles to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
38
|
+
- Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
39
|
+
- Bump @fluentui/react-conformance-make-styles to v0.0.0-nightlya9c3d10d9520220113.1 ([commit](https://github.com/microsoft/fluentui/commit/e5182b449d13b07c2da6a36ece6f79ec664c4075) by beachball)
|
|
40
|
+
|
|
41
|
+
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.5)
|
|
42
|
+
|
|
43
|
+
Thu, 25 Nov 2021 08:34:14 GMT
|
|
44
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.4..@fluentui/react-menu_v9.0.0-beta.5)
|
|
45
|
+
|
|
46
|
+
### Changes
|
|
47
|
+
|
|
48
|
+
- update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
|
|
49
|
+
- Bump @fluentui/react-context-selector to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
50
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
51
|
+
- Bump @fluentui/react-portal to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
52
|
+
- Bump @fluentui/react-positioning to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
53
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
54
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
55
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
56
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
57
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
58
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
|
26
59
|
|
|
27
60
|
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.4)
|
|
28
61
|
|
package/Spec.md
CHANGED
|
@@ -619,7 +619,7 @@ const menu = (
|
|
|
619
619
|
|
|
620
620
|
```html
|
|
621
621
|
<!-- expected DOM output -->
|
|
622
|
-
<button aria-haspopup="
|
|
622
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
623
623
|
<div role="menu" aria-labelledby="trigger">
|
|
624
624
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
625
625
|
<div role="menuitem" tabindex="-1">Option 2</div>
|
|
@@ -644,7 +644,7 @@ const menu = (
|
|
|
644
644
|
|
|
645
645
|
```html
|
|
646
646
|
<!-- expected DOM output -->
|
|
647
|
-
<button aria-haspopup="
|
|
647
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
648
648
|
<div role="menu" aria-labelledby="trigger">
|
|
649
649
|
<div role="menuitem" tabindex="0">
|
|
650
650
|
<span role="presentation"><svg>FileIcon</svg></span>
|
|
@@ -682,7 +682,7 @@ const menu = (
|
|
|
682
682
|
|
|
683
683
|
```html
|
|
684
684
|
<!-- expected DOM output -->
|
|
685
|
-
<button aria-haspopup="
|
|
685
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
686
686
|
<div role="menu" aria-labelledby="trigger">
|
|
687
687
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
688
688
|
<div role="separator" aria-hidden="true"></div>
|
|
@@ -719,7 +719,7 @@ const menu = (
|
|
|
719
719
|
|
|
720
720
|
```html
|
|
721
721
|
<!-- expected DOM output -->
|
|
722
|
-
<button aria-haspopup="
|
|
722
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
723
723
|
<div role="menu" aria-labelledby="trigger">
|
|
724
724
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
725
725
|
<div role="separator" aria-hidden="true"></div>
|
|
@@ -758,10 +758,10 @@ const menu = (
|
|
|
758
758
|
|
|
759
759
|
```html
|
|
760
760
|
<!-- expected DOM output -->
|
|
761
|
-
<button aria-haspopup="
|
|
761
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
762
762
|
<div role="menu" aria-labelledby="trigger">
|
|
763
763
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
764
|
-
<div role="menuitem" tabindex="-1" aria-haspopup="
|
|
764
|
+
<div role="menuitem" tabindex="-1" aria-haspopup="menu" aria-expanded="false" id="submenu-trigger">Open submenu</div>
|
|
765
765
|
</div>
|
|
766
766
|
|
|
767
767
|
<!-- expected DOM output for submenu -->
|
|
@@ -843,7 +843,7 @@ const menuSelectableSections = (
|
|
|
843
843
|
```
|
|
844
844
|
|
|
845
845
|
```html
|
|
846
|
-
<button aria-haspopup="
|
|
846
|
+
<button aria-haspopup="menu" aria-expanded="true" id="trigger">Open menu</button>
|
|
847
847
|
|
|
848
848
|
<!-- expected DOM output for basic checkbox -->
|
|
849
849
|
<div role="menu" aria-labelledby="trigger">
|
|
@@ -882,9 +882,12 @@ const menuSplitbutton= (
|
|
|
882
882
|
<MenuList>
|
|
883
883
|
<MenuItem>Option 1</MenuItem>
|
|
884
884
|
<Menu>
|
|
885
|
-
<
|
|
886
|
-
<
|
|
887
|
-
|
|
885
|
+
<MenuSplitGroup>
|
|
886
|
+
<MenuItem>Main action</MenuItem>
|
|
887
|
+
<MenuTrigger>
|
|
888
|
+
<MenuItem />
|
|
889
|
+
</MenuTrigger>
|
|
890
|
+
</MenuSplitGroup>
|
|
888
891
|
<MenuItem>Option 1</MenuItem>
|
|
889
892
|
<MenuItem>Option 2</MenuItem>
|
|
890
893
|
<MenuItem>Option 3</MenuItem>
|
|
@@ -897,7 +900,7 @@ const menuSplitbutton= (
|
|
|
897
900
|
```html
|
|
898
901
|
<div role="menu" aria-labelledby="trigger">
|
|
899
902
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
900
|
-
<div role="menuitem" tabindex="-1" aria-haspopup="
|
|
903
|
+
<div role="menuitem" tabindex="-1" aria-haspopup="menu" aria-expanded="false" id="submenu-trigger">Open submenu</div>
|
|
901
904
|
</div>
|
|
902
905
|
|
|
903
906
|
<!-- expected DOM output -->
|
|
@@ -905,7 +908,7 @@ const menuSplitbutton= (
|
|
|
905
908
|
<div role="menuitem" tabindex="0">Option 1</div>
|
|
906
909
|
<div role="group">
|
|
907
910
|
<div role="menuitem" tabindex="-1">content slot</div>
|
|
908
|
-
<div role="menuitem" tabindex="-1" aria-haspopup="
|
|
911
|
+
<div role="menuitem" tabindex="-1" aria-haspopup="menu" aria-expanded="false" id="submenu-trgger">
|
|
909
912
|
<svg>indicator icon</svg>
|
|
910
913
|
</div>
|
|
911
914
|
</div>
|
|
@@ -958,11 +961,13 @@ Below is a set of diagrams that tries to illustrates all the interactions menus
|
|
|
958
961
|
|
|
959
962
|
All of the above Mouse events seen previously should apply to the part of the split button that is intended to open a submenu.
|
|
960
963
|
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-

|
|
964
|
+
> TODO convert these diagrams to excalidraw or smth that is text format
|
|
965
|
+
> TODO add extra descriptions to diagrams
|
|
964
966
|
|
|
965
|
-
|
|
967
|
+
<img src="./etc/images/menu-interactions/Slide19.PNG" width="700" />
|
|
968
|
+
<img src="./etc/images/menu-interactions/Slide20.PNG" width="700" />
|
|
969
|
+
<img src="./etc/images/menu-interactions/Slide21.PNG" width="700" />
|
|
970
|
+
<img src="./etc/images/menu-interactions/Slide22.PNG" width="700" />
|
|
966
971
|
|
|
967
972
|
### MenuItem selection
|
|
968
973
|
|
package/dist/react-menu.d.ts
CHANGED
|
@@ -238,18 +238,13 @@ export declare type MenuItemSlots = {
|
|
|
238
238
|
* Component children are placed in this slot
|
|
239
239
|
* Avoid using the `children` property in this slot in favour of Component children whenever possible
|
|
240
240
|
*/
|
|
241
|
-
content
|
|
241
|
+
content?: IntrinsicShorthandProps<'span'>;
|
|
242
242
|
/**
|
|
243
243
|
* Secondary content rendered opposite the primary content (e.g Shortcut text)
|
|
244
244
|
*/
|
|
245
245
|
secondaryContent?: IntrinsicShorthandProps<'span'>;
|
|
246
246
|
};
|
|
247
247
|
|
|
248
|
-
/**
|
|
249
|
-
* Consts listing which props are shorthand props.
|
|
250
|
-
*/
|
|
251
|
-
export declare const menuItemSlots: Array<keyof MenuItemSlots>;
|
|
252
|
-
|
|
253
248
|
export declare type MenuItemState = ComponentState<MenuItemSlots> & MenuItemCommons;
|
|
254
249
|
|
|
255
250
|
/**
|
|
@@ -386,6 +381,29 @@ export declare const MenuProvider: React_2.Provider<MenuContextValue> & React_2.
|
|
|
386
381
|
|
|
387
382
|
export declare type MenuSlots = {};
|
|
388
383
|
|
|
384
|
+
/**
|
|
385
|
+
* Layout wrapper that provides extra keyboard navigation behavior for two `MenuItem` components.
|
|
386
|
+
*/
|
|
387
|
+
export declare const MenuSplitGroup: ForwardRefComponent<MenuSplitGroupProps>;
|
|
388
|
+
|
|
389
|
+
export declare const menuSplitGroupClassName = "fui-MenuSplitGroup";
|
|
390
|
+
|
|
391
|
+
export declare type MenuSplitGroupCommons = {};
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* MenuSplitGroup Props
|
|
395
|
+
*/
|
|
396
|
+
export declare type MenuSplitGroupProps = ComponentProps<MenuSplitGroupSlots> & MenuSplitGroupCommons;
|
|
397
|
+
|
|
398
|
+
export declare type MenuSplitGroupSlots = {
|
|
399
|
+
root: IntrinsicShorthandProps<'div'>;
|
|
400
|
+
};
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* State used in rendering MenuSplitGroup
|
|
404
|
+
*/
|
|
405
|
+
export declare type MenuSplitGroupState = ComponentState<MenuSplitGroupSlots> & MenuSplitGroupCommons;
|
|
406
|
+
|
|
389
407
|
export declare type MenuState = MenuCommons & ComponentState<MenuSlots> & {
|
|
390
408
|
/**
|
|
391
409
|
* Callback to open/close the popup
|
|
@@ -434,8 +452,9 @@ export declare const MenuTrigger: React_2.FC<MenuTriggerProps>;
|
|
|
434
452
|
/**
|
|
435
453
|
* Props that are passed to the child of the MenuTrigger when cloned to ensure correct behaviour for the Menu
|
|
436
454
|
*/
|
|
437
|
-
export declare type MenuTriggerChildProps = Required<Pick<React_2.HTMLAttributes<HTMLElement>, 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'onContextMenu' | 'onKeyDown' | 'aria-haspopup' | '
|
|
455
|
+
export declare type MenuTriggerChildProps = Required<Pick<React_2.HTMLAttributes<HTMLElement>, 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'onContextMenu' | 'onKeyDown' | 'aria-haspopup' | 'id'>> & {
|
|
438
456
|
ref?: React_2.Ref<never>;
|
|
457
|
+
'aria-expanded': boolean | undefined;
|
|
439
458
|
};
|
|
440
459
|
|
|
441
460
|
export declare const MenuTriggerContextProvider: React_2.Provider<boolean>;
|
|
@@ -498,6 +517,11 @@ export declare const renderMenuList: (state: MenuListState, contextValues: MenuL
|
|
|
498
517
|
*/
|
|
499
518
|
export declare const renderMenuPopover: (state: MenuPopoverState) => JSX.Element;
|
|
500
519
|
|
|
520
|
+
/**
|
|
521
|
+
* Render the final JSX of MenuSplitGroup
|
|
522
|
+
*/
|
|
523
|
+
export declare const renderMenuSplitGroup: (state: MenuSplitGroupState) => JSX.Element;
|
|
524
|
+
|
|
501
525
|
/**
|
|
502
526
|
* Render the final JSX of MenuTrigger
|
|
503
527
|
*
|
|
@@ -535,7 +559,7 @@ export declare function useMenuContextValues(state: MenuState): MenuContextValue
|
|
|
535
559
|
*/
|
|
536
560
|
export declare const useMenuDivider: (props: MenuDividerProps, ref: React_2.Ref<HTMLElement>) => MenuDividerState;
|
|
537
561
|
|
|
538
|
-
export declare const useMenuDividerStyles: (state: MenuDividerState) =>
|
|
562
|
+
export declare const useMenuDividerStyles: (state: MenuDividerState) => MenuDividerState;
|
|
539
563
|
|
|
540
564
|
/**
|
|
541
565
|
* Given user props, returns state and render function for a MenuGroup.
|
|
@@ -551,7 +575,7 @@ export declare function useMenuGroupContextValues(state: MenuGroupState): MenuGr
|
|
|
551
575
|
*/
|
|
552
576
|
export declare function useMenuGroupHeader(props: MenuGroupHeaderProps, ref: React_2.Ref<HTMLElement>): MenuGroupHeaderState;
|
|
553
577
|
|
|
554
|
-
export declare const useMenuGroupHeaderStyles: (state: MenuGroupHeaderState) =>
|
|
578
|
+
export declare const useMenuGroupHeaderStyles: (state: MenuGroupHeaderState) => MenuGroupHeaderState;
|
|
555
579
|
|
|
556
580
|
export declare const useMenuGroupStyles: (state: MenuGroupState) => MenuGroupState;
|
|
557
581
|
|
|
@@ -605,6 +629,22 @@ export declare const useMenuPopover: (props: MenuPopoverProps, ref: React_2.Ref<
|
|
|
605
629
|
*/
|
|
606
630
|
export declare const useMenuPopoverStyles: (state: MenuPopoverState) => MenuPopoverState;
|
|
607
631
|
|
|
632
|
+
/**
|
|
633
|
+
* Create the state required to render MenuSplitGroup.
|
|
634
|
+
*
|
|
635
|
+
* The returned state can be modified with hooks such as useMenuSplitGroupStyles,
|
|
636
|
+
* before being passed to renderMenuSplitGroup.
|
|
637
|
+
*
|
|
638
|
+
* @param props - props from this instance of MenuSplitGroup
|
|
639
|
+
* @param ref - reference to root HTMLElement of MenuSplitGroup
|
|
640
|
+
*/
|
|
641
|
+
export declare const useMenuSplitGroup: (props: MenuSplitGroupProps, ref: React_2.Ref<HTMLElement>) => MenuSplitGroupState;
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* Apply styling to the MenuSplitGroup slots based on the state
|
|
645
|
+
*/
|
|
646
|
+
export declare const useMenuSplitGroupStyles: (state: MenuSplitGroupState) => MenuSplitGroupState;
|
|
647
|
+
|
|
608
648
|
/**
|
|
609
649
|
* Create the state required to render MenuTrigger.
|
|
610
650
|
* Clones the only child component and adds necessary event handling behaviours to open a popup menu
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components/MenuSplitGroup/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuSplitGroup.js","sourceRoot":"","sources":["../src/MenuSplitGroup.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAC"}
|