@fluentui/react-utilities 9.0.0-rc.5 → 9.0.0-rc.6
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 +30 -1
- package/CHANGELOG.md +11 -2
- package/lib/hooks/index.d.ts +2 -2
- package/lib/hooks/index.js +2 -2
- package/lib/hooks/index.js.map +1 -1
- package/lib/index.d.ts +8 -4
- package/lib/index.js +5 -4
- package/lib/index.js.map +1 -1
- package/lib-commonjs/hooks/index.d.ts +2 -2
- package/lib-commonjs/hooks/index.js +4 -4
- package/lib-commonjs/hooks/index.js.map +1 -1
- package/lib-commonjs/index.d.ts +8 -4
- package/lib-commonjs/index.js +376 -5
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +2 -6
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,36 @@
|
|
2
2
|
"name": "@fluentui/react-utilities",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Tue, 19 Apr 2022 19:14:15 GMT",
|
6
|
+
"tag": "@fluentui/react-utilities_v9.0.0-rc.6",
|
7
|
+
"version": "9.0.0-rc.6",
|
8
|
+
"comments": {
|
9
|
+
"none": [
|
10
|
+
{
|
11
|
+
"author": "mgodbolt@microsoft.com",
|
12
|
+
"package": "@fluentui/react-utilities",
|
13
|
+
"commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
|
14
|
+
"comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "elcraig@microsoft.com",
|
18
|
+
"package": "@fluentui/react-utilities",
|
19
|
+
"commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
|
20
|
+
"comment": "Update React dev deps and hoist them to the repo root"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"prerelease": [
|
24
|
+
{
|
25
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
26
|
+
"package": "@fluentui/react-utilities",
|
27
|
+
"commit": "9c8592decacb9f7b1dc608a03c9f991918806008",
|
28
|
+
"comment": "Removing star exports at src/index.ts"
|
29
|
+
}
|
30
|
+
]
|
31
|
+
}
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"date": "Fri, 04 Mar 2022 05:17:32 GMT",
|
6
35
|
"tag": "@fluentui/react-utilities_v9.0.0-rc.5",
|
7
36
|
"version": "9.0.0-rc.5",
|
8
37
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,21 @@
|
|
1
1
|
# Change Log - @fluentui/react-utilities
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Tue, 19 Apr 2022 19:14:15 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.6)
|
8
|
+
|
9
|
+
Tue, 19 Apr 2022 19:14:15 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.5..@fluentui/react-utilities_v9.0.0-rc.6)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Removing star exports at src/index.ts ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by Humberto.Morimoto@microsoft.com)
|
15
|
+
|
7
16
|
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.0.0-rc.5)
|
8
17
|
|
9
|
-
Fri, 04 Mar 2022 05:
|
18
|
+
Fri, 04 Mar 2022 05:17:32 GMT
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.0.0-rc.4..@fluentui/react-utilities_v9.0.0-rc.5)
|
11
20
|
|
12
21
|
### Changes
|
package/lib/hooks/index.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
export * from './useControllableState';
|
2
1
|
export * from './useBoolean';
|
3
2
|
export * from './useConst';
|
3
|
+
export * from './useControllableState';
|
4
4
|
export * from './useEventCallback';
|
5
5
|
export * from './useFirstMount';
|
6
|
+
export * from './useForceUpdate';
|
6
7
|
export * from './useId';
|
7
8
|
export * from './useIsomorphicLayoutEffect';
|
8
9
|
export * from './useMergedEventCallbacks';
|
@@ -13,4 +14,3 @@ export * from './useOnScrollOutside';
|
|
13
14
|
export * from './usePrevious';
|
14
15
|
export * from './useTimeout';
|
15
16
|
export * from './useUnmount';
|
16
|
-
export * from './useForceUpdate';
|
package/lib/hooks/index.js
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
export * from './useControllableState';
|
2
1
|
export * from './useBoolean';
|
3
2
|
export * from './useConst';
|
3
|
+
export * from './useControllableState';
|
4
4
|
export * from './useEventCallback';
|
5
5
|
export * from './useFirstMount';
|
6
|
+
export * from './useForceUpdate';
|
6
7
|
export * from './useId';
|
7
8
|
export * from './useIsomorphicLayoutEffect';
|
8
9
|
export * from './useMergedEventCallbacks';
|
@@ -13,5 +14,4 @@ export * from './useOnScrollOutside';
|
|
13
14
|
export * from './usePrevious';
|
14
15
|
export * from './useTimeout';
|
15
16
|
export * from './useUnmount';
|
16
|
-
export * from './useForceUpdate';
|
17
17
|
//# sourceMappingURL=index.js.map
|
package/lib/hooks/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC","sourcesContent":["export * from './useBoolean';\nexport * from './useConst';\nexport * from './useControllableState';\nexport * from './useEventCallback';\nexport * from './useFirstMount';\nexport * from './useForceUpdate';\nexport * from './useId';\nexport * from './useIsomorphicLayoutEffect';\nexport * from './useMergedEventCallbacks';\nexport * from './useMergedRefs';\nexport * from './useMount';\nexport * from './useOnClickOutside';\nexport * from './useOnScrollOutside';\nexport * from './usePrevious';\nexport * from './useTimeout';\nexport * from './useUnmount';\n"]}
|
package/lib/index.d.ts
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { getSlots, resolveShorthand } from './compose/index';
|
2
|
+
export type { AsIntrinsicElement, ComponentProps, ComponentState, ExtractSlotProps, ForwardRefComponent, IsSingleton, PropsWithoutRef, ReplaceNullWithUndefined, ResolveShorthandFunction, ResolveShorthandOptions, Slot, Slots, SlotClassNames, SlotPropsRecord, SlotRenderFunction, SlotShorthandValue, UnionToIntersection, UnknownSlotProps, } from './compose/index';
|
3
|
+
export { resetIdsForTests, useBoolean, useConst, useControllableState, useEventCallback, useFirstMount, useForceUpdate, useId, useIsomorphicLayoutEffect, useMergedEventCallbacks, useMergedRefs, useMount, useOnClickOutside, useOnScrollOutside, usePrevious, useTimeout, useUnmount, } from './hooks/index';
|
4
|
+
export type { RefObjectFunction, UseBooleanCallbacks, UseControllableStateOptions, UseOnClickOrScrollOutsideOptions, } from './hooks/index';
|
5
|
+
export { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';
|
6
|
+
export type { SSRContextValue } from './ssr/index';
|
7
|
+
export { anchorProperties, applyTriggerPropsToChildren, audioProperties, baseElementEvents, baseElementProperties, buttonProperties, clamp, colGroupProperties, colProperties, divProperties, fieldsetProperties, formProperties, getNativeElementProps, getNativeProps, getPartitionedNativeProps, getRTLSafeKey, getTriggerChild, htmlElementProperties, iframeProperties, imageProperties, imgProperties, inputProperties, isFluentTrigger, labelProperties, liProperties, olProperties, omit, optionProperties, selectProperties, shouldPreventDefaultOnKeyDown, tableProperties, tdProperties, textAreaProperties, thProperties, trProperties, videoProperties, } from './utils/index';
|
8
|
+
export type { FluentTriggerComponent } from './utils/index';
|
package/lib/index.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { getSlots, resolveShorthand } from './compose/index';
|
2
|
+
export { resetIdsForTests, useBoolean, useConst, useControllableState, useEventCallback, useFirstMount, useForceUpdate, useId, useIsomorphicLayoutEffect, useMergedEventCallbacks, useMergedRefs, useMount, useOnClickOutside, useOnScrollOutside, usePrevious, useTimeout, useUnmount } from './hooks/index';
|
3
|
+
export { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';
|
4
|
+
export { anchorProperties, applyTriggerPropsToChildren, audioProperties, baseElementEvents, baseElementProperties, buttonProperties, clamp, colGroupProperties, colProperties, divProperties, fieldsetProperties, formProperties, getNativeElementProps, getNativeProps, getPartitionedNativeProps, getRTLSafeKey, getTriggerChild, htmlElementProperties, iframeProperties, // eslint-disable-next-line deprecation/deprecation
|
5
|
+
imageProperties, imgProperties, inputProperties, isFluentTrigger, labelProperties, liProperties, olProperties, omit, optionProperties, selectProperties, shouldPreventDefaultOnKeyDown, tableProperties, tdProperties, textAreaProperties, thProperties, trProperties, videoProperties } from './utils/index';
|
5
6
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,SAAS,QAAT,EAAmB,gBAAnB,QAA2C,iBAA3C;AAsBA,SACE,gBADF,EAEE,UAFF,EAGE,QAHF,EAIE,oBAJF,EAKE,gBALF,EAME,aANF,EAOE,cAPF,EAQE,KARF,EASE,yBATF,EAUE,uBAVF,EAWE,aAXF,EAYE,QAZF,EAaE,iBAbF,EAcE,kBAdF,EAeE,WAfF,EAgBE,UAhBF,EAiBE,UAjBF,QAkBO,eAlBP;AA0BA,SAAS,SAAT,EAAoB,sBAApB,EAA4C,QAA5C,EAAsD,aAAtD,EAAqE,UAArE,EAAiF,WAAjF,QAAoG,aAApG;AAGA,SACE,gBADF,EAEE,2BAFF,EAGE,eAHF,EAIE,iBAJF,EAKE,qBALF,EAME,gBANF,EAOE,KAPF,EAQE,kBARF,EASE,aATF,EAUE,aAVF,EAWE,kBAXF,EAYE,cAZF,EAaE,qBAbF,EAcE,cAdF,EAeE,yBAfF,EAgBE,aAhBF,EAiBE,eAjBF,EAkBE,qBAlBF,EAmBE,gBAnBF,EAoBE;AACA,eArBF,EAsBE,aAtBF,EAuBE,eAvBF,EAwBE,eAxBF,EAyBE,eAzBF,EA0BE,YA1BF,EA2BE,YA3BF,EA4BE,IA5BF,EA6BE,gBA7BF,EA8BE,gBA9BF,EA+BE,6BA/BF,EAgCE,eAhCF,EAiCE,YAjCF,EAkCE,kBAlCF,EAmCE,YAnCF,EAoCE,YApCF,EAqCE,eArCF,QAsCO,eAtCP","sourcesContent":["export { getSlots, resolveShorthand } from './compose/index';\nexport type {\n AsIntrinsicElement,\n ComponentProps,\n ComponentState,\n ExtractSlotProps,\n ForwardRefComponent,\n IsSingleton,\n PropsWithoutRef,\n ReplaceNullWithUndefined,\n ResolveShorthandFunction,\n ResolveShorthandOptions,\n Slot,\n Slots,\n SlotClassNames,\n SlotPropsRecord,\n SlotRenderFunction,\n SlotShorthandValue,\n UnionToIntersection,\n UnknownSlotProps,\n} from './compose/index';\n\nexport {\n resetIdsForTests,\n useBoolean,\n useConst,\n useControllableState,\n useEventCallback,\n useFirstMount,\n useForceUpdate,\n useId,\n useIsomorphicLayoutEffect,\n useMergedEventCallbacks,\n useMergedRefs,\n useMount,\n useOnClickOutside,\n useOnScrollOutside,\n usePrevious,\n useTimeout,\n useUnmount,\n} from './hooks/index';\nexport type {\n RefObjectFunction,\n UseBooleanCallbacks,\n UseControllableStateOptions,\n UseOnClickOrScrollOutsideOptions,\n} from './hooks/index';\n\nexport { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';\nexport type { SSRContextValue } from './ssr/index';\n\nexport {\n anchorProperties,\n applyTriggerPropsToChildren,\n audioProperties,\n baseElementEvents,\n baseElementProperties,\n buttonProperties,\n clamp,\n colGroupProperties,\n colProperties,\n divProperties,\n fieldsetProperties,\n formProperties,\n getNativeElementProps,\n getNativeProps,\n getPartitionedNativeProps,\n getRTLSafeKey,\n getTriggerChild,\n htmlElementProperties,\n iframeProperties,\n // eslint-disable-next-line deprecation/deprecation\n imageProperties,\n imgProperties,\n inputProperties,\n isFluentTrigger,\n labelProperties,\n liProperties,\n olProperties,\n omit,\n optionProperties,\n selectProperties,\n shouldPreventDefaultOnKeyDown,\n tableProperties,\n tdProperties,\n textAreaProperties,\n thProperties,\n trProperties,\n videoProperties,\n} from './utils/index';\nexport type { FluentTriggerComponent } from './utils/index';\n"],"sourceRoot":"../src/"}
|
@@ -1,8 +1,9 @@
|
|
1
|
-
export * from './useControllableState';
|
2
1
|
export * from './useBoolean';
|
3
2
|
export * from './useConst';
|
3
|
+
export * from './useControllableState';
|
4
4
|
export * from './useEventCallback';
|
5
5
|
export * from './useFirstMount';
|
6
|
+
export * from './useForceUpdate';
|
6
7
|
export * from './useId';
|
7
8
|
export * from './useIsomorphicLayoutEffect';
|
8
9
|
export * from './useMergedEventCallbacks';
|
@@ -13,4 +14,3 @@ export * from './useOnScrollOutside';
|
|
13
14
|
export * from './usePrevious';
|
14
15
|
export * from './useTimeout';
|
15
16
|
export * from './useUnmount';
|
16
|
-
export * from './useForceUpdate';
|
@@ -6,16 +6,18 @@ Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
|
7
7
|
const tslib_1 = /*#__PURE__*/require("tslib");
|
8
8
|
|
9
|
-
tslib_1.__exportStar(require("./useControllableState"), exports);
|
10
|
-
|
11
9
|
tslib_1.__exportStar(require("./useBoolean"), exports);
|
12
10
|
|
13
11
|
tslib_1.__exportStar(require("./useConst"), exports);
|
14
12
|
|
13
|
+
tslib_1.__exportStar(require("./useControllableState"), exports);
|
14
|
+
|
15
15
|
tslib_1.__exportStar(require("./useEventCallback"), exports);
|
16
16
|
|
17
17
|
tslib_1.__exportStar(require("./useFirstMount"), exports);
|
18
18
|
|
19
|
+
tslib_1.__exportStar(require("./useForceUpdate"), exports);
|
20
|
+
|
19
21
|
tslib_1.__exportStar(require("./useId"), exports);
|
20
22
|
|
21
23
|
tslib_1.__exportStar(require("./useIsomorphicLayoutEffect"), exports);
|
@@ -35,6 +37,4 @@ tslib_1.__exportStar(require("./usePrevious"), exports);
|
|
35
37
|
tslib_1.__exportStar(require("./useTimeout"), exports);
|
36
38
|
|
37
39
|
tslib_1.__exportStar(require("./useUnmount"), exports);
|
38
|
-
|
39
|
-
tslib_1.__exportStar(require("./useForceUpdate"), exports);
|
40
40
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["hooks/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,
|
1
|
+
{"version":3,"sources":["hooks/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,YAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,wBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,oBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,iBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,kBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,SAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,6BAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,2BAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,iBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,YAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,qBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,sBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './useBoolean';\nexport * from './useConst';\nexport * from './useControllableState';\nexport * from './useEventCallback';\nexport * from './useFirstMount';\nexport * from './useForceUpdate';\nexport * from './useId';\nexport * from './useIsomorphicLayoutEffect';\nexport * from './useMergedEventCallbacks';\nexport * from './useMergedRefs';\nexport * from './useMount';\nexport * from './useOnClickOutside';\nexport * from './useOnScrollOutside';\nexport * from './usePrevious';\nexport * from './useTimeout';\nexport * from './useUnmount';\n"],"sourceRoot":"../src/"}
|
package/lib-commonjs/index.d.ts
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
1
|
+
export { getSlots, resolveShorthand } from './compose/index';
|
2
|
+
export type { AsIntrinsicElement, ComponentProps, ComponentState, ExtractSlotProps, ForwardRefComponent, IsSingleton, PropsWithoutRef, ReplaceNullWithUndefined, ResolveShorthandFunction, ResolveShorthandOptions, Slot, Slots, SlotClassNames, SlotPropsRecord, SlotRenderFunction, SlotShorthandValue, UnionToIntersection, UnknownSlotProps, } from './compose/index';
|
3
|
+
export { resetIdsForTests, useBoolean, useConst, useControllableState, useEventCallback, useFirstMount, useForceUpdate, useId, useIsomorphicLayoutEffect, useMergedEventCallbacks, useMergedRefs, useMount, useOnClickOutside, useOnScrollOutside, usePrevious, useTimeout, useUnmount, } from './hooks/index';
|
4
|
+
export type { RefObjectFunction, UseBooleanCallbacks, UseControllableStateOptions, UseOnClickOrScrollOutsideOptions, } from './hooks/index';
|
5
|
+
export { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';
|
6
|
+
export type { SSRContextValue } from './ssr/index';
|
7
|
+
export { anchorProperties, applyTriggerPropsToChildren, audioProperties, baseElementEvents, baseElementProperties, buttonProperties, clamp, colGroupProperties, colProperties, divProperties, fieldsetProperties, formProperties, getNativeElementProps, getNativeProps, getPartitionedNativeProps, getRTLSafeKey, getTriggerChild, htmlElementProperties, iframeProperties, imageProperties, imgProperties, inputProperties, isFluentTrigger, labelProperties, liProperties, olProperties, omit, optionProperties, selectProperties, shouldPreventDefaultOnKeyDown, tableProperties, tdProperties, textAreaProperties, thProperties, trProperties, videoProperties, } from './utils/index';
|
8
|
+
export type { FluentTriggerComponent } from './utils/index';
|
package/lib-commonjs/index.js
CHANGED
@@ -3,14 +3,385 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
+
exports.liProperties = exports.labelProperties = exports.isFluentTrigger = exports.inputProperties = exports.imgProperties = exports.imageProperties = exports.iframeProperties = exports.htmlElementProperties = exports.getTriggerChild = exports.getRTLSafeKey = exports.getPartitionedNativeProps = exports.getNativeProps = exports.getNativeElementProps = exports.formProperties = exports.fieldsetProperties = exports.divProperties = exports.colProperties = exports.colGroupProperties = exports.clamp = exports.buttonProperties = exports.baseElementProperties = exports.baseElementEvents = exports.audioProperties = exports.applyTriggerPropsToChildren = exports.anchorProperties = exports.SSRProvider = exports.SSRContext = exports.useSSRContext = exports.useIsSSR = exports.defaultSSRContextValue = exports.canUseDOM = exports.useUnmount = exports.useTimeout = exports.usePrevious = exports.useOnScrollOutside = exports.useOnClickOutside = exports.useMount = exports.useMergedRefs = exports.useMergedEventCallbacks = exports.useIsomorphicLayoutEffect = exports.useId = exports.useForceUpdate = exports.useFirstMount = exports.useEventCallback = exports.useControllableState = exports.useConst = exports.useBoolean = exports.resetIdsForTests = exports.resolveShorthand = exports.getSlots = void 0;
|
7
|
+
exports.videoProperties = exports.trProperties = exports.thProperties = exports.textAreaProperties = exports.tdProperties = exports.tableProperties = exports.shouldPreventDefaultOnKeyDown = exports.selectProperties = exports.optionProperties = exports.omit = exports.olProperties = void 0;
|
6
8
|
|
7
|
-
|
9
|
+
var index_1 = /*#__PURE__*/require("./compose/index");
|
8
10
|
|
9
|
-
|
11
|
+
Object.defineProperty(exports, "getSlots", {
|
12
|
+
enumerable: true,
|
13
|
+
get: function () {
|
14
|
+
return index_1.getSlots;
|
15
|
+
}
|
16
|
+
});
|
17
|
+
Object.defineProperty(exports, "resolveShorthand", {
|
18
|
+
enumerable: true,
|
19
|
+
get: function () {
|
20
|
+
return index_1.resolveShorthand;
|
21
|
+
}
|
22
|
+
});
|
23
|
+
|
24
|
+
var index_2 = /*#__PURE__*/require("./hooks/index");
|
25
|
+
|
26
|
+
Object.defineProperty(exports, "resetIdsForTests", {
|
27
|
+
enumerable: true,
|
28
|
+
get: function () {
|
29
|
+
return index_2.resetIdsForTests;
|
30
|
+
}
|
31
|
+
});
|
32
|
+
Object.defineProperty(exports, "useBoolean", {
|
33
|
+
enumerable: true,
|
34
|
+
get: function () {
|
35
|
+
return index_2.useBoolean;
|
36
|
+
}
|
37
|
+
});
|
38
|
+
Object.defineProperty(exports, "useConst", {
|
39
|
+
enumerable: true,
|
40
|
+
get: function () {
|
41
|
+
return index_2.useConst;
|
42
|
+
}
|
43
|
+
});
|
44
|
+
Object.defineProperty(exports, "useControllableState", {
|
45
|
+
enumerable: true,
|
46
|
+
get: function () {
|
47
|
+
return index_2.useControllableState;
|
48
|
+
}
|
49
|
+
});
|
50
|
+
Object.defineProperty(exports, "useEventCallback", {
|
51
|
+
enumerable: true,
|
52
|
+
get: function () {
|
53
|
+
return index_2.useEventCallback;
|
54
|
+
}
|
55
|
+
});
|
56
|
+
Object.defineProperty(exports, "useFirstMount", {
|
57
|
+
enumerable: true,
|
58
|
+
get: function () {
|
59
|
+
return index_2.useFirstMount;
|
60
|
+
}
|
61
|
+
});
|
62
|
+
Object.defineProperty(exports, "useForceUpdate", {
|
63
|
+
enumerable: true,
|
64
|
+
get: function () {
|
65
|
+
return index_2.useForceUpdate;
|
66
|
+
}
|
67
|
+
});
|
68
|
+
Object.defineProperty(exports, "useId", {
|
69
|
+
enumerable: true,
|
70
|
+
get: function () {
|
71
|
+
return index_2.useId;
|
72
|
+
}
|
73
|
+
});
|
74
|
+
Object.defineProperty(exports, "useIsomorphicLayoutEffect", {
|
75
|
+
enumerable: true,
|
76
|
+
get: function () {
|
77
|
+
return index_2.useIsomorphicLayoutEffect;
|
78
|
+
}
|
79
|
+
});
|
80
|
+
Object.defineProperty(exports, "useMergedEventCallbacks", {
|
81
|
+
enumerable: true,
|
82
|
+
get: function () {
|
83
|
+
return index_2.useMergedEventCallbacks;
|
84
|
+
}
|
85
|
+
});
|
86
|
+
Object.defineProperty(exports, "useMergedRefs", {
|
87
|
+
enumerable: true,
|
88
|
+
get: function () {
|
89
|
+
return index_2.useMergedRefs;
|
90
|
+
}
|
91
|
+
});
|
92
|
+
Object.defineProperty(exports, "useMount", {
|
93
|
+
enumerable: true,
|
94
|
+
get: function () {
|
95
|
+
return index_2.useMount;
|
96
|
+
}
|
97
|
+
});
|
98
|
+
Object.defineProperty(exports, "useOnClickOutside", {
|
99
|
+
enumerable: true,
|
100
|
+
get: function () {
|
101
|
+
return index_2.useOnClickOutside;
|
102
|
+
}
|
103
|
+
});
|
104
|
+
Object.defineProperty(exports, "useOnScrollOutside", {
|
105
|
+
enumerable: true,
|
106
|
+
get: function () {
|
107
|
+
return index_2.useOnScrollOutside;
|
108
|
+
}
|
109
|
+
});
|
110
|
+
Object.defineProperty(exports, "usePrevious", {
|
111
|
+
enumerable: true,
|
112
|
+
get: function () {
|
113
|
+
return index_2.usePrevious;
|
114
|
+
}
|
115
|
+
});
|
116
|
+
Object.defineProperty(exports, "useTimeout", {
|
117
|
+
enumerable: true,
|
118
|
+
get: function () {
|
119
|
+
return index_2.useTimeout;
|
120
|
+
}
|
121
|
+
});
|
122
|
+
Object.defineProperty(exports, "useUnmount", {
|
123
|
+
enumerable: true,
|
124
|
+
get: function () {
|
125
|
+
return index_2.useUnmount;
|
126
|
+
}
|
127
|
+
});
|
128
|
+
|
129
|
+
var index_3 = /*#__PURE__*/require("./ssr/index");
|
130
|
+
|
131
|
+
Object.defineProperty(exports, "canUseDOM", {
|
132
|
+
enumerable: true,
|
133
|
+
get: function () {
|
134
|
+
return index_3.canUseDOM;
|
135
|
+
}
|
136
|
+
});
|
137
|
+
Object.defineProperty(exports, "defaultSSRContextValue", {
|
138
|
+
enumerable: true,
|
139
|
+
get: function () {
|
140
|
+
return index_3.defaultSSRContextValue;
|
141
|
+
}
|
142
|
+
});
|
143
|
+
Object.defineProperty(exports, "useIsSSR", {
|
144
|
+
enumerable: true,
|
145
|
+
get: function () {
|
146
|
+
return index_3.useIsSSR;
|
147
|
+
}
|
148
|
+
});
|
149
|
+
Object.defineProperty(exports, "useSSRContext", {
|
150
|
+
enumerable: true,
|
151
|
+
get: function () {
|
152
|
+
return index_3.useSSRContext;
|
153
|
+
}
|
154
|
+
});
|
155
|
+
Object.defineProperty(exports, "SSRContext", {
|
156
|
+
enumerable: true,
|
157
|
+
get: function () {
|
158
|
+
return index_3.SSRContext;
|
159
|
+
}
|
160
|
+
});
|
161
|
+
Object.defineProperty(exports, "SSRProvider", {
|
162
|
+
enumerable: true,
|
163
|
+
get: function () {
|
164
|
+
return index_3.SSRProvider;
|
165
|
+
}
|
166
|
+
});
|
10
167
|
|
11
|
-
|
168
|
+
var index_4 = /*#__PURE__*/require("./utils/index");
|
12
169
|
|
13
|
-
|
170
|
+
Object.defineProperty(exports, "anchorProperties", {
|
171
|
+
enumerable: true,
|
172
|
+
get: function () {
|
173
|
+
return index_4.anchorProperties;
|
174
|
+
}
|
175
|
+
});
|
176
|
+
Object.defineProperty(exports, "applyTriggerPropsToChildren", {
|
177
|
+
enumerable: true,
|
178
|
+
get: function () {
|
179
|
+
return index_4.applyTriggerPropsToChildren;
|
180
|
+
}
|
181
|
+
});
|
182
|
+
Object.defineProperty(exports, "audioProperties", {
|
183
|
+
enumerable: true,
|
184
|
+
get: function () {
|
185
|
+
return index_4.audioProperties;
|
186
|
+
}
|
187
|
+
});
|
188
|
+
Object.defineProperty(exports, "baseElementEvents", {
|
189
|
+
enumerable: true,
|
190
|
+
get: function () {
|
191
|
+
return index_4.baseElementEvents;
|
192
|
+
}
|
193
|
+
});
|
194
|
+
Object.defineProperty(exports, "baseElementProperties", {
|
195
|
+
enumerable: true,
|
196
|
+
get: function () {
|
197
|
+
return index_4.baseElementProperties;
|
198
|
+
}
|
199
|
+
});
|
200
|
+
Object.defineProperty(exports, "buttonProperties", {
|
201
|
+
enumerable: true,
|
202
|
+
get: function () {
|
203
|
+
return index_4.buttonProperties;
|
204
|
+
}
|
205
|
+
});
|
206
|
+
Object.defineProperty(exports, "clamp", {
|
207
|
+
enumerable: true,
|
208
|
+
get: function () {
|
209
|
+
return index_4.clamp;
|
210
|
+
}
|
211
|
+
});
|
212
|
+
Object.defineProperty(exports, "colGroupProperties", {
|
213
|
+
enumerable: true,
|
214
|
+
get: function () {
|
215
|
+
return index_4.colGroupProperties;
|
216
|
+
}
|
217
|
+
});
|
218
|
+
Object.defineProperty(exports, "colProperties", {
|
219
|
+
enumerable: true,
|
220
|
+
get: function () {
|
221
|
+
return index_4.colProperties;
|
222
|
+
}
|
223
|
+
});
|
224
|
+
Object.defineProperty(exports, "divProperties", {
|
225
|
+
enumerable: true,
|
226
|
+
get: function () {
|
227
|
+
return index_4.divProperties;
|
228
|
+
}
|
229
|
+
});
|
230
|
+
Object.defineProperty(exports, "fieldsetProperties", {
|
231
|
+
enumerable: true,
|
232
|
+
get: function () {
|
233
|
+
return index_4.fieldsetProperties;
|
234
|
+
}
|
235
|
+
});
|
236
|
+
Object.defineProperty(exports, "formProperties", {
|
237
|
+
enumerable: true,
|
238
|
+
get: function () {
|
239
|
+
return index_4.formProperties;
|
240
|
+
}
|
241
|
+
});
|
242
|
+
Object.defineProperty(exports, "getNativeElementProps", {
|
243
|
+
enumerable: true,
|
244
|
+
get: function () {
|
245
|
+
return index_4.getNativeElementProps;
|
246
|
+
}
|
247
|
+
});
|
248
|
+
Object.defineProperty(exports, "getNativeProps", {
|
249
|
+
enumerable: true,
|
250
|
+
get: function () {
|
251
|
+
return index_4.getNativeProps;
|
252
|
+
}
|
253
|
+
});
|
254
|
+
Object.defineProperty(exports, "getPartitionedNativeProps", {
|
255
|
+
enumerable: true,
|
256
|
+
get: function () {
|
257
|
+
return index_4.getPartitionedNativeProps;
|
258
|
+
}
|
259
|
+
});
|
260
|
+
Object.defineProperty(exports, "getRTLSafeKey", {
|
261
|
+
enumerable: true,
|
262
|
+
get: function () {
|
263
|
+
return index_4.getRTLSafeKey;
|
264
|
+
}
|
265
|
+
});
|
266
|
+
Object.defineProperty(exports, "getTriggerChild", {
|
267
|
+
enumerable: true,
|
268
|
+
get: function () {
|
269
|
+
return index_4.getTriggerChild;
|
270
|
+
}
|
271
|
+
});
|
272
|
+
Object.defineProperty(exports, "htmlElementProperties", {
|
273
|
+
enumerable: true,
|
274
|
+
get: function () {
|
275
|
+
return index_4.htmlElementProperties;
|
276
|
+
}
|
277
|
+
});
|
278
|
+
Object.defineProperty(exports, "iframeProperties", {
|
279
|
+
enumerable: true,
|
280
|
+
get: function () {
|
281
|
+
return index_4.iframeProperties;
|
282
|
+
}
|
283
|
+
}); // eslint-disable-next-line deprecation/deprecation
|
14
284
|
|
15
|
-
|
285
|
+
Object.defineProperty(exports, "imageProperties", {
|
286
|
+
enumerable: true,
|
287
|
+
get: function () {
|
288
|
+
return index_4.imageProperties;
|
289
|
+
}
|
290
|
+
});
|
291
|
+
Object.defineProperty(exports, "imgProperties", {
|
292
|
+
enumerable: true,
|
293
|
+
get: function () {
|
294
|
+
return index_4.imgProperties;
|
295
|
+
}
|
296
|
+
});
|
297
|
+
Object.defineProperty(exports, "inputProperties", {
|
298
|
+
enumerable: true,
|
299
|
+
get: function () {
|
300
|
+
return index_4.inputProperties;
|
301
|
+
}
|
302
|
+
});
|
303
|
+
Object.defineProperty(exports, "isFluentTrigger", {
|
304
|
+
enumerable: true,
|
305
|
+
get: function () {
|
306
|
+
return index_4.isFluentTrigger;
|
307
|
+
}
|
308
|
+
});
|
309
|
+
Object.defineProperty(exports, "labelProperties", {
|
310
|
+
enumerable: true,
|
311
|
+
get: function () {
|
312
|
+
return index_4.labelProperties;
|
313
|
+
}
|
314
|
+
});
|
315
|
+
Object.defineProperty(exports, "liProperties", {
|
316
|
+
enumerable: true,
|
317
|
+
get: function () {
|
318
|
+
return index_4.liProperties;
|
319
|
+
}
|
320
|
+
});
|
321
|
+
Object.defineProperty(exports, "olProperties", {
|
322
|
+
enumerable: true,
|
323
|
+
get: function () {
|
324
|
+
return index_4.olProperties;
|
325
|
+
}
|
326
|
+
});
|
327
|
+
Object.defineProperty(exports, "omit", {
|
328
|
+
enumerable: true,
|
329
|
+
get: function () {
|
330
|
+
return index_4.omit;
|
331
|
+
}
|
332
|
+
});
|
333
|
+
Object.defineProperty(exports, "optionProperties", {
|
334
|
+
enumerable: true,
|
335
|
+
get: function () {
|
336
|
+
return index_4.optionProperties;
|
337
|
+
}
|
338
|
+
});
|
339
|
+
Object.defineProperty(exports, "selectProperties", {
|
340
|
+
enumerable: true,
|
341
|
+
get: function () {
|
342
|
+
return index_4.selectProperties;
|
343
|
+
}
|
344
|
+
});
|
345
|
+
Object.defineProperty(exports, "shouldPreventDefaultOnKeyDown", {
|
346
|
+
enumerable: true,
|
347
|
+
get: function () {
|
348
|
+
return index_4.shouldPreventDefaultOnKeyDown;
|
349
|
+
}
|
350
|
+
});
|
351
|
+
Object.defineProperty(exports, "tableProperties", {
|
352
|
+
enumerable: true,
|
353
|
+
get: function () {
|
354
|
+
return index_4.tableProperties;
|
355
|
+
}
|
356
|
+
});
|
357
|
+
Object.defineProperty(exports, "tdProperties", {
|
358
|
+
enumerable: true,
|
359
|
+
get: function () {
|
360
|
+
return index_4.tdProperties;
|
361
|
+
}
|
362
|
+
});
|
363
|
+
Object.defineProperty(exports, "textAreaProperties", {
|
364
|
+
enumerable: true,
|
365
|
+
get: function () {
|
366
|
+
return index_4.textAreaProperties;
|
367
|
+
}
|
368
|
+
});
|
369
|
+
Object.defineProperty(exports, "thProperties", {
|
370
|
+
enumerable: true,
|
371
|
+
get: function () {
|
372
|
+
return index_4.thProperties;
|
373
|
+
}
|
374
|
+
});
|
375
|
+
Object.defineProperty(exports, "trProperties", {
|
376
|
+
enumerable: true,
|
377
|
+
get: function () {
|
378
|
+
return index_4.trProperties;
|
379
|
+
}
|
380
|
+
});
|
381
|
+
Object.defineProperty(exports, "videoProperties", {
|
382
|
+
enumerable: true,
|
383
|
+
get: function () {
|
384
|
+
return index_4.videoProperties;
|
385
|
+
}
|
386
|
+
});
|
16
387
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,iBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './compose/index';\nexport * from './hooks/index';\nexport * from './ssr/index';\nexport * from './utils/index';\n"],"sourceRoot":"../src/"}
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":"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","sourcesContent":["export { getSlots, resolveShorthand } from './compose/index';\nexport type {\n AsIntrinsicElement,\n ComponentProps,\n ComponentState,\n ExtractSlotProps,\n ForwardRefComponent,\n IsSingleton,\n PropsWithoutRef,\n ReplaceNullWithUndefined,\n ResolveShorthandFunction,\n ResolveShorthandOptions,\n Slot,\n Slots,\n SlotClassNames,\n SlotPropsRecord,\n SlotRenderFunction,\n SlotShorthandValue,\n UnionToIntersection,\n UnknownSlotProps,\n} from './compose/index';\n\nexport {\n resetIdsForTests,\n useBoolean,\n useConst,\n useControllableState,\n useEventCallback,\n useFirstMount,\n useForceUpdate,\n useId,\n useIsomorphicLayoutEffect,\n useMergedEventCallbacks,\n useMergedRefs,\n useMount,\n useOnClickOutside,\n useOnScrollOutside,\n usePrevious,\n useTimeout,\n useUnmount,\n} from './hooks/index';\nexport type {\n RefObjectFunction,\n UseBooleanCallbacks,\n UseControllableStateOptions,\n UseOnClickOrScrollOutsideOptions,\n} from './hooks/index';\n\nexport { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';\nexport type { SSRContextValue } from './ssr/index';\n\nexport {\n anchorProperties,\n applyTriggerPropsToChildren,\n audioProperties,\n baseElementEvents,\n baseElementProperties,\n buttonProperties,\n clamp,\n colGroupProperties,\n colProperties,\n divProperties,\n fieldsetProperties,\n formProperties,\n getNativeElementProps,\n getNativeProps,\n getPartitionedNativeProps,\n getRTLSafeKey,\n getTriggerChild,\n htmlElementProperties,\n iframeProperties,\n // eslint-disable-next-line deprecation/deprecation\n imageProperties,\n imgProperties,\n inputProperties,\n isFluentTrigger,\n labelProperties,\n liProperties,\n olProperties,\n omit,\n optionProperties,\n selectProperties,\n shouldPreventDefaultOnKeyDown,\n tableProperties,\n tdProperties,\n textAreaProperties,\n thProperties,\n trProperties,\n videoProperties,\n} from './utils/index';\nexport type { FluentTriggerComponent } from './utils/index';\n"],"sourceRoot":"../src/"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-utilities",
|
3
|
-
"version": "9.0.0-rc.
|
3
|
+
"version": "9.0.0-rc.6",
|
4
4
|
"description": "A set of general React-specific utilities.",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -26,11 +26,7 @@
|
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
28
|
"@fluentui/eslint-plugin": "*",
|
29
|
-
"@fluentui/scripts": "^1.0.0"
|
30
|
-
"@types/react": "16.9.42",
|
31
|
-
"@types/react-test-renderer": "^16.0.0",
|
32
|
-
"react": "16.8.6",
|
33
|
-
"react-test-renderer": "^16.3.0"
|
29
|
+
"@fluentui/scripts": "^1.0.0"
|
34
30
|
},
|
35
31
|
"dependencies": {
|
36
32
|
"@fluentui/keyboard-keys": "9.0.0-rc.4",
|