@ckc-net/puck-extended 0.1.14 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +221 -205
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +538 -412
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react0 from "react";
|
|
2
|
-
import React$1 from "react";
|
|
3
|
-
import * as
|
|
2
|
+
import React$1, { ComponentProps } from "react";
|
|
3
|
+
import * as react_jsx_runtime18 from "react/jsx-runtime";
|
|
4
4
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
5
5
|
import { Input as Input$1 } from "@base-ui/react/input";
|
|
6
6
|
import { Select as Select$1 } from "@base-ui/react/select";
|
|
@@ -11,14 +11,19 @@ import { Field, FieldProps, Fields } from "@puckeditor/core";
|
|
|
11
11
|
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
12
12
|
import { Accordion as Accordion$1 } from "@base-ui/react/accordion";
|
|
13
13
|
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
14
|
+
import * as _tiptap_extension_link0 from "@tiptap/extension-link";
|
|
14
15
|
import { useRender } from "@base-ui/react/use-render";
|
|
15
16
|
import { VariantProps } from "class-variance-authority";
|
|
17
|
+
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
16
18
|
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
17
19
|
import { Menu as Menu$1 } from "@base-ui/react/menu";
|
|
18
20
|
import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
21
|
+
import { Switch as Switch$1 } from "@base-ui/react/switch";
|
|
19
22
|
import { Toast } from "@base-ui/react/toast";
|
|
23
|
+
import * as _tiptap_core0 from "@tiptap/core";
|
|
24
|
+
import { Editor } from "@tiptap/react";
|
|
20
25
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
21
|
-
import * as
|
|
26
|
+
import * as _base_ui_react1 from "@base-ui/react";
|
|
22
27
|
|
|
23
28
|
//#region src/components/Fields/NumberUnit/index.d.ts
|
|
24
29
|
type NumberUnitValue = {
|
|
@@ -37,7 +42,7 @@ declare const FieldNumberUnit: ({
|
|
|
37
42
|
label: string;
|
|
38
43
|
field: any;
|
|
39
44
|
readOnly?: boolean;
|
|
40
|
-
}) =>
|
|
45
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
41
46
|
//#endregion
|
|
42
47
|
//#region src/overrides/plugin.d.ts
|
|
43
48
|
declare const createPuckOverridesPlugin: () => {
|
|
@@ -51,7 +56,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
51
56
|
label?: string;
|
|
52
57
|
parentAction?: react0.ReactNode;
|
|
53
58
|
children?: react0.ReactNode;
|
|
54
|
-
}):
|
|
59
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
55
60
|
Action: ({
|
|
56
61
|
children,
|
|
57
62
|
label,
|
|
@@ -60,31 +65,31 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
60
65
|
children: react0.ReactNode;
|
|
61
66
|
label?: string;
|
|
62
67
|
onClick: (e: react0.SyntheticEvent) => void;
|
|
63
|
-
}) =>
|
|
68
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
64
69
|
Label: ({
|
|
65
70
|
label
|
|
66
71
|
}: {
|
|
67
72
|
label: string;
|
|
68
|
-
}) =>
|
|
73
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
69
74
|
Group: ({
|
|
70
75
|
children
|
|
71
76
|
}: {
|
|
72
77
|
children: react0.ReactNode;
|
|
73
|
-
}) =>
|
|
74
|
-
Separator: () =>
|
|
78
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
79
|
+
Separator: () => react_jsx_runtime18.JSX.Element;
|
|
75
80
|
};
|
|
76
81
|
drawer: ({
|
|
77
82
|
children
|
|
78
83
|
}: {
|
|
79
84
|
children: React.ReactNode;
|
|
80
|
-
}) =>
|
|
85
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
81
86
|
drawerItem: ({
|
|
82
87
|
name,
|
|
83
88
|
icon
|
|
84
89
|
}: {
|
|
85
90
|
name: string;
|
|
86
91
|
icon?: React.ReactNode;
|
|
87
|
-
}) =>
|
|
92
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
88
93
|
fields: ({
|
|
89
94
|
children
|
|
90
95
|
}: {
|
|
@@ -94,14 +99,14 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
94
99
|
path?: string;
|
|
95
100
|
index?: number;
|
|
96
101
|
} | null;
|
|
97
|
-
}) =>
|
|
102
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
98
103
|
fieldLabel: ({
|
|
99
104
|
children,
|
|
100
105
|
label
|
|
101
106
|
}: {
|
|
102
107
|
children: React.ReactNode;
|
|
103
108
|
label: string;
|
|
104
|
-
}) =>
|
|
109
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
105
110
|
fieldTypes: {
|
|
106
111
|
checkbox: ({
|
|
107
112
|
onChange,
|
|
@@ -120,7 +125,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
120
125
|
};
|
|
121
126
|
}) & {
|
|
122
127
|
label: string;
|
|
123
|
-
}) =>
|
|
128
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
124
129
|
numberUnit: ({
|
|
125
130
|
onChange,
|
|
126
131
|
value,
|
|
@@ -133,7 +138,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
133
138
|
label: string;
|
|
134
139
|
field: any;
|
|
135
140
|
readOnly?: boolean;
|
|
136
|
-
}) =>
|
|
141
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
137
142
|
radio: ({
|
|
138
143
|
onChange,
|
|
139
144
|
value,
|
|
@@ -151,7 +156,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
151
156
|
};
|
|
152
157
|
}) & {
|
|
153
158
|
label: string;
|
|
154
|
-
}) =>
|
|
159
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
155
160
|
select: ({
|
|
156
161
|
onChange,
|
|
157
162
|
value,
|
|
@@ -164,7 +169,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
164
169
|
label: string;
|
|
165
170
|
field: any;
|
|
166
171
|
readOnly?: boolean;
|
|
167
|
-
}) =>
|
|
172
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
168
173
|
text: ({
|
|
169
174
|
onChange,
|
|
170
175
|
value,
|
|
@@ -177,7 +182,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
177
182
|
label?: string;
|
|
178
183
|
field: any;
|
|
179
184
|
readOnly?: boolean;
|
|
180
|
-
}) =>
|
|
185
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
181
186
|
textarea: ({
|
|
182
187
|
onChange,
|
|
183
188
|
value,
|
|
@@ -190,7 +195,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
190
195
|
label: string;
|
|
191
196
|
field: any;
|
|
192
197
|
readOnly?: boolean;
|
|
193
|
-
}) =>
|
|
198
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
194
199
|
};
|
|
195
200
|
};
|
|
196
201
|
};
|
|
@@ -202,7 +207,7 @@ declare const Label: ({
|
|
|
202
207
|
}: {
|
|
203
208
|
label?: string;
|
|
204
209
|
readOnly?: boolean;
|
|
205
|
-
}) =>
|
|
210
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
206
211
|
//#endregion
|
|
207
212
|
//#region src/components/Fields/Input/index.d.ts
|
|
208
213
|
declare const FieldInput: ({
|
|
@@ -217,7 +222,7 @@ declare const FieldInput: ({
|
|
|
217
222
|
label?: string;
|
|
218
223
|
field: any;
|
|
219
224
|
readOnly?: boolean;
|
|
220
|
-
}) =>
|
|
225
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
221
226
|
//#endregion
|
|
222
227
|
//#region src/components/Fields/Textarea/index.d.ts
|
|
223
228
|
declare const FieldTextarea: ({
|
|
@@ -232,7 +237,7 @@ declare const FieldTextarea: ({
|
|
|
232
237
|
label: string;
|
|
233
238
|
field: any;
|
|
234
239
|
readOnly?: boolean;
|
|
235
|
-
}) =>
|
|
240
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
236
241
|
//#endregion
|
|
237
242
|
//#region src/components/Fields/Select/index.d.ts
|
|
238
243
|
declare const FieldSelect: ({
|
|
@@ -247,7 +252,7 @@ declare const FieldSelect: ({
|
|
|
247
252
|
label: string;
|
|
248
253
|
field: any;
|
|
249
254
|
readOnly?: boolean;
|
|
250
|
-
}) =>
|
|
255
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
251
256
|
//#endregion
|
|
252
257
|
//#region src/components/ui/radio.d.ts
|
|
253
258
|
type RadioLayout = "horizontal" | "inline";
|
|
@@ -261,12 +266,12 @@ declare function RadioGroup({
|
|
|
261
266
|
className,
|
|
262
267
|
layout,
|
|
263
268
|
...props
|
|
264
|
-
}: RadioGroupProps):
|
|
269
|
+
}: RadioGroupProps): react_jsx_runtime18.JSX.Element;
|
|
265
270
|
declare function RadioGroupItem({
|
|
266
271
|
className,
|
|
267
272
|
layout,
|
|
268
273
|
...props
|
|
269
|
-
}: RadioGroupItemProps):
|
|
274
|
+
}: RadioGroupItemProps): react_jsx_runtime18.JSX.Element;
|
|
270
275
|
//#endregion
|
|
271
276
|
//#region src/components/Fields/Radio/index.d.ts
|
|
272
277
|
type RadioProps = FieldProps<Field<any>> & {
|
|
@@ -287,7 +292,7 @@ declare const FieldRadio: ({
|
|
|
287
292
|
label
|
|
288
293
|
}: RadioProps & {
|
|
289
294
|
label: string;
|
|
290
|
-
}) =>
|
|
295
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
291
296
|
//#endregion
|
|
292
297
|
//#region src/components/ui/checkbox.d.ts
|
|
293
298
|
type CheckboxLayout = "horizontal" | "inline";
|
|
@@ -298,7 +303,7 @@ declare function Checkbox({
|
|
|
298
303
|
className,
|
|
299
304
|
layout,
|
|
300
305
|
...props
|
|
301
|
-
}: CheckboxProps$1):
|
|
306
|
+
}: CheckboxProps$1): react_jsx_runtime18.JSX.Element;
|
|
302
307
|
//#endregion
|
|
303
308
|
//#region src/components/Fields/Checkbox/index.d.ts
|
|
304
309
|
type CheckboxProps = FieldProps<Field<any>> & {
|
|
@@ -319,7 +324,34 @@ declare const FieldCheckbox: ({
|
|
|
319
324
|
label
|
|
320
325
|
}: CheckboxProps & {
|
|
321
326
|
label: string;
|
|
322
|
-
}) =>
|
|
327
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
328
|
+
//#endregion
|
|
329
|
+
//#region src/components/RichTextMenuLink/index.d.ts
|
|
330
|
+
type RichTextMenuLinkProps = {
|
|
331
|
+
editor: Editor | null;
|
|
332
|
+
editorState?: {
|
|
333
|
+
isLink?: boolean;
|
|
334
|
+
canLink?: boolean;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
declare const richTextMenuLinkSelector: ({
|
|
338
|
+
editor
|
|
339
|
+
}: {
|
|
340
|
+
editor: Editor | null;
|
|
341
|
+
}) => {
|
|
342
|
+
isLink: boolean;
|
|
343
|
+
canLink: boolean;
|
|
344
|
+
};
|
|
345
|
+
/**
|
|
346
|
+
* Pre-configured tiptap Link extension ready to use in Puck's richtext field.
|
|
347
|
+
* Add this to `tiptap.extensions` in your field config.
|
|
348
|
+
*/
|
|
349
|
+
declare const richTextMenuLinkExtension: _tiptap_core0.Mark<_tiptap_extension_link0.LinkOptions, any>;
|
|
350
|
+
declare function RichTextMenuLink({
|
|
351
|
+
editor,
|
|
352
|
+
editorState,
|
|
353
|
+
...props
|
|
354
|
+
}: RichTextMenuLinkProps & Omit<ComponentProps<"div">, keyof RichTextMenuLinkProps>): react_jsx_runtime18.JSX.Element;
|
|
323
355
|
//#endregion
|
|
324
356
|
//#region src/components/MediaPicker/index.d.ts
|
|
325
357
|
type MediaItem = {
|
|
@@ -338,12 +370,16 @@ type MediaPickerProps = {
|
|
|
338
370
|
value?: MediaPickerValue;
|
|
339
371
|
onChange: (value: MediaPickerValue) => void;
|
|
340
372
|
mediaType?: string;
|
|
373
|
+
acceptedTypes?: string;
|
|
374
|
+
maxSize?: number;
|
|
341
375
|
};
|
|
342
376
|
declare const MediaPicker: ({
|
|
343
377
|
value,
|
|
344
378
|
onChange,
|
|
345
|
-
mediaType
|
|
346
|
-
|
|
379
|
+
mediaType,
|
|
380
|
+
acceptedTypes,
|
|
381
|
+
maxSize
|
|
382
|
+
}: MediaPickerProps) => react_jsx_runtime18.JSX.Element;
|
|
347
383
|
declare const getMediaUrl: (value?: MediaPickerValue) => string | undefined;
|
|
348
384
|
//#endregion
|
|
349
385
|
//#region src/components/PagePicker/index.d.ts
|
|
@@ -366,11 +402,11 @@ type PagePickerProps = {
|
|
|
366
402
|
declare const PagePicker: ({
|
|
367
403
|
value,
|
|
368
404
|
onChange
|
|
369
|
-
}: PagePickerProps) =>
|
|
405
|
+
}: PagePickerProps) => react_jsx_runtime18.JSX.Element;
|
|
370
406
|
declare const getPageUrl: (value?: PagePickerValue) => string | undefined;
|
|
371
407
|
//#endregion
|
|
372
408
|
//#region src/components/ui/accordion.d.ts
|
|
373
|
-
declare const cssAnimationPresets$
|
|
409
|
+
declare const cssAnimationPresets$2: {
|
|
374
410
|
none: string;
|
|
375
411
|
fade: string[];
|
|
376
412
|
scale: string[];
|
|
@@ -378,7 +414,7 @@ declare const cssAnimationPresets$3: {
|
|
|
378
414
|
perspective: string[];
|
|
379
415
|
perspectiveBlur: string[];
|
|
380
416
|
};
|
|
381
|
-
declare const cssTransitionPresets$
|
|
417
|
+
declare const cssTransitionPresets$2: {
|
|
382
418
|
inExpo: string;
|
|
383
419
|
outExpo: string;
|
|
384
420
|
inOutExpo: string;
|
|
@@ -408,8 +444,8 @@ declare const cssTransitionPresets$3: {
|
|
|
408
444
|
inOutCirc: string;
|
|
409
445
|
inOutBase: string;
|
|
410
446
|
};
|
|
411
|
-
type CSSAnimationPreset = keyof typeof cssAnimationPresets$
|
|
412
|
-
type CSSTransitionPreset = keyof typeof cssTransitionPresets$
|
|
447
|
+
type CSSAnimationPreset = keyof typeof cssAnimationPresets$2;
|
|
448
|
+
type CSSTransitionPreset = keyof typeof cssTransitionPresets$2;
|
|
413
449
|
type AccordionVariant = "default" | "card" | "swiss";
|
|
414
450
|
interface AccordionProps extends Accordion$1.Root.Props {
|
|
415
451
|
animationPreset?: CSSAnimationPreset;
|
|
@@ -428,19 +464,19 @@ declare function Accordion({
|
|
|
428
464
|
className,
|
|
429
465
|
multiple,
|
|
430
466
|
...props
|
|
431
|
-
}: AccordionProps):
|
|
467
|
+
}: AccordionProps): react_jsx_runtime18.JSX.Element;
|
|
432
468
|
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
433
469
|
declare function AccordionItem({
|
|
434
470
|
value: itemValue,
|
|
435
471
|
onOpenChange,
|
|
436
472
|
className,
|
|
437
473
|
...rest
|
|
438
|
-
}: AccordionItemProps):
|
|
474
|
+
}: AccordionItemProps): react_jsx_runtime18.JSX.Element;
|
|
439
475
|
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
440
476
|
declare function AccordionHeader({
|
|
441
477
|
className,
|
|
442
478
|
...props
|
|
443
|
-
}: AccordionHeaderProps):
|
|
479
|
+
}: AccordionHeaderProps): react_jsx_runtime18.JSX.Element;
|
|
444
480
|
interface AccordionTriggerProps extends Accordion$1.Trigger.Props {
|
|
445
481
|
icon?: (props: {
|
|
446
482
|
open: boolean;
|
|
@@ -451,19 +487,19 @@ declare function AccordionTrigger({
|
|
|
451
487
|
icon,
|
|
452
488
|
children,
|
|
453
489
|
...props
|
|
454
|
-
}: AccordionTriggerProps):
|
|
490
|
+
}: AccordionTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
455
491
|
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
456
492
|
declare function AccordionPanel({
|
|
457
493
|
className,
|
|
458
494
|
children,
|
|
459
495
|
style,
|
|
460
496
|
...props
|
|
461
|
-
}: AccordionPanelProps):
|
|
497
|
+
}: AccordionPanelProps): react_jsx_runtime18.JSX.Element;
|
|
462
498
|
//#endregion
|
|
463
499
|
//#region src/components/ui/button.d.ts
|
|
464
500
|
declare const buttonVariants: (props?: ({
|
|
465
501
|
size?: "icon" | "default" | "icon-lg" | "icon-sm" | "icon-xl" | "icon-xs" | "lg" | "sm" | "xl" | "xs" | null | undefined;
|
|
466
|
-
variant?: "default" | "destructive" | "destructive-outline" | "ghost" | "
|
|
502
|
+
variant?: "link" | "default" | "destructive" | "destructive-outline" | "ghost" | "outline" | "primary" | "secondary" | null | undefined;
|
|
467
503
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
468
504
|
interface ButtonProps extends useRender.ComponentProps<"button"> {
|
|
469
505
|
variant?: VariantProps<typeof buttonVariants>["variant"];
|
|
@@ -479,7 +515,7 @@ declare function Button({
|
|
|
479
515
|
//#endregion
|
|
480
516
|
//#region src/components/ui/dialog.d.ts
|
|
481
517
|
declare const Dialog: typeof Dialog$1.Root;
|
|
482
|
-
declare function DialogTrigger(props: Dialog$1.Trigger.Props):
|
|
518
|
+
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime18.JSX.Element;
|
|
483
519
|
declare function DialogPopup({
|
|
484
520
|
className,
|
|
485
521
|
children,
|
|
@@ -489,33 +525,33 @@ declare function DialogPopup({
|
|
|
489
525
|
}: Dialog$1.Popup.Props & {
|
|
490
526
|
showCloseButton?: boolean;
|
|
491
527
|
bottomStickOnMobile?: boolean;
|
|
492
|
-
}):
|
|
528
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
493
529
|
declare function DialogHeader({
|
|
494
530
|
className,
|
|
495
531
|
...props
|
|
496
|
-
}: React.ComponentProps<"div">):
|
|
532
|
+
}: React.ComponentProps<"div">): react_jsx_runtime18.JSX.Element;
|
|
497
533
|
declare function DialogFooter({
|
|
498
534
|
className,
|
|
499
535
|
variant,
|
|
500
536
|
...props
|
|
501
537
|
}: React.ComponentProps<"div"> & {
|
|
502
538
|
variant?: "default" | "bare";
|
|
503
|
-
}):
|
|
539
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
504
540
|
declare function DialogTitle({
|
|
505
541
|
className,
|
|
506
542
|
...props
|
|
507
|
-
}: Dialog$1.Title.Props):
|
|
543
|
+
}: Dialog$1.Title.Props): react_jsx_runtime18.JSX.Element;
|
|
508
544
|
declare function DialogDescription({
|
|
509
545
|
className,
|
|
510
546
|
...props
|
|
511
|
-
}: Dialog$1.Description.Props):
|
|
547
|
+
}: Dialog$1.Description.Props): react_jsx_runtime18.JSX.Element;
|
|
512
548
|
declare function DialogPanel({
|
|
513
549
|
className,
|
|
514
550
|
scrollFade,
|
|
515
551
|
...props
|
|
516
552
|
}: React.ComponentProps<"div"> & {
|
|
517
553
|
scrollFade?: boolean;
|
|
518
|
-
}):
|
|
554
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
519
555
|
//#endregion
|
|
520
556
|
//#region src/components/ui/input.d.ts
|
|
521
557
|
type InputProps = Omit<Input$1.Props & react0.RefAttributes<HTMLInputElement>, "size"> & {
|
|
@@ -529,7 +565,7 @@ declare function Input({
|
|
|
529
565
|
unstyled,
|
|
530
566
|
nativeInput,
|
|
531
567
|
...props
|
|
532
|
-
}: InputProps):
|
|
568
|
+
}: InputProps): react_jsx_runtime18.JSX.Element;
|
|
533
569
|
//#endregion
|
|
534
570
|
//#region src/components/ui/textarea.d.ts
|
|
535
571
|
type TextareaProps = react0.ComponentProps<"textarea"> & {
|
|
@@ -541,13 +577,13 @@ declare function Textarea({
|
|
|
541
577
|
size,
|
|
542
578
|
unstyled,
|
|
543
579
|
...props
|
|
544
|
-
}: TextareaProps):
|
|
580
|
+
}: TextareaProps): react_jsx_runtime18.JSX.Element;
|
|
545
581
|
//#endregion
|
|
546
582
|
//#region src/components/ui/input-group.d.ts
|
|
547
583
|
declare function InputGroup({
|
|
548
584
|
className,
|
|
549
585
|
...props
|
|
550
|
-
}: react0.ComponentProps<"div">):
|
|
586
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime18.JSX.Element;
|
|
551
587
|
declare const inputGroupAddonVariants: (props?: ({
|
|
552
588
|
align?: "inline-start" | "block-end" | "block-start" | "inline-end" | null | undefined;
|
|
553
589
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -555,170 +591,144 @@ declare function InputGroupAddon({
|
|
|
555
591
|
className,
|
|
556
592
|
align,
|
|
557
593
|
...props
|
|
558
|
-
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
594
|
+
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime18.JSX.Element;
|
|
559
595
|
declare function InputGroupText({
|
|
560
596
|
className,
|
|
561
597
|
...props
|
|
562
|
-
}: react0.ComponentProps<"span">):
|
|
598
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
563
599
|
declare function InputGroupInput({
|
|
564
600
|
className,
|
|
565
601
|
...props
|
|
566
|
-
}: InputProps):
|
|
602
|
+
}: InputProps): react_jsx_runtime18.JSX.Element;
|
|
567
603
|
declare function InputGroupTextarea({
|
|
568
604
|
className,
|
|
569
605
|
...props
|
|
570
|
-
}: TextareaProps):
|
|
606
|
+
}: TextareaProps): react_jsx_runtime18.JSX.Element;
|
|
571
607
|
//#endregion
|
|
572
608
|
//#region src/components/ui/menu.d.ts
|
|
573
|
-
declare const
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
slideOutside: string[];
|
|
578
|
-
slideInside: string[];
|
|
579
|
-
wipe: string[];
|
|
580
|
-
wipeScale: string[];
|
|
581
|
-
motion: string[];
|
|
582
|
-
motionBlur: string[];
|
|
583
|
-
};
|
|
584
|
-
declare const cssTransitionPresets$2: {
|
|
585
|
-
inExpo: string;
|
|
586
|
-
outExpo: string;
|
|
587
|
-
inOutExpo: string;
|
|
588
|
-
anticipate: string;
|
|
589
|
-
quickOut: string;
|
|
590
|
-
overshootOut: string;
|
|
591
|
-
swiftOut: string;
|
|
592
|
-
snappyOut: string;
|
|
593
|
-
in: string;
|
|
594
|
-
out: string;
|
|
595
|
-
inOut: string;
|
|
596
|
-
outIn: string;
|
|
597
|
-
inQuad: string;
|
|
598
|
-
outQuad: string;
|
|
599
|
-
inOutQuad: string;
|
|
600
|
-
inCubic: string;
|
|
601
|
-
outCubic: string;
|
|
602
|
-
inOutCubic: string;
|
|
603
|
-
inQuart: string;
|
|
604
|
-
outQuart: string;
|
|
605
|
-
inOutQuart: string;
|
|
606
|
-
inQuint: string;
|
|
607
|
-
outQuint: string;
|
|
608
|
-
inOutQuint: string;
|
|
609
|
-
inCirc: string;
|
|
610
|
-
outCirc: string;
|
|
611
|
-
inOutCirc: string;
|
|
612
|
-
inOutBase: string;
|
|
613
|
-
};
|
|
614
|
-
type CSSAnimationPresets$2 = keyof typeof cssAnimationPresets$2;
|
|
615
|
-
type CSSTransitionPresets$2 = keyof typeof cssTransitionPresets$2;
|
|
616
|
-
type Backdrop$1 = "opaque" | "blur" | "transparent";
|
|
617
|
-
interface MenuProps extends Menu$1.Root.Props {
|
|
618
|
-
backdrop?: Backdrop$1;
|
|
619
|
-
}
|
|
620
|
-
declare function Menu({
|
|
621
|
-
backdrop,
|
|
622
|
-
...props
|
|
623
|
-
}: MenuProps): react_jsx_runtime17.JSX.Element;
|
|
624
|
-
interface MenuTriggerProps extends Menu$1.Trigger.Props {}
|
|
625
|
-
declare function MenuTrigger({
|
|
626
|
-
...props
|
|
627
|
-
}: MenuTriggerProps): react_jsx_runtime17.JSX.Element;
|
|
628
|
-
interface MenuPositionerProps extends Menu$1.Positioner.Props {}
|
|
629
|
-
interface MenuPopupProps extends Menu$1.Popup.Props, Pick<MenuPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
630
|
-
animationPreset?: CSSAnimationPresets$2;
|
|
631
|
-
transitionPreset?: CSSTransitionPresets$2;
|
|
632
|
-
reduceMotion?: boolean;
|
|
633
|
-
showArrow?: boolean;
|
|
634
|
-
}
|
|
609
|
+
declare const MenuCreateHandle: typeof Menu$1.createHandle;
|
|
610
|
+
declare const Menu: typeof Menu$1.Root;
|
|
611
|
+
declare const MenuPortal: react0.ForwardRefExoticComponent<Omit<_base_ui_react1.ContextMenuPortalProps, "ref"> & react0.RefAttributes<HTMLDivElement>>;
|
|
612
|
+
declare function MenuTrigger(props: Menu$1.Trigger.Props): react_jsx_runtime18.JSX.Element;
|
|
635
613
|
declare function MenuPopup({
|
|
614
|
+
children,
|
|
636
615
|
className,
|
|
637
|
-
animationPreset,
|
|
638
|
-
transitionPreset,
|
|
639
|
-
reduceMotion,
|
|
640
|
-
showArrow,
|
|
641
|
-
side,
|
|
642
616
|
sideOffset,
|
|
643
617
|
align,
|
|
644
618
|
alignOffset,
|
|
645
|
-
|
|
646
|
-
...rest
|
|
647
|
-
}: MenuPopupProps): react_jsx_runtime17.JSX.Element;
|
|
648
|
-
interface MenuGroupProps extends Menu$1.Group.Props {}
|
|
649
|
-
declare function MenuGroup(props: MenuGroupProps): react_jsx_runtime17.JSX.Element;
|
|
650
|
-
interface MenuGroupLabelProps extends Menu$1.GroupLabel.Props {}
|
|
651
|
-
declare function MenuGroupLabel({
|
|
652
|
-
className,
|
|
653
|
-
...rest
|
|
654
|
-
}: MenuGroupLabelProps): react_jsx_runtime17.JSX.Element;
|
|
655
|
-
declare function MenuLabel({
|
|
656
|
-
className,
|
|
619
|
+
side,
|
|
657
620
|
...props
|
|
658
|
-
}:
|
|
659
|
-
|
|
621
|
+
}: Menu$1.Popup.Props & {
|
|
622
|
+
align?: Menu$1.Positioner.Props["align"];
|
|
623
|
+
sideOffset?: Menu$1.Positioner.Props["sideOffset"];
|
|
624
|
+
alignOffset?: Menu$1.Positioner.Props["alignOffset"];
|
|
625
|
+
side?: Menu$1.Positioner.Props["side"];
|
|
626
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
627
|
+
declare function MenuGroup(props: Menu$1.Group.Props): react_jsx_runtime18.JSX.Element;
|
|
660
628
|
declare function MenuItem({
|
|
661
629
|
className,
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
declare function MenuSeparator({
|
|
665
|
-
className,
|
|
630
|
+
inset,
|
|
631
|
+
variant,
|
|
666
632
|
...props
|
|
667
|
-
}: Menu$1.
|
|
668
|
-
|
|
633
|
+
}: Menu$1.Item.Props & {
|
|
634
|
+
inset?: boolean;
|
|
635
|
+
variant?: "default" | "destructive";
|
|
636
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
669
637
|
declare function MenuCheckboxItem({
|
|
670
638
|
className,
|
|
671
639
|
children,
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
interface MenuRadioGroupProps extends Menu$1.RadioGroup.Props {
|
|
675
|
-
activeIcon?: React.ReactNode;
|
|
676
|
-
}
|
|
677
|
-
declare function MenuRadioGroup({
|
|
678
|
-
activeIcon,
|
|
640
|
+
checked,
|
|
641
|
+
variant,
|
|
679
642
|
...props
|
|
680
|
-
}:
|
|
643
|
+
}: Menu$1.CheckboxItem.Props & {
|
|
644
|
+
variant?: "default" | "switch";
|
|
645
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
646
|
+
declare function MenuRadioGroup(props: Menu$1.RadioGroup.Props): react_jsx_runtime18.JSX.Element;
|
|
681
647
|
declare function MenuRadioItem({
|
|
682
648
|
className,
|
|
683
649
|
children,
|
|
684
|
-
value,
|
|
685
650
|
...props
|
|
686
|
-
}: Menu$1.RadioItem.Props):
|
|
651
|
+
}: Menu$1.RadioItem.Props): react_jsx_runtime18.JSX.Element;
|
|
652
|
+
declare function MenuGroupLabel({
|
|
653
|
+
className,
|
|
654
|
+
inset,
|
|
655
|
+
...props
|
|
656
|
+
}: Menu$1.GroupLabel.Props & {
|
|
657
|
+
inset?: boolean;
|
|
658
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
659
|
+
declare function MenuSeparator({
|
|
660
|
+
className,
|
|
661
|
+
...props
|
|
662
|
+
}: Menu$1.Separator.Props): react_jsx_runtime18.JSX.Element;
|
|
687
663
|
declare function MenuShortcut({
|
|
688
664
|
className,
|
|
689
665
|
...props
|
|
690
|
-
}:
|
|
691
|
-
|
|
692
|
-
declare function MenuSub(props: MenuSubProps): react_jsx_runtime17.JSX.Element;
|
|
693
|
-
interface MenuSubTriggerProps extends Menu$1.SubmenuTrigger.Props {}
|
|
666
|
+
}: react0.ComponentProps<"kbd">): react_jsx_runtime18.JSX.Element;
|
|
667
|
+
declare function MenuSub(props: Menu$1.SubmenuRoot.Props): react_jsx_runtime18.JSX.Element;
|
|
694
668
|
declare function MenuSubTrigger({
|
|
695
669
|
className,
|
|
670
|
+
inset,
|
|
696
671
|
children,
|
|
697
|
-
...
|
|
698
|
-
}:
|
|
699
|
-
|
|
672
|
+
...props
|
|
673
|
+
}: Menu$1.SubmenuTrigger.Props & {
|
|
674
|
+
inset?: boolean;
|
|
675
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
700
676
|
declare function MenuSubPopup({
|
|
701
677
|
className,
|
|
678
|
+
sideOffset,
|
|
679
|
+
alignOffset,
|
|
680
|
+
align,
|
|
681
|
+
...props
|
|
682
|
+
}: Menu$1.Popup.Props & {
|
|
683
|
+
align?: Menu$1.Positioner.Props["align"];
|
|
684
|
+
sideOffset?: Menu$1.Positioner.Props["sideOffset"];
|
|
685
|
+
alignOffset?: Menu$1.Positioner.Props["alignOffset"];
|
|
686
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
687
|
+
//#endregion
|
|
688
|
+
//#region src/components/ui/popover.d.ts
|
|
689
|
+
declare const PopoverCreateHandle: typeof Popover$1.createHandle;
|
|
690
|
+
declare const Popover: typeof Popover$1.Root;
|
|
691
|
+
declare function PopoverTrigger(props: Popover$1.Trigger.Props): react_jsx_runtime18.JSX.Element;
|
|
692
|
+
declare function PopoverPopup({
|
|
702
693
|
children,
|
|
694
|
+
className,
|
|
703
695
|
side,
|
|
704
|
-
sideOffset,
|
|
705
696
|
align,
|
|
697
|
+
sideOffset,
|
|
706
698
|
alignOffset,
|
|
707
|
-
|
|
708
|
-
|
|
699
|
+
tooltipStyle,
|
|
700
|
+
...props
|
|
701
|
+
}: Popover$1.Popup.Props & {
|
|
702
|
+
side?: Popover$1.Positioner.Props["side"];
|
|
703
|
+
align?: Popover$1.Positioner.Props["align"];
|
|
704
|
+
sideOffset?: Popover$1.Positioner.Props["sideOffset"];
|
|
705
|
+
alignOffset?: Popover$1.Positioner.Props["alignOffset"];
|
|
706
|
+
tooltipStyle?: boolean;
|
|
707
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
708
|
+
declare function PopoverClose({
|
|
709
|
+
...props
|
|
710
|
+
}: Popover$1.Close.Props): react_jsx_runtime18.JSX.Element;
|
|
711
|
+
declare function PopoverTitle({
|
|
712
|
+
className,
|
|
713
|
+
...props
|
|
714
|
+
}: Popover$1.Title.Props): react_jsx_runtime18.JSX.Element;
|
|
715
|
+
declare function PopoverDescription({
|
|
716
|
+
className,
|
|
717
|
+
...props
|
|
718
|
+
}: Popover$1.Description.Props): react_jsx_runtime18.JSX.Element;
|
|
709
719
|
//#endregion
|
|
710
720
|
//#region src/components/ui/pagination.d.ts
|
|
711
721
|
declare function Pagination({
|
|
712
722
|
className,
|
|
713
723
|
...props
|
|
714
|
-
}: react0.ComponentProps<"nav">):
|
|
724
|
+
}: react0.ComponentProps<"nav">): react_jsx_runtime18.JSX.Element;
|
|
715
725
|
declare function PaginationContent({
|
|
716
726
|
className,
|
|
717
727
|
...props
|
|
718
|
-
}: react0.ComponentProps<"ul">):
|
|
728
|
+
}: react0.ComponentProps<"ul">): react_jsx_runtime18.JSX.Element;
|
|
719
729
|
declare function PaginationItem({
|
|
720
730
|
...props
|
|
721
|
-
}: react0.ComponentProps<"li">):
|
|
731
|
+
}: react0.ComponentProps<"li">): react_jsx_runtime18.JSX.Element;
|
|
722
732
|
type PaginationLinkProps = {
|
|
723
733
|
isActive?: boolean;
|
|
724
734
|
} & Pick<react0.ComponentProps<typeof Button>, "size"> & react0.ComponentProps<"a">;
|
|
@@ -727,19 +737,19 @@ declare function PaginationLink({
|
|
|
727
737
|
isActive,
|
|
728
738
|
size,
|
|
729
739
|
...props
|
|
730
|
-
}: PaginationLinkProps):
|
|
740
|
+
}: PaginationLinkProps): react_jsx_runtime18.JSX.Element;
|
|
731
741
|
declare function PaginationPrevious({
|
|
732
742
|
className,
|
|
733
743
|
...props
|
|
734
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
744
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime18.JSX.Element;
|
|
735
745
|
declare function PaginationNext({
|
|
736
746
|
className,
|
|
737
747
|
...props
|
|
738
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
748
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime18.JSX.Element;
|
|
739
749
|
declare function PaginationEllipsis({
|
|
740
750
|
className,
|
|
741
751
|
...props
|
|
742
|
-
}: react0.ComponentProps<"span">):
|
|
752
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
743
753
|
//#endregion
|
|
744
754
|
//#region src/components/ui/select.d.ts
|
|
745
755
|
declare const cssAnimationPresets$1: {
|
|
@@ -792,12 +802,12 @@ interface SelectRootProps extends React.ComponentProps<typeof Select$1.Root> {
|
|
|
792
802
|
declare function Select({
|
|
793
803
|
backdrop,
|
|
794
804
|
...props
|
|
795
|
-
}: SelectRootProps):
|
|
805
|
+
}: SelectRootProps): react_jsx_runtime18.JSX.Element;
|
|
796
806
|
interface SelectTriggerProps extends React.ComponentProps<typeof Select$1.Trigger> {}
|
|
797
807
|
declare function SelectTrigger({
|
|
798
808
|
className,
|
|
799
809
|
...props
|
|
800
|
-
}: SelectTriggerProps):
|
|
810
|
+
}: SelectTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
801
811
|
interface SelectValueProps extends React.ComponentProps<typeof Select$1.Value> {
|
|
802
812
|
placeholder?: string;
|
|
803
813
|
}
|
|
@@ -805,12 +815,12 @@ declare function SelectValue({
|
|
|
805
815
|
className,
|
|
806
816
|
placeholder,
|
|
807
817
|
...props
|
|
808
|
-
}: SelectValueProps):
|
|
818
|
+
}: SelectValueProps): react_jsx_runtime18.JSX.Element;
|
|
809
819
|
interface SelectIconProps extends React.ComponentProps<typeof Select$1.Icon> {}
|
|
810
820
|
declare function SelectIcon({
|
|
811
821
|
className,
|
|
812
822
|
...props
|
|
813
|
-
}: SelectIconProps):
|
|
823
|
+
}: SelectIconProps): react_jsx_runtime18.JSX.Element;
|
|
814
824
|
interface SelectPositionerProps extends React.ComponentProps<typeof Select$1.Positioner> {}
|
|
815
825
|
interface SelectPopupProps extends React.ComponentProps<typeof Select$1.Popup>, Pick<SelectPositionerProps, "side" | "sideOffset" | "align" | "alignOffset" | "alignItemWithTrigger"> {
|
|
816
826
|
animationPreset?: CSSAnimationPresets$1;
|
|
@@ -831,89 +841,95 @@ declare function SelectPopup({
|
|
|
831
841
|
alignItemWithTrigger,
|
|
832
842
|
children,
|
|
833
843
|
...rest
|
|
834
|
-
}: SelectPopupProps):
|
|
844
|
+
}: SelectPopupProps): react_jsx_runtime18.JSX.Element;
|
|
835
845
|
interface SelectListProps extends React.ComponentProps<typeof Select$1.List> {}
|
|
836
846
|
declare function SelectList({
|
|
837
847
|
className,
|
|
838
848
|
...props
|
|
839
|
-
}: SelectListProps):
|
|
849
|
+
}: SelectListProps): react_jsx_runtime18.JSX.Element;
|
|
840
850
|
interface SelectItemProps extends React.ComponentProps<typeof Select$1.Item> {}
|
|
841
851
|
declare function SelectItem({
|
|
842
852
|
className,
|
|
843
853
|
...props
|
|
844
|
-
}: SelectItemProps):
|
|
854
|
+
}: SelectItemProps): react_jsx_runtime18.JSX.Element;
|
|
845
855
|
interface SelectItemTextProps extends React.ComponentProps<typeof Select$1.ItemText> {}
|
|
846
856
|
declare function SelectItemText({
|
|
847
857
|
className,
|
|
848
858
|
...props
|
|
849
|
-
}: SelectItemTextProps):
|
|
859
|
+
}: SelectItemTextProps): react_jsx_runtime18.JSX.Element;
|
|
850
860
|
interface SelectItemIndicatorProps extends React.ComponentProps<typeof Select$1.ItemIndicator> {}
|
|
851
861
|
declare function SelectItemIndicator({
|
|
852
862
|
className,
|
|
853
863
|
...props
|
|
854
|
-
}: SelectItemIndicatorProps):
|
|
864
|
+
}: SelectItemIndicatorProps): react_jsx_runtime18.JSX.Element;
|
|
855
865
|
interface SelectGroupProps extends React.ComponentProps<typeof Select$1.Group> {}
|
|
856
866
|
declare function SelectGroup({
|
|
857
867
|
...props
|
|
858
|
-
}: SelectGroupProps):
|
|
868
|
+
}: SelectGroupProps): react_jsx_runtime18.JSX.Element;
|
|
859
869
|
interface SelectGroupLabelProps extends React.ComponentProps<typeof Select$1.GroupLabel> {}
|
|
860
870
|
declare function SelectGroupLabel({
|
|
861
871
|
...props
|
|
862
|
-
}: SelectGroupLabelProps):
|
|
863
|
-
declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>):
|
|
864
|
-
declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>):
|
|
872
|
+
}: SelectGroupLabelProps): react_jsx_runtime18.JSX.Element;
|
|
873
|
+
declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime18.JSX.Element;
|
|
874
|
+
declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime18.JSX.Element;
|
|
865
875
|
interface SelectSeparatorProps extends React.ComponentProps<typeof Select$1.Separator> {}
|
|
866
876
|
declare function SelectSeparator({
|
|
867
877
|
...props
|
|
868
|
-
}: SelectSeparatorProps):
|
|
878
|
+
}: SelectSeparatorProps): react_jsx_runtime18.JSX.Element;
|
|
869
879
|
//#endregion
|
|
870
880
|
//#region src/components/ui/separator.d.ts
|
|
871
881
|
declare function Separator({
|
|
872
882
|
className,
|
|
873
883
|
orientation,
|
|
874
884
|
...props
|
|
875
|
-
}: Separator$1.Props):
|
|
885
|
+
}: Separator$1.Props): react_jsx_runtime18.JSX.Element;
|
|
886
|
+
//#endregion
|
|
887
|
+
//#region src/components/ui/switch.d.ts
|
|
888
|
+
declare function Switch({
|
|
889
|
+
className,
|
|
890
|
+
...props
|
|
891
|
+
}: Switch$1.Root.Props): react_jsx_runtime18.JSX.Element;
|
|
876
892
|
//#endregion
|
|
877
893
|
//#region src/components/ui/table.d.ts
|
|
878
894
|
declare function Table({
|
|
879
895
|
className,
|
|
880
896
|
...props
|
|
881
|
-
}: react0.ComponentProps<"table">):
|
|
897
|
+
}: react0.ComponentProps<"table">): react_jsx_runtime18.JSX.Element;
|
|
882
898
|
declare function TableHeader({
|
|
883
899
|
className,
|
|
884
900
|
...props
|
|
885
|
-
}: react0.ComponentProps<"thead">):
|
|
901
|
+
}: react0.ComponentProps<"thead">): react_jsx_runtime18.JSX.Element;
|
|
886
902
|
declare function TableBody({
|
|
887
903
|
className,
|
|
888
904
|
...props
|
|
889
|
-
}: react0.ComponentProps<"tbody">):
|
|
905
|
+
}: react0.ComponentProps<"tbody">): react_jsx_runtime18.JSX.Element;
|
|
890
906
|
declare function TableFooter({
|
|
891
907
|
className,
|
|
892
908
|
...props
|
|
893
|
-
}: react0.ComponentProps<"tfoot">):
|
|
909
|
+
}: react0.ComponentProps<"tfoot">): react_jsx_runtime18.JSX.Element;
|
|
894
910
|
declare function TableRow({
|
|
895
911
|
className,
|
|
896
912
|
...props
|
|
897
|
-
}: react0.ComponentProps<"tr">):
|
|
913
|
+
}: react0.ComponentProps<"tr">): react_jsx_runtime18.JSX.Element;
|
|
898
914
|
declare function TableHead({
|
|
899
915
|
className,
|
|
900
916
|
...props
|
|
901
|
-
}: react0.ComponentProps<"th">):
|
|
917
|
+
}: react0.ComponentProps<"th">): react_jsx_runtime18.JSX.Element;
|
|
902
918
|
declare function TableCell({
|
|
903
919
|
className,
|
|
904
920
|
...props
|
|
905
|
-
}: react0.ComponentProps<"td">):
|
|
921
|
+
}: react0.ComponentProps<"td">): react_jsx_runtime18.JSX.Element;
|
|
906
922
|
declare function TableCaption({
|
|
907
923
|
className,
|
|
908
924
|
...props
|
|
909
|
-
}: react0.ComponentProps<"caption">):
|
|
925
|
+
}: react0.ComponentProps<"caption">): react_jsx_runtime18.JSX.Element;
|
|
910
926
|
//#endregion
|
|
911
927
|
//#region src/components/ui/tabs.d.ts
|
|
912
928
|
type TabsVariant = "default" | "underline";
|
|
913
929
|
declare function Tabs({
|
|
914
930
|
className,
|
|
915
931
|
...props
|
|
916
|
-
}: Tabs$1.Root.Props):
|
|
932
|
+
}: Tabs$1.Root.Props): react_jsx_runtime18.JSX.Element;
|
|
917
933
|
declare function TabsList({
|
|
918
934
|
variant,
|
|
919
935
|
className,
|
|
@@ -921,19 +937,19 @@ declare function TabsList({
|
|
|
921
937
|
...props
|
|
922
938
|
}: Tabs$1.List.Props & {
|
|
923
939
|
variant?: TabsVariant;
|
|
924
|
-
}):
|
|
940
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
925
941
|
declare function TabsTab({
|
|
926
942
|
className,
|
|
927
943
|
...props
|
|
928
|
-
}: Tabs$1.Tab.Props):
|
|
944
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime18.JSX.Element;
|
|
929
945
|
declare function TabsPanel({
|
|
930
946
|
className,
|
|
931
947
|
...props
|
|
932
|
-
}: Tabs$1.Panel.Props):
|
|
948
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime18.JSX.Element;
|
|
933
949
|
//#endregion
|
|
934
950
|
//#region src/components/ui/toast.d.ts
|
|
935
|
-
declare const toastManager:
|
|
936
|
-
declare const anchoredToastManager:
|
|
951
|
+
declare const toastManager: _base_ui_react1.ToastManager;
|
|
952
|
+
declare const anchoredToastManager: _base_ui_react1.ToastManager;
|
|
937
953
|
type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
|
|
938
954
|
interface ToastProviderProps extends Toast.Provider.Props {
|
|
939
955
|
position?: ToastPosition;
|
|
@@ -942,11 +958,11 @@ declare function ToastProvider({
|
|
|
942
958
|
children,
|
|
943
959
|
position,
|
|
944
960
|
...props
|
|
945
|
-
}: ToastProviderProps):
|
|
961
|
+
}: ToastProviderProps): react_jsx_runtime18.JSX.Element;
|
|
946
962
|
declare function AnchoredToastProvider({
|
|
947
963
|
children,
|
|
948
964
|
...props
|
|
949
|
-
}: Toast.Provider.Props):
|
|
965
|
+
}: Toast.Provider.Props): react_jsx_runtime18.JSX.Element;
|
|
950
966
|
//#endregion
|
|
951
967
|
//#region src/components/ui/tooltip.d.ts
|
|
952
968
|
declare const cssAnimationPresets: {
|
|
@@ -997,13 +1013,13 @@ interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
|
|
|
997
1013
|
declare function TooltipProvider({
|
|
998
1014
|
delay,
|
|
999
1015
|
...props
|
|
1000
|
-
}: TooltipProviderProps):
|
|
1016
|
+
}: TooltipProviderProps): react_jsx_runtime18.JSX.Element;
|
|
1001
1017
|
interface TooltipProps extends Tooltip$1.Root.Props {}
|
|
1002
1018
|
declare function Tooltip({
|
|
1003
1019
|
...props
|
|
1004
|
-
}: TooltipProps):
|
|
1020
|
+
}: TooltipProps): react_jsx_runtime18.JSX.Element;
|
|
1005
1021
|
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
1006
|
-
declare function TooltipTrigger(props: TooltipTriggerProps):
|
|
1022
|
+
declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
1007
1023
|
interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
|
|
1008
1024
|
interface TooltipPopupProps extends Tooltip$1.Popup.Props, Pick<TooltipPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
1009
1025
|
animationPreset?: CSSAnimationPresets;
|
|
@@ -1022,7 +1038,7 @@ declare function TooltipPopup({
|
|
|
1022
1038
|
align,
|
|
1023
1039
|
alignOffset,
|
|
1024
1040
|
...rest
|
|
1025
|
-
}: TooltipPopupProps):
|
|
1041
|
+
}: TooltipPopupProps): react_jsx_runtime18.JSX.Element;
|
|
1026
1042
|
//#endregion
|
|
1027
1043
|
//#region src/utils/animation.d.ts
|
|
1028
1044
|
type AnimationTraitProps = {
|
|
@@ -1197,5 +1213,5 @@ type OptimizedImageAttrs = {
|
|
|
1197
1213
|
*/
|
|
1198
1214
|
declare function useOptimizedImage(src: string | undefined): OptimizedImageAttrs | null;
|
|
1199
1215
|
//#endregion
|
|
1200
|
-
export { Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger, AnchoredToastProvider, AnimationTraitProps, Button, Checkbox, type CheckboxLayout, Dialog, DialogDescription, DialogFooter, DialogHeader, DialogPanel, DialogPopup, DialogTitle, DialogTrigger, DisplayTraitProps, FieldCheckbox, FieldInput, FieldNumberUnit, FieldRadio, FieldSelect, FieldTextarea, FontWeightTraitProps, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, type InputProps, Label, LineHeightTraitProps, MarginItem, MarginTraitProps, MarginValue, type MediaItem, MediaPicker, type MediaPickerProps, type MediaPickerValue, Menu, MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuItem,
|
|
1216
|
+
export { Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger, AnchoredToastProvider, AnimationTraitProps, Button, Checkbox, type CheckboxLayout, Dialog, DialogDescription, DialogFooter, DialogHeader, DialogPanel, DialogPopup, DialogTitle, DialogTrigger, DisplayTraitProps, FieldCheckbox, FieldInput, FieldNumberUnit, FieldRadio, FieldSelect, FieldTextarea, FontWeightTraitProps, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, type InputProps, Label, LineHeightTraitProps, MarginItem, MarginTraitProps, MarginValue, type MediaItem, MediaPicker, type MediaPickerProps, type MediaPickerValue, Menu, MenuCheckboxItem, MenuCreateHandle, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSub, MenuSubPopup, MenuSubTrigger, MenuTrigger, OptimizedImageAttrs, PaddingItem, PaddingTraitProps, PaddingValue, type PageItem, PagePicker, type PagePickerProps, type PagePickerValue, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverClose, PopoverPopup as PopoverContent, PopoverPopup, PopoverCreateHandle, PopoverDescription, PopoverTitle, PopoverTrigger, PositionTraitProps, RadioGroup, RadioGroupItem, type RadioLayout, RichTextMenuLink, Select, SelectGroup, SelectGroupLabel, SelectIcon, SelectItem, SelectItemIndicator, SelectItemText, SelectList, SelectPopup, SelectScrollDownArrow, SelectScrollUpArrow, SelectSeparator, SelectTrigger, SelectValue, Separator, SizeTraitProps, SizeValue, SpacingTraitProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsPanel as TabsContent, TabsPanel, TabsList, TabsTab, TabsTab as TabsTrigger, TextAlignTraitProps, TextColorTraitProps, TextDecorationTraitProps, TextSizeTraitProps, TextTransformTraitProps, Textarea, type TextareaProps, type ToastPosition, ToastProvider, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, TypographyTraitProps, anchoredToastManager, animationDefaultProps, animationField, animationToAttributes, buttonVariants, createPuckOverridesPlugin, displayDefaultProps, displayField, displayToClasses, fontWeightDefaultProps, fontWeightField, fontWeightToClasses, getMediaUrl, getPageUrl, lineHeightDefaultProps, lineHeightField, lineHeightToClasses, marginDefaultProps, marginField, marginToClasses, paddingDefaultProps, paddingField, paddingToClasses, positionDefaultProps, positionField, positionToClasses, richTextMenuLinkExtension, richTextMenuLinkSelector, sizeDefaultProps, sizeField, sizeToClasses, spacingDefaultProps, spacingFieldNames, spacingFields, spacingOptions, spacingToClasses, textAlignDefaultProps, textAlignField, textAlignToClasses, textColorDefaultProps, textColorField, textColorToClasses, textDecorationDefaultProps, textDecorationField, textDecorationToClasses, textSizeDefaultProps, textSizeField, textSizeToClasses, textTransformDefaultProps, textTransformField, textTransformToClasses, toastManager, typographyDefaultProps, typographyFieldNames, typographyFields, typographyToClasses, useOptimizedImage };
|
|
1201
1217
|
//# sourceMappingURL=index.d.ts.map
|