@fluentui/react-utilities 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10
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 +355 -9
- package/CHANGELOG.md +185 -70
- package/dist/index.d.ts +517 -0
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/compose/getSlots.js +21 -30
- package/lib/compose/getSlots.js.map +1 -1
- package/lib/compose/index.js +0 -1
- package/lib/compose/index.js.map +1 -1
- package/lib/compose/resolveShorthand.js +13 -12
- package/lib/compose/resolveShorthand.js.map +1 -1
- package/lib/compose/types.js +1 -5
- package/lib/compose/types.js.map +1 -1
- package/lib/hooks/index.js +2 -6
- package/lib/hooks/index.js.map +1 -1
- package/lib/hooks/useControllableState.js +26 -26
- package/lib/hooks/useControllableState.js.map +1 -1
- package/lib/hooks/useEventCallback.js +6 -12
- package/lib/hooks/useEventCallback.js.map +1 -1
- package/lib/hooks/useFirstMount.js +1 -1
- package/lib/hooks/useFirstMount.js.map +1 -1
- package/lib/hooks/useForceUpdate.js +1 -3
- package/lib/hooks/useForceUpdate.js.map +1 -1
- package/lib/hooks/useId.js +9 -5
- package/lib/hooks/useId.js.map +1 -1
- package/lib/hooks/useIsomorphicLayoutEffect.js +1 -1
- package/lib/hooks/useIsomorphicLayoutEffect.js.map +1 -1
- package/lib/hooks/useMergedEventCallbacks.js +26 -0
- package/lib/hooks/useMergedEventCallbacks.js.map +1 -0
- package/lib/hooks/useMergedRefs.js +5 -13
- package/lib/hooks/useMergedRefs.js.map +1 -1
- package/lib/hooks/useOnClickOutside.js +30 -36
- package/lib/hooks/useOnClickOutside.js.map +1 -1
- package/lib/hooks/useOnScrollOutside.js +13 -15
- package/lib/hooks/useOnScrollOutside.js.map +1 -1
- package/lib/hooks/usePrevious.js +3 -3
- package/lib/hooks/usePrevious.js.map +1 -1
- package/lib/hooks/useTimeout.js +13 -18
- package/lib/hooks/useTimeout.js.map +1 -1
- package/lib/index.js +4 -4
- package/lib/index.js.map +1 -1
- package/lib/ssr/SSRContext.js +9 -15
- package/lib/ssr/SSRContext.js.map +1 -1
- package/lib/ssr/canUseDOM.js.map +1 -1
- package/lib/ssr/index.js.map +1 -1
- package/lib/utils/applyTriggerPropsToChildren.js +24 -4
- package/lib/utils/applyTriggerPropsToChildren.js.map +1 -1
- package/lib/utils/clamp.js +1 -3
- package/lib/utils/clamp.js.map +1 -1
- package/lib/utils/getNativeElementProps.js +28 -4
- package/lib/utils/getNativeElementProps.js.map +1 -1
- package/lib/utils/getRTLSafeKey.js +1 -1
- package/lib/utils/getRTLSafeKey.js.map +1 -1
- package/lib/utils/getReactCallbackName.js +26 -0
- package/lib/utils/getReactCallbackName.js.map +1 -0
- package/lib/utils/getTriggerChild.js +26 -0
- package/lib/utils/getTriggerChild.js.map +1 -0
- package/lib/utils/index.js +2 -1
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/isFluentTrigger.js +8 -0
- package/lib/utils/isFluentTrigger.js.map +1 -0
- package/lib/utils/omit.js +2 -2
- package/lib/utils/omit.js.map +1 -1
- package/lib/utils/properties.js +72 -49
- package/lib/utils/properties.js.map +1 -1
- package/lib/utils/shouldPreventDefaultOnKeyDown.js +8 -4
- package/lib/utils/shouldPreventDefaultOnKeyDown.js.map +1 -1
- package/lib-commonjs/compose/getSlots.js +23 -34
- package/lib-commonjs/compose/getSlots.js.map +1 -1
- package/lib-commonjs/compose/index.js +1 -3
- package/lib-commonjs/compose/index.js.map +1 -1
- package/lib-commonjs/compose/resolveShorthand.js +14 -14
- package/lib-commonjs/compose/resolveShorthand.js.map +1 -1
- package/lib-commonjs/compose/types.js +1 -5
- package/lib-commonjs/compose/types.js.map +1 -1
- package/lib-commonjs/hooks/index.js +5 -13
- package/lib-commonjs/hooks/index.js.map +1 -1
- package/lib-commonjs/hooks/useControllableState.js +27 -28
- package/lib-commonjs/hooks/useControllableState.js.map +1 -1
- package/lib-commonjs/hooks/useEventCallback.js +8 -14
- package/lib-commonjs/hooks/useEventCallback.js.map +1 -1
- package/lib-commonjs/hooks/useFirstMount.js +2 -2
- package/lib-commonjs/hooks/useFirstMount.js.map +1 -1
- package/lib-commonjs/hooks/useForceUpdate.js +2 -4
- package/lib-commonjs/hooks/useForceUpdate.js.map +1 -1
- package/lib-commonjs/hooks/useId.js +11 -7
- package/lib-commonjs/hooks/useId.js.map +1 -1
- package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js +2 -2
- package/lib-commonjs/hooks/useIsomorphicLayoutEffect.js.map +1 -1
- package/lib-commonjs/hooks/useMergedEventCallbacks.js +36 -0
- package/lib-commonjs/hooks/useMergedEventCallbacks.js.map +1 -0
- package/lib-commonjs/hooks/useMergedRefs.js +6 -15
- package/lib-commonjs/hooks/useMergedRefs.js.map +1 -1
- package/lib-commonjs/hooks/useOnClickOutside.js +32 -38
- package/lib-commonjs/hooks/useOnClickOutside.js.map +1 -1
- package/lib-commonjs/hooks/useOnScrollOutside.js +15 -17
- package/lib-commonjs/hooks/useOnScrollOutside.js.map +1 -1
- package/lib-commonjs/hooks/usePrevious.js +4 -4
- package/lib-commonjs/hooks/usePrevious.js.map +1 -1
- package/lib-commonjs/hooks/useTimeout.js +14 -20
- package/lib-commonjs/hooks/useTimeout.js.map +1 -1
- package/lib-commonjs/index.js +158 -5
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/ssr/SSRContext.js +9 -15
- package/lib-commonjs/ssr/SSRContext.js.map +1 -1
- package/lib-commonjs/ssr/canUseDOM.js.map +1 -1
- package/lib-commonjs/ssr/index.js +1 -1
- package/lib-commonjs/ssr/index.js.map +1 -1
- package/lib-commonjs/utils/applyTriggerPropsToChildren.js +26 -6
- package/lib-commonjs/utils/applyTriggerPropsToChildren.js.map +1 -1
- package/lib-commonjs/utils/clamp.js +1 -3
- package/lib-commonjs/utils/clamp.js.map +1 -1
- package/lib-commonjs/utils/getNativeElementProps.js +31 -5
- package/lib-commonjs/utils/getNativeElementProps.js.map +1 -1
- package/lib-commonjs/utils/getRTLSafeKey.js +1 -1
- package/lib-commonjs/utils/getRTLSafeKey.js.map +1 -1
- package/lib-commonjs/utils/getReactCallbackName.js +35 -0
- package/lib-commonjs/utils/getReactCallbackName.js.map +1 -0
- package/lib-commonjs/utils/getTriggerChild.js +37 -0
- package/lib-commonjs/utils/getTriggerChild.js.map +1 -0
- package/lib-commonjs/utils/index.js +5 -3
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/isFluentTrigger.js +17 -0
- package/lib-commonjs/utils/isFluentTrigger.js.map +1 -0
- package/lib-commonjs/utils/omit.js +2 -2
- package/lib-commonjs/utils/omit.js.map +1 -1
- package/lib-commonjs/utils/properties.js +70 -47
- package/lib-commonjs/utils/properties.js.map +1 -1
- package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js +9 -5
- package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.js.map +1 -1
- package/package.json +14 -17
- package/dist/react-utilities.d.ts +0 -648
- package/lib/compose/getSlots.d.ts +0 -29
- package/lib/compose/index.d.ts +0 -4
- package/lib/compose/nullRender.d.ts +0 -4
- package/lib/compose/nullRender.js +0 -7
- package/lib/compose/nullRender.js.map +0 -1
- package/lib/compose/resolveShorthand.d.ts +0 -12
- package/lib/compose/types.d.ts +0 -104
- package/lib/hooks/index.d.ts +0 -16
- package/lib/hooks/useBoolean.d.ts +0 -17
- package/lib/hooks/useBoolean.js +0 -39
- package/lib/hooks/useBoolean.js.map +0 -1
- package/lib/hooks/useConst.d.ts +0 -12
- package/lib/hooks/useConst.js +0 -30
- package/lib/hooks/useConst.js.map +0 -1
- package/lib/hooks/useControllableState.d.ts +0 -21
- package/lib/hooks/useControllableValue.d.ts +0 -20
- package/lib/hooks/useControllableValue.js +0 -62
- package/lib/hooks/useControllableValue.js.map +0 -1
- package/lib/hooks/useEventCallback.d.ts +0 -13
- package/lib/hooks/useFirstMount.d.ts +0 -11
- package/lib/hooks/useForceUpdate.d.ts +0 -4
- package/lib/hooks/useId.d.ts +0 -15
- package/lib/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
- package/lib/hooks/useMergedRefs.d.ts +0 -13
- package/lib/hooks/useMount.d.ts +0 -6
- package/lib/hooks/useMount.js +0 -17
- package/lib/hooks/useMount.js.map +0 -1
- package/lib/hooks/useOnClickOutside.d.ts +0 -29
- package/lib/hooks/useOnScrollOutside.d.ts +0 -5
- package/lib/hooks/usePrevious.d.ts +0 -1
- package/lib/hooks/useTimeout.d.ts +0 -8
- package/lib/hooks/useUnmount.d.ts +0 -6
- package/lib/hooks/useUnmount.js +0 -19
- package/lib/hooks/useUnmount.js.map +0 -1
- package/lib/index.d.ts +0 -4
- package/lib/ssr/SSRContext.d.ts +0 -33
- package/lib/ssr/canUseDOM.d.ts +0 -4
- package/lib/ssr/index.d.ts +0 -2
- package/lib/utils/applyTriggerPropsToChildren.d.ts +0 -5
- package/lib/utils/clamp.d.ts +0 -8
- package/lib/utils/getNativeElementProps.d.ts +0 -9
- package/lib/utils/getRTLSafeKey.d.ts +0 -4
- package/lib/utils/index.d.ts +0 -8
- package/lib/utils/omit.d.ts +0 -14
- package/lib/utils/onlyChild.d.ts +0 -5
- package/lib/utils/onlyChild.js +0 -13
- package/lib/utils/onlyChild.js.map +0 -1
- package/lib/utils/properties.d.ts +0 -148
- package/lib/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
- package/lib-commonjs/compose/getSlots.d.ts +0 -29
- package/lib-commonjs/compose/index.d.ts +0 -4
- package/lib-commonjs/compose/nullRender.d.ts +0 -4
- package/lib-commonjs/compose/nullRender.js +0 -16
- package/lib-commonjs/compose/nullRender.js.map +0 -1
- package/lib-commonjs/compose/resolveShorthand.d.ts +0 -12
- package/lib-commonjs/compose/types.d.ts +0 -104
- package/lib-commonjs/hooks/index.d.ts +0 -16
- package/lib-commonjs/hooks/useBoolean.d.ts +0 -17
- package/lib-commonjs/hooks/useBoolean.js +0 -50
- package/lib-commonjs/hooks/useBoolean.js.map +0 -1
- package/lib-commonjs/hooks/useConst.d.ts +0 -12
- package/lib-commonjs/hooks/useConst.js +0 -40
- package/lib-commonjs/hooks/useConst.js.map +0 -1
- package/lib-commonjs/hooks/useControllableState.d.ts +0 -21
- package/lib-commonjs/hooks/useControllableValue.d.ts +0 -20
- package/lib-commonjs/hooks/useControllableValue.js +0 -73
- package/lib-commonjs/hooks/useControllableValue.js.map +0 -1
- package/lib-commonjs/hooks/useEventCallback.d.ts +0 -13
- package/lib-commonjs/hooks/useFirstMount.d.ts +0 -11
- package/lib-commonjs/hooks/useForceUpdate.d.ts +0 -4
- package/lib-commonjs/hooks/useId.d.ts +0 -15
- package/lib-commonjs/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
- package/lib-commonjs/hooks/useMergedRefs.d.ts +0 -13
- package/lib-commonjs/hooks/useMount.d.ts +0 -6
- package/lib-commonjs/hooks/useMount.js +0 -27
- package/lib-commonjs/hooks/useMount.js.map +0 -1
- package/lib-commonjs/hooks/useOnClickOutside.d.ts +0 -29
- package/lib-commonjs/hooks/useOnScrollOutside.d.ts +0 -5
- package/lib-commonjs/hooks/usePrevious.d.ts +0 -1
- package/lib-commonjs/hooks/useTimeout.d.ts +0 -8
- package/lib-commonjs/hooks/useUnmount.d.ts +0 -6
- package/lib-commonjs/hooks/useUnmount.js +0 -29
- package/lib-commonjs/hooks/useUnmount.js.map +0 -1
- package/lib-commonjs/index.d.ts +0 -4
- package/lib-commonjs/ssr/SSRContext.d.ts +0 -33
- package/lib-commonjs/ssr/canUseDOM.d.ts +0 -4
- package/lib-commonjs/ssr/index.d.ts +0 -2
- package/lib-commonjs/utils/applyTriggerPropsToChildren.d.ts +0 -5
- package/lib-commonjs/utils/clamp.d.ts +0 -8
- package/lib-commonjs/utils/getNativeElementProps.d.ts +0 -9
- package/lib-commonjs/utils/getRTLSafeKey.d.ts +0 -4
- package/lib-commonjs/utils/index.d.ts +0 -8
- package/lib-commonjs/utils/omit.d.ts +0 -14
- package/lib-commonjs/utils/onlyChild.d.ts +0 -5
- package/lib-commonjs/utils/onlyChild.js +0 -23
- package/lib-commonjs/utils/onlyChild.js.map +0 -1
- package/lib-commonjs/utils/properties.d.ts +0 -148
- package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
package/CHANGELOG.json
CHANGED
@@ -2,28 +2,374 @@
|
|
2
2
|
"name": "@fluentui/react-utilities",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
6
|
-
"tag": "@fluentui/react-utilities_v9.0.0-
|
7
|
-
"version": "9.0.0-
|
5
|
+
"date": "Tue, 31 May 2022 21:26:44 GMT",
|
6
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.10",
|
7
|
+
"version": "9.0.0-rc.10",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "olfedias@microsoft.com",
|
12
|
+
"package": "@fluentui/react-utilities",
|
13
|
+
"commit": "8da715ea657e5124f56450426b8052ef49a20180",
|
14
|
+
"comment": "remove exports for internals APIs & unused hooks"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"date": "Thu, 26 May 2022 21:01:31 GMT",
|
21
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.9",
|
22
|
+
"version": "9.0.0-rc.9",
|
23
|
+
"comments": {
|
24
|
+
"none": [
|
25
|
+
{
|
26
|
+
"author": "lingfangao@hotmail.com",
|
27
|
+
"package": "@fluentui/react-utilities",
|
28
|
+
"commit": "fff6a012b8a3b165b364ef2c412b9edee0bc05a9",
|
29
|
+
"comment": "Add eslint-ignore"
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"date": "Mon, 23 May 2022 12:13:58 GMT",
|
36
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.9",
|
37
|
+
"version": "9.0.0-rc.9",
|
38
|
+
"comments": {
|
39
|
+
"prerelease": [
|
40
|
+
{
|
41
|
+
"author": "martinhochel@microsoft.com",
|
42
|
+
"package": "@fluentui/react-utilities",
|
43
|
+
"commit": "e7b70cb06f4422e5574993fd2ad44d9073647417",
|
44
|
+
"comment": "feat: ship rolluped only dts"
|
45
|
+
}
|
46
|
+
]
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"date": "Thu, 05 May 2022 18:26:28 GMT",
|
51
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.8",
|
52
|
+
"version": "9.0.0-rc.8",
|
53
|
+
"comments": {
|
54
|
+
"prerelease": [
|
55
|
+
{
|
56
|
+
"author": "bsunderhus@microsoft.com",
|
57
|
+
"package": "@fluentui/react-utilities",
|
58
|
+
"commit": "378e25474622fdeb0891bb3c0a644e88098d8c3f",
|
59
|
+
"comment": "feat: add time element on nativeElementMap"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"author": "beachball",
|
63
|
+
"package": "@fluentui/react-utilities",
|
64
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.6",
|
65
|
+
"commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
|
66
|
+
}
|
67
|
+
]
|
68
|
+
}
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"date": "Wed, 04 May 2022 13:26:36 GMT",
|
72
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.7",
|
73
|
+
"version": "9.0.0-rc.7",
|
74
|
+
"comments": {
|
75
|
+
"none": [
|
76
|
+
{
|
77
|
+
"author": "tristan.watanabe@gmail.com",
|
78
|
+
"package": "@fluentui/react-utilities",
|
79
|
+
"commit": "8ec3d32fa26e6cf803ab9d18671fd51ba06c74ab",
|
80
|
+
"comment": "react-utilities: Move to new common folder."
|
81
|
+
}
|
82
|
+
],
|
83
|
+
"prerelease": [
|
84
|
+
{
|
85
|
+
"author": "beachball",
|
86
|
+
"package": "@fluentui/react-utilities",
|
87
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.5",
|
88
|
+
"commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
|
89
|
+
}
|
90
|
+
]
|
91
|
+
}
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"date": "Tue, 19 Apr 2022 19:17:05 GMT",
|
95
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.6",
|
96
|
+
"version": "9.0.0-rc.6",
|
97
|
+
"comments": {
|
98
|
+
"none": [
|
99
|
+
{
|
100
|
+
"author": "mgodbolt@microsoft.com",
|
101
|
+
"package": "@fluentui/react-utilities",
|
102
|
+
"commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
|
103
|
+
"comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"author": "elcraig@microsoft.com",
|
107
|
+
"package": "@fluentui/react-utilities",
|
108
|
+
"commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
|
109
|
+
"comment": "Update React dev deps and hoist them to the repo root"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"prerelease": [
|
113
|
+
{
|
114
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
115
|
+
"package": "@fluentui/react-utilities",
|
116
|
+
"commit": "9c8592decacb9f7b1dc608a03c9f991918806008",
|
117
|
+
"comment": "Removing star exports at src/index.ts"
|
118
|
+
}
|
119
|
+
]
|
120
|
+
}
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"date": "Fri, 04 Mar 2022 05:17:32 GMT",
|
124
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.5",
|
125
|
+
"version": "9.0.0-rc.5",
|
126
|
+
"comments": {
|
127
|
+
"prerelease": [
|
128
|
+
{
|
129
|
+
"author": "dzearing@microsoft.com",
|
130
|
+
"package": "@fluentui/react-utilities",
|
131
|
+
"commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
|
132
|
+
"comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
|
133
|
+
},
|
10
134
|
{
|
11
135
|
"author": "email not defined",
|
12
136
|
"package": "@fluentui/react-utilities",
|
13
|
-
"
|
14
|
-
"
|
137
|
+
"commit": "852bd412ad6a682db9dfa44b7275f23fcaccb298",
|
138
|
+
"comment": "Adding helper type to define slot class names."
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"author": "lingfangao@hotmail.com",
|
142
|
+
"package": "@fluentui/react-utilities",
|
143
|
+
"commit": "294f4b7b4cd562451a8d4edfacde3b1872d2b76f",
|
144
|
+
"comment": "fix(shouldPreventDefaultOnKeyDown): return false for events that are default prevented"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"author": "beachball",
|
148
|
+
"package": "@fluentui/react-utilities",
|
149
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.4",
|
150
|
+
"commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
|
151
|
+
}
|
152
|
+
]
|
153
|
+
}
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"date": "Tue, 01 Mar 2022 02:17:39 GMT",
|
157
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.4",
|
158
|
+
"version": "9.0.0-rc.4",
|
159
|
+
"comments": {
|
160
|
+
"prerelease": [
|
161
|
+
{
|
162
|
+
"author": "seanmonahan@microsoft.com",
|
163
|
+
"package": "@fluentui/react-utilities",
|
164
|
+
"commit": "1940164411685db2967f8452406bb703b94ec266",
|
165
|
+
"comment": "Ignore prefix in useId() when it is falsey."
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"author": "behowell@microsoft.com",
|
169
|
+
"package": "@fluentui/react-utilities",
|
170
|
+
"commit": "ae02eeac8cef2cd5decad088d0e45f296d400ef1",
|
171
|
+
"comment": "Add fieldset to getNativeElementProps"
|
172
|
+
}
|
173
|
+
]
|
174
|
+
}
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"date": "Fri, 18 Feb 2022 13:35:37 GMT",
|
178
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.3",
|
179
|
+
"version": "9.0.0-rc.3",
|
180
|
+
"comments": {
|
181
|
+
"prerelease": [
|
182
|
+
{
|
183
|
+
"author": "lingfangao@hotmail.com",
|
184
|
+
"package": "@fluentui/react-utilities",
|
185
|
+
"commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
|
186
|
+
"comment": "fix: Source maps contain original source code"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"author": "beachball",
|
190
|
+
"package": "@fluentui/react-utilities",
|
191
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.3",
|
192
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
193
|
+
}
|
194
|
+
]
|
195
|
+
}
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"date": "Thu, 10 Feb 2022 08:50:32 GMT",
|
199
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.1",
|
200
|
+
"version": "9.0.0-rc.1",
|
201
|
+
"comments": {
|
202
|
+
"prerelease": [
|
203
|
+
{
|
204
|
+
"author": "behowell@microsoft.com",
|
205
|
+
"package": "@fluentui/react-utilities",
|
206
|
+
"commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
|
207
|
+
"comment": "Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"author": "behowell@microsoft.com",
|
211
|
+
"package": "@fluentui/react-utilities",
|
212
|
+
"commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
|
213
|
+
"comment": "getSlots: remove slotNames param, and infer from state.components instead"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"author": "olfedias@microsoft.com",
|
217
|
+
"package": "@fluentui/react-utilities",
|
218
|
+
"commit": "d2eb57808a403b70845a732a62b55aa64d66b2a0",
|
219
|
+
"comment": "add useTriggerElement() hook"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"author": "bsunderhus@microsoft.com",
|
223
|
+
"package": "@fluentui/react-utilities",
|
224
|
+
"commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
|
225
|
+
"comment": "Removes nullRender from react-utilities"
|
15
226
|
},
|
16
227
|
{
|
17
228
|
"author": "olfedias@microsoft.com",
|
18
229
|
"package": "@fluentui/react-utilities",
|
19
|
-
"
|
20
|
-
"
|
230
|
+
"commit": "aa6cfd8ac825b5a280206808101de549a91094fc",
|
231
|
+
"comment": "update applyTriggerPropsToChildren() to return React.ReactElement or null"
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"author": "behowell@microsoft.com",
|
235
|
+
"package": "@fluentui/react-utilities",
|
236
|
+
"commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
|
237
|
+
"comment": "Refactor component Slot typings"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
241
|
+
"package": "@fluentui/react-utilities",
|
242
|
+
"commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
|
243
|
+
"comment": "Adding ComponentSlotProps to allow ref to be passed in composite components."
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
247
|
+
"package": "@fluentui/react-utilities",
|
248
|
+
"commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
|
249
|
+
"comment": "Renaming most *Shorthand* composition types to *SlotProps* so they better reflect what the types do."
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"author": "lingfangao@hotmail.com",
|
253
|
+
"package": "@fluentui/react-utilities",
|
254
|
+
"commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
|
255
|
+
"comment": "Bump Fluent UI packages to 9.0.0-rc"
|
256
|
+
},
|
257
|
+
{
|
258
|
+
"author": "behowell@microsoft.com",
|
259
|
+
"package": "@fluentui/react-utilities",
|
260
|
+
"commit": "f30e7585a8d2abd9db06c4076f39a779008b0eca",
|
261
|
+
"comment": "Update trigger utilities to handle nested triggers"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"author": "elcraig@microsoft.com",
|
265
|
+
"package": "@fluentui/react-utilities",
|
266
|
+
"commit": "39ce3cbcf15ce2619649e1eddccf932736ceac07",
|
267
|
+
"comment": "[breaking] Remove useControllableValue hook (use useControllableState instead)"
|
21
268
|
},
|
22
269
|
{
|
23
270
|
"author": "beachball",
|
24
271
|
"package": "@fluentui/react-utilities",
|
25
|
-
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-
|
26
|
-
"commit": "
|
272
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.1",
|
273
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"none": [
|
277
|
+
{
|
278
|
+
"author": "elcraig@microsoft.com",
|
279
|
+
"package": "@fluentui/react-utilities",
|
280
|
+
"commit": "3360b45ec159250b1346c91afad7dce138e6bc20",
|
281
|
+
"comment": "Update API file to version generated by typescript 4.3"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"author": "olfedias@microsoft.com",
|
285
|
+
"package": "@fluentui/react-utilities",
|
286
|
+
"commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
|
287
|
+
"comment": "remove inline-style-expand-shorthand from tsconfigs"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"author": "martinhochel@microsoft.com",
|
291
|
+
"package": "@fluentui/react-utilities",
|
292
|
+
"commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
|
293
|
+
"comment": "chore: use storybook runner for all vNext packages"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"author": "seanmonahan@microsoft.com",
|
297
|
+
"package": "@fluentui/react-utilities",
|
298
|
+
"commit": "6404bef16cebf1f67b9b80a9f6d5f605f9873df1",
|
299
|
+
"comment": "Update getSlots() docs."
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"author": "lingfangao@hotmail.com",
|
303
|
+
"package": "@fluentui/react-utilities",
|
304
|
+
"commit": "a4e048a0e03ddd676670da516e3a6612b26ea500",
|
305
|
+
"comment": "chore: Remove enzyme from react-utilities tests"
|
306
|
+
}
|
307
|
+
]
|
308
|
+
}
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"date": "Thu, 25 Nov 2021 08:34:09 GMT",
|
312
|
+
"tag": "@fluentui/react-utilities_v9.0.0-beta.4",
|
313
|
+
"version": "9.0.0-beta.4",
|
314
|
+
"comments": {
|
315
|
+
"none": [
|
316
|
+
{
|
317
|
+
"author": "lingfangao@hotmail.com",
|
318
|
+
"package": "@fluentui/react-utilities",
|
319
|
+
"commit": "718e63006d8d07d24efab9c32942041963d78dc7",
|
320
|
+
"comment": "Migrate package to use solution style ts-configs"
|
321
|
+
}
|
322
|
+
],
|
323
|
+
"prerelease": [
|
324
|
+
{
|
325
|
+
"author": "behowell@microsoft.com",
|
326
|
+
"package": "@fluentui/react-utilities",
|
327
|
+
"commit": "99adff5a9aab9086e8bc4737040654ab23f0febe",
|
328
|
+
"comment": "Update utility types to support specifying a primary slot other than root"
|
329
|
+
}
|
330
|
+
]
|
331
|
+
}
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"date": "Fri, 12 Nov 2021 13:25:10 GMT",
|
335
|
+
"tag": "@fluentui/react-utilities_v9.0.0-beta.3",
|
336
|
+
"version": "9.0.0-beta.3",
|
337
|
+
"comments": {
|
338
|
+
"none": [
|
339
|
+
{
|
340
|
+
"author": "lingfangao@hotmail.com",
|
341
|
+
"package": "@fluentui/react-utilities",
|
342
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
343
|
+
"comment": "Remove beta release tag"
|
344
|
+
}
|
345
|
+
],
|
346
|
+
"prerelease": [
|
347
|
+
{
|
348
|
+
"author": "gcox@microsoft.com",
|
349
|
+
"package": "@fluentui/react-utilities",
|
350
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
351
|
+
"comment": "Updated beta and RC components to ES2019"
|
352
|
+
}
|
353
|
+
]
|
354
|
+
}
|
355
|
+
},
|
356
|
+
{
|
357
|
+
"date": "Wed, 27 Oct 2021 12:14:24 GMT",
|
358
|
+
"tag": "@fluentui/react-utilities_v9.0.0-beta.2",
|
359
|
+
"version": "9.0.0-beta.2",
|
360
|
+
"comments": {
|
361
|
+
"prerelease": [
|
362
|
+
{
|
363
|
+
"author": "olfedias@microsoft.com",
|
364
|
+
"package": "@fluentui/react-utilities",
|
365
|
+
"commit": "5cd2c86d041588c98747f16902ff99a7b41c10ac",
|
366
|
+
"comment": "remove compat utilities and types"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"author": "lingfangao@hotmail.com",
|
370
|
+
"package": "@fluentui/react-utilities",
|
371
|
+
"commit": "b5b740100714724214e097fae2f7c1f51f294e35",
|
372
|
+
"comment": "fix(getNativeElementPrps): Add support for `onAuxClick`"
|
27
373
|
}
|
28
374
|
]
|
29
375
|
}
|