@forgedevstack/bear 1.2.4 → 1.2.5
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/Card/Card.types.d.ts +1 -2
- package/dist/components/Chat/Chat.const.cjs +1 -1
- package/dist/components/Chat/Chat.const.d.ts +1 -1
- package/dist/components/Chat/Chat.const.js +1 -1
- package/dist/components/ColorSwatch/ColorSwatch.cjs +1 -1
- package/dist/components/ColorSwatch/ColorSwatch.js +8 -8
- package/dist/components/CommandPalette/CommandPalette.cjs +1 -1
- package/dist/components/CommandPalette/CommandPalette.js +71 -71
- package/dist/components/DiffSquares/DiffSquares.cjs +1 -1
- package/dist/components/DiffSquares/DiffSquares.js +11 -11
- package/dist/components/MentionsInput/MentionsInput.cjs +1 -1
- package/dist/components/MentionsInput/MentionsInput.js +114 -92
- package/dist/components/MentionsInput/MentionsInput.types.d.ts +4 -0
- package/dist/components/MessageList/MessageList.cjs +1 -0
- package/dist/components/MessageList/MessageList.const.cjs +1 -0
- package/dist/components/MessageList/MessageList.const.d.ts +23 -0
- package/dist/components/MessageList/MessageList.const.js +30 -0
- package/dist/components/MessageList/MessageList.d.ts +19 -0
- package/dist/components/MessageList/MessageList.js +182 -0
- package/dist/components/MessageList/MessageList.types.d.ts +72 -0
- package/dist/components/MessageList/MessageList.utils.cjs +1 -0
- package/dist/components/MessageList/MessageList.utils.d.ts +6 -0
- package/dist/components/MessageList/MessageList.utils.js +35 -0
- package/dist/components/MessageList/index.d.ts +2 -0
- package/dist/components/Toast/Toast.cjs +1 -1
- package/dist/components/Toast/Toast.d.ts +3 -6
- package/dist/components/Toast/Toast.js +82 -76
- package/dist/components/Toast/Toast.types.d.ts +9 -0
- package/dist/components/Toast/index.d.ts +1 -1
- package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
- package/dist/components/TreeSelect/TreeSelect.js +22 -22
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +144 -142
- package/dist/index.cjs +1 -1
- package/dist/index.js +228 -226
- package/dist/styles/_message-list.css +42 -0
- package/dist/styles/main.css +1 -0
- package/dist/styles.css +47 -0
- package/package.json +15 -2
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Container as m } from "./components/Container/Container.js";
|
|
2
2
|
import { Flex as x } from "./components/Flex/Flex.js";
|
|
3
|
-
import { Grid as
|
|
3
|
+
import { Grid as i, GridCompound as n, GridItem as s } from "./components/Grid/Grid.js";
|
|
4
4
|
import { ActionIcon as l } from "./components/ActionIcon/ActionIcon.js";
|
|
5
5
|
import { Button as c } from "./components/Button/Button.js";
|
|
6
6
|
import { ButtonGroup as I } from "./components/ButtonGroup/ButtonGroup.js";
|
|
@@ -20,7 +20,7 @@ import { CheckIcon as ro } from "./components/Icon/icons/status.js";
|
|
|
20
20
|
import { BearPawIcon as to } from "./components/Icon/icons/misc.js";
|
|
21
21
|
import { BearLogo as mo } from "./components/BearLogo/BearLogo.js";
|
|
22
22
|
import { EmberLogo as xo } from "./components/BearLogo/EmberLogo.js";
|
|
23
|
-
import { Modal as
|
|
23
|
+
import { Modal as io } from "./components/Modal/Modal.js";
|
|
24
24
|
import { Drawer as so } from "./components/Drawer/Drawer.js";
|
|
25
25
|
import { Tooltip as lo } from "./components/Tooltip/Tooltip.js";
|
|
26
26
|
import { Menu as Co, MenuDivider as Io, MenuItem as So } from "./components/Menu/Menu.js";
|
|
@@ -42,7 +42,7 @@ import { DataTable as Zo, createColumns as $o } from "./components/DataTable/Dat
|
|
|
42
42
|
import { Carousel as rr } from "./components/Carousel/Carousel.js";
|
|
43
43
|
import { Accordion as tr, AccordionItem as pr } from "./components/Accordion/Accordion.js";
|
|
44
44
|
import { Tab as fr, Tab as xr, Tabs as ar } from "./components/Tabs/Tabs.js";
|
|
45
|
-
import { TabList as
|
|
45
|
+
import { TabList as nr } from "./components/Tabs/TabList.js";
|
|
46
46
|
import { TabPanel as ur } from "./components/Tabs/TabPanel.js";
|
|
47
47
|
import { Avatar as dr, AvatarGroup as cr } from "./components/Avatar/Avatar.js";
|
|
48
48
|
import { Progress as Ir } from "./components/Progress/Progress.js";
|
|
@@ -63,7 +63,7 @@ import { BottomNavigation as ee } from "./components/BottomNavigation/BottomNavi
|
|
|
63
63
|
import { AppBar as pe } from "./components/AppBar/AppBar.js";
|
|
64
64
|
import { Popover as fe } from "./components/Popover/Popover.js";
|
|
65
65
|
import { Chip as ae } from "./components/Chip/Chip.js";
|
|
66
|
-
import { TreeView as
|
|
66
|
+
import { TreeView as ne } from "./components/TreeView/TreeView.js";
|
|
67
67
|
import { FileTree as ue } from "./components/FileTree/FileTree.js";
|
|
68
68
|
import { Timeline as de } from "./components/Timeline/Timeline.js";
|
|
69
69
|
import { Statistic as Ce } from "./components/Statistic/Statistic.js";
|
|
@@ -89,7 +89,7 @@ import { createSlots as Ye } from "./utils/createSlots.js";
|
|
|
89
89
|
import { formatBearId as $e, generateBearId as ot, resolveBearId as rt } from "./utils/generateBearId.utils.js";
|
|
90
90
|
import { useBearId as tt } from "./utils/useBearId.js";
|
|
91
91
|
import { getResponsiveClass as mt } from "./utils/getResponsiveClass.utils.js";
|
|
92
|
-
import { BEAR_ID_MAX_LENGTH as xt, BEAR_ID_NUMERIC_MAX as at, BEAR_ID_NUMERIC_MIN as
|
|
92
|
+
import { BEAR_ID_MAX_LENGTH as xt, BEAR_ID_NUMERIC_MAX as at, BEAR_ID_NUMERIC_MIN as it, BEAR_ID_PREFIX as nt, BEAR_ID_SEPARATOR as st } from "./utils/generateBearId.const.js";
|
|
93
93
|
import { Column as lt, Columns as dt } from "./components/Columns/Columns.js";
|
|
94
94
|
import { Box as Ct } from "./components/Box/Box.js";
|
|
95
95
|
import { Em as St } from "./components/Em/Em.js";
|
|
@@ -114,7 +114,7 @@ import { Form as op } from "./components/Form/Form.js";
|
|
|
114
114
|
import { useFormContext as ep, useFormContextSafe as tp } from "./components/Form/Form.context.js";
|
|
115
115
|
import { NotificationCenter as mp } from "./components/NotificationCenter/NotificationCenter.js";
|
|
116
116
|
import { PhoneInput as xp } from "./components/PhoneInput/PhoneInput.js";
|
|
117
|
-
import { CreditInput as
|
|
117
|
+
import { CreditInput as ip } from "./components/CreditInput/CreditInput.js";
|
|
118
118
|
import { CommandPalette as sp } from "./components/CommandPalette/CommandPalette.js";
|
|
119
119
|
import { SegmentedControl as lp } from "./components/SegmentedControl/SegmentedControl.js";
|
|
120
120
|
import { TagsInput as cp } from "./components/TagsInput/TagsInput.js";
|
|
@@ -136,101 +136,102 @@ import { DiffSquares as Xp } from "./components/DiffSquares/DiffSquares.js";
|
|
|
136
136
|
import { DiffViewer as Jp } from "./components/DiffViewer/DiffViewer.js";
|
|
137
137
|
import { Chat as Wp } from "./components/Chat/Chat.js";
|
|
138
138
|
import { FloatingChat as Yp } from "./components/FloatingChat/FloatingChat.js";
|
|
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 {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
139
|
+
import { MessageList as $p } from "./components/MessageList/MessageList.js";
|
|
140
|
+
import { Terminal as rm } from "./components/Terminal/Terminal.js";
|
|
141
|
+
import { Map as tm } from "./components/Map/Map.js";
|
|
142
|
+
import { CodeEditor as mm } from "./components/CodeEditor/CodeEditor.js";
|
|
143
|
+
import { Cropper as xm } from "./components/Cropper/Cropper.js";
|
|
144
|
+
import { Motion as im, Transition as nm } from "./components/Transition/Transition.js";
|
|
145
|
+
import { Masonry as um } from "./components/Masonry/Masonry.js";
|
|
146
|
+
import { Watermark as dm } from "./components/Watermark/Watermark.js";
|
|
147
|
+
import { Marquee as Cm } from "./components/Marquee/Marquee.js";
|
|
148
|
+
import { CountdownTimer as Sm } from "./components/CountdownTimer/CountdownTimer.js";
|
|
149
|
+
import { Spotlight as Tm } from "./components/Spotlight/Spotlight.js";
|
|
150
|
+
import { Typewriter as hm } from "./components/Typewriter/Typewriter.js";
|
|
151
|
+
import { Dock as bm } from "./components/Dock/Dock.js";
|
|
152
|
+
import { GradientText as Rm } from "./components/GradientText/GradientText.js";
|
|
153
|
+
import { PasswordInput as Dm } from "./components/PasswordInput/PasswordInput.js";
|
|
154
|
+
import { AlertDialog as Mm } from "./components/AlertDialog/AlertDialog.js";
|
|
155
|
+
import { InputGroup as Lm } from "./components/InputGroup/InputGroup.js";
|
|
156
|
+
import { FormField as Em } from "./components/FormField/FormField.js";
|
|
157
|
+
import { Fieldset as wm } from "./components/Fieldset/Fieldset.js";
|
|
158
|
+
import { AspectRatio as Om } from "./components/AspectRatio/AspectRatio.js";
|
|
159
|
+
import { DateRangePicker as Vm } from "./components/DateRangePicker/DateRangePicker.js";
|
|
160
|
+
import { TreeSelect as zm } from "./components/TreeSelect/TreeSelect.js";
|
|
161
|
+
import { ImageGallery as Um } from "./components/ImageGallery/ImageGallery.js";
|
|
162
|
+
import { ContextMenu as qm } from "./components/ContextMenu/ContextMenu.js";
|
|
163
|
+
import { NumberFormatter as Qm } from "./components/NumberFormatter/NumberFormatter.js";
|
|
164
|
+
import { InfiniteScroll as jm } from "./components/InfiniteScroll/InfiniteScroll.js";
|
|
165
|
+
import { ColorSwatch as Zm, ColorSwatchGroup as $m } from "./components/ColorSwatch/ColorSwatch.js";
|
|
166
|
+
import { SplitButton as rf } from "./components/SplitButton/SplitButton.js";
|
|
167
|
+
import { Popconfirm as tf } from "./components/Popconfirm/Popconfirm.js";
|
|
168
|
+
import { Result as mf } from "./components/Result/Result.js";
|
|
169
|
+
import { Descriptions as xf } from "./components/Descriptions/Descriptions.js";
|
|
170
|
+
import { Anchor as nf } from "./components/Anchor/Anchor.js";
|
|
171
|
+
import { Affix as uf } from "./components/Affix/Affix.js";
|
|
172
|
+
import { RingProgress as df } from "./components/RingProgress/RingProgress.js";
|
|
173
|
+
import { Spoiler as Cf } from "./components/Spoiler/Spoiler.js";
|
|
174
|
+
import { LoadingOverlay as Sf } from "./components/LoadingOverlay/LoadingOverlay.js";
|
|
175
|
+
import { Blockquote as Tf } from "./components/Blockquote/Blockquote.js";
|
|
176
|
+
import { Indicator as hf } from "./components/Indicator/Indicator.js";
|
|
177
|
+
import { PageNav as bf } from "./components/PageNav/PageNav.js";
|
|
178
|
+
import { PropsPlayground as Rf } from "./components/PropsPlayground/PropsPlayground.js";
|
|
179
|
+
import { Biometric as Df } from "./components/Biometric/Biometric.js";
|
|
180
|
+
import { useBiometric as Mf } from "./components/Biometric/useBiometric.js";
|
|
181
|
+
import { ThemeIcon as Lf } from "./components/ThemeIcon/ThemeIcon.js";
|
|
182
|
+
import { CloseButton as Ef } from "./components/CloseButton/CloseButton.js";
|
|
183
|
+
import { Overlay as wf } from "./components/Overlay/Overlay.js";
|
|
184
|
+
import { VisuallyHidden as Of } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
185
|
+
import { Portal as Vf } from "./components/Portal/Portal.js";
|
|
186
|
+
import { AnimatedCounter as zf } from "./components/AnimatedCounter/AnimatedCounter.js";
|
|
187
|
+
import { GlowCard as Uf } from "./components/GlowCard/GlowCard.js";
|
|
188
|
+
import { MediaPlayer as qf } from "./components/MediaPlayer/MediaPlayer.js";
|
|
189
|
+
import { Heatmap as Qf } from "./components/Heatmap/Heatmap.js";
|
|
190
|
+
import { TagCloud as jf } from "./components/TagCloud/TagCloud.js";
|
|
191
|
+
import { CurrencyInput as Zf } from "./components/CurrencyInput/CurrencyInput.js";
|
|
192
|
+
import { TimelineChart as ox } from "./components/TimelineChart/TimelineChart.js";
|
|
193
|
+
import { ImageAnnotation as ex } from "./components/ImageAnnotation/ImageAnnotation.js";
|
|
194
|
+
import { CssBaseline as px } from "./components/CssBaseline/CssBaseline.js";
|
|
195
|
+
import { ToggleButton as fx, ToggleButtonGroup as xx } from "./components/ToggleButton/ToggleButton.js";
|
|
196
|
+
import { FormControl as ix } from "./components/FormControl/FormControl.js";
|
|
196
197
|
import "./components/FormControl/FormControl.context.js";
|
|
197
|
-
import { useFormControl as
|
|
198
|
-
import { Snackbar as
|
|
199
|
-
import { TableSkeleton as
|
|
200
|
-
import { FormSkeleton as
|
|
201
|
-
import { BearProvider as
|
|
202
|
-
import { defaultDarkTheme as
|
|
203
|
-
import { useIsDesktop as
|
|
204
|
-
import { useClickOutside as
|
|
205
|
-
import { useResizeObserver as
|
|
206
|
-
import { useDisclosure as
|
|
207
|
-
import { useBearStyles as
|
|
208
|
-
import { bearStyled as
|
|
209
|
-
import { useSlide as
|
|
210
|
-
import { useParallax as
|
|
211
|
-
import { useBounce as
|
|
212
|
-
import { useFloat as
|
|
213
|
-
import { usePulse as
|
|
214
|
-
import { useShake as
|
|
215
|
-
import { useClipboard as
|
|
216
|
-
import { useDebounce as
|
|
217
|
-
import { useThrottle as
|
|
218
|
-
import { useLocalStorage as
|
|
219
|
-
import { useKeyPress as
|
|
220
|
-
import { useInView as
|
|
221
|
-
import { useDragDrop as
|
|
222
|
-
import { useLazyLoad as
|
|
223
|
-
import { BearComponentProvider as
|
|
224
|
-
import { useBearDefaultProps as
|
|
225
|
-
import { useSpotlight as
|
|
226
|
-
import { useOnline as
|
|
227
|
-
import { useWebSocket as
|
|
228
|
-
import { useIdle as
|
|
229
|
-
import { usePageVisibility as
|
|
230
|
-
import { useLongPress as
|
|
231
|
-
import { useAnimate as
|
|
232
|
-
import { useResponsive as
|
|
233
|
-
import { Icon as
|
|
198
|
+
import { useFormControl as sx } from "./hooks/useFormControl/useFormControl.js";
|
|
199
|
+
import { Snackbar as lx } from "./components/Snackbar/Snackbar.js";
|
|
200
|
+
import { TableSkeleton as cx } from "./components/TableSkeleton/TableSkeleton.js";
|
|
201
|
+
import { FormSkeleton as Ix } from "./components/FormSkeleton/FormSkeleton.js";
|
|
202
|
+
import { BearProvider as Bx, useBear as Tx, useBearDensity as gx, useBearDirection as hx, useBearMode as Px, useBearTheme as bx, useBearThemeOptional as kx } from "./context/BearProvider.js";
|
|
203
|
+
import { defaultDarkTheme as Ax, defaultLightTheme as Dx } from "./context/defaultTheme.js";
|
|
204
|
+
import { useIsDesktop as Mx, useIsMobile as yx, useIsTablet as Lx, useMediaQuery as Fx, usePrefersDark as Ex, usePrefersReducedMotion as Gx } from "./hooks/useMediaQuery.js";
|
|
205
|
+
import { useClickOutside as _x, useClickOutsideMultiple as Ox } from "./hooks/useClickOutside.js";
|
|
206
|
+
import { useResizeObserver as Vx } from "./hooks/useResizeObserver/useResizeObserver.js";
|
|
207
|
+
import { useDisclosure as zx } from "./hooks/useDisclosure.js";
|
|
208
|
+
import { useBearStyles as Ux } from "./hooks/useBearStyles.js";
|
|
209
|
+
import { bearStyled as qx } from "./hooks/bearStyled.js";
|
|
210
|
+
import { useSlide as Qx } from "./hooks/useSlide/useSlide.js";
|
|
211
|
+
import { useParallax as jx } from "./hooks/useParallax/useParallax.js";
|
|
212
|
+
import { useBounce as Zx } from "./hooks/useBounce/useBounce.js";
|
|
213
|
+
import { useFloat as oa } from "./hooks/useFloat/useFloat.js";
|
|
214
|
+
import { usePulse as ea } from "./hooks/usePulse/usePulse.js";
|
|
215
|
+
import { useShake as pa } from "./hooks/useShake/useShake.js";
|
|
216
|
+
import { useClipboard as fa } from "./hooks/useClipboard/useClipboard.js";
|
|
217
|
+
import { useDebounce as aa, useDebouncedCallback as ia } from "./hooks/useDebounce/useDebounce.js";
|
|
218
|
+
import { useThrottle as sa, useThrottledCallback as ua } from "./hooks/useThrottle/useThrottle.js";
|
|
219
|
+
import { useLocalStorage as da } from "./hooks/useLocalStorage/useLocalStorage.js";
|
|
220
|
+
import { useKeyPress as Ca, useKeyPressState as Ia } from "./hooks/useKeyPress/useKeyPress.js";
|
|
221
|
+
import { useInView as Ba, useIntersectionObserver as Ta } from "./hooks/useIntersectionObserver/useIntersectionObserver.js";
|
|
222
|
+
import { useDragDrop as ha } from "./hooks/useDragDrop/useDragDrop.js";
|
|
223
|
+
import { useLazyLoad as ba } from "./hooks/useLazyLoad/useLazyLoad.js";
|
|
224
|
+
import { BearComponentProvider as Ra, useBC as Aa, useBearComponent as Da, useBearComponentContext as va } from "./hooks/useBearComponent/useBearComponent.js";
|
|
225
|
+
import { useBearDefaultProps as ya } from "./hooks/useBearDefaultProps.js";
|
|
226
|
+
import { useSpotlight as Fa } from "./hooks/useSpotlight/useSpotlight.js";
|
|
227
|
+
import { useOnline as Ga } from "./hooks/useOnline/useOnline.js";
|
|
228
|
+
import { useWebSocket as _a } from "./hooks/useWebSocket/useWebSocket.js";
|
|
229
|
+
import { useIdle as Na } from "./hooks/useIdle/useIdle.js";
|
|
230
|
+
import { usePageVisibility as Ha } from "./hooks/usePageVisibility/usePageVisibility.js";
|
|
231
|
+
import { useLongPress as Ka } from "./hooks/useLongPress/useLongPress.js";
|
|
232
|
+
import { useAnimate as Xa } from "./hooks/useAnimate.js";
|
|
233
|
+
import { useResponsive as Ja, useResponsiveProps as Qa } from "./hooks/useResponsive.js";
|
|
234
|
+
import { Icon as ja } from "./components/Icon/Icon.js";
|
|
234
235
|
export {
|
|
235
236
|
tr as Accordion,
|
|
236
237
|
pr as AccordionItem,
|
|
@@ -238,33 +239,33 @@ export {
|
|
|
238
239
|
Mt as ActiveBar,
|
|
239
240
|
fr as ActiveTab,
|
|
240
241
|
wt as ActivityItem,
|
|
241
|
-
|
|
242
|
+
uf as Affix,
|
|
242
243
|
_ as Alert,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
Mm as AlertDialog,
|
|
245
|
+
nf as Anchor,
|
|
246
|
+
zf as AnimatedCounter,
|
|
246
247
|
pe as AppBar,
|
|
247
|
-
|
|
248
|
+
Om as AspectRatio,
|
|
248
249
|
Qo as Autocomplete,
|
|
249
250
|
dr as Avatar,
|
|
250
251
|
cr as AvatarGroup,
|
|
251
252
|
Ap as BEAR_EMOJIS,
|
|
252
253
|
xt as BEAR_ID_MAX_LENGTH,
|
|
253
254
|
at as BEAR_ID_NUMERIC_MAX,
|
|
254
|
-
|
|
255
|
-
|
|
255
|
+
it as BEAR_ID_NUMERIC_MIN,
|
|
256
|
+
nt as BEAR_ID_PREFIX,
|
|
256
257
|
st as BEAR_ID_SEPARATOR,
|
|
257
258
|
yp as BackTop,
|
|
258
259
|
k as Badge,
|
|
259
260
|
Vt as BarChart,
|
|
260
|
-
|
|
261
|
+
Ra as BearComponentProvider,
|
|
261
262
|
H as BearIcons,
|
|
262
263
|
zr as BearLoader,
|
|
263
264
|
mo as BearLogo,
|
|
264
265
|
to as BearPawIcon,
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
266
|
+
Bx as BearProvider,
|
|
267
|
+
Df as Biometric,
|
|
268
|
+
Tf as Blockquote,
|
|
268
269
|
ee as BottomNavigation,
|
|
269
270
|
Ip as BottomSheet,
|
|
270
271
|
Ct as Box,
|
|
@@ -291,33 +292,33 @@ export {
|
|
|
291
292
|
X as ChevronRightIcon,
|
|
292
293
|
q as ChevronUpIcon,
|
|
293
294
|
ae as Chip,
|
|
294
|
-
|
|
295
|
+
Ef as CloseButton,
|
|
295
296
|
Dt as CodeBlock,
|
|
296
|
-
|
|
297
|
+
mm as CodeEditor,
|
|
297
298
|
we as Collapsible,
|
|
298
299
|
De as ColorPicker,
|
|
299
|
-
|
|
300
|
-
|
|
300
|
+
Zm as ColorSwatch,
|
|
301
|
+
$m as ColorSwatchGroup,
|
|
301
302
|
lt as Column,
|
|
302
303
|
dt as Columns,
|
|
303
304
|
sp as CommandPalette,
|
|
304
305
|
Fp as Confetti,
|
|
305
306
|
m as Container,
|
|
306
|
-
|
|
307
|
+
qm as ContextMenu,
|
|
307
308
|
Ve as CopyButton,
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
309
|
+
Sm as CountdownTimer,
|
|
310
|
+
ip as CreditInput,
|
|
311
|
+
xm as Cropper,
|
|
312
|
+
px as CssBaseline,
|
|
313
|
+
Zf as CurrencyInput,
|
|
313
314
|
Zo as DataTable,
|
|
314
315
|
qr as DatePicker,
|
|
315
|
-
|
|
316
|
-
|
|
316
|
+
Vm as DateRangePicker,
|
|
317
|
+
xf as Descriptions,
|
|
317
318
|
Xp as DiffSquares,
|
|
318
319
|
Jp as DiffViewer,
|
|
319
320
|
v as Divider,
|
|
320
|
-
|
|
321
|
+
bm as Dock,
|
|
321
322
|
so as Drawer,
|
|
322
323
|
To as Dropdown,
|
|
323
324
|
bt as Editable,
|
|
@@ -326,32 +327,32 @@ export {
|
|
|
326
327
|
kp as EmojiPicker,
|
|
327
328
|
Se as EmptyState,
|
|
328
329
|
Rr as Fab,
|
|
329
|
-
|
|
330
|
+
wm as Fieldset,
|
|
330
331
|
ue as FileTree,
|
|
331
332
|
he as FileUpload,
|
|
332
333
|
x as Flex,
|
|
333
334
|
Yp as FloatingChat,
|
|
334
335
|
op as Form,
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
336
|
+
ix as FormControl,
|
|
337
|
+
Em as FormField,
|
|
338
|
+
Ix as FormSkeleton,
|
|
338
339
|
Qt as Gauge,
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
340
|
+
Uf as GlowCard,
|
|
341
|
+
Rm as GradientText,
|
|
342
|
+
i as Grid,
|
|
343
|
+
n as GridCompound,
|
|
343
344
|
s as GridItem,
|
|
344
|
-
|
|
345
|
+
Qf as Heatmap,
|
|
345
346
|
Tt as Highlight,
|
|
346
347
|
Rt as HoverCard,
|
|
347
|
-
|
|
348
|
+
ja as Icon,
|
|
348
349
|
Te as Image,
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
350
|
+
ex as ImageAnnotation,
|
|
351
|
+
Um as ImageGallery,
|
|
352
|
+
hf as Indicator,
|
|
353
|
+
jm as InfiniteScroll,
|
|
353
354
|
bo as Input,
|
|
354
|
-
|
|
355
|
+
Lm as InputGroup,
|
|
355
356
|
Kp as JsonViewer,
|
|
356
357
|
Pp as Kanban,
|
|
357
358
|
Oe as Kbd,
|
|
@@ -363,39 +364,40 @@ export {
|
|
|
363
364
|
hr as ListItemIcon,
|
|
364
365
|
Pr as ListItemText,
|
|
365
366
|
br as ListSubheader,
|
|
366
|
-
|
|
367
|
-
|
|
367
|
+
Sf as LoadingOverlay,
|
|
368
|
+
tm as Map,
|
|
368
369
|
ht as Mark,
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
370
|
+
Cm as Marquee,
|
|
371
|
+
um as Masonry,
|
|
372
|
+
qf as MediaPlayer,
|
|
372
373
|
gp as MentionsInput,
|
|
373
374
|
Co as Menu,
|
|
374
375
|
Io as MenuDivider,
|
|
375
376
|
J as MenuIcon,
|
|
376
377
|
So as MenuItem,
|
|
378
|
+
$p as MessageList,
|
|
377
379
|
j as MinusIcon,
|
|
378
|
-
|
|
379
|
-
|
|
380
|
+
io as Modal,
|
|
381
|
+
im as Motion,
|
|
380
382
|
Uo as MultiSelect,
|
|
381
383
|
qo as NavigableSelect,
|
|
382
384
|
mp as NotificationCenter,
|
|
383
|
-
|
|
385
|
+
Qm as NumberFormatter,
|
|
384
386
|
be as NumberInput,
|
|
385
387
|
Re as OTPInput,
|
|
386
|
-
|
|
387
|
-
|
|
388
|
+
wf as Overlay,
|
|
389
|
+
bf as PageNav,
|
|
388
390
|
Or as Pagination,
|
|
389
391
|
A as Paper,
|
|
390
|
-
|
|
392
|
+
Dm as PasswordInput,
|
|
391
393
|
xp as PhoneInput,
|
|
392
394
|
Ut as PieChart,
|
|
393
395
|
Y as PlusIcon,
|
|
394
|
-
|
|
396
|
+
tf as Popconfirm,
|
|
395
397
|
fe as Popover,
|
|
396
|
-
|
|
398
|
+
Vf as Portal,
|
|
397
399
|
Ir as Progress,
|
|
398
|
-
|
|
400
|
+
Rf as PropsPlayground,
|
|
399
401
|
Hp as QRCode,
|
|
400
402
|
Oo as Radio,
|
|
401
403
|
Ho as RadioCard,
|
|
@@ -404,9 +406,9 @@ export {
|
|
|
404
406
|
N as Rating,
|
|
405
407
|
Le as ResizablePanel,
|
|
406
408
|
Ee as ResizableTextarea,
|
|
407
|
-
|
|
409
|
+
mf as Result,
|
|
408
410
|
Lt as RichEditor,
|
|
409
|
-
|
|
411
|
+
df as RingProgress,
|
|
410
412
|
Me as ScrollArea,
|
|
411
413
|
Z as SearchIcon,
|
|
412
414
|
lp as SegmentedControl,
|
|
@@ -421,13 +423,13 @@ export {
|
|
|
421
423
|
wr as SkeletonText,
|
|
422
424
|
Vr as Slider,
|
|
423
425
|
Bp as SliderRange,
|
|
424
|
-
|
|
426
|
+
lx as Snackbar,
|
|
425
427
|
qt as Sparkline,
|
|
426
428
|
ho as SpeedDial,
|
|
427
429
|
G as Spinner,
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
430
|
+
rf as SplitButton,
|
|
431
|
+
Cf as Spoiler,
|
|
432
|
+
Tm as Spotlight,
|
|
431
433
|
Et as StatCard,
|
|
432
434
|
Ce as Statistic,
|
|
433
435
|
Zr as Stepper,
|
|
@@ -435,100 +437,100 @@ export {
|
|
|
435
437
|
vo as Switch,
|
|
436
438
|
yo as SwitchGroup,
|
|
437
439
|
xr as Tab,
|
|
438
|
-
|
|
440
|
+
nr as TabList,
|
|
439
441
|
ur as TabPanel,
|
|
440
|
-
|
|
442
|
+
cx as TableSkeleton,
|
|
441
443
|
ar as Tabs,
|
|
442
|
-
|
|
444
|
+
jf as TagCloud,
|
|
443
445
|
cp as TagsInput,
|
|
444
|
-
|
|
446
|
+
rm as Terminal,
|
|
445
447
|
ko as TextField,
|
|
446
|
-
|
|
448
|
+
Lf as ThemeIcon,
|
|
447
449
|
Qr as TimePicker,
|
|
448
450
|
de as Timeline,
|
|
449
|
-
|
|
451
|
+
ox as TimelineChart,
|
|
450
452
|
Dr as ToastContainer,
|
|
451
453
|
vr as ToastProvider,
|
|
452
|
-
|
|
453
|
-
|
|
454
|
+
fx as ToggleButton,
|
|
455
|
+
xx as ToggleButtonGroup,
|
|
454
456
|
lo as Tooltip,
|
|
455
457
|
_p as Tour,
|
|
456
458
|
jo as TransferList,
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
459
|
+
nm as Transition,
|
|
460
|
+
zm as TreeSelect,
|
|
461
|
+
ne as TreeView,
|
|
462
|
+
hm as Typewriter,
|
|
461
463
|
y as Typography,
|
|
462
464
|
vp as VirtualList,
|
|
463
|
-
|
|
464
|
-
|
|
465
|
+
Of as VisuallyHidden,
|
|
466
|
+
dm as Watermark,
|
|
465
467
|
Q as XIcon,
|
|
466
|
-
|
|
468
|
+
qx as bearStyled,
|
|
467
469
|
qe as cn,
|
|
468
470
|
$o as createColumns,
|
|
469
471
|
Ye as createSlots,
|
|
470
472
|
We as deepMerge,
|
|
471
|
-
|
|
472
|
-
|
|
473
|
+
Ax as defaultDarkTheme,
|
|
474
|
+
Dx as defaultLightTheme,
|
|
473
475
|
$e as formatBearId,
|
|
474
476
|
ot as generateBearId,
|
|
475
477
|
mt as getResponsiveClass,
|
|
476
478
|
rt as resolveBearId,
|
|
477
479
|
Je as styleForge,
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
480
|
+
Xa as useAnimate,
|
|
481
|
+
Aa as useBC,
|
|
482
|
+
Tx as useBear,
|
|
483
|
+
Da as useBearComponent,
|
|
484
|
+
va as useBearComponentContext,
|
|
485
|
+
ya as useBearDefaultProps,
|
|
486
|
+
gx as useBearDensity,
|
|
487
|
+
hx as useBearDirection,
|
|
486
488
|
tt as useBearId,
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
489
|
+
Px as useBearMode,
|
|
490
|
+
Ux as useBearStyles,
|
|
491
|
+
bx as useBearTheme,
|
|
492
|
+
kx as useBearThemeOptional,
|
|
493
|
+
Mf as useBiometric,
|
|
494
|
+
Zx as useBounce,
|
|
495
|
+
_x as useClickOutside,
|
|
496
|
+
Ox as useClickOutsideMultiple,
|
|
497
|
+
fa as useClipboard,
|
|
496
498
|
Gp as useConfetti,
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
499
|
+
aa as useDebounce,
|
|
500
|
+
ia as useDebouncedCallback,
|
|
501
|
+
zx as useDisclosure,
|
|
502
|
+
ha as useDragDrop,
|
|
503
|
+
oa as useFloat,
|
|
502
504
|
ep as useFormContext,
|
|
503
505
|
tp as useFormContextSafe,
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
506
|
+
sx as useFormControl,
|
|
507
|
+
Na as useIdle,
|
|
508
|
+
Ba as useInView,
|
|
509
|
+
Ta as useIntersectionObserver,
|
|
510
|
+
Mx as useIsDesktop,
|
|
511
|
+
yx as useIsMobile,
|
|
512
|
+
Lx as useIsTablet,
|
|
513
|
+
Ca as useKeyPress,
|
|
514
|
+
Ia as useKeyPressState,
|
|
515
|
+
ba as useLazyLoad,
|
|
516
|
+
da as useLocalStorage,
|
|
517
|
+
Ka as useLongPress,
|
|
518
|
+
Fx as useMediaQuery,
|
|
519
|
+
Ga as useOnline,
|
|
520
|
+
Ha as usePageVisibility,
|
|
521
|
+
jx as useParallax,
|
|
522
|
+
Ex as usePrefersDark,
|
|
523
|
+
Gx as usePrefersReducedMotion,
|
|
524
|
+
ea as usePulse,
|
|
525
|
+
Vx as useResizeObserver,
|
|
526
|
+
Ja as useResponsive,
|
|
527
|
+
Qa as useResponsiveProps,
|
|
528
|
+
pa as useShake,
|
|
529
|
+
Qx as useSlide,
|
|
530
|
+
Fa as useSpotlight,
|
|
531
|
+
sa as useThrottle,
|
|
532
|
+
ua as useThrottledCallback,
|
|
531
533
|
Mr as useToast,
|
|
532
534
|
Np as useTour,
|
|
533
|
-
|
|
535
|
+
_a as useWebSocket
|
|
534
536
|
};
|