nexoreui 0.1.2 → 0.1.6
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 +2293 -1475
- package/dist/index.d.ts +2293 -1475
- package/dist/index.js +8890 -6406
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8766 -6206
- package/dist/index.mjs.map +1 -1
- package/package.json +67 -66
- package/postinstall.js +50 -50
package/dist/index.d.mts
CHANGED
|
@@ -2,9 +2,6 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
|
-
import * as framer_motion from 'framer-motion';
|
|
6
|
-
import { HTMLMotionProps } from 'framer-motion';
|
|
7
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
5
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
9
6
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
10
7
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
@@ -14,368 +11,262 @@ import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
|
14
11
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
15
12
|
import { Toaster as Toaster$1 } from 'sonner';
|
|
16
13
|
export { toast } from 'sonner';
|
|
17
|
-
import * as
|
|
14
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
15
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
16
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
17
|
+
import { HTMLMotionProps } from 'framer-motion';
|
|
18
18
|
import { LucideIcon } from 'lucide-react';
|
|
19
19
|
import { ClassValue } from 'clsx';
|
|
20
20
|
|
|
21
21
|
declare const buttonVariants: (props?: ({
|
|
22
|
-
variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | "premium" | "neon" | "glass" | "shimmer" | null | undefined;
|
|
22
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | "premium" | "neon" | "glass" | "shimmer" | "gradient" | "glow" | "magnetic" | "loading" | null | undefined;
|
|
23
23
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
25
|
+
/**
|
|
26
|
+
* Props for the Button component
|
|
27
|
+
*/
|
|
25
28
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
26
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* Enable hover/tap spring motion animation
|
|
31
|
+
* @default true
|
|
32
|
+
*/
|
|
27
33
|
animate?: boolean;
|
|
28
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* Enable shimmer light animation effect
|
|
36
|
+
* @default false
|
|
37
|
+
*/
|
|
29
38
|
shimmer?: boolean;
|
|
30
|
-
/**
|
|
39
|
+
/**
|
|
40
|
+
* Enable neon glow effect
|
|
41
|
+
* @default false
|
|
42
|
+
*/
|
|
31
43
|
glow?: boolean;
|
|
32
|
-
|
|
33
|
-
|
|
44
|
+
/**
|
|
45
|
+
* Display loading spinner icon and disable actions
|
|
46
|
+
* @default false
|
|
47
|
+
*/
|
|
48
|
+
isLoading?: boolean;
|
|
34
49
|
}
|
|
35
50
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
36
51
|
|
|
52
|
+
/**
|
|
53
|
+
* @deprecated Use the unified `<Button variant="neon">` instead.
|
|
54
|
+
*/
|
|
55
|
+
declare const NeonButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
56
|
+
/**
|
|
57
|
+
* @deprecated Use custom styles or class variance utilities on the unified `<Button>` instead.
|
|
58
|
+
*/
|
|
59
|
+
declare const ThreeDButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
60
|
+
/**
|
|
61
|
+
* @deprecated Use custom ripple animations on the unified `<Button>` instead.
|
|
62
|
+
*/
|
|
63
|
+
declare const RippleButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
64
|
+
/**
|
|
65
|
+
* @deprecated Use standard utility classes on the unified `<Button>` instead.
|
|
66
|
+
*/
|
|
67
|
+
declare const CyberpunkButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
68
|
+
/**
|
|
69
|
+
* @deprecated Use the unified `<Button variant="magnetic">` instead.
|
|
70
|
+
*/
|
|
71
|
+
declare const MagneticButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
72
|
+
/**
|
|
73
|
+
* @deprecated Use the unified `<Button variant="shimmer">` instead.
|
|
74
|
+
*/
|
|
75
|
+
declare const ShimmerButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
76
|
+
/**
|
|
77
|
+
* @deprecated Use a custom hover effect on the unified `<Button>` instead.
|
|
78
|
+
*/
|
|
79
|
+
declare const BorderBeamButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
80
|
+
/**
|
|
81
|
+
* @deprecated Use the unified `<Button isLoading={...}>` instead.
|
|
82
|
+
*/
|
|
83
|
+
declare const LoadingButton: React$1.ForwardRefExoticComponent<ButtonProps & {
|
|
84
|
+
isLoading?: boolean;
|
|
85
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
86
|
+
/**
|
|
87
|
+
* @deprecated Use the unified `<Button variant="destructive" glow>` instead.
|
|
88
|
+
*/
|
|
89
|
+
declare const DestructiveGlowButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
90
|
+
/**
|
|
91
|
+
* @deprecated Use the unified `<Button variant="outline">` instead.
|
|
92
|
+
*/
|
|
93
|
+
declare const GhostOutlineButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
94
|
+
/**
|
|
95
|
+
* @deprecated Use the unified `<Button variant="glow">` instead.
|
|
96
|
+
*/
|
|
97
|
+
declare const GlowButton: React$1.ForwardRefExoticComponent<ButtonProps & {
|
|
98
|
+
glowColor?: string;
|
|
99
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
100
|
+
/**
|
|
101
|
+
* @deprecated Use the unified `<Button shimmer>` instead.
|
|
102
|
+
*/
|
|
103
|
+
declare const ShinyButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
104
|
+
/**
|
|
105
|
+
* @deprecated Use the unified `<Button variant="gradient">` instead.
|
|
106
|
+
*/
|
|
107
|
+
declare const GradientButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
108
|
+
/**
|
|
109
|
+
* @deprecated Use the unified `<Button variant="glass">` instead.
|
|
110
|
+
*/
|
|
111
|
+
declare const GlassButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
112
|
+
|
|
37
113
|
declare const cardVariants: (props?: ({
|
|
38
|
-
variant?: "default" | "glass" | "glow" | "
|
|
114
|
+
variant?: "default" | "glass" | "gradient" | "glow" | "bento" | "spotlight" | "flip" | "tilt" | null | undefined;
|
|
39
115
|
hover?: "glow" | "none" | "lift" | null | undefined;
|
|
40
116
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
41
|
-
|
|
117
|
+
/**
|
|
118
|
+
* Props for the Card component
|
|
119
|
+
*/
|
|
120
|
+
interface CardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof cardVariants> {
|
|
42
121
|
/**
|
|
43
|
-
* Whether to enable hover animations
|
|
122
|
+
* Whether to enable hover spring animations
|
|
44
123
|
* @default true
|
|
45
124
|
*/
|
|
46
125
|
animate?: boolean;
|
|
47
126
|
/**
|
|
48
|
-
*
|
|
127
|
+
* Back content displayed when using the `flip` variant on hover
|
|
49
128
|
*/
|
|
50
|
-
|
|
129
|
+
backContent?: React$1.ReactNode;
|
|
51
130
|
/**
|
|
52
|
-
*
|
|
131
|
+
* Custom radial spotlight background color (e.g., rgba(168, 85, 247, 0.15))
|
|
132
|
+
* @default "rgba(139, 92, 246, 0.15)"
|
|
53
133
|
*/
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
*/
|
|
58
|
-
footer?: React$1.ReactNode;
|
|
59
|
-
/**
|
|
60
|
-
* An image URL to display at the top of the card
|
|
61
|
-
*/
|
|
62
|
-
image?: string;
|
|
63
|
-
}
|
|
64
|
-
declare const Card: React$1.ForwardRefExoticComponent<Omit<CardProps & {
|
|
65
|
-
className?: string | undefined;
|
|
66
|
-
defaultChecked?: boolean | undefined;
|
|
67
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
68
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
69
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
70
|
-
accessKey?: string | undefined;
|
|
71
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
72
|
-
autoFocus?: boolean | undefined;
|
|
73
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
74
|
-
contextMenu?: string | undefined;
|
|
75
|
-
dir?: string | undefined;
|
|
76
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
77
|
-
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
78
|
-
hidden?: boolean | undefined;
|
|
79
|
-
id?: string | undefined;
|
|
80
|
-
lang?: string | undefined;
|
|
81
|
-
nonce?: string | undefined;
|
|
82
|
-
slot?: string | undefined;
|
|
83
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
84
|
-
tabIndex?: number | undefined;
|
|
85
|
-
title?: string | undefined;
|
|
86
|
-
translate?: "yes" | "no" | undefined;
|
|
87
|
-
radioGroup?: string | undefined;
|
|
88
|
-
role?: React$1.AriaRole | undefined;
|
|
89
|
-
about?: string | undefined;
|
|
90
|
-
content?: string | undefined;
|
|
91
|
-
datatype?: string | undefined;
|
|
92
|
-
inlist?: any;
|
|
93
|
-
prefix?: string | undefined;
|
|
94
|
-
property?: string | undefined;
|
|
95
|
-
rel?: string | undefined;
|
|
96
|
-
resource?: string | undefined;
|
|
97
|
-
rev?: string | undefined;
|
|
98
|
-
typeof?: string | undefined;
|
|
99
|
-
vocab?: string | undefined;
|
|
100
|
-
autoCorrect?: string | undefined;
|
|
101
|
-
autoSave?: string | undefined;
|
|
102
|
-
color?: string | undefined;
|
|
103
|
-
itemProp?: string | undefined;
|
|
104
|
-
itemScope?: boolean | undefined;
|
|
105
|
-
itemType?: string | undefined;
|
|
106
|
-
itemID?: string | undefined;
|
|
107
|
-
itemRef?: string | undefined;
|
|
108
|
-
results?: number | undefined;
|
|
109
|
-
security?: string | undefined;
|
|
110
|
-
unselectable?: "off" | "on" | undefined;
|
|
111
|
-
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
112
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
113
|
-
popoverTarget?: string | undefined;
|
|
114
|
-
inert?: boolean | undefined;
|
|
115
|
-
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
116
|
-
is?: string | undefined;
|
|
117
|
-
exportparts?: string | undefined;
|
|
118
|
-
part?: string | undefined;
|
|
119
|
-
"aria-activedescendant"?: string | undefined;
|
|
120
|
-
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
121
|
-
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
122
|
-
"aria-braillelabel"?: string | undefined;
|
|
123
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
124
|
-
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
125
|
-
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
126
|
-
"aria-colcount"?: number | undefined;
|
|
127
|
-
"aria-colindex"?: number | undefined;
|
|
128
|
-
"aria-colindextext"?: string | undefined;
|
|
129
|
-
"aria-colspan"?: number | undefined;
|
|
130
|
-
"aria-controls"?: string | undefined;
|
|
131
|
-
"aria-current"?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
132
|
-
"aria-describedby"?: string | undefined;
|
|
133
|
-
"aria-description"?: string | undefined;
|
|
134
|
-
"aria-details"?: string | undefined;
|
|
135
|
-
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
136
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
137
|
-
"aria-errormessage"?: string | undefined;
|
|
138
|
-
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
139
|
-
"aria-flowto"?: string | undefined;
|
|
140
|
-
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
141
|
-
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
142
|
-
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
143
|
-
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
144
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
145
|
-
"aria-label"?: string | undefined;
|
|
146
|
-
"aria-labelledby"?: string | undefined;
|
|
147
|
-
"aria-level"?: number | undefined;
|
|
148
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
149
|
-
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
150
|
-
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
151
|
-
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
152
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
153
|
-
"aria-owns"?: string | undefined;
|
|
154
|
-
"aria-placeholder"?: string | undefined;
|
|
155
|
-
"aria-posinset"?: number | undefined;
|
|
156
|
-
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
157
|
-
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
158
|
-
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
159
|
-
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
160
|
-
"aria-roledescription"?: string | undefined;
|
|
161
|
-
"aria-rowcount"?: number | undefined;
|
|
162
|
-
"aria-rowindex"?: number | undefined;
|
|
163
|
-
"aria-rowindextext"?: string | undefined;
|
|
164
|
-
"aria-rowspan"?: number | undefined;
|
|
165
|
-
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
166
|
-
"aria-setsize"?: number | undefined;
|
|
167
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
168
|
-
"aria-valuemax"?: number | undefined;
|
|
169
|
-
"aria-valuemin"?: number | undefined;
|
|
170
|
-
"aria-valuenow"?: number | undefined;
|
|
171
|
-
"aria-valuetext"?: string | undefined;
|
|
172
|
-
dangerouslySetInnerHTML?: {
|
|
173
|
-
__html: string | TrustedHTML;
|
|
174
|
-
} | undefined;
|
|
175
|
-
onCopy?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
176
|
-
onCopyCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
177
|
-
onCut?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
178
|
-
onCutCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
179
|
-
onPaste?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
180
|
-
onPasteCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
181
|
-
onCompositionEnd?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
182
|
-
onCompositionEndCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
183
|
-
onCompositionStart?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
184
|
-
onCompositionStartCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
185
|
-
onCompositionUpdate?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
186
|
-
onCompositionUpdateCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
187
|
-
onFocus?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
|
|
188
|
-
onFocusCapture?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
|
|
189
|
-
onBlur?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
|
|
190
|
-
onBlurCapture?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
|
|
191
|
-
onChange?: React$1.ChangeEventHandler<HTMLDivElement, Element> | undefined;
|
|
192
|
-
onChangeCapture?: React$1.ChangeEventHandler<HTMLDivElement, Element> | undefined;
|
|
193
|
-
onBeforeInput?: React$1.InputEventHandler<HTMLDivElement> | undefined;
|
|
194
|
-
onBeforeInputCapture?: React$1.InputEventHandler<HTMLDivElement> | undefined;
|
|
195
|
-
onInput?: React$1.InputEventHandler<HTMLDivElement> | undefined;
|
|
196
|
-
onInputCapture?: React$1.InputEventHandler<HTMLDivElement> | undefined;
|
|
197
|
-
onReset?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
198
|
-
onResetCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
199
|
-
onSubmit?: React$1.SubmitEventHandler<HTMLDivElement> | undefined;
|
|
200
|
-
onSubmitCapture?: React$1.SubmitEventHandler<HTMLDivElement> | undefined;
|
|
201
|
-
onInvalid?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
202
|
-
onInvalidCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
203
|
-
onLoad?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
204
|
-
onLoadCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
205
|
-
onError?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
206
|
-
onErrorCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
207
|
-
onKeyDown?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
208
|
-
onKeyDownCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
209
|
-
onKeyPress?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
210
|
-
onKeyPressCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
211
|
-
onKeyUp?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
212
|
-
onKeyUpCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
213
|
-
onAbort?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
214
|
-
onAbortCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
215
|
-
onCanPlay?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
216
|
-
onCanPlayCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
217
|
-
onCanPlayThrough?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
218
|
-
onCanPlayThroughCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
219
|
-
onDurationChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
220
|
-
onDurationChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
221
|
-
onEmptied?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
222
|
-
onEmptiedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
223
|
-
onEncrypted?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
224
|
-
onEncryptedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
225
|
-
onEnded?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
226
|
-
onEndedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
227
|
-
onLoadedData?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
228
|
-
onLoadedDataCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
229
|
-
onLoadedMetadata?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
230
|
-
onLoadedMetadataCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
231
|
-
onLoadStart?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
232
|
-
onLoadStartCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
233
|
-
onPause?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
234
|
-
onPauseCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
235
|
-
onPlay?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
236
|
-
onPlayCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
237
|
-
onPlaying?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
238
|
-
onPlayingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
239
|
-
onProgress?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
240
|
-
onProgressCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
241
|
-
onRateChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
242
|
-
onRateChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
243
|
-
onSeeked?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
244
|
-
onSeekedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
245
|
-
onSeeking?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
246
|
-
onSeekingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
247
|
-
onStalled?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
248
|
-
onStalledCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
249
|
-
onSuspend?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
250
|
-
onSuspendCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
251
|
-
onTimeUpdate?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
252
|
-
onTimeUpdateCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
253
|
-
onVolumeChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
254
|
-
onVolumeChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
255
|
-
onWaiting?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
256
|
-
onWaitingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
257
|
-
onAuxClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
258
|
-
onAuxClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
259
|
-
onClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
260
|
-
onClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
261
|
-
onContextMenu?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
262
|
-
onContextMenuCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
263
|
-
onDoubleClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
264
|
-
onDoubleClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
265
|
-
onDragCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
266
|
-
onDragEndCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
267
|
-
onDragEnter?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
268
|
-
onDragEnterCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
269
|
-
onDragExit?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
270
|
-
onDragExitCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
271
|
-
onDragLeave?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
272
|
-
onDragLeaveCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
273
|
-
onDragOver?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
274
|
-
onDragOverCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
275
|
-
onDragStartCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
276
|
-
onDrop?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
277
|
-
onDropCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
|
|
278
|
-
onMouseDown?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
279
|
-
onMouseDownCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
280
|
-
onMouseEnter?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
281
|
-
onMouseLeave?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
282
|
-
onMouseMove?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
283
|
-
onMouseMoveCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
284
|
-
onMouseOut?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
285
|
-
onMouseOutCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
286
|
-
onMouseOver?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
287
|
-
onMouseOverCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
288
|
-
onMouseUp?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
289
|
-
onMouseUpCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
|
|
290
|
-
onSelect?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
291
|
-
onSelectCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
|
|
292
|
-
onTouchCancel?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
293
|
-
onTouchCancelCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
294
|
-
onTouchEnd?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
295
|
-
onTouchEndCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
296
|
-
onTouchMove?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
297
|
-
onTouchMoveCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
298
|
-
onTouchStart?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
299
|
-
onTouchStartCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
|
|
300
|
-
onPointerDown?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
301
|
-
onPointerDownCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
302
|
-
onPointerMove?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
303
|
-
onPointerMoveCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
304
|
-
onPointerUp?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
305
|
-
onPointerUpCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
306
|
-
onPointerCancel?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
307
|
-
onPointerCancelCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
308
|
-
onPointerEnter?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
309
|
-
onPointerLeave?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
310
|
-
onPointerOver?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
311
|
-
onPointerOverCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
312
|
-
onPointerOut?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
313
|
-
onPointerOutCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
314
|
-
onGotPointerCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
315
|
-
onGotPointerCaptureCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
316
|
-
onLostPointerCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
317
|
-
onLostPointerCaptureCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
|
|
318
|
-
onScroll?: React$1.UIEventHandler<HTMLDivElement> | undefined;
|
|
319
|
-
onScrollCapture?: React$1.UIEventHandler<HTMLDivElement> | undefined;
|
|
320
|
-
onScrollEnd?: React$1.UIEventHandler<HTMLDivElement> | undefined;
|
|
321
|
-
onScrollEndCapture?: React$1.UIEventHandler<HTMLDivElement> | undefined;
|
|
322
|
-
onWheel?: React$1.WheelEventHandler<HTMLDivElement> | undefined;
|
|
323
|
-
onWheelCapture?: React$1.WheelEventHandler<HTMLDivElement> | undefined;
|
|
324
|
-
onAnimationStartCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
325
|
-
onAnimationEnd?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
326
|
-
onAnimationEndCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
327
|
-
onAnimationIteration?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
328
|
-
onAnimationIterationCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
329
|
-
onToggle?: React$1.ToggleEventHandler<HTMLDivElement> | undefined;
|
|
330
|
-
onBeforeToggle?: React$1.ToggleEventHandler<HTMLDivElement> | undefined;
|
|
331
|
-
onTransitionCancel?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
332
|
-
onTransitionCancelCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
333
|
-
onTransitionEnd?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
334
|
-
onTransitionEndCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
335
|
-
onTransitionRun?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
336
|
-
onTransitionRunCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
337
|
-
onTransitionStart?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
338
|
-
onTransitionStartCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
339
|
-
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
340
|
-
key?: React$1.Key | null | undefined;
|
|
341
|
-
} & framer_motion.MotionProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
134
|
+
spotlightColor?: string;
|
|
135
|
+
}
|
|
136
|
+
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
342
137
|
declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
343
138
|
declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
344
139
|
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
345
140
|
declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
346
141
|
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
347
142
|
|
|
143
|
+
declare const GlassCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
144
|
+
declare const GlowCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
145
|
+
declare const GradientCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
146
|
+
declare const HoverCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
147
|
+
declare const SpotlightCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
148
|
+
|
|
348
149
|
declare const inputVariants: (props?: ({
|
|
349
|
-
variant?: "default" | "glass" | "underline" | "
|
|
150
|
+
variant?: "default" | "glass" | "gradient" | "underline" | "otp" | "tags" | "autocomplete" | null | undefined;
|
|
350
151
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
351
|
-
|
|
152
|
+
/**
|
|
153
|
+
* Props for the Input component
|
|
154
|
+
*/
|
|
155
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "defaultValue">, VariantProps<typeof inputVariants> {
|
|
156
|
+
/**
|
|
157
|
+
* Enable entrance spring animation
|
|
158
|
+
* @default true
|
|
159
|
+
*/
|
|
352
160
|
animate?: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Current text value of the input
|
|
163
|
+
*/
|
|
164
|
+
value?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Initial default value for uncontrolled inputs
|
|
167
|
+
*/
|
|
168
|
+
defaultValue?: string | number;
|
|
169
|
+
/**
|
|
170
|
+
* Callback fired when value changes
|
|
171
|
+
*/
|
|
172
|
+
onChange?: (value: string) => void;
|
|
173
|
+
/**
|
|
174
|
+
* Value for OTP inputs (should be length 6 string)
|
|
175
|
+
*/
|
|
176
|
+
otpValue?: string;
|
|
177
|
+
/**
|
|
178
|
+
* Callback fired when OTP string changes
|
|
179
|
+
*/
|
|
180
|
+
onOtpChange?: (value: string) => void;
|
|
181
|
+
/**
|
|
182
|
+
* Current active list of tag strings for the `tags` variant
|
|
183
|
+
*/
|
|
184
|
+
tags?: string[];
|
|
185
|
+
/**
|
|
186
|
+
* Callback fired when the tags list updates
|
|
187
|
+
*/
|
|
188
|
+
onTagsChange?: (tags: string[]) => void;
|
|
189
|
+
/**
|
|
190
|
+
* Suggestions list strings for the `autocomplete` variant
|
|
191
|
+
*/
|
|
192
|
+
suggestions?: string[];
|
|
193
|
+
/**
|
|
194
|
+
* Callback fired when a suggestion item is clicked
|
|
195
|
+
*/
|
|
196
|
+
onSuggestionSelect?: (value: string) => void;
|
|
197
|
+
/**
|
|
198
|
+
* Label displayed above the input field
|
|
199
|
+
* @example <Input label="Email address" />
|
|
200
|
+
*/
|
|
201
|
+
label?: string;
|
|
202
|
+
/**
|
|
203
|
+
* Helper text displayed below the input field
|
|
204
|
+
* @example <Input description="We'll never share your email" />
|
|
205
|
+
*/
|
|
206
|
+
description?: string;
|
|
207
|
+
/**
|
|
208
|
+
* Validation error message — shown in red below the field
|
|
209
|
+
* @example <Input error={errors.email?.message} />
|
|
210
|
+
*/
|
|
211
|
+
error?: string;
|
|
353
212
|
}
|
|
354
213
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
355
214
|
|
|
215
|
+
declare const SearchInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
216
|
+
declare const PasswordInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
217
|
+
declare const GlassInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
218
|
+
declare const GradientInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
219
|
+
declare const UnderlineInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
220
|
+
declare const PillInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
221
|
+
interface ErrorInputProps extends InputProps {
|
|
222
|
+
errorMessage?: string;
|
|
223
|
+
}
|
|
224
|
+
declare const ErrorInput: React$1.ForwardRefExoticComponent<ErrorInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
225
|
+
declare const SuccessInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
226
|
+
declare const GhostInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
227
|
+
declare const NeumorphicInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
228
|
+
interface IconInputProps extends InputProps {
|
|
229
|
+
icon?: React$1.ReactNode;
|
|
230
|
+
}
|
|
231
|
+
declare const IconInputLeft: React$1.ForwardRefExoticComponent<IconInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
232
|
+
declare const IconInputRight: React$1.ForwardRefExoticComponent<IconInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
233
|
+
declare const FloatingLabelInput: React$1.ForwardRefExoticComponent<InputProps & {
|
|
234
|
+
label: string;
|
|
235
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
236
|
+
declare const MinimalDropInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
237
|
+
|
|
356
238
|
declare const badgeVariants: (props?: ({
|
|
357
|
-
variant?: "default" | "secondary" | "destructive" | "outline" | "neon" | "gradient" | "success" | null | undefined;
|
|
239
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "neon" | "gradient" | "success" | "warning" | "info" | null | undefined;
|
|
358
240
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
359
241
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
360
242
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
361
243
|
/**
|
|
362
|
-
*
|
|
363
|
-
* @default
|
|
244
|
+
* Описание для pulse
|
|
245
|
+
* @default undefined
|
|
364
246
|
*/
|
|
365
247
|
pulse?: boolean;
|
|
366
248
|
/**
|
|
367
|
-
*
|
|
368
|
-
* @default
|
|
249
|
+
* Описание для dot
|
|
250
|
+
* @default undefined
|
|
369
251
|
*/
|
|
370
252
|
dot?: boolean;
|
|
253
|
+
/**
|
|
254
|
+
* Описание для text
|
|
255
|
+
* @default undefined
|
|
256
|
+
*/
|
|
257
|
+
text?: string;
|
|
371
258
|
}
|
|
372
|
-
declare function Badge({ className, variant, size, pulse, dot, children, ...props }: BadgeProps):
|
|
259
|
+
declare function Badge({ className, variant, size, pulse, dot, children, text, ...props }: BadgeProps): React$1.JSX.Element;
|
|
373
260
|
|
|
374
261
|
declare const avatarVariants: (props?: ({
|
|
375
262
|
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
376
|
-
variant?: "default" | "
|
|
263
|
+
variant?: "default" | "glass" | "gradient" | "glow" | null | undefined;
|
|
377
264
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
378
265
|
interface AvatarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof avatarVariants> {
|
|
266
|
+
/**
|
|
267
|
+
* Описание для status
|
|
268
|
+
* @default undefined
|
|
269
|
+
*/
|
|
379
270
|
status?: "online" | "offline" | "away" | "busy";
|
|
380
271
|
}
|
|
381
272
|
declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -383,153 +274,92 @@ interface AvatarImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
|
|
|
383
274
|
}
|
|
384
275
|
declare const AvatarImage: React$1.ForwardRefExoticComponent<AvatarImageProps & React$1.RefAttributes<HTMLImageElement>>;
|
|
385
276
|
declare const AvatarFallback: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
277
|
+
declare const GlowAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
278
|
+
declare const StatusAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
279
|
+
declare const GlassAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
280
|
+
declare const SquareAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
281
|
+
declare const HexagonAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
282
|
+
declare const SquircleAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
283
|
+
declare const GradientRingAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
284
|
+
declare const InitialsAvatar: ({ fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
285
|
+
declare const InitialsGradientAvatar: ({ fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
286
|
+
declare const OutlineAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
287
|
+
declare const HoverExpandAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
288
|
+
declare const PulseAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
289
|
+
declare const StackAvatar: ({ avatars, urls, max, className }: {
|
|
290
|
+
avatars?: Array<{
|
|
291
|
+
src?: string;
|
|
292
|
+
fallback: string;
|
|
293
|
+
}>;
|
|
294
|
+
urls?: string[];
|
|
295
|
+
max?: number;
|
|
296
|
+
className?: string;
|
|
297
|
+
}) => React$1.JSX.Element;
|
|
298
|
+
declare const DottedAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
299
|
+
declare const ShadowAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
300
|
+
declare const PolymorphAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
|
|
301
|
+
declare const TooltipAvatar: ({ src, fallback, size, status, tooltipText, className }: any) => React$1.JSX.Element;
|
|
302
|
+
declare const AnimatedBorderAvatar: ({ src, fallback }: any) => React$1.JSX.Element;
|
|
386
303
|
|
|
387
|
-
declare const
|
|
388
|
-
declare const
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
interface
|
|
392
|
-
label: React$1.ReactNode;
|
|
393
|
-
value: string;
|
|
394
|
-
content: React$1.ReactNode;
|
|
304
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
305
|
+
declare const tabsListVariants: (props?: ({
|
|
306
|
+
variant?: "default" | "underline" | "pill" | null | undefined;
|
|
307
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
308
|
+
interface TabsListProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.List>, VariantProps<typeof tabsListVariants> {
|
|
395
309
|
}
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
/**
|
|
402
|
-
* The default active tab value
|
|
403
|
-
*/
|
|
404
|
-
defaultValue?: string;
|
|
405
|
-
/**
|
|
406
|
-
* The variant of the tabs
|
|
407
|
-
* @default "default"
|
|
408
|
-
*/
|
|
409
|
-
variant?: "default" | "glass" | "outline";
|
|
410
|
-
/**
|
|
411
|
-
* Additional class names
|
|
412
|
-
*/
|
|
413
|
-
className?: string;
|
|
414
|
-
/**
|
|
415
|
-
* Children for compound usage
|
|
416
|
-
*/
|
|
417
|
-
children?: React$1.ReactNode;
|
|
310
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
311
|
+
declare const tabsTriggerVariants: (props?: ({
|
|
312
|
+
variant?: "default" | "underline" | "pill" | null | undefined;
|
|
313
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
314
|
+
interface TabsTriggerProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>, VariantProps<typeof tabsTriggerVariants> {
|
|
418
315
|
}
|
|
419
|
-
declare
|
|
316
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
317
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
420
318
|
|
|
421
|
-
declare const
|
|
422
|
-
|
|
423
|
-
|
|
319
|
+
declare const accordionVariants: (props?: ({
|
|
320
|
+
variant?: "default" | "outline" | "neon" | "glass" | null | undefined;
|
|
321
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
322
|
+
type AccordionProps = React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root> & VariantProps<typeof accordionVariants>;
|
|
323
|
+
declare const Accordion: React$1.ForwardRefExoticComponent<AccordionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
324
|
+
declare const accordionItemVariants: (props?: ({
|
|
325
|
+
variant?: "default" | "neon" | null | undefined;
|
|
326
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
327
|
+
type AccordionItemProps = React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> & VariantProps<typeof accordionItemVariants>;
|
|
328
|
+
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
329
|
+
variant?: "default" | "neon" | null | undefined;
|
|
330
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
331
|
+
interface AccordionTriggerProps extends React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> {
|
|
332
|
+
iconType?: "chevron" | "plus";
|
|
333
|
+
iconClassName?: string;
|
|
334
|
+
variant?: "default" | "neon";
|
|
335
|
+
}
|
|
336
|
+
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
424
337
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
425
|
-
interface AccordionItemData {
|
|
426
|
-
title: React$1.ReactNode;
|
|
427
|
-
content: React$1.ReactNode;
|
|
428
|
-
}
|
|
429
|
-
interface AccordionProps$1 {
|
|
430
|
-
/**
|
|
431
|
-
* The array of accordion items
|
|
432
|
-
*/
|
|
433
|
-
items: AccordionItemData[];
|
|
434
|
-
/**
|
|
435
|
-
* The type of accordion
|
|
436
|
-
* @default "single"
|
|
437
|
-
*/
|
|
438
|
-
type?: "single" | "multiple";
|
|
439
|
-
/**
|
|
440
|
-
* The variant of the accordion
|
|
441
|
-
* @default "default"
|
|
442
|
-
*/
|
|
443
|
-
variant?: "default" | "glass" | "outline";
|
|
444
|
-
/**
|
|
445
|
-
* Additional class names
|
|
446
|
-
*/
|
|
447
|
-
className?: string;
|
|
448
|
-
/**
|
|
449
|
-
* Whether the items can be collapsed (only for type="single")
|
|
450
|
-
* @default true
|
|
451
|
-
*/
|
|
452
|
-
collapsible?: boolean;
|
|
453
|
-
}
|
|
454
|
-
declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps$1): react_jsx_runtime.JSX.Element;
|
|
455
338
|
|
|
456
339
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
457
340
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
458
341
|
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
459
342
|
declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
460
343
|
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
461
|
-
declare const
|
|
344
|
+
declare const dialogContentVariants: (props?: ({
|
|
345
|
+
variant?: "default" | "destructive" | "glass" | "success" | "fullscreen" | "drawer" | null | undefined;
|
|
346
|
+
size?: "sm" | "lg" | "xl" | "md" | "2xl" | "full" | null | undefined;
|
|
347
|
+
scrollable?: boolean | null | undefined;
|
|
348
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
349
|
+
interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof dialogContentVariants> {
|
|
350
|
+
}
|
|
351
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
462
352
|
declare const DialogHeader: {
|
|
463
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
353
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
464
354
|
displayName: string;
|
|
465
355
|
};
|
|
466
356
|
declare const DialogFooter: {
|
|
467
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
357
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
468
358
|
displayName: string;
|
|
469
359
|
};
|
|
470
360
|
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
471
361
|
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
472
362
|
|
|
473
|
-
interface ModalProps {
|
|
474
|
-
/**
|
|
475
|
-
* The title of the modal
|
|
476
|
-
*/
|
|
477
|
-
title?: React$1.ReactNode;
|
|
478
|
-
/**
|
|
479
|
-
* The description of the modal
|
|
480
|
-
*/
|
|
481
|
-
description?: React$1.ReactNode;
|
|
482
|
-
/**
|
|
483
|
-
* The content of the modal
|
|
484
|
-
*/
|
|
485
|
-
children?: React$1.ReactNode;
|
|
486
|
-
/**
|
|
487
|
-
* The trigger element to open the modal
|
|
488
|
-
*/
|
|
489
|
-
trigger?: React$1.ReactNode;
|
|
490
|
-
/**
|
|
491
|
-
* Callback function called when the confirm button is clicked
|
|
492
|
-
*/
|
|
493
|
-
onConfirm?: () => void;
|
|
494
|
-
/**
|
|
495
|
-
* Callback function called when the cancel button is clicked
|
|
496
|
-
*/
|
|
497
|
-
onCancel?: () => void;
|
|
498
|
-
/**
|
|
499
|
-
* The text for the confirm button
|
|
500
|
-
* @default "Confirm"
|
|
501
|
-
*/
|
|
502
|
-
confirmText?: string;
|
|
503
|
-
/**
|
|
504
|
-
* The text for the cancel button
|
|
505
|
-
* @default "Cancel"
|
|
506
|
-
*/
|
|
507
|
-
cancelText?: string;
|
|
508
|
-
/**
|
|
509
|
-
* Whether the modal is open
|
|
510
|
-
*/
|
|
511
|
-
isOpen?: boolean;
|
|
512
|
-
/**
|
|
513
|
-
* Callback function called when the open state changes
|
|
514
|
-
*/
|
|
515
|
-
onOpenChange?: (open: boolean) => void;
|
|
516
|
-
/**
|
|
517
|
-
* The variant of the modal
|
|
518
|
-
* @default "default"
|
|
519
|
-
*/
|
|
520
|
-
variant?: "default" | "glass" | "destructive" | "success" | "fullscreen" | "drawer";
|
|
521
|
-
/**
|
|
522
|
-
* Whether the content is scrollable
|
|
523
|
-
* @default false
|
|
524
|
-
*/
|
|
525
|
-
scrollable?: boolean;
|
|
526
|
-
/**
|
|
527
|
-
* Additional className for the dialog content
|
|
528
|
-
*/
|
|
529
|
-
className?: string;
|
|
530
|
-
}
|
|
531
|
-
declare function Modal({ title, description, children, trigger, onConfirm, onCancel, confirmText, cancelText, isOpen, onOpenChange, variant, scrollable, className, }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
532
|
-
|
|
533
363
|
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
534
364
|
declare const TooltipRoot: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
535
365
|
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -553,12 +383,39 @@ interface TooltipProps {
|
|
|
553
383
|
* @default 700
|
|
554
384
|
*/
|
|
555
385
|
delay?: number;
|
|
386
|
+
/**
|
|
387
|
+
* The visual theme style of the tooltip content
|
|
388
|
+
* @default "default"
|
|
389
|
+
*/
|
|
390
|
+
variant?: "default" | "dark" | "light";
|
|
391
|
+
}
|
|
392
|
+
declare function Tooltip({ content, children, side, delay, variant, }: TooltipProps): React$1.JSX.Element;
|
|
393
|
+
|
|
394
|
+
interface SimpleTooltipProps {
|
|
395
|
+
content: React$1.ReactNode;
|
|
396
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
397
|
+
children: React$1.ReactNode;
|
|
398
|
+
delay?: number;
|
|
399
|
+
variant?: "default" | "dark" | "light";
|
|
400
|
+
}
|
|
401
|
+
declare function SimpleTooltip({ content, position, children, delay, variant, }: SimpleTooltipProps): React$1.JSX.Element;
|
|
402
|
+
interface RichTooltipProps {
|
|
403
|
+
content: React$1.ReactNode;
|
|
404
|
+
children: React$1.ReactNode;
|
|
405
|
+
delay?: number;
|
|
556
406
|
}
|
|
557
|
-
declare function
|
|
407
|
+
declare function RichTooltip({ content, children, delay, }: RichTooltipProps): React$1.JSX.Element;
|
|
558
408
|
|
|
559
409
|
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
560
410
|
|
|
561
|
-
|
|
411
|
+
interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> {
|
|
412
|
+
/**
|
|
413
|
+
* The visual variant of the switch
|
|
414
|
+
* @default "default"
|
|
415
|
+
*/
|
|
416
|
+
variant?: "default" | "neon";
|
|
417
|
+
}
|
|
418
|
+
declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
562
419
|
|
|
563
420
|
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
564
421
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -568,44 +425,107 @@ declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
|
|
|
568
425
|
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
569
426
|
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
570
427
|
|
|
571
|
-
declare const alertVariants
|
|
572
|
-
variant?: "default" | "destructive" | "glass" | "success" | "warning" | "info" | null | undefined;
|
|
428
|
+
declare const alertVariants: (props?: ({
|
|
429
|
+
variant?: "default" | "destructive" | "neon" | "glass" | "gradient" | "banner" | "success" | "warning" | "info" | "floating" | "minimal" | "cyberpunk" | null | undefined;
|
|
573
430
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
574
|
-
interface AlertProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants
|
|
431
|
+
interface AlertProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants> {
|
|
575
432
|
/**
|
|
576
|
-
*
|
|
577
|
-
* @default
|
|
433
|
+
* Описание для animate
|
|
434
|
+
* @default undefined
|
|
578
435
|
*/
|
|
579
436
|
animate?: boolean;
|
|
580
437
|
/**
|
|
581
|
-
*
|
|
438
|
+
* Описание для title
|
|
439
|
+
* @default undefined
|
|
582
440
|
*/
|
|
583
441
|
title?: React$1.ReactNode;
|
|
584
442
|
/**
|
|
585
|
-
*
|
|
443
|
+
* Описание для description
|
|
444
|
+
* @default undefined
|
|
586
445
|
*/
|
|
587
446
|
description?: React$1.ReactNode;
|
|
588
447
|
/**
|
|
589
|
-
*
|
|
448
|
+
* Описание для icon
|
|
449
|
+
* @default undefined
|
|
590
450
|
*/
|
|
591
451
|
icon?: React$1.ReactNode;
|
|
592
452
|
/**
|
|
593
|
-
*
|
|
453
|
+
* Описание для dismissible
|
|
454
|
+
* @default undefined
|
|
594
455
|
*/
|
|
595
456
|
dismissible?: boolean;
|
|
596
457
|
/**
|
|
597
|
-
*
|
|
458
|
+
* Описание для onDismiss
|
|
459
|
+
* @default undefined
|
|
598
460
|
*/
|
|
599
461
|
onDismiss?: () => void;
|
|
462
|
+
/**
|
|
463
|
+
* Описание для actionText
|
|
464
|
+
* @default undefined
|
|
465
|
+
*/
|
|
466
|
+
actionText?: string;
|
|
467
|
+
/**
|
|
468
|
+
* Описание для onAction
|
|
469
|
+
* @default undefined
|
|
470
|
+
*/
|
|
471
|
+
onAction?: () => void;
|
|
600
472
|
}
|
|
601
473
|
declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
602
474
|
declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
603
475
|
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
476
|
+
declare const ToastAlertWrapper: ({ children, className, title, description, time }: any) => React$1.JSX.Element;
|
|
477
|
+
declare const CookieAlert: ({ onAccept, onDecline }: {
|
|
478
|
+
onAccept?: () => void;
|
|
479
|
+
onDecline?: () => void;
|
|
480
|
+
}) => React$1.JSX.Element | null;
|
|
481
|
+
declare const OfflineBanner: () => React$1.JSX.Element;
|
|
482
|
+
declare const RateLimitAlert: () => React$1.JSX.Element;
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* @deprecated Use the unified `<Alert variant="cyberpunk">` instead.
|
|
486
|
+
*/
|
|
487
|
+
declare const CyberAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
488
|
+
/**
|
|
489
|
+
* @deprecated Use `<Alert variant="success">` or `<Alert variant="info">` instead.
|
|
490
|
+
*/
|
|
491
|
+
declare const SoftAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
492
|
+
/**
|
|
493
|
+
* @deprecated Use `<Alert variant="minimal">` instead.
|
|
494
|
+
*/
|
|
495
|
+
declare const MinimalAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
496
|
+
/**
|
|
497
|
+
* @deprecated Use `<Alert className="border-l-4 ...">` instead.
|
|
498
|
+
*/
|
|
499
|
+
declare const LeftBorderAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
500
|
+
/**
|
|
501
|
+
* @deprecated Use custom styled layouts or standard elements instead.
|
|
502
|
+
*/
|
|
503
|
+
declare const IconTopAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
504
|
+
/**
|
|
505
|
+
* @deprecated Use standard tailwind background colors on unified `<Alert>` instead.
|
|
506
|
+
*/
|
|
507
|
+
declare const SolidAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
508
|
+
/**
|
|
509
|
+
* @deprecated Use `<Alert variant="banner">` instead.
|
|
510
|
+
*/
|
|
511
|
+
declare const BannerAlert: ({ message, variant, ...props }: any) => React$1.JSX.Element;
|
|
512
|
+
/**
|
|
513
|
+
* @deprecated Use `<Alert variant="neon">` instead.
|
|
514
|
+
*/
|
|
515
|
+
declare const NeonAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
516
|
+
/**
|
|
517
|
+
* @deprecated Use `<Alert variant="glass">` instead.
|
|
518
|
+
*/
|
|
519
|
+
declare const GlassAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
|
|
520
|
+
/**
|
|
521
|
+
* @deprecated Use `<Alert dismissible={true}>` instead.
|
|
522
|
+
*/
|
|
523
|
+
declare const DismissibleAlert: ({ variant, title, description, ...props }: any) => React$1.JSX.Element;
|
|
604
524
|
|
|
605
525
|
type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
606
|
-
declare function Toaster({ ...props }: ToasterProps):
|
|
526
|
+
declare function Toaster({ ...props }: ToasterProps): React$1.JSX.Element;
|
|
607
527
|
|
|
608
|
-
interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
528
|
+
interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
609
529
|
/**
|
|
610
530
|
* The width of the skeleton
|
|
611
531
|
*/
|
|
@@ -630,9 +550,9 @@ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
630
550
|
*/
|
|
631
551
|
animated?: boolean;
|
|
632
552
|
}
|
|
633
|
-
declare function Skeleton({ className, width, height, variant, count, animated, style, ...props }: SkeletonProps):
|
|
553
|
+
declare function Skeleton({ className, width, height, variant, count, animated, style, ...props }: SkeletonProps): React$1.JSX.Element;
|
|
634
554
|
|
|
635
|
-
interface ProgressProps extends React$1.
|
|
555
|
+
interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
|
|
636
556
|
/**
|
|
637
557
|
* The current value of the progress bar
|
|
638
558
|
* @default 0
|
|
@@ -653,13 +573,18 @@ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
653
573
|
* @default false
|
|
654
574
|
*/
|
|
655
575
|
showLabel?: boolean;
|
|
576
|
+
/**
|
|
577
|
+
* Custom label text shown next to the percentage
|
|
578
|
+
* @default "Progress"
|
|
579
|
+
*/
|
|
580
|
+
progressLabel?: string;
|
|
656
581
|
/**
|
|
657
582
|
* The size of the progress bar
|
|
658
583
|
* @default "default"
|
|
659
584
|
*/
|
|
660
585
|
size?: "default" | "sm" | "lg";
|
|
661
586
|
/**
|
|
662
|
-
* Whether the progress bar
|
|
587
|
+
* Whether the progress bar fill animates smoothly
|
|
663
588
|
* @default true
|
|
664
589
|
*/
|
|
665
590
|
animated?: boolean;
|
|
@@ -671,7 +596,17 @@ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
671
596
|
}
|
|
672
597
|
declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
673
598
|
|
|
674
|
-
interface
|
|
599
|
+
interface CircularProgressCardProps {
|
|
600
|
+
value?: number;
|
|
601
|
+
max?: number;
|
|
602
|
+
title?: string;
|
|
603
|
+
label?: string;
|
|
604
|
+
unit?: string;
|
|
605
|
+
className?: string;
|
|
606
|
+
}
|
|
607
|
+
declare const CircularProgressCard: ({ value, max, title, label, unit, className, }: CircularProgressCardProps) => React$1.JSX.Element;
|
|
608
|
+
|
|
609
|
+
interface SliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "value" | "defaultValue" | "onChange"> {
|
|
675
610
|
/**
|
|
676
611
|
* The minimum value
|
|
677
612
|
* @default 0
|
|
@@ -712,1006 +647,1424 @@ interface SliderProps {
|
|
|
712
647
|
}
|
|
713
648
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
714
649
|
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
650
|
+
interface RangeSliderInputProps {
|
|
651
|
+
defaultValue?: number[];
|
|
652
|
+
min?: number;
|
|
653
|
+
max?: number;
|
|
654
|
+
step?: number;
|
|
718
655
|
className?: string;
|
|
656
|
+
onChange?: (value: number[]) => void;
|
|
719
657
|
}
|
|
720
|
-
|
|
721
|
-
/** Color of the glow behind the button */
|
|
722
|
-
glowColor?: string;
|
|
723
|
-
}
|
|
724
|
-
declare const GlowButton: React$1.ForwardRefExoticComponent<GlowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
725
|
-
declare const ShinyButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
726
|
-
declare const GradientButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
727
|
-
declare const GlassButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
728
|
-
|
|
729
|
-
declare const alertVariants: {
|
|
730
|
-
info: {
|
|
731
|
-
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
732
|
-
color: string;
|
|
733
|
-
gradient: string;
|
|
734
|
-
};
|
|
735
|
-
warning: {
|
|
736
|
-
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
737
|
-
color: string;
|
|
738
|
-
gradient: string;
|
|
739
|
-
};
|
|
740
|
-
success: {
|
|
741
|
-
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
742
|
-
color: string;
|
|
743
|
-
gradient: string;
|
|
744
|
-
};
|
|
745
|
-
error: {
|
|
746
|
-
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
747
|
-
color: string;
|
|
748
|
-
gradient: string;
|
|
749
|
-
};
|
|
750
|
-
};
|
|
751
|
-
interface SpecialAlertProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
752
|
-
variant?: keyof typeof alertVariants;
|
|
753
|
-
title?: string;
|
|
754
|
-
description?: string;
|
|
755
|
-
}
|
|
756
|
-
declare function GlassAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
|
|
757
|
-
declare function GradientAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
|
|
758
|
-
declare function DismissibleAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
|
|
759
|
-
|
|
760
|
-
declare const SearchInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
761
|
-
declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
762
|
-
declare const GlassInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
763
|
-
declare const GradientInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
764
|
-
|
|
765
|
-
declare function GlassCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
|
|
766
|
-
declare function GlowCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
|
|
767
|
-
declare function GradientCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
|
|
768
|
-
declare function HoverCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
|
|
658
|
+
declare function RangeSliderInput({ defaultValue, min, max, step, className, onChange, }: RangeSliderInputProps): React$1.JSX.Element;
|
|
769
659
|
|
|
770
|
-
|
|
771
|
-
interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
772
|
-
limit?: number;
|
|
773
|
-
items: {
|
|
774
|
-
src?: string;
|
|
775
|
-
fallback: string;
|
|
776
|
-
}[];
|
|
777
|
-
}
|
|
778
|
-
declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
|
|
779
|
-
interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
780
|
-
title: string;
|
|
781
|
-
value: string;
|
|
782
|
-
description?: string;
|
|
783
|
-
icon?: LucideIcon;
|
|
784
|
-
trend?: {
|
|
785
|
-
value: string;
|
|
786
|
-
positive: boolean;
|
|
787
|
-
};
|
|
788
|
-
}
|
|
789
|
-
declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
|
|
790
|
-
interface TimelineItem {
|
|
791
|
-
title: string;
|
|
792
|
-
description: string;
|
|
793
|
-
time: string;
|
|
794
|
-
status?: "completed" | "current" | "upcoming";
|
|
795
|
-
}
|
|
796
|
-
declare function Timeline({ items, className }: {
|
|
797
|
-
items: TimelineItem[];
|
|
798
|
-
className?: string;
|
|
799
|
-
}): react_jsx_runtime.JSX.Element;
|
|
800
|
-
interface CodeBlockProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
801
|
-
code: string;
|
|
802
|
-
language?: string;
|
|
803
|
-
}
|
|
804
|
-
declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): react_jsx_runtime.JSX.Element;
|
|
805
|
-
interface PricingCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
806
|
-
title: string;
|
|
807
|
-
price: string;
|
|
808
|
-
description: string;
|
|
809
|
-
features: string[];
|
|
810
|
-
buttonText?: string;
|
|
811
|
-
popular?: boolean;
|
|
812
|
-
}
|
|
813
|
-
declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): react_jsx_runtime.JSX.Element;
|
|
814
|
-
interface DividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
660
|
+
interface LoaderProps {
|
|
815
661
|
/**
|
|
816
|
-
*
|
|
817
|
-
* @default
|
|
662
|
+
* Описание для variant
|
|
663
|
+
* @default undefined
|
|
818
664
|
*/
|
|
819
|
-
|
|
665
|
+
variant?: "dots" | "ring" | "bars" | "pulse" | "spinner" | "wifi" | "hourglass" | "heartbeat" | "box" | "clock" | "battery" | "square-spin" | "text" | "progress-ring" | "skeleton-card" | "shimmer-block";
|
|
666
|
+
/**
|
|
667
|
+
* Описание для size
|
|
668
|
+
* @default undefined
|
|
669
|
+
*/
|
|
670
|
+
size?: "sm" | "md" | "lg" | number;
|
|
671
|
+
/**
|
|
672
|
+
* Описание для color
|
|
673
|
+
* @default undefined
|
|
674
|
+
*/
|
|
675
|
+
color?: string;
|
|
676
|
+
/**
|
|
677
|
+
* Описание для text
|
|
678
|
+
* @default undefined
|
|
679
|
+
*/
|
|
680
|
+
text?: string;
|
|
681
|
+
/**
|
|
682
|
+
* Описание для progress
|
|
683
|
+
* @default undefined
|
|
684
|
+
*/
|
|
685
|
+
progress?: number;
|
|
686
|
+
/**
|
|
687
|
+
* Описание для strokeWidth
|
|
688
|
+
* @default undefined
|
|
689
|
+
*/
|
|
690
|
+
strokeWidth?: number;
|
|
691
|
+
/**
|
|
692
|
+
* Описание для className
|
|
693
|
+
* @default undefined
|
|
694
|
+
*/
|
|
695
|
+
className?: string;
|
|
820
696
|
}
|
|
821
|
-
declare
|
|
822
|
-
|
|
823
|
-
interface BreadcrumbProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
824
|
-
items: {
|
|
825
|
-
label: string;
|
|
826
|
-
href?: string;
|
|
827
|
-
}[];
|
|
828
|
-
separator?: React$1.ReactNode;
|
|
829
|
-
}
|
|
830
|
-
declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
831
|
-
interface PaginationProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
832
|
-
totalPages: number;
|
|
833
|
-
currentPage: number;
|
|
834
|
-
onPageChange?: (page: number) => void;
|
|
835
|
-
}
|
|
836
|
-
declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
837
|
-
interface Step {
|
|
838
|
-
title: string;
|
|
839
|
-
description?: string;
|
|
840
|
-
status: "complete" | "current" | "upcoming";
|
|
841
|
-
}
|
|
842
|
-
declare function Steps({ items, className }: {
|
|
843
|
-
items: Step[];
|
|
697
|
+
declare const WifiLoader: ({ className, color, size }: {
|
|
844
698
|
className?: string;
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
declare
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
declare
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
declare
|
|
699
|
+
color?: string;
|
|
700
|
+
size?: "sm" | "md" | "lg" | number;
|
|
701
|
+
}) => React$1.JSX.Element;
|
|
702
|
+
declare const HourglassLoader: ({ className, color, size }: {
|
|
703
|
+
className?: string;
|
|
704
|
+
color?: string;
|
|
705
|
+
size?: "sm" | "md" | "lg" | number;
|
|
706
|
+
}) => React$1.JSX.Element;
|
|
707
|
+
declare const HeartbeatLoader: ({ className, color, size }: {
|
|
708
|
+
className?: string;
|
|
709
|
+
color?: string;
|
|
710
|
+
size?: "sm" | "md" | "lg" | number;
|
|
711
|
+
}) => React$1.JSX.Element;
|
|
712
|
+
declare const BoxLoader: ({ className, color, size }: {
|
|
713
|
+
className?: string;
|
|
714
|
+
color?: string;
|
|
715
|
+
size?: "sm" | "md" | "lg" | number;
|
|
716
|
+
}) => React$1.JSX.Element;
|
|
717
|
+
declare const BouncingBalls: ({ className, color, size }: {
|
|
718
|
+
className?: string;
|
|
719
|
+
color?: string;
|
|
720
|
+
size?: "sm" | "md" | "lg" | number;
|
|
721
|
+
}) => React$1.JSX.Element;
|
|
722
|
+
declare const GlowRingLoader: ({ className, color, size }: {
|
|
723
|
+
className?: string;
|
|
724
|
+
color?: string;
|
|
725
|
+
size?: "sm" | "md" | "lg" | number;
|
|
726
|
+
}) => React$1.JSX.Element;
|
|
727
|
+
declare const LineScaleLoader: ({ className, color, size }: {
|
|
728
|
+
className?: string;
|
|
729
|
+
color?: string;
|
|
730
|
+
size?: "sm" | "md" | "lg" | number;
|
|
731
|
+
}) => React$1.JSX.Element;
|
|
732
|
+
declare const ClockLoader: ({ className, color, size }: {
|
|
733
|
+
className?: string;
|
|
734
|
+
color?: string;
|
|
735
|
+
size?: "sm" | "md" | "lg" | number;
|
|
736
|
+
}) => React$1.JSX.Element;
|
|
737
|
+
declare const BatteryLoader: ({ className, color, size }: {
|
|
738
|
+
className?: string;
|
|
739
|
+
color?: string;
|
|
740
|
+
size?: "sm" | "md" | "lg" | number;
|
|
741
|
+
}) => React$1.JSX.Element;
|
|
742
|
+
declare const SquareSpinLoader: ({ className, color, size }: {
|
|
743
|
+
className?: string;
|
|
744
|
+
color?: string;
|
|
745
|
+
size?: "sm" | "md" | "lg" | number;
|
|
746
|
+
}) => React$1.JSX.Element;
|
|
747
|
+
declare function SpinnerLoader({ className, size, color }: {
|
|
864
748
|
className?: string;
|
|
865
749
|
size?: number;
|
|
866
|
-
|
|
867
|
-
|
|
750
|
+
color?: string;
|
|
751
|
+
}): React$1.JSX.Element;
|
|
752
|
+
declare function DotsLoader({ className, color, size }: {
|
|
868
753
|
className?: string;
|
|
869
|
-
|
|
870
|
-
|
|
754
|
+
color?: string;
|
|
755
|
+
size?: "sm" | "md" | "lg" | number;
|
|
756
|
+
}): React$1.JSX.Element;
|
|
757
|
+
declare function PulseLoader({ className, color, size }: {
|
|
871
758
|
className?: string;
|
|
872
|
-
|
|
873
|
-
|
|
759
|
+
color?: string;
|
|
760
|
+
size?: "sm" | "md" | "lg" | number;
|
|
761
|
+
}): React$1.JSX.Element;
|
|
762
|
+
declare function BarLoader({ className, color, size }: {
|
|
874
763
|
className?: string;
|
|
875
|
-
|
|
876
|
-
|
|
764
|
+
color?: string;
|
|
765
|
+
size?: "sm" | "md" | "lg" | number;
|
|
766
|
+
}): React$1.JSX.Element;
|
|
767
|
+
declare function CircleLoader({ className, size, color }: {
|
|
877
768
|
className?: string;
|
|
878
769
|
size?: number;
|
|
879
|
-
|
|
880
|
-
|
|
770
|
+
color?: string;
|
|
771
|
+
}): React$1.JSX.Element;
|
|
772
|
+
declare function RingLoader({ className, color, size }: {
|
|
881
773
|
className?: string;
|
|
882
|
-
|
|
883
|
-
|
|
774
|
+
color?: string;
|
|
775
|
+
size?: "sm" | "md" | "lg" | number;
|
|
776
|
+
}): React$1.JSX.Element;
|
|
777
|
+
declare function TextLoader({ text, className, color }: {
|
|
884
778
|
text?: string;
|
|
885
779
|
className?: string;
|
|
886
|
-
|
|
887
|
-
|
|
780
|
+
color?: string;
|
|
781
|
+
}): React$1.JSX.Element;
|
|
782
|
+
declare function ProgressRing({ progress, size, strokeWidth, className, color }: {
|
|
888
783
|
progress?: number;
|
|
889
784
|
size?: number;
|
|
890
785
|
strokeWidth?: number;
|
|
891
786
|
className?: string;
|
|
892
|
-
|
|
787
|
+
color?: string;
|
|
788
|
+
}): React$1.JSX.Element;
|
|
893
789
|
declare function SkeletonCard({ className }: {
|
|
894
790
|
className?: string;
|
|
895
|
-
}):
|
|
791
|
+
}): React$1.JSX.Element;
|
|
896
792
|
declare function ShimmerBlock({ className }: {
|
|
897
793
|
className?: string;
|
|
898
|
-
}):
|
|
794
|
+
}): React$1.JSX.Element;
|
|
795
|
+
declare function Loader({ variant, size, color, text, progress, strokeWidth, className, }: LoaderProps): React$1.JSX.Element;
|
|
899
796
|
|
|
900
|
-
interface
|
|
901
|
-
/**
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
/**
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
declare function GlassModal({ trigger, title, description, children, open, onOpenChange }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
915
|
-
interface AlertModalProps {
|
|
916
|
-
/** Trigger element that opens the modal */
|
|
917
|
-
trigger?: React$1.ReactNode;
|
|
918
|
-
/** Modal title */
|
|
919
|
-
title?: string;
|
|
920
|
-
/** Optional modal description */
|
|
921
|
-
description?: string;
|
|
922
|
-
/** Callback when user confirms the action */
|
|
923
|
-
onConfirm?: () => void;
|
|
924
|
-
/** Callback when user cancels the action */
|
|
925
|
-
onCancel?: () => void;
|
|
926
|
-
/** Confirm button text */
|
|
927
|
-
confirmText?: string;
|
|
928
|
-
/** Cancel button text */
|
|
929
|
-
cancelText?: string;
|
|
930
|
-
/** Modal body content */
|
|
931
|
-
children?: React$1.ReactNode;
|
|
932
|
-
/** Control open state externally */
|
|
933
|
-
open?: boolean;
|
|
934
|
-
/** Callback when open state changes */
|
|
935
|
-
onOpenChange?: (open: boolean) => void;
|
|
936
|
-
}
|
|
937
|
-
declare function AlertModal({ trigger, title, description, onConfirm, onCancel, confirmText, cancelText, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
|
|
938
|
-
interface SuccessModalProps {
|
|
939
|
-
/** Trigger element */
|
|
940
|
-
trigger?: React$1.ReactNode;
|
|
941
|
-
/** Modal title */
|
|
942
|
-
title?: string;
|
|
943
|
-
/** Optional description */
|
|
944
|
-
description?: string;
|
|
945
|
-
/** Modal body content */
|
|
946
|
-
children?: React$1.ReactNode;
|
|
947
|
-
/** Control open state externally */
|
|
948
|
-
open?: boolean;
|
|
949
|
-
/** Callback when open state changes */
|
|
950
|
-
onOpenChange?: (open: boolean) => void;
|
|
951
|
-
/** Confirm button text */
|
|
952
|
-
confirmText?: string;
|
|
953
|
-
/** Callback when user confirms */
|
|
954
|
-
onConfirm?: () => void;
|
|
955
|
-
}
|
|
956
|
-
declare function SuccessModal({ trigger, title, description, children, open, onOpenChange, confirmText, onConfirm }: SuccessModalProps): react_jsx_runtime.JSX.Element;
|
|
957
|
-
interface CommandPaletteModalProps {
|
|
958
|
-
/** Trigger element */
|
|
959
|
-
trigger: React$1.ReactNode;
|
|
960
|
-
/** Control open state externally */
|
|
961
|
-
open?: boolean;
|
|
962
|
-
/** Callback when open state changes */
|
|
963
|
-
onOpenChange?: (open: boolean) => void;
|
|
964
|
-
}
|
|
965
|
-
declare function CommandPaletteModal({ trigger, open, onOpenChange }: CommandPaletteModalProps): react_jsx_runtime.JSX.Element;
|
|
966
|
-
interface BottomSheetSimulatedProps {
|
|
967
|
-
/** Trigger element */
|
|
968
|
-
trigger: React$1.ReactNode;
|
|
969
|
-
/** Content inside the bottom sheet */
|
|
970
|
-
children?: React$1.ReactNode;
|
|
971
|
-
/** Control open state externally */
|
|
972
|
-
open?: boolean;
|
|
973
|
-
/** Callback when open state changes */
|
|
974
|
-
onOpenChange?: (open: boolean) => void;
|
|
797
|
+
interface BreadcrumbProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
798
|
+
/**
|
|
799
|
+
* Описание для items
|
|
800
|
+
* @default undefined
|
|
801
|
+
*/
|
|
802
|
+
items: {
|
|
803
|
+
label: string;
|
|
804
|
+
href?: string;
|
|
805
|
+
}[];
|
|
806
|
+
/**
|
|
807
|
+
* Описание для separator
|
|
808
|
+
* @default undefined
|
|
809
|
+
*/
|
|
810
|
+
separator?: React$1.ReactNode;
|
|
975
811
|
}
|
|
976
|
-
declare function
|
|
977
|
-
|
|
978
|
-
/**
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
declare function HexagonAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
|
|
994
|
-
declare function SquircleAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
|
|
995
|
-
declare function GradientRingAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
|
|
996
|
-
interface InitialsAvatarProps {
|
|
997
|
-
/** Additional CSS classes */
|
|
998
|
-
className?: string;
|
|
999
|
-
/** User's full name for generating initials */
|
|
1000
|
-
name?: string;
|
|
812
|
+
declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): React$1.JSX.Element;
|
|
813
|
+
interface PaginationProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
814
|
+
/**
|
|
815
|
+
* Описание для totalPages
|
|
816
|
+
* @default undefined
|
|
817
|
+
*/
|
|
818
|
+
totalPages: number;
|
|
819
|
+
/**
|
|
820
|
+
* Описание для currentPage
|
|
821
|
+
* @default undefined
|
|
822
|
+
*/
|
|
823
|
+
currentPage: number;
|
|
824
|
+
/**
|
|
825
|
+
* Описание для onPageChange
|
|
826
|
+
* @default undefined
|
|
827
|
+
*/
|
|
828
|
+
onPageChange?: (page: number) => void;
|
|
1001
829
|
}
|
|
1002
|
-
declare function
|
|
1003
|
-
|
|
1004
|
-
declare function HoverExpandAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
|
|
1005
|
-
|
|
1006
|
-
declare function GlowCheckbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox>): react_jsx_runtime.JSX.Element;
|
|
1007
|
-
declare function CircularCheckbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox>): react_jsx_runtime.JSX.Element;
|
|
1008
|
-
interface CardCheckboxProps {
|
|
1009
|
-
/** Title text for the card */
|
|
830
|
+
declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): React$1.JSX.Element;
|
|
831
|
+
interface Step {
|
|
1010
832
|
title: string;
|
|
1011
|
-
/** Optional description text */
|
|
1012
833
|
description?: string;
|
|
1013
|
-
|
|
1014
|
-
checked?: boolean;
|
|
1015
|
-
/** Callback when checked state changes */
|
|
1016
|
-
onCheckedChange?: (checked: boolean) => void;
|
|
1017
|
-
/** Additional CSS classes */
|
|
1018
|
-
className?: string;
|
|
1019
|
-
}
|
|
1020
|
-
declare function CardCheckbox({ title, description, checked, onCheckedChange, className }: CardCheckboxProps): react_jsx_runtime.JSX.Element;
|
|
1021
|
-
interface IconSwitchProps {
|
|
1022
|
-
/** Whether the switch is checked */
|
|
1023
|
-
checked?: boolean;
|
|
1024
|
-
/** Callback when checked state changes */
|
|
1025
|
-
onCheckedChange?: (checked: boolean) => void;
|
|
1026
|
-
/** Additional CSS classes */
|
|
1027
|
-
className?: string;
|
|
1028
|
-
/** Icon/emoji to show when ON */
|
|
1029
|
-
iconOn?: React$1.ReactNode;
|
|
1030
|
-
/** Icon/emoji to show when OFF */
|
|
1031
|
-
iconOff?: React$1.ReactNode;
|
|
1032
|
-
}
|
|
1033
|
-
declare function IconSwitch({ checked, onCheckedChange, className, iconOn, iconOff }: IconSwitchProps): react_jsx_runtime.JSX.Element;
|
|
1034
|
-
declare function ThickSwitch({ className, ...props }: React$1.ComponentProps<typeof Switch>): react_jsx_runtime.JSX.Element;
|
|
1035
|
-
declare function GlowSwitch({ className, ...props }: React$1.ComponentProps<typeof Switch>): react_jsx_runtime.JSX.Element;
|
|
1036
|
-
|
|
1037
|
-
/** Polymorphic "as" prop type for typography components */
|
|
1038
|
-
interface TypographyBaseProps {
|
|
1039
|
-
/** HTML element to render as */
|
|
1040
|
-
as?: React$1.ElementType;
|
|
1041
|
-
/** Additional CSS classes */
|
|
1042
|
-
className?: string;
|
|
1043
|
-
/** Content */
|
|
1044
|
-
children?: React$1.ReactNode;
|
|
1045
|
-
}
|
|
1046
|
-
declare function GradientText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
|
|
1047
|
-
interface GlitchTextProps {
|
|
1048
|
-
/** The text to display with glitch effect */
|
|
1049
|
-
text: string;
|
|
1050
|
-
/** HTML element to render as */
|
|
1051
|
-
as?: React$1.ElementType;
|
|
1052
|
-
/** Additional CSS classes */
|
|
1053
|
-
className?: string;
|
|
1054
|
-
}
|
|
1055
|
-
declare function GlitchText({ className, text, as: Component }: GlitchTextProps): react_jsx_runtime.JSX.Element;
|
|
1056
|
-
interface HighlightTextProps extends TypographyBaseProps {
|
|
1057
|
-
/** Background color class for the highlight */
|
|
1058
|
-
color?: string;
|
|
834
|
+
status: "complete" | "current" | "upcoming";
|
|
1059
835
|
}
|
|
1060
|
-
declare function
|
|
1061
|
-
|
|
1062
|
-
/** Text to reveal */
|
|
1063
|
-
text: string;
|
|
1064
|
-
/** Additional CSS classes */
|
|
836
|
+
declare function Steps({ items, className }: {
|
|
837
|
+
items: Step[];
|
|
1065
838
|
className?: string;
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
declare
|
|
1070
|
-
declare
|
|
1071
|
-
declare
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
declare
|
|
1077
|
-
|
|
1078
|
-
|
|
839
|
+
}): React$1.JSX.Element;
|
|
840
|
+
declare const SimpleNavbar: () => React$1.JSX.Element;
|
|
841
|
+
declare const CenteredNavbar: () => React$1.JSX.Element;
|
|
842
|
+
declare const GlassNavbar: () => React$1.JSX.Element;
|
|
843
|
+
declare const FloatingNavbar: () => React$1.JSX.Element;
|
|
844
|
+
declare const SidebarMenu: () => React$1.JSX.Element;
|
|
845
|
+
declare const BottomNav: () => React$1.JSX.Element;
|
|
846
|
+
declare const BreadcrumbTrail: () => React$1.JSX.Element;
|
|
847
|
+
declare const StepIndicator: ({ current }: any) => React$1.JSX.Element;
|
|
848
|
+
declare const TabMenu: () => React$1.JSX.Element;
|
|
849
|
+
declare const DropdownMenuVisual: () => React$1.JSX.Element;
|
|
850
|
+
|
|
851
|
+
interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
|
|
852
|
+
}
|
|
853
|
+
/**
|
|
854
|
+
* ScrollArea component built on top of Radix UI ScrollArea primitives.
|
|
855
|
+
*/
|
|
856
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
857
|
+
/**
|
|
858
|
+
* ScrollBar component for ScrollArea.
|
|
859
|
+
*/
|
|
860
|
+
declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1079
861
|
|
|
1080
862
|
interface BaseAnimationProps {
|
|
863
|
+
/**
|
|
864
|
+
* Описание для children
|
|
865
|
+
* @default undefined
|
|
866
|
+
*/
|
|
1081
867
|
children: React$1.ReactNode;
|
|
868
|
+
/**
|
|
869
|
+
* Описание для delay
|
|
870
|
+
* @default undefined
|
|
871
|
+
*/
|
|
1082
872
|
delay?: number;
|
|
873
|
+
/**
|
|
874
|
+
* Описание для duration
|
|
875
|
+
* @default undefined
|
|
876
|
+
*/
|
|
1083
877
|
duration?: number;
|
|
1084
878
|
}
|
|
1085
|
-
declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1086
|
-
declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1087
|
-
declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1088
|
-
declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1089
|
-
declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1090
|
-
declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1091
|
-
declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) =>
|
|
1092
|
-
declare const Flip: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
1093
|
-
declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
879
|
+
declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
880
|
+
declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
881
|
+
declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
882
|
+
declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
883
|
+
declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
884
|
+
declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
885
|
+
declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) => React$1.JSX.Element;
|
|
886
|
+
declare const Flip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
887
|
+
declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
1094
888
|
declare const PulseAnim: ({ children }: {
|
|
1095
889
|
children: React$1.ReactNode;
|
|
1096
|
-
}) =>
|
|
890
|
+
}) => React$1.JSX.Element;
|
|
1097
891
|
declare const Float: ({ children }: {
|
|
1098
892
|
children: React$1.ReactNode;
|
|
1099
|
-
}) =>
|
|
893
|
+
}) => React$1.JSX.Element;
|
|
1100
894
|
declare const WiggleHover: ({ children }: {
|
|
1101
895
|
children: React$1.ReactNode;
|
|
1102
|
-
}) =>
|
|
896
|
+
}) => React$1.JSX.Element;
|
|
1103
897
|
declare const Heartbeat: ({ children }: {
|
|
1104
898
|
children: React$1.ReactNode;
|
|
1105
|
-
}) =>
|
|
1106
|
-
declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) =>
|
|
899
|
+
}) => React$1.JSX.Element;
|
|
900
|
+
declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
|
|
1107
901
|
declare const StaggerContainer: ({ children, delayChildren, staggerChildren }: {
|
|
1108
902
|
children: React$1.ReactNode;
|
|
1109
903
|
delayChildren?: number;
|
|
1110
904
|
staggerChildren?: number;
|
|
1111
|
-
}) =>
|
|
905
|
+
}) => React$1.JSX.Element;
|
|
1112
906
|
declare const StaggerItem: ({ children }: {
|
|
1113
907
|
children: React$1.ReactNode;
|
|
1114
|
-
}) =>
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
declare const LoadingButton: ({ isLoading, children, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1151
|
-
declare const DestructiveGlowButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1152
|
-
declare const GhostOutlineButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1153
|
-
|
|
1154
|
-
declare const FloatingLabelInput: ({ label, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1155
|
-
declare const UnderlineInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1156
|
-
declare const IconInputLeft: ({ icon: Icon, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1157
|
-
declare const IconInputRight: ({ icon: Icon, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1158
|
-
declare const PillInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1159
|
-
declare const ErrorInput: ({ errorMessage, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1160
|
-
declare const SuccessInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1161
|
-
declare const GhostInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1162
|
-
declare const NeumorphicInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1163
|
-
declare const MinimalDropInput: ({ label, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1164
|
-
|
|
1165
|
-
declare const ImageCard: ({ src, title, subtitle }: any) => react_jsx_runtime.JSX.Element;
|
|
1166
|
-
declare const ProfileCard: ({ name, role, avatar }: any) => react_jsx_runtime.JSX.Element;
|
|
1167
|
-
declare const ProductCard: ({ title, price, category, src }: any) => react_jsx_runtime.JSX.Element;
|
|
1168
|
-
declare const ArticleCard: ({ title, excerpt, date }: any) => react_jsx_runtime.JSX.Element;
|
|
1169
|
-
declare const StatCardSimple: ({ label, value, trend }: any) => react_jsx_runtime.JSX.Element;
|
|
1170
|
-
declare const PricingCardBasic: ({ name, price, features }: any) => react_jsx_runtime.JSX.Element;
|
|
1171
|
-
declare const WeatherCard: ({ city, temp, condition }: any) => react_jsx_runtime.JSX.Element;
|
|
1172
|
-
declare const EventCard: ({ title, date, location }: any) => react_jsx_runtime.JSX.Element;
|
|
1173
|
-
declare const TestimonialCardBasic: ({ text, author }: any) => react_jsx_runtime.JSX.Element;
|
|
1174
|
-
declare const InteractiveCard: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
|
|
1175
|
-
|
|
1176
|
-
declare const NotificationBadge: ({ count, children }: any) => react_jsx_runtime.JSX.Element;
|
|
1177
|
-
declare const RibbonBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1178
|
-
declare const OutlineDotBadge: ({ text, colorClass }: any) => react_jsx_runtime.JSX.Element;
|
|
1179
|
-
declare const GradientOutlineBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1180
|
-
declare const IconBadge: ({ icon: Icon, text }: any) => react_jsx_runtime.JSX.Element;
|
|
1181
|
-
declare const FloatingBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1182
|
-
declare const ProgressBadge: ({ text, progress }: any) => react_jsx_runtime.JSX.Element;
|
|
1183
|
-
declare const StatusRingBadge: ({ status }: any) => react_jsx_runtime.JSX.Element;
|
|
1184
|
-
declare const NeonOutlineBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1185
|
-
declare const TagLabel: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1186
|
-
|
|
1187
|
-
declare const WifiLoader: () => react_jsx_runtime.JSX.Element;
|
|
1188
|
-
declare const HourglassLoader: () => react_jsx_runtime.JSX.Element;
|
|
1189
|
-
declare const HeartbeatLoader: () => react_jsx_runtime.JSX.Element;
|
|
1190
|
-
declare const BoxLoader: () => react_jsx_runtime.JSX.Element;
|
|
1191
|
-
declare const BouncingBalls: () => react_jsx_runtime.JSX.Element;
|
|
1192
|
-
declare const GlowRingLoader: () => react_jsx_runtime.JSX.Element;
|
|
1193
|
-
declare const LineScaleLoader: () => react_jsx_runtime.JSX.Element;
|
|
1194
|
-
declare const ClockLoader: () => react_jsx_runtime.JSX.Element;
|
|
1195
|
-
declare const BatteryLoader: () => react_jsx_runtime.JSX.Element;
|
|
1196
|
-
declare const SquareSpinLoader: () => react_jsx_runtime.JSX.Element;
|
|
1197
|
-
|
|
1198
|
-
declare const CyberAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element | null;
|
|
1199
|
-
declare const SoftAlert: ({ title, description, type }: any) => react_jsx_runtime.JSX.Element | null;
|
|
1200
|
-
declare const MinimalAlert: ({ text }: any) => react_jsx_runtime.JSX.Element;
|
|
1201
|
-
declare const LeftBorderAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element | null;
|
|
1202
|
-
declare const IconTopAlert: ({ title, description, icon: Icon }: any) => react_jsx_runtime.JSX.Element;
|
|
1203
|
-
declare const SolidAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
|
|
1204
|
-
declare const ToastAlertWrapper: ({ title, description, time }: any) => react_jsx_runtime.JSX.Element;
|
|
1205
|
-
declare const BannerAlert: ({ text, actionText }: any) => react_jsx_runtime.JSX.Element;
|
|
1206
|
-
declare const CookieAlert: () => react_jsx_runtime.JSX.Element;
|
|
1207
|
-
declare const NeonAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
|
|
1208
|
-
|
|
1209
|
-
declare const StackAvatar: ({ urls, max, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1210
|
-
declare const DottedAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1211
|
-
declare const ShadowAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1212
|
-
declare const PolymorphAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1213
|
-
declare const GlassAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1214
|
-
declare const AnimatedBorderAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1215
|
-
declare const InitialsGradientAvatar: ({ initials }: any) => react_jsx_runtime.JSX.Element;
|
|
1216
|
-
declare const SquareAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1217
|
-
declare const TooltipAvatar: ({ src, fallback, tooltip }: any) => react_jsx_runtime.JSX.Element;
|
|
1218
|
-
declare const PulseAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
|
|
1219
|
-
|
|
1220
|
-
declare const SimpleNavbar: () => react_jsx_runtime.JSX.Element;
|
|
1221
|
-
declare const CenteredNavbar: () => react_jsx_runtime.JSX.Element;
|
|
1222
|
-
declare const GlassNavbar: () => react_jsx_runtime.JSX.Element;
|
|
1223
|
-
declare const FloatingNavbar: () => react_jsx_runtime.JSX.Element;
|
|
1224
|
-
declare const SidebarMenu: () => react_jsx_runtime.JSX.Element;
|
|
1225
|
-
declare const BottomNav: () => react_jsx_runtime.JSX.Element;
|
|
1226
|
-
declare const BreadcrumbTrail: () => react_jsx_runtime.JSX.Element;
|
|
1227
|
-
declare const StepIndicator: ({ current }: any) => react_jsx_runtime.JSX.Element;
|
|
1228
|
-
declare const TabMenu: () => react_jsx_runtime.JSX.Element;
|
|
1229
|
-
declare const DropdownMenuVisual: () => react_jsx_runtime.JSX.Element;
|
|
1230
|
-
|
|
1231
|
-
declare const CircularProgressCard: ({ value, label }: any) => react_jsx_runtime.JSX.Element;
|
|
1232
|
-
declare const LineChartCard: () => react_jsx_runtime.JSX.Element;
|
|
1233
|
-
declare const BarChartCard: () => react_jsx_runtime.JSX.Element;
|
|
1234
|
-
declare const TrendStatCard: ({ title, value, trend }: any) => react_jsx_runtime.JSX.Element;
|
|
1235
|
-
declare const RankingList: () => react_jsx_runtime.JSX.Element;
|
|
1236
|
-
declare const ActivityHeatmap: () => react_jsx_runtime.JSX.Element;
|
|
1237
|
-
declare const RadarChartMock: () => react_jsx_runtime.JSX.Element;
|
|
1238
|
-
declare const GaugeMeter: ({ value }: any) => react_jsx_runtime.JSX.Element;
|
|
1239
|
-
declare const SparklineStat: () => react_jsx_runtime.JSX.Element;
|
|
1240
|
-
declare const MetricGrid: () => react_jsx_runtime.JSX.Element;
|
|
1241
|
-
|
|
1242
|
-
declare const FeatureGridX: () => react_jsx_runtime.JSX.Element;
|
|
1243
|
-
declare const HeroSectionX: () => react_jsx_runtime.JSX.Element;
|
|
1244
|
-
declare const FaqAccordionX: () => react_jsx_runtime.JSX.Element;
|
|
1245
|
-
declare const TeamSectionX: () => react_jsx_runtime.JSX.Element;
|
|
1246
|
-
declare const LogoCloudX: () => react_jsx_runtime.JSX.Element;
|
|
1247
|
-
declare const CTASectionX: () => react_jsx_runtime.JSX.Element;
|
|
1248
|
-
declare const ContactFormX: () => react_jsx_runtime.JSX.Element;
|
|
1249
|
-
declare const PricingCardsX: () => react_jsx_runtime.JSX.Element;
|
|
1250
|
-
declare const TestimonialSliderX: () => react_jsx_runtime.JSX.Element;
|
|
1251
|
-
declare const FooterX: () => react_jsx_runtime.JSX.Element;
|
|
1252
|
-
|
|
1253
|
-
declare const LoginFormPro: () => react_jsx_runtime.JSX.Element;
|
|
1254
|
-
declare const RegisterFormPro: () => react_jsx_runtime.JSX.Element;
|
|
1255
|
-
declare const PaymentFormPro: () => react_jsx_runtime.JSX.Element;
|
|
1256
|
-
declare const ProfileSettingsForm: () => react_jsx_runtime.JSX.Element;
|
|
1257
|
-
declare const SubscriptionForm: () => react_jsx_runtime.JSX.Element;
|
|
1258
|
-
declare const ContactFormPro: () => react_jsx_runtime.JSX.Element;
|
|
1259
|
-
declare const AdvancedSearchForm: () => react_jsx_runtime.JSX.Element;
|
|
1260
|
-
declare const FileUploadForm: () => react_jsx_runtime.JSX.Element;
|
|
1261
|
-
declare const FeedbackForm: () => react_jsx_runtime.JSX.Element;
|
|
1262
|
-
declare const InviteUsersForm: () => react_jsx_runtime.JSX.Element;
|
|
1263
|
-
|
|
1264
|
-
declare const ProductGallery: () => react_jsx_runtime.JSX.Element;
|
|
1265
|
-
declare const AddToCartBar: () => react_jsx_runtime.JSX.Element;
|
|
1266
|
-
declare const CartDrawerItem: () => react_jsx_runtime.JSX.Element | null;
|
|
1267
|
-
declare const OrderSummaryCard: () => react_jsx_runtime.JSX.Element;
|
|
1268
|
-
declare const PromoCodeInput: () => react_jsx_runtime.JSX.Element;
|
|
1269
|
-
declare const ShippingAddressForm: () => react_jsx_runtime.JSX.Element;
|
|
1270
|
-
declare const ProductReview: () => react_jsx_runtime.JSX.Element;
|
|
1271
|
-
declare const ColorSelector: () => react_jsx_runtime.JSX.Element;
|
|
1272
|
-
declare const SizeSelector: () => react_jsx_runtime.JSX.Element;
|
|
1273
|
-
declare const CategoryCard: () => react_jsx_runtime.JSX.Element;
|
|
1274
|
-
|
|
1275
|
-
declare const ChatBubbleUser: ({ message }: any) => react_jsx_runtime.JSX.Element;
|
|
1276
|
-
declare const ChatBubbleAI: ({ message }: any) => react_jsx_runtime.JSX.Element;
|
|
1277
|
-
declare const AIPromptInput: () => react_jsx_runtime.JSX.Element;
|
|
1278
|
-
declare const ThinkingLoader: () => react_jsx_runtime.JSX.Element;
|
|
1279
|
-
declare const ModelSelector: () => react_jsx_runtime.JSX.Element;
|
|
1280
|
-
declare const GeneratedCodeBlock: () => react_jsx_runtime.JSX.Element;
|
|
1281
|
-
declare const ChatHistorySidebar: () => react_jsx_runtime.JSX.Element;
|
|
1282
|
-
declare const AIFeatureCard: () => react_jsx_runtime.JSX.Element;
|
|
1283
|
-
declare const SuggestionChips: () => react_jsx_runtime.JSX.Element;
|
|
1284
|
-
declare const VoiceInputPulse: () => react_jsx_runtime.JSX.Element;
|
|
1285
|
-
|
|
1286
|
-
declare const DataTablePro: () => react_jsx_runtime.JSX.Element;
|
|
1287
|
-
declare const InvoiceTable: () => react_jsx_runtime.JSX.Element;
|
|
1288
|
-
declare const UserDirectoryTable: () => react_jsx_runtime.JSX.Element;
|
|
1289
|
-
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1290
|
-
declare const FileExplorerTable: () => react_jsx_runtime.JSX.Element;
|
|
1291
|
-
declare const LeaderboardTable: () => react_jsx_runtime.JSX.Element;
|
|
1292
|
-
declare const ProductInventoryTable: () => react_jsx_runtime.JSX.Element;
|
|
1293
|
-
declare const ScheduleTable: () => react_jsx_runtime.JSX.Element;
|
|
1294
|
-
declare const PricingComparisonTable: () => react_jsx_runtime.JSX.Element;
|
|
1295
|
-
declare const CompactDataList: () => react_jsx_runtime.JSX.Element;
|
|
1296
|
-
|
|
1297
|
-
declare const DashboardShell: ({ children }: any) => react_jsx_runtime.JSX.Element;
|
|
1298
|
-
declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => react_jsx_runtime.JSX.Element;
|
|
1299
|
-
declare const ActivityFeed: () => react_jsx_runtime.JSX.Element;
|
|
1300
|
-
declare const ProgressWidget: () => react_jsx_runtime.JSX.Element;
|
|
1301
|
-
declare const QuickActionsWidget: () => react_jsx_runtime.JSX.Element;
|
|
1302
|
-
declare const TaskChecklist: () => react_jsx_runtime.JSX.Element;
|
|
1303
|
-
declare const StorageWidget: () => react_jsx_runtime.JSX.Element;
|
|
1304
|
-
declare const RevenueChartWidget: () => react_jsx_runtime.JSX.Element;
|
|
1305
|
-
declare const RecentUsersWidget: () => react_jsx_runtime.JSX.Element;
|
|
1306
|
-
declare const ServerStatusWidget: () => react_jsx_runtime.JSX.Element;
|
|
1307
|
-
|
|
1308
|
-
declare const MegaMenuVisual: () => react_jsx_runtime.JSX.Element;
|
|
1309
|
-
declare const CommandPaletteVisual: () => react_jsx_runtime.JSX.Element;
|
|
1310
|
-
declare const AppTopbar: () => react_jsx_runtime.JSX.Element;
|
|
1311
|
-
declare const MobileDrawerNav: () => react_jsx_runtime.JSX.Element;
|
|
1312
|
-
declare const TreeNavigation: () => react_jsx_runtime.JSX.Element;
|
|
1313
|
-
declare const ContextActionBar: () => react_jsx_runtime.JSX.Element;
|
|
1314
|
-
declare const PaginationPro: () => react_jsx_runtime.JSX.Element;
|
|
1315
|
-
declare const FilterBar: () => react_jsx_runtime.JSX.Element;
|
|
1316
|
-
declare const LanguageSelector: () => react_jsx_runtime.JSX.Element;
|
|
1317
|
-
declare const UserMenuDropdown: () => react_jsx_runtime.JSX.Element;
|
|
1318
|
-
|
|
1319
|
-
declare const ConfettiSuccess: () => react_jsx_runtime.JSX.Element;
|
|
1320
|
-
declare const ActionToast: () => react_jsx_runtime.JSX.Element;
|
|
1321
|
-
declare const MultiStepProgress: ({ current }: any) => react_jsx_runtime.JSX.Element;
|
|
1322
|
-
declare const SkeletonList: () => react_jsx_runtime.JSX.Element;
|
|
1323
|
-
declare const EmptyStatePro: () => react_jsx_runtime.JSX.Element;
|
|
1324
|
-
declare const TooltipForm: () => react_jsx_runtime.JSX.Element;
|
|
1325
|
-
declare const OfflineBanner: () => react_jsx_runtime.JSX.Element;
|
|
1326
|
-
declare const RateLimitAlert: () => react_jsx_runtime.JSX.Element;
|
|
1327
|
-
declare const PasswordStrengthMeter: ({ score }: any) => react_jsx_runtime.JSX.Element;
|
|
1328
|
-
declare const UploadProgress: () => react_jsx_runtime.JSX.Element;
|
|
1329
|
-
|
|
1330
|
-
declare const WaitlistForm: () => react_jsx_runtime.JSX.Element;
|
|
1331
|
-
declare const PricingToggle: () => react_jsx_runtime.JSX.Element;
|
|
1332
|
-
declare const FeatureShowcase: () => react_jsx_runtime.JSX.Element;
|
|
1333
|
-
declare const TrustBanner: () => react_jsx_runtime.JSX.Element;
|
|
1334
|
-
declare const ComparisonTableMock: () => react_jsx_runtime.JSX.Element;
|
|
1335
|
-
declare const AnimatedHeroText: () => react_jsx_runtime.JSX.Element;
|
|
1336
|
-
declare const StatCounter: () => react_jsx_runtime.JSX.Element;
|
|
1337
|
-
declare const NewsletterSignup: () => react_jsx_runtime.JSX.Element;
|
|
1338
|
-
declare const VideoModalVisual: () => react_jsx_runtime.JSX.Element;
|
|
1339
|
-
declare const GradientCTABlock: () => react_jsx_runtime.JSX.Element;
|
|
1340
|
-
|
|
1341
|
-
declare const ContactList: () => react_jsx_runtime.JSX.Element;
|
|
1342
|
-
declare const NotificationList: () => react_jsx_runtime.JSX.Element;
|
|
1343
|
-
declare const TimelineVertical: () => react_jsx_runtime.JSX.Element;
|
|
1344
|
-
declare const StepList: () => react_jsx_runtime.JSX.Element;
|
|
1345
|
-
declare const FAQAccordionList: () => react_jsx_runtime.JSX.Element;
|
|
1346
|
-
declare const FileDownloadList: () => react_jsx_runtime.JSX.Element;
|
|
1347
|
-
declare const MessageList: () => react_jsx_runtime.JSX.Element;
|
|
1348
|
-
declare const JobBoardList: () => react_jsx_runtime.JSX.Element;
|
|
1349
|
-
declare const EventScheduleList: () => react_jsx_runtime.JSX.Element;
|
|
1350
|
-
declare const RecentCommentsList: () => react_jsx_runtime.JSX.Element;
|
|
1351
|
-
|
|
1352
|
-
declare const SplitScreenLayout: () => react_jsx_runtime.JSX.Element;
|
|
1353
|
-
declare const AuthenticationLayout: () => react_jsx_runtime.JSX.Element;
|
|
1354
|
-
declare const SidebarLayout: () => react_jsx_runtime.JSX.Element;
|
|
1355
|
-
declare const DashboardGridLayout: () => react_jsx_runtime.JSX.Element;
|
|
1356
|
-
declare const BentoGridVisual: () => react_jsx_runtime.JSX.Element;
|
|
1357
|
-
declare const KanbanBoardVisual: () => react_jsx_runtime.JSX.Element;
|
|
1358
|
-
declare const ChatLayoutVisual: () => react_jsx_runtime.JSX.Element;
|
|
1359
|
-
declare const FeedLayout: () => react_jsx_runtime.JSX.Element;
|
|
1360
|
-
declare const DocumentationLayout: () => react_jsx_runtime.JSX.Element;
|
|
1361
|
-
declare const HeaderFooterLayout: () => react_jsx_runtime.JSX.Element;
|
|
1362
|
-
|
|
1363
|
-
interface AccordionProps {
|
|
1364
|
-
title?: React$1.ReactNode;
|
|
1365
|
-
children?: React$1.ReactNode;
|
|
1366
|
-
defaultOpen?: boolean;
|
|
908
|
+
}) => React$1.JSX.Element;
|
|
909
|
+
interface TypingAnimationProps {
|
|
910
|
+
/**
|
|
911
|
+
* Описание для texts
|
|
912
|
+
* @default undefined
|
|
913
|
+
*/
|
|
914
|
+
texts: string[];
|
|
915
|
+
/**
|
|
916
|
+
* Описание для speed
|
|
917
|
+
* @default undefined
|
|
918
|
+
*/
|
|
919
|
+
speed?: number;
|
|
920
|
+
/**
|
|
921
|
+
* Описание для deleteSpeed
|
|
922
|
+
* @default undefined
|
|
923
|
+
*/
|
|
924
|
+
deleteSpeed?: number;
|
|
925
|
+
/**
|
|
926
|
+
* Описание для pauseDuration
|
|
927
|
+
* @default undefined
|
|
928
|
+
*/
|
|
929
|
+
pauseDuration?: number;
|
|
930
|
+
/**
|
|
931
|
+
* Описание для loop
|
|
932
|
+
* @default undefined
|
|
933
|
+
*/
|
|
934
|
+
loop?: boolean;
|
|
935
|
+
/**
|
|
936
|
+
* Описание для cursor
|
|
937
|
+
* @default undefined
|
|
938
|
+
*/
|
|
939
|
+
cursor?: boolean;
|
|
940
|
+
/**
|
|
941
|
+
* Описание для className
|
|
942
|
+
* @default undefined
|
|
943
|
+
*/
|
|
1367
944
|
className?: string;
|
|
1368
945
|
}
|
|
1369
|
-
declare
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
children
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
946
|
+
declare function TypingAnimation({ texts, speed, deleteSpeed, pauseDuration, loop, cursor, className, }: TypingAnimationProps): React$1.JSX.Element;
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* Props for the BlurFade component
|
|
950
|
+
*/
|
|
951
|
+
interface BlurFadeProps extends Omit<HTMLMotionProps<"div">, "ref"> {
|
|
952
|
+
/**
|
|
953
|
+
* Children components to animate
|
|
954
|
+
*/
|
|
955
|
+
children: React$1.ReactNode;
|
|
956
|
+
/**
|
|
957
|
+
* Animation delay in seconds
|
|
958
|
+
* @default 0
|
|
959
|
+
*/
|
|
960
|
+
delay?: number;
|
|
961
|
+
/**
|
|
962
|
+
* Animation duration in seconds
|
|
963
|
+
* @default 0.4
|
|
964
|
+
*/
|
|
965
|
+
duration?: number;
|
|
966
|
+
/**
|
|
967
|
+
* Y axis offset translation on start
|
|
968
|
+
* @default 6
|
|
969
|
+
*/
|
|
970
|
+
yOffset?: number;
|
|
971
|
+
/**
|
|
972
|
+
* Start blur level (CSS blur radius value)
|
|
973
|
+
* @default "4px"
|
|
974
|
+
*/
|
|
975
|
+
blur?: string;
|
|
976
|
+
/**
|
|
977
|
+
* Additional CSS classes
|
|
978
|
+
*/
|
|
1383
979
|
className?: string;
|
|
980
|
+
/**
|
|
981
|
+
* Whether to animate based on viewport entry
|
|
982
|
+
* @default true
|
|
983
|
+
*/
|
|
984
|
+
inView?: boolean;
|
|
985
|
+
/**
|
|
986
|
+
* Trigger animation only once
|
|
987
|
+
* @default true
|
|
988
|
+
*/
|
|
989
|
+
once?: boolean;
|
|
990
|
+
/**
|
|
991
|
+
* Viewport margin threshold for in-view trigger
|
|
992
|
+
* @default "-50px"
|
|
993
|
+
*/
|
|
994
|
+
margin?: string;
|
|
1384
995
|
}
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
996
|
+
/**
|
|
997
|
+
* BlurFade animates elements with a smooth blur and fade transition as they enter the viewport.
|
|
998
|
+
*/
|
|
999
|
+
declare const BlurFade: React$1.ForwardRefExoticComponent<BlurFadeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1000
|
+
|
|
1001
|
+
/**
|
|
1002
|
+
* Props for the Marquee component
|
|
1003
|
+
*/
|
|
1004
|
+
interface MarqueeProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1005
|
+
/**
|
|
1006
|
+
* Content of the marquee
|
|
1007
|
+
*/
|
|
1008
|
+
children: React$1.ReactNode;
|
|
1009
|
+
/**
|
|
1010
|
+
* Speed of the scrolling animation (higher is faster, represented in pixels per second or duration)
|
|
1011
|
+
* @default 40
|
|
1012
|
+
*/
|
|
1013
|
+
speed?: number;
|
|
1014
|
+
/**
|
|
1015
|
+
* Direction of the scrolling
|
|
1016
|
+
* @default "left"
|
|
1017
|
+
*/
|
|
1018
|
+
direction?: "left" | "right";
|
|
1019
|
+
/**
|
|
1020
|
+
* Whether to pause scrolling when hovering
|
|
1021
|
+
* @default true
|
|
1022
|
+
*/
|
|
1023
|
+
pauseOnHover?: boolean;
|
|
1024
|
+
/**
|
|
1025
|
+
* Gap between items in pixels
|
|
1026
|
+
* @default 16
|
|
1027
|
+
*/
|
|
1028
|
+
gap?: number;
|
|
1029
|
+
/**
|
|
1030
|
+
* Additional CSS classes
|
|
1031
|
+
*/
|
|
1032
|
+
className?: string;
|
|
1033
|
+
}
|
|
1034
|
+
/**
|
|
1035
|
+
* Marquee component provides a smooth infinite auto-scrolling marquee of children.
|
|
1036
|
+
*/
|
|
1037
|
+
declare const Marquee: React$1.ForwardRefExoticComponent<MarqueeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* Props for the NumberTicker component
|
|
1041
|
+
*/
|
|
1042
|
+
interface NumberTickerProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
1043
|
+
/**
|
|
1044
|
+
* The target numeric value to animate to
|
|
1045
|
+
*/
|
|
1046
|
+
value: number;
|
|
1047
|
+
/**
|
|
1048
|
+
* Duration of the animation in seconds
|
|
1049
|
+
* @default 2
|
|
1050
|
+
*/
|
|
1051
|
+
duration?: number;
|
|
1052
|
+
/**
|
|
1053
|
+
* Optional prefix to display before the number
|
|
1054
|
+
*/
|
|
1055
|
+
prefix?: string;
|
|
1056
|
+
/**
|
|
1057
|
+
* Optional suffix to display after the number
|
|
1058
|
+
*/
|
|
1059
|
+
suffix?: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* Number of decimal places to show
|
|
1062
|
+
* @default 0
|
|
1063
|
+
*/
|
|
1064
|
+
decimals?: number;
|
|
1065
|
+
/**
|
|
1066
|
+
* Additional CSS classes
|
|
1067
|
+
*/
|
|
1068
|
+
className?: string;
|
|
1069
|
+
}
|
|
1070
|
+
/**
|
|
1071
|
+
* NumberTicker component animates a number from 0 to value when it enters the viewport.
|
|
1072
|
+
*/
|
|
1073
|
+
declare const NumberTicker: React$1.ForwardRefExoticComponent<NumberTickerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1074
|
+
|
|
1075
|
+
interface AnimatedNumberProps {
|
|
1076
|
+
value: number;
|
|
1077
|
+
className?: string;
|
|
1078
|
+
duration?: number;
|
|
1079
|
+
formatFn?: (v: number) => string;
|
|
1080
|
+
}
|
|
1081
|
+
declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): React$1.JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* Props for the Rating component
|
|
1085
|
+
*/
|
|
1086
|
+
interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
1087
|
+
/**
|
|
1088
|
+
* Current rating value
|
|
1089
|
+
*/
|
|
1090
|
+
value: number;
|
|
1091
|
+
/**
|
|
1092
|
+
* Maximum rating count
|
|
1093
|
+
* @default 5
|
|
1094
|
+
*/
|
|
1095
|
+
max?: number;
|
|
1096
|
+
/**
|
|
1097
|
+
* Callback fired when rating value is clicked
|
|
1098
|
+
*/
|
|
1099
|
+
onChange?: (value: number) => void;
|
|
1100
|
+
/**
|
|
1101
|
+
* If true, rating is display-only
|
|
1102
|
+
* @default false
|
|
1103
|
+
*/
|
|
1104
|
+
readonly?: boolean;
|
|
1105
|
+
/**
|
|
1106
|
+
* Size of rating icons
|
|
1107
|
+
* @default "md"
|
|
1108
|
+
*/
|
|
1109
|
+
size?: "sm" | "md" | "lg";
|
|
1110
|
+
/**
|
|
1111
|
+
* Visual icon choice
|
|
1112
|
+
* @default "star"
|
|
1113
|
+
*/
|
|
1114
|
+
icon?: "star" | "heart" | "thumb";
|
|
1115
|
+
/**
|
|
1116
|
+
* Additional CSS classes
|
|
1117
|
+
*/
|
|
1118
|
+
className?: string;
|
|
1119
|
+
}
|
|
1120
|
+
/**
|
|
1121
|
+
* Rating component provides a premium selection input for score ratings (Stars, Hearts, Thumbs).
|
|
1122
|
+
*/
|
|
1123
|
+
declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* Props for the FileUpload component
|
|
1127
|
+
*/
|
|
1128
|
+
interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
1129
|
+
/**
|
|
1130
|
+
* Callback fired when files are successfully validated and selected
|
|
1131
|
+
*/
|
|
1132
|
+
onUpload: (files: File[]) => void;
|
|
1133
|
+
/**
|
|
1134
|
+
* Accepted mime types or extensions, e.g. "image/*,application/pdf"
|
|
1135
|
+
*/
|
|
1136
|
+
accept?: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* Maximum file size in bytes
|
|
1139
|
+
* @default 10 * 1024 * 1024 (10MB)
|
|
1140
|
+
*/
|
|
1141
|
+
maxSize?: number;
|
|
1142
|
+
/**
|
|
1143
|
+
* Whether to allow multiple file uploads
|
|
1144
|
+
* @default false
|
|
1145
|
+
*/
|
|
1146
|
+
multiple?: boolean;
|
|
1147
|
+
/**
|
|
1148
|
+
* Layout visual style
|
|
1149
|
+
* @default "default"
|
|
1150
|
+
*/
|
|
1151
|
+
variant?: "default" | "dropzone" | "button";
|
|
1152
|
+
/**
|
|
1153
|
+
* Additional CSS classes
|
|
1154
|
+
*/
|
|
1155
|
+
className?: string;
|
|
1156
|
+
}
|
|
1157
|
+
/**
|
|
1158
|
+
* FileUpload component manages local file selection, validation, drag-and-drop state, and displays current uploads.
|
|
1159
|
+
*/
|
|
1160
|
+
declare const FileUpload: React$1.ForwardRefExoticComponent<FileUploadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1161
|
+
|
|
1162
|
+
declare const tableContainerVariants: (props?: ({
|
|
1163
|
+
variant?: "default" | "neon" | "glass" | "gradient" | "minimal" | "cyberpunk" | "aurora" | null | undefined;
|
|
1164
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1165
|
+
interface TableProps extends React$1.HTMLAttributes<HTMLTableElement>, VariantProps<typeof tableContainerVariants> {
|
|
1166
|
+
/**
|
|
1167
|
+
* Описание для density
|
|
1168
|
+
* @default undefined
|
|
1169
|
+
*/
|
|
1170
|
+
density?: 'compact' | 'normal' | 'spacious';
|
|
1171
|
+
/**
|
|
1172
|
+
* Описание для hoverable
|
|
1173
|
+
* @default undefined
|
|
1174
|
+
*/
|
|
1175
|
+
hoverable?: boolean;
|
|
1176
|
+
/**
|
|
1177
|
+
* Описание для striped
|
|
1178
|
+
* @default undefined
|
|
1179
|
+
*/
|
|
1180
|
+
striped?: boolean;
|
|
1181
|
+
/**
|
|
1182
|
+
* Описание для bordered
|
|
1183
|
+
* @default undefined
|
|
1184
|
+
*/
|
|
1185
|
+
bordered?: boolean;
|
|
1186
|
+
/**
|
|
1187
|
+
* Описание для animateRows
|
|
1188
|
+
* @default undefined
|
|
1189
|
+
*/
|
|
1190
|
+
animateRows?: boolean;
|
|
1191
|
+
/**
|
|
1192
|
+
* Описание для containerClassName
|
|
1193
|
+
* @default undefined
|
|
1194
|
+
*/
|
|
1195
|
+
containerClassName?: string;
|
|
1196
|
+
}
|
|
1197
|
+
declare const Table: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>>;
|
|
1198
|
+
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1199
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1200
|
+
declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1201
|
+
interface TableRowProps extends React$1.HTMLAttributes<HTMLTableRowElement> {
|
|
1202
|
+
/**
|
|
1203
|
+
* Описание для index
|
|
1204
|
+
* @default undefined
|
|
1205
|
+
*/
|
|
1206
|
+
index?: number;
|
|
1207
|
+
}
|
|
1208
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
1209
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1210
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1211
|
+
declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
1212
|
+
interface CustomizableTableProps extends TableProps {
|
|
1213
|
+
/**
|
|
1214
|
+
* Описание для headers
|
|
1215
|
+
* @default undefined
|
|
1216
|
+
*/
|
|
1217
|
+
headers: string[];
|
|
1218
|
+
/**
|
|
1219
|
+
* Описание для rows
|
|
1220
|
+
* @default undefined
|
|
1221
|
+
*/
|
|
1222
|
+
rows: React$1.ReactNode[][];
|
|
1223
|
+
/**
|
|
1224
|
+
* Описание для caption
|
|
1225
|
+
* @default undefined
|
|
1226
|
+
*/
|
|
1227
|
+
caption?: string;
|
|
1228
|
+
}
|
|
1229
|
+
declare const CustomizableTable: React$1.FC<CustomizableTableProps>;
|
|
1230
|
+
interface DataTableColumn<T = any> {
|
|
1231
|
+
header: React$1.ReactNode;
|
|
1232
|
+
accessorKey?: keyof T | string;
|
|
1233
|
+
cell?: (item: T, index: number) => React$1.ReactNode;
|
|
1234
|
+
className?: string;
|
|
1235
|
+
}
|
|
1236
|
+
interface DataTableProps<T = any> extends TableProps {
|
|
1237
|
+
data?: T[];
|
|
1238
|
+
columns?: DataTableColumn<T>[];
|
|
1239
|
+
searchable?: boolean;
|
|
1240
|
+
searchPlaceholder?: string;
|
|
1241
|
+
searchKey?: keyof T | string;
|
|
1242
|
+
pagination?: boolean;
|
|
1243
|
+
pageSize?: number;
|
|
1244
|
+
emptyMessage?: string;
|
|
1393
1245
|
children?: React$1.ReactNode;
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1246
|
+
}
|
|
1247
|
+
declare function DataTable<T = any>({ data, columns, searchable, searchPlaceholder, searchKey, pagination, pageSize, emptyMessage, children, ...tableProps }: DataTableProps<T>): React$1.JSX.Element;
|
|
1248
|
+
declare const TableCompound: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>> & {
|
|
1249
|
+
Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1250
|
+
Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1251
|
+
Footer: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1252
|
+
Row: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
1253
|
+
Head: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1254
|
+
Cell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1255
|
+
Caption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
1256
|
+
};
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* Representing a single step definition
|
|
1260
|
+
*/
|
|
1261
|
+
interface StepItem {
|
|
1262
|
+
title: string;
|
|
1263
|
+
description?: string;
|
|
1264
|
+
icon?: React$1.ReactNode;
|
|
1265
|
+
}
|
|
1266
|
+
/**
|
|
1267
|
+
* Props for the Stepper component
|
|
1268
|
+
*/
|
|
1269
|
+
interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1270
|
+
/**
|
|
1271
|
+
* Array of step configurations
|
|
1272
|
+
*/
|
|
1273
|
+
steps: StepItem[];
|
|
1274
|
+
/**
|
|
1275
|
+
* Index of the current active step (0-indexed)
|
|
1276
|
+
*/
|
|
1277
|
+
currentStep: number;
|
|
1278
|
+
/**
|
|
1279
|
+
* Orientation layout of the stepper
|
|
1280
|
+
* @default "horizontal"
|
|
1281
|
+
*/
|
|
1282
|
+
orientation?: "horizontal" | "vertical";
|
|
1283
|
+
/**
|
|
1284
|
+
* Style variant of the stepper
|
|
1285
|
+
* @default "default"
|
|
1286
|
+
*/
|
|
1287
|
+
variant?: "default" | "circles" | "arrows";
|
|
1288
|
+
/**
|
|
1289
|
+
* Additional CSS classes
|
|
1290
|
+
*/
|
|
1398
1291
|
className?: string;
|
|
1399
1292
|
}
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1293
|
+
/**
|
|
1294
|
+
* Stepper component displays progress through a multi-step sequence with animations.
|
|
1295
|
+
*/
|
|
1296
|
+
declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1297
|
+
|
|
1298
|
+
/**
|
|
1299
|
+
* Interface representing a Command palette item
|
|
1300
|
+
*/
|
|
1301
|
+
interface CommandItem {
|
|
1302
|
+
label: string;
|
|
1303
|
+
value: string;
|
|
1405
1304
|
icon?: React$1.ReactNode;
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1305
|
+
onSelect: () => void;
|
|
1306
|
+
}
|
|
1307
|
+
/**
|
|
1308
|
+
* Props for the Command palette component
|
|
1309
|
+
*/
|
|
1310
|
+
interface CommandProps {
|
|
1311
|
+
/**
|
|
1312
|
+
* Array of command items
|
|
1313
|
+
*/
|
|
1314
|
+
items: CommandItem[];
|
|
1315
|
+
/**
|
|
1316
|
+
* Input search placeholder text
|
|
1317
|
+
* @default "Type a command or search..."
|
|
1318
|
+
*/
|
|
1319
|
+
placeholder?: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* Whether the command dialog is open
|
|
1322
|
+
*/
|
|
1323
|
+
open?: boolean;
|
|
1324
|
+
/**
|
|
1325
|
+
* Callback fired when the open state changes
|
|
1326
|
+
*/
|
|
1327
|
+
onOpenChange?: (open: boolean) => void;
|
|
1328
|
+
}
|
|
1329
|
+
/**
|
|
1330
|
+
* Command component provides an interactive Command Palette (Cmd+K / Ctrl+K) dialog.
|
|
1331
|
+
*/
|
|
1332
|
+
declare const Command: React$1.ForwardRefExoticComponent<CommandProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1333
|
+
|
|
1334
|
+
declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): React$1.JSX.Element;
|
|
1335
|
+
interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1336
|
+
/**
|
|
1337
|
+
* Описание для limit
|
|
1338
|
+
* @default undefined
|
|
1339
|
+
*/
|
|
1340
|
+
limit?: number;
|
|
1341
|
+
/**
|
|
1342
|
+
* Описание для items
|
|
1343
|
+
* @default undefined
|
|
1344
|
+
*/
|
|
1345
|
+
items: {
|
|
1346
|
+
src?: string;
|
|
1347
|
+
fallback: string;
|
|
1348
|
+
}[];
|
|
1349
|
+
}
|
|
1350
|
+
declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): React$1.JSX.Element;
|
|
1351
|
+
interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1352
|
+
/**
|
|
1353
|
+
* Описание для title
|
|
1354
|
+
* @default undefined
|
|
1355
|
+
*/
|
|
1356
|
+
title: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* Описание для value
|
|
1359
|
+
* @default undefined
|
|
1360
|
+
*/
|
|
1361
|
+
value: string;
|
|
1362
|
+
/**
|
|
1363
|
+
* Описание для description
|
|
1364
|
+
* @default undefined
|
|
1365
|
+
*/
|
|
1366
|
+
description?: string;
|
|
1367
|
+
/**
|
|
1368
|
+
* Описание для icon
|
|
1369
|
+
* @default undefined
|
|
1370
|
+
*/
|
|
1371
|
+
icon?: LucideIcon;
|
|
1372
|
+
/**
|
|
1373
|
+
* Описание для trend
|
|
1374
|
+
* @default undefined
|
|
1375
|
+
*/
|
|
1376
|
+
trend?: {
|
|
1377
|
+
/**
|
|
1378
|
+
* Описание для value
|
|
1379
|
+
* @default undefined
|
|
1380
|
+
*/
|
|
1381
|
+
value: string;
|
|
1382
|
+
/**
|
|
1383
|
+
* Описание для positive
|
|
1384
|
+
* @default undefined
|
|
1385
|
+
*/
|
|
1386
|
+
positive: boolean;
|
|
1387
|
+
};
|
|
1388
|
+
}
|
|
1389
|
+
declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): React$1.JSX.Element;
|
|
1390
|
+
interface TimelineItem {
|
|
1391
|
+
title: string;
|
|
1392
|
+
description: string;
|
|
1393
|
+
time: string;
|
|
1394
|
+
status?: "completed" | "current" | "upcoming";
|
|
1395
|
+
}
|
|
1396
|
+
declare function Timeline({ items, className }: {
|
|
1397
|
+
items: TimelineItem[];
|
|
1398
|
+
className?: string;
|
|
1399
|
+
}): React$1.JSX.Element;
|
|
1400
|
+
interface CodeBlockProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1401
|
+
/**
|
|
1402
|
+
* Описание для code
|
|
1403
|
+
* @default undefined
|
|
1404
|
+
*/
|
|
1405
|
+
code: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* Описание для language
|
|
1408
|
+
* @default undefined
|
|
1409
|
+
*/
|
|
1410
|
+
language?: string;
|
|
1411
|
+
}
|
|
1412
|
+
declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): React$1.JSX.Element;
|
|
1413
|
+
interface PricingCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1414
|
+
/**
|
|
1415
|
+
* Описание для title
|
|
1416
|
+
* @default undefined
|
|
1417
|
+
*/
|
|
1418
|
+
title: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* Описание для price
|
|
1421
|
+
* @default undefined
|
|
1422
|
+
*/
|
|
1423
|
+
price: string;
|
|
1424
|
+
/**
|
|
1425
|
+
* Описание для description
|
|
1426
|
+
* @default undefined
|
|
1427
|
+
*/
|
|
1428
|
+
description: string;
|
|
1429
|
+
/**
|
|
1430
|
+
* Описание для features
|
|
1431
|
+
* @default undefined
|
|
1432
|
+
*/
|
|
1433
|
+
features: string[];
|
|
1434
|
+
/**
|
|
1435
|
+
* Описание для buttonText
|
|
1436
|
+
* @default undefined
|
|
1437
|
+
*/
|
|
1438
|
+
buttonText?: string;
|
|
1439
|
+
/**
|
|
1440
|
+
* Описание для popular
|
|
1441
|
+
* @default undefined
|
|
1442
|
+
*/
|
|
1443
|
+
popular?: boolean;
|
|
1444
|
+
}
|
|
1445
|
+
declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): React$1.JSX.Element;
|
|
1446
|
+
interface DividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1447
|
+
/**
|
|
1448
|
+
* The orientation of the divider
|
|
1449
|
+
* @default "horizontal"
|
|
1450
|
+
*/
|
|
1451
|
+
/**
|
|
1452
|
+
* Описание для orientation
|
|
1453
|
+
* @default undefined
|
|
1454
|
+
*/
|
|
1455
|
+
orientation?: "horizontal" | "vertical";
|
|
1456
|
+
}
|
|
1457
|
+
declare function Divider({ orientation, className, ...props }: DividerProps): React$1.JSX.Element;
|
|
1458
|
+
|
|
1459
|
+
type AuroraVariant = 'aurora' | 'ocean' | 'sunset' | 'forest' | 'cyber' | 'gold' | 'mono';
|
|
1460
|
+
type AuroraSpeed = 'slow' | 'normal' | 'fast';
|
|
1461
|
+
type AuroraGlow = 'subtle' | 'medium' | 'strong' | 'none';
|
|
1462
|
+
type AuroraRadius = 'sm' | 'md' | 'lg' | 'xl';
|
|
1463
|
+
type AuroraAnimation = 'flow' | 'wave' | 'pulse';
|
|
1464
|
+
interface AuroraBorderCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1465
|
+
variant?: AuroraVariant;
|
|
1466
|
+
speed?: AuroraSpeed;
|
|
1467
|
+
glow?: AuroraGlow;
|
|
1468
|
+
borderWidth?: 1 | 2 | 3 | number;
|
|
1469
|
+
radius?: AuroraRadius;
|
|
1470
|
+
animation?: AuroraAnimation;
|
|
1471
|
+
title?: string;
|
|
1472
|
+
subtitle?: string;
|
|
1473
|
+
description?: string;
|
|
1474
|
+
badgeText?: string;
|
|
1475
|
+
buttonText?: string;
|
|
1476
|
+
buttonHref?: string;
|
|
1477
|
+
onButtonClick?: () => void;
|
|
1424
1478
|
children?: React$1.ReactNode;
|
|
1425
1479
|
}
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1480
|
+
/**
|
|
1481
|
+
* AuroraBorderCard Component
|
|
1482
|
+
*
|
|
1483
|
+
* Displays a permanent visible border with a single, continuous traveling Aurora snake wave.
|
|
1484
|
+
* Crisp and luminous on both Light and Dark themes.
|
|
1485
|
+
*/
|
|
1486
|
+
declare const AuroraBorderCard: React$1.ForwardRefExoticComponent<AuroraBorderCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1487
|
+
|
|
1488
|
+
interface AIModelOption {
|
|
1489
|
+
id: string;
|
|
1490
|
+
name: string;
|
|
1491
|
+
badge?: string;
|
|
1492
|
+
icon?: React$1.ElementType;
|
|
1493
|
+
}
|
|
1494
|
+
interface AttachedFile {
|
|
1495
|
+
id: string;
|
|
1496
|
+
name: string;
|
|
1497
|
+
size?: string;
|
|
1498
|
+
type?: 'image' | 'file' | 'code';
|
|
1499
|
+
}
|
|
1500
|
+
interface AiPromptInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onSubmit'> {
|
|
1501
|
+
/**
|
|
1502
|
+
* Visual theme variant
|
|
1503
|
+
* @default "default"
|
|
1504
|
+
*/
|
|
1505
|
+
variant?: 'default' | 'glow' | 'aurora' | 'glass' | 'minimal';
|
|
1506
|
+
/**
|
|
1507
|
+
* Dimension scale
|
|
1508
|
+
* @default "md"
|
|
1509
|
+
*/
|
|
1510
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1511
|
+
/**
|
|
1512
|
+
* Text prompt value (controlled)
|
|
1513
|
+
*/
|
|
1514
|
+
value?: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* Default text prompt value (uncontrolled)
|
|
1517
|
+
*/
|
|
1518
|
+
defaultValue?: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* Callback fired when text changes
|
|
1521
|
+
*/
|
|
1522
|
+
onChange?: (value: string) => void;
|
|
1523
|
+
/**
|
|
1524
|
+
* Callback fired when prompt is submitted (via button or Enter key)
|
|
1525
|
+
*/
|
|
1526
|
+
onSubmit?: (prompt: string, options?: {
|
|
1527
|
+
model?: string;
|
|
1528
|
+
webSearch?: boolean;
|
|
1529
|
+
files?: AttachedFile[];
|
|
1530
|
+
}) => void;
|
|
1531
|
+
/**
|
|
1532
|
+
* Textarea placeholder text
|
|
1533
|
+
* @default "Ask anything or describe what you want to build..."
|
|
1534
|
+
*/
|
|
1535
|
+
placeholder?: string;
|
|
1536
|
+
/**
|
|
1537
|
+
* Whether the AI is currently generating a response (switches Send to Stop button)
|
|
1538
|
+
* @default false
|
|
1539
|
+
*/
|
|
1540
|
+
isLoading?: boolean;
|
|
1541
|
+
/**
|
|
1542
|
+
* Callback fired when user clicks stop generation
|
|
1543
|
+
*/
|
|
1544
|
+
onStop?: () => void;
|
|
1545
|
+
/**
|
|
1546
|
+
* List of available models in the selector dropdown
|
|
1547
|
+
*/
|
|
1548
|
+
models?: AIModelOption[];
|
|
1549
|
+
/**
|
|
1550
|
+
* Currently active model ID
|
|
1551
|
+
*/
|
|
1552
|
+
selectedModel?: string;
|
|
1553
|
+
/**
|
|
1554
|
+
* Callback when active model is changed
|
|
1555
|
+
*/
|
|
1556
|
+
onModelChange?: (modelId: string) => void;
|
|
1557
|
+
/**
|
|
1558
|
+
* Attached files list preview
|
|
1559
|
+
*/
|
|
1560
|
+
files?: AttachedFile[];
|
|
1561
|
+
/**
|
|
1562
|
+
* Callback when a file is removed
|
|
1563
|
+
*/
|
|
1564
|
+
onRemoveFile?: (fileId: string) => void;
|
|
1565
|
+
/**
|
|
1566
|
+
* Callback when user clicks the attach file button
|
|
1567
|
+
*/
|
|
1568
|
+
onAttachClick?: () => void;
|
|
1569
|
+
/**
|
|
1570
|
+
* Whether voice listening is active
|
|
1571
|
+
* @default false
|
|
1572
|
+
*/
|
|
1573
|
+
isListening?: boolean;
|
|
1574
|
+
/**
|
|
1575
|
+
* Callback when microphone button is clicked
|
|
1576
|
+
*/
|
|
1577
|
+
onVoiceToggle?: () => void;
|
|
1578
|
+
/**
|
|
1579
|
+
* Whether web search enhancement is enabled
|
|
1580
|
+
* @default false
|
|
1581
|
+
*/
|
|
1582
|
+
webSearchEnabled?: boolean;
|
|
1583
|
+
/**
|
|
1584
|
+
* Callback when web search toggle is clicked
|
|
1585
|
+
*/
|
|
1586
|
+
onWebSearchToggle?: () => void;
|
|
1587
|
+
/**
|
|
1588
|
+
* Whether Deep Reasoning mode is enabled
|
|
1589
|
+
* @default false
|
|
1590
|
+
*/
|
|
1591
|
+
reasoningEnabled?: boolean;
|
|
1592
|
+
/**
|
|
1593
|
+
* Callback when Deep Reasoning mode toggle is clicked
|
|
1594
|
+
*/
|
|
1595
|
+
onReasoningToggle?: () => void;
|
|
1596
|
+
/**
|
|
1597
|
+
* Disables all interactive inputs
|
|
1598
|
+
* @default false
|
|
1599
|
+
*/
|
|
1600
|
+
disabled?: boolean;
|
|
1601
|
+
}
|
|
1602
|
+
/**
|
|
1603
|
+
* AiPromptInput Component
|
|
1604
|
+
*
|
|
1605
|
+
* An ultra-premium input bar for conversational and agentic AI interfaces.
|
|
1606
|
+
* Supports auto-expanding textarea, model selector, attachments, voice pulse,
|
|
1607
|
+
* web search / reasoning toggles, and SVG perimeter-traveling Aurora waves.
|
|
1608
|
+
*/
|
|
1609
|
+
declare const AiPromptInput: React$1.ForwardRefExoticComponent<AiPromptInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1610
|
+
|
|
1611
|
+
declare const LoginFormPro: () => React$1.JSX.Element;
|
|
1612
|
+
declare const RegisterFormPro: () => React$1.JSX.Element;
|
|
1613
|
+
declare const PaymentFormPro: () => React$1.JSX.Element;
|
|
1614
|
+
declare const ProfileSettingsForm: () => React$1.JSX.Element;
|
|
1615
|
+
declare const SubscriptionForm: () => React$1.JSX.Element;
|
|
1616
|
+
declare const ContactFormPro: () => React$1.JSX.Element;
|
|
1617
|
+
declare const AdvancedSearchForm: () => React$1.JSX.Element;
|
|
1618
|
+
declare const FileUploadForm: () => React$1.JSX.Element;
|
|
1619
|
+
declare const FeedbackForm: () => React$1.JSX.Element;
|
|
1620
|
+
declare const InviteUsersForm: () => React$1.JSX.Element;
|
|
1621
|
+
|
|
1622
|
+
declare const ProductGallery: () => React$1.JSX.Element;
|
|
1623
|
+
declare const AddToCartBar: () => React$1.JSX.Element;
|
|
1624
|
+
declare const CartDrawerItem: () => React$1.JSX.Element | null;
|
|
1625
|
+
declare const OrderSummaryCard: () => React$1.JSX.Element;
|
|
1626
|
+
declare const PromoCodeInput: () => React$1.JSX.Element;
|
|
1627
|
+
declare const ShippingAddressForm: () => React$1.JSX.Element;
|
|
1628
|
+
declare const ProductReview: () => React$1.JSX.Element;
|
|
1629
|
+
declare const ColorSelector: () => React$1.JSX.Element;
|
|
1630
|
+
declare const SizeSelector: () => React$1.JSX.Element;
|
|
1631
|
+
declare const CategoryCard: () => React$1.JSX.Element;
|
|
1632
|
+
|
|
1633
|
+
declare const ChatBubbleUser: ({ message }: any) => React$1.JSX.Element;
|
|
1634
|
+
declare const ChatBubbleAI: ({ message }: any) => React$1.JSX.Element;
|
|
1635
|
+
declare const AIPromptInput: () => React$1.JSX.Element;
|
|
1636
|
+
declare const ThinkingLoader: () => React$1.JSX.Element;
|
|
1637
|
+
declare const ModelSelector: () => React$1.JSX.Element;
|
|
1638
|
+
declare const GeneratedCodeBlock: () => React$1.JSX.Element;
|
|
1639
|
+
declare const ChatHistorySidebar: () => React$1.JSX.Element;
|
|
1640
|
+
declare const AIFeatureCard: () => React$1.JSX.Element;
|
|
1641
|
+
declare const SuggestionChips: () => React$1.JSX.Element;
|
|
1642
|
+
declare const VoiceInputPulse: () => React$1.JSX.Element;
|
|
1643
|
+
|
|
1644
|
+
interface DataTableProColumn<T = any> {
|
|
1645
|
+
header: React$1.ReactNode;
|
|
1646
|
+
accessorKey?: keyof T | string;
|
|
1647
|
+
cell?: (item: T, index: number) => React$1.ReactNode;
|
|
1648
|
+
className?: string;
|
|
1649
|
+
}
|
|
1650
|
+
interface DataTableProProps<T = any> extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1651
|
+
data?: T[];
|
|
1652
|
+
columns?: DataTableProColumn<T>[];
|
|
1653
|
+
searchPlaceholder?: string;
|
|
1654
|
+
itemsPerPage?: number;
|
|
1655
|
+
showSearch?: boolean;
|
|
1656
|
+
showExport?: boolean;
|
|
1429
1657
|
children?: React$1.ReactNode;
|
|
1430
1658
|
}
|
|
1431
|
-
|
|
1659
|
+
type DataTableProComponent = ((props: DataTableProProps) => React$1.ReactElement | null) & {
|
|
1660
|
+
Header: typeof TableHeader;
|
|
1661
|
+
Body: typeof TableBody;
|
|
1662
|
+
Footer: typeof TableFooter;
|
|
1663
|
+
Row: typeof TableRow;
|
|
1664
|
+
Head: typeof TableHead;
|
|
1665
|
+
Cell: typeof TableCell;
|
|
1666
|
+
Caption: typeof TableCaption;
|
|
1667
|
+
};
|
|
1668
|
+
declare const DataTablePro: DataTableProComponent;
|
|
1669
|
+
declare const InvoiceTable: () => React$1.JSX.Element;
|
|
1670
|
+
declare const UserDirectoryTable: () => React$1.JSX.Element;
|
|
1671
|
+
declare const TransactionHistory: () => React$1.JSX.Element;
|
|
1672
|
+
declare const FileExplorerTable: () => React$1.JSX.Element;
|
|
1673
|
+
declare const LeaderboardTable: () => React$1.JSX.Element;
|
|
1674
|
+
declare const ProductInventoryTable: () => React$1.JSX.Element;
|
|
1675
|
+
declare const ScheduleTable: () => React$1.JSX.Element;
|
|
1676
|
+
declare const PricingComparisonTable: () => React$1.JSX.Element;
|
|
1677
|
+
declare const CompactDataList: () => React$1.JSX.Element;
|
|
1678
|
+
|
|
1679
|
+
declare const DashboardShell: ({ children }: any) => React$1.JSX.Element;
|
|
1680
|
+
declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => React$1.JSX.Element;
|
|
1681
|
+
declare const ActivityFeed: () => React$1.JSX.Element;
|
|
1682
|
+
declare const ProgressWidget: () => React$1.JSX.Element;
|
|
1683
|
+
declare const QuickActionsWidget: () => React$1.JSX.Element;
|
|
1684
|
+
declare const TaskChecklist: () => React$1.JSX.Element;
|
|
1685
|
+
declare const StorageWidget: () => React$1.JSX.Element;
|
|
1686
|
+
declare const RevenueChartWidget: () => React$1.JSX.Element;
|
|
1687
|
+
declare const RecentUsersWidget: () => React$1.JSX.Element;
|
|
1688
|
+
declare const ServerStatusWidget: () => React$1.JSX.Element;
|
|
1689
|
+
|
|
1690
|
+
declare const FilterBar: () => React$1.JSX.Element;
|
|
1691
|
+
declare const LanguageSelector: () => React$1.JSX.Element;
|
|
1692
|
+
declare const UserMenuDropdown: () => React$1.JSX.Element;
|
|
1693
|
+
declare const TreeNavigation: () => React$1.JSX.Element;
|
|
1694
|
+
declare const ContextActionBar: () => React$1.JSX.Element;
|
|
1695
|
+
declare const PaginationPro: () => React$1.JSX.Element;
|
|
1696
|
+
|
|
1697
|
+
declare const ConfettiSuccess: () => React$1.JSX.Element;
|
|
1698
|
+
declare const ActionToast: () => React$1.JSX.Element;
|
|
1699
|
+
declare const MultiStepProgress: ({ current }: any) => React$1.JSX.Element;
|
|
1700
|
+
declare const SkeletonList: () => React$1.JSX.Element;
|
|
1701
|
+
declare const EmptyStatePro: () => React$1.JSX.Element;
|
|
1702
|
+
declare const TooltipForm: () => React$1.JSX.Element;
|
|
1703
|
+
declare const PasswordStrengthMeter: ({ score }: any) => React$1.JSX.Element;
|
|
1704
|
+
declare const UploadProgress: () => React$1.JSX.Element;
|
|
1705
|
+
|
|
1706
|
+
declare const WaitlistForm: () => React$1.JSX.Element;
|
|
1707
|
+
declare const PricingToggle: () => React$1.JSX.Element;
|
|
1708
|
+
declare const FeatureShowcase: () => React$1.JSX.Element;
|
|
1709
|
+
declare const TrustBanner: () => React$1.JSX.Element;
|
|
1710
|
+
declare const ComparisonTableMock: () => React$1.JSX.Element;
|
|
1711
|
+
declare const AnimatedHeroText: () => React$1.JSX.Element;
|
|
1712
|
+
declare const StatCounter: () => React$1.JSX.Element;
|
|
1713
|
+
declare const NewsletterSignup: () => React$1.JSX.Element;
|
|
1714
|
+
declare const VideoModalVisual: () => React$1.JSX.Element;
|
|
1715
|
+
declare const GradientCTABlock: () => React$1.JSX.Element;
|
|
1716
|
+
|
|
1717
|
+
declare const ContactList: () => React$1.JSX.Element;
|
|
1718
|
+
declare const NotificationList: () => React$1.JSX.Element;
|
|
1719
|
+
declare const TimelineVertical: () => React$1.JSX.Element;
|
|
1720
|
+
declare const StepList: () => React$1.JSX.Element;
|
|
1721
|
+
declare const FAQAccordionList: () => React$1.JSX.Element;
|
|
1722
|
+
declare const FileDownloadList: () => React$1.JSX.Element;
|
|
1723
|
+
declare const MessageList: () => React$1.JSX.Element;
|
|
1724
|
+
declare const JobBoardList: () => React$1.JSX.Element;
|
|
1725
|
+
declare const EventScheduleList: () => React$1.JSX.Element;
|
|
1726
|
+
declare const RecentCommentsList: () => React$1.JSX.Element;
|
|
1727
|
+
|
|
1728
|
+
declare const SplitScreenLayout: () => React$1.JSX.Element;
|
|
1729
|
+
declare const AuthenticationLayout: () => React$1.JSX.Element;
|
|
1730
|
+
declare const SidebarLayout: () => React$1.JSX.Element;
|
|
1731
|
+
declare const DashboardGridLayout: () => React$1.JSX.Element;
|
|
1732
|
+
declare const BentoGridVisual: () => React$1.JSX.Element;
|
|
1733
|
+
declare const KanbanBoardVisual: () => React$1.JSX.Element;
|
|
1734
|
+
declare const ChatLayoutVisual: () => React$1.JSX.Element;
|
|
1735
|
+
declare const FeedLayout: () => React$1.JSX.Element;
|
|
1736
|
+
declare const DocumentationLayout: () => React$1.JSX.Element;
|
|
1737
|
+
declare const HeaderFooterLayout: () => React$1.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
|
|
1740
|
+
declare function SplitButton({ primary, secondary, onPrimary, onSecondary, className }: {
|
|
1741
|
+
primary: string;
|
|
1742
|
+
secondary: string;
|
|
1743
|
+
onPrimary?: () => void;
|
|
1744
|
+
onSecondary?: () => void;
|
|
1745
|
+
className?: string;
|
|
1746
|
+
}): React$1.JSX.Element;
|
|
1747
|
+
declare function CopyTextButton({ text, className }: {
|
|
1748
|
+
text: string;
|
|
1749
|
+
className?: string;
|
|
1750
|
+
}): React$1.JSX.Element;
|
|
1751
|
+
declare function ExpandButton({ children, icon, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1752
|
+
icon: React$1.ReactNode;
|
|
1753
|
+
}): React$1.JSX.Element;
|
|
1754
|
+
declare function StatusButton({ status, children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1755
|
+
status?: "idle" | "loading" | "success" | "error";
|
|
1756
|
+
}): React$1.JSX.Element;
|
|
1757
|
+
declare function SegmentedButton({ options, value, onChange, className }: {
|
|
1758
|
+
options: string[];
|
|
1759
|
+
value: string;
|
|
1760
|
+
onChange: (val: string) => void;
|
|
1761
|
+
className?: string;
|
|
1762
|
+
}): React$1.JSX.Element;
|
|
1763
|
+
declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
|
|
1432
1764
|
|
|
1433
|
-
|
|
1765
|
+
declare function NeumorphicCard({ children, className }: {
|
|
1766
|
+
children: React$1.ReactNode;
|
|
1767
|
+
className?: string;
|
|
1768
|
+
}): React$1.JSX.Element;
|
|
1769
|
+
declare function GradientMeshCard({ children, className }: {
|
|
1770
|
+
children: React$1.ReactNode;
|
|
1771
|
+
className?: string;
|
|
1772
|
+
}): React$1.JSX.Element;
|
|
1773
|
+
declare function TiltCard({ children, className }: {
|
|
1774
|
+
children: React$1.ReactNode;
|
|
1775
|
+
className?: string;
|
|
1776
|
+
}): React$1.JSX.Element;
|
|
1777
|
+
declare function FeatureCard({ icon, title, description, className }: {
|
|
1778
|
+
icon: React$1.ReactNode;
|
|
1434
1779
|
title: string;
|
|
1435
1780
|
description: string;
|
|
1436
|
-
icon?: LucideIcon;
|
|
1437
|
-
gradient?: string;
|
|
1438
1781
|
className?: string;
|
|
1439
|
-
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
speed?: number;
|
|
1446
|
-
direction?: "left" | "right";
|
|
1447
|
-
pauseOnHover?: boolean;
|
|
1782
|
+
}): React$1.JSX.Element;
|
|
1783
|
+
declare function MetricCard({ title, value, change, changeType, className }: {
|
|
1784
|
+
title: string;
|
|
1785
|
+
value: string;
|
|
1786
|
+
change: string;
|
|
1787
|
+
changeType?: "positive" | "negative" | "neutral";
|
|
1448
1788
|
className?: string;
|
|
1449
|
-
}
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
direction?: "up" | "down";
|
|
1454
|
-
delay?: number;
|
|
1789
|
+
}): React$1.JSX.Element;
|
|
1790
|
+
|
|
1791
|
+
declare function OTPCodeInput({ length, className, onChange }: {
|
|
1792
|
+
length?: number;
|
|
1455
1793
|
className?: string;
|
|
1456
|
-
|
|
1457
|
-
}
|
|
1458
|
-
declare function
|
|
1459
|
-
|
|
1460
|
-
text: string;
|
|
1461
|
-
duration?: number;
|
|
1794
|
+
onChange?: (val: string) => void;
|
|
1795
|
+
}): React$1.JSX.Element;
|
|
1796
|
+
declare function TagInput({ placeholder, className }: {
|
|
1797
|
+
placeholder?: string;
|
|
1462
1798
|
className?: string;
|
|
1463
|
-
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1799
|
+
}): React$1.JSX.Element;
|
|
1800
|
+
declare function CurrencyInput({ currency, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
1801
|
+
currency?: string;
|
|
1802
|
+
}): React$1.JSX.Element;
|
|
1803
|
+
declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): React$1.JSX.Element;
|
|
1804
|
+
declare function ColorPickerInput({ value: initial, label, className, onChange }: {
|
|
1805
|
+
value?: string;
|
|
1806
|
+
label?: string;
|
|
1468
1807
|
className?: string;
|
|
1469
|
-
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1808
|
+
onChange?: (color: string) => void;
|
|
1809
|
+
}): React$1.JSX.Element;
|
|
1810
|
+
|
|
1811
|
+
declare const RadioCard: ({ title, description, checked, onChange, value, name }: any) => React$1.JSX.Element;
|
|
1812
|
+
declare const ColorSwatch: ({ color, selected, onClick }: any) => React$1.JSX.Element;
|
|
1813
|
+
declare const NumberStepper: ({ value, onChange, min, max }: any) => React$1.JSX.Element;
|
|
1814
|
+
declare const FileDropzone: ({ onDrop }: any) => React$1.JSX.Element;
|
|
1815
|
+
declare const RatingStars: ({ rating, max, onRate }: any) => React$1.JSX.Element;
|
|
1816
|
+
declare const ToggleGroupItemWrapper: ({ children, active, onClick }: any) => React$1.JSX.Element;
|
|
1817
|
+
declare const ToggleGroupWrapper: ({ children }: any) => React$1.JSX.Element;
|
|
1818
|
+
declare const InputWithLabelOverlay: ({ label, id, ...props }: any) => React$1.JSX.Element;
|
|
1819
|
+
declare const VisualSelectCard: ({ icon: Icon, title, description, selected }: any) => React$1.JSX.Element;
|
|
1820
|
+
declare const FloatingActionForm: ({ isOpen, toggle, children }: any) => React$1.JSX.Element;
|
|
1821
|
+
declare const OTPInput: ({ length }: any) => React$1.JSX.Element;
|
|
1822
|
+
|
|
1472
1823
|
interface AnimatedGradientBorderProps {
|
|
1824
|
+
/**
|
|
1825
|
+
* Описание для children
|
|
1826
|
+
* @default undefined
|
|
1827
|
+
*/
|
|
1473
1828
|
children: React$1.ReactNode;
|
|
1829
|
+
/**
|
|
1830
|
+
* Описание для className
|
|
1831
|
+
* @default undefined
|
|
1832
|
+
*/
|
|
1474
1833
|
className?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* Описание для containerClassName
|
|
1836
|
+
* @default undefined
|
|
1837
|
+
*/
|
|
1475
1838
|
containerClassName?: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* Описание для gradientClassName
|
|
1841
|
+
* @default undefined
|
|
1842
|
+
*/
|
|
1476
1843
|
gradientClassName?: string;
|
|
1844
|
+
/**
|
|
1845
|
+
* Описание для duration
|
|
1846
|
+
* @default undefined
|
|
1847
|
+
*/
|
|
1477
1848
|
duration?: number;
|
|
1478
1849
|
}
|
|
1479
|
-
declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps):
|
|
1480
|
-
interface DockProps {
|
|
1481
|
-
items: {
|
|
1482
|
-
icon: React$1.ReactNode;
|
|
1483
|
-
label: string;
|
|
1484
|
-
onClick?: () => void;
|
|
1485
|
-
}[];
|
|
1486
|
-
className?: string;
|
|
1487
|
-
magnification?: number;
|
|
1488
|
-
distance?: number;
|
|
1489
|
-
}
|
|
1490
|
-
declare function Dock({ items, className, magnification, distance, }: DockProps): react_jsx_runtime.JSX.Element;
|
|
1850
|
+
declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps): React$1.JSX.Element;
|
|
1491
1851
|
interface AnimatedBeamProps {
|
|
1852
|
+
/**
|
|
1853
|
+
* Описание для className
|
|
1854
|
+
* @default undefined
|
|
1855
|
+
*/
|
|
1492
1856
|
className?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
* Описание для children
|
|
1859
|
+
* @default undefined
|
|
1860
|
+
*/
|
|
1493
1861
|
children: React$1.ReactNode;
|
|
1494
1862
|
}
|
|
1495
|
-
declare function AnimatedBeam({ className, children }: AnimatedBeamProps):
|
|
1863
|
+
declare function AnimatedBeam({ className, children }: AnimatedBeamProps): React$1.JSX.Element;
|
|
1496
1864
|
interface ShinyTextProps {
|
|
1865
|
+
/**
|
|
1866
|
+
* Описание для children
|
|
1867
|
+
* @default undefined
|
|
1868
|
+
*/
|
|
1497
1869
|
children: React$1.ReactNode;
|
|
1870
|
+
/**
|
|
1871
|
+
* Описание для className
|
|
1872
|
+
* @default undefined
|
|
1873
|
+
*/
|
|
1498
1874
|
className?: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* Описание для shimmerWidth
|
|
1877
|
+
* @default undefined
|
|
1878
|
+
*/
|
|
1499
1879
|
shimmerWidth?: number;
|
|
1500
1880
|
}
|
|
1501
|
-
declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps):
|
|
1881
|
+
declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): React$1.JSX.Element;
|
|
1502
1882
|
interface RetroGridProps {
|
|
1883
|
+
/**
|
|
1884
|
+
* Описание для className
|
|
1885
|
+
* @default undefined
|
|
1886
|
+
*/
|
|
1503
1887
|
className?: string;
|
|
1888
|
+
/**
|
|
1889
|
+
* Описание для angle
|
|
1890
|
+
* @default undefined
|
|
1891
|
+
*/
|
|
1504
1892
|
angle?: number;
|
|
1505
1893
|
}
|
|
1506
|
-
declare function RetroGrid({ className, angle }: RetroGridProps):
|
|
1894
|
+
declare function RetroGrid({ className, angle }: RetroGridProps): React$1.JSX.Element;
|
|
1507
1895
|
interface MeteorsProps {
|
|
1896
|
+
/**
|
|
1897
|
+
* Описание для number
|
|
1898
|
+
* @default undefined
|
|
1899
|
+
*/
|
|
1508
1900
|
number?: number;
|
|
1901
|
+
/**
|
|
1902
|
+
* Описание для className
|
|
1903
|
+
* @default undefined
|
|
1904
|
+
*/
|
|
1509
1905
|
className?: string;
|
|
1510
1906
|
}
|
|
1511
|
-
declare function Meteors({ number, className }: MeteorsProps):
|
|
1907
|
+
declare function Meteors({ number, className }: MeteorsProps): React$1.JSX.Element;
|
|
1512
1908
|
|
|
1513
1909
|
interface MorphingTextProps {
|
|
1910
|
+
/**
|
|
1911
|
+
* Описание для texts
|
|
1912
|
+
* @default undefined
|
|
1913
|
+
*/
|
|
1514
1914
|
texts: string[];
|
|
1915
|
+
/**
|
|
1916
|
+
* Описание для className
|
|
1917
|
+
* @default undefined
|
|
1918
|
+
*/
|
|
1515
1919
|
className?: string;
|
|
1920
|
+
/**
|
|
1921
|
+
* Описание для interval
|
|
1922
|
+
* @default undefined
|
|
1923
|
+
*/
|
|
1516
1924
|
interval?: number;
|
|
1517
1925
|
}
|
|
1518
|
-
declare function MorphingText({ texts, className, interval, }: MorphingTextProps):
|
|
1926
|
+
declare function MorphingText({ texts, className, interval, }: MorphingTextProps): React$1.JSX.Element;
|
|
1519
1927
|
interface AnimatedListProps {
|
|
1928
|
+
/**
|
|
1929
|
+
* Описание для children
|
|
1930
|
+
* @default undefined
|
|
1931
|
+
*/
|
|
1520
1932
|
children: React$1.ReactNode;
|
|
1933
|
+
/**
|
|
1934
|
+
* Описание для className
|
|
1935
|
+
* @default undefined
|
|
1936
|
+
*/
|
|
1521
1937
|
className?: string;
|
|
1938
|
+
/**
|
|
1939
|
+
* Описание для delay
|
|
1940
|
+
* @default undefined
|
|
1941
|
+
*/
|
|
1522
1942
|
delay?: number;
|
|
1523
1943
|
}
|
|
1524
|
-
declare function AnimatedList({ children, className, delay, }: AnimatedListProps):
|
|
1525
|
-
|
|
1526
|
-
children: React$1.ReactNode;
|
|
1527
|
-
className?: string;
|
|
1528
|
-
delay?: number;
|
|
1529
|
-
yOffset?: number;
|
|
1530
|
-
duration?: number;
|
|
1531
|
-
inView?: boolean;
|
|
1532
|
-
}
|
|
1533
|
-
declare function BlurFade({ children, className, delay, yOffset, duration, inView, }: BlurFadeProps): react_jsx_runtime.JSX.Element;
|
|
1944
|
+
declare function AnimatedList({ children, className, delay, }: AnimatedListProps): React$1.JSX.Element;
|
|
1945
|
+
|
|
1534
1946
|
interface InteractiveHoverButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1947
|
+
/**
|
|
1948
|
+
* Описание для text
|
|
1949
|
+
* @default undefined
|
|
1950
|
+
*/
|
|
1535
1951
|
text?: string;
|
|
1952
|
+
/**
|
|
1953
|
+
* Описание для className
|
|
1954
|
+
* @default undefined
|
|
1955
|
+
*/
|
|
1536
1956
|
className?: string;
|
|
1537
1957
|
}
|
|
1538
|
-
declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps):
|
|
1958
|
+
declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): React$1.JSX.Element;
|
|
1539
1959
|
interface PulsatingButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1960
|
+
/**
|
|
1961
|
+
* Описание для pulseColor
|
|
1962
|
+
* @default undefined
|
|
1963
|
+
*/
|
|
1540
1964
|
pulseColor?: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* Описание для duration
|
|
1967
|
+
* @default undefined
|
|
1968
|
+
*/
|
|
1541
1969
|
duration?: string;
|
|
1970
|
+
/**
|
|
1971
|
+
* Описание для className
|
|
1972
|
+
* @default undefined
|
|
1973
|
+
*/
|
|
1542
1974
|
className?: string;
|
|
1543
1975
|
}
|
|
1544
|
-
declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps):
|
|
1976
|
+
declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): React$1.JSX.Element;
|
|
1545
1977
|
interface RainbowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1978
|
+
/**
|
|
1979
|
+
* Описание для className
|
|
1980
|
+
* @default undefined
|
|
1981
|
+
*/
|
|
1546
1982
|
className?: string;
|
|
1547
1983
|
}
|
|
1548
|
-
declare function RainbowButton({ children, className, ...props }: RainbowButtonProps):
|
|
1984
|
+
declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): React$1.JSX.Element;
|
|
1549
1985
|
interface CoolModeProps {
|
|
1986
|
+
/**
|
|
1987
|
+
* Описание для children
|
|
1988
|
+
* @default undefined
|
|
1989
|
+
*/
|
|
1550
1990
|
children: React$1.ReactElement;
|
|
1991
|
+
/**
|
|
1992
|
+
* Описание для className
|
|
1993
|
+
* @default undefined
|
|
1994
|
+
*/
|
|
1551
1995
|
className?: string;
|
|
1552
1996
|
}
|
|
1553
|
-
declare function CoolMode({ children, className }: CoolModeProps):
|
|
1997
|
+
declare function CoolMode({ children, className }: CoolModeProps): React$1.JSX.Element;
|
|
1554
1998
|
interface WordPullUpProps {
|
|
1999
|
+
/**
|
|
2000
|
+
* Описание для words
|
|
2001
|
+
* @default undefined
|
|
2002
|
+
*/
|
|
1555
2003
|
words: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* Описание для className
|
|
2006
|
+
* @default undefined
|
|
2007
|
+
*/
|
|
1556
2008
|
className?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* Описание для delayMultiple
|
|
2011
|
+
* @default undefined
|
|
2012
|
+
*/
|
|
1557
2013
|
delayMultiple?: number;
|
|
1558
2014
|
}
|
|
1559
|
-
declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps):
|
|
2015
|
+
declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): React$1.JSX.Element;
|
|
1560
2016
|
interface BoxRevealProps {
|
|
2017
|
+
/**
|
|
2018
|
+
* Описание для children
|
|
2019
|
+
* @default undefined
|
|
2020
|
+
*/
|
|
1561
2021
|
children: React$1.ReactNode;
|
|
2022
|
+
/**
|
|
2023
|
+
* Описание для className
|
|
2024
|
+
* @default undefined
|
|
2025
|
+
*/
|
|
1562
2026
|
className?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* Описание для boxColor
|
|
2029
|
+
* @default undefined
|
|
2030
|
+
*/
|
|
1563
2031
|
boxColor?: string;
|
|
2032
|
+
/**
|
|
2033
|
+
* Описание для duration
|
|
2034
|
+
* @default undefined
|
|
2035
|
+
*/
|
|
1564
2036
|
duration?: number;
|
|
2037
|
+
/**
|
|
2038
|
+
* Описание для delay
|
|
2039
|
+
* @default undefined
|
|
2040
|
+
*/
|
|
1565
2041
|
delay?: number;
|
|
1566
2042
|
}
|
|
1567
|
-
declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps):
|
|
1568
|
-
interface TextShimmerProps {
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1579
|
-
declare function OutlineGradientButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
1580
|
-
declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
1581
|
-
declare function SplitButton({ primary, secondary, onPrimary, onSecondary, className }: {
|
|
1582
|
-
primary: string;
|
|
1583
|
-
secondary: string;
|
|
1584
|
-
onPrimary?: () => void;
|
|
1585
|
-
onSecondary?: () => void;
|
|
1586
|
-
className?: string;
|
|
1587
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1588
|
-
declare function CopyTextButton({ text, className }: {
|
|
1589
|
-
text: string;
|
|
1590
|
-
className?: string;
|
|
1591
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1592
|
-
declare function ExpandButton({ children, icon, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1593
|
-
icon: React$1.ReactNode;
|
|
1594
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1595
|
-
declare function StatusButton({ status, children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1596
|
-
status?: "idle" | "loading" | "success" | "error";
|
|
1597
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1598
|
-
declare function GlassmorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
1599
|
-
declare function SegmentedButton({ options, value, onChange, className }: {
|
|
1600
|
-
options: string[];
|
|
1601
|
-
value: string;
|
|
1602
|
-
onChange: (val: string) => void;
|
|
1603
|
-
className?: string;
|
|
1604
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1605
|
-
declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
1606
|
-
|
|
1607
|
-
declare function NeumorphicCard({ children, className }: {
|
|
1608
|
-
children: React$1.ReactNode;
|
|
1609
|
-
className?: string;
|
|
1610
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1611
|
-
declare function GradientMeshCard({ children, className }: {
|
|
1612
|
-
children: React$1.ReactNode;
|
|
1613
|
-
className?: string;
|
|
1614
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1615
|
-
declare function TiltCard({ children, className }: {
|
|
1616
|
-
children: React$1.ReactNode;
|
|
1617
|
-
className?: string;
|
|
1618
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1619
|
-
declare function FeatureCard({ icon, title, description, className }: {
|
|
1620
|
-
icon: React$1.ReactNode;
|
|
1621
|
-
title: string;
|
|
1622
|
-
description: string;
|
|
1623
|
-
className?: string;
|
|
1624
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1625
|
-
declare function PricingCardPro({ name, price, period, features, popular, className, ctaText }: {
|
|
1626
|
-
name: string;
|
|
1627
|
-
price: string;
|
|
1628
|
-
period?: string;
|
|
1629
|
-
features: string[];
|
|
1630
|
-
popular?: boolean;
|
|
1631
|
-
className?: string;
|
|
1632
|
-
ctaText?: string;
|
|
1633
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1634
|
-
declare function TestimonialCardV2({ quote, author, role, avatar, className }: {
|
|
1635
|
-
quote: string;
|
|
1636
|
-
author: string;
|
|
1637
|
-
role: string;
|
|
1638
|
-
avatar?: string;
|
|
1639
|
-
className?: string;
|
|
1640
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1641
|
-
declare function MetricCard({ title, value, change, changeType, className }: {
|
|
1642
|
-
title: string;
|
|
1643
|
-
value: string;
|
|
1644
|
-
change: string;
|
|
1645
|
-
changeType?: "positive" | "negative" | "neutral";
|
|
1646
|
-
className?: string;
|
|
1647
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1648
|
-
declare function ImageOverlayCard({ title, subtitle, gradient, className }: {
|
|
1649
|
-
title: string;
|
|
1650
|
-
subtitle: string;
|
|
1651
|
-
gradient?: string;
|
|
1652
|
-
className?: string;
|
|
1653
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1654
|
-
declare function ProfileCardFull({ name, role, bio, stats, className }: {
|
|
1655
|
-
name: string;
|
|
1656
|
-
role: string;
|
|
1657
|
-
bio?: string;
|
|
1658
|
-
stats?: {
|
|
1659
|
-
label: string;
|
|
1660
|
-
value: string;
|
|
1661
|
-
}[];
|
|
1662
|
-
className?: string;
|
|
1663
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1664
|
-
declare function NotificationCard({ title, message, time, type, className }: {
|
|
1665
|
-
title: string;
|
|
1666
|
-
message: string;
|
|
1667
|
-
time: string;
|
|
1668
|
-
type?: "info" | "success" | "warning" | "error";
|
|
1669
|
-
className?: string;
|
|
1670
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1671
|
-
|
|
1672
|
-
declare function GradientFocusInput({ className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
|
|
1673
|
-
declare function AnimatedLabelInput({ label, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
1674
|
-
label: string;
|
|
1675
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1676
|
-
declare function OTPCodeInput({ length, className, onChange }: {
|
|
1677
|
-
length?: number;
|
|
1678
|
-
className?: string;
|
|
1679
|
-
onChange?: (val: string) => void;
|
|
1680
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1681
|
-
declare function TagInput({ placeholder, className }: {
|
|
1682
|
-
placeholder?: string;
|
|
1683
|
-
className?: string;
|
|
1684
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1685
|
-
declare function SearchCommandInput({ className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
|
|
1686
|
-
declare function CurrencyInput({ currency, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
1687
|
-
currency?: string;
|
|
1688
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1689
|
-
declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): react_jsx_runtime.JSX.Element;
|
|
1690
|
-
declare function RangeSliderInput({ min, max, value: initialValue, label, className }: {
|
|
1691
|
-
min?: number;
|
|
1692
|
-
max?: number;
|
|
1693
|
-
value?: number;
|
|
1694
|
-
label?: string;
|
|
1695
|
-
className?: string;
|
|
1696
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1697
|
-
declare function ColorPickerInput({ value: initial, label, className, onChange }: {
|
|
1698
|
-
value?: string;
|
|
1699
|
-
label?: string;
|
|
1700
|
-
className?: string;
|
|
1701
|
-
onChange?: (color: string) => void;
|
|
1702
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1703
|
-
declare function ToggleInput({ label, className }: {
|
|
1704
|
-
label: string;
|
|
2043
|
+
declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): React$1.JSX.Element;
|
|
2044
|
+
interface TextShimmerProps {
|
|
2045
|
+
/**
|
|
2046
|
+
* Описание для children
|
|
2047
|
+
* @default undefined
|
|
2048
|
+
*/
|
|
2049
|
+
children: React$1.ReactNode;
|
|
2050
|
+
/**
|
|
2051
|
+
* Описание для className
|
|
2052
|
+
* @default undefined
|
|
2053
|
+
*/
|
|
1705
2054
|
className?: string;
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
/**
|
|
1712
|
-
|
|
2055
|
+
/**
|
|
2056
|
+
* Описание для duration
|
|
2057
|
+
* @default undefined
|
|
2058
|
+
*/
|
|
2059
|
+
duration?: number;
|
|
2060
|
+
/**
|
|
2061
|
+
* Описание для spread
|
|
2062
|
+
* @default undefined
|
|
2063
|
+
*/
|
|
2064
|
+
spread?: number;
|
|
1713
2065
|
}
|
|
1714
|
-
declare function
|
|
2066
|
+
declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): React$1.JSX.Element;
|
|
2067
|
+
|
|
1715
2068
|
interface DrawerProps {
|
|
1716
2069
|
/** Whether the drawer is open */
|
|
1717
2070
|
open: boolean;
|
|
@@ -1726,7 +2079,7 @@ interface DrawerProps {
|
|
|
1726
2079
|
/** Title for the drawer header */
|
|
1727
2080
|
title?: string;
|
|
1728
2081
|
}
|
|
1729
|
-
declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps):
|
|
2082
|
+
declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): React$1.JSX.Element;
|
|
1730
2083
|
interface CommandPaletteItem {
|
|
1731
2084
|
/** Unique identifier */
|
|
1732
2085
|
id: string;
|
|
@@ -1751,7 +2104,7 @@ interface CommandPaletteProps {
|
|
|
1751
2104
|
/** Additional CSS classes */
|
|
1752
2105
|
className?: string;
|
|
1753
2106
|
}
|
|
1754
|
-
declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps):
|
|
2107
|
+
declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): React$1.JSX.Element;
|
|
1755
2108
|
interface ContextMenuItem {
|
|
1756
2109
|
/** Display label */
|
|
1757
2110
|
label: string;
|
|
@@ -1774,7 +2127,7 @@ interface ContextMenuProps {
|
|
|
1774
2127
|
/** Additional CSS classes */
|
|
1775
2128
|
className?: string;
|
|
1776
2129
|
}
|
|
1777
|
-
declare function ContextMenu({ items, children, className }: ContextMenuProps):
|
|
2130
|
+
declare function ContextMenu({ items, children, className }: ContextMenuProps): React$1.JSX.Element;
|
|
1778
2131
|
|
|
1779
2132
|
declare function ImageCarousel({ images, autoPlay, interval, className }: {
|
|
1780
2133
|
images: {
|
|
@@ -1784,57 +2137,57 @@ declare function ImageCarousel({ images, autoPlay, interval, className }: {
|
|
|
1784
2137
|
autoPlay?: boolean;
|
|
1785
2138
|
interval?: number;
|
|
1786
2139
|
className?: string;
|
|
1787
|
-
}):
|
|
2140
|
+
}): React$1.JSX.Element;
|
|
1788
2141
|
declare function VideoPlayer({ title, duration, thumbnail, className }: {
|
|
1789
2142
|
title?: string;
|
|
1790
2143
|
duration?: string;
|
|
1791
2144
|
thumbnail?: string;
|
|
1792
2145
|
className?: string;
|
|
1793
|
-
}):
|
|
2146
|
+
}): React$1.JSX.Element;
|
|
1794
2147
|
declare function AudioWaveform({ playing, bars, className }: {
|
|
1795
2148
|
playing?: boolean;
|
|
1796
2149
|
bars?: number;
|
|
1797
2150
|
className?: string;
|
|
1798
|
-
}):
|
|
2151
|
+
}): React$1.JSX.Element;
|
|
1799
2152
|
declare function FilePreviewCard({ name, size, type, className }: {
|
|
1800
2153
|
name: string;
|
|
1801
2154
|
size: string;
|
|
1802
2155
|
type?: "file" | "image" | "video" | "pdf" | "code";
|
|
1803
2156
|
className?: string;
|
|
1804
|
-
}):
|
|
2157
|
+
}): React$1.JSX.Element;
|
|
1805
2158
|
declare function EmbedCard({ title, description, domain, favicon, className }: {
|
|
1806
2159
|
title: string;
|
|
1807
2160
|
description?: string;
|
|
1808
2161
|
domain: string;
|
|
1809
2162
|
favicon?: string;
|
|
1810
2163
|
className?: string;
|
|
1811
|
-
}):
|
|
2164
|
+
}): React$1.JSX.Element;
|
|
1812
2165
|
declare function MusicPlayer({ title, artist, album, className }: {
|
|
1813
2166
|
title: string;
|
|
1814
2167
|
artist: string;
|
|
1815
2168
|
album?: string;
|
|
1816
2169
|
className?: string;
|
|
1817
|
-
}):
|
|
2170
|
+
}): React$1.JSX.Element;
|
|
1818
2171
|
declare function ImageCompare({ leftImage, rightImage, leftLabel, rightLabel, className }: {
|
|
1819
2172
|
leftImage?: string;
|
|
1820
2173
|
rightImage?: string;
|
|
1821
2174
|
leftLabel?: string;
|
|
1822
2175
|
rightLabel?: string;
|
|
1823
2176
|
className?: string;
|
|
1824
|
-
}):
|
|
2177
|
+
}): React$1.JSX.Element;
|
|
1825
2178
|
declare function GalleryGrid({ items, className }: {
|
|
1826
2179
|
items: {
|
|
1827
2180
|
title: string;
|
|
1828
2181
|
color?: string;
|
|
1829
2182
|
}[];
|
|
1830
2183
|
className?: string;
|
|
1831
|
-
}):
|
|
2184
|
+
}): React$1.JSX.Element;
|
|
1832
2185
|
declare function CodeSnippet({ code, language, filename, className }: {
|
|
1833
2186
|
code: string;
|
|
1834
2187
|
language?: string;
|
|
1835
2188
|
filename?: string;
|
|
1836
2189
|
className?: string;
|
|
1837
|
-
}):
|
|
2190
|
+
}): React$1.JSX.Element;
|
|
1838
2191
|
declare function TestimonialCarousel({ testimonials, className }: {
|
|
1839
2192
|
testimonials: {
|
|
1840
2193
|
quote: string;
|
|
@@ -1842,7 +2195,7 @@ declare function TestimonialCarousel({ testimonials, className }: {
|
|
|
1842
2195
|
role: string;
|
|
1843
2196
|
}[];
|
|
1844
2197
|
className?: string;
|
|
1845
|
-
}):
|
|
2198
|
+
}): React$1.JSX.Element;
|
|
1846
2199
|
|
|
1847
2200
|
declare function DonutChart({ value, max, size, strokeWidth, color, label, className }: {
|
|
1848
2201
|
value: number;
|
|
@@ -1852,7 +2205,7 @@ declare function DonutChart({ value, max, size, strokeWidth, color, label, class
|
|
|
1852
2205
|
color?: string;
|
|
1853
2206
|
label?: string;
|
|
1854
2207
|
className?: string;
|
|
1855
|
-
}):
|
|
2208
|
+
}): React$1.JSX.Element;
|
|
1856
2209
|
declare function BarChartSimple({ data, height, className }: {
|
|
1857
2210
|
data: {
|
|
1858
2211
|
label: string;
|
|
@@ -1861,13 +2214,13 @@ declare function BarChartSimple({ data, height, className }: {
|
|
|
1861
2214
|
}[];
|
|
1862
2215
|
height?: number;
|
|
1863
2216
|
className?: string;
|
|
1864
|
-
}):
|
|
2217
|
+
}): React$1.JSX.Element;
|
|
1865
2218
|
declare function AreaChartSimple({ data, height, color, className }: {
|
|
1866
2219
|
data: number[];
|
|
1867
2220
|
height?: number;
|
|
1868
2221
|
color?: string;
|
|
1869
2222
|
className?: string;
|
|
1870
|
-
}):
|
|
2223
|
+
}): React$1.JSX.Element;
|
|
1871
2224
|
declare function StatWidget({ title, value, change, changeType, data, className }: {
|
|
1872
2225
|
title: string;
|
|
1873
2226
|
value: string;
|
|
@@ -1875,25 +2228,25 @@ declare function StatWidget({ title, value, change, changeType, data, className
|
|
|
1875
2228
|
changeType?: "positive" | "negative";
|
|
1876
2229
|
data?: number[];
|
|
1877
2230
|
className?: string;
|
|
1878
|
-
}):
|
|
2231
|
+
}): React$1.JSX.Element;
|
|
1879
2232
|
declare function ProgressCircle({ value, size, label, className }: {
|
|
1880
2233
|
value: number;
|
|
1881
2234
|
size?: number;
|
|
1882
2235
|
label?: string;
|
|
1883
2236
|
className?: string;
|
|
1884
|
-
}):
|
|
2237
|
+
}): React$1.JSX.Element;
|
|
1885
2238
|
declare function ComparisonBar({ label1, label2, value1, value2, className }: {
|
|
1886
2239
|
label1: string;
|
|
1887
2240
|
label2: string;
|
|
1888
2241
|
value1: number;
|
|
1889
2242
|
value2: number;
|
|
1890
2243
|
className?: string;
|
|
1891
|
-
}):
|
|
2244
|
+
}): React$1.JSX.Element;
|
|
1892
2245
|
declare function HeatmapGrid({ data, columns, className }: {
|
|
1893
2246
|
data: number[];
|
|
1894
2247
|
columns?: number;
|
|
1895
2248
|
className?: string;
|
|
1896
|
-
}):
|
|
2249
|
+
}): React$1.JSX.Element;
|
|
1897
2250
|
declare function LeaderboardWidget({ items, title, className }: {
|
|
1898
2251
|
items: {
|
|
1899
2252
|
name: string;
|
|
@@ -1902,7 +2255,7 @@ declare function LeaderboardWidget({ items, title, className }: {
|
|
|
1902
2255
|
}[];
|
|
1903
2256
|
title?: string;
|
|
1904
2257
|
className?: string;
|
|
1905
|
-
}):
|
|
2258
|
+
}): React$1.JSX.Element;
|
|
1906
2259
|
declare function FunnelChart({ steps, className }: {
|
|
1907
2260
|
steps: {
|
|
1908
2261
|
label: string;
|
|
@@ -1910,7 +2263,7 @@ declare function FunnelChart({ steps, className }: {
|
|
|
1910
2263
|
color?: string;
|
|
1911
2264
|
}[];
|
|
1912
2265
|
className?: string;
|
|
1913
|
-
}):
|
|
2266
|
+
}): React$1.JSX.Element;
|
|
1914
2267
|
declare function KPIDashboard({ metrics, className }: {
|
|
1915
2268
|
metrics: {
|
|
1916
2269
|
label: string;
|
|
@@ -1920,218 +2273,683 @@ declare function KPIDashboard({ metrics, className }: {
|
|
|
1920
2273
|
trendType?: "up" | "down";
|
|
1921
2274
|
}[];
|
|
1922
2275
|
className?: string;
|
|
1923
|
-
}):
|
|
2276
|
+
}): React$1.JSX.Element;
|
|
2277
|
+
interface ModernAreaChartProps {
|
|
2278
|
+
data?: {
|
|
2279
|
+
label: string;
|
|
2280
|
+
value: number;
|
|
2281
|
+
}[];
|
|
2282
|
+
color?: string;
|
|
2283
|
+
height?: number;
|
|
2284
|
+
showGrid?: boolean;
|
|
2285
|
+
showTooltip?: boolean;
|
|
2286
|
+
currency?: string;
|
|
2287
|
+
className?: string;
|
|
2288
|
+
}
|
|
2289
|
+
declare function ModernAreaChart({ data, color, height, showGrid, showTooltip, currency, className, }: ModernAreaChartProps): React$1.JSX.Element;
|
|
2290
|
+
interface ModernBarChartProps {
|
|
2291
|
+
data?: {
|
|
2292
|
+
label: string;
|
|
2293
|
+
value: number;
|
|
2294
|
+
}[];
|
|
2295
|
+
color?: string;
|
|
2296
|
+
height?: number;
|
|
2297
|
+
className?: string;
|
|
2298
|
+
}
|
|
2299
|
+
declare function ModernBarChart({ data, color, height, className, }: ModernBarChartProps): React$1.JSX.Element;
|
|
2300
|
+
interface ModernDonutChartProps {
|
|
2301
|
+
percentage?: number;
|
|
2302
|
+
title?: string;
|
|
2303
|
+
subtitle?: string;
|
|
2304
|
+
color?: string;
|
|
2305
|
+
size?: number;
|
|
2306
|
+
strokeWidth?: number;
|
|
2307
|
+
className?: string;
|
|
2308
|
+
}
|
|
2309
|
+
declare function ModernDonutChart({ percentage, title, subtitle, color, size, strokeWidth, className, }: ModernDonutChartProps): React$1.JSX.Element;
|
|
1924
2310
|
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
2311
|
+
interface ChatMessageContextValue {
|
|
2312
|
+
variant: 'sent' | 'received';
|
|
2313
|
+
isOwn: boolean;
|
|
2314
|
+
}
|
|
2315
|
+
interface ChatMessageProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2316
|
+
variant?: 'sent' | 'received';
|
|
2317
|
+
isOwn?: boolean;
|
|
2318
|
+
message?: string;
|
|
2319
|
+
sender?: string;
|
|
1928
2320
|
time?: string;
|
|
1929
2321
|
avatar?: string;
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
2322
|
+
children?: React$1.ReactNode;
|
|
2323
|
+
}
|
|
2324
|
+
declare const ChatMessage: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2325
|
+
interface ChatMessageAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2326
|
+
src?: string;
|
|
2327
|
+
fallback?: string;
|
|
2328
|
+
isOnline?: boolean;
|
|
2329
|
+
}
|
|
2330
|
+
declare const ChatMessageAvatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2331
|
+
declare const ChatMessageBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2332
|
+
declare const ChatMessageHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2333
|
+
declare const ChatMessageSender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2334
|
+
declare const ChatMessageTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2335
|
+
interface ChatMessageContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2336
|
+
variant?: 'sent' | 'received';
|
|
2337
|
+
}
|
|
2338
|
+
declare const ChatMessageContent: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2339
|
+
interface ChatMessageStatusProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
2340
|
+
status?: 'sent' | 'delivered' | 'read';
|
|
2341
|
+
}
|
|
2342
|
+
declare const ChatMessageStatus: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2343
|
+
declare const ChatMessageCompound: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2344
|
+
Avatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2345
|
+
Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2346
|
+
Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2347
|
+
Sender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2348
|
+
Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2349
|
+
Content: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2350
|
+
Status: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2351
|
+
};
|
|
2352
|
+
interface ChatInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1934
2353
|
placeholder?: string;
|
|
1935
2354
|
onSend?: (message: string) => void;
|
|
1936
|
-
|
|
1937
|
-
}
|
|
1938
|
-
declare
|
|
1939
|
-
|
|
1940
|
-
|
|
2355
|
+
children?: React$1.ReactNode;
|
|
2356
|
+
}
|
|
2357
|
+
declare const ChatInput: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2358
|
+
declare const ChatInputField: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2359
|
+
declare const ChatInputActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2360
|
+
interface ChatInputActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2361
|
+
icon?: React$1.ReactNode;
|
|
2362
|
+
}
|
|
2363
|
+
declare const ChatInputAction: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2364
|
+
interface ChatInputSubmitProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2365
|
+
disabled?: boolean;
|
|
2366
|
+
}
|
|
2367
|
+
declare const ChatInputSubmit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2368
|
+
declare const ChatInputCompound: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2369
|
+
Field: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2370
|
+
Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2371
|
+
Action: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2372
|
+
Submit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2373
|
+
};
|
|
2374
|
+
interface UserProfileCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2375
|
+
name?: string;
|
|
2376
|
+
username?: string;
|
|
1941
2377
|
bio?: string;
|
|
1942
2378
|
stats?: {
|
|
1943
2379
|
label: string;
|
|
1944
2380
|
value: string;
|
|
1945
2381
|
}[];
|
|
1946
2382
|
isFollowing?: boolean;
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
2383
|
+
avatar?: string;
|
|
2384
|
+
coverGradient?: string;
|
|
2385
|
+
children?: React$1.ReactNode;
|
|
2386
|
+
}
|
|
2387
|
+
declare const UserProfileCard: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2388
|
+
interface UserProfileCoverProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2389
|
+
gradient?: string;
|
|
2390
|
+
imageSrc?: string;
|
|
2391
|
+
}
|
|
2392
|
+
declare const UserProfileCover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2393
|
+
interface UserProfileAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2394
|
+
src?: string;
|
|
2395
|
+
fallback?: string;
|
|
2396
|
+
status?: 'online' | 'busy' | 'offline';
|
|
2397
|
+
}
|
|
2398
|
+
declare const UserProfileAvatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2399
|
+
declare const UserProfileInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2400
|
+
declare const UserProfileName: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
2401
|
+
declare const UserProfileHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2402
|
+
declare const UserProfileBio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2403
|
+
declare const UserProfileStats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2404
|
+
interface UserProfileStatProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2405
|
+
label: string;
|
|
2406
|
+
value: string;
|
|
2407
|
+
}
|
|
2408
|
+
declare const UserProfileStat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2409
|
+
interface UserProfileFollowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2410
|
+
following?: boolean;
|
|
2411
|
+
}
|
|
2412
|
+
declare const UserProfileFollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2413
|
+
declare const UserProfileCardCompound: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2414
|
+
Cover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2415
|
+
Avatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2416
|
+
Info: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2417
|
+
Name: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
2418
|
+
Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2419
|
+
Bio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2420
|
+
Stats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2421
|
+
Stat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2422
|
+
FollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2423
|
+
};
|
|
2424
|
+
interface CommentData {
|
|
2425
|
+
author: string;
|
|
2426
|
+
text: string;
|
|
2427
|
+
time: string;
|
|
2428
|
+
avatar?: string;
|
|
2429
|
+
replies?: {
|
|
1951
2430
|
author: string;
|
|
1952
2431
|
text: string;
|
|
1953
2432
|
time: string;
|
|
1954
|
-
|
|
1955
|
-
author: string;
|
|
1956
|
-
text: string;
|
|
1957
|
-
time: string;
|
|
1958
|
-
}[];
|
|
1959
|
-
}[];
|
|
1960
|
-
className?: string;
|
|
1961
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1962
|
-
declare function ReactionBar({ reactions, onReact, className }: {
|
|
1963
|
-
reactions: {
|
|
1964
|
-
emoji: string;
|
|
1965
|
-
count: number;
|
|
1966
|
-
active?: boolean;
|
|
2433
|
+
avatar?: string;
|
|
1967
2434
|
}[];
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
2435
|
+
}
|
|
2436
|
+
interface CommentThreadProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2437
|
+
comments?: CommentData[];
|
|
2438
|
+
children?: React$1.ReactNode;
|
|
2439
|
+
}
|
|
2440
|
+
declare const CommentThread: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2441
|
+
declare const CommentItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2442
|
+
interface CommentAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2443
|
+
src?: string;
|
|
2444
|
+
fallback?: string;
|
|
2445
|
+
size?: 'sm' | 'md';
|
|
2446
|
+
}
|
|
2447
|
+
declare const CommentAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2448
|
+
declare const CommentBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2449
|
+
declare const CommentHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2450
|
+
declare const CommentAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2451
|
+
declare const CommentTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2452
|
+
declare const CommentText: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2453
|
+
declare const CommentActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2454
|
+
declare const CommentReply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2455
|
+
declare const CommentThreadCompound: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2456
|
+
Item: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2457
|
+
Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2458
|
+
Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2459
|
+
Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2460
|
+
Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2461
|
+
Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2462
|
+
Text: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2463
|
+
Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2464
|
+
Reply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2465
|
+
};
|
|
2466
|
+
interface SocialPostProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2467
|
+
author?: string;
|
|
2468
|
+
handle?: string;
|
|
2469
|
+
content?: string;
|
|
2470
|
+
time?: string;
|
|
2471
|
+
avatar?: string;
|
|
1984
2472
|
likes?: number;
|
|
1985
2473
|
comments?: number;
|
|
1986
2474
|
shares?: number;
|
|
1987
|
-
|
|
1988
|
-
}
|
|
1989
|
-
declare
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
declare
|
|
2475
|
+
children?: React$1.ReactNode;
|
|
2476
|
+
}
|
|
2477
|
+
declare const SocialPost: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2478
|
+
declare const SocialPostHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2479
|
+
declare const SocialPostAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2480
|
+
declare const SocialPostAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2481
|
+
declare const SocialPostHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2482
|
+
declare const SocialPostTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2483
|
+
declare const SocialPostContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2484
|
+
declare const SocialPostActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2485
|
+
interface SocialPostActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2486
|
+
icon?: React$1.ReactNode;
|
|
2487
|
+
label?: React$1.ReactNode;
|
|
2488
|
+
active?: boolean;
|
|
2489
|
+
}
|
|
2490
|
+
declare const SocialPostAction: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2491
|
+
declare const SocialPostCompound: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2492
|
+
Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2493
|
+
Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2494
|
+
Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2495
|
+
Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2496
|
+
Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2497
|
+
Content: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2498
|
+
Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2499
|
+
Action: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2500
|
+
};
|
|
2501
|
+
interface ReactionData {
|
|
2502
|
+
emoji: string;
|
|
2503
|
+
count: number;
|
|
2504
|
+
active?: boolean;
|
|
2505
|
+
}
|
|
2506
|
+
interface ReactionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2507
|
+
reactions?: ReactionData[];
|
|
2508
|
+
onReact?: (emoji: string) => void;
|
|
2509
|
+
children?: React$1.ReactNode;
|
|
2510
|
+
}
|
|
2511
|
+
declare const ReactionBar: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2512
|
+
interface ReactionItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2513
|
+
emoji: string;
|
|
2514
|
+
count: number;
|
|
2515
|
+
active?: boolean;
|
|
2516
|
+
}
|
|
2517
|
+
declare const ReactionItem: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2518
|
+
declare const ReactionAdd: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
2519
|
+
onAdd?: () => void;
|
|
2520
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2521
|
+
declare const ReactionBarCompound: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2522
|
+
Item: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2523
|
+
Add: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
2524
|
+
onAdd?: () => void;
|
|
2525
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2526
|
+
};
|
|
2527
|
+
interface ActivityItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2528
|
+
user?: string;
|
|
2529
|
+
action?: string;
|
|
2530
|
+
target?: string;
|
|
2531
|
+
time?: string;
|
|
2532
|
+
icon?: React$1.ReactNode;
|
|
2533
|
+
children?: React$1.ReactNode;
|
|
2534
|
+
}
|
|
2535
|
+
declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2536
|
+
interface OnlineUserData {
|
|
2537
|
+
name: string;
|
|
2538
|
+
status?: 'online' | 'away' | 'busy' | 'offline';
|
|
2539
|
+
avatar?: string;
|
|
2540
|
+
}
|
|
2541
|
+
interface OnlineUsersListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2542
|
+
users?: OnlineUserData[];
|
|
2543
|
+
children?: React$1.ReactNode;
|
|
2544
|
+
}
|
|
2545
|
+
declare const OnlineUsersList: React$1.ForwardRefExoticComponent<OnlineUsersListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2546
|
+
interface ShareSheetProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1997
2547
|
url?: string;
|
|
1998
2548
|
title?: string;
|
|
1999
|
-
|
|
2000
|
-
}
|
|
2001
|
-
declare
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2549
|
+
children?: React$1.ReactNode;
|
|
2550
|
+
}
|
|
2551
|
+
declare const ShareSheet: React$1.ForwardRefExoticComponent<ShareSheetProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2552
|
+
interface NotificationItemData {
|
|
2553
|
+
title: string;
|
|
2554
|
+
message: string;
|
|
2555
|
+
time: string;
|
|
2556
|
+
read?: boolean;
|
|
2557
|
+
type?: 'info' | 'success' | 'warning';
|
|
2558
|
+
}
|
|
2559
|
+
interface NotificationCenterProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2560
|
+
notifications?: NotificationItemData[];
|
|
2561
|
+
onMarkAllRead?: () => void;
|
|
2562
|
+
children?: React$1.ReactNode;
|
|
2563
|
+
}
|
|
2564
|
+
declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2011
2565
|
|
|
2012
|
-
|
|
2566
|
+
interface ProductCardProProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2013
2567
|
name: string;
|
|
2014
|
-
price: string;
|
|
2015
|
-
originalPrice?: string;
|
|
2568
|
+
price: string | number;
|
|
2569
|
+
originalPrice?: string | number;
|
|
2016
2570
|
badge?: string;
|
|
2017
2571
|
rating?: number;
|
|
2018
2572
|
reviewCount?: number;
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2573
|
+
imageSrc?: string;
|
|
2574
|
+
colors?: string[];
|
|
2575
|
+
onAddToCart?: () => void;
|
|
2576
|
+
}
|
|
2577
|
+
declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
|
|
2578
|
+
interface CheckoutSummaryProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2579
|
+
subtotal: string | number;
|
|
2580
|
+
shipping?: string;
|
|
2581
|
+
tax?: string | number;
|
|
2582
|
+
total: string | number;
|
|
2583
|
+
onCheckout?: () => void;
|
|
2584
|
+
}
|
|
2585
|
+
declare function CheckoutSummary({ subtotal, shipping, tax, total, onCheckout, className, ...props }: CheckoutSummaryProps): React$1.JSX.Element;
|
|
2586
|
+
interface SubscriptionCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2587
|
+
plan: string;
|
|
2588
|
+
price: string | number;
|
|
2589
|
+
billingPeriod?: string;
|
|
2590
|
+
nextBilling?: string;
|
|
2591
|
+
status?: "active" | "cancelled" | "past_due";
|
|
2592
|
+
features?: string[];
|
|
2593
|
+
isPopular?: boolean;
|
|
2594
|
+
onUpgrade?: () => void;
|
|
2595
|
+
}
|
|
2596
|
+
declare function SubscriptionCard({ plan, price, billingPeriod, nextBilling, status, features, isPopular, onUpgrade, className, ...props }: SubscriptionCardProps): React$1.JSX.Element;
|
|
2597
|
+
interface CreditCardVisualProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2598
|
+
holder?: string;
|
|
2599
|
+
number?: string;
|
|
2600
|
+
expiry?: string;
|
|
2601
|
+
type?: "visa" | "mastercard" | "amex";
|
|
2602
|
+
}
|
|
2603
|
+
declare function CreditCardVisual({ holder, number, expiry, type, className, ...props }: CreditCardVisualProps): React$1.JSX.Element;
|
|
2604
|
+
interface CartItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2022
2605
|
name: string;
|
|
2023
|
-
price: string;
|
|
2606
|
+
price: string | number;
|
|
2024
2607
|
quantity?: number;
|
|
2025
2608
|
onQuantityChange?: (qty: number) => void;
|
|
2026
2609
|
onRemove?: () => void;
|
|
2027
|
-
|
|
2028
|
-
}):
|
|
2029
|
-
|
|
2030
|
-
subtotal: string;
|
|
2031
|
-
shipping?: string;
|
|
2032
|
-
tax?: string;
|
|
2033
|
-
total: string;
|
|
2034
|
-
className?: string;
|
|
2035
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2036
|
-
declare function PricingSlider({ tiers, className }: {
|
|
2037
|
-
tiers: {
|
|
2038
|
-
name: string;
|
|
2039
|
-
price: string;
|
|
2040
|
-
features: string[];
|
|
2041
|
-
}[];
|
|
2042
|
-
className?: string;
|
|
2043
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2044
|
-
declare function InvoiceCard({ invoiceNumber, date, status, amount, client, className }: {
|
|
2610
|
+
}
|
|
2611
|
+
declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className, ...props }: CartItemProps): React$1.JSX.Element;
|
|
2612
|
+
interface InvoiceCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2045
2613
|
invoiceNumber: string;
|
|
2046
2614
|
date: string;
|
|
2047
|
-
status
|
|
2048
|
-
amount: string;
|
|
2615
|
+
status?: "paid" | "pending" | "overdue";
|
|
2616
|
+
amount: string | number;
|
|
2049
2617
|
client: string;
|
|
2050
|
-
|
|
2051
|
-
}
|
|
2052
|
-
declare function
|
|
2053
|
-
|
|
2054
|
-
number?: string;
|
|
2055
|
-
expiry?: string;
|
|
2056
|
-
type?: "visa" | "mastercard" | "amex";
|
|
2057
|
-
className?: string;
|
|
2058
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2059
|
-
declare function CouponCard({ code, discount, description, validUntil, className }: {
|
|
2618
|
+
onDownload?: () => void;
|
|
2619
|
+
}
|
|
2620
|
+
declare function InvoiceCard({ invoiceNumber, date, status, amount, client, onDownload, className, ...props }: InvoiceCardProps): React$1.JSX.Element;
|
|
2621
|
+
interface CouponCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2060
2622
|
code: string;
|
|
2061
2623
|
discount: string;
|
|
2062
2624
|
description?: string;
|
|
2063
2625
|
validUntil?: string;
|
|
2064
|
-
|
|
2065
|
-
}):
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
}):
|
|
2074
|
-
declare function ReviewStars({ rating,
|
|
2626
|
+
}
|
|
2627
|
+
declare function CouponCard({ code, discount, description, validUntil, className, ...props }: CouponCardProps): React$1.JSX.Element;
|
|
2628
|
+
interface PricingSliderProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2629
|
+
tiers?: {
|
|
2630
|
+
name: string;
|
|
2631
|
+
price: string | number;
|
|
2632
|
+
features: string[];
|
|
2633
|
+
}[];
|
|
2634
|
+
}
|
|
2635
|
+
declare function PricingSlider({ tiers, className, ...props }: PricingSliderProps): React$1.JSX.Element;
|
|
2636
|
+
declare function ReviewStars({ rating, size, reviewCount }: {
|
|
2075
2637
|
rating?: number;
|
|
2076
|
-
onChange?: (rating: number) => void;
|
|
2077
2638
|
size?: number;
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
}
|
|
2081
|
-
declare function TrustBadge({ icon, title, subtitle, className }: {
|
|
2639
|
+
reviewCount?: number;
|
|
2640
|
+
}): React$1.JSX.Element;
|
|
2641
|
+
declare function TrustBadge({ icon, title, subtitle, className, }: {
|
|
2082
2642
|
icon?: React$1.ReactNode;
|
|
2083
|
-
title
|
|
2643
|
+
title?: string;
|
|
2084
2644
|
subtitle?: string;
|
|
2085
2645
|
className?: string;
|
|
2086
|
-
}):
|
|
2646
|
+
}): React$1.JSX.Element;
|
|
2087
2647
|
|
|
2088
2648
|
interface GlowSpotlightCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2649
|
+
/**
|
|
2650
|
+
* Описание для children
|
|
2651
|
+
* @default undefined
|
|
2652
|
+
*/
|
|
2089
2653
|
children: React$1.ReactNode;
|
|
2654
|
+
/**
|
|
2655
|
+
* Описание для glowColor
|
|
2656
|
+
* @default undefined
|
|
2657
|
+
*/
|
|
2090
2658
|
glowColor?: string;
|
|
2659
|
+
/**
|
|
2660
|
+
* Описание для glowSize
|
|
2661
|
+
* @default undefined
|
|
2662
|
+
*/
|
|
2091
2663
|
glowSize?: number;
|
|
2092
2664
|
}
|
|
2093
2665
|
declare const GlowSpotlightCard: React$1.ForwardRefExoticComponent<GlowSpotlightCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2094
2666
|
interface WordFadeRevealProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
|
|
2667
|
+
/**
|
|
2668
|
+
* Описание для text
|
|
2669
|
+
* @default undefined
|
|
2670
|
+
*/
|
|
2095
2671
|
text: string;
|
|
2672
|
+
/**
|
|
2673
|
+
* Описание для delay
|
|
2674
|
+
* @default undefined
|
|
2675
|
+
*/
|
|
2096
2676
|
delay?: number;
|
|
2677
|
+
/**
|
|
2678
|
+
* Описание для delayMultiple
|
|
2679
|
+
* @default undefined
|
|
2680
|
+
*/
|
|
2097
2681
|
delayMultiple?: number;
|
|
2682
|
+
/**
|
|
2683
|
+
* Описание для duration
|
|
2684
|
+
* @default undefined
|
|
2685
|
+
*/
|
|
2098
2686
|
duration?: number;
|
|
2099
2687
|
}
|
|
2100
|
-
declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps):
|
|
2688
|
+
declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): React$1.JSX.Element;
|
|
2101
2689
|
interface AnimatedGridBackgroundProps extends React$1.SVGProps<SVGSVGElement> {
|
|
2690
|
+
/**
|
|
2691
|
+
* Описание для width
|
|
2692
|
+
* @default undefined
|
|
2693
|
+
*/
|
|
2102
2694
|
width?: number;
|
|
2695
|
+
/**
|
|
2696
|
+
* Описание для height
|
|
2697
|
+
* @default undefined
|
|
2698
|
+
*/
|
|
2103
2699
|
height?: number;
|
|
2700
|
+
/**
|
|
2701
|
+
* Описание для strokeWidth
|
|
2702
|
+
* @default undefined
|
|
2703
|
+
*/
|
|
2104
2704
|
strokeWidth?: number;
|
|
2705
|
+
/**
|
|
2706
|
+
* Описание для strokeColor
|
|
2707
|
+
* @default undefined
|
|
2708
|
+
*/
|
|
2105
2709
|
strokeColor?: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* Описание для cellFlashColor
|
|
2712
|
+
* @default undefined
|
|
2713
|
+
*/
|
|
2106
2714
|
cellFlashColor?: string;
|
|
2715
|
+
/**
|
|
2716
|
+
* Описание для flashInterval
|
|
2717
|
+
* @default undefined
|
|
2718
|
+
*/
|
|
2107
2719
|
flashInterval?: number;
|
|
2720
|
+
/**
|
|
2721
|
+
* Описание для maxFlashes
|
|
2722
|
+
* @default undefined
|
|
2723
|
+
*/
|
|
2108
2724
|
maxFlashes?: number;
|
|
2725
|
+
/**
|
|
2726
|
+
* Описание для className
|
|
2727
|
+
* @default undefined
|
|
2728
|
+
*/
|
|
2109
2729
|
className?: string;
|
|
2110
2730
|
}
|
|
2111
|
-
declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps):
|
|
2731
|
+
declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): React$1.JSX.Element;
|
|
2112
2732
|
interface BentoGridProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2733
|
+
/**
|
|
2734
|
+
* Описание для children
|
|
2735
|
+
* @default undefined
|
|
2736
|
+
*/
|
|
2113
2737
|
children: React$1.ReactNode;
|
|
2738
|
+
/**
|
|
2739
|
+
* Описание для className
|
|
2740
|
+
* @default undefined
|
|
2741
|
+
*/
|
|
2114
2742
|
className?: string;
|
|
2115
2743
|
}
|
|
2116
|
-
declare function BentoGrid({ children, className, ...props }: BentoGridProps):
|
|
2744
|
+
declare function BentoGrid({ children, className, ...props }: BentoGridProps): React$1.JSX.Element;
|
|
2117
2745
|
interface BentoCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2746
|
+
/**
|
|
2747
|
+
* Описание для title
|
|
2748
|
+
* @default undefined
|
|
2749
|
+
*/
|
|
2118
2750
|
title: string;
|
|
2751
|
+
/**
|
|
2752
|
+
* Описание для description
|
|
2753
|
+
* @default undefined
|
|
2754
|
+
*/
|
|
2119
2755
|
description: string;
|
|
2756
|
+
/**
|
|
2757
|
+
* Описание для header
|
|
2758
|
+
* @default undefined
|
|
2759
|
+
*/
|
|
2120
2760
|
header?: React$1.ReactNode;
|
|
2761
|
+
/**
|
|
2762
|
+
* Описание для icon
|
|
2763
|
+
* @default undefined
|
|
2764
|
+
*/
|
|
2121
2765
|
icon?: React$1.ReactNode;
|
|
2766
|
+
/**
|
|
2767
|
+
* Описание для children
|
|
2768
|
+
* @default undefined
|
|
2769
|
+
*/
|
|
2122
2770
|
children?: React$1.ReactNode;
|
|
2771
|
+
/**
|
|
2772
|
+
* Описание для span
|
|
2773
|
+
* @default undefined
|
|
2774
|
+
*/
|
|
2123
2775
|
span?: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* Описание для delay
|
|
2778
|
+
* @default undefined
|
|
2779
|
+
*/
|
|
2124
2780
|
delay?: number;
|
|
2781
|
+
/**
|
|
2782
|
+
* Описание для className
|
|
2783
|
+
* @default undefined
|
|
2784
|
+
*/
|
|
2125
2785
|
className?: string;
|
|
2126
2786
|
}
|
|
2127
|
-
declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps):
|
|
2787
|
+
declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): React$1.JSX.Element;
|
|
2128
2788
|
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2789
|
+
type AuroraFXColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | string;
|
|
2790
|
+
type AuroraFXGlow = 'none' | 'subtle' | 'medium' | 'strong';
|
|
2791
|
+
type AuroraFXRadius = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
2792
|
+
interface AuroraColorOption {
|
|
2793
|
+
name: string;
|
|
2794
|
+
hex: string;
|
|
2795
|
+
}
|
|
2796
|
+
declare const defaultAuroraColors: AuroraColorOption[];
|
|
2797
|
+
interface AuroraBorderFXProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2798
|
+
/** Color preset ('violet', 'cyan', 'emerald', 'rose', 'amber') or any valid CSS hex/rgb color */
|
|
2799
|
+
color?: AuroraFXColor;
|
|
2800
|
+
/** Ambient dynamic glow intensity */
|
|
2801
|
+
glow?: AuroraFXGlow;
|
|
2802
|
+
/** Corner radius preset */
|
|
2803
|
+
radius?: AuroraFXRadius;
|
|
2804
|
+
/** Badge text displayed at the top */
|
|
2805
|
+
badgeText?: string;
|
|
2806
|
+
/** Icon displayed next to badge text */
|
|
2807
|
+
badgeIcon?: React$1.ReactNode;
|
|
2808
|
+
/** Card title */
|
|
2809
|
+
title?: string;
|
|
2810
|
+
/** Card description */
|
|
2811
|
+
description?: string;
|
|
2812
|
+
/** Whether to show the interactive color switcher */
|
|
2813
|
+
showColorPicker?: boolean;
|
|
2814
|
+
/** Custom color options for the color switcher */
|
|
2815
|
+
colors?: AuroraColorOption[];
|
|
2816
|
+
/** Controlled active color */
|
|
2817
|
+
activeColor?: string;
|
|
2818
|
+
/** Callback fired when color changes in color picker */
|
|
2819
|
+
onColorChange?: (colorHex: string) => void;
|
|
2820
|
+
/** Preview slot inside card body */
|
|
2821
|
+
previewSlot?: React$1.ReactNode;
|
|
2822
|
+
/** Footer slot at the bottom of the card */
|
|
2823
|
+
footerSlot?: React$1.ReactNode;
|
|
2824
|
+
/** Custom children — replaces standard card body if provided */
|
|
2825
|
+
children?: React$1.ReactNode;
|
|
2826
|
+
}
|
|
2827
|
+
/**
|
|
2828
|
+
* AuroraBorderFX Component
|
|
2829
|
+
*
|
|
2830
|
+
* State-of-the-art interactive card with reactive Aurora glow,
|
|
2831
|
+
* dynamic gradient border tracking, ambient atmospheric blur,
|
|
2832
|
+
* and built-in interactive color switcher.
|
|
2833
|
+
*/
|
|
2834
|
+
declare const AuroraBorderFX: React$1.ForwardRefExoticComponent<AuroraBorderFXProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2835
|
+
|
|
2836
|
+
type MorphingShape = 'pill' | 'circle' | 'square' | 'squircle' | 'custom';
|
|
2837
|
+
type MorphingVariant = 'gradient' | 'aurora' | 'neon' | 'glass' | 'outline' | 'subtle';
|
|
2838
|
+
type MorphingColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | 'rainbow' | 'mono';
|
|
2839
|
+
type MorphingSize = 'sm' | 'md' | 'lg' | 'xl' | 'custom';
|
|
2840
|
+
interface MorphingGeometryProps extends Omit<HTMLMotionProps<'div'>, 'children'> {
|
|
2841
|
+
/** Shape geometry preset */
|
|
2842
|
+
shape?: MorphingShape;
|
|
2843
|
+
/** Explicit corner radius (in pixels or css string) when shape is custom or morphed */
|
|
2844
|
+
radius?: number | string;
|
|
2845
|
+
/** Visual surface variant style */
|
|
2846
|
+
variant?: MorphingVariant;
|
|
2847
|
+
/** Color theme palette */
|
|
2848
|
+
color?: MorphingColor;
|
|
2849
|
+
/** Standardized size preset */
|
|
2850
|
+
size?: MorphingSize;
|
|
2851
|
+
/** Custom width/height dimension in pixels if size is 'custom' */
|
|
2852
|
+
dimension?: number;
|
|
2853
|
+
/** Whether the geometry undergoes continuous slow rotation */
|
|
2854
|
+
spin?: boolean;
|
|
2855
|
+
/** Spin duration in seconds */
|
|
2856
|
+
spinDuration?: number;
|
|
2857
|
+
/** Whether clicking morphs the shape dynamically */
|
|
2858
|
+
interactive?: boolean;
|
|
2859
|
+
/** Ambient box-shadow glow intensity */
|
|
2860
|
+
glow?: boolean;
|
|
2861
|
+
/** Icon or graphic to display centered within the shape */
|
|
2862
|
+
icon?: React$1.ReactNode;
|
|
2863
|
+
/** Content rendered inside the morphing shape */
|
|
2864
|
+
children?: React$1.ReactNode;
|
|
2865
|
+
}
|
|
2866
|
+
/**
|
|
2867
|
+
* MorphingGeometry Component
|
|
2868
|
+
*
|
|
2869
|
+
* An interactive geometric entity with fluid corner transitions, dynamic physics,
|
|
2870
|
+
* luminous glow, and continuous ambient rotational states.
|
|
2871
|
+
*/
|
|
2872
|
+
declare const MorphingGeometry: React$1.ForwardRefExoticComponent<Omit<MorphingGeometryProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2873
|
+
|
|
2874
|
+
type CodeBlockTheme = 'dark' | 'aurora' | 'neon' | 'glass' | 'midnight';
|
|
2875
|
+
interface InteractiveCodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onCopy'> {
|
|
2876
|
+
/** Source code snippet string to display */
|
|
2877
|
+
code: string;
|
|
2878
|
+
/** Filename or title displayed in the macOS titlebar */
|
|
2879
|
+
filename?: string;
|
|
2880
|
+
/** Programming language identifier */
|
|
2881
|
+
language?: string;
|
|
2882
|
+
/** Whether to show numeric line numbers */
|
|
2883
|
+
showLineNumbers?: boolean;
|
|
2884
|
+
/** Array of line numbers to highlight */
|
|
2885
|
+
highlightLines?: number[];
|
|
2886
|
+
/** Color theme styling */
|
|
2887
|
+
theme?: CodeBlockTheme;
|
|
2888
|
+
/** Whether to render the 1-click clipboard copy button */
|
|
2889
|
+
copyable?: boolean;
|
|
2890
|
+
/** Custom badge tag displayed in the header */
|
|
2891
|
+
badgeText?: string;
|
|
2892
|
+
/** Callback fired when code is copied */
|
|
2893
|
+
onCopy?: (code: string) => void;
|
|
2894
|
+
}
|
|
2895
|
+
/**
|
|
2896
|
+
* InteractiveCodeBlock Component
|
|
2897
|
+
*
|
|
2898
|
+
* A macOS-inspired code presentation card with instant 1-click copy,
|
|
2899
|
+
* syntax layout, line numbering, and vibrant theme styling.
|
|
2900
|
+
*/
|
|
2901
|
+
declare const InteractiveCodeBlock: React$1.ForwardRefExoticComponent<InteractiveCodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2902
|
+
|
|
2903
|
+
interface DockProps {
|
|
2904
|
+
/**
|
|
2905
|
+
* Описание для items
|
|
2906
|
+
* @default undefined
|
|
2907
|
+
*/
|
|
2908
|
+
items: {
|
|
2909
|
+
/**
|
|
2910
|
+
* Описание для icon
|
|
2911
|
+
* @default undefined
|
|
2912
|
+
*/
|
|
2913
|
+
icon: React__default.ReactNode;
|
|
2914
|
+
/**
|
|
2915
|
+
* Описание для label
|
|
2916
|
+
* @default undefined
|
|
2917
|
+
*/
|
|
2918
|
+
label: string;
|
|
2919
|
+
/**
|
|
2920
|
+
* Описание для onClick
|
|
2921
|
+
* @default undefined
|
|
2922
|
+
*/
|
|
2923
|
+
onClick?: () => void;
|
|
2924
|
+
}[];
|
|
2925
|
+
/**
|
|
2926
|
+
* Описание для className
|
|
2927
|
+
* @default undefined
|
|
2928
|
+
*/
|
|
2929
|
+
className?: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* Описание для magnification
|
|
2932
|
+
* @default undefined
|
|
2933
|
+
*/
|
|
2934
|
+
magnification?: number;
|
|
2935
|
+
/**
|
|
2936
|
+
* Описание для distance
|
|
2937
|
+
* @default undefined
|
|
2938
|
+
*/
|
|
2939
|
+
distance?: number;
|
|
2940
|
+
}
|
|
2941
|
+
declare function Dock({ items, className, magnification, distance, }: DockProps): React__default.JSX.Element;
|
|
2942
|
+
|
|
2943
|
+
interface DarkModeToggleProps {
|
|
2944
|
+
theme?: "light" | "dark" | "system";
|
|
2945
|
+
variant?: "pill" | "icon" | "segmented";
|
|
2946
|
+
size?: "sm" | "md" | "lg";
|
|
2947
|
+
showLabel?: boolean;
|
|
2948
|
+
onChange?: (theme: "light" | "dark" | "system") => void;
|
|
2949
|
+
className?: string;
|
|
2132
2950
|
}
|
|
2133
|
-
declare function
|
|
2951
|
+
declare function DarkModeToggle({ theme: controlledTheme, variant, size, showLabel, onChange, className, }: DarkModeToggleProps): React__default.JSX.Element;
|
|
2134
2952
|
|
|
2135
2953
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2136
2954
|
|
|
2137
|
-
export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type
|
|
2955
|
+
export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, type AuroraSpeed, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, type RatingProps, RatingStars, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };
|