@liberfi.io/ui 0.1.0 → 0.1.1
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/index.d.mts +321 -7
- package/dist/index.d.ts +321 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/tailwind/plugin.js +1 -1
- package/dist/tailwind/plugin.js.map +1 -1
- package/dist/tailwind/plugin.mjs +1 -1
- package/dist/tailwind/plugin.mjs.map +1 -1
- package/dist/tailwind/tailwind.css +48 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,329 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _heroui_react from '@heroui/react';
|
|
2
|
+
import { BadgeProps, ButtonProps, InputProps, NumberInputProps, ModalProps, PopoverProps, TableProps, TabsProps, TooltipProps } from '@heroui/react';
|
|
2
3
|
export { Accordion, AccordionItem, AccordionItemIndicatorProps, AccordionItemProps, AccordionProps, Alert, AlertProps, Autocomplete, AutocompleteItem, AutocompleteItemProps, AutocompleteProps, AutocompleteSection, AutocompleteSectionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Calendar, CalendarProps, Card, CardBody, CardFooter, CardFooterProps, CardHeader, CardProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, Chip, ChipProps, CircularProgress, CircularProgressProps, Code, CodeProps, DateInput, DateInputProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, Divider, DividerProps, Drawer, DrawerBody, DrawerBodyProps, DrawerContent, DrawerContentProps, DrawerFooter, DrawerFooterProps, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownItem, DropdownItemProps, DropdownMenu, DropdownMenuProps, DropdownProps, DropdownSection, DropdownSectionProps, DropdownTrigger, DropdownTriggerProps, Image, ImageProps, Input, InputOtp, InputOtpProps, InputProps, Kbd, KbdProps, Link, LinkProps, Listbox, ListboxItem, ListboxItemProps, ListboxProps, ListboxSection, ListboxSectionProps, Modal, ModalBody, ModalBodyProps, ModalContent, ModalContentProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, Navbar, NavbarBrand, NavbarBrandProps, NavbarContent, NavbarContentProps, NavbarItem, NavbarItemProps, NavbarMenu, NavbarMenuItem, NavbarMenuItemProps, NavbarMenuProps, NavbarMenuToggle, NavbarMenuToggleProps, NavbarProps, NumberInput, NumberInputProps, Pagination, PaginationCursor, PaginationCursorProps, PaginationItem, PaginationItemProps, PaginationProps, Popover, PopoverContent, PopoverContentProps, PopoverProps, PopoverTrigger, PopoverTriggerProps, Progress, ProgressProps, Radio, RadioGroup, RadioGroupProps, RadioProps, RangeCalendar, RangeCalendarProps, ScrollShadow, ScrollShadowProps, Select, SelectItem, SelectItemProps, SelectProps, SelectSection, SelectSectionProps, Skeleton, SkeletonProps, Slider, SliderProps, Snippet, SnippetProps, Spacer, SpacerProps, Spinner, SpinnerProps, Switch, SwitchProps, Tab, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableColumn, TableColumnProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAreaProps, Textarea, TimeInput, TimeInputProps, Tooltip, TooltipProps, UseDisclosureProps, useDisclosure } from '@heroui/react';
|
|
4
|
+
import * as react from 'react';
|
|
3
5
|
import { ComponentType, PropsWithChildren, SVGProps } from 'react';
|
|
4
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
7
|
import { ToasterProps } from 'react-hot-toast';
|
|
6
8
|
export { ToastOptions, Toaster, ToasterProps, toast } from 'react-hot-toast';
|
|
7
9
|
export { clsx } from 'clsx';
|
|
8
10
|
|
|
11
|
+
declare const StyledBadge: ComponentType<BadgeProps>;
|
|
12
|
+
|
|
13
|
+
type ExtendedColor = ButtonProps["color"] | "transparent" | "content1" | "content2" | "content3" | "content4";
|
|
14
|
+
type ExtendedSize = ButtonProps["size"] | "xs";
|
|
15
|
+
type ExtendedButtonProps = Omit<ButtonProps, "color" | "size"> & {
|
|
16
|
+
color?: ExtendedColor;
|
|
17
|
+
size?: ExtendedSize;
|
|
18
|
+
};
|
|
19
|
+
declare const StyledButton: ComponentType<ExtendedButtonProps>;
|
|
20
|
+
|
|
21
|
+
declare const StyledDivider: react.ForwardRefExoticComponent<Omit<{
|
|
22
|
+
className?: string | undefined;
|
|
23
|
+
variant?: "default" | "light" | undefined;
|
|
24
|
+
slot?: any;
|
|
25
|
+
style?: react.CSSProperties | undefined;
|
|
26
|
+
title?: string | undefined;
|
|
27
|
+
ref?: react.Ref<HTMLElement> | undefined;
|
|
28
|
+
defaultChecked?: any;
|
|
29
|
+
defaultValue?: any;
|
|
30
|
+
as?: _heroui_react.As<any> | undefined;
|
|
31
|
+
content?: string | undefined;
|
|
32
|
+
key?: react.Key | null | undefined;
|
|
33
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
34
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
35
|
+
accessKey?: string | undefined;
|
|
36
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
37
|
+
autoFocus?: boolean | undefined;
|
|
38
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
39
|
+
contextMenu?: string | undefined;
|
|
40
|
+
dir?: string | undefined;
|
|
41
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
42
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
43
|
+
hidden?: boolean | undefined;
|
|
44
|
+
id?: string | undefined;
|
|
45
|
+
lang?: string | undefined;
|
|
46
|
+
nonce?: string | undefined;
|
|
47
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
48
|
+
tabIndex?: number | undefined;
|
|
49
|
+
translate?: "yes" | "no" | undefined;
|
|
50
|
+
radioGroup?: string | undefined;
|
|
51
|
+
role?: react.AriaRole | undefined;
|
|
52
|
+
about?: string | undefined;
|
|
53
|
+
datatype?: string | undefined;
|
|
54
|
+
inlist?: any;
|
|
55
|
+
prefix?: string | undefined;
|
|
56
|
+
property?: string | undefined;
|
|
57
|
+
rel?: string | undefined;
|
|
58
|
+
resource?: string | undefined;
|
|
59
|
+
rev?: string | undefined;
|
|
60
|
+
typeof?: string | undefined;
|
|
61
|
+
vocab?: string | undefined;
|
|
62
|
+
autoCorrect?: string | undefined;
|
|
63
|
+
autoSave?: string | undefined;
|
|
64
|
+
itemProp?: string | undefined;
|
|
65
|
+
itemScope?: boolean | undefined;
|
|
66
|
+
itemType?: string | undefined;
|
|
67
|
+
itemID?: string | undefined;
|
|
68
|
+
itemRef?: string | undefined;
|
|
69
|
+
results?: number | undefined;
|
|
70
|
+
security?: string | undefined;
|
|
71
|
+
unselectable?: "off" | "on" | undefined;
|
|
72
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
73
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
74
|
+
popoverTarget?: string | undefined;
|
|
75
|
+
inert?: boolean | undefined;
|
|
76
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
77
|
+
is?: string | undefined;
|
|
78
|
+
exportparts?: string | undefined;
|
|
79
|
+
part?: string | undefined;
|
|
80
|
+
children?: any;
|
|
81
|
+
"aria-activedescendant"?: string | undefined;
|
|
82
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
84
|
+
"aria-braillelabel"?: string | undefined;
|
|
85
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
86
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
88
|
+
"aria-colcount"?: number | undefined;
|
|
89
|
+
"aria-colindex"?: number | undefined;
|
|
90
|
+
"aria-colindextext"?: string | undefined;
|
|
91
|
+
"aria-colspan"?: number | undefined;
|
|
92
|
+
"aria-controls"?: string | undefined;
|
|
93
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
94
|
+
"aria-describedby"?: string | undefined;
|
|
95
|
+
"aria-description"?: string | undefined;
|
|
96
|
+
"aria-details"?: string | undefined;
|
|
97
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
98
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
99
|
+
"aria-errormessage"?: string | undefined;
|
|
100
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-flowto"?: string | undefined;
|
|
102
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
103
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
104
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
105
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
106
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
107
|
+
"aria-label"?: string | undefined;
|
|
108
|
+
"aria-labelledby"?: string | undefined;
|
|
109
|
+
"aria-level"?: number | undefined;
|
|
110
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
111
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
113
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
115
|
+
"aria-owns"?: string | undefined;
|
|
116
|
+
"aria-placeholder"?: string | undefined;
|
|
117
|
+
"aria-posinset"?: number | undefined;
|
|
118
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
119
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
120
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
121
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
122
|
+
"aria-roledescription"?: string | undefined;
|
|
123
|
+
"aria-rowcount"?: number | undefined;
|
|
124
|
+
"aria-rowindex"?: number | undefined;
|
|
125
|
+
"aria-rowindextext"?: string | undefined;
|
|
126
|
+
"aria-rowspan"?: number | undefined;
|
|
127
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
128
|
+
"aria-setsize"?: number | undefined;
|
|
129
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
130
|
+
"aria-valuemax"?: number | undefined;
|
|
131
|
+
"aria-valuemin"?: number | undefined;
|
|
132
|
+
"aria-valuenow"?: number | undefined;
|
|
133
|
+
"aria-valuetext"?: string | undefined;
|
|
134
|
+
dangerouslySetInnerHTML?: {
|
|
135
|
+
__html: string | TrustedHTML;
|
|
136
|
+
} | undefined;
|
|
137
|
+
onCopy?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
138
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
139
|
+
onCut?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
140
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
141
|
+
onPaste?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
142
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLHRElement> | undefined;
|
|
143
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
144
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
145
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
146
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
147
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
148
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLHRElement> | undefined;
|
|
149
|
+
onFocus?: react.FocusEventHandler<HTMLHRElement> | undefined;
|
|
150
|
+
onFocusCapture?: react.FocusEventHandler<HTMLHRElement> | undefined;
|
|
151
|
+
onBlur?: react.FocusEventHandler<HTMLHRElement> | undefined;
|
|
152
|
+
onBlurCapture?: react.FocusEventHandler<HTMLHRElement> | undefined;
|
|
153
|
+
onChange?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
154
|
+
onChangeCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
155
|
+
onBeforeInput?: react.InputEventHandler<HTMLHRElement> | undefined;
|
|
156
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
157
|
+
onInput?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
158
|
+
onInputCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
159
|
+
onReset?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
160
|
+
onResetCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
161
|
+
onSubmit?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
162
|
+
onSubmitCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
163
|
+
onInvalid?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
164
|
+
onInvalidCapture?: react.FormEventHandler<HTMLHRElement> | undefined;
|
|
165
|
+
onLoad?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
166
|
+
onLoadCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
167
|
+
onError?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
168
|
+
onErrorCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
169
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
170
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
171
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
172
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
173
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
174
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLHRElement> | undefined;
|
|
175
|
+
onAbort?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
176
|
+
onAbortCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
177
|
+
onCanPlay?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
178
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
179
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
180
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
181
|
+
onDurationChange?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
182
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
183
|
+
onEmptied?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
184
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
185
|
+
onEncrypted?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
186
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
187
|
+
onEnded?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
188
|
+
onEndedCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
189
|
+
onLoadedData?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
190
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
191
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
192
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
193
|
+
onLoadStart?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
194
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
195
|
+
onPause?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
196
|
+
onPauseCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
197
|
+
onPlay?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
198
|
+
onPlayCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
199
|
+
onPlaying?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
200
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
201
|
+
onProgress?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
202
|
+
onProgressCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
203
|
+
onRateChange?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
204
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
205
|
+
onSeeked?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
206
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
207
|
+
onSeeking?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
208
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
209
|
+
onStalled?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
210
|
+
onStalledCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
211
|
+
onSuspend?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
212
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
213
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
214
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
215
|
+
onVolumeChange?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
216
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
217
|
+
onWaiting?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
218
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
219
|
+
onAuxClick?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
220
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
221
|
+
onClick?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
222
|
+
onClickCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
223
|
+
onContextMenu?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
224
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
225
|
+
onDoubleClick?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
226
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
227
|
+
onDrag?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
228
|
+
onDragCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
229
|
+
onDragEnd?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
230
|
+
onDragEndCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
231
|
+
onDragEnter?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
232
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
233
|
+
onDragExit?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
234
|
+
onDragExitCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
235
|
+
onDragLeave?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
236
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
237
|
+
onDragOver?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
238
|
+
onDragOverCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
239
|
+
onDragStart?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
240
|
+
onDragStartCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
241
|
+
onDrop?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
242
|
+
onDropCapture?: react.DragEventHandler<HTMLHRElement> | undefined;
|
|
243
|
+
onMouseDown?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
244
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
245
|
+
onMouseEnter?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
246
|
+
onMouseLeave?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
247
|
+
onMouseMove?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
248
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
249
|
+
onMouseOut?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
250
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
251
|
+
onMouseOver?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
252
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
253
|
+
onMouseUp?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
254
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLHRElement> | undefined;
|
|
255
|
+
onSelect?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
256
|
+
onSelectCapture?: react.ReactEventHandler<HTMLHRElement> | undefined;
|
|
257
|
+
onTouchCancel?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
258
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
259
|
+
onTouchEnd?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
260
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
261
|
+
onTouchMove?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
262
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
263
|
+
onTouchStart?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
264
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLHRElement> | undefined;
|
|
265
|
+
onPointerDown?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
266
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
267
|
+
onPointerMove?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
268
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
269
|
+
onPointerUp?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
270
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
271
|
+
onPointerCancel?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
272
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
273
|
+
onPointerEnter?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
274
|
+
onPointerLeave?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
275
|
+
onPointerOver?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
276
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
277
|
+
onPointerOut?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
278
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
279
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
280
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
281
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
282
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLHRElement> | undefined;
|
|
283
|
+
onScroll?: react.UIEventHandler<HTMLHRElement> | undefined;
|
|
284
|
+
onScrollCapture?: react.UIEventHandler<HTMLHRElement> | undefined;
|
|
285
|
+
onScrollEnd?: react.UIEventHandler<HTMLHRElement> | undefined;
|
|
286
|
+
onScrollEndCapture?: react.UIEventHandler<HTMLHRElement> | undefined;
|
|
287
|
+
onWheel?: react.WheelEventHandler<HTMLHRElement> | undefined;
|
|
288
|
+
onWheelCapture?: react.WheelEventHandler<HTMLHRElement> | undefined;
|
|
289
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
290
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
291
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
292
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
293
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
294
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLHRElement> | undefined;
|
|
295
|
+
onToggle?: react.ToggleEventHandler<HTMLHRElement> | undefined;
|
|
296
|
+
onBeforeToggle?: react.ToggleEventHandler<HTMLHRElement> | undefined;
|
|
297
|
+
onTransitionCancel?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
298
|
+
onTransitionCancelCapture?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
299
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
300
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
301
|
+
onTransitionRun?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
302
|
+
onTransitionRunCapture?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
303
|
+
onTransitionStart?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
304
|
+
onTransitionStartCapture?: react.TransitionEventHandler<HTMLHRElement> | undefined;
|
|
305
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
306
|
+
}, "ref"> & react.RefAttributes<react.ReactElement<unknown, string | react.JSXElementConstructor<any>>>>;
|
|
307
|
+
|
|
308
|
+
declare const StyledInput: ComponentType<InputProps>;
|
|
309
|
+
declare const StyledNumberInput: ComponentType<NumberInputProps>;
|
|
310
|
+
|
|
311
|
+
declare const StyledModal: ComponentType<ModalProps & {
|
|
312
|
+
variant?: "default";
|
|
313
|
+
}>;
|
|
314
|
+
|
|
315
|
+
declare const StyledPopover: ComponentType<PopoverProps>;
|
|
316
|
+
|
|
9
317
|
declare const StyledTable: ComponentType<TableProps & {
|
|
10
318
|
variant?: "default";
|
|
11
319
|
}>;
|
|
12
320
|
|
|
321
|
+
type ExtendedVariant = TabsProps["variant"] | "radio";
|
|
322
|
+
type ExtendedTabsProps = Omit<TabsProps, "variant"> & {
|
|
323
|
+
variant?: ExtendedVariant;
|
|
324
|
+
};
|
|
325
|
+
declare const StyledTabs: ComponentType<ExtendedTabsProps>;
|
|
326
|
+
|
|
13
327
|
declare function StyledToaster(props: ToasterProps): react_jsx_runtime.JSX.Element;
|
|
14
328
|
declare namespace StyledToaster {
|
|
15
329
|
var displayName: string;
|
|
@@ -32,16 +346,12 @@ declare function useCopyToClipboard(): (text: string, toastMessage?: string) =>
|
|
|
32
346
|
|
|
33
347
|
declare function useScreen(): {
|
|
34
348
|
isMobile: boolean;
|
|
349
|
+
isTablet: boolean;
|
|
35
350
|
isDesktop: boolean;
|
|
36
351
|
};
|
|
37
352
|
|
|
38
353
|
declare function useMediaQuery(query: string): boolean;
|
|
39
354
|
|
|
40
|
-
/**
|
|
41
|
-
* observe the element and call the callback when the element is changed
|
|
42
|
-
* */
|
|
43
|
-
declare function useObserverElement<T extends HTMLElement>(element: T | null, callback: (entry: ResizeObserverEntry) => void): void;
|
|
44
|
-
|
|
45
355
|
declare function BundlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
46
356
|
|
|
47
357
|
declare function CameraIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -74,6 +384,8 @@ declare function ExclamationIcon(props: SVGProps<SVGSVGElement>): react_jsx_runt
|
|
|
74
384
|
|
|
75
385
|
declare function FAQIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
76
386
|
|
|
387
|
+
declare function FilterIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
388
|
+
|
|
77
389
|
declare function GiftIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
78
390
|
|
|
79
391
|
declare function HomeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -112,6 +424,8 @@ declare function PulseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JS
|
|
|
112
424
|
|
|
113
425
|
declare function RatIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
114
426
|
|
|
427
|
+
declare function RefreshIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
428
|
+
|
|
115
429
|
declare function RocketIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
116
430
|
|
|
117
431
|
declare function SearchIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -179,4 +493,4 @@ declare global {
|
|
|
179
493
|
}
|
|
180
494
|
declare const _default: "0.1.0";
|
|
181
495
|
|
|
182
|
-
export { BundlesIcon, CameraIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CoinsIcon, CookIcon, CopyIcon, CrownIcon, DiscordIcon, EditIcon, EmptyIcon, ExclamationIcon, FAQIcon, GiftIcon, HomeIcon, InfoIcon, KlineAreaIcon, KlineBarsIcon, KlineBaseLineIcon, KlineCandlesIcon, KlineColumnsIcon, KlineHelkinAshiIcon, KlineHighLowIcon, KlineHollowCandlesIcon, KlineLineIcon, LightningIcon, MenuIcon, PauseIcon, PeopleIcon, PrivacyPolicyIcon, PulseIcon, RatIcon, RocketIcon, SearchIcon, SettingsIcon, ShieldIcon, ShieldOffIcon, ShieldPlusIcon, SignInIcon, SignOutIcon, SlippageIcon, SniperIcon, Sortable, type SortableProps, StyledTable, StyledToaster, StyledTooltip, SupportIcon, TelegramIcon, TermsOfServiceIcon, TradeIcon, TranslateIcon, TriangleDownIcon, TriangleUpIcon, TwitterIcon, UserGuideIcon, UserIcon, UserWithStarBadgeIcon, VerifiedIcon, WalletIcon, WebsiteIcon, XCloseIcon, ZapFastIcon, useCopyToClipboard, useMediaQuery,
|
|
496
|
+
export { BundlesIcon, CameraIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CoinsIcon, CookIcon, CopyIcon, CrownIcon, DiscordIcon, EditIcon, EmptyIcon, ExclamationIcon, type ExtendedButtonProps, type ExtendedColor, FAQIcon, FilterIcon, GiftIcon, HomeIcon, InfoIcon, KlineAreaIcon, KlineBarsIcon, KlineBaseLineIcon, KlineCandlesIcon, KlineColumnsIcon, KlineHelkinAshiIcon, KlineHighLowIcon, KlineHollowCandlesIcon, KlineLineIcon, LightningIcon, MenuIcon, PauseIcon, PeopleIcon, PrivacyPolicyIcon, PulseIcon, RatIcon, RefreshIcon, RocketIcon, SearchIcon, SettingsIcon, ShieldIcon, ShieldOffIcon, ShieldPlusIcon, SignInIcon, SignOutIcon, SlippageIcon, SniperIcon, Sortable, type SortableProps, StyledBadge, StyledButton, StyledDivider, StyledInput, StyledModal, StyledNumberInput, StyledPopover, StyledTable, StyledTabs, StyledToaster, StyledTooltip, SupportIcon, TelegramIcon, TermsOfServiceIcon, TradeIcon, TranslateIcon, TriangleDownIcon, TriangleUpIcon, TwitterIcon, UserGuideIcon, UserIcon, UserWithStarBadgeIcon, VerifiedIcon, WalletIcon, WebsiteIcon, XCloseIcon, ZapFastIcon, useCopyToClipboard, useMediaQuery, useScreen, _default as version };
|