@forgedevstack/bear 1.1.8 → 1.1.9
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 +4 -4
- package/dist/components/BearLogo/BearLogo.d.ts +2 -7
- package/dist/components/BearLogo/BearLogo.types.d.ts +15 -0
- package/dist/components/BearLogo/EmberLogo.d.ts +1 -8
- package/dist/components/BearLogo/index.d.ts +1 -2
- package/dist/components/Biometric/Biometric.cjs +1 -0
- package/dist/components/Biometric/Biometric.d.ts +3 -0
- package/dist/components/Biometric/Biometric.js +123 -0
- package/dist/components/Biometric/Biometric.types.d.ts +35 -0
- package/dist/components/Biometric/BiometricIcon.cjs +1 -0
- package/dist/components/Biometric/BiometricIcon.d.ts +3 -0
- package/dist/components/Biometric/BiometricIcon.js +45 -0
- package/dist/components/Biometric/index.d.ts +3 -0
- package/dist/components/Biometric/useBiometric.cjs +1 -0
- package/dist/components/Biometric/useBiometric.d.ts +2 -0
- package/dist/components/Biometric/useBiometric.js +21 -0
- package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.const.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.const.js +12 -13
- package/dist/components/DateRangePicker/DateRangePicker.js +107 -81
- package/dist/components/Dropdown/Dropdown.cjs +1 -1
- package/dist/components/Dropdown/Dropdown.js +48 -44
- package/dist/components/Input/Input.cjs +1 -1
- package/dist/components/Input/Input.js +153 -101
- package/dist/components/Input/Input.types.d.ts +8 -2
- package/dist/components/Input/index.d.ts +1 -1
- package/dist/components/Popover/Popover.cjs +1 -1
- package/dist/components/Popover/Popover.js +76 -76
- package/dist/components/Select/Select.cjs +1 -1
- package/dist/components/Select/Select.js +41 -38
- package/dist/components/Tabs/TabList.cjs +1 -0
- package/dist/components/Tabs/TabList.d.ts +3 -0
- package/dist/components/Tabs/TabList.js +69 -0
- package/dist/components/Tabs/TabPanel.cjs +1 -0
- package/dist/components/Tabs/TabPanel.d.ts +3 -0
- package/dist/components/Tabs/TabPanel.js +13 -0
- package/dist/components/Tabs/Tabs.cjs +1 -1
- package/dist/components/Tabs/Tabs.d.ts +2 -27
- package/dist/components/Tabs/Tabs.js +42 -61
- package/dist/components/Tabs/Tabs.types.d.ts +4 -0
- package/dist/components/Tabs/index.d.ts +3 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +5 -2
- package/dist/components/index.js +316 -309
- package/dist/index.cjs +1 -1
- package/dist/index.js +391 -384
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { Grid as a, GridCompound as i, GridItem as n } from "./components/Grid/G
|
|
|
4
4
|
import { ActionIcon as u } from "./components/ActionIcon/ActionIcon.js";
|
|
5
5
|
import { Button as d } from "./components/Button/Button.js";
|
|
6
6
|
import { ButtonGroup as C } from "./components/ButtonGroup/ButtonGroup.js";
|
|
7
|
-
import { Card as S, CardBody as h, CardCompound as g, CardFooter as
|
|
7
|
+
import { Card as S, CardBody as h, CardCompound as g, CardFooter as T, CardHeader as P } from "./components/Card/Card.js";
|
|
8
8
|
import { Badge as B } from "./components/Badge/Badge.js";
|
|
9
9
|
import { Paper as v } from "./components/Paper/Paper.js";
|
|
10
10
|
import { Divider as L } from "./components/Divider/Divider.js";
|
|
@@ -25,432 +25,439 @@ import { Drawer as no } from "./components/Drawer/Drawer.js";
|
|
|
25
25
|
import { Tooltip as uo } from "./components/Tooltip/Tooltip.js";
|
|
26
26
|
import { Menu as co, MenuDivider as Co, MenuItem as Io } from "./components/Menu/Menu.js";
|
|
27
27
|
import { Dropdown as ho } from "./components/Dropdown/Dropdown.js";
|
|
28
|
-
import { SpeedDial as
|
|
29
|
-
import { Input as bo } from "./components/Input/Input.js";
|
|
30
|
-
import { Select as
|
|
31
|
-
import { Switch as
|
|
32
|
-
import { Checkbox as
|
|
33
|
-
import { CheckboxCard as
|
|
34
|
-
import { Radio as
|
|
35
|
-
import { RadioCard as
|
|
36
|
-
import { MultiSelect as
|
|
37
|
-
import { NavigableSelect as
|
|
38
|
-
import { Autocomplete as
|
|
39
|
-
import { TransferList as
|
|
40
|
-
import { DataTable as
|
|
41
|
-
import { Carousel as
|
|
42
|
-
import { Accordion as
|
|
43
|
-
import { Tab as
|
|
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 {
|
|
28
|
+
import { SpeedDial as To } from "./components/SpeedDial/SpeedDial.js";
|
|
29
|
+
import { Input as bo, Input as Bo } from "./components/Input/Input.js";
|
|
30
|
+
import { Select as vo } from "./components/Select/Select.js";
|
|
31
|
+
import { Switch as Lo } from "./components/Switch/Switch.js";
|
|
32
|
+
import { Checkbox as Mo } from "./components/Checkbox/Checkbox.js";
|
|
33
|
+
import { CheckboxCard as Ao, CheckboxCardGroup as Fo } from "./components/CheckboxCard/CheckboxCard.js";
|
|
34
|
+
import { Radio as Go, RadioGroup as Eo } from "./components/Radio/Radio.js";
|
|
35
|
+
import { RadioCard as No, RadioCardGroup as Vo } from "./components/RadioCard/RadioCard.js";
|
|
36
|
+
import { MultiSelect as Ko } from "./components/MultiSelect/MultiSelect.js";
|
|
37
|
+
import { NavigableSelect as qo } from "./components/NavigableSelect/NavigableSelect.js";
|
|
38
|
+
import { Autocomplete as Qo } from "./components/Autocomplete/Autocomplete.js";
|
|
39
|
+
import { TransferList as Wo } from "./components/TransferList/TransferList.js";
|
|
40
|
+
import { DataTable as Xo, createColumns as _o } from "./components/DataTable/DataTable.js";
|
|
41
|
+
import { Carousel as Zo } from "./components/Carousel/Carousel.js";
|
|
42
|
+
import { Accordion as or, AccordionItem as rr } from "./components/Accordion/Accordion.js";
|
|
43
|
+
import { Tab as tr, Tabs as pr } from "./components/Tabs/Tabs.js";
|
|
44
|
+
import { TabList as fr } from "./components/Tabs/TabList.js";
|
|
45
|
+
import { TabPanel as ar } from "./components/Tabs/TabPanel.js";
|
|
46
|
+
import { Avatar as nr, AvatarGroup as sr } from "./components/Avatar/Avatar.js";
|
|
47
|
+
import { Progress as lr } from "./components/Progress/Progress.js";
|
|
48
|
+
import { List as cr, ListItem as Cr, ListItemButton as Ir, ListItemIcon as Sr, ListItemText as hr, ListSubheader as gr } from "./components/List/List.js";
|
|
49
|
+
import { Fab as Pr } from "./components/Fab/Fab.js";
|
|
50
|
+
import { ToastContainer as Br, ToastProvider as kr, useToast as vr } from "./components/Toast/Toast.js";
|
|
51
|
+
import { Skeleton as Lr, SkeletonAvatar as Rr, SkeletonCard as Mr, SkeletonText as yr } from "./components/Skeleton/Skeleton.js";
|
|
52
|
+
import { Pagination as Fr } from "./components/Pagination/Pagination.js";
|
|
53
|
+
import { Slider as Gr } from "./components/Slider/Slider.js";
|
|
54
|
+
import { BearLoader as Or } from "./components/BearLoader/BearLoader.js";
|
|
55
|
+
import { Calendar as Vr } from "./components/Calendar/Calendar.js";
|
|
56
|
+
import { DatePicker as Kr } from "./components/DatePicker/DatePicker.js";
|
|
57
|
+
import { TimePicker as qr } from "./components/TimePicker/TimePicker.js";
|
|
58
|
+
import { Breadcrumbs as Qr } from "./components/Breadcrumbs/Breadcrumbs.js";
|
|
59
|
+
import { Stepper as Wr, StepperControls as jr } from "./components/Stepper/Stepper.js";
|
|
60
|
+
import { BottomNavigation as _r } from "./components/BottomNavigation/BottomNavigation.js";
|
|
61
|
+
import { AppBar as Zr } from "./components/AppBar/AppBar.js";
|
|
62
|
+
import { Popover as oe } from "./components/Popover/Popover.js";
|
|
63
|
+
import { Chip as ee } from "./components/Chip/Chip.js";
|
|
64
|
+
import { TreeView as pe } from "./components/TreeView/TreeView.js";
|
|
65
|
+
import { FileTree as fe } from "./components/FileTree/FileTree.js";
|
|
66
|
+
import { Timeline as ae } from "./components/Timeline/Timeline.js";
|
|
67
|
+
import { Statistic as ne } from "./components/Statistic/Statistic.js";
|
|
68
|
+
import { EmptyState as ue } from "./components/EmptyState/EmptyState.js";
|
|
69
|
+
import { Image as de } from "./components/Image/Image.js";
|
|
70
|
+
import { FileUpload as Ce } from "./components/FileUpload/FileUpload.js";
|
|
71
|
+
import { NumberInput as Se } from "./components/NumberInput/NumberInput.js";
|
|
72
|
+
import { OTPInput as ge } from "./components/OTPInput/OTPInput.js";
|
|
73
|
+
import { ColorPicker as Pe } from "./components/ColorPicker/ColorPicker.js";
|
|
74
|
+
import { ScrollArea as Be } from "./components/ScrollArea/ScrollArea.js";
|
|
75
|
+
import { ResizablePanel as ve } from "./components/ResizablePanel/ResizablePanel.js";
|
|
76
|
+
import { ResizableTextarea as Le } from "./components/ResizableTextarea/ResizableTextarea.js";
|
|
77
|
+
import { Collapsible as Me } from "./components/Collapsible/Collapsible.js";
|
|
78
|
+
import { Kbd as Ae } from "./components/Kbd/Kbd.js";
|
|
79
|
+
import { CopyButton as we } from "./components/CopyButton/CopyButton.js";
|
|
80
|
+
import { Sidebar as Ee } from "./components/Sidebar/Sidebar.js";
|
|
81
|
+
import { SidebarGroup as Ne } from "./components/Sidebar/components/SidebarGroup/SidebarGroup.js";
|
|
80
82
|
import "react/jsx-runtime";
|
|
81
83
|
import "react";
|
|
82
|
-
import { cn as
|
|
83
|
-
import { deepMerge as
|
|
84
|
-
import { createSlots as
|
|
85
|
-
import { Column as
|
|
86
|
-
import { Box as
|
|
87
|
-
import { Em as
|
|
88
|
-
import { Highlight as
|
|
89
|
-
import { Mark as
|
|
90
|
-
import { Editable as
|
|
91
|
-
import { HoverCard as
|
|
92
|
-
import { CodeBlock as
|
|
93
|
-
import { ActiveBar as
|
|
94
|
-
import { RichEditor as
|
|
95
|
-
import { StatCard as
|
|
96
|
-
import { ActivityItem as
|
|
97
|
-
import { BarChart as
|
|
98
|
-
import { Sparkline as
|
|
99
|
-
import { Gauge as
|
|
100
|
-
import { SignPad as
|
|
101
|
-
import { Cascader as
|
|
102
|
-
import { Form as
|
|
103
|
-
import { useFormContext as
|
|
104
|
-
import { NotificationCenter as
|
|
105
|
-
import { PhoneInput as
|
|
106
|
-
import { CreditInput as
|
|
107
|
-
import { CommandPalette as
|
|
108
|
-
import { SegmentedControl as
|
|
109
|
-
import { TagsInput as
|
|
110
|
-
import { BottomSheet as
|
|
111
|
-
import { SliderRange as
|
|
112
|
-
import { MentionsInput as
|
|
113
|
-
import { Kanban as
|
|
114
|
-
import { EmojiPicker as
|
|
115
|
-
import { BEAR_EMOJIS as
|
|
116
|
-
import { VirtualList as
|
|
117
|
-
import { BackTop as
|
|
118
|
-
import { Confetti as
|
|
119
|
-
import { useConfetti as
|
|
120
|
-
import { Tour as
|
|
121
|
-
import { useTour as
|
|
122
|
-
import { QRCode as
|
|
123
|
-
import { JsonViewer as
|
|
124
|
-
import { DiffViewer as
|
|
125
|
-
import { Chat as
|
|
126
|
-
import { FloatingChat as
|
|
127
|
-
import { Terminal as
|
|
128
|
-
import { Map as
|
|
129
|
-
import { CodeEditor as
|
|
130
|
-
import { Cropper as
|
|
131
|
-
import { Motion as
|
|
132
|
-
import { Masonry as
|
|
133
|
-
import { Watermark as
|
|
134
|
-
import { Marquee as
|
|
135
|
-
import { CountdownTimer as
|
|
136
|
-
import { Spotlight as
|
|
137
|
-
import { Typewriter as
|
|
138
|
-
import { Dock as
|
|
139
|
-
import { GradientText as
|
|
140
|
-
import { PasswordInput as
|
|
141
|
-
import { AlertDialog as
|
|
142
|
-
import { InputGroup as
|
|
143
|
-
import { FormField as
|
|
144
|
-
import { Fieldset as
|
|
145
|
-
import { AspectRatio as
|
|
146
|
-
import { DateRangePicker as
|
|
147
|
-
import { TreeSelect as
|
|
148
|
-
import { ImageGallery as
|
|
149
|
-
import { ContextMenu as
|
|
150
|
-
import { NumberFormatter as
|
|
151
|
-
import { InfiniteScroll as
|
|
152
|
-
import { ColorSwatch as
|
|
153
|
-
import { SplitButton as
|
|
154
|
-
import { Popconfirm as
|
|
155
|
-
import { Result as
|
|
156
|
-
import { Descriptions as
|
|
157
|
-
import { Anchor as
|
|
158
|
-
import { Affix as
|
|
159
|
-
import { RingProgress as
|
|
160
|
-
import { Spoiler as
|
|
161
|
-
import { LoadingOverlay as
|
|
162
|
-
import { Blockquote as
|
|
163
|
-
import { Indicator as
|
|
164
|
-
import { PageNav as
|
|
165
|
-
import { PropsPlayground as
|
|
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 {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
84
|
+
import { cn as ze, styleForge as Ke } from "./utils/cn.js";
|
|
85
|
+
import { deepMerge as qe } from "./utils/deepMerge.js";
|
|
86
|
+
import { createSlots as Qe } from "./utils/createSlots.js";
|
|
87
|
+
import { Column as We, Columns as je } from "./components/Columns/Columns.js";
|
|
88
|
+
import { Box as _e } from "./components/Box/Box.js";
|
|
89
|
+
import { Em as Ze } from "./components/Em/Em.js";
|
|
90
|
+
import { Highlight as ot } from "./components/Highlight/Highlight.js";
|
|
91
|
+
import { Mark as et } from "./components/Mark/Mark.js";
|
|
92
|
+
import { Editable as pt } from "./components/Editable/Editable.js";
|
|
93
|
+
import { HoverCard as ft } from "./components/HoverCard/HoverCard.js";
|
|
94
|
+
import { CodeBlock as at } from "./components/CodeBlock/CodeBlock.js";
|
|
95
|
+
import { ActiveBar as nt } from "./components/ActiveBar/ActiveBar.js";
|
|
96
|
+
import { RichEditor as ut } from "./components/RichEditor/RichEditor.js";
|
|
97
|
+
import { StatCard as dt } from "./components/StatCard/StatCard.js";
|
|
98
|
+
import { ActivityItem as Ct } from "./components/ActivityItem/ActivityItem.js";
|
|
99
|
+
import { BarChart as St, Chart as ht, LineChart as gt, PieChart as Tt } from "./components/Chart/Chart.js";
|
|
100
|
+
import { Sparkline as bt } from "./components/Sparkline/Sparkline.js";
|
|
101
|
+
import { Gauge as kt } from "./components/Gauge/Gauge.js";
|
|
102
|
+
import { SignPad as Dt } from "./components/SignPad/SignPad.js";
|
|
103
|
+
import { Cascader as Rt } from "./components/Cascader/Cascader.js";
|
|
104
|
+
import { Form as yt } from "./components/Form/Form.js";
|
|
105
|
+
import { useFormContext as Ft, useFormContextSafe as wt } from "./components/Form/Form.context.js";
|
|
106
|
+
import { NotificationCenter as Et } from "./components/NotificationCenter/NotificationCenter.js";
|
|
107
|
+
import { PhoneInput as Nt } from "./components/PhoneInput/PhoneInput.js";
|
|
108
|
+
import { CreditInput as zt } from "./components/CreditInput/CreditInput.js";
|
|
109
|
+
import { CommandPalette as Ht } from "./components/CommandPalette/CommandPalette.js";
|
|
110
|
+
import { SegmentedControl as Jt } from "./components/SegmentedControl/SegmentedControl.js";
|
|
111
|
+
import { TagsInput as Ut } from "./components/TagsInput/TagsInput.js";
|
|
112
|
+
import { BottomSheet as jt } from "./components/BottomSheet/BottomSheet.js";
|
|
113
|
+
import { SliderRange as _t } from "./components/SliderRange/SliderRange.js";
|
|
114
|
+
import { MentionsInput as Zt } from "./components/MentionsInput/MentionsInput.js";
|
|
115
|
+
import { Kanban as op } from "./components/Kanban/Kanban.js";
|
|
116
|
+
import { EmojiPicker as ep } from "./components/EmojiPicker/EmojiPicker.js";
|
|
117
|
+
import { BEAR_EMOJIS as pp } from "./components/EmojiPicker/EmojiPicker.const.js";
|
|
118
|
+
import { VirtualList as fp } from "./components/VirtualList/VirtualList.js";
|
|
119
|
+
import { BackTop as ap } from "./components/BackTop/BackTop.js";
|
|
120
|
+
import { Confetti as np } from "./components/Confetti/Confetti.js";
|
|
121
|
+
import { useConfetti as up } from "./components/Confetti/useConfetti.js";
|
|
122
|
+
import { Tour as dp } from "./components/Tour/Tour.js";
|
|
123
|
+
import { useTour as Cp } from "./components/Tour/useTour.js";
|
|
124
|
+
import { QRCode as Sp } from "./components/QRCode/QRCode.js";
|
|
125
|
+
import { JsonViewer as gp } from "./components/JsonViewer/JsonViewer.js";
|
|
126
|
+
import { DiffViewer as Pp } from "./components/DiffViewer/DiffViewer.js";
|
|
127
|
+
import { Chat as Bp } from "./components/Chat/Chat.js";
|
|
128
|
+
import { FloatingChat as vp } from "./components/FloatingChat/FloatingChat.js";
|
|
129
|
+
import { Terminal as Lp } from "./components/Terminal/Terminal.js";
|
|
130
|
+
import { Map as Mp } from "./components/Map/Map.js";
|
|
131
|
+
import { CodeEditor as Ap } from "./components/CodeEditor/CodeEditor.js";
|
|
132
|
+
import { Cropper as wp } from "./components/Cropper/Cropper.js";
|
|
133
|
+
import { Motion as Ep, Transition as Op } from "./components/Transition/Transition.js";
|
|
134
|
+
import { Masonry as Vp } from "./components/Masonry/Masonry.js";
|
|
135
|
+
import { Watermark as Kp } from "./components/Watermark/Watermark.js";
|
|
136
|
+
import { Marquee as qp } from "./components/Marquee/Marquee.js";
|
|
137
|
+
import { CountdownTimer as Qp } from "./components/CountdownTimer/CountdownTimer.js";
|
|
138
|
+
import { Spotlight as Wp } from "./components/Spotlight/Spotlight.js";
|
|
139
|
+
import { Typewriter as Xp } from "./components/Typewriter/Typewriter.js";
|
|
140
|
+
import { Dock as Yp } from "./components/Dock/Dock.js";
|
|
141
|
+
import { GradientText as $p } from "./components/GradientText/GradientText.js";
|
|
142
|
+
import { PasswordInput as rm } from "./components/PasswordInput/PasswordInput.js";
|
|
143
|
+
import { AlertDialog as tm } from "./components/AlertDialog/AlertDialog.js";
|
|
144
|
+
import { InputGroup as mm } from "./components/InputGroup/InputGroup.js";
|
|
145
|
+
import { FormField as xm } from "./components/FormField/FormField.js";
|
|
146
|
+
import { Fieldset as im } from "./components/Fieldset/Fieldset.js";
|
|
147
|
+
import { AspectRatio as sm } from "./components/AspectRatio/AspectRatio.js";
|
|
148
|
+
import { DateRangePicker as lm } from "./components/DateRangePicker/DateRangePicker.js";
|
|
149
|
+
import { TreeSelect as cm } from "./components/TreeSelect/TreeSelect.js";
|
|
150
|
+
import { ImageGallery as Im } from "./components/ImageGallery/ImageGallery.js";
|
|
151
|
+
import { ContextMenu as hm } from "./components/ContextMenu/ContextMenu.js";
|
|
152
|
+
import { NumberFormatter as Tm } from "./components/NumberFormatter/NumberFormatter.js";
|
|
153
|
+
import { InfiniteScroll as bm } from "./components/InfiniteScroll/InfiniteScroll.js";
|
|
154
|
+
import { ColorSwatch as km, ColorSwatchGroup as vm } from "./components/ColorSwatch/ColorSwatch.js";
|
|
155
|
+
import { SplitButton as Lm } from "./components/SplitButton/SplitButton.js";
|
|
156
|
+
import { Popconfirm as Mm } from "./components/Popconfirm/Popconfirm.js";
|
|
157
|
+
import { Result as Am } from "./components/Result/Result.js";
|
|
158
|
+
import { Descriptions as wm } from "./components/Descriptions/Descriptions.js";
|
|
159
|
+
import { Anchor as Em } from "./components/Anchor/Anchor.js";
|
|
160
|
+
import { Affix as Nm } from "./components/Affix/Affix.js";
|
|
161
|
+
import { RingProgress as zm } from "./components/RingProgress/RingProgress.js";
|
|
162
|
+
import { Spoiler as Hm } from "./components/Spoiler/Spoiler.js";
|
|
163
|
+
import { LoadingOverlay as Jm } from "./components/LoadingOverlay/LoadingOverlay.js";
|
|
164
|
+
import { Blockquote as Um } from "./components/Blockquote/Blockquote.js";
|
|
165
|
+
import { Indicator as jm } from "./components/Indicator/Indicator.js";
|
|
166
|
+
import { PageNav as _m } from "./components/PageNav/PageNav.js";
|
|
167
|
+
import { PropsPlayground as Zm } from "./components/PropsPlayground/PropsPlayground.js";
|
|
168
|
+
import { Biometric as of } from "./components/Biometric/Biometric.js";
|
|
169
|
+
import { useBiometric as ef } from "./components/Biometric/useBiometric.js";
|
|
170
|
+
import { BearProvider as pf, useBear as mf, useBearMode as ff, useBearTheme as xf, useBearThemeOptional as af } from "./context/BearProvider.js";
|
|
171
|
+
import { defaultDarkTheme as sf, defaultLightTheme as uf } from "./context/defaultTheme.js";
|
|
172
|
+
import { useIsDesktop as df, useIsMobile as cf, useIsTablet as Cf, useMediaQuery as If, usePrefersDark as Sf, usePrefersReducedMotion as hf } from "./hooks/useMediaQuery.js";
|
|
173
|
+
import { useClickOutside as Tf } from "./hooks/useClickOutside.js";
|
|
174
|
+
import { useResizeObserver as bf } from "./hooks/useResizeObserver/useResizeObserver.js";
|
|
175
|
+
import { useDisclosure as kf } from "./hooks/useDisclosure.js";
|
|
176
|
+
import { useBearStyles as Df } from "./hooks/useBearStyles.js";
|
|
177
|
+
import { bearStyled as Rf } from "./hooks/bearStyled.js";
|
|
178
|
+
import { useSlide as yf } from "./hooks/useSlide/useSlide.js";
|
|
179
|
+
import { useParallax as Ff } from "./hooks/useParallax/useParallax.js";
|
|
180
|
+
import { useBounce as Gf } from "./hooks/useBounce/useBounce.js";
|
|
181
|
+
import { useFloat as Of } from "./hooks/useFloat/useFloat.js";
|
|
182
|
+
import { usePulse as Vf } from "./hooks/usePulse/usePulse.js";
|
|
183
|
+
import { useShake as Kf } from "./hooks/useShake/useShake.js";
|
|
184
|
+
import { useClipboard as qf } from "./hooks/useClipboard/useClipboard.js";
|
|
185
|
+
import { useDebounce as Qf, useDebouncedCallback as Uf } from "./hooks/useDebounce/useDebounce.js";
|
|
186
|
+
import { useThrottle as jf, useThrottledCallback as Xf } from "./hooks/useThrottle/useThrottle.js";
|
|
187
|
+
import { useLocalStorage as Yf } from "./hooks/useLocalStorage/useLocalStorage.js";
|
|
188
|
+
import { useKeyPress as $f, useKeyPressState as ox } from "./hooks/useKeyPress/useKeyPress.js";
|
|
189
|
+
import { useInView as ex, useIntersectionObserver as tx } from "./hooks/useIntersectionObserver/useIntersectionObserver.js";
|
|
190
|
+
import { useDragDrop as mx } from "./hooks/useDragDrop/useDragDrop.js";
|
|
191
|
+
import { useLazyLoad as xx } from "./hooks/useLazyLoad/useLazyLoad.js";
|
|
192
|
+
import { BearComponentProvider as ix, useBC as nx, useBearComponent as sx, useBearComponentContext as ux } from "./hooks/useBearComponent/useBearComponent.js";
|
|
193
|
+
import { useSpotlight as dx } from "./hooks/useSpotlight/useSpotlight.js";
|
|
194
|
+
import { useOnline as Cx } from "./hooks/useOnline/useOnline.js";
|
|
195
|
+
import { useWebSocket as Sx } from "./hooks/useWebSocket/useWebSocket.js";
|
|
196
|
+
import { useIdle as gx } from "./hooks/useIdle/useIdle.js";
|
|
197
|
+
import { usePageVisibility as Px } from "./hooks/usePageVisibility/usePageVisibility.js";
|
|
198
|
+
import { useLongPress as Bx } from "./hooks/useLongPress/useLongPress.js";
|
|
199
|
+
import { useAnimate as vx } from "./hooks/useAnimate.js";
|
|
200
|
+
import { useResponsive as Lx, useResponsiveProps as Rx } from "./hooks/useResponsive.js";
|
|
201
|
+
import { Icon as yx } from "./components/Icon/Icon.js";
|
|
198
202
|
export {
|
|
199
|
-
|
|
200
|
-
|
|
203
|
+
or as Accordion,
|
|
204
|
+
rr as AccordionItem,
|
|
201
205
|
u as ActionIcon,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
206
|
+
nt as ActiveBar,
|
|
207
|
+
Ct as ActivityItem,
|
|
208
|
+
Nm as Affix,
|
|
205
209
|
E as Alert,
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
210
|
+
tm as AlertDialog,
|
|
211
|
+
Em as Anchor,
|
|
212
|
+
Zr as AppBar,
|
|
213
|
+
sm as AspectRatio,
|
|
214
|
+
Qo as Autocomplete,
|
|
215
|
+
nr as Avatar,
|
|
216
|
+
sr as AvatarGroup,
|
|
217
|
+
pp as BEAR_EMOJIS,
|
|
218
|
+
ap as BackTop,
|
|
215
219
|
B as Badge,
|
|
216
|
-
|
|
217
|
-
|
|
220
|
+
St as BarChart,
|
|
221
|
+
ix as BearComponentProvider,
|
|
218
222
|
z as BearIcons,
|
|
219
|
-
|
|
223
|
+
Or as BearLoader,
|
|
220
224
|
po as BearLogo,
|
|
221
225
|
eo as BearPawIcon,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
pf as BearProvider,
|
|
227
|
+
of as Biometric,
|
|
228
|
+
Um as Blockquote,
|
|
229
|
+
_r as BottomNavigation,
|
|
230
|
+
jt as BottomSheet,
|
|
231
|
+
_e as Box,
|
|
232
|
+
Qr as Breadcrumbs,
|
|
228
233
|
d as Button,
|
|
229
234
|
C as ButtonGroup,
|
|
230
|
-
|
|
235
|
+
Vr as Calendar,
|
|
231
236
|
S as Card,
|
|
232
237
|
h as CardBody,
|
|
233
238
|
g as CardCompound,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
239
|
+
T as CardFooter,
|
|
240
|
+
P as CardHeader,
|
|
241
|
+
Zo as Carousel,
|
|
242
|
+
Rt as Cascader,
|
|
243
|
+
ht as Chart,
|
|
244
|
+
Bp as Chat,
|
|
240
245
|
oo as CheckIcon,
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
246
|
+
Mo as Checkbox,
|
|
247
|
+
Ao as CheckboxCard,
|
|
248
|
+
Fo as CheckboxCardGroup,
|
|
244
249
|
H as ChevronDownIcon,
|
|
245
250
|
q as ChevronLeftIcon,
|
|
246
251
|
J as ChevronRightIcon,
|
|
247
252
|
Q as ChevronUpIcon,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
253
|
+
ee as Chip,
|
|
254
|
+
at as CodeBlock,
|
|
255
|
+
Ap as CodeEditor,
|
|
256
|
+
Me as Collapsible,
|
|
257
|
+
Pe as ColorPicker,
|
|
258
|
+
km as ColorSwatch,
|
|
259
|
+
vm as ColorSwatchGroup,
|
|
260
|
+
We as Column,
|
|
261
|
+
je as Columns,
|
|
262
|
+
Ht as CommandPalette,
|
|
263
|
+
np as Confetti,
|
|
259
264
|
p as Container,
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
265
|
+
hm as ContextMenu,
|
|
266
|
+
we as CopyButton,
|
|
267
|
+
Qp as CountdownTimer,
|
|
268
|
+
zt as CreditInput,
|
|
269
|
+
wp as Cropper,
|
|
270
|
+
Xo as DataTable,
|
|
271
|
+
Kr as DatePicker,
|
|
272
|
+
lm as DateRangePicker,
|
|
273
|
+
wm as Descriptions,
|
|
274
|
+
Pp as DiffViewer,
|
|
270
275
|
L as Divider,
|
|
271
|
-
|
|
276
|
+
Yp as Dock,
|
|
272
277
|
no as Drawer,
|
|
273
278
|
ho as Dropdown,
|
|
274
|
-
|
|
275
|
-
|
|
279
|
+
pt as Editable,
|
|
280
|
+
Ze as Em,
|
|
276
281
|
fo as EmberLogo,
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
282
|
+
ep as EmojiPicker,
|
|
283
|
+
ue as EmptyState,
|
|
284
|
+
Pr as Fab,
|
|
285
|
+
im as Fieldset,
|
|
286
|
+
fe as FileTree,
|
|
287
|
+
Ce as FileUpload,
|
|
283
288
|
f as Flex,
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
+
vp as FloatingChat,
|
|
290
|
+
yt as Form,
|
|
291
|
+
xm as FormField,
|
|
292
|
+
kt as Gauge,
|
|
293
|
+
$p as GradientText,
|
|
289
294
|
a as Grid,
|
|
290
295
|
i as GridCompound,
|
|
291
296
|
n as GridItem,
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
ot as Highlight,
|
|
298
|
+
ft as HoverCard,
|
|
299
|
+
yx as Icon,
|
|
300
|
+
de as Image,
|
|
301
|
+
Im as ImageGallery,
|
|
302
|
+
jm as Indicator,
|
|
303
|
+
bm as InfiniteScroll,
|
|
299
304
|
bo as Input,
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
+
mm as InputGroup,
|
|
306
|
+
gp as JsonViewer,
|
|
307
|
+
op as Kanban,
|
|
308
|
+
Ae as Kbd,
|
|
309
|
+
gt as LineChart,
|
|
305
310
|
A as Link,
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
311
|
+
cr as List,
|
|
312
|
+
Cr as ListItem,
|
|
313
|
+
Ir as ListItemButton,
|
|
314
|
+
Sr as ListItemIcon,
|
|
315
|
+
hr as ListItemText,
|
|
316
|
+
gr as ListSubheader,
|
|
317
|
+
Jm as LoadingOverlay,
|
|
318
|
+
Mp as Map,
|
|
319
|
+
et as Mark,
|
|
320
|
+
qp as Marquee,
|
|
321
|
+
Vp as Masonry,
|
|
322
|
+
Zt as MentionsInput,
|
|
318
323
|
co as Menu,
|
|
319
324
|
Co as MenuDivider,
|
|
320
325
|
U as MenuIcon,
|
|
321
326
|
Io as MenuItem,
|
|
322
327
|
X as MinusIcon,
|
|
323
328
|
ao as Modal,
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
329
|
+
Ep as Motion,
|
|
330
|
+
Ko as MultiSelect,
|
|
331
|
+
qo as NavigableSelect,
|
|
332
|
+
Et as NotificationCenter,
|
|
333
|
+
Tm as NumberFormatter,
|
|
334
|
+
Se as NumberInput,
|
|
335
|
+
ge as OTPInput,
|
|
336
|
+
_m as PageNav,
|
|
337
|
+
Fr as Pagination,
|
|
333
338
|
v as Paper,
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
339
|
+
rm as PasswordInput,
|
|
340
|
+
Nt as PhoneInput,
|
|
341
|
+
Tt as PieChart,
|
|
337
342
|
_ as PlusIcon,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
343
|
+
Mm as Popconfirm,
|
|
344
|
+
oe as Popover,
|
|
345
|
+
lr as Progress,
|
|
346
|
+
Zm as PropsPlayground,
|
|
347
|
+
Sp as QRCode,
|
|
348
|
+
Go as Radio,
|
|
349
|
+
No as RadioCard,
|
|
350
|
+
Vo as RadioCardGroup,
|
|
351
|
+
Eo as RadioGroup,
|
|
347
352
|
N as Rating,
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
353
|
+
ve as ResizablePanel,
|
|
354
|
+
Le as ResizableTextarea,
|
|
355
|
+
Am as Result,
|
|
356
|
+
ut as RichEditor,
|
|
357
|
+
zm as RingProgress,
|
|
358
|
+
Be as ScrollArea,
|
|
354
359
|
Y as SearchIcon,
|
|
355
|
-
|
|
356
|
-
|
|
360
|
+
Jt as SegmentedControl,
|
|
361
|
+
vo as Select,
|
|
357
362
|
Z as SettingsIcon,
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
363
|
+
Ee as Sidebar,
|
|
364
|
+
Ne as SidebarGroup,
|
|
365
|
+
Dt as SignPad,
|
|
366
|
+
Lr as Skeleton,
|
|
367
|
+
Rr as SkeletonAvatar,
|
|
368
|
+
Mr as SkeletonCard,
|
|
369
|
+
yr as SkeletonText,
|
|
370
|
+
Gr as Slider,
|
|
371
|
+
_t as SliderRange,
|
|
372
|
+
bt as Sparkline,
|
|
373
|
+
To as SpeedDial,
|
|
369
374
|
w as Spinner,
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
375
|
+
Lm as SplitButton,
|
|
376
|
+
Hm as Spoiler,
|
|
377
|
+
Wp as Spotlight,
|
|
378
|
+
dt as StatCard,
|
|
379
|
+
ne as Statistic,
|
|
380
|
+
Wr as Stepper,
|
|
381
|
+
jr as StepperControls,
|
|
382
|
+
Lo as Switch,
|
|
383
|
+
tr as Tab,
|
|
384
|
+
fr as TabList,
|
|
385
|
+
ar as TabPanel,
|
|
386
|
+
pr as Tabs,
|
|
387
|
+
Ut as TagsInput,
|
|
388
|
+
Lp as Terminal,
|
|
389
|
+
Bo as TextField,
|
|
390
|
+
qr as TimePicker,
|
|
391
|
+
ae as Timeline,
|
|
392
|
+
Br as ToastContainer,
|
|
393
|
+
kr as ToastProvider,
|
|
388
394
|
uo as Tooltip,
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
+
dp as Tour,
|
|
396
|
+
Wo as TransferList,
|
|
397
|
+
Op as Transition,
|
|
398
|
+
cm as TreeSelect,
|
|
399
|
+
pe as TreeView,
|
|
400
|
+
Xp as Typewriter,
|
|
395
401
|
M as Typography,
|
|
396
|
-
|
|
397
|
-
|
|
402
|
+
fp as VirtualList,
|
|
403
|
+
Kp as Watermark,
|
|
398
404
|
W as XIcon,
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
ox as
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
405
|
+
Rf as bearStyled,
|
|
406
|
+
ze as cn,
|
|
407
|
+
_o as createColumns,
|
|
408
|
+
Qe as createSlots,
|
|
409
|
+
qe as deepMerge,
|
|
410
|
+
sf as defaultDarkTheme,
|
|
411
|
+
uf as defaultLightTheme,
|
|
412
|
+
Ke as styleForge,
|
|
413
|
+
vx as useAnimate,
|
|
414
|
+
nx as useBC,
|
|
415
|
+
mf as useBear,
|
|
416
|
+
sx as useBearComponent,
|
|
417
|
+
ux as useBearComponentContext,
|
|
418
|
+
ff as useBearMode,
|
|
419
|
+
Df as useBearStyles,
|
|
420
|
+
xf as useBearTheme,
|
|
421
|
+
af as useBearThemeOptional,
|
|
422
|
+
ef as useBiometric,
|
|
423
|
+
Gf as useBounce,
|
|
424
|
+
Tf as useClickOutside,
|
|
425
|
+
qf as useClipboard,
|
|
426
|
+
up as useConfetti,
|
|
427
|
+
Qf as useDebounce,
|
|
428
|
+
Uf as useDebouncedCallback,
|
|
429
|
+
kf as useDisclosure,
|
|
430
|
+
mx as useDragDrop,
|
|
431
|
+
Of as useFloat,
|
|
432
|
+
Ft as useFormContext,
|
|
433
|
+
wt as useFormContextSafe,
|
|
434
|
+
gx as useIdle,
|
|
435
|
+
ex as useInView,
|
|
436
|
+
tx as useIntersectionObserver,
|
|
437
|
+
df as useIsDesktop,
|
|
438
|
+
cf as useIsMobile,
|
|
439
|
+
Cf as useIsTablet,
|
|
440
|
+
$f as useKeyPress,
|
|
441
|
+
ox as useKeyPressState,
|
|
442
|
+
xx as useLazyLoad,
|
|
443
|
+
Yf as useLocalStorage,
|
|
444
|
+
Bx as useLongPress,
|
|
445
|
+
If as useMediaQuery,
|
|
446
|
+
Cx as useOnline,
|
|
447
|
+
Px as usePageVisibility,
|
|
448
|
+
Ff as useParallax,
|
|
449
|
+
Sf as usePrefersDark,
|
|
450
|
+
hf as usePrefersReducedMotion,
|
|
451
|
+
Vf as usePulse,
|
|
452
|
+
bf as useResizeObserver,
|
|
453
|
+
Lx as useResponsive,
|
|
454
|
+
Rx as useResponsiveProps,
|
|
455
|
+
Kf as useShake,
|
|
456
|
+
yf as useSlide,
|
|
457
|
+
dx as useSpotlight,
|
|
458
|
+
jf as useThrottle,
|
|
459
|
+
Xf as useThrottledCallback,
|
|
460
|
+
vr as useToast,
|
|
461
|
+
Cp as useTour,
|
|
462
|
+
Sx as useWebSocket
|
|
456
463
|
};
|