@ckc-net/puck-extended 0.3.0 → 0.4.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/README.md +18 -0
- package/dist/index.d.ts +165 -136
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +467 -70
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as react0 from "react";
|
|
|
2
2
|
import React$1, { ComponentProps, ReactNode, SyntheticEvent } from "react";
|
|
3
3
|
import { useRender } from "@base-ui/react/use-render";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime17 from "react/jsx-runtime";
|
|
6
6
|
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
7
7
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
8
8
|
import { Input as Input$1 } from "@base-ui/react/input";
|
|
@@ -18,7 +18,7 @@ import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
|
18
18
|
import { ScrollArea as ScrollArea$1 } from "@base-ui/react/scroll-area";
|
|
19
19
|
import { ColumnDef, PaginationState, SortingState } from "@tanstack/react-table";
|
|
20
20
|
import * as _tiptap_extension_text_style0 from "@tiptap/extension-text-style";
|
|
21
|
-
import { Menu as
|
|
21
|
+
import { Menu as MenuPrimitive } from "@base-ui/react/menu";
|
|
22
22
|
import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
23
23
|
import { Switch as Switch$1 } from "@base-ui/react/switch";
|
|
24
24
|
import { Toast } from "@base-ui/react/toast";
|
|
@@ -44,7 +44,7 @@ declare const FieldNumberUnit: ({
|
|
|
44
44
|
label: string;
|
|
45
45
|
field: any;
|
|
46
46
|
readOnly?: boolean;
|
|
47
|
-
}) =>
|
|
47
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
48
48
|
//#endregion
|
|
49
49
|
//#region src/overrides/plugin.d.ts
|
|
50
50
|
declare const createPuckOverridesPlugin: () => {
|
|
@@ -58,7 +58,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
58
58
|
label?: string;
|
|
59
59
|
parentAction?: react0.ReactNode;
|
|
60
60
|
children?: react0.ReactNode;
|
|
61
|
-
}):
|
|
61
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
62
62
|
Action: ({
|
|
63
63
|
children,
|
|
64
64
|
label,
|
|
@@ -66,32 +66,32 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
66
66
|
}: {
|
|
67
67
|
children: react0.ReactNode;
|
|
68
68
|
label?: string;
|
|
69
|
-
onClick
|
|
70
|
-
}) =>
|
|
69
|
+
onClick?: (e: react0.SyntheticEvent) => void;
|
|
70
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
71
71
|
Label: ({
|
|
72
72
|
label
|
|
73
73
|
}: {
|
|
74
74
|
label: string;
|
|
75
|
-
}) =>
|
|
75
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
76
76
|
Group: ({
|
|
77
77
|
children
|
|
78
78
|
}: {
|
|
79
79
|
children: react0.ReactNode;
|
|
80
|
-
}) =>
|
|
81
|
-
Separator: () =>
|
|
80
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
81
|
+
Separator: () => react_jsx_runtime17.JSX.Element;
|
|
82
82
|
};
|
|
83
83
|
drawer: ({
|
|
84
84
|
children
|
|
85
85
|
}: {
|
|
86
86
|
children: React.ReactNode;
|
|
87
|
-
}) =>
|
|
87
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
88
88
|
drawerItem: ({
|
|
89
89
|
name,
|
|
90
90
|
icon
|
|
91
91
|
}: {
|
|
92
92
|
name: string;
|
|
93
93
|
icon?: React.ReactNode;
|
|
94
|
-
}) =>
|
|
94
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
95
95
|
fields: ({
|
|
96
96
|
children
|
|
97
97
|
}: {
|
|
@@ -101,7 +101,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
101
101
|
path?: string;
|
|
102
102
|
index?: number;
|
|
103
103
|
} | null;
|
|
104
|
-
}) =>
|
|
104
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
105
105
|
fieldLabel: ({
|
|
106
106
|
children,
|
|
107
107
|
label,
|
|
@@ -112,7 +112,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
112
112
|
label?: string;
|
|
113
113
|
field?: any;
|
|
114
114
|
tooltip?: string;
|
|
115
|
-
}) =>
|
|
115
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
116
116
|
fieldTypes: {
|
|
117
117
|
checkbox: ({
|
|
118
118
|
onChange,
|
|
@@ -133,7 +133,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
133
133
|
};
|
|
134
134
|
}) & {
|
|
135
135
|
label: string;
|
|
136
|
-
}) =>
|
|
136
|
+
}) => react_jsx_runtime17.JSX.Element | null;
|
|
137
137
|
numberUnit: ({
|
|
138
138
|
onChange,
|
|
139
139
|
value,
|
|
@@ -146,7 +146,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
146
146
|
label: string;
|
|
147
147
|
field: any;
|
|
148
148
|
readOnly?: boolean;
|
|
149
|
-
}) =>
|
|
149
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
150
150
|
radio: ({
|
|
151
151
|
onChange,
|
|
152
152
|
value,
|
|
@@ -164,7 +164,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
164
164
|
};
|
|
165
165
|
}) & {
|
|
166
166
|
label: string;
|
|
167
|
-
}) =>
|
|
167
|
+
}) => react_jsx_runtime17.JSX.Element | null;
|
|
168
168
|
select: ({
|
|
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_runtime17.JSX.Element;
|
|
181
181
|
text: ({
|
|
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_runtime17.JSX.Element;
|
|
194
194
|
textarea: ({
|
|
195
195
|
onChange,
|
|
196
196
|
value,
|
|
@@ -203,7 +203,7 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
203
203
|
label: string;
|
|
204
204
|
field: any;
|
|
205
205
|
readOnly?: boolean;
|
|
206
|
-
}) =>
|
|
206
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
207
207
|
};
|
|
208
208
|
};
|
|
209
209
|
};
|
|
@@ -212,12 +212,14 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
212
212
|
declare const Label: ({
|
|
213
213
|
label,
|
|
214
214
|
readOnly,
|
|
215
|
-
tooltip
|
|
215
|
+
tooltip,
|
|
216
|
+
action
|
|
216
217
|
}: {
|
|
217
218
|
label?: string;
|
|
218
219
|
readOnly?: boolean;
|
|
219
220
|
tooltip?: string;
|
|
220
|
-
|
|
221
|
+
action?: React$1.ReactNode;
|
|
222
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
221
223
|
//#endregion
|
|
222
224
|
//#region src/components/Fields/Input/index.d.ts
|
|
223
225
|
declare const FieldInput: ({
|
|
@@ -232,7 +234,7 @@ declare const FieldInput: ({
|
|
|
232
234
|
label?: string;
|
|
233
235
|
field: any;
|
|
234
236
|
readOnly?: boolean;
|
|
235
|
-
}) =>
|
|
237
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
236
238
|
//#endregion
|
|
237
239
|
//#region src/components/Fields/Textarea/index.d.ts
|
|
238
240
|
declare const FieldTextarea: ({
|
|
@@ -247,7 +249,7 @@ declare const FieldTextarea: ({
|
|
|
247
249
|
label: string;
|
|
248
250
|
field: any;
|
|
249
251
|
readOnly?: boolean;
|
|
250
|
-
}) =>
|
|
252
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
251
253
|
//#endregion
|
|
252
254
|
//#region src/components/Fields/Select/index.d.ts
|
|
253
255
|
declare const FieldSelect: ({
|
|
@@ -262,7 +264,7 @@ declare const FieldSelect: ({
|
|
|
262
264
|
label: string;
|
|
263
265
|
field: any;
|
|
264
266
|
readOnly?: boolean;
|
|
265
|
-
}) =>
|
|
267
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
266
268
|
//#endregion
|
|
267
269
|
//#region src/components/ui/radio.d.ts
|
|
268
270
|
type RadioLayout = "horizontal" | "inline";
|
|
@@ -276,12 +278,12 @@ declare function RadioGroup({
|
|
|
276
278
|
className,
|
|
277
279
|
layout,
|
|
278
280
|
...props
|
|
279
|
-
}: RadioGroupProps):
|
|
281
|
+
}: RadioGroupProps): react_jsx_runtime17.JSX.Element;
|
|
280
282
|
declare function RadioGroupItem({
|
|
281
283
|
className,
|
|
282
284
|
layout,
|
|
283
285
|
...props
|
|
284
|
-
}: RadioGroupItemProps):
|
|
286
|
+
}: RadioGroupItemProps): react_jsx_runtime17.JSX.Element;
|
|
285
287
|
//#endregion
|
|
286
288
|
//#region src/components/Fields/Radio/index.d.ts
|
|
287
289
|
type RadioProps = FieldProps<Field<any>> & {
|
|
@@ -302,7 +304,7 @@ declare const FieldRadio: ({
|
|
|
302
304
|
label
|
|
303
305
|
}: RadioProps & {
|
|
304
306
|
label: string;
|
|
305
|
-
}) =>
|
|
307
|
+
}) => react_jsx_runtime17.JSX.Element | null;
|
|
306
308
|
//#endregion
|
|
307
309
|
//#region src/components/ui/checkbox.d.ts
|
|
308
310
|
type CheckboxLayout = "horizontal" | "inline";
|
|
@@ -313,7 +315,7 @@ declare function Checkbox({
|
|
|
313
315
|
className,
|
|
314
316
|
layout,
|
|
315
317
|
...props
|
|
316
|
-
}: CheckboxProps$1):
|
|
318
|
+
}: CheckboxProps$1): react_jsx_runtime17.JSX.Element;
|
|
317
319
|
//#endregion
|
|
318
320
|
//#region src/components/Fields/Checkbox/index.d.ts
|
|
319
321
|
type CheckboxProps = FieldProps<Field<any>> & {
|
|
@@ -336,7 +338,7 @@ declare const FieldCheckbox: ({
|
|
|
336
338
|
label
|
|
337
339
|
}: CheckboxProps & {
|
|
338
340
|
label: string;
|
|
339
|
-
}) =>
|
|
341
|
+
}) => react_jsx_runtime17.JSX.Element | null;
|
|
340
342
|
//#endregion
|
|
341
343
|
//#region src/components/RichTextMenuLink/index.d.ts
|
|
342
344
|
type RichTextMenuLinkProps = {
|
|
@@ -345,7 +347,7 @@ type RichTextMenuLinkProps = {
|
|
|
345
347
|
declare function RichTextMenuLink({
|
|
346
348
|
editor,
|
|
347
349
|
...props
|
|
348
|
-
}: RichTextMenuLinkProps & Omit<ComponentProps<"div">, keyof RichTextMenuLinkProps>):
|
|
350
|
+
}: RichTextMenuLinkProps & Omit<ComponentProps<"div">, keyof RichTextMenuLinkProps>): react_jsx_runtime17.JSX.Element;
|
|
349
351
|
//#endregion
|
|
350
352
|
//#region src/components/RichTextMenuColorPicker/index.d.ts
|
|
351
353
|
type RichTextMenuColorPickerProps = {
|
|
@@ -360,7 +362,7 @@ declare const richTextMenuColorPickerExtension: (_tiptap_core0.Mark<_tiptap_exte
|
|
|
360
362
|
declare function RichTextMenuColorPicker({
|
|
361
363
|
editor,
|
|
362
364
|
...props
|
|
363
|
-
}: RichTextMenuColorPickerProps & Omit<ComponentProps<"div">, keyof RichTextMenuColorPickerProps>):
|
|
365
|
+
}: RichTextMenuColorPickerProps & Omit<ComponentProps<"div">, keyof RichTextMenuColorPickerProps>): react_jsx_runtime17.JSX.Element;
|
|
364
366
|
//#endregion
|
|
365
367
|
//#region src/components/MediaPicker/index.d.ts
|
|
366
368
|
type MediaItem = {
|
|
@@ -397,7 +399,7 @@ declare const MediaPicker: ({
|
|
|
397
399
|
mediaType,
|
|
398
400
|
acceptedTypes,
|
|
399
401
|
maxSize
|
|
400
|
-
}: MediaPickerProps) =>
|
|
402
|
+
}: MediaPickerProps) => react_jsx_runtime17.JSX.Element;
|
|
401
403
|
/**
|
|
402
404
|
* Retourne l'URL directe si le type est "url".
|
|
403
405
|
* Pour les références média (`type: "media"`), utiliser `useMediaUrl` à la place.
|
|
@@ -448,7 +450,7 @@ type PagePickerProps = {
|
|
|
448
450
|
declare const PagePicker: ({
|
|
449
451
|
value,
|
|
450
452
|
onChange
|
|
451
|
-
}: PagePickerProps) =>
|
|
453
|
+
}: PagePickerProps) => react_jsx_runtime17.JSX.Element;
|
|
452
454
|
/**
|
|
453
455
|
* Hook React qui résout dynamiquement l'URL courante d'un `PagePickerValue`.
|
|
454
456
|
*
|
|
@@ -475,7 +477,7 @@ declare const ActionBar: {
|
|
|
475
477
|
label?: string;
|
|
476
478
|
parentAction?: ReactNode;
|
|
477
479
|
children?: ReactNode;
|
|
478
|
-
}):
|
|
480
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
479
481
|
Action: ({
|
|
480
482
|
children,
|
|
481
483
|
label,
|
|
@@ -483,19 +485,19 @@ declare const ActionBar: {
|
|
|
483
485
|
}: {
|
|
484
486
|
children: ReactNode;
|
|
485
487
|
label?: string;
|
|
486
|
-
onClick
|
|
487
|
-
}) =>
|
|
488
|
+
onClick?: (e: SyntheticEvent) => void;
|
|
489
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
488
490
|
Label: ({
|
|
489
491
|
label
|
|
490
492
|
}: {
|
|
491
493
|
label: string;
|
|
492
|
-
}) =>
|
|
494
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
493
495
|
Group: ({
|
|
494
496
|
children
|
|
495
497
|
}: {
|
|
496
498
|
children: ReactNode;
|
|
497
|
-
}) =>
|
|
498
|
-
Separator: () =>
|
|
499
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
500
|
+
Separator: () => react_jsx_runtime17.JSX.Element;
|
|
499
501
|
};
|
|
500
502
|
//#endregion
|
|
501
503
|
//#region src/components/DrawerItem/index.d.ts
|
|
@@ -505,7 +507,7 @@ declare const DrawerItem: ({
|
|
|
505
507
|
}: {
|
|
506
508
|
name: string;
|
|
507
509
|
icon?: React.ReactNode;
|
|
508
|
-
}) =>
|
|
510
|
+
}) => react_jsx_runtime17.JSX.Element;
|
|
509
511
|
//#endregion
|
|
510
512
|
//#region src/components/FieldGroups/index.d.ts
|
|
511
513
|
type ItemSelector = {
|
|
@@ -519,7 +521,7 @@ type FieldGroupsProps = {
|
|
|
519
521
|
};
|
|
520
522
|
declare const FieldGroups: ({
|
|
521
523
|
children
|
|
522
|
-
}: FieldGroupsProps) =>
|
|
524
|
+
}: FieldGroupsProps) => react_jsx_runtime17.JSX.Element;
|
|
523
525
|
//#endregion
|
|
524
526
|
//#region src/components/PickerModal/index.d.ts
|
|
525
527
|
type PickerModalProps<T extends {
|
|
@@ -573,7 +575,7 @@ declare function PickerModal<T extends {
|
|
|
573
575
|
emptyIcon,
|
|
574
576
|
emptyMessage,
|
|
575
577
|
footer
|
|
576
|
-
}: PickerModalProps<T>):
|
|
578
|
+
}: PickerModalProps<T>): react_jsx_runtime17.JSX.Element;
|
|
577
579
|
//#endregion
|
|
578
580
|
//#region src/components/ColorPicker/index.d.ts
|
|
579
581
|
type ColorPickerProps = {
|
|
@@ -649,7 +651,7 @@ declare function Button({
|
|
|
649
651
|
//#endregion
|
|
650
652
|
//#region src/components/ui/dialog.d.ts
|
|
651
653
|
declare const Dialog: typeof Dialog$1.Root;
|
|
652
|
-
declare function DialogTrigger(props: Dialog$1.Trigger.Props):
|
|
654
|
+
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime17.JSX.Element;
|
|
653
655
|
declare function DialogPopup({
|
|
654
656
|
className,
|
|
655
657
|
children,
|
|
@@ -659,59 +661,59 @@ declare function DialogPopup({
|
|
|
659
661
|
}: Dialog$1.Popup.Props & {
|
|
660
662
|
showCloseButton?: boolean;
|
|
661
663
|
bottomStickOnMobile?: boolean;
|
|
662
|
-
}):
|
|
664
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
663
665
|
declare function DialogHeader({
|
|
664
666
|
className,
|
|
665
667
|
...props
|
|
666
|
-
}: React.ComponentProps<"div">):
|
|
668
|
+
}: React.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
667
669
|
declare function DialogFooter({
|
|
668
670
|
className,
|
|
669
671
|
variant,
|
|
670
672
|
...props
|
|
671
673
|
}: React.ComponentProps<"div"> & {
|
|
672
674
|
variant?: "default" | "bare";
|
|
673
|
-
}):
|
|
675
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
674
676
|
declare function DialogTitle({
|
|
675
677
|
className,
|
|
676
678
|
...props
|
|
677
|
-
}: Dialog$1.Title.Props):
|
|
679
|
+
}: Dialog$1.Title.Props): react_jsx_runtime17.JSX.Element;
|
|
678
680
|
declare function DialogDescription({
|
|
679
681
|
className,
|
|
680
682
|
...props
|
|
681
|
-
}: Dialog$1.Description.Props):
|
|
683
|
+
}: Dialog$1.Description.Props): react_jsx_runtime17.JSX.Element;
|
|
682
684
|
declare function DialogPanel({
|
|
683
685
|
className,
|
|
684
686
|
scrollFade,
|
|
685
687
|
...props
|
|
686
688
|
}: React.ComponentProps<"div"> & {
|
|
687
689
|
scrollFade?: boolean;
|
|
688
|
-
}):
|
|
690
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
689
691
|
//#endregion
|
|
690
692
|
//#region src/components/ui/frame.d.ts
|
|
691
693
|
declare function Frame({
|
|
692
694
|
className,
|
|
693
695
|
...props
|
|
694
|
-
}: react0.ComponentProps<"div">):
|
|
696
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
695
697
|
declare function FramePanel({
|
|
696
698
|
className,
|
|
697
699
|
...props
|
|
698
|
-
}: react0.ComponentProps<"div">):
|
|
700
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
699
701
|
declare function FrameHeader({
|
|
700
702
|
className,
|
|
701
703
|
...props
|
|
702
|
-
}: react0.ComponentProps<"header">):
|
|
704
|
+
}: react0.ComponentProps<"header">): react_jsx_runtime17.JSX.Element;
|
|
703
705
|
declare function FrameTitle({
|
|
704
706
|
className,
|
|
705
707
|
...props
|
|
706
|
-
}: react0.ComponentProps<"div">):
|
|
708
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
707
709
|
declare function FrameDescription({
|
|
708
710
|
className,
|
|
709
711
|
...props
|
|
710
|
-
}: react0.ComponentProps<"div">):
|
|
712
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
711
713
|
declare function FrameFooter({
|
|
712
714
|
className,
|
|
713
715
|
...props
|
|
714
|
-
}: react0.ComponentProps<"footer">):
|
|
716
|
+
}: react0.ComponentProps<"footer">): react_jsx_runtime17.JSX.Element;
|
|
715
717
|
//#endregion
|
|
716
718
|
//#region src/components/ui/input.d.ts
|
|
717
719
|
type InputProps = Omit<Input$1.Props & react0.RefAttributes<HTMLInputElement>, "size"> & {
|
|
@@ -725,7 +727,7 @@ declare function Input({
|
|
|
725
727
|
unstyled,
|
|
726
728
|
nativeInput,
|
|
727
729
|
...props
|
|
728
|
-
}: InputProps):
|
|
730
|
+
}: InputProps): react_jsx_runtime17.JSX.Element;
|
|
729
731
|
//#endregion
|
|
730
732
|
//#region src/components/ui/textarea.d.ts
|
|
731
733
|
type TextareaProps = react0.ComponentProps<"textarea"> & {
|
|
@@ -737,13 +739,13 @@ declare function Textarea({
|
|
|
737
739
|
size,
|
|
738
740
|
unstyled,
|
|
739
741
|
...props
|
|
740
|
-
}: TextareaProps):
|
|
742
|
+
}: TextareaProps): react_jsx_runtime17.JSX.Element;
|
|
741
743
|
//#endregion
|
|
742
744
|
//#region src/components/ui/input-group.d.ts
|
|
743
745
|
declare function InputGroup({
|
|
744
746
|
className,
|
|
745
747
|
...props
|
|
746
|
-
}: react0.ComponentProps<"div">):
|
|
748
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
|
|
747
749
|
declare const inputGroupAddonVariants: (props?: ({
|
|
748
750
|
align?: "inline-start" | "block-end" | "block-start" | "inline-end" | null | undefined;
|
|
749
751
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -751,25 +753,27 @@ declare function InputGroupAddon({
|
|
|
751
753
|
className,
|
|
752
754
|
align,
|
|
753
755
|
...props
|
|
754
|
-
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
756
|
+
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime17.JSX.Element;
|
|
755
757
|
declare function InputGroupText({
|
|
756
758
|
className,
|
|
757
759
|
...props
|
|
758
|
-
}: react0.ComponentProps<"span">):
|
|
760
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
|
|
759
761
|
declare function InputGroupInput({
|
|
760
762
|
className,
|
|
761
763
|
...props
|
|
762
|
-
}: InputProps):
|
|
764
|
+
}: InputProps): react_jsx_runtime17.JSX.Element;
|
|
763
765
|
declare function InputGroupTextarea({
|
|
764
766
|
className,
|
|
765
767
|
...props
|
|
766
|
-
}: TextareaProps):
|
|
768
|
+
}: TextareaProps): react_jsx_runtime17.JSX.Element;
|
|
767
769
|
//#endregion
|
|
768
770
|
//#region src/components/ui/menu.d.ts
|
|
769
|
-
declare const
|
|
770
|
-
declare
|
|
771
|
-
|
|
772
|
-
|
|
771
|
+
declare const Menu: typeof MenuPrimitive.Root;
|
|
772
|
+
declare function MenuTrigger({
|
|
773
|
+
className,
|
|
774
|
+
children,
|
|
775
|
+
...props
|
|
776
|
+
}: MenuPrimitive.Trigger.Props): react0.ReactElement;
|
|
773
777
|
declare function MenuPopup({
|
|
774
778
|
children,
|
|
775
779
|
className,
|
|
@@ -777,86 +781,86 @@ declare function MenuPopup({
|
|
|
777
781
|
align,
|
|
778
782
|
alignOffset,
|
|
779
783
|
side,
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
784
|
+
anchor,
|
|
785
|
+
portalProps,
|
|
786
|
+
...props
|
|
787
|
+
}: MenuPrimitive.Popup.Props & {
|
|
788
|
+
align?: MenuPrimitive.Positioner.Props["align"];
|
|
789
|
+
sideOffset?: MenuPrimitive.Positioner.Props["sideOffset"];
|
|
790
|
+
alignOffset?: MenuPrimitive.Positioner.Props["alignOffset"];
|
|
791
|
+
side?: MenuPrimitive.Positioner.Props["side"];
|
|
792
|
+
anchor?: MenuPrimitive.Positioner.Props["anchor"];
|
|
793
|
+
portalProps?: MenuPrimitive.Portal.Props;
|
|
794
|
+
}): react0.ReactElement;
|
|
795
|
+
declare function MenuGroup(props: MenuPrimitive.Group.Props): react0.ReactElement;
|
|
788
796
|
declare function MenuItem({
|
|
789
797
|
className,
|
|
790
798
|
inset,
|
|
791
799
|
variant,
|
|
792
800
|
...props
|
|
793
|
-
}:
|
|
801
|
+
}: MenuPrimitive.Item.Props & {
|
|
794
802
|
inset?: boolean;
|
|
795
803
|
variant?: "default" | "destructive";
|
|
796
|
-
}):
|
|
804
|
+
}): react0.ReactElement;
|
|
797
805
|
declare function MenuCheckboxItem({
|
|
798
806
|
className,
|
|
799
807
|
children,
|
|
800
808
|
checked,
|
|
801
809
|
variant,
|
|
802
810
|
...props
|
|
803
|
-
}:
|
|
811
|
+
}: MenuPrimitive.CheckboxItem.Props & {
|
|
804
812
|
variant?: "default" | "switch";
|
|
805
|
-
}):
|
|
806
|
-
declare function MenuRadioGroup(props:
|
|
813
|
+
}): react0.ReactElement;
|
|
814
|
+
declare function MenuRadioGroup(props: MenuPrimitive.RadioGroup.Props): react0.ReactElement;
|
|
807
815
|
declare function MenuRadioItem({
|
|
808
816
|
className,
|
|
809
817
|
children,
|
|
810
818
|
...props
|
|
811
|
-
}:
|
|
819
|
+
}: MenuPrimitive.RadioItem.Props): react0.ReactElement;
|
|
812
820
|
declare function MenuGroupLabel({
|
|
813
821
|
className,
|
|
814
822
|
inset,
|
|
815
823
|
...props
|
|
816
|
-
}:
|
|
824
|
+
}: MenuPrimitive.GroupLabel.Props & {
|
|
817
825
|
inset?: boolean;
|
|
818
|
-
}):
|
|
826
|
+
}): react0.ReactElement;
|
|
819
827
|
declare function MenuSeparator({
|
|
820
828
|
className,
|
|
821
829
|
...props
|
|
822
|
-
}:
|
|
823
|
-
declare function
|
|
824
|
-
className,
|
|
825
|
-
...props
|
|
826
|
-
}: react0.ComponentProps<"kbd">): react_jsx_runtime18.JSX.Element;
|
|
827
|
-
declare function MenuSub(props: Menu$1.SubmenuRoot.Props): react_jsx_runtime18.JSX.Element;
|
|
830
|
+
}: MenuPrimitive.Separator.Props): react0.ReactElement;
|
|
831
|
+
declare function MenuSub(props: MenuPrimitive.SubmenuRoot.Props): react0.ReactElement;
|
|
828
832
|
declare function MenuSubTrigger({
|
|
829
833
|
className,
|
|
830
834
|
inset,
|
|
831
835
|
children,
|
|
832
836
|
...props
|
|
833
|
-
}:
|
|
837
|
+
}: MenuPrimitive.SubmenuTrigger.Props & {
|
|
834
838
|
inset?: boolean;
|
|
835
|
-
}):
|
|
839
|
+
}): react0.ReactElement;
|
|
836
840
|
declare function MenuSubPopup({
|
|
837
841
|
className,
|
|
838
842
|
sideOffset,
|
|
839
843
|
alignOffset,
|
|
840
844
|
align,
|
|
841
845
|
...props
|
|
842
|
-
}:
|
|
843
|
-
align?:
|
|
844
|
-
sideOffset?:
|
|
845
|
-
alignOffset?:
|
|
846
|
-
}):
|
|
846
|
+
}: MenuPrimitive.Popup.Props & {
|
|
847
|
+
align?: MenuPrimitive.Positioner.Props["align"];
|
|
848
|
+
sideOffset?: MenuPrimitive.Positioner.Props["sideOffset"];
|
|
849
|
+
alignOffset?: MenuPrimitive.Positioner.Props["alignOffset"];
|
|
850
|
+
}): react0.ReactElement;
|
|
847
851
|
//#endregion
|
|
848
852
|
//#region src/components/ui/pagination.d.ts
|
|
849
853
|
declare function Pagination({
|
|
850
854
|
className,
|
|
851
855
|
...props
|
|
852
|
-
}: react0.ComponentProps<"nav">):
|
|
856
|
+
}: react0.ComponentProps<"nav">): react_jsx_runtime17.JSX.Element;
|
|
853
857
|
declare function PaginationContent({
|
|
854
858
|
className,
|
|
855
859
|
...props
|
|
856
|
-
}: react0.ComponentProps<"ul">):
|
|
860
|
+
}: react0.ComponentProps<"ul">): react_jsx_runtime17.JSX.Element;
|
|
857
861
|
declare function PaginationItem({
|
|
858
862
|
...props
|
|
859
|
-
}: react0.ComponentProps<"li">):
|
|
863
|
+
}: react0.ComponentProps<"li">): react_jsx_runtime17.JSX.Element;
|
|
860
864
|
type PaginationLinkProps = {
|
|
861
865
|
isActive?: boolean;
|
|
862
866
|
size?: react0.ComponentProps<typeof Button>["size"];
|
|
@@ -871,20 +875,20 @@ declare function PaginationLink({
|
|
|
871
875
|
declare function PaginationPrevious({
|
|
872
876
|
className,
|
|
873
877
|
...props
|
|
874
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
878
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
|
|
875
879
|
declare function PaginationNext({
|
|
876
880
|
className,
|
|
877
881
|
...props
|
|
878
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
882
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
|
|
879
883
|
declare function PaginationEllipsis({
|
|
880
884
|
className,
|
|
881
885
|
...props
|
|
882
|
-
}: react0.ComponentProps<"span">):
|
|
886
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
|
|
883
887
|
//#endregion
|
|
884
888
|
//#region src/components/ui/popover.d.ts
|
|
885
889
|
declare const PopoverCreateHandle: typeof Popover$1.createHandle;
|
|
886
890
|
declare const Popover: typeof Popover$1.Root;
|
|
887
|
-
declare function PopoverTrigger(props: Popover$1.Trigger.Props):
|
|
891
|
+
declare function PopoverTrigger(props: Popover$1.Trigger.Props): react_jsx_runtime17.JSX.Element;
|
|
888
892
|
declare function PopoverPopup({
|
|
889
893
|
children,
|
|
890
894
|
className,
|
|
@@ -900,18 +904,18 @@ declare function PopoverPopup({
|
|
|
900
904
|
sideOffset?: Popover$1.Positioner.Props["sideOffset"];
|
|
901
905
|
alignOffset?: Popover$1.Positioner.Props["alignOffset"];
|
|
902
906
|
tooltipStyle?: boolean;
|
|
903
|
-
}):
|
|
907
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
904
908
|
declare function PopoverClose({
|
|
905
909
|
...props
|
|
906
|
-
}: Popover$1.Close.Props):
|
|
910
|
+
}: Popover$1.Close.Props): react_jsx_runtime17.JSX.Element;
|
|
907
911
|
declare function PopoverTitle({
|
|
908
912
|
className,
|
|
909
913
|
...props
|
|
910
|
-
}: Popover$1.Title.Props):
|
|
914
|
+
}: Popover$1.Title.Props): react_jsx_runtime17.JSX.Element;
|
|
911
915
|
declare function PopoverDescription({
|
|
912
916
|
className,
|
|
913
917
|
...props
|
|
914
|
-
}: Popover$1.Description.Props):
|
|
918
|
+
}: Popover$1.Description.Props): react_jsx_runtime17.JSX.Element;
|
|
915
919
|
//#endregion
|
|
916
920
|
//#region src/components/ui/scroll-area.d.ts
|
|
917
921
|
declare function ScrollArea({
|
|
@@ -923,12 +927,12 @@ declare function ScrollArea({
|
|
|
923
927
|
}: ScrollArea$1.Root.Props & {
|
|
924
928
|
scrollFade?: boolean;
|
|
925
929
|
scrollbarGutter?: boolean;
|
|
926
|
-
}):
|
|
930
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
927
931
|
declare function ScrollBar({
|
|
928
932
|
className,
|
|
929
933
|
orientation,
|
|
930
934
|
...props
|
|
931
|
-
}: ScrollArea$1.Scrollbar.Props):
|
|
935
|
+
}: ScrollArea$1.Scrollbar.Props): react_jsx_runtime17.JSX.Element;
|
|
932
936
|
//#endregion
|
|
933
937
|
//#region src/components/ui/select.d.ts
|
|
934
938
|
declare const Select: typeof Select$1.Root;
|
|
@@ -940,11 +944,11 @@ declare function SelectTrigger({
|
|
|
940
944
|
size,
|
|
941
945
|
children,
|
|
942
946
|
...props
|
|
943
|
-
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>):
|
|
947
|
+
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime17.JSX.Element;
|
|
944
948
|
declare function SelectValue({
|
|
945
949
|
className,
|
|
946
950
|
...props
|
|
947
|
-
}: Select$1.Value.Props):
|
|
951
|
+
}: Select$1.Value.Props): react_jsx_runtime17.JSX.Element;
|
|
948
952
|
declare function SelectPopup({
|
|
949
953
|
className,
|
|
950
954
|
children,
|
|
@@ -962,72 +966,72 @@ declare function SelectPopup({
|
|
|
962
966
|
alignOffset?: Select$1.Positioner.Props["alignOffset"];
|
|
963
967
|
alignItemWithTrigger?: Select$1.Positioner.Props["alignItemWithTrigger"];
|
|
964
968
|
anchor?: Select$1.Positioner.Props["anchor"];
|
|
965
|
-
}):
|
|
969
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
966
970
|
declare function SelectItem({
|
|
967
971
|
className,
|
|
968
972
|
children,
|
|
969
973
|
...props
|
|
970
|
-
}: Select$1.Item.Props):
|
|
974
|
+
}: Select$1.Item.Props): react_jsx_runtime17.JSX.Element;
|
|
971
975
|
declare function SelectSeparator({
|
|
972
976
|
className,
|
|
973
977
|
...props
|
|
974
|
-
}: Select$1.Separator.Props):
|
|
975
|
-
declare function SelectGroup(props: Select$1.Group.Props):
|
|
976
|
-
declare function SelectGroupLabel(props: Select$1.GroupLabel.Props):
|
|
978
|
+
}: Select$1.Separator.Props): react_jsx_runtime17.JSX.Element;
|
|
979
|
+
declare function SelectGroup(props: Select$1.Group.Props): react_jsx_runtime17.JSX.Element;
|
|
980
|
+
declare function SelectGroupLabel(props: Select$1.GroupLabel.Props): react_jsx_runtime17.JSX.Element;
|
|
977
981
|
//#endregion
|
|
978
982
|
//#region src/components/ui/separator.d.ts
|
|
979
983
|
declare function Separator({
|
|
980
984
|
className,
|
|
981
985
|
orientation,
|
|
982
986
|
...props
|
|
983
|
-
}: Separator$1.Props):
|
|
987
|
+
}: Separator$1.Props): react_jsx_runtime17.JSX.Element;
|
|
984
988
|
//#endregion
|
|
985
989
|
//#region src/components/ui/switch.d.ts
|
|
986
990
|
declare function Switch({
|
|
987
991
|
className,
|
|
988
992
|
...props
|
|
989
|
-
}: Switch$1.Root.Props):
|
|
993
|
+
}: Switch$1.Root.Props): react_jsx_runtime17.JSX.Element;
|
|
990
994
|
//#endregion
|
|
991
995
|
//#region src/components/ui/table.d.ts
|
|
992
996
|
declare function Table({
|
|
993
997
|
className,
|
|
994
998
|
...props
|
|
995
|
-
}: react0.ComponentProps<"table">):
|
|
999
|
+
}: react0.ComponentProps<"table">): react_jsx_runtime17.JSX.Element;
|
|
996
1000
|
declare function TableHeader({
|
|
997
1001
|
className,
|
|
998
1002
|
...props
|
|
999
|
-
}: react0.ComponentProps<"thead">):
|
|
1003
|
+
}: react0.ComponentProps<"thead">): react_jsx_runtime17.JSX.Element;
|
|
1000
1004
|
declare function TableBody({
|
|
1001
1005
|
className,
|
|
1002
1006
|
...props
|
|
1003
|
-
}: react0.ComponentProps<"tbody">):
|
|
1007
|
+
}: react0.ComponentProps<"tbody">): react_jsx_runtime17.JSX.Element;
|
|
1004
1008
|
declare function TableFooter({
|
|
1005
1009
|
className,
|
|
1006
1010
|
...props
|
|
1007
|
-
}: react0.ComponentProps<"tfoot">):
|
|
1011
|
+
}: react0.ComponentProps<"tfoot">): react_jsx_runtime17.JSX.Element;
|
|
1008
1012
|
declare function TableRow({
|
|
1009
1013
|
className,
|
|
1010
1014
|
...props
|
|
1011
|
-
}: react0.ComponentProps<"tr">):
|
|
1015
|
+
}: react0.ComponentProps<"tr">): react_jsx_runtime17.JSX.Element;
|
|
1012
1016
|
declare function TableHead({
|
|
1013
1017
|
className,
|
|
1014
1018
|
...props
|
|
1015
|
-
}: react0.ComponentProps<"th">):
|
|
1019
|
+
}: react0.ComponentProps<"th">): react_jsx_runtime17.JSX.Element;
|
|
1016
1020
|
declare function TableCell({
|
|
1017
1021
|
className,
|
|
1018
1022
|
...props
|
|
1019
|
-
}: react0.ComponentProps<"td">):
|
|
1023
|
+
}: react0.ComponentProps<"td">): react_jsx_runtime17.JSX.Element;
|
|
1020
1024
|
declare function TableCaption({
|
|
1021
1025
|
className,
|
|
1022
1026
|
...props
|
|
1023
|
-
}: react0.ComponentProps<"caption">):
|
|
1027
|
+
}: react0.ComponentProps<"caption">): react_jsx_runtime17.JSX.Element;
|
|
1024
1028
|
//#endregion
|
|
1025
1029
|
//#region src/components/ui/tabs.d.ts
|
|
1026
1030
|
type TabsVariant = "default" | "underline";
|
|
1027
1031
|
declare function Tabs({
|
|
1028
1032
|
className,
|
|
1029
1033
|
...props
|
|
1030
|
-
}: Tabs$1.Root.Props):
|
|
1034
|
+
}: Tabs$1.Root.Props): react_jsx_runtime17.JSX.Element;
|
|
1031
1035
|
declare function TabsList({
|
|
1032
1036
|
variant,
|
|
1033
1037
|
className,
|
|
@@ -1035,15 +1039,15 @@ declare function TabsList({
|
|
|
1035
1039
|
...props
|
|
1036
1040
|
}: Tabs$1.List.Props & {
|
|
1037
1041
|
variant?: TabsVariant;
|
|
1038
|
-
}):
|
|
1042
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
1039
1043
|
declare function TabsTab({
|
|
1040
1044
|
className,
|
|
1041
1045
|
...props
|
|
1042
|
-
}: Tabs$1.Tab.Props):
|
|
1046
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime17.JSX.Element;
|
|
1043
1047
|
declare function TabsPanel({
|
|
1044
1048
|
className,
|
|
1045
1049
|
...props
|
|
1046
|
-
}: Tabs$1.Panel.Props):
|
|
1050
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime17.JSX.Element;
|
|
1047
1051
|
//#endregion
|
|
1048
1052
|
//#region src/components/ui/toast.d.ts
|
|
1049
1053
|
declare const toastManager: _base_ui_react0.ToastManager;
|
|
@@ -1056,11 +1060,11 @@ declare function ToastProvider({
|
|
|
1056
1060
|
children,
|
|
1057
1061
|
position,
|
|
1058
1062
|
...props
|
|
1059
|
-
}: ToastProviderProps):
|
|
1063
|
+
}: ToastProviderProps): react_jsx_runtime17.JSX.Element;
|
|
1060
1064
|
declare function AnchoredToastProvider({
|
|
1061
1065
|
children,
|
|
1062
1066
|
...props
|
|
1063
|
-
}: Toast.Provider.Props):
|
|
1067
|
+
}: Toast.Provider.Props): react_jsx_runtime17.JSX.Element;
|
|
1064
1068
|
//#endregion
|
|
1065
1069
|
//#region src/components/ui/tooltip.d.ts
|
|
1066
1070
|
declare const cssAnimationPresets: {
|
|
@@ -1111,13 +1115,13 @@ interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
|
|
|
1111
1115
|
declare function TooltipProvider({
|
|
1112
1116
|
delay,
|
|
1113
1117
|
...props
|
|
1114
|
-
}: TooltipProviderProps):
|
|
1118
|
+
}: TooltipProviderProps): react_jsx_runtime17.JSX.Element;
|
|
1115
1119
|
interface TooltipProps extends Tooltip$1.Root.Props {}
|
|
1116
1120
|
declare function Tooltip({
|
|
1117
1121
|
...props
|
|
1118
|
-
}: TooltipProps):
|
|
1122
|
+
}: TooltipProps): react_jsx_runtime17.JSX.Element;
|
|
1119
1123
|
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
1120
|
-
declare function TooltipTrigger(props: TooltipTriggerProps):
|
|
1124
|
+
declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime17.JSX.Element;
|
|
1121
1125
|
interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
|
|
1122
1126
|
interface TooltipPopupProps extends Tooltip$1.Popup.Props, Pick<TooltipPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
1123
1127
|
animationPreset?: CSSAnimationPresets;
|
|
@@ -1136,7 +1140,7 @@ declare function TooltipPopup({
|
|
|
1136
1140
|
align,
|
|
1137
1141
|
alignOffset,
|
|
1138
1142
|
...rest
|
|
1139
|
-
}: TooltipPopupProps):
|
|
1143
|
+
}: TooltipPopupProps): react_jsx_runtime17.JSX.Element;
|
|
1140
1144
|
//#endregion
|
|
1141
1145
|
//#region src/blocks/Template/index.d.ts
|
|
1142
1146
|
type TemplateProps = {
|
|
@@ -1378,6 +1382,15 @@ declare const typographyDefaultProps: TypographyTraitProps;
|
|
|
1378
1382
|
declare function typographyToClasses(props: Partial<TypographyTraitProps>): string;
|
|
1379
1383
|
declare const typographyFieldNames: readonly ["textAlign", "textTransform", "textDecoration", "textSize", "textColor", "lineHeight", "fontWeight"];
|
|
1380
1384
|
//#endregion
|
|
1385
|
+
//#region src/utils/csrf.d.ts
|
|
1386
|
+
/**
|
|
1387
|
+
* Récupère le jeton CSRF à partir d'une balise meta dans le DOM.
|
|
1388
|
+
* Standard Laravel : <meta name="csrf-token" content="...">
|
|
1389
|
+
*
|
|
1390
|
+
* @returns Le jeton CSRF sous forme de chaîne, ou null s'il n'est pas trouvé ou si l'exécution n'est pas côté client.
|
|
1391
|
+
*/
|
|
1392
|
+
declare function getCsrfToken(): string | null;
|
|
1393
|
+
//#endregion
|
|
1381
1394
|
//#region src/hooks/useOptimizedImage.d.ts
|
|
1382
1395
|
type OptimizedImageAttrs = {
|
|
1383
1396
|
srcset?: string;
|
|
@@ -1389,5 +1402,21 @@ type OptimizedImageAttrs = {
|
|
|
1389
1402
|
*/
|
|
1390
1403
|
declare function useOptimizedImage(src: string | undefined): OptimizedImageAttrs | null;
|
|
1391
1404
|
//#endregion
|
|
1392
|
-
|
|
1405
|
+
//#region src/plugins/redactor-assistant/index.d.ts
|
|
1406
|
+
declare function createRedactorPlugin(): {
|
|
1407
|
+
name: string;
|
|
1408
|
+
overrides: {
|
|
1409
|
+
fieldTypes: {
|
|
1410
|
+
richtext: ({
|
|
1411
|
+
children,
|
|
1412
|
+
onChange,
|
|
1413
|
+
value,
|
|
1414
|
+
field,
|
|
1415
|
+
label
|
|
1416
|
+
}: any) => react_jsx_runtime17.JSX.Element;
|
|
1417
|
+
};
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
//#endregion
|
|
1421
|
+
export { Accordion, AccordionItem, AccordionPanel, AccordionTrigger, ActionBar, AnchoredToastProvider, AnimationTraitProps, Badge, Button, Checkbox, type CheckboxLayout, ColorPicker, ColorPickerContent, type ColorPickerContentProps, type ColorPickerProps, type CreateTemplateBlockOptions, CustomClassesTraitProps, Dialog, DialogDescription, DialogFooter, DialogHeader, DialogPanel, DialogPopup, DialogTitle, DialogTrigger, DisplayTraitProps, DrawerItem, FieldCheckbox, FieldGroups, FieldInput, FieldNumberUnit, FieldRadio, FieldSelect, FieldTextarea, FontWeightTraitProps, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GRAY_COLORS, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, type InputProps, Label, LineHeightTraitProps, MarginItem, MarginTraitProps, MarginValue, type MediaItem, MediaPicker, type MediaPickerProps, type MediaPickerValue, type MediaReference, Menu, MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuSub, MenuSubPopup, MenuSubTrigger, MenuTrigger, OptimizedImageAttrs, PREDEFINED_COLORS, PaddingItem, PaddingTraitProps, PaddingValue, type PageItem, PagePicker, type PagePickerProps, type PagePickerValue, type PageReference, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PickerModal, type PickerModalProps, Popover, PopoverClose, PopoverPopup as PopoverContent, PopoverPopup, PopoverCreateHandle, PopoverDescription, PopoverTitle, PopoverTrigger, PositionTraitProps, RadioGroup, RadioGroupItem, type RadioLayout, RichTextMenuColorPicker, RichTextMenuLink, ScrollArea, ScrollBar, Select, SelectGroup, SelectGroupLabel, SelectItem, SelectPopup, 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, type TemplateProps, TextAlignTraitProps, TextColorTraitProps, TextDecorationTraitProps, TextSizeTraitProps, TextTransformTraitProps, Textarea, type TextareaProps, type ToastPosition, ToastProvider, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, TypographyTraitProps, anchoredToastManager, animationDefaultProps, animationField, animationToAttributes, badgeVariants, buttonVariants, createPuckOverridesPlugin, createRedactorPlugin, createTemplateBlock, customClassesDefaultProps, customClassesField, customClassesToClasses, displayDefaultProps, displayField, displayToClasses, fontWeightDefaultProps, fontWeightField, fontWeightToClasses, getCsrfToken, getMediaUrl, lineHeightDefaultProps, lineHeightField, lineHeightToClasses, marginDefaultProps, marginField, marginToClasses, paddingDefaultProps, paddingField, paddingToClasses, pageField, positionDefaultProps, positionField, positionToClasses, richTextMenuColorPickerExtension, 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, useMediaUrl, useOptimizedImage, usePageUrl };
|
|
1393
1422
|
//# sourceMappingURL=index.d.ts.map
|