@siberiacancode/reactuse 0.1.1 → 0.2.0
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/dist/cjs/helpers/createContext/createContext.cjs +2 -0
- package/dist/cjs/helpers/createContext/createContext.cjs.map +1 -0
- package/dist/cjs/helpers/createStore/createStore.cjs +2 -0
- package/dist/cjs/helpers/createStore/createStore.cjs.map +1 -0
- package/dist/cjs/hooks/useClipboard/useClipboard.cjs.map +1 -1
- package/dist/cjs/hooks/useField/useField.cjs +1 -1
- package/dist/cjs/hooks/useField/useField.cjs.map +1 -1
- package/dist/cjs/hooks/useGamepad/useGamepad.cjs.map +1 -1
- package/dist/cjs/hooks/useIntersectionObserver/useIntersectionObserver.cjs.map +1 -1
- package/dist/cjs/hooks/useMemory/useMemory.cjs +1 -1
- package/dist/cjs/hooks/useMemory/useMemory.cjs.map +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/helpers/createContext/createContext.mjs +38 -0
- package/dist/esm/helpers/createContext/createContext.mjs.map +1 -0
- package/dist/esm/helpers/createStore/createStore.mjs +32 -0
- package/dist/esm/helpers/createStore/createStore.mjs.map +1 -0
- package/dist/esm/hooks/useClipboard/useClipboard.mjs.map +1 -1
- package/dist/esm/hooks/useField/useField.mjs +1 -3
- package/dist/esm/hooks/useField/useField.mjs.map +1 -1
- package/dist/esm/hooks/useGamepad/useGamepad.mjs +7 -2
- package/dist/esm/hooks/useGamepad/useGamepad.mjs.map +1 -1
- package/dist/esm/hooks/useIntersectionObserver/useIntersectionObserver.mjs.map +1 -1
- package/dist/esm/hooks/useMemory/useMemory.mjs +14 -10
- package/dist/esm/hooks/useMemory/useMemory.mjs.map +1 -1
- package/dist/esm/index.mjs +323 -319
- package/dist/esm/index.mjs.map +1 -1
- package/dist/types/helpers/createContext/createContext.d.ts +48 -0
- package/dist/types/helpers/createStore/createStore.d.ts +31 -0
- package/dist/types/helpers/index.d.ts +2 -0
- package/dist/types/hooks/useClipboard/useClipboard.d.ts +1 -1
- package/dist/types/hooks/useIntersectionObserver/useIntersectionObserver.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +6 -6
package/dist/esm/index.mjs
CHANGED
|
@@ -1,322 +1,326 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
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 {
|
|
1
|
+
import { createContext as r } from "./helpers/createContext/createContext.mjs";
|
|
2
|
+
import { createStore as s } from "./helpers/createStore/createStore.mjs";
|
|
3
|
+
import { useActiveElement as p } from "./hooks/useActiveElement/useActiveElement.mjs";
|
|
4
|
+
import { useAsync as f } from "./hooks/useAsync/useAsync.mjs";
|
|
5
|
+
import { useBattery as i } from "./hooks/useBattery/useBattery.mjs";
|
|
6
|
+
import { useBluetooth as a } from "./hooks/useBluetooth/useBluetooth.mjs";
|
|
7
|
+
import { useBoolean as l } from "./hooks/useBoolean/useBoolean.mjs";
|
|
8
|
+
import { BREAKPOINTS_ANT_DESIGN as T, BREAKPOINTS_BOOTSTRAP_V5 as g, BREAKPOINTS_MANTINE as E, BREAKPOINTS_MASTER_CSS as d, BREAKPOINTS_MATERIAL_UI as C, BREAKPOINTS_PRIME_FLEX as P, BREAKPOINTS_QUASAR_V2 as I, BREAKPOINTS_SEMANTIC as R, BREAKPOINTS_TAILWIND as O, useBreakpoints as k } from "./hooks/useBreakpoints/useBreakpoints.mjs";
|
|
9
|
+
import { useBrowserLanguage as A } from "./hooks/useBrowserLanguage/useBrowserLanguage.mjs";
|
|
10
|
+
import { useClickOutside as D } from "./hooks/useClickOutside/useClickOutside.mjs";
|
|
11
|
+
import { useClipboard as b } from "./hooks/useClipboard/useClipboard.mjs";
|
|
12
|
+
import { useConst as N } from "./hooks/useConst/useConst.mjs";
|
|
13
|
+
import { COOKIE_EVENT as h, dispatchCookieEvent as B, getCookie as K, getCookies as F, removeCookie as V, removeCookieItem as w, setCookie as W, setCookieItem as U, useCookie as G } from "./hooks/useCookie/useCookie.mjs";
|
|
14
|
+
import { clearCookies as z, getParsedCookies as Q, useCookies as X } from "./hooks/useCookies/useCookies.mjs";
|
|
15
|
+
import { useCopy as j } from "./hooks/useCopy/useCopy.mjs";
|
|
16
|
+
import { useCounter as J } from "./hooks/useCounter/useCounter.mjs";
|
|
17
|
+
import { useCssVar as $ } from "./hooks/useCssVar/useCssVar.mjs";
|
|
18
|
+
import { useDebounceCallback as oe } from "./hooks/useDebounceCallback/useDebounceCallback.mjs";
|
|
19
|
+
import { useDebounceValue as te } from "./hooks/useDebounceValue/useDebounceValue.mjs";
|
|
20
|
+
import { useDefault as me } from "./hooks/useDefault/useDefault.mjs";
|
|
21
|
+
import { useDeviceMotion as ue } from "./hooks/useDeviceMotion/useDeviceMotion.mjs";
|
|
22
|
+
import { useDeviceOrientation as xe } from "./hooks/useDeviceOrientation/useDeviceOrientation.mjs";
|
|
23
|
+
import { useDevicePixelRatio as ne } from "./hooks/useDevicePixelRatio/useDevicePixelRatio.mjs";
|
|
24
|
+
import { useDidUpdate as ce } from "./hooks/useDidUpdate/useDidUpdate.mjs";
|
|
25
|
+
import { useDisclosure as Se } from "./hooks/useDisclosure/useDisclosure.mjs";
|
|
26
|
+
import { useDisplayMedia as ge } from "./hooks/useDisplayMedia/useDisplayMedia.mjs";
|
|
27
|
+
import { useDocumentEvent as de } from "./hooks/useDocumentEvent/useDocumentEvent.mjs";
|
|
28
|
+
import { useDocumentTitle as Pe } from "./hooks/useDocumentTitle/useDocumentTitle.mjs";
|
|
29
|
+
import { useDocumentVisibility as Re } from "./hooks/useDocumentVisibility/useDocumentVisibility.mjs";
|
|
30
|
+
import { useDoubleClick as ke } from "./hooks/useDoubleClick/useDoubleClick.mjs";
|
|
31
|
+
import { useDropZone as Ae } from "./hooks/useDropZone/useDropZone.mjs";
|
|
32
|
+
import { useElementSize as De } from "./hooks/useElementSize/useElementSize.mjs";
|
|
33
|
+
import { useEvent as be } from "./hooks/useEvent/useEvent.mjs";
|
|
34
|
+
import { useEventListener as Ne } from "./hooks/useEventListener/useEventListener.mjs";
|
|
35
|
+
import { useEventSource as he } from "./hooks/useEventSource/useEventSource.mjs";
|
|
36
|
+
import { useEyeDropper as Ke } from "./hooks/useEyeDropper/useEyeDropper.mjs";
|
|
37
|
+
import { useFavicon as Ve } from "./hooks/useFavicon/useFavicon.mjs";
|
|
38
|
+
import { useField as We } from "./hooks/useField/useField.mjs";
|
|
39
|
+
import { useFileDialog as Ge } from "./hooks/useFileDialog/useFileDialog.mjs";
|
|
40
|
+
import { useFocus as ze } from "./hooks/useFocus/useFocus.mjs";
|
|
41
|
+
import { useFps as Xe } from "./hooks/useFps/useFps.mjs";
|
|
42
|
+
import { useFul as je } from "./hooks/useFul/useFul.mjs";
|
|
43
|
+
import { useFullscreen as Je } from "./hooks/useFullscreen/useFullscreen.mjs";
|
|
44
|
+
import { mapGamepadToXbox360Controller as $e, useGamepad as eo } from "./hooks/useGamepad/useGamepad.mjs";
|
|
45
|
+
import { useGeolocation as ro } from "./hooks/useGeolocation/useGeolocation.mjs";
|
|
46
|
+
import { useHash as so } from "./hooks/useHash/useHash.mjs";
|
|
47
|
+
import { isHotkeyMatch as po, useHotkeys as uo } from "./hooks/useHotkeys/useHotkeys.mjs";
|
|
48
|
+
import { useHover as xo } from "./hooks/useHover/useHover.mjs";
|
|
49
|
+
import { useIdle as no } from "./hooks/useIdle/useIdle.mjs";
|
|
50
|
+
import { useImage as co } from "./hooks/useImage/useImage.mjs";
|
|
51
|
+
import { useInfiniteScroll as So } from "./hooks/useInfiniteScroll/useInfiniteScroll.mjs";
|
|
52
|
+
import { useIntersectionObserver as go } from "./hooks/useIntersectionObserver/useIntersectionObserver.mjs";
|
|
53
|
+
import { useInterval as Co } from "./hooks/useInterval/useInterval.mjs";
|
|
54
|
+
import { useIsFirstRender as Io } from "./hooks/useIsFirstRender/useIsFirstRender.mjs";
|
|
55
|
+
import { useIsomorphicLayoutEffect as Oo } from "./hooks/useIsomorphicLayoutEffect/useIsomorphicLayoutEffect.mjs";
|
|
56
|
+
import { useKeyboard as yo } from "./hooks/useKeyboard/useKeyboard.mjs";
|
|
57
|
+
import { useKeyPress as vo } from "./hooks/useKeyPress/useKeyPress.mjs";
|
|
58
|
+
import { useKeyPressEvent as _o } from "./hooks/useKeyPressEvent/useKeyPressEvent.mjs";
|
|
59
|
+
import { useKeysPressed as Mo } from "./hooks/useKeysPressed/useKeysPressed.mjs";
|
|
60
|
+
import { useLastChanged as Lo } from "./hooks/useLastChanged/useLastChanged.mjs";
|
|
61
|
+
import { useLatest as Bo } from "./hooks/useLatest/useLatest.mjs";
|
|
62
|
+
import { useLess as Fo } from "./hooks/useLess/useLess.mjs";
|
|
63
|
+
import { useList as wo } from "./hooks/useList/useList.mjs";
|
|
64
|
+
import { useLocalStorage as Uo } from "./hooks/useLocalStorage/useLocalStorage.mjs";
|
|
65
|
+
import { useLockCallback as Ho } from "./hooks/useLockCallback/useLockCallback.mjs";
|
|
66
|
+
import { useLogger as Qo } from "./hooks/useLogger/useLogger.mjs";
|
|
67
|
+
import { useLongPress as Zo } from "./hooks/useLongPress/useLongPress.mjs";
|
|
68
|
+
import { useMap as qo } from "./hooks/useMap/useMap.mjs";
|
|
69
|
+
import { useMeasure as Yo } from "./hooks/useMeasure/useMeasure.mjs";
|
|
70
|
+
import { useMediaQuery as er } from "./hooks/useMediaQuery/useMediaQuery.mjs";
|
|
71
|
+
import { useMemory as rr } from "./hooks/useMemory/useMemory.mjs";
|
|
72
|
+
import { useMount as sr } from "./hooks/useMount/useMount.mjs";
|
|
73
|
+
import { useMouse as pr } from "./hooks/useMouse/useMouse.mjs";
|
|
74
|
+
import { useMutation as fr } from "./hooks/useMutation/useMutation.mjs";
|
|
75
|
+
import { useMutationObserver as ir } from "./hooks/useMutationObserver/useMutationObserver.mjs";
|
|
76
|
+
import { getConnection as ar, useNetwork as cr } from "./hooks/useNetwork/useNetwork.mjs";
|
|
77
|
+
import { useOffsetPagination as Sr } from "./hooks/useOffsetPagination/useOffsetPagination.mjs";
|
|
78
|
+
import { useOnce as gr } from "./hooks/useOnce/useOnce.mjs";
|
|
79
|
+
import { useOnline as dr } from "./hooks/useOnline/useOnline.mjs";
|
|
80
|
+
import { getOperatingSystem as Pr, useOperatingSystem as Ir } from "./hooks/useOperatingSystem/useOperatingSystem.mjs";
|
|
81
|
+
import { useOptimistic as Or } from "./hooks/useOptimistic/useOptimistic.mjs";
|
|
82
|
+
import { useOrientation as yr } from "./hooks/useOrientation/useOrientation.mjs";
|
|
83
|
+
import { useOtpCredential as vr } from "./hooks/useOtpCredential/useOtpCredential.mjs";
|
|
84
|
+
import { usePageLeave as _r } from "./hooks/usePageLeave/usePageLeave.mjs";
|
|
85
|
+
import { Paint as Mr, Pointer as Nr, usePaint as Lr } from "./hooks/usePaint/usePaint.mjs";
|
|
86
|
+
import { useParallax as Br } from "./hooks/useParallax/useParallax.mjs";
|
|
87
|
+
import { usePerformanceObserver as Fr } from "./hooks/usePerformanceObserver/usePerformanceObserver.mjs";
|
|
88
|
+
import { usePermission as wr } from "./hooks/usePermission/usePermission.mjs";
|
|
89
|
+
import { usePointerLock as Ur } from "./hooks/usePointerLock/usePointerLock.mjs";
|
|
90
|
+
import { usePostMessage as Hr } from "./hooks/usePostMessage/usePostMessage.mjs";
|
|
91
|
+
import { usePreferredColorScheme as Qr } from "./hooks/usePreferredColorScheme/usePreferredColorScheme.mjs";
|
|
92
|
+
import { usePreferredContrast as Zr } from "./hooks/usePreferredContrast/usePreferredContrast.mjs";
|
|
93
|
+
import { usePreferredDark as qr } from "./hooks/usePreferredDark/usePreferredDark.mjs";
|
|
94
|
+
import { usePreferredLanguages as Yr } from "./hooks/usePreferredLanguages/usePreferredLanguages.mjs";
|
|
95
|
+
import { usePreferredReducedMotion as et } from "./hooks/usePreferredReducedMotion/usePreferredReducedMotion.mjs";
|
|
96
|
+
import { usePrevious as rt } from "./hooks/usePrevious/usePrevious.mjs";
|
|
97
|
+
import { useQuery as st } from "./hooks/useQuery/useQuery.mjs";
|
|
98
|
+
import { useQueue as pt } from "./hooks/useQueue/useQueue.mjs";
|
|
99
|
+
import { useRaf as ft } from "./hooks/useRaf/useRaf.mjs";
|
|
100
|
+
import { useRafValue as it } from "./hooks/useRafValue/useRafValue.mjs";
|
|
101
|
+
import { useRefState as at } from "./hooks/useRefState/useRefState.mjs";
|
|
102
|
+
import { useRenderCount as lt } from "./hooks/useRenderCount/useRenderCount.mjs";
|
|
103
|
+
import { useRenderInfo as Tt } from "./hooks/useRenderInfo/useRenderInfo.mjs";
|
|
104
|
+
import { useRerender as Et } from "./hooks/useRerender/useRerender.mjs";
|
|
105
|
+
import { useResizeObserver as Ct } from "./hooks/useResizeObserver/useResizeObserver.mjs";
|
|
106
|
+
import { useScreenOrientation as It } from "./hooks/useScreenOrientation/useScreenOrientation.mjs";
|
|
107
|
+
import { SCRIPT_STATUS_ATTRIBUTE_NAME as Ot, useScript as kt } from "./hooks/useScript/useScript.mjs";
|
|
108
|
+
import { useScroll as At } from "./hooks/useScroll/useScroll.mjs";
|
|
109
|
+
import { useScrollIntoView as Dt } from "./hooks/useScrollIntoView/useScrollIntoView.mjs";
|
|
110
|
+
import { useScrollTo as bt } from "./hooks/useScrollTo/useScrollTo.mjs";
|
|
111
|
+
import { useSessionStorage as Nt } from "./hooks/useSessionStorage/useSessionStorage.mjs";
|
|
112
|
+
import { useSet as ht } from "./hooks/useSet/useSet.mjs";
|
|
113
|
+
import { useShare as Kt } from "./hooks/useShare/useShare.mjs";
|
|
114
|
+
import { getSpeechRecognition as Vt, useSpeechRecognition as wt } from "./hooks/useSpeechRecognition/useSpeechRecognition.mjs";
|
|
115
|
+
import { useSpeechSynthesis as Ut } from "./hooks/useSpeechSynthesis/useSpeechSynthesis.mjs";
|
|
116
|
+
import { useStateHistory as Ht } from "./hooks/useStateHistory/useStateHistory.mjs";
|
|
117
|
+
import { useStep as Qt } from "./hooks/useStep/useStep.mjs";
|
|
118
|
+
import { useSticky as Zt } from "./hooks/useSticky/useSticky.mjs";
|
|
119
|
+
import { useStopwatch as qt } from "./hooks/useStopwatch/useStopwatch.mjs";
|
|
120
|
+
import { STORAGE_EVENT as Yt, dispatchStorageEvent as $t, useStorage as es } from "./hooks/useStorage/useStorage.mjs";
|
|
121
|
+
import { useTextDirection as rs } from "./hooks/useTextDirection/useTextDirection.mjs";
|
|
122
|
+
import { getRangesSelection as ss, useTextSelection as ms } from "./hooks/useTextSelection/useTextSelection.mjs";
|
|
123
|
+
import { useThrottleCallback as us } from "./hooks/useThrottleCallback/useThrottleCallback.mjs";
|
|
124
|
+
import { useThrottleValue as xs } from "./hooks/useThrottleValue/useThrottleValue.mjs";
|
|
125
|
+
import { useTime as ns } from "./hooks/useTime/useTime.mjs";
|
|
126
|
+
import { useTimeout as cs } from "./hooks/useTimeout/useTimeout.mjs";
|
|
127
|
+
import { getTimeFromSeconds as Ss, useTimer as Ts } from "./hooks/useTimer/useTimer.mjs";
|
|
128
|
+
import { useToggle as Es } from "./hooks/useToggle/useToggle.mjs";
|
|
129
|
+
import { useUnmount as Cs } from "./hooks/useUnmount/useUnmount.mjs";
|
|
130
|
+
import { useVibrate as Is } from "./hooks/useVibrate/useVibrate.mjs";
|
|
131
|
+
import { useWakeLock as Os } from "./hooks/useWakeLock/useWakeLock.mjs";
|
|
132
|
+
import { useWebSocket as ys } from "./hooks/useWebSocket/useWebSocket.mjs";
|
|
133
|
+
import { useWindowEvent as vs } from "./hooks/useWindowEvent/useWindowEvent.mjs";
|
|
134
|
+
import { useWindowFocus as _s } from "./hooks/useWindowFocus/useWindowFocus.mjs";
|
|
135
|
+
import { scrollTo as Ms, useWindowScroll as Ns } from "./hooks/useWindowScroll/useWindowScroll.mjs";
|
|
136
|
+
import { useWindowSize as hs } from "./hooks/useWindowSize/useWindowSize.mjs";
|
|
137
|
+
import { useWizard as Ks } from "./hooks/useWizard/useWizard.mjs";
|
|
138
|
+
import { copy as Vs, legacyCopyToClipboard as ws } from "./utils/helpers/copy.mjs";
|
|
139
|
+
import { debounce as Us } from "./utils/helpers/debounce.mjs";
|
|
140
|
+
import { getDate as Hs } from "./utils/helpers/getDate.mjs";
|
|
141
|
+
import { getElement as Qs, target as Xs, targetSymbol as Zs } from "./utils/helpers/getElement.mjs";
|
|
142
|
+
import { getRetry as qs } from "./utils/helpers/getRetry.mjs";
|
|
143
|
+
import { isTarget as Ys } from "./utils/helpers/isTarget.mjs";
|
|
144
|
+
import { throttle as em } from "./utils/helpers/throttle.mjs";
|
|
143
145
|
export {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
f as
|
|
190
|
-
i as
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
k as
|
|
194
|
-
A as
|
|
195
|
-
D as
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
X as
|
|
200
|
-
j as
|
|
201
|
-
J as
|
|
202
|
-
$ as
|
|
203
|
-
oe as
|
|
204
|
-
te as
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
xe as
|
|
208
|
-
ne as
|
|
209
|
-
|
|
210
|
-
Se as
|
|
211
|
-
ge as
|
|
212
|
-
de as
|
|
213
|
-
Pe as
|
|
214
|
-
Re as
|
|
215
|
-
ke as
|
|
216
|
-
Ae as
|
|
217
|
-
De as
|
|
218
|
-
be as
|
|
219
|
-
Ne as
|
|
220
|
-
he as
|
|
221
|
-
Ke as
|
|
222
|
-
Ve as
|
|
223
|
-
We as
|
|
224
|
-
Ge as
|
|
225
|
-
ze as
|
|
226
|
-
Xe as
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
eo as
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
xo as
|
|
234
|
-
no as
|
|
235
|
-
|
|
236
|
-
So as
|
|
237
|
-
go as
|
|
238
|
-
Co as
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
Mo as
|
|
245
|
-
Lo as
|
|
246
|
-
Bo as
|
|
247
|
-
Fo as
|
|
248
|
-
wo as
|
|
249
|
-
Uo as
|
|
250
|
-
Ho as
|
|
251
|
-
Qo as
|
|
252
|
-
Zo as
|
|
253
|
-
qo as
|
|
254
|
-
Yo as
|
|
255
|
-
er as
|
|
256
|
-
rr as
|
|
257
|
-
sr as
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
Sr as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
Ir as
|
|
266
|
-
Or as
|
|
267
|
-
yr as
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
Lr as
|
|
271
|
-
Br as
|
|
272
|
-
Fr as
|
|
273
|
-
wr as
|
|
274
|
-
Ur as
|
|
275
|
-
Hr as
|
|
276
|
-
Qr as
|
|
277
|
-
Zr as
|
|
278
|
-
qr as
|
|
279
|
-
Yr as
|
|
280
|
-
et as
|
|
281
|
-
rt as
|
|
282
|
-
st as
|
|
283
|
-
|
|
284
|
-
ft as
|
|
285
|
-
it as
|
|
286
|
-
at as
|
|
287
|
-
|
|
288
|
-
Tt as
|
|
289
|
-
Et as
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
kt as
|
|
293
|
-
At as
|
|
294
|
-
Dt as
|
|
295
|
-
bt as
|
|
296
|
-
Nt as
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
wt as
|
|
300
|
-
Ut as
|
|
301
|
-
Ht as
|
|
302
|
-
Qt as
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
xs as
|
|
310
|
-
|
|
311
|
-
cs as
|
|
312
|
-
Ts as
|
|
313
|
-
Es as
|
|
314
|
-
Cs as
|
|
315
|
-
Is as
|
|
316
|
-
Os as
|
|
317
|
-
ys as
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
Ns as
|
|
146
|
+
T as BREAKPOINTS_ANT_DESIGN,
|
|
147
|
+
g as BREAKPOINTS_BOOTSTRAP_V5,
|
|
148
|
+
E as BREAKPOINTS_MANTINE,
|
|
149
|
+
d as BREAKPOINTS_MASTER_CSS,
|
|
150
|
+
C as BREAKPOINTS_MATERIAL_UI,
|
|
151
|
+
P as BREAKPOINTS_PRIME_FLEX,
|
|
152
|
+
I as BREAKPOINTS_QUASAR_V2,
|
|
153
|
+
R as BREAKPOINTS_SEMANTIC,
|
|
154
|
+
O as BREAKPOINTS_TAILWIND,
|
|
155
|
+
h as COOKIE_EVENT,
|
|
156
|
+
Mr as Paint,
|
|
157
|
+
Nr as Pointer,
|
|
158
|
+
Ot as SCRIPT_STATUS_ATTRIBUTE_NAME,
|
|
159
|
+
Yt as STORAGE_EVENT,
|
|
160
|
+
z as clearCookies,
|
|
161
|
+
Vs as copy,
|
|
162
|
+
r as createContext,
|
|
163
|
+
s as createStore,
|
|
164
|
+
Us as debounce,
|
|
165
|
+
B as dispatchCookieEvent,
|
|
166
|
+
$t as dispatchStorageEvent,
|
|
167
|
+
ar as getConnection,
|
|
168
|
+
K as getCookie,
|
|
169
|
+
F as getCookies,
|
|
170
|
+
Hs as getDate,
|
|
171
|
+
Qs as getElement,
|
|
172
|
+
Pr as getOperatingSystem,
|
|
173
|
+
Q as getParsedCookies,
|
|
174
|
+
ss as getRangesSelection,
|
|
175
|
+
qs as getRetry,
|
|
176
|
+
Vt as getSpeechRecognition,
|
|
177
|
+
Ss as getTimeFromSeconds,
|
|
178
|
+
po as isHotkeyMatch,
|
|
179
|
+
Ys as isTarget,
|
|
180
|
+
ws as legacyCopyToClipboard,
|
|
181
|
+
$e as mapGamepadToXbox360Controller,
|
|
182
|
+
V as removeCookie,
|
|
183
|
+
w as removeCookieItem,
|
|
184
|
+
Ms as scrollTo,
|
|
185
|
+
W as setCookie,
|
|
186
|
+
U as setCookieItem,
|
|
187
|
+
Xs as target,
|
|
188
|
+
Zs as targetSymbol,
|
|
189
|
+
em as throttle,
|
|
190
|
+
p as useActiveElement,
|
|
191
|
+
f as useAsync,
|
|
192
|
+
i as useBattery,
|
|
193
|
+
a as useBluetooth,
|
|
194
|
+
l as useBoolean,
|
|
195
|
+
k as useBreakpoints,
|
|
196
|
+
A as useBrowserLanguage,
|
|
197
|
+
D as useClickOutside,
|
|
198
|
+
b as useClipboard,
|
|
199
|
+
N as useConst,
|
|
200
|
+
G as useCookie,
|
|
201
|
+
X as useCookies,
|
|
202
|
+
j as useCopy,
|
|
203
|
+
J as useCounter,
|
|
204
|
+
$ as useCssVar,
|
|
205
|
+
oe as useDebounceCallback,
|
|
206
|
+
te as useDebounceValue,
|
|
207
|
+
me as useDefault,
|
|
208
|
+
ue as useDeviceMotion,
|
|
209
|
+
xe as useDeviceOrientation,
|
|
210
|
+
ne as useDevicePixelRatio,
|
|
211
|
+
ce as useDidUpdate,
|
|
212
|
+
Se as useDisclosure,
|
|
213
|
+
ge as useDisplayMedia,
|
|
214
|
+
de as useDocumentEvent,
|
|
215
|
+
Pe as useDocumentTitle,
|
|
216
|
+
Re as useDocumentVisibility,
|
|
217
|
+
ke as useDoubleClick,
|
|
218
|
+
Ae as useDropZone,
|
|
219
|
+
De as useElementSize,
|
|
220
|
+
be as useEvent,
|
|
221
|
+
Ne as useEventListener,
|
|
222
|
+
he as useEventSource,
|
|
223
|
+
Ke as useEyeDropper,
|
|
224
|
+
Ve as useFavicon,
|
|
225
|
+
We as useField,
|
|
226
|
+
Ge as useFileDialog,
|
|
227
|
+
ze as useFocus,
|
|
228
|
+
Xe as useFps,
|
|
229
|
+
je as useFul,
|
|
230
|
+
Je as useFullscreen,
|
|
231
|
+
eo as useGamepad,
|
|
232
|
+
ro as useGeolocation,
|
|
233
|
+
so as useHash,
|
|
234
|
+
uo as useHotkeys,
|
|
235
|
+
xo as useHover,
|
|
236
|
+
no as useIdle,
|
|
237
|
+
co as useImage,
|
|
238
|
+
So as useInfiniteScroll,
|
|
239
|
+
go as useIntersectionObserver,
|
|
240
|
+
Co as useInterval,
|
|
241
|
+
Io as useIsFirstRender,
|
|
242
|
+
Oo as useIsomorphicLayoutEffect,
|
|
243
|
+
vo as useKeyPress,
|
|
244
|
+
_o as useKeyPressEvent,
|
|
245
|
+
yo as useKeyboard,
|
|
246
|
+
Mo as useKeysPressed,
|
|
247
|
+
Lo as useLastChanged,
|
|
248
|
+
Bo as useLatest,
|
|
249
|
+
Fo as useLess,
|
|
250
|
+
wo as useList,
|
|
251
|
+
Uo as useLocalStorage,
|
|
252
|
+
Ho as useLockCallback,
|
|
253
|
+
Qo as useLogger,
|
|
254
|
+
Zo as useLongPress,
|
|
255
|
+
qo as useMap,
|
|
256
|
+
Yo as useMeasure,
|
|
257
|
+
er as useMediaQuery,
|
|
258
|
+
rr as useMemory,
|
|
259
|
+
sr as useMount,
|
|
260
|
+
pr as useMouse,
|
|
261
|
+
fr as useMutation,
|
|
262
|
+
ir as useMutationObserver,
|
|
263
|
+
cr as useNetwork,
|
|
264
|
+
Sr as useOffsetPagination,
|
|
265
|
+
gr as useOnce,
|
|
266
|
+
dr as useOnline,
|
|
267
|
+
Ir as useOperatingSystem,
|
|
268
|
+
Or as useOptimistic,
|
|
269
|
+
yr as useOrientation,
|
|
270
|
+
vr as useOtpCredential,
|
|
271
|
+
_r as usePageLeave,
|
|
272
|
+
Lr as usePaint,
|
|
273
|
+
Br as useParallax,
|
|
274
|
+
Fr as usePerformanceObserver,
|
|
275
|
+
wr as usePermission,
|
|
276
|
+
Ur as usePointerLock,
|
|
277
|
+
Hr as usePostMessage,
|
|
278
|
+
Qr as usePreferredColorScheme,
|
|
279
|
+
Zr as usePreferredContrast,
|
|
280
|
+
qr as usePreferredDark,
|
|
281
|
+
Yr as usePreferredLanguages,
|
|
282
|
+
et as usePreferredReducedMotion,
|
|
283
|
+
rt as usePrevious,
|
|
284
|
+
st as useQuery,
|
|
285
|
+
pt as useQueue,
|
|
286
|
+
ft as useRaf,
|
|
287
|
+
it as useRafValue,
|
|
288
|
+
at as useRefState,
|
|
289
|
+
lt as useRenderCount,
|
|
290
|
+
Tt as useRenderInfo,
|
|
291
|
+
Et as useRerender,
|
|
292
|
+
Ct as useResizeObserver,
|
|
293
|
+
It as useScreenOrientation,
|
|
294
|
+
kt as useScript,
|
|
295
|
+
At as useScroll,
|
|
296
|
+
Dt as useScrollIntoView,
|
|
297
|
+
bt as useScrollTo,
|
|
298
|
+
Nt as useSessionStorage,
|
|
299
|
+
ht as useSet,
|
|
300
|
+
Kt as useShare,
|
|
301
|
+
wt as useSpeechRecognition,
|
|
302
|
+
Ut as useSpeechSynthesis,
|
|
303
|
+
Ht as useStateHistory,
|
|
304
|
+
Qt as useStep,
|
|
305
|
+
Zt as useSticky,
|
|
306
|
+
qt as useStopwatch,
|
|
307
|
+
es as useStorage,
|
|
308
|
+
rs as useTextDirection,
|
|
309
|
+
ms as useTextSelection,
|
|
310
|
+
us as useThrottleCallback,
|
|
311
|
+
xs as useThrottleValue,
|
|
312
|
+
ns as useTime,
|
|
313
|
+
cs as useTimeout,
|
|
314
|
+
Ts as useTimer,
|
|
315
|
+
Es as useToggle,
|
|
316
|
+
Cs as useUnmount,
|
|
317
|
+
Is as useVibrate,
|
|
318
|
+
Os as useWakeLock,
|
|
319
|
+
ys as useWebSocket,
|
|
320
|
+
vs as useWindowEvent,
|
|
321
|
+
_s as useWindowFocus,
|
|
322
|
+
Ns as useWindowScroll,
|
|
323
|
+
hs as useWindowSize,
|
|
324
|
+
Ks as useWizard
|
|
321
325
|
};
|
|
322
326
|
//# sourceMappingURL=index.mjs.map
|