@ckc-net/puck-extended 0.1.13 → 0.2.0
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 +148 -202
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +275 -355
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react0 from "react";
|
|
2
2
|
import React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime27 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";
|
|
@@ -37,7 +37,7 @@ declare const FieldNumberUnit: ({
|
|
|
37
37
|
label: string;
|
|
38
38
|
field: any;
|
|
39
39
|
readOnly?: boolean;
|
|
40
|
-
}) =>
|
|
40
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
41
41
|
//#endregion
|
|
42
42
|
//#region src/overrides/plugin.d.ts
|
|
43
43
|
declare const createPuckOverridesPlugin: () => {
|
|
@@ -51,7 +51,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
51
51
|
label?: string;
|
|
52
52
|
parentAction?: react0.ReactNode;
|
|
53
53
|
children?: react0.ReactNode;
|
|
54
|
-
}):
|
|
54
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
55
55
|
Action: ({
|
|
56
56
|
children,
|
|
57
57
|
label,
|
|
@@ -60,31 +60,31 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
60
60
|
children: react0.ReactNode;
|
|
61
61
|
label?: string;
|
|
62
62
|
onClick: (e: react0.SyntheticEvent) => void;
|
|
63
|
-
}) =>
|
|
63
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
64
64
|
Label: ({
|
|
65
65
|
label
|
|
66
66
|
}: {
|
|
67
67
|
label: string;
|
|
68
|
-
}) =>
|
|
68
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
69
69
|
Group: ({
|
|
70
70
|
children
|
|
71
71
|
}: {
|
|
72
72
|
children: react0.ReactNode;
|
|
73
|
-
}) =>
|
|
74
|
-
Separator: () =>
|
|
73
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
74
|
+
Separator: () => react_jsx_runtime27.JSX.Element;
|
|
75
75
|
};
|
|
76
76
|
drawer: ({
|
|
77
77
|
children
|
|
78
78
|
}: {
|
|
79
79
|
children: React.ReactNode;
|
|
80
|
-
}) =>
|
|
80
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
81
81
|
drawerItem: ({
|
|
82
82
|
name,
|
|
83
83
|
icon
|
|
84
84
|
}: {
|
|
85
85
|
name: string;
|
|
86
86
|
icon?: React.ReactNode;
|
|
87
|
-
}) =>
|
|
87
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
88
88
|
fields: ({
|
|
89
89
|
children
|
|
90
90
|
}: {
|
|
@@ -94,14 +94,14 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
94
94
|
path?: string;
|
|
95
95
|
index?: number;
|
|
96
96
|
} | null;
|
|
97
|
-
}) =>
|
|
97
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
98
98
|
fieldLabel: ({
|
|
99
99
|
children,
|
|
100
100
|
label
|
|
101
101
|
}: {
|
|
102
102
|
children: React.ReactNode;
|
|
103
103
|
label: string;
|
|
104
|
-
}) =>
|
|
104
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
105
105
|
fieldTypes: {
|
|
106
106
|
checkbox: ({
|
|
107
107
|
onChange,
|
|
@@ -120,7 +120,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
120
120
|
};
|
|
121
121
|
}) & {
|
|
122
122
|
label: string;
|
|
123
|
-
}) =>
|
|
123
|
+
}) => react_jsx_runtime27.JSX.Element | null;
|
|
124
124
|
numberUnit: ({
|
|
125
125
|
onChange,
|
|
126
126
|
value,
|
|
@@ -133,7 +133,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
133
133
|
label: string;
|
|
134
134
|
field: any;
|
|
135
135
|
readOnly?: boolean;
|
|
136
|
-
}) =>
|
|
136
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
137
137
|
radio: ({
|
|
138
138
|
onChange,
|
|
139
139
|
value,
|
|
@@ -151,7 +151,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
151
151
|
};
|
|
152
152
|
}) & {
|
|
153
153
|
label: string;
|
|
154
|
-
}) =>
|
|
154
|
+
}) => react_jsx_runtime27.JSX.Element | null;
|
|
155
155
|
select: ({
|
|
156
156
|
onChange,
|
|
157
157
|
value,
|
|
@@ -164,7 +164,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
164
164
|
label: string;
|
|
165
165
|
field: any;
|
|
166
166
|
readOnly?: boolean;
|
|
167
|
-
}) =>
|
|
167
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
168
168
|
text: ({
|
|
169
169
|
onChange,
|
|
170
170
|
value,
|
|
@@ -177,7 +177,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
177
177
|
label?: string;
|
|
178
178
|
field: any;
|
|
179
179
|
readOnly?: boolean;
|
|
180
|
-
}) =>
|
|
180
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
181
181
|
textarea: ({
|
|
182
182
|
onChange,
|
|
183
183
|
value,
|
|
@@ -190,7 +190,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
190
190
|
label: string;
|
|
191
191
|
field: any;
|
|
192
192
|
readOnly?: boolean;
|
|
193
|
-
}) =>
|
|
193
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
194
194
|
};
|
|
195
195
|
};
|
|
196
196
|
};
|
|
@@ -202,7 +202,7 @@ declare const Label: ({
|
|
|
202
202
|
}: {
|
|
203
203
|
label?: string;
|
|
204
204
|
readOnly?: boolean;
|
|
205
|
-
}) =>
|
|
205
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
206
206
|
//#endregion
|
|
207
207
|
//#region src/components/Fields/Input/index.d.ts
|
|
208
208
|
declare const FieldInput: ({
|
|
@@ -217,7 +217,7 @@ declare const FieldInput: ({
|
|
|
217
217
|
label?: string;
|
|
218
218
|
field: any;
|
|
219
219
|
readOnly?: boolean;
|
|
220
|
-
}) =>
|
|
220
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
221
221
|
//#endregion
|
|
222
222
|
//#region src/components/Fields/Textarea/index.d.ts
|
|
223
223
|
declare const FieldTextarea: ({
|
|
@@ -232,7 +232,7 @@ declare const FieldTextarea: ({
|
|
|
232
232
|
label: string;
|
|
233
233
|
field: any;
|
|
234
234
|
readOnly?: boolean;
|
|
235
|
-
}) =>
|
|
235
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
236
236
|
//#endregion
|
|
237
237
|
//#region src/components/Fields/Select/index.d.ts
|
|
238
238
|
declare const FieldSelect: ({
|
|
@@ -247,7 +247,7 @@ declare const FieldSelect: ({
|
|
|
247
247
|
label: string;
|
|
248
248
|
field: any;
|
|
249
249
|
readOnly?: boolean;
|
|
250
|
-
}) =>
|
|
250
|
+
}) => react_jsx_runtime27.JSX.Element;
|
|
251
251
|
//#endregion
|
|
252
252
|
//#region src/components/ui/radio.d.ts
|
|
253
253
|
type RadioLayout = "horizontal" | "inline";
|
|
@@ -261,12 +261,12 @@ declare function RadioGroup({
|
|
|
261
261
|
className,
|
|
262
262
|
layout,
|
|
263
263
|
...props
|
|
264
|
-
}: RadioGroupProps):
|
|
264
|
+
}: RadioGroupProps): react_jsx_runtime27.JSX.Element;
|
|
265
265
|
declare function RadioGroupItem({
|
|
266
266
|
className,
|
|
267
267
|
layout,
|
|
268
268
|
...props
|
|
269
|
-
}: RadioGroupItemProps):
|
|
269
|
+
}: RadioGroupItemProps): react_jsx_runtime27.JSX.Element;
|
|
270
270
|
//#endregion
|
|
271
271
|
//#region src/components/Fields/Radio/index.d.ts
|
|
272
272
|
type RadioProps = FieldProps<Field<any>> & {
|
|
@@ -287,7 +287,7 @@ declare const FieldRadio: ({
|
|
|
287
287
|
label
|
|
288
288
|
}: RadioProps & {
|
|
289
289
|
label: string;
|
|
290
|
-
}) =>
|
|
290
|
+
}) => react_jsx_runtime27.JSX.Element | null;
|
|
291
291
|
//#endregion
|
|
292
292
|
//#region src/components/ui/checkbox.d.ts
|
|
293
293
|
type CheckboxLayout = "horizontal" | "inline";
|
|
@@ -298,7 +298,7 @@ declare function Checkbox({
|
|
|
298
298
|
className,
|
|
299
299
|
layout,
|
|
300
300
|
...props
|
|
301
|
-
}: CheckboxProps$1):
|
|
301
|
+
}: CheckboxProps$1): react_jsx_runtime27.JSX.Element;
|
|
302
302
|
//#endregion
|
|
303
303
|
//#region src/components/Fields/Checkbox/index.d.ts
|
|
304
304
|
type CheckboxProps = FieldProps<Field<any>> & {
|
|
@@ -319,7 +319,7 @@ declare const FieldCheckbox: ({
|
|
|
319
319
|
label
|
|
320
320
|
}: CheckboxProps & {
|
|
321
321
|
label: string;
|
|
322
|
-
}) =>
|
|
322
|
+
}) => react_jsx_runtime27.JSX.Element | null;
|
|
323
323
|
//#endregion
|
|
324
324
|
//#region src/components/MediaPicker/index.d.ts
|
|
325
325
|
type MediaItem = {
|
|
@@ -338,12 +338,16 @@ type MediaPickerProps = {
|
|
|
338
338
|
value?: MediaPickerValue;
|
|
339
339
|
onChange: (value: MediaPickerValue) => void;
|
|
340
340
|
mediaType?: string;
|
|
341
|
+
acceptedTypes?: string;
|
|
342
|
+
maxSize?: number;
|
|
341
343
|
};
|
|
342
344
|
declare const MediaPicker: ({
|
|
343
345
|
value,
|
|
344
346
|
onChange,
|
|
345
|
-
mediaType
|
|
346
|
-
|
|
347
|
+
mediaType,
|
|
348
|
+
acceptedTypes,
|
|
349
|
+
maxSize
|
|
350
|
+
}: MediaPickerProps) => react_jsx_runtime27.JSX.Element;
|
|
347
351
|
declare const getMediaUrl: (value?: MediaPickerValue) => string | undefined;
|
|
348
352
|
//#endregion
|
|
349
353
|
//#region src/components/PagePicker/index.d.ts
|
|
@@ -366,11 +370,11 @@ type PagePickerProps = {
|
|
|
366
370
|
declare const PagePicker: ({
|
|
367
371
|
value,
|
|
368
372
|
onChange
|
|
369
|
-
}: PagePickerProps) =>
|
|
373
|
+
}: PagePickerProps) => react_jsx_runtime27.JSX.Element;
|
|
370
374
|
declare const getPageUrl: (value?: PagePickerValue) => string | undefined;
|
|
371
375
|
//#endregion
|
|
372
376
|
//#region src/components/ui/accordion.d.ts
|
|
373
|
-
declare const cssAnimationPresets$
|
|
377
|
+
declare const cssAnimationPresets$2: {
|
|
374
378
|
none: string;
|
|
375
379
|
fade: string[];
|
|
376
380
|
scale: string[];
|
|
@@ -378,7 +382,7 @@ declare const cssAnimationPresets$3: {
|
|
|
378
382
|
perspective: string[];
|
|
379
383
|
perspectiveBlur: string[];
|
|
380
384
|
};
|
|
381
|
-
declare const cssTransitionPresets$
|
|
385
|
+
declare const cssTransitionPresets$2: {
|
|
382
386
|
inExpo: string;
|
|
383
387
|
outExpo: string;
|
|
384
388
|
inOutExpo: string;
|
|
@@ -408,8 +412,8 @@ declare const cssTransitionPresets$3: {
|
|
|
408
412
|
inOutCirc: string;
|
|
409
413
|
inOutBase: string;
|
|
410
414
|
};
|
|
411
|
-
type CSSAnimationPreset = keyof typeof cssAnimationPresets$
|
|
412
|
-
type CSSTransitionPreset = keyof typeof cssTransitionPresets$
|
|
415
|
+
type CSSAnimationPreset = keyof typeof cssAnimationPresets$2;
|
|
416
|
+
type CSSTransitionPreset = keyof typeof cssTransitionPresets$2;
|
|
413
417
|
type AccordionVariant = "default" | "card" | "swiss";
|
|
414
418
|
interface AccordionProps extends Accordion$1.Root.Props {
|
|
415
419
|
animationPreset?: CSSAnimationPreset;
|
|
@@ -428,19 +432,19 @@ declare function Accordion({
|
|
|
428
432
|
className,
|
|
429
433
|
multiple,
|
|
430
434
|
...props
|
|
431
|
-
}: AccordionProps):
|
|
435
|
+
}: AccordionProps): react_jsx_runtime27.JSX.Element;
|
|
432
436
|
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
433
437
|
declare function AccordionItem({
|
|
434
438
|
value: itemValue,
|
|
435
439
|
onOpenChange,
|
|
436
440
|
className,
|
|
437
441
|
...rest
|
|
438
|
-
}: AccordionItemProps):
|
|
442
|
+
}: AccordionItemProps): react_jsx_runtime27.JSX.Element;
|
|
439
443
|
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
440
444
|
declare function AccordionHeader({
|
|
441
445
|
className,
|
|
442
446
|
...props
|
|
443
|
-
}: AccordionHeaderProps):
|
|
447
|
+
}: AccordionHeaderProps): react_jsx_runtime27.JSX.Element;
|
|
444
448
|
interface AccordionTriggerProps extends Accordion$1.Trigger.Props {
|
|
445
449
|
icon?: (props: {
|
|
446
450
|
open: boolean;
|
|
@@ -451,14 +455,14 @@ declare function AccordionTrigger({
|
|
|
451
455
|
icon,
|
|
452
456
|
children,
|
|
453
457
|
...props
|
|
454
|
-
}: AccordionTriggerProps):
|
|
458
|
+
}: AccordionTriggerProps): react_jsx_runtime27.JSX.Element;
|
|
455
459
|
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
456
460
|
declare function AccordionPanel({
|
|
457
461
|
className,
|
|
458
462
|
children,
|
|
459
463
|
style,
|
|
460
464
|
...props
|
|
461
|
-
}: AccordionPanelProps):
|
|
465
|
+
}: AccordionPanelProps): react_jsx_runtime27.JSX.Element;
|
|
462
466
|
//#endregion
|
|
463
467
|
//#region src/components/ui/button.d.ts
|
|
464
468
|
declare const buttonVariants: (props?: ({
|
|
@@ -479,7 +483,7 @@ declare function Button({
|
|
|
479
483
|
//#endregion
|
|
480
484
|
//#region src/components/ui/dialog.d.ts
|
|
481
485
|
declare const Dialog: typeof Dialog$1.Root;
|
|
482
|
-
declare function DialogTrigger(props: Dialog$1.Trigger.Props):
|
|
486
|
+
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime27.JSX.Element;
|
|
483
487
|
declare function DialogPopup({
|
|
484
488
|
className,
|
|
485
489
|
children,
|
|
@@ -489,33 +493,33 @@ declare function DialogPopup({
|
|
|
489
493
|
}: Dialog$1.Popup.Props & {
|
|
490
494
|
showCloseButton?: boolean;
|
|
491
495
|
bottomStickOnMobile?: boolean;
|
|
492
|
-
}):
|
|
496
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
493
497
|
declare function DialogHeader({
|
|
494
498
|
className,
|
|
495
499
|
...props
|
|
496
|
-
}: React.ComponentProps<"div">):
|
|
500
|
+
}: React.ComponentProps<"div">): react_jsx_runtime27.JSX.Element;
|
|
497
501
|
declare function DialogFooter({
|
|
498
502
|
className,
|
|
499
503
|
variant,
|
|
500
504
|
...props
|
|
501
505
|
}: React.ComponentProps<"div"> & {
|
|
502
506
|
variant?: "default" | "bare";
|
|
503
|
-
}):
|
|
507
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
504
508
|
declare function DialogTitle({
|
|
505
509
|
className,
|
|
506
510
|
...props
|
|
507
|
-
}: Dialog$1.Title.Props):
|
|
511
|
+
}: Dialog$1.Title.Props): react_jsx_runtime27.JSX.Element;
|
|
508
512
|
declare function DialogDescription({
|
|
509
513
|
className,
|
|
510
514
|
...props
|
|
511
|
-
}: Dialog$1.Description.Props):
|
|
515
|
+
}: Dialog$1.Description.Props): react_jsx_runtime27.JSX.Element;
|
|
512
516
|
declare function DialogPanel({
|
|
513
517
|
className,
|
|
514
518
|
scrollFade,
|
|
515
519
|
...props
|
|
516
520
|
}: React.ComponentProps<"div"> & {
|
|
517
521
|
scrollFade?: boolean;
|
|
518
|
-
}):
|
|
522
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
519
523
|
//#endregion
|
|
520
524
|
//#region src/components/ui/input.d.ts
|
|
521
525
|
type InputProps = Omit<Input$1.Props & react0.RefAttributes<HTMLInputElement>, "size"> & {
|
|
@@ -529,7 +533,7 @@ declare function Input({
|
|
|
529
533
|
unstyled,
|
|
530
534
|
nativeInput,
|
|
531
535
|
...props
|
|
532
|
-
}: InputProps):
|
|
536
|
+
}: InputProps): react_jsx_runtime27.JSX.Element;
|
|
533
537
|
//#endregion
|
|
534
538
|
//#region src/components/ui/textarea.d.ts
|
|
535
539
|
type TextareaProps = react0.ComponentProps<"textarea"> & {
|
|
@@ -541,13 +545,13 @@ declare function Textarea({
|
|
|
541
545
|
size,
|
|
542
546
|
unstyled,
|
|
543
547
|
...props
|
|
544
|
-
}: TextareaProps):
|
|
548
|
+
}: TextareaProps): react_jsx_runtime27.JSX.Element;
|
|
545
549
|
//#endregion
|
|
546
550
|
//#region src/components/ui/input-group.d.ts
|
|
547
551
|
declare function InputGroup({
|
|
548
552
|
className,
|
|
549
553
|
...props
|
|
550
|
-
}: react0.ComponentProps<"div">):
|
|
554
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime27.JSX.Element;
|
|
551
555
|
declare const inputGroupAddonVariants: (props?: ({
|
|
552
556
|
align?: "inline-start" | "block-end" | "block-start" | "inline-end" | null | undefined;
|
|
553
557
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -555,170 +559,112 @@ declare function InputGroupAddon({
|
|
|
555
559
|
className,
|
|
556
560
|
align,
|
|
557
561
|
...props
|
|
558
|
-
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
562
|
+
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime27.JSX.Element;
|
|
559
563
|
declare function InputGroupText({
|
|
560
564
|
className,
|
|
561
565
|
...props
|
|
562
|
-
}: react0.ComponentProps<"span">):
|
|
566
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime27.JSX.Element;
|
|
563
567
|
declare function InputGroupInput({
|
|
564
568
|
className,
|
|
565
569
|
...props
|
|
566
|
-
}: InputProps):
|
|
570
|
+
}: InputProps): react_jsx_runtime27.JSX.Element;
|
|
567
571
|
declare function InputGroupTextarea({
|
|
568
572
|
className,
|
|
569
573
|
...props
|
|
570
|
-
}: TextareaProps):
|
|
574
|
+
}: TextareaProps): react_jsx_runtime27.JSX.Element;
|
|
571
575
|
//#endregion
|
|
572
576
|
//#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
|
-
}
|
|
577
|
+
declare const MenuCreateHandle: typeof Menu$1.createHandle;
|
|
578
|
+
declare const Menu: typeof Menu$1.Root;
|
|
579
|
+
declare const MenuPortal: react0.ForwardRefExoticComponent<Omit<_base_ui_react0.ContextMenuPortalProps, "ref"> & react0.RefAttributes<HTMLDivElement>>;
|
|
580
|
+
declare function MenuTrigger(props: Menu$1.Trigger.Props): react_jsx_runtime27.JSX.Element;
|
|
635
581
|
declare function MenuPopup({
|
|
582
|
+
children,
|
|
636
583
|
className,
|
|
637
|
-
animationPreset,
|
|
638
|
-
transitionPreset,
|
|
639
|
-
reduceMotion,
|
|
640
|
-
showArrow,
|
|
641
|
-
side,
|
|
642
584
|
sideOffset,
|
|
643
585
|
align,
|
|
644
586
|
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,
|
|
587
|
+
side,
|
|
657
588
|
...props
|
|
658
|
-
}:
|
|
659
|
-
|
|
589
|
+
}: Menu$1.Popup.Props & {
|
|
590
|
+
align?: Menu$1.Positioner.Props["align"];
|
|
591
|
+
sideOffset?: Menu$1.Positioner.Props["sideOffset"];
|
|
592
|
+
alignOffset?: Menu$1.Positioner.Props["alignOffset"];
|
|
593
|
+
side?: Menu$1.Positioner.Props["side"];
|
|
594
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
595
|
+
declare function MenuGroup(props: Menu$1.Group.Props): react_jsx_runtime27.JSX.Element;
|
|
660
596
|
declare function MenuItem({
|
|
661
597
|
className,
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
declare function MenuSeparator({
|
|
665
|
-
className,
|
|
598
|
+
inset,
|
|
599
|
+
variant,
|
|
666
600
|
...props
|
|
667
|
-
}: Menu$1.
|
|
668
|
-
|
|
601
|
+
}: Menu$1.Item.Props & {
|
|
602
|
+
inset?: boolean;
|
|
603
|
+
variant?: "default" | "destructive";
|
|
604
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
669
605
|
declare function MenuCheckboxItem({
|
|
670
606
|
className,
|
|
671
607
|
children,
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
interface MenuRadioGroupProps extends Menu$1.RadioGroup.Props {
|
|
675
|
-
activeIcon?: React.ReactNode;
|
|
676
|
-
}
|
|
677
|
-
declare function MenuRadioGroup({
|
|
678
|
-
activeIcon,
|
|
608
|
+
checked,
|
|
609
|
+
variant,
|
|
679
610
|
...props
|
|
680
|
-
}:
|
|
611
|
+
}: Menu$1.CheckboxItem.Props & {
|
|
612
|
+
variant?: "default" | "switch";
|
|
613
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
614
|
+
declare function MenuRadioGroup(props: Menu$1.RadioGroup.Props): react_jsx_runtime27.JSX.Element;
|
|
681
615
|
declare function MenuRadioItem({
|
|
682
616
|
className,
|
|
683
617
|
children,
|
|
684
|
-
value,
|
|
685
618
|
...props
|
|
686
|
-
}: Menu$1.RadioItem.Props):
|
|
619
|
+
}: Menu$1.RadioItem.Props): react_jsx_runtime27.JSX.Element;
|
|
620
|
+
declare function MenuGroupLabel({
|
|
621
|
+
className,
|
|
622
|
+
inset,
|
|
623
|
+
...props
|
|
624
|
+
}: Menu$1.GroupLabel.Props & {
|
|
625
|
+
inset?: boolean;
|
|
626
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
627
|
+
declare function MenuSeparator({
|
|
628
|
+
className,
|
|
629
|
+
...props
|
|
630
|
+
}: Menu$1.Separator.Props): react_jsx_runtime27.JSX.Element;
|
|
687
631
|
declare function MenuShortcut({
|
|
688
632
|
className,
|
|
689
633
|
...props
|
|
690
|
-
}:
|
|
691
|
-
|
|
692
|
-
declare function MenuSub(props: MenuSubProps): react_jsx_runtime17.JSX.Element;
|
|
693
|
-
interface MenuSubTriggerProps extends Menu$1.SubmenuTrigger.Props {}
|
|
634
|
+
}: react0.ComponentProps<"kbd">): react_jsx_runtime27.JSX.Element;
|
|
635
|
+
declare function MenuSub(props: Menu$1.SubmenuRoot.Props): react_jsx_runtime27.JSX.Element;
|
|
694
636
|
declare function MenuSubTrigger({
|
|
695
637
|
className,
|
|
638
|
+
inset,
|
|
696
639
|
children,
|
|
697
|
-
...
|
|
698
|
-
}:
|
|
699
|
-
|
|
640
|
+
...props
|
|
641
|
+
}: Menu$1.SubmenuTrigger.Props & {
|
|
642
|
+
inset?: boolean;
|
|
643
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
700
644
|
declare function MenuSubPopup({
|
|
701
645
|
className,
|
|
702
|
-
children,
|
|
703
|
-
side,
|
|
704
646
|
sideOffset,
|
|
705
|
-
align,
|
|
706
647
|
alignOffset,
|
|
707
|
-
|
|
708
|
-
|
|
648
|
+
align,
|
|
649
|
+
...props
|
|
650
|
+
}: Menu$1.Popup.Props & {
|
|
651
|
+
align?: Menu$1.Positioner.Props["align"];
|
|
652
|
+
sideOffset?: Menu$1.Positioner.Props["sideOffset"];
|
|
653
|
+
alignOffset?: Menu$1.Positioner.Props["alignOffset"];
|
|
654
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
709
655
|
//#endregion
|
|
710
656
|
//#region src/components/ui/pagination.d.ts
|
|
711
657
|
declare function Pagination({
|
|
712
658
|
className,
|
|
713
659
|
...props
|
|
714
|
-
}: react0.ComponentProps<"nav">):
|
|
660
|
+
}: react0.ComponentProps<"nav">): react_jsx_runtime27.JSX.Element;
|
|
715
661
|
declare function PaginationContent({
|
|
716
662
|
className,
|
|
717
663
|
...props
|
|
718
|
-
}: react0.ComponentProps<"ul">):
|
|
664
|
+
}: react0.ComponentProps<"ul">): react_jsx_runtime27.JSX.Element;
|
|
719
665
|
declare function PaginationItem({
|
|
720
666
|
...props
|
|
721
|
-
}: react0.ComponentProps<"li">):
|
|
667
|
+
}: react0.ComponentProps<"li">): react_jsx_runtime27.JSX.Element;
|
|
722
668
|
type PaginationLinkProps = {
|
|
723
669
|
isActive?: boolean;
|
|
724
670
|
} & Pick<react0.ComponentProps<typeof Button>, "size"> & react0.ComponentProps<"a">;
|
|
@@ -727,19 +673,19 @@ declare function PaginationLink({
|
|
|
727
673
|
isActive,
|
|
728
674
|
size,
|
|
729
675
|
...props
|
|
730
|
-
}: PaginationLinkProps):
|
|
676
|
+
}: PaginationLinkProps): react_jsx_runtime27.JSX.Element;
|
|
731
677
|
declare function PaginationPrevious({
|
|
732
678
|
className,
|
|
733
679
|
...props
|
|
734
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
680
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime27.JSX.Element;
|
|
735
681
|
declare function PaginationNext({
|
|
736
682
|
className,
|
|
737
683
|
...props
|
|
738
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
684
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime27.JSX.Element;
|
|
739
685
|
declare function PaginationEllipsis({
|
|
740
686
|
className,
|
|
741
687
|
...props
|
|
742
|
-
}: react0.ComponentProps<"span">):
|
|
688
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime27.JSX.Element;
|
|
743
689
|
//#endregion
|
|
744
690
|
//#region src/components/ui/select.d.ts
|
|
745
691
|
declare const cssAnimationPresets$1: {
|
|
@@ -792,12 +738,12 @@ interface SelectRootProps extends React.ComponentProps<typeof Select$1.Root> {
|
|
|
792
738
|
declare function Select({
|
|
793
739
|
backdrop,
|
|
794
740
|
...props
|
|
795
|
-
}: SelectRootProps):
|
|
741
|
+
}: SelectRootProps): react_jsx_runtime27.JSX.Element;
|
|
796
742
|
interface SelectTriggerProps extends React.ComponentProps<typeof Select$1.Trigger> {}
|
|
797
743
|
declare function SelectTrigger({
|
|
798
744
|
className,
|
|
799
745
|
...props
|
|
800
|
-
}: SelectTriggerProps):
|
|
746
|
+
}: SelectTriggerProps): react_jsx_runtime27.JSX.Element;
|
|
801
747
|
interface SelectValueProps extends React.ComponentProps<typeof Select$1.Value> {
|
|
802
748
|
placeholder?: string;
|
|
803
749
|
}
|
|
@@ -805,12 +751,12 @@ declare function SelectValue({
|
|
|
805
751
|
className,
|
|
806
752
|
placeholder,
|
|
807
753
|
...props
|
|
808
|
-
}: SelectValueProps):
|
|
754
|
+
}: SelectValueProps): react_jsx_runtime27.JSX.Element;
|
|
809
755
|
interface SelectIconProps extends React.ComponentProps<typeof Select$1.Icon> {}
|
|
810
756
|
declare function SelectIcon({
|
|
811
757
|
className,
|
|
812
758
|
...props
|
|
813
|
-
}: SelectIconProps):
|
|
759
|
+
}: SelectIconProps): react_jsx_runtime27.JSX.Element;
|
|
814
760
|
interface SelectPositionerProps extends React.ComponentProps<typeof Select$1.Positioner> {}
|
|
815
761
|
interface SelectPopupProps extends React.ComponentProps<typeof Select$1.Popup>, Pick<SelectPositionerProps, "side" | "sideOffset" | "align" | "alignOffset" | "alignItemWithTrigger"> {
|
|
816
762
|
animationPreset?: CSSAnimationPresets$1;
|
|
@@ -831,89 +777,89 @@ declare function SelectPopup({
|
|
|
831
777
|
alignItemWithTrigger,
|
|
832
778
|
children,
|
|
833
779
|
...rest
|
|
834
|
-
}: SelectPopupProps):
|
|
780
|
+
}: SelectPopupProps): react_jsx_runtime27.JSX.Element;
|
|
835
781
|
interface SelectListProps extends React.ComponentProps<typeof Select$1.List> {}
|
|
836
782
|
declare function SelectList({
|
|
837
783
|
className,
|
|
838
784
|
...props
|
|
839
|
-
}: SelectListProps):
|
|
785
|
+
}: SelectListProps): react_jsx_runtime27.JSX.Element;
|
|
840
786
|
interface SelectItemProps extends React.ComponentProps<typeof Select$1.Item> {}
|
|
841
787
|
declare function SelectItem({
|
|
842
788
|
className,
|
|
843
789
|
...props
|
|
844
|
-
}: SelectItemProps):
|
|
790
|
+
}: SelectItemProps): react_jsx_runtime27.JSX.Element;
|
|
845
791
|
interface SelectItemTextProps extends React.ComponentProps<typeof Select$1.ItemText> {}
|
|
846
792
|
declare function SelectItemText({
|
|
847
793
|
className,
|
|
848
794
|
...props
|
|
849
|
-
}: SelectItemTextProps):
|
|
795
|
+
}: SelectItemTextProps): react_jsx_runtime27.JSX.Element;
|
|
850
796
|
interface SelectItemIndicatorProps extends React.ComponentProps<typeof Select$1.ItemIndicator> {}
|
|
851
797
|
declare function SelectItemIndicator({
|
|
852
798
|
className,
|
|
853
799
|
...props
|
|
854
|
-
}: SelectItemIndicatorProps):
|
|
800
|
+
}: SelectItemIndicatorProps): react_jsx_runtime27.JSX.Element;
|
|
855
801
|
interface SelectGroupProps extends React.ComponentProps<typeof Select$1.Group> {}
|
|
856
802
|
declare function SelectGroup({
|
|
857
803
|
...props
|
|
858
|
-
}: SelectGroupProps):
|
|
804
|
+
}: SelectGroupProps): react_jsx_runtime27.JSX.Element;
|
|
859
805
|
interface SelectGroupLabelProps extends React.ComponentProps<typeof Select$1.GroupLabel> {}
|
|
860
806
|
declare function SelectGroupLabel({
|
|
861
807
|
...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>):
|
|
808
|
+
}: SelectGroupLabelProps): react_jsx_runtime27.JSX.Element;
|
|
809
|
+
declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime27.JSX.Element;
|
|
810
|
+
declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime27.JSX.Element;
|
|
865
811
|
interface SelectSeparatorProps extends React.ComponentProps<typeof Select$1.Separator> {}
|
|
866
812
|
declare function SelectSeparator({
|
|
867
813
|
...props
|
|
868
|
-
}: SelectSeparatorProps):
|
|
814
|
+
}: SelectSeparatorProps): react_jsx_runtime27.JSX.Element;
|
|
869
815
|
//#endregion
|
|
870
816
|
//#region src/components/ui/separator.d.ts
|
|
871
817
|
declare function Separator({
|
|
872
818
|
className,
|
|
873
819
|
orientation,
|
|
874
820
|
...props
|
|
875
|
-
}: Separator$1.Props):
|
|
821
|
+
}: Separator$1.Props): react_jsx_runtime27.JSX.Element;
|
|
876
822
|
//#endregion
|
|
877
823
|
//#region src/components/ui/table.d.ts
|
|
878
824
|
declare function Table({
|
|
879
825
|
className,
|
|
880
826
|
...props
|
|
881
|
-
}: react0.ComponentProps<"table">):
|
|
827
|
+
}: react0.ComponentProps<"table">): react_jsx_runtime27.JSX.Element;
|
|
882
828
|
declare function TableHeader({
|
|
883
829
|
className,
|
|
884
830
|
...props
|
|
885
|
-
}: react0.ComponentProps<"thead">):
|
|
831
|
+
}: react0.ComponentProps<"thead">): react_jsx_runtime27.JSX.Element;
|
|
886
832
|
declare function TableBody({
|
|
887
833
|
className,
|
|
888
834
|
...props
|
|
889
|
-
}: react0.ComponentProps<"tbody">):
|
|
835
|
+
}: react0.ComponentProps<"tbody">): react_jsx_runtime27.JSX.Element;
|
|
890
836
|
declare function TableFooter({
|
|
891
837
|
className,
|
|
892
838
|
...props
|
|
893
|
-
}: react0.ComponentProps<"tfoot">):
|
|
839
|
+
}: react0.ComponentProps<"tfoot">): react_jsx_runtime27.JSX.Element;
|
|
894
840
|
declare function TableRow({
|
|
895
841
|
className,
|
|
896
842
|
...props
|
|
897
|
-
}: react0.ComponentProps<"tr">):
|
|
843
|
+
}: react0.ComponentProps<"tr">): react_jsx_runtime27.JSX.Element;
|
|
898
844
|
declare function TableHead({
|
|
899
845
|
className,
|
|
900
846
|
...props
|
|
901
|
-
}: react0.ComponentProps<"th">):
|
|
847
|
+
}: react0.ComponentProps<"th">): react_jsx_runtime27.JSX.Element;
|
|
902
848
|
declare function TableCell({
|
|
903
849
|
className,
|
|
904
850
|
...props
|
|
905
|
-
}: react0.ComponentProps<"td">):
|
|
851
|
+
}: react0.ComponentProps<"td">): react_jsx_runtime27.JSX.Element;
|
|
906
852
|
declare function TableCaption({
|
|
907
853
|
className,
|
|
908
854
|
...props
|
|
909
|
-
}: react0.ComponentProps<"caption">):
|
|
855
|
+
}: react0.ComponentProps<"caption">): react_jsx_runtime27.JSX.Element;
|
|
910
856
|
//#endregion
|
|
911
857
|
//#region src/components/ui/tabs.d.ts
|
|
912
858
|
type TabsVariant = "default" | "underline";
|
|
913
859
|
declare function Tabs({
|
|
914
860
|
className,
|
|
915
861
|
...props
|
|
916
|
-
}: Tabs$1.Root.Props):
|
|
862
|
+
}: Tabs$1.Root.Props): react_jsx_runtime27.JSX.Element;
|
|
917
863
|
declare function TabsList({
|
|
918
864
|
variant,
|
|
919
865
|
className,
|
|
@@ -921,15 +867,15 @@ declare function TabsList({
|
|
|
921
867
|
...props
|
|
922
868
|
}: Tabs$1.List.Props & {
|
|
923
869
|
variant?: TabsVariant;
|
|
924
|
-
}):
|
|
870
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
925
871
|
declare function TabsTab({
|
|
926
872
|
className,
|
|
927
873
|
...props
|
|
928
|
-
}: Tabs$1.Tab.Props):
|
|
874
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime27.JSX.Element;
|
|
929
875
|
declare function TabsPanel({
|
|
930
876
|
className,
|
|
931
877
|
...props
|
|
932
|
-
}: Tabs$1.Panel.Props):
|
|
878
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime27.JSX.Element;
|
|
933
879
|
//#endregion
|
|
934
880
|
//#region src/components/ui/toast.d.ts
|
|
935
881
|
declare const toastManager: _base_ui_react0.ToastManager;
|
|
@@ -942,11 +888,11 @@ declare function ToastProvider({
|
|
|
942
888
|
children,
|
|
943
889
|
position,
|
|
944
890
|
...props
|
|
945
|
-
}: ToastProviderProps):
|
|
891
|
+
}: ToastProviderProps): react_jsx_runtime27.JSX.Element;
|
|
946
892
|
declare function AnchoredToastProvider({
|
|
947
893
|
children,
|
|
948
894
|
...props
|
|
949
|
-
}: Toast.Provider.Props):
|
|
895
|
+
}: Toast.Provider.Props): react_jsx_runtime27.JSX.Element;
|
|
950
896
|
//#endregion
|
|
951
897
|
//#region src/components/ui/tooltip.d.ts
|
|
952
898
|
declare const cssAnimationPresets: {
|
|
@@ -997,13 +943,13 @@ interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
|
|
|
997
943
|
declare function TooltipProvider({
|
|
998
944
|
delay,
|
|
999
945
|
...props
|
|
1000
|
-
}: TooltipProviderProps):
|
|
946
|
+
}: TooltipProviderProps): react_jsx_runtime27.JSX.Element;
|
|
1001
947
|
interface TooltipProps extends Tooltip$1.Root.Props {}
|
|
1002
948
|
declare function Tooltip({
|
|
1003
949
|
...props
|
|
1004
|
-
}: TooltipProps):
|
|
950
|
+
}: TooltipProps): react_jsx_runtime27.JSX.Element;
|
|
1005
951
|
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
1006
|
-
declare function TooltipTrigger(props: TooltipTriggerProps):
|
|
952
|
+
declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime27.JSX.Element;
|
|
1007
953
|
interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
|
|
1008
954
|
interface TooltipPopupProps extends Tooltip$1.Popup.Props, Pick<TooltipPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
1009
955
|
animationPreset?: CSSAnimationPresets;
|
|
@@ -1022,7 +968,7 @@ declare function TooltipPopup({
|
|
|
1022
968
|
align,
|
|
1023
969
|
alignOffset,
|
|
1024
970
|
...rest
|
|
1025
|
-
}: TooltipPopupProps):
|
|
971
|
+
}: TooltipPopupProps): react_jsx_runtime27.JSX.Element;
|
|
1026
972
|
//#endregion
|
|
1027
973
|
//#region src/utils/animation.d.ts
|
|
1028
974
|
type AnimationTraitProps = {
|
|
@@ -1197,5 +1143,5 @@ type OptimizedImageAttrs = {
|
|
|
1197
1143
|
*/
|
|
1198
1144
|
declare function useOptimizedImage(src: string | undefined): OptimizedImageAttrs | null;
|
|
1199
1145
|
//#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,
|
|
1146
|
+
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, PositionTraitProps, RadioGroup, RadioGroupItem, type RadioLayout, Select, SelectGroup, SelectGroupLabel, SelectIcon, SelectItem, SelectItemIndicator, SelectItemText, SelectList, SelectPopup, SelectScrollDownArrow, SelectScrollUpArrow, SelectSeparator, SelectTrigger, SelectValue, Separator, SizeTraitProps, SizeValue, SpacingTraitProps, 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, 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
1147
|
//# sourceMappingURL=index.d.ts.map
|