@siberiacancode/reactuse 0.2.31 → 0.2.33
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/README.md +71 -71
- package/dist/cjs/helpers/createStore/createStore.cjs +1 -1
- package/dist/cjs/helpers/createStore/createStore.cjs.map +1 -1
- package/dist/cjs/hooks/useActiveElement/useActiveElement.cjs +1 -1
- package/dist/cjs/hooks/useActiveElement/useActiveElement.cjs.map +1 -1
- package/dist/cjs/hooks/useAsyncEffect/useAsyncEffect.cjs +2 -0
- package/dist/cjs/hooks/useAsyncEffect/useAsyncEffect.cjs.map +1 -0
- package/dist/cjs/hooks/useControllableState/useControllableState.cjs +2 -0
- package/dist/cjs/hooks/useControllableState/useControllableState.cjs.map +1 -0
- package/dist/cjs/hooks/useFocusTrap/useFocusTrap.cjs +2 -0
- package/dist/cjs/hooks/useFocusTrap/useFocusTrap.cjs.map +1 -0
- package/dist/cjs/hooks/useScroll/useScroll.cjs +1 -1
- package/dist/cjs/hooks/useScroll/useScroll.cjs.map +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/helpers/createStore/createStore.mjs +4 -4
- package/dist/esm/helpers/createStore/createStore.mjs.map +1 -1
- package/dist/esm/hooks/useActiveElement/useActiveElement.mjs +5 -7
- package/dist/esm/hooks/useActiveElement/useActiveElement.mjs.map +1 -1
- package/dist/esm/hooks/useAsyncEffect/useAsyncEffect.mjs +10 -0
- package/dist/esm/hooks/useAsyncEffect/useAsyncEffect.mjs.map +1 -0
- package/dist/esm/hooks/useControllableState/useControllableState.mjs +17 -0
- package/dist/esm/hooks/useControllableState/useControllableState.mjs.map +1 -0
- package/dist/esm/hooks/useFocusTrap/useFocusTrap.mjs +56 -0
- package/dist/esm/hooks/useFocusTrap/useFocusTrap.mjs.map +1 -0
- package/dist/esm/hooks/useScroll/useScroll.mjs +53 -35
- package/dist/esm/hooks/useScroll/useScroll.mjs.map +1 -1
- package/dist/esm/index.mjs +270 -264
- package/dist/esm/index.mjs.map +1 -1
- package/dist/types/hooks/elements.d.ts +1 -0
- package/dist/types/hooks/lifecycle.d.ts +1 -0
- package/dist/types/hooks/state.d.ts +1 -0
- package/dist/types/hooks/useActiveElement/useActiveElement.d.ts +5 -3
- package/dist/types/hooks/useAsyncEffect/useAsyncEffect.d.ts +14 -0
- package/dist/types/hooks/useControllableState/useControllableState.d.ts +34 -0
- package/dist/types/hooks/useFocusTrap/useFocusTrap.d.ts +42 -0
- package/dist/types/hooks/useScroll/useScroll.d.ts +33 -14
- package/package.json +89 -89
package/dist/esm/index.mjs
CHANGED
|
@@ -8,13 +8,13 @@ import { useMutation as l } from "./hooks/useMutation/useMutation.mjs";
|
|
|
8
8
|
import { useOptimistic as E } from "./hooks/useOptimistic/useOptimistic.mjs";
|
|
9
9
|
import { useQuery as g } from "./hooks/useQuery/useQuery.mjs";
|
|
10
10
|
import { useAudio as R } from "./hooks/useAudio/useAudio.mjs";
|
|
11
|
-
import { useBattery as
|
|
12
|
-
import { useBluetooth as
|
|
11
|
+
import { useBattery as P } from "./hooks/useBattery/useBattery.mjs";
|
|
12
|
+
import { useBluetooth as I } from "./hooks/useBluetooth/useBluetooth.mjs";
|
|
13
13
|
import { useBroadcastChannel as O } from "./hooks/useBroadcastChannel/useBroadcastChannel.mjs";
|
|
14
14
|
import { useClipboard as h } from "./hooks/useClipboard/useClipboard.mjs";
|
|
15
15
|
import { useCopy as _ } from "./hooks/useCopy/useCopy.mjs";
|
|
16
16
|
import { useCssVar as M } from "./hooks/useCssVar/useCssVar.mjs";
|
|
17
|
-
import { useDisplayMedia as
|
|
17
|
+
import { useDisplayMedia as L } from "./hooks/useDisplayMedia/useDisplayMedia.mjs";
|
|
18
18
|
import { useDocumentTitle as B } from "./hooks/useDocumentTitle/useDocumentTitle.mjs";
|
|
19
19
|
import { useEventSource as F } from "./hooks/useEventSource/useEventSource.mjs";
|
|
20
20
|
import { useEyeDropper as V } from "./hooks/useEyeDropper/useEyeDropper.mjs";
|
|
@@ -33,13 +33,13 @@ import { usePictureInPicture as ce } from "./hooks/usePictureInPicture/usePictur
|
|
|
33
33
|
import { usePointerLock as Se } from "./hooks/usePointerLock/usePointerLock.mjs";
|
|
34
34
|
import { usePostMessage as Te } from "./hooks/usePostMessage/usePostMessage.mjs";
|
|
35
35
|
import { useRaf as de } from "./hooks/useRaf/useRaf.mjs";
|
|
36
|
-
import { useShare as
|
|
37
|
-
import { getSpeechRecognition as
|
|
36
|
+
import { useShare as Ce } from "./hooks/useShare/useShare.mjs";
|
|
37
|
+
import { getSpeechRecognition as Ae, useSpeechRecognition as Ie } from "./hooks/useSpeechRecognition/useSpeechRecognition.mjs";
|
|
38
38
|
import { useSpeechSynthesis as Oe } from "./hooks/useSpeechSynthesis/useSpeechSynthesis.mjs";
|
|
39
39
|
import { useVibrate as he } from "./hooks/useVibrate/useVibrate.mjs";
|
|
40
40
|
import { useVirtualKeyboard as _e } from "./hooks/useVirtualKeyboard/useVirtualKeyboard.mjs";
|
|
41
41
|
import { useWakeLock as Me } from "./hooks/useWakeLock/useWakeLock.mjs";
|
|
42
|
-
import { useWebSocket as
|
|
42
|
+
import { useWebSocket as Le } from "./hooks/useWebSocket/useWebSocket.mjs";
|
|
43
43
|
import { useLogger as Be } from "./hooks/useLogger/useLogger.mjs";
|
|
44
44
|
import { useRenderCount as Fe } from "./hooks/useRenderCount/useRenderCount.mjs";
|
|
45
45
|
import { useRenderInfo as Ve } from "./hooks/useRenderInfo/useRenderInfo.mjs";
|
|
@@ -51,315 +51,321 @@ import { DEFAULT_THRESHOLD_TIME as je, useDoubleClick as Je } from "./hooks/useD
|
|
|
51
51
|
import { useDropZone as $e } from "./hooks/useDropZone/useDropZone.mjs";
|
|
52
52
|
import { useFileDialog as oo } from "./hooks/useFileDialog/useFileDialog.mjs";
|
|
53
53
|
import { useFocus as to } from "./hooks/useFocus/useFocus.mjs";
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
54
|
+
import { useFocusTrap as mo } from "./hooks/useFocusTrap/useFocusTrap.mjs";
|
|
55
|
+
import { useHover as po } from "./hooks/useHover/useHover.mjs";
|
|
56
|
+
import { useImage as xo } from "./hooks/useImage/useImage.mjs";
|
|
57
|
+
import { useLongPress as io } from "./hooks/useLongPress/useLongPress.mjs";
|
|
58
|
+
import { Paint as co, Pointer as lo, usePaint as So } from "./hooks/usePaint/usePaint.mjs";
|
|
59
|
+
import { useRightClick as To } from "./hooks/useRightClick/useRightClick.mjs";
|
|
60
|
+
import { SCRIPT_STATUS_ATTRIBUTE_NAME as Ro, useScript as Co } from "./hooks/useScript/useScript.mjs";
|
|
61
|
+
import { useSticky as Ao } from "./hooks/useSticky/useSticky.mjs";
|
|
62
|
+
import { useTextDirection as yo } from "./hooks/useTextDirection/useTextDirection.mjs";
|
|
63
|
+
import { useFul as ko } from "./hooks/useFul/useFul.mjs";
|
|
64
|
+
import { useLess as vo } from "./hooks/useLess/useLess.mjs";
|
|
65
|
+
import { useOnce as Do } from "./hooks/useOnce/useOnce.mjs";
|
|
66
|
+
import { useAsyncEffect as bo } from "./hooks/useAsyncEffect/useAsyncEffect.mjs";
|
|
67
|
+
import { useDidUpdate as No } from "./hooks/useDidUpdate/useDidUpdate.mjs";
|
|
68
|
+
import { useIsFirstRender as Ko } from "./hooks/useIsFirstRender/useIsFirstRender.mjs";
|
|
69
|
+
import { useIsomorphicLayoutEffect as Uo } from "./hooks/useIsomorphicLayoutEffect/useIsomorphicLayoutEffect.mjs";
|
|
70
|
+
import { useMount as wo } from "./hooks/useMount/useMount.mjs";
|
|
71
|
+
import { deepEqual as Wo, useShallowEffect as Go } from "./hooks/useShallowEffect/useShallowEffect.mjs";
|
|
72
|
+
import { useUnmount as zo } from "./hooks/useUnmount/useUnmount.mjs";
|
|
73
|
+
import { BREAKPOINTS_ANT_DESIGN as qo, BREAKPOINTS_BOOTSTRAP_V5 as Zo, BREAKPOINTS_MANTINE as jo, BREAKPOINTS_MASTER_CSS as Jo, BREAKPOINTS_MATERIAL_UI as Yo, BREAKPOINTS_PRIME_FLEX as $o, BREAKPOINTS_QUASAR_V2 as er, BREAKPOINTS_SEMANTIC as or, BREAKPOINTS_TAILWIND as rr, useBreakpoints as tr } from "./hooks/useBreakpoints/useBreakpoints.mjs";
|
|
74
|
+
import { useDeviceMotion as mr } from "./hooks/useDeviceMotion/useDeviceMotion.mjs";
|
|
75
|
+
import { useDeviceOrientation as pr } from "./hooks/useDeviceOrientation/useDeviceOrientation.mjs";
|
|
76
|
+
import { useDevicePixelRatio as xr } from "./hooks/useDevicePixelRatio/useDevicePixelRatio.mjs";
|
|
77
|
+
import { useDocumentEvent as ir } from "./hooks/useDocumentEvent/useDocumentEvent.mjs";
|
|
78
|
+
import { useDocumentVisibility as cr } from "./hooks/useDocumentVisibility/useDocumentVisibility.mjs";
|
|
79
|
+
import { useElementSize as Sr } from "./hooks/useElementSize/useElementSize.mjs";
|
|
80
|
+
import { useEventListener as Tr } from "./hooks/useEventListener/useEventListener.mjs";
|
|
81
|
+
import { isHotkeyMatch as dr, useHotkeys as Rr } from "./hooks/useHotkeys/useHotkeys.mjs";
|
|
82
|
+
import { useIdle as Pr } from "./hooks/useIdle/useIdle.mjs";
|
|
83
|
+
import { useInfiniteScroll as Ir } from "./hooks/useInfiniteScroll/useInfiniteScroll.mjs";
|
|
84
|
+
import { useIntersectionObserver as Or } from "./hooks/useIntersectionObserver/useIntersectionObserver.mjs";
|
|
85
|
+
import { useKeyboard as hr } from "./hooks/useKeyboard/useKeyboard.mjs";
|
|
86
|
+
import { useKeyPress as _r } from "./hooks/useKeyPress/useKeyPress.mjs";
|
|
87
|
+
import { useKeyPressEvent as Mr } from "./hooks/useKeyPressEvent/useKeyPressEvent.mjs";
|
|
88
|
+
import { useKeysPressed as Lr } from "./hooks/useKeysPressed/useKeysPressed.mjs";
|
|
89
|
+
import { useLockScroll as Br } from "./hooks/useLockScroll/useLockScroll.mjs";
|
|
90
|
+
import { useMeasure as Fr } from "./hooks/useMeasure/useMeasure.mjs";
|
|
91
|
+
import { useMediaQuery as Vr } from "./hooks/useMediaQuery/useMediaQuery.mjs";
|
|
92
|
+
import { useMouse as Hr } from "./hooks/useMouse/useMouse.mjs";
|
|
93
|
+
import { useMutationObserver as Gr } from "./hooks/useMutationObserver/useMutationObserver.mjs";
|
|
94
|
+
import { useOrientation as zr } from "./hooks/useOrientation/useOrientation.mjs";
|
|
95
|
+
import { usePageLeave as qr } from "./hooks/usePageLeave/usePageLeave.mjs";
|
|
96
|
+
import { useParallax as jr } from "./hooks/useParallax/useParallax.mjs";
|
|
97
|
+
import { usePerformanceObserver as Yr } from "./hooks/usePerformanceObserver/usePerformanceObserver.mjs";
|
|
98
|
+
import { useResizeObserver as et } from "./hooks/useResizeObserver/useResizeObserver.mjs";
|
|
99
|
+
import { useScroll as rt } from "./hooks/useScroll/useScroll.mjs";
|
|
100
|
+
import { useScrollIntoView as st } from "./hooks/useScrollIntoView/useScrollIntoView.mjs";
|
|
101
|
+
import { useScrollTo as ut } from "./hooks/useScrollTo/useScrollTo.mjs";
|
|
102
|
+
import { getRangesSelection as ft, useTextSelection as xt } from "./hooks/useTextSelection/useTextSelection.mjs";
|
|
103
|
+
import { useWindowEvent as it } from "./hooks/useWindowEvent/useWindowEvent.mjs";
|
|
104
|
+
import { useWindowFocus as ct } from "./hooks/useWindowFocus/useWindowFocus.mjs";
|
|
105
|
+
import { scrollTo as St, useWindowScroll as Et } from "./hooks/useWindowScroll/useWindowScroll.mjs";
|
|
106
|
+
import { useWindowSize as gt } from "./hooks/useWindowSize/useWindowSize.mjs";
|
|
107
|
+
import { useBoolean as Rt } from "./hooks/useBoolean/useBoolean.mjs";
|
|
108
|
+
import { useControllableState as Pt } from "./hooks/useControllableState/useControllableState.mjs";
|
|
109
|
+
import { COOKIE_EVENT as It, dispatchCookieEvent as yt, getCookie as Ot, getCookies as kt, removeCookie as ht, removeCookieItem as vt, setCookie as _t, setCookieItem as Dt, useCookie as Mt } from "./hooks/useCookie/useCookie.mjs";
|
|
110
|
+
import { clearCookies as Lt, useCookies as Nt } from "./hooks/useCookies/useCookies.mjs";
|
|
111
|
+
import { useCounter as Kt } from "./hooks/useCounter/useCounter.mjs";
|
|
112
|
+
import { useDefault as Ut } from "./hooks/useDefault/useDefault.mjs";
|
|
113
|
+
import { useDisclosure as wt } from "./hooks/useDisclosure/useDisclosure.mjs";
|
|
114
|
+
import { useField as Wt } from "./hooks/useField/useField.mjs";
|
|
115
|
+
import { useHash as Qt } from "./hooks/useHash/useHash.mjs";
|
|
116
|
+
import { useList as Xt } from "./hooks/useList/useList.mjs";
|
|
117
|
+
import { useLocalStorage as Zt } from "./hooks/useLocalStorage/useLocalStorage.mjs";
|
|
118
|
+
import { useMap as Jt } from "./hooks/useMap/useMap.mjs";
|
|
119
|
+
import { assignRef as $t, mergeRefs as es, useMergedRef as os } from "./hooks/useMergedRef/useMergedRef.mjs";
|
|
120
|
+
import { useOffsetPagination as ts } from "./hooks/useOffsetPagination/useOffsetPagination.mjs";
|
|
121
|
+
import { useQueue as ms } from "./hooks/useQueue/useQueue.mjs";
|
|
122
|
+
import { useRafState as ps } from "./hooks/useRafState/useRafState.mjs";
|
|
123
|
+
import { useRefState as xs } from "./hooks/useRefState/useRefState.mjs";
|
|
124
|
+
import { useSessionStorage as is } from "./hooks/useSessionStorage/useSessionStorage.mjs";
|
|
125
|
+
import { useSet as cs } from "./hooks/useSet/useSet.mjs";
|
|
126
|
+
import { stateHistoryReducer as Ss, useStateHistory as Es } from "./hooks/useStateHistory/useStateHistory.mjs";
|
|
127
|
+
import { useStep as gs } from "./hooks/useStep/useStep.mjs";
|
|
128
|
+
import { STORAGE_EVENT as Rs, dispatchStorageEvent as Cs, useStorage as Ps } from "./hooks/useStorage/useStorage.mjs";
|
|
129
|
+
import { useToggle as Is } from "./hooks/useToggle/useToggle.mjs";
|
|
130
|
+
import { URL_SEARCH_PARAMS_EVENT as Os, createQueryString as ks, dispatchUrlSearchParamsEvent as hs, getUrlSearchParams as vs, useUrlSearchParam as _s } from "./hooks/useUrlSearchParam/useUrlSearchParam.mjs";
|
|
131
|
+
import { useUrlSearchParams as Ms } from "./hooks/useUrlSearchParams/useUrlSearchParams.mjs";
|
|
132
|
+
import { useWizard as Ls } from "./hooks/useWizard/useWizard.mjs";
|
|
133
|
+
import { useInterval as Bs } from "./hooks/useInterval/useInterval.mjs";
|
|
134
|
+
import { useStopwatch as Fs } from "./hooks/useStopwatch/useStopwatch.mjs";
|
|
135
|
+
import { useTime as Vs } from "./hooks/useTime/useTime.mjs";
|
|
136
|
+
import { useTimeout as Hs } from "./hooks/useTimeout/useTimeout.mjs";
|
|
137
|
+
import { getTimeFromSeconds as Gs, useTimer as Qs } from "./hooks/useTimer/useTimer.mjs";
|
|
138
|
+
import { useBrowserLanguage as Xs } from "./hooks/useBrowserLanguage/useBrowserLanguage.mjs";
|
|
139
|
+
import { getOperatingSystem as Zs, useOperatingSystem as js } from "./hooks/useOperatingSystem/useOperatingSystem.mjs";
|
|
140
|
+
import { usePreferredColorScheme as Ys } from "./hooks/usePreferredColorScheme/usePreferredColorScheme.mjs";
|
|
141
|
+
import { usePreferredContrast as em } from "./hooks/usePreferredContrast/usePreferredContrast.mjs";
|
|
142
|
+
import { usePreferredDark as rm } from "./hooks/usePreferredDark/usePreferredDark.mjs";
|
|
143
|
+
import { usePreferredLanguages as sm } from "./hooks/usePreferredLanguages/usePreferredLanguages.mjs";
|
|
144
|
+
import { usePreferredReducedMotion as um } from "./hooks/usePreferredReducedMotion/usePreferredReducedMotion.mjs";
|
|
145
|
+
import { useConst as fm } from "./hooks/useConst/useConst.mjs";
|
|
146
|
+
import { useDebounceCallback as am } from "./hooks/useDebounceCallback/useDebounceCallback.mjs";
|
|
147
|
+
import { useDebounceState as nm } from "./hooks/useDebounceState/useDebounceState.mjs";
|
|
148
|
+
import { useDebounceValue as lm } from "./hooks/useDebounceValue/useDebounceValue.mjs";
|
|
149
|
+
import { useEvent as Em } from "./hooks/useEvent/useEvent.mjs";
|
|
150
|
+
import { useLastChanged as gm } from "./hooks/useLastChanged/useLastChanged.mjs";
|
|
151
|
+
import { useLatest as Rm } from "./hooks/useLatest/useLatest.mjs";
|
|
152
|
+
import { usePrevious as Pm } from "./hooks/usePrevious/usePrevious.mjs";
|
|
153
|
+
import { useThrottleCallback as Im } from "./hooks/useThrottleCallback/useThrottleCallback.mjs";
|
|
154
|
+
import { useThrottleState as Om } from "./hooks/useThrottleState/useThrottleState.mjs";
|
|
155
|
+
import { useThrottleValue as hm } from "./hooks/useThrottleValue/useThrottleValue.mjs";
|
|
156
|
+
import { copy as _m, legacyCopyToClipboard as Dm } from "./utils/helpers/copy.mjs";
|
|
157
|
+
import { debounce as bm } from "./utils/helpers/debounce.mjs";
|
|
158
|
+
import { getDate as Nm } from "./utils/helpers/getDate.mjs";
|
|
159
|
+
import { getElement as Km, target as Fm, targetSymbol as Um } from "./utils/helpers/getElement.mjs";
|
|
160
|
+
import { getRetry as wm } from "./utils/helpers/getRetry.mjs";
|
|
161
|
+
import { isTarget as Wm } from "./utils/helpers/isTarget.mjs";
|
|
162
|
+
import { throttle as Qm } from "./utils/helpers/throttle.mjs";
|
|
160
163
|
export {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
164
|
+
qo as BREAKPOINTS_ANT_DESIGN,
|
|
165
|
+
Zo as BREAKPOINTS_BOOTSTRAP_V5,
|
|
166
|
+
jo as BREAKPOINTS_MANTINE,
|
|
167
|
+
Jo as BREAKPOINTS_MASTER_CSS,
|
|
168
|
+
Yo as BREAKPOINTS_MATERIAL_UI,
|
|
169
|
+
$o as BREAKPOINTS_PRIME_FLEX,
|
|
170
|
+
er as BREAKPOINTS_QUASAR_V2,
|
|
171
|
+
or as BREAKPOINTS_SEMANTIC,
|
|
172
|
+
rr as BREAKPOINTS_TAILWIND,
|
|
173
|
+
It as COOKIE_EVENT,
|
|
171
174
|
je as DEFAULT_THRESHOLD_TIME,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
175
|
+
co as Paint,
|
|
176
|
+
lo as Pointer,
|
|
177
|
+
Ro as SCRIPT_STATUS_ATTRIBUTE_NAME,
|
|
178
|
+
Rs as STORAGE_EVENT,
|
|
179
|
+
Os as URL_SEARCH_PARAMS_EVENT,
|
|
180
|
+
$t as assignRef,
|
|
181
|
+
Lt as clearCookies,
|
|
182
|
+
_m as copy,
|
|
180
183
|
r as createContext,
|
|
181
184
|
s as createEventEmitter,
|
|
182
|
-
|
|
185
|
+
ks as createQueryString,
|
|
183
186
|
u as createReactiveContext,
|
|
184
187
|
f as createStore,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
bm as debounce,
|
|
189
|
+
Wo as deepEqual,
|
|
190
|
+
yt as dispatchCookieEvent,
|
|
191
|
+
Cs as dispatchStorageEvent,
|
|
192
|
+
hs as dispatchUrlSearchParamsEvent,
|
|
190
193
|
se as getConnection,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
194
|
+
Ot as getCookie,
|
|
195
|
+
kt as getCookies,
|
|
196
|
+
Nm as getDate,
|
|
197
|
+
Km as getElement,
|
|
198
|
+
Zs as getOperatingSystem,
|
|
199
|
+
ft as getRangesSelection,
|
|
200
|
+
wm as getRetry,
|
|
201
|
+
Ae as getSpeechRecognition,
|
|
202
|
+
Gs as getTimeFromSeconds,
|
|
203
|
+
vs as getUrlSearchParams,
|
|
204
|
+
dr as isHotkeyMatch,
|
|
205
|
+
Wm as isTarget,
|
|
206
|
+
Dm as legacyCopyToClipboard,
|
|
204
207
|
q as mapGamepadToXbox360Controller,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
208
|
+
es as mergeRefs,
|
|
209
|
+
ht as removeCookie,
|
|
210
|
+
vt as removeCookieItem,
|
|
211
|
+
St as scrollTo,
|
|
212
|
+
_t as setCookie,
|
|
213
|
+
Dt as setCookieItem,
|
|
214
|
+
Ss as stateHistoryReducer,
|
|
215
|
+
Fm as target,
|
|
216
|
+
Um as targetSymbol,
|
|
217
|
+
Qm as throttle,
|
|
215
218
|
$ as timeRangeToArray,
|
|
216
219
|
Ge as useActiveElement,
|
|
217
220
|
a as useAsync,
|
|
221
|
+
bo as useAsyncEffect,
|
|
218
222
|
R as useAudio,
|
|
219
223
|
ze as useAutoScroll,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
+
P as useBattery,
|
|
225
|
+
I as useBluetooth,
|
|
226
|
+
Rt as useBoolean,
|
|
227
|
+
tr as useBreakpoints,
|
|
224
228
|
O as useBroadcastChannel,
|
|
225
|
-
|
|
229
|
+
Xs as useBrowserLanguage,
|
|
226
230
|
qe as useClickOutside,
|
|
227
231
|
h as useClipboard,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
232
|
+
fm as useConst,
|
|
233
|
+
Pt as useControllableState,
|
|
234
|
+
Mt as useCookie,
|
|
235
|
+
Nt as useCookies,
|
|
231
236
|
_ as useCopy,
|
|
232
|
-
|
|
237
|
+
Kt as useCounter,
|
|
233
238
|
M as useCssVar,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
239
|
+
am as useDebounceCallback,
|
|
240
|
+
nm as useDebounceState,
|
|
241
|
+
lm as useDebounceValue,
|
|
242
|
+
Ut as useDefault,
|
|
243
|
+
mr as useDeviceMotion,
|
|
244
|
+
pr as useDeviceOrientation,
|
|
245
|
+
xr as useDevicePixelRatio,
|
|
246
|
+
No as useDidUpdate,
|
|
247
|
+
wt as useDisclosure,
|
|
248
|
+
L as useDisplayMedia,
|
|
249
|
+
ir as useDocumentEvent,
|
|
245
250
|
B as useDocumentTitle,
|
|
246
|
-
|
|
251
|
+
cr as useDocumentVisibility,
|
|
247
252
|
Je as useDoubleClick,
|
|
248
253
|
$e as useDropZone,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
254
|
+
Sr as useElementSize,
|
|
255
|
+
Em as useEvent,
|
|
256
|
+
Tr as useEventListener,
|
|
252
257
|
F as useEventSource,
|
|
253
258
|
V as useEyeDropper,
|
|
254
259
|
H as useFavicon,
|
|
255
|
-
|
|
260
|
+
Wt as useField,
|
|
256
261
|
oo as useFileDialog,
|
|
257
262
|
to as useFocus,
|
|
263
|
+
mo as useFocusTrap,
|
|
258
264
|
G as useFps,
|
|
259
|
-
|
|
265
|
+
ko as useFul,
|
|
260
266
|
z as useFullscreen,
|
|
261
267
|
Z as useGamepad,
|
|
262
268
|
J as useGeolocation,
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
269
|
+
Qt as useHash,
|
|
270
|
+
Rr as useHotkeys,
|
|
271
|
+
po as useHover,
|
|
272
|
+
Pr as useIdle,
|
|
273
|
+
xo as useImage,
|
|
274
|
+
Ir as useInfiniteScroll,
|
|
275
|
+
Or as useIntersectionObserver,
|
|
276
|
+
Bs as useInterval,
|
|
277
|
+
Ko as useIsFirstRender,
|
|
278
|
+
Uo as useIsomorphicLayoutEffect,
|
|
279
|
+
_r as useKeyPress,
|
|
280
|
+
Mr as useKeyPressEvent,
|
|
281
|
+
hr as useKeyboard,
|
|
282
|
+
Lr as useKeysPressed,
|
|
283
|
+
gm as useLastChanged,
|
|
284
|
+
Rm as useLatest,
|
|
285
|
+
vo as useLess,
|
|
286
|
+
Xt as useList,
|
|
287
|
+
Zt as useLocalStorage,
|
|
282
288
|
n as useLockCallback,
|
|
283
|
-
|
|
289
|
+
Br as useLockScroll,
|
|
284
290
|
Be as useLogger,
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
291
|
+
io as useLongPress,
|
|
292
|
+
Jt as useMap,
|
|
293
|
+
Fr as useMeasure,
|
|
288
294
|
ee as useMediaControls,
|
|
289
|
-
|
|
295
|
+
Vr as useMediaQuery,
|
|
290
296
|
re as useMemory,
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
297
|
+
os as useMergedRef,
|
|
298
|
+
wo as useMount,
|
|
299
|
+
Hr as useMouse,
|
|
294
300
|
l as useMutation,
|
|
295
|
-
|
|
301
|
+
Gr as useMutationObserver,
|
|
296
302
|
me as useNetwork,
|
|
297
|
-
|
|
298
|
-
|
|
303
|
+
ts as useOffsetPagination,
|
|
304
|
+
Do as useOnce,
|
|
299
305
|
pe as useOnline,
|
|
300
|
-
|
|
306
|
+
js as useOperatingSystem,
|
|
301
307
|
E as useOptimistic,
|
|
302
|
-
|
|
308
|
+
zr as useOrientation,
|
|
303
309
|
xe as useOtpCredential,
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
310
|
+
qr as usePageLeave,
|
|
311
|
+
So as usePaint,
|
|
312
|
+
jr as useParallax,
|
|
313
|
+
Yr as usePerformanceObserver,
|
|
308
314
|
ie as usePermission,
|
|
309
315
|
ce as usePictureInPicture,
|
|
310
316
|
Se as usePointerLock,
|
|
311
317
|
Te as usePostMessage,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
+
Ys as usePreferredColorScheme,
|
|
319
|
+
em as usePreferredContrast,
|
|
320
|
+
rm as usePreferredDark,
|
|
321
|
+
sm as usePreferredLanguages,
|
|
322
|
+
um as usePreferredReducedMotion,
|
|
323
|
+
Pm as usePrevious,
|
|
318
324
|
g as useQuery,
|
|
319
|
-
|
|
325
|
+
ms as useQueue,
|
|
320
326
|
de as useRaf,
|
|
321
|
-
|
|
322
|
-
|
|
327
|
+
ps as useRafState,
|
|
328
|
+
xs as useRefState,
|
|
323
329
|
Fe as useRenderCount,
|
|
324
330
|
Ve as useRenderInfo,
|
|
325
331
|
He as useRerender,
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
332
|
+
et as useResizeObserver,
|
|
333
|
+
To as useRightClick,
|
|
334
|
+
Co as useScript,
|
|
335
|
+
rt as useScroll,
|
|
336
|
+
st as useScrollIntoView,
|
|
337
|
+
ut as useScrollTo,
|
|
338
|
+
is as useSessionStorage,
|
|
339
|
+
cs as useSet,
|
|
340
|
+
Go as useShallowEffect,
|
|
341
|
+
Ce as useShare,
|
|
342
|
+
Ie as useSpeechRecognition,
|
|
337
343
|
Oe as useSpeechSynthesis,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
344
|
+
Es as useStateHistory,
|
|
345
|
+
gs as useStep,
|
|
346
|
+
Ao as useSticky,
|
|
347
|
+
Fs as useStopwatch,
|
|
348
|
+
Ps as useStorage,
|
|
349
|
+
yo as useTextDirection,
|
|
350
|
+
xt as useTextSelection,
|
|
351
|
+
Im as useThrottleCallback,
|
|
352
|
+
Om as useThrottleState,
|
|
353
|
+
hm as useThrottleValue,
|
|
354
|
+
Vs as useTime,
|
|
355
|
+
Hs as useTimeout,
|
|
356
|
+
Qs as useTimer,
|
|
357
|
+
Is as useToggle,
|
|
358
|
+
zo as useUnmount,
|
|
359
|
+
_s as useUrlSearchParam,
|
|
360
|
+
Ms as useUrlSearchParams,
|
|
355
361
|
he as useVibrate,
|
|
356
362
|
_e as useVirtualKeyboard,
|
|
357
363
|
Me as useWakeLock,
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
+
Le as useWebSocket,
|
|
365
|
+
it as useWindowEvent,
|
|
366
|
+
ct as useWindowFocus,
|
|
367
|
+
Et as useWindowScroll,
|
|
368
|
+
gt as useWindowSize,
|
|
369
|
+
Ls as useWizard
|
|
364
370
|
};
|
|
365
371
|
//# sourceMappingURL=index.mjs.map
|