@forgedevstack/bear 1.1.0 → 1.1.3
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/components/AlertDialog/AlertDialog.cjs +1 -0
- package/dist/components/AlertDialog/AlertDialog.const.cjs +1 -0
- package/dist/components/AlertDialog/AlertDialog.const.d.ts +5 -0
- package/dist/components/AlertDialog/AlertDialog.const.js +8 -0
- package/dist/components/AlertDialog/AlertDialog.d.ts +4 -0
- package/dist/components/AlertDialog/AlertDialog.js +107 -0
- package/dist/components/AlertDialog/AlertDialog.types.d.ts +34 -0
- package/dist/components/AlertDialog/index.d.ts +3 -0
- package/dist/components/AspectRatio/AspectRatio.cjs +1 -0
- package/dist/components/AspectRatio/AspectRatio.d.ts +3 -0
- package/dist/components/AspectRatio/AspectRatio.js +29 -0
- package/dist/components/AspectRatio/AspectRatio.types.d.ts +9 -0
- package/dist/components/AspectRatio/index.d.ts +2 -0
- package/dist/components/Button/Button.cjs +1 -1
- package/dist/components/Button/Button.constants.cjs +2 -2
- package/dist/components/Button/Button.constants.d.ts +1 -0
- package/dist/components/Button/Button.constants.js +10 -3
- package/dist/components/Button/Button.js +92 -84
- package/dist/components/Button/Button.types.d.ts +2 -0
- package/dist/components/FormField/FormField.cjs +1 -0
- package/dist/components/FormField/FormField.const.cjs +1 -0
- package/dist/components/FormField/FormField.const.d.ts +20 -0
- package/dist/components/FormField/FormField.const.js +23 -0
- package/dist/components/FormField/FormField.d.ts +3 -0
- package/dist/components/FormField/FormField.js +127 -0
- package/dist/components/FormField/FormField.types.d.ts +23 -0
- package/dist/components/FormField/index.d.ts +2 -0
- package/dist/components/Input/Input.cjs +1 -1
- package/dist/components/Input/Input.js +81 -44
- package/dist/components/Input/Input.types.d.ts +10 -0
- package/dist/components/Input/components/ClearIcon/ClearIcon.cjs +1 -0
- package/dist/components/Input/components/ClearIcon/ClearIcon.d.ts +7 -0
- package/dist/components/Input/components/ClearIcon/ClearIcon.js +25 -0
- package/dist/components/Input/components/ClearIcon/index.d.ts +1 -0
- package/dist/components/InputGroup/InputGroup.cjs +1 -0
- package/dist/components/InputGroup/InputGroup.d.ts +4 -0
- package/dist/components/InputGroup/InputGroup.js +63 -0
- package/dist/components/InputGroup/InputGroup.types.d.ts +23 -0
- package/dist/components/InputGroup/index.d.ts +2 -0
- package/dist/components/PasswordInput/PasswordInput.cjs +1 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts +3 -0
- package/dist/components/PasswordInput/PasswordInput.js +61 -0
- package/dist/components/PasswordInput/PasswordInput.types.d.ts +18 -0
- package/dist/components/PasswordInput/index.d.ts +2 -0
- package/dist/components/ResizableTextarea/ResizableTextarea.cjs +1 -1
- package/dist/components/ResizableTextarea/ResizableTextarea.js +90 -54
- package/dist/components/ResizableTextarea/ResizableTextarea.types.d.ts +10 -0
- package/dist/components/RichEditor/RichEditor.cjs +1 -1
- package/dist/components/RichEditor/RichEditor.js +186 -169
- package/dist/components/RichEditor/RichEditor.types.d.ts +4 -0
- package/dist/components/Typewriter/Typewriter.cjs +1 -1
- package/dist/components/Typewriter/Typewriter.js +59 -65
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +10 -0
- package/dist/components/index.js +44 -34
- package/dist/index.cjs +1 -1
- package/dist/index.js +126 -116
- package/dist/styles.css +1 -1
- package/dist/types/component.types.d.ts +13 -0
- package/package.json +1 -4
package/dist/index.js
CHANGED
|
@@ -7,11 +7,11 @@ import { Card as C, CardBody as I, CardCompound as S, CardFooter as T, CardHeade
|
|
|
7
7
|
import { Badge as B } from "./components/Badge/Badge.js";
|
|
8
8
|
import { Paper as P } from "./components/Paper/Paper.js";
|
|
9
9
|
import { Divider as v } from "./components/Divider/Divider.js";
|
|
10
|
-
import { Typography as
|
|
10
|
+
import { Typography as D } from "./components/Typography/Typography.js";
|
|
11
11
|
import { Link as y } from "./components/Link/Link.js";
|
|
12
12
|
import { Spinner as R } from "./components/Spinner/Spinner.js";
|
|
13
|
-
import { Alert as
|
|
14
|
-
import { Rating as
|
|
13
|
+
import { Alert as w } from "./components/Alert/Alert.js";
|
|
14
|
+
import { Rating as E } from "./components/Rating/Rating.js";
|
|
15
15
|
import { BearIcons as V } from "./components/Icon/index.js";
|
|
16
16
|
import { ChevronDownIcon as N, ChevronLeftIcon as z, ChevronRightIcon as H, ChevronUpIcon as J, MenuIcon as Q, CloseIcon as U } from "./components/Icon/icons/navigation.js";
|
|
17
17
|
import { RemoveIcon as j, AddIcon as q, SearchIcon as X, SettingsIcon as _ } from "./components/Icon/icons/action.js";
|
|
@@ -29,10 +29,10 @@ import { Input as bo } from "./components/Input/Input.js";
|
|
|
29
29
|
import { Select as go } from "./components/Select/Select.js";
|
|
30
30
|
import { Switch as ko } from "./components/Switch/Switch.js";
|
|
31
31
|
import { Checkbox as Lo } from "./components/Checkbox/Checkbox.js";
|
|
32
|
-
import { Radio as
|
|
32
|
+
import { Radio as Mo, RadioGroup as yo } from "./components/Radio/Radio.js";
|
|
33
33
|
import { MultiSelect as Ro } from "./components/MultiSelect/MultiSelect.js";
|
|
34
|
-
import { NavigableSelect as
|
|
35
|
-
import { Autocomplete as
|
|
34
|
+
import { NavigableSelect as wo } from "./components/NavigableSelect/NavigableSelect.js";
|
|
35
|
+
import { Autocomplete as Eo } from "./components/Autocomplete/Autocomplete.js";
|
|
36
36
|
import { TransferList as Vo } from "./components/TransferList/TransferList.js";
|
|
37
37
|
import { DataTable as No, createColumns as zo } from "./components/DataTable/DataTable.js";
|
|
38
38
|
import { Carousel as Jo } from "./components/Carousel/Carousel.js";
|
|
@@ -47,11 +47,11 @@ import { Skeleton as Ir, SkeletonAvatar as Sr, SkeletonCard as Tr, SkeletonText
|
|
|
47
47
|
import { Pagination as Br } from "./components/Pagination/Pagination.js";
|
|
48
48
|
import { Slider as Pr } from "./components/Slider/Slider.js";
|
|
49
49
|
import { BearLoader as vr } from "./components/BearLoader/BearLoader.js";
|
|
50
|
-
import { Calendar as
|
|
50
|
+
import { Calendar as Dr } from "./components/Calendar/Calendar.js";
|
|
51
51
|
import { DatePicker as yr } from "./components/DatePicker/DatePicker.js";
|
|
52
52
|
import { TimePicker as Rr } from "./components/TimePicker/TimePicker.js";
|
|
53
|
-
import { Breadcrumbs as
|
|
54
|
-
import { Stepper as
|
|
53
|
+
import { Breadcrumbs as wr } from "./components/Breadcrumbs/Breadcrumbs.js";
|
|
54
|
+
import { Stepper as Er, StepperControls as Or } from "./components/Stepper/Stepper.js";
|
|
55
55
|
import { BottomNavigation as Kr } from "./components/BottomNavigation/BottomNavigation.js";
|
|
56
56
|
import { AppBar as zr } from "./components/AppBar/AppBar.js";
|
|
57
57
|
import { Popover as Jr } from "./components/Popover/Popover.js";
|
|
@@ -76,10 +76,10 @@ import { Sidebar as ke } from "./components/Sidebar/Sidebar.js";
|
|
|
76
76
|
import { SidebarGroup as Le } from "./components/Sidebar/components/SidebarGroup/SidebarGroup.js";
|
|
77
77
|
import "react/jsx-runtime";
|
|
78
78
|
import "react";
|
|
79
|
-
import { cn as
|
|
79
|
+
import { cn as Me, styleForge as ye } from "./utils/cn.js";
|
|
80
80
|
import { deepMerge as Re } from "./utils/deepMerge.js";
|
|
81
|
-
import { createSlots as
|
|
82
|
-
import { Column as
|
|
81
|
+
import { createSlots as we } from "./utils/createSlots.js";
|
|
82
|
+
import { Column as Ee, Columns as Oe } from "./components/Columns/Columns.js";
|
|
83
83
|
import { Box as Ke } from "./components/Box/Box.js";
|
|
84
84
|
import { Em as ze } from "./components/Em/Em.js";
|
|
85
85
|
import { Highlight as Je } from "./components/Highlight/Highlight.js";
|
|
@@ -100,10 +100,10 @@ import { Form as ht } from "./components/Form/Form.js";
|
|
|
100
100
|
import { useFormContext as Bt, useFormContextSafe as gt } from "./components/Form/Form.context.js";
|
|
101
101
|
import { NotificationCenter as kt } from "./components/NotificationCenter/NotificationCenter.js";
|
|
102
102
|
import { PhoneInput as Lt } from "./components/PhoneInput/PhoneInput.js";
|
|
103
|
-
import { CreditInput as
|
|
103
|
+
import { CreditInput as Mt } from "./components/CreditInput/CreditInput.js";
|
|
104
104
|
import { CommandPalette as At } from "./components/CommandPalette/CommandPalette.js";
|
|
105
|
-
import { SegmentedControl as
|
|
106
|
-
import { TagsInput as
|
|
105
|
+
import { SegmentedControl as Ft } from "./components/SegmentedControl/SegmentedControl.js";
|
|
106
|
+
import { TagsInput as Gt } from "./components/TagsInput/TagsInput.js";
|
|
107
107
|
import { BottomSheet as Ot } from "./components/BottomSheet/BottomSheet.js";
|
|
108
108
|
import { SliderRange as Kt } from "./components/SliderRange/SliderRange.js";
|
|
109
109
|
import { MentionsInput as zt } from "./components/MentionsInput/MentionsInput.js";
|
|
@@ -126,72 +126,79 @@ import { Map as Tp } from "./components/Map/Map.js";
|
|
|
126
126
|
import { CodeEditor as bp } from "./components/CodeEditor/CodeEditor.js";
|
|
127
127
|
import { Cropper as gp } from "./components/Cropper/Cropper.js";
|
|
128
128
|
import { Motion as kp, Transition as vp } from "./components/Transition/Transition.js";
|
|
129
|
-
import { Masonry as
|
|
129
|
+
import { Masonry as Dp } from "./components/Masonry/Masonry.js";
|
|
130
130
|
import { Watermark as yp } from "./components/Watermark/Watermark.js";
|
|
131
131
|
import { Marquee as Rp } from "./components/Marquee/Marquee.js";
|
|
132
|
-
import { CountdownTimer as
|
|
133
|
-
import { Spotlight as
|
|
132
|
+
import { CountdownTimer as wp } from "./components/CountdownTimer/CountdownTimer.js";
|
|
133
|
+
import { Spotlight as Ep } from "./components/Spotlight/Spotlight.js";
|
|
134
134
|
import { Typewriter as Vp } from "./components/Typewriter/Typewriter.js";
|
|
135
135
|
import { Dock as Np } from "./components/Dock/Dock.js";
|
|
136
136
|
import { GradientText as Hp } from "./components/GradientText/GradientText.js";
|
|
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 {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
137
|
+
import { PasswordInput as Qp } from "./components/PasswordInput/PasswordInput.js";
|
|
138
|
+
import { AlertDialog as Wp } from "./components/AlertDialog/AlertDialog.js";
|
|
139
|
+
import { InputGroup as qp } from "./components/InputGroup/InputGroup.js";
|
|
140
|
+
import { FormField as _p } from "./components/FormField/FormField.js";
|
|
141
|
+
import { AspectRatio as Zp } from "./components/AspectRatio/AspectRatio.js";
|
|
142
|
+
import { BearProvider as om, useBear as rm, useBearMode as em, useBearTheme as tm, useBearThemeOptional as pm } from "./context/BearProvider.js";
|
|
143
|
+
import { defaultDarkTheme as fm, defaultLightTheme as xm } from "./context/defaultTheme.js";
|
|
144
|
+
import { useIsDesktop as nm, useIsMobile as im, useIsTablet as sm, useMediaQuery as um, usePrefersDark as lm, usePrefersReducedMotion as dm } from "./hooks/useMediaQuery.js";
|
|
145
|
+
import { useClickOutside as Cm } from "./hooks/useClickOutside.js";
|
|
146
|
+
import { useDisclosure as Sm } from "./hooks/useDisclosure.js";
|
|
147
|
+
import { useBearStyles as hm } from "./hooks/useBearStyles.js";
|
|
148
|
+
import { bearStyled as Bm } from "./hooks/bearStyled.js";
|
|
149
|
+
import { useSlide as Pm } from "./hooks/useSlide/useSlide.js";
|
|
150
|
+
import { useParallax as vm } from "./hooks/useParallax/useParallax.js";
|
|
151
|
+
import { useBounce as Dm } from "./hooks/useBounce/useBounce.js";
|
|
152
|
+
import { useFloat as ym } from "./hooks/useFloat/useFloat.js";
|
|
153
|
+
import { usePulse as Rm } from "./hooks/usePulse/usePulse.js";
|
|
154
|
+
import { useShake as wm } from "./hooks/useShake/useShake.js";
|
|
155
|
+
import { useClipboard as Em } from "./hooks/useClipboard/useClipboard.js";
|
|
156
|
+
import { useDebounce as Vm, useDebouncedCallback as Km } from "./hooks/useDebounce/useDebounce.js";
|
|
157
|
+
import { useThrottle as zm, useThrottledCallback as Hm } from "./hooks/useThrottle/useThrottle.js";
|
|
158
|
+
import { useLocalStorage as Qm } from "./hooks/useLocalStorage/useLocalStorage.js";
|
|
159
|
+
import { useKeyPress as Wm, useKeyPressState as jm } from "./hooks/useKeyPress/useKeyPress.js";
|
|
160
|
+
import { useInView as Xm, useIntersectionObserver as _m } from "./hooks/useIntersectionObserver/useIntersectionObserver.js";
|
|
161
|
+
import { useDragDrop as Zm } from "./hooks/useDragDrop/useDragDrop.js";
|
|
162
|
+
import { useLazyLoad as of } from "./hooks/useLazyLoad/useLazyLoad.js";
|
|
163
|
+
import { BearComponentProvider as ef, useBC as tf, useBearComponent as pf, useBearComponentContext as mf } from "./hooks/useBearComponent/useBearComponent.js";
|
|
164
|
+
import { useSpotlight as xf } from "./hooks/useSpotlight/useSpotlight.js";
|
|
165
|
+
import { useOnline as nf } from "./hooks/useOnline/useOnline.js";
|
|
166
|
+
import { useWebSocket as uf } from "./hooks/useWebSocket/useWebSocket.js";
|
|
167
|
+
import { useIdle as df } from "./hooks/useIdle/useIdle.js";
|
|
168
|
+
import { usePageVisibility as Cf } from "./hooks/usePageVisibility/usePageVisibility.js";
|
|
169
|
+
import { useLongPress as Sf } from "./hooks/useLongPress/useLongPress.js";
|
|
170
|
+
import { useAnimate as hf } from "./hooks/useAnimate.js";
|
|
171
|
+
import { useResponsive as Bf, useResponsiveProps as gf } from "./hooks/useResponsive.js";
|
|
172
|
+
import { Icon as kf } from "./components/Icon/Icon.js";
|
|
168
173
|
export {
|
|
169
174
|
Uo as Accordion,
|
|
170
175
|
Wo as AccordionItem,
|
|
171
176
|
$e as ActiveBar,
|
|
172
177
|
mt as ActivityItem,
|
|
173
|
-
|
|
178
|
+
w as Alert,
|
|
179
|
+
Wp as AlertDialog,
|
|
174
180
|
zr as AppBar,
|
|
175
|
-
|
|
181
|
+
Zp as AspectRatio,
|
|
182
|
+
Eo as Autocomplete,
|
|
176
183
|
$o as Avatar,
|
|
177
184
|
or as AvatarGroup,
|
|
178
185
|
jt as BEAR_EMOJIS,
|
|
179
186
|
Yt as BackTop,
|
|
180
187
|
B as Badge,
|
|
181
188
|
xt as BarChart,
|
|
182
|
-
|
|
189
|
+
ef as BearComponentProvider,
|
|
183
190
|
V as BearIcons,
|
|
184
191
|
vr as BearLoader,
|
|
185
192
|
eo as BearLogo,
|
|
186
193
|
oo as BearPawIcon,
|
|
187
|
-
|
|
194
|
+
om as BearProvider,
|
|
188
195
|
Kr as BottomNavigation,
|
|
189
196
|
Ot as BottomSheet,
|
|
190
197
|
Ke as Box,
|
|
191
|
-
|
|
198
|
+
wr as Breadcrumbs,
|
|
192
199
|
u as Button,
|
|
193
200
|
d as ButtonGroup,
|
|
194
|
-
|
|
201
|
+
Dr as Calendar,
|
|
195
202
|
C as Card,
|
|
196
203
|
I as CardBody,
|
|
197
204
|
S as CardCompound,
|
|
@@ -212,14 +219,14 @@ export {
|
|
|
212
219
|
bp as CodeEditor,
|
|
213
220
|
Te as Collapsible,
|
|
214
221
|
se as ColorPicker,
|
|
215
|
-
|
|
222
|
+
Ee as Column,
|
|
216
223
|
Oe as Columns,
|
|
217
224
|
At as CommandPalette,
|
|
218
225
|
$t as Confetti,
|
|
219
226
|
p as Container,
|
|
220
227
|
ge as CopyButton,
|
|
221
|
-
|
|
222
|
-
|
|
228
|
+
wp as CountdownTimer,
|
|
229
|
+
Mt as CreditInput,
|
|
223
230
|
gp as Cropper,
|
|
224
231
|
No as DataTable,
|
|
225
232
|
yr as DatePicker,
|
|
@@ -239,6 +246,7 @@ export {
|
|
|
239
246
|
f as Flex,
|
|
240
247
|
cp as FloatingChat,
|
|
241
248
|
ht as Form,
|
|
249
|
+
_p as FormField,
|
|
242
250
|
dt as Gauge,
|
|
243
251
|
Hp as GradientText,
|
|
244
252
|
a as Grid,
|
|
@@ -246,9 +254,10 @@ export {
|
|
|
246
254
|
i as GridItem,
|
|
247
255
|
Je as Highlight,
|
|
248
256
|
Xe as HoverCard,
|
|
249
|
-
|
|
257
|
+
kf as Icon,
|
|
250
258
|
te as Image,
|
|
251
259
|
bo as Input,
|
|
260
|
+
qp as InputGroup,
|
|
252
261
|
np as JsonViewer,
|
|
253
262
|
Jt as Kanban,
|
|
254
263
|
be as Kbd,
|
|
@@ -263,7 +272,7 @@ export {
|
|
|
263
272
|
Tp as Map,
|
|
264
273
|
Ue as Mark,
|
|
265
274
|
Rp as Marquee,
|
|
266
|
-
|
|
275
|
+
Dp as Masonry,
|
|
267
276
|
zt as MentionsInput,
|
|
268
277
|
uo as Menu,
|
|
269
278
|
lo as MenuDivider,
|
|
@@ -273,27 +282,28 @@ export {
|
|
|
273
282
|
fo as Modal,
|
|
274
283
|
kp as Motion,
|
|
275
284
|
Ro as MultiSelect,
|
|
276
|
-
|
|
285
|
+
wo as NavigableSelect,
|
|
277
286
|
kt as NotificationCenter,
|
|
278
287
|
xe as NumberInput,
|
|
279
288
|
ne as OTPInput,
|
|
280
289
|
Br as Pagination,
|
|
281
290
|
P as Paper,
|
|
291
|
+
Qp as PasswordInput,
|
|
282
292
|
Lt as PhoneInput,
|
|
283
293
|
it as PieChart,
|
|
284
294
|
q as PlusIcon,
|
|
285
295
|
Jr as Popover,
|
|
286
296
|
er as Progress,
|
|
287
297
|
xp as QRCode,
|
|
288
|
-
|
|
298
|
+
Mo as Radio,
|
|
289
299
|
yo as RadioGroup,
|
|
290
|
-
|
|
300
|
+
E as Rating,
|
|
291
301
|
ce as ResizablePanel,
|
|
292
302
|
Ie as ResizableTextarea,
|
|
293
303
|
rt as RichEditor,
|
|
294
304
|
le as ScrollArea,
|
|
295
305
|
X as SearchIcon,
|
|
296
|
-
|
|
306
|
+
Ft as SegmentedControl,
|
|
297
307
|
go as Select,
|
|
298
308
|
_ as SettingsIcon,
|
|
299
309
|
ke as Sidebar,
|
|
@@ -308,17 +318,17 @@ export {
|
|
|
308
318
|
ut as Sparkline,
|
|
309
319
|
To as SpeedDial,
|
|
310
320
|
R as Spinner,
|
|
311
|
-
|
|
321
|
+
Ep as Spotlight,
|
|
312
322
|
tt as StatCard,
|
|
313
323
|
$r as Statistic,
|
|
314
|
-
|
|
324
|
+
Er as Stepper,
|
|
315
325
|
Or as StepperControls,
|
|
316
326
|
ko as Switch,
|
|
317
327
|
qo as Tab,
|
|
318
328
|
Xo as TabList,
|
|
319
329
|
_o as TabPanel,
|
|
320
330
|
Yo as Tabs,
|
|
321
|
-
|
|
331
|
+
Gt as TagsInput,
|
|
322
332
|
Ip as Terminal,
|
|
323
333
|
Rr as TimePicker,
|
|
324
334
|
Yr as Timeline,
|
|
@@ -330,64 +340,64 @@ export {
|
|
|
330
340
|
vp as Transition,
|
|
331
341
|
jr as TreeView,
|
|
332
342
|
Vp as Typewriter,
|
|
333
|
-
|
|
343
|
+
D as Typography,
|
|
334
344
|
Xt as VirtualList,
|
|
335
345
|
yp as Watermark,
|
|
336
346
|
U as XIcon,
|
|
337
|
-
|
|
338
|
-
|
|
347
|
+
Bm as bearStyled,
|
|
348
|
+
Me as cn,
|
|
339
349
|
zo as createColumns,
|
|
340
|
-
|
|
350
|
+
we as createSlots,
|
|
341
351
|
Re as deepMerge,
|
|
342
|
-
|
|
343
|
-
|
|
352
|
+
fm as defaultDarkTheme,
|
|
353
|
+
xm as defaultLightTheme,
|
|
344
354
|
ye as styleForge,
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
hf as useAnimate,
|
|
356
|
+
tf as useBC,
|
|
357
|
+
rm as useBear,
|
|
358
|
+
pf as useBearComponent,
|
|
359
|
+
mf as useBearComponentContext,
|
|
360
|
+
em as useBearMode,
|
|
361
|
+
hm as useBearStyles,
|
|
362
|
+
tm as useBearTheme,
|
|
363
|
+
pm as useBearThemeOptional,
|
|
364
|
+
Dm as useBounce,
|
|
365
|
+
Cm as useClickOutside,
|
|
366
|
+
Em as useClipboard,
|
|
357
367
|
rp as useConfetti,
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
368
|
+
Vm as useDebounce,
|
|
369
|
+
Km as useDebouncedCallback,
|
|
370
|
+
Sm as useDisclosure,
|
|
371
|
+
Zm as useDragDrop,
|
|
372
|
+
ym as useFloat,
|
|
363
373
|
Bt as useFormContext,
|
|
364
374
|
gt as useFormContextSafe,
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
375
|
+
df as useIdle,
|
|
376
|
+
Xm as useInView,
|
|
377
|
+
_m as useIntersectionObserver,
|
|
378
|
+
nm as useIsDesktop,
|
|
379
|
+
im as useIsMobile,
|
|
380
|
+
sm as useIsTablet,
|
|
381
|
+
Wm as useKeyPress,
|
|
382
|
+
jm as useKeyPressState,
|
|
383
|
+
of as useLazyLoad,
|
|
384
|
+
Qm as useLocalStorage,
|
|
385
|
+
Sf as useLongPress,
|
|
386
|
+
um as useMediaQuery,
|
|
387
|
+
nf as useOnline,
|
|
388
|
+
Cf as usePageVisibility,
|
|
389
|
+
vm as useParallax,
|
|
390
|
+
lm as usePrefersDark,
|
|
391
|
+
dm as usePrefersReducedMotion,
|
|
392
|
+
Rm as usePulse,
|
|
393
|
+
Bf as useResponsive,
|
|
394
|
+
gf as useResponsiveProps,
|
|
395
|
+
wm as useShake,
|
|
396
|
+
Pm as useSlide,
|
|
397
|
+
xf as useSpotlight,
|
|
398
|
+
zm as useThrottle,
|
|
399
|
+
Hm as useThrottledCallback,
|
|
390
400
|
cr as useToast,
|
|
391
401
|
mp as useTour,
|
|
392
|
-
|
|
402
|
+
uf as useWebSocket
|
|
393
403
|
};
|