@ckc-net/puck-extended 0.1.9 → 0.1.11
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 +133 -186
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +100 -182
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +17 -21
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_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";
|
|
@@ -16,9 +16,9 @@ import { VariantProps } from "class-variance-authority";
|
|
|
16
16
|
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
17
17
|
import { Menu as Menu$1 } from "@base-ui/react/menu";
|
|
18
18
|
import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
19
|
-
import * as _base_ui_react_toast0 from "@base-ui/react/toast";
|
|
20
19
|
import { Toast } from "@base-ui/react/toast";
|
|
21
20
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
21
|
+
import * as _base_ui_react0 from "@base-ui/react";
|
|
22
22
|
|
|
23
23
|
//#region src/components/Fields/NumberUnit/index.d.ts
|
|
24
24
|
type NumberUnitValue = {
|
|
@@ -37,7 +37,7 @@ declare const FieldNumberUnit: ({
|
|
|
37
37
|
label: string;
|
|
38
38
|
field: any;
|
|
39
39
|
readOnly?: boolean;
|
|
40
|
-
}) =>
|
|
40
|
+
}) => react_jsx_runtime18.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_runtime18.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_runtime18.JSX.Element;
|
|
64
64
|
Label: ({
|
|
65
65
|
label
|
|
66
66
|
}: {
|
|
67
67
|
label: string;
|
|
68
|
-
}) =>
|
|
68
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
69
69
|
Group: ({
|
|
70
70
|
children
|
|
71
71
|
}: {
|
|
72
72
|
children: react0.ReactNode;
|
|
73
|
-
}) =>
|
|
74
|
-
Separator: () =>
|
|
73
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
74
|
+
Separator: () => react_jsx_runtime18.JSX.Element;
|
|
75
75
|
};
|
|
76
76
|
drawer: ({
|
|
77
77
|
children
|
|
78
78
|
}: {
|
|
79
79
|
children: React.ReactNode;
|
|
80
|
-
}) =>
|
|
80
|
+
}) => react_jsx_runtime18.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_runtime18.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_runtime18.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_runtime18.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_runtime18.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_runtime18.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_runtime18.JSX.Element | null;
|
|
155
155
|
select: ({
|
|
156
156
|
onChange,
|
|
157
157
|
value,
|
|
@@ -164,29 +164,33 @@ declare const createPuckOverridesPlugin: () => {
|
|
|
164
164
|
label: string;
|
|
165
165
|
field: any;
|
|
166
166
|
readOnly?: boolean;
|
|
167
|
-
}) =>
|
|
167
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
168
168
|
text: ({
|
|
169
169
|
onChange,
|
|
170
|
+
value,
|
|
170
171
|
label,
|
|
171
172
|
field,
|
|
172
173
|
readOnly
|
|
173
174
|
}: {
|
|
174
175
|
onChange: (value: any) => void;
|
|
176
|
+
value?: string;
|
|
175
177
|
label?: string;
|
|
176
178
|
field: any;
|
|
177
179
|
readOnly?: boolean;
|
|
178
|
-
}) =>
|
|
180
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
179
181
|
textarea: ({
|
|
180
182
|
onChange,
|
|
183
|
+
value,
|
|
181
184
|
label,
|
|
182
185
|
field,
|
|
183
186
|
readOnly
|
|
184
187
|
}: {
|
|
185
188
|
onChange: (value: any) => void;
|
|
189
|
+
value?: string;
|
|
186
190
|
label: string;
|
|
187
191
|
field: any;
|
|
188
192
|
readOnly?: boolean;
|
|
189
|
-
}) =>
|
|
193
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
190
194
|
};
|
|
191
195
|
};
|
|
192
196
|
};
|
|
@@ -198,33 +202,37 @@ declare const Label: ({
|
|
|
198
202
|
}: {
|
|
199
203
|
label?: string;
|
|
200
204
|
readOnly?: boolean;
|
|
201
|
-
}) =>
|
|
205
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
202
206
|
//#endregion
|
|
203
207
|
//#region src/components/Fields/Input/index.d.ts
|
|
204
208
|
declare const FieldInput: ({
|
|
205
209
|
onChange,
|
|
210
|
+
value,
|
|
206
211
|
label,
|
|
207
212
|
field,
|
|
208
213
|
readOnly
|
|
209
214
|
}: {
|
|
210
215
|
onChange: (value: any) => void;
|
|
216
|
+
value?: string;
|
|
211
217
|
label?: string;
|
|
212
218
|
field: any;
|
|
213
219
|
readOnly?: boolean;
|
|
214
|
-
}) =>
|
|
220
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
215
221
|
//#endregion
|
|
216
222
|
//#region src/components/Fields/Textarea/index.d.ts
|
|
217
223
|
declare const FieldTextarea: ({
|
|
218
224
|
onChange,
|
|
225
|
+
value,
|
|
219
226
|
label,
|
|
220
227
|
field,
|
|
221
228
|
readOnly
|
|
222
229
|
}: {
|
|
223
230
|
onChange: (value: any) => void;
|
|
231
|
+
value?: string;
|
|
224
232
|
label: string;
|
|
225
233
|
field: any;
|
|
226
234
|
readOnly?: boolean;
|
|
227
|
-
}) =>
|
|
235
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
228
236
|
//#endregion
|
|
229
237
|
//#region src/components/Fields/Select/index.d.ts
|
|
230
238
|
declare const FieldSelect: ({
|
|
@@ -239,7 +247,7 @@ declare const FieldSelect: ({
|
|
|
239
247
|
label: string;
|
|
240
248
|
field: any;
|
|
241
249
|
readOnly?: boolean;
|
|
242
|
-
}) =>
|
|
250
|
+
}) => react_jsx_runtime18.JSX.Element;
|
|
243
251
|
//#endregion
|
|
244
252
|
//#region src/components/ui/radio.d.ts
|
|
245
253
|
type RadioLayout = "horizontal" | "inline";
|
|
@@ -253,12 +261,12 @@ declare function RadioGroup({
|
|
|
253
261
|
className,
|
|
254
262
|
layout,
|
|
255
263
|
...props
|
|
256
|
-
}: RadioGroupProps):
|
|
264
|
+
}: RadioGroupProps): react_jsx_runtime18.JSX.Element;
|
|
257
265
|
declare function RadioGroupItem({
|
|
258
266
|
className,
|
|
259
267
|
layout,
|
|
260
268
|
...props
|
|
261
|
-
}: RadioGroupItemProps):
|
|
269
|
+
}: RadioGroupItemProps): react_jsx_runtime18.JSX.Element;
|
|
262
270
|
//#endregion
|
|
263
271
|
//#region src/components/Fields/Radio/index.d.ts
|
|
264
272
|
type RadioProps = FieldProps<Field<any>> & {
|
|
@@ -279,7 +287,7 @@ declare const FieldRadio: ({
|
|
|
279
287
|
label
|
|
280
288
|
}: RadioProps & {
|
|
281
289
|
label: string;
|
|
282
|
-
}) =>
|
|
290
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
283
291
|
//#endregion
|
|
284
292
|
//#region src/components/ui/checkbox.d.ts
|
|
285
293
|
type CheckboxLayout = "horizontal" | "inline";
|
|
@@ -290,7 +298,7 @@ declare function Checkbox({
|
|
|
290
298
|
className,
|
|
291
299
|
layout,
|
|
292
300
|
...props
|
|
293
|
-
}: CheckboxProps$1):
|
|
301
|
+
}: CheckboxProps$1): react_jsx_runtime18.JSX.Element;
|
|
294
302
|
//#endregion
|
|
295
303
|
//#region src/components/Fields/Checkbox/index.d.ts
|
|
296
304
|
type CheckboxProps = FieldProps<Field<any>> & {
|
|
@@ -311,7 +319,7 @@ declare const FieldCheckbox: ({
|
|
|
311
319
|
label
|
|
312
320
|
}: CheckboxProps & {
|
|
313
321
|
label: string;
|
|
314
|
-
}) =>
|
|
322
|
+
}) => react_jsx_runtime18.JSX.Element | null;
|
|
315
323
|
//#endregion
|
|
316
324
|
//#region src/components/MediaPicker/index.d.ts
|
|
317
325
|
type MediaItem = {
|
|
@@ -335,7 +343,7 @@ declare const MediaPicker: ({
|
|
|
335
343
|
value,
|
|
336
344
|
onChange,
|
|
337
345
|
mediaType
|
|
338
|
-
}: MediaPickerProps) =>
|
|
346
|
+
}: MediaPickerProps) => react_jsx_runtime18.JSX.Element;
|
|
339
347
|
declare const getMediaUrl: (value?: MediaPickerValue) => string | undefined;
|
|
340
348
|
//#endregion
|
|
341
349
|
//#region src/components/PagePicker/index.d.ts
|
|
@@ -358,11 +366,11 @@ type PagePickerProps = {
|
|
|
358
366
|
declare const PagePicker: ({
|
|
359
367
|
value,
|
|
360
368
|
onChange
|
|
361
|
-
}: PagePickerProps) =>
|
|
369
|
+
}: PagePickerProps) => react_jsx_runtime18.JSX.Element;
|
|
362
370
|
declare const getPageUrl: (value?: PagePickerValue) => string | undefined;
|
|
363
371
|
//#endregion
|
|
364
372
|
//#region src/components/ui/accordion.d.ts
|
|
365
|
-
declare const cssAnimationPresets$
|
|
373
|
+
declare const cssAnimationPresets$3: {
|
|
366
374
|
none: string;
|
|
367
375
|
fade: string[];
|
|
368
376
|
scale: string[];
|
|
@@ -370,7 +378,7 @@ declare const cssAnimationPresets$4: {
|
|
|
370
378
|
perspective: string[];
|
|
371
379
|
perspectiveBlur: string[];
|
|
372
380
|
};
|
|
373
|
-
declare const cssTransitionPresets$
|
|
381
|
+
declare const cssTransitionPresets$3: {
|
|
374
382
|
inExpo: string;
|
|
375
383
|
outExpo: string;
|
|
376
384
|
inOutExpo: string;
|
|
@@ -400,8 +408,8 @@ declare const cssTransitionPresets$4: {
|
|
|
400
408
|
inOutCirc: string;
|
|
401
409
|
inOutBase: string;
|
|
402
410
|
};
|
|
403
|
-
type CSSAnimationPreset = keyof typeof cssAnimationPresets$
|
|
404
|
-
type CSSTransitionPreset = keyof typeof cssTransitionPresets$
|
|
411
|
+
type CSSAnimationPreset = keyof typeof cssAnimationPresets$3;
|
|
412
|
+
type CSSTransitionPreset = keyof typeof cssTransitionPresets$3;
|
|
405
413
|
type AccordionVariant = "default" | "card" | "swiss";
|
|
406
414
|
interface AccordionProps extends Accordion$1.Root.Props {
|
|
407
415
|
animationPreset?: CSSAnimationPreset;
|
|
@@ -420,19 +428,19 @@ declare function Accordion({
|
|
|
420
428
|
className,
|
|
421
429
|
multiple,
|
|
422
430
|
...props
|
|
423
|
-
}: AccordionProps):
|
|
431
|
+
}: AccordionProps): react_jsx_runtime18.JSX.Element;
|
|
424
432
|
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
425
433
|
declare function AccordionItem({
|
|
426
434
|
value: itemValue,
|
|
427
435
|
onOpenChange,
|
|
428
436
|
className,
|
|
429
437
|
...rest
|
|
430
|
-
}: AccordionItemProps):
|
|
438
|
+
}: AccordionItemProps): react_jsx_runtime18.JSX.Element;
|
|
431
439
|
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
432
440
|
declare function AccordionHeader({
|
|
433
441
|
className,
|
|
434
442
|
...props
|
|
435
|
-
}: AccordionHeaderProps):
|
|
443
|
+
}: AccordionHeaderProps): react_jsx_runtime18.JSX.Element;
|
|
436
444
|
interface AccordionTriggerProps extends Accordion$1.Trigger.Props {
|
|
437
445
|
icon?: (props: {
|
|
438
446
|
open: boolean;
|
|
@@ -443,14 +451,14 @@ declare function AccordionTrigger({
|
|
|
443
451
|
icon,
|
|
444
452
|
children,
|
|
445
453
|
...props
|
|
446
|
-
}: AccordionTriggerProps):
|
|
454
|
+
}: AccordionTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
447
455
|
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
448
456
|
declare function AccordionPanel({
|
|
449
457
|
className,
|
|
450
458
|
children,
|
|
451
459
|
style,
|
|
452
460
|
...props
|
|
453
|
-
}: AccordionPanelProps):
|
|
461
|
+
}: AccordionPanelProps): react_jsx_runtime18.JSX.Element;
|
|
454
462
|
//#endregion
|
|
455
463
|
//#region src/components/ui/button.d.ts
|
|
456
464
|
declare const buttonVariants: (props?: ({
|
|
@@ -470,105 +478,44 @@ declare function Button({
|
|
|
470
478
|
}: ButtonProps): react0.ReactElement<unknown, string | react0.JSXElementConstructor<any>>;
|
|
471
479
|
//#endregion
|
|
472
480
|
//#region src/components/ui/dialog.d.ts
|
|
473
|
-
declare const
|
|
474
|
-
|
|
475
|
-
scale: string[];
|
|
476
|
-
fade: string[];
|
|
477
|
-
topFlip: string[];
|
|
478
|
-
bottomFlip: string[];
|
|
479
|
-
rightFlip: string[];
|
|
480
|
-
leftFlip: string[];
|
|
481
|
-
topSlide: string[];
|
|
482
|
-
bottomSlide: string[];
|
|
483
|
-
leftSlide: string[];
|
|
484
|
-
rightSlide: string[];
|
|
485
|
-
wipe: string[];
|
|
486
|
-
};
|
|
487
|
-
declare const cssTransitionPresets$3: {
|
|
488
|
-
inExpo: string;
|
|
489
|
-
outExpo: string;
|
|
490
|
-
inOutExpo: string;
|
|
491
|
-
anticipate: string;
|
|
492
|
-
quickOut: string;
|
|
493
|
-
overshootOut: string;
|
|
494
|
-
swiftOut: string;
|
|
495
|
-
snappyOut: string;
|
|
496
|
-
in: string;
|
|
497
|
-
out: string;
|
|
498
|
-
inOut: string;
|
|
499
|
-
outIn: string;
|
|
500
|
-
inQuad: string;
|
|
501
|
-
outQuad: string;
|
|
502
|
-
inOutQuad: string;
|
|
503
|
-
inCubic: string;
|
|
504
|
-
outCubic: string;
|
|
505
|
-
inOutCubic: string;
|
|
506
|
-
inQuart: string;
|
|
507
|
-
outQuart: string;
|
|
508
|
-
inOutQuart: string;
|
|
509
|
-
inQuint: string;
|
|
510
|
-
outQuint: string;
|
|
511
|
-
inOutQuint: string;
|
|
512
|
-
inCirc: string;
|
|
513
|
-
outCirc: string;
|
|
514
|
-
inOutCirc: string;
|
|
515
|
-
inOutBase: string;
|
|
516
|
-
};
|
|
517
|
-
type CSSAnimationPresets$3 = keyof typeof cssAnimationPresets$3;
|
|
518
|
-
type CSSTransitionPresets$3 = keyof typeof cssTransitionPresets$3;
|
|
519
|
-
interface DialogProps<TPayload = unknown> extends Dialog$1.Root.Props<TPayload> {}
|
|
520
|
-
declare function Dialog<TPayload = unknown>({
|
|
521
|
-
modal,
|
|
522
|
-
...props
|
|
523
|
-
}: DialogProps<TPayload>): react_jsx_runtime17.JSX.Element;
|
|
524
|
-
interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
|
|
525
|
-
declare function DialogTrigger({
|
|
526
|
-
...props
|
|
527
|
-
}: DialogTriggerProps): react_jsx_runtime17.JSX.Element;
|
|
528
|
-
interface DialogViewportProps extends Dialog$1.Viewport.Props {}
|
|
529
|
-
declare function DialogViewport({
|
|
530
|
-
...props
|
|
531
|
-
}: DialogViewportProps): react_jsx_runtime17.JSX.Element;
|
|
532
|
-
interface DialogPortalProps extends Dialog$1.Portal.Props {}
|
|
533
|
-
declare function DialogPortal(props: DialogPortalProps): react_jsx_runtime17.JSX.Element;
|
|
534
|
-
interface DialogBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
535
|
-
declare function DialogBackdrop({
|
|
536
|
-
className,
|
|
537
|
-
...props
|
|
538
|
-
}: DialogBackdropProps): react_jsx_runtime17.JSX.Element;
|
|
539
|
-
interface DialogPopupProps extends Dialog$1.Popup.Props {
|
|
540
|
-
animationPreset?: CSSAnimationPresets$3;
|
|
541
|
-
transitionPreset?: CSSTransitionPresets$3;
|
|
542
|
-
reduceMotion?: boolean;
|
|
543
|
-
showCloseButton?: boolean;
|
|
544
|
-
}
|
|
481
|
+
declare const Dialog: typeof Dialog$1.Root;
|
|
482
|
+
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime18.JSX.Element;
|
|
545
483
|
declare function DialogPopup({
|
|
546
484
|
className,
|
|
547
|
-
animationPreset,
|
|
548
|
-
transitionPreset,
|
|
549
485
|
children,
|
|
550
|
-
reduceMotion,
|
|
551
486
|
showCloseButton,
|
|
552
|
-
|
|
553
|
-
|
|
487
|
+
bottomStickOnMobile,
|
|
488
|
+
...props
|
|
489
|
+
}: Dialog$1.Popup.Props & {
|
|
490
|
+
showCloseButton?: boolean;
|
|
491
|
+
bottomStickOnMobile?: boolean;
|
|
492
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
554
493
|
declare function DialogHeader({
|
|
555
494
|
className,
|
|
556
495
|
...props
|
|
557
|
-
}: React.ComponentProps<"div">):
|
|
496
|
+
}: React.ComponentProps<"div">): react_jsx_runtime18.JSX.Element;
|
|
558
497
|
declare function DialogFooter({
|
|
559
498
|
className,
|
|
499
|
+
variant,
|
|
560
500
|
...props
|
|
561
|
-
}: React.ComponentProps<"div">
|
|
501
|
+
}: React.ComponentProps<"div"> & {
|
|
502
|
+
variant?: "default" | "bare";
|
|
503
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
562
504
|
declare function DialogTitle({
|
|
563
505
|
className,
|
|
564
506
|
...props
|
|
565
|
-
}: Dialog$1.Title.Props):
|
|
507
|
+
}: Dialog$1.Title.Props): react_jsx_runtime18.JSX.Element;
|
|
566
508
|
declare function DialogDescription({
|
|
567
509
|
className,
|
|
568
510
|
...props
|
|
569
|
-
}: Dialog$1.Description.Props):
|
|
570
|
-
|
|
571
|
-
|
|
511
|
+
}: Dialog$1.Description.Props): react_jsx_runtime18.JSX.Element;
|
|
512
|
+
declare function DialogPanel({
|
|
513
|
+
className,
|
|
514
|
+
scrollFade,
|
|
515
|
+
...props
|
|
516
|
+
}: React.ComponentProps<"div"> & {
|
|
517
|
+
scrollFade?: boolean;
|
|
518
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
572
519
|
//#endregion
|
|
573
520
|
//#region src/components/ui/input.d.ts
|
|
574
521
|
type InputProps = Omit<Input$1.Props & react0.RefAttributes<HTMLInputElement>, "size"> & {
|
|
@@ -582,7 +529,7 @@ declare function Input({
|
|
|
582
529
|
unstyled,
|
|
583
530
|
nativeInput,
|
|
584
531
|
...props
|
|
585
|
-
}: InputProps):
|
|
532
|
+
}: InputProps): react_jsx_runtime18.JSX.Element;
|
|
586
533
|
//#endregion
|
|
587
534
|
//#region src/components/ui/textarea.d.ts
|
|
588
535
|
type TextareaProps = react0.ComponentProps<"textarea"> & {
|
|
@@ -594,13 +541,13 @@ declare function Textarea({
|
|
|
594
541
|
size,
|
|
595
542
|
unstyled,
|
|
596
543
|
...props
|
|
597
|
-
}: TextareaProps):
|
|
544
|
+
}: TextareaProps): react_jsx_runtime18.JSX.Element;
|
|
598
545
|
//#endregion
|
|
599
546
|
//#region src/components/ui/input-group.d.ts
|
|
600
547
|
declare function InputGroup({
|
|
601
548
|
className,
|
|
602
549
|
...props
|
|
603
|
-
}: react0.ComponentProps<"div">):
|
|
550
|
+
}: react0.ComponentProps<"div">): react_jsx_runtime18.JSX.Element;
|
|
604
551
|
declare const inputGroupAddonVariants: (props?: ({
|
|
605
552
|
align?: "inline-start" | "block-end" | "block-start" | "inline-end" | null | undefined;
|
|
606
553
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -608,19 +555,19 @@ declare function InputGroupAddon({
|
|
|
608
555
|
className,
|
|
609
556
|
align,
|
|
610
557
|
...props
|
|
611
|
-
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
558
|
+
}: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime18.JSX.Element;
|
|
612
559
|
declare function InputGroupText({
|
|
613
560
|
className,
|
|
614
561
|
...props
|
|
615
|
-
}: react0.ComponentProps<"span">):
|
|
562
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
616
563
|
declare function InputGroupInput({
|
|
617
564
|
className,
|
|
618
565
|
...props
|
|
619
|
-
}: InputProps):
|
|
566
|
+
}: InputProps): react_jsx_runtime18.JSX.Element;
|
|
620
567
|
declare function InputGroupTextarea({
|
|
621
568
|
className,
|
|
622
569
|
...props
|
|
623
|
-
}: TextareaProps):
|
|
570
|
+
}: TextareaProps): react_jsx_runtime18.JSX.Element;
|
|
624
571
|
//#endregion
|
|
625
572
|
//#region src/components/ui/menu.d.ts
|
|
626
573
|
declare const cssAnimationPresets$2: {
|
|
@@ -673,11 +620,11 @@ interface MenuProps extends Menu$1.Root.Props {
|
|
|
673
620
|
declare function Menu({
|
|
674
621
|
backdrop,
|
|
675
622
|
...props
|
|
676
|
-
}: MenuProps):
|
|
623
|
+
}: MenuProps): react_jsx_runtime18.JSX.Element;
|
|
677
624
|
interface MenuTriggerProps extends Menu$1.Trigger.Props {}
|
|
678
625
|
declare function MenuTrigger({
|
|
679
626
|
...props
|
|
680
|
-
}: MenuTriggerProps):
|
|
627
|
+
}: MenuTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
681
628
|
interface MenuPositionerProps extends Menu$1.Positioner.Props {}
|
|
682
629
|
interface MenuPopupProps extends Menu$1.Popup.Props, Pick<MenuPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
683
630
|
animationPreset?: CSSAnimationPresets$2;
|
|
@@ -697,58 +644,58 @@ declare function MenuPopup({
|
|
|
697
644
|
alignOffset,
|
|
698
645
|
children,
|
|
699
646
|
...rest
|
|
700
|
-
}: MenuPopupProps):
|
|
647
|
+
}: MenuPopupProps): react_jsx_runtime18.JSX.Element;
|
|
701
648
|
interface MenuGroupProps extends Menu$1.Group.Props {}
|
|
702
|
-
declare function MenuGroup(props: MenuGroupProps):
|
|
649
|
+
declare function MenuGroup(props: MenuGroupProps): react_jsx_runtime18.JSX.Element;
|
|
703
650
|
interface MenuGroupLabelProps extends Menu$1.GroupLabel.Props {}
|
|
704
651
|
declare function MenuGroupLabel({
|
|
705
652
|
className,
|
|
706
653
|
...rest
|
|
707
|
-
}: MenuGroupLabelProps):
|
|
654
|
+
}: MenuGroupLabelProps): react_jsx_runtime18.JSX.Element;
|
|
708
655
|
declare function MenuLabel({
|
|
709
656
|
className,
|
|
710
657
|
...props
|
|
711
|
-
}: React.ComponentProps<"span">):
|
|
658
|
+
}: React.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
712
659
|
interface MenuItemProps extends Menu$1.Item.Props {}
|
|
713
660
|
declare function MenuItem({
|
|
714
661
|
className,
|
|
715
662
|
...rest
|
|
716
|
-
}: MenuItemProps):
|
|
663
|
+
}: MenuItemProps): react_jsx_runtime18.JSX.Element;
|
|
717
664
|
declare function MenuSeparator({
|
|
718
665
|
className,
|
|
719
666
|
...props
|
|
720
|
-
}: Menu$1.Separator.Props):
|
|
667
|
+
}: Menu$1.Separator.Props): react_jsx_runtime18.JSX.Element;
|
|
721
668
|
interface MenuCheckboxItemProps extends Menu$1.CheckboxItem.Props {}
|
|
722
669
|
declare function MenuCheckboxItem({
|
|
723
670
|
className,
|
|
724
671
|
children,
|
|
725
672
|
...rest
|
|
726
|
-
}: MenuCheckboxItemProps):
|
|
673
|
+
}: MenuCheckboxItemProps): react_jsx_runtime18.JSX.Element;
|
|
727
674
|
interface MenuRadioGroupProps extends Menu$1.RadioGroup.Props {
|
|
728
675
|
activeIcon?: React.ReactNode;
|
|
729
676
|
}
|
|
730
677
|
declare function MenuRadioGroup({
|
|
731
678
|
activeIcon,
|
|
732
679
|
...props
|
|
733
|
-
}: MenuRadioGroupProps):
|
|
680
|
+
}: MenuRadioGroupProps): react_jsx_runtime18.JSX.Element;
|
|
734
681
|
declare function MenuRadioItem({
|
|
735
682
|
className,
|
|
736
683
|
children,
|
|
737
684
|
value,
|
|
738
685
|
...props
|
|
739
|
-
}: Menu$1.RadioItem.Props):
|
|
686
|
+
}: Menu$1.RadioItem.Props): react_jsx_runtime18.JSX.Element;
|
|
740
687
|
declare function MenuShortcut({
|
|
741
688
|
className,
|
|
742
689
|
...props
|
|
743
|
-
}: React.ComponentProps<"span">):
|
|
690
|
+
}: React.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
744
691
|
interface MenuSubProps extends Menu$1.SubmenuRoot.Props {}
|
|
745
|
-
declare function MenuSub(props: MenuSubProps):
|
|
692
|
+
declare function MenuSub(props: MenuSubProps): react_jsx_runtime18.JSX.Element;
|
|
746
693
|
interface MenuSubTriggerProps extends Menu$1.SubmenuTrigger.Props {}
|
|
747
694
|
declare function MenuSubTrigger({
|
|
748
695
|
className,
|
|
749
696
|
children,
|
|
750
697
|
...rest
|
|
751
|
-
}: MenuSubTriggerProps):
|
|
698
|
+
}: MenuSubTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
752
699
|
interface MenuSubPopupProps extends Menu$1.Popup.Props, Pick<MenuPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {}
|
|
753
700
|
declare function MenuSubPopup({
|
|
754
701
|
className,
|
|
@@ -758,20 +705,20 @@ declare function MenuSubPopup({
|
|
|
758
705
|
align,
|
|
759
706
|
alignOffset,
|
|
760
707
|
...rest
|
|
761
|
-
}: MenuSubPopupProps):
|
|
708
|
+
}: MenuSubPopupProps): react_jsx_runtime18.JSX.Element;
|
|
762
709
|
//#endregion
|
|
763
710
|
//#region src/components/ui/pagination.d.ts
|
|
764
711
|
declare function Pagination({
|
|
765
712
|
className,
|
|
766
713
|
...props
|
|
767
|
-
}: react0.ComponentProps<"nav">):
|
|
714
|
+
}: react0.ComponentProps<"nav">): react_jsx_runtime18.JSX.Element;
|
|
768
715
|
declare function PaginationContent({
|
|
769
716
|
className,
|
|
770
717
|
...props
|
|
771
|
-
}: react0.ComponentProps<"ul">):
|
|
718
|
+
}: react0.ComponentProps<"ul">): react_jsx_runtime18.JSX.Element;
|
|
772
719
|
declare function PaginationItem({
|
|
773
720
|
...props
|
|
774
|
-
}: react0.ComponentProps<"li">):
|
|
721
|
+
}: react0.ComponentProps<"li">): react_jsx_runtime18.JSX.Element;
|
|
775
722
|
type PaginationLinkProps = {
|
|
776
723
|
isActive?: boolean;
|
|
777
724
|
} & Pick<react0.ComponentProps<typeof Button>, "size"> & react0.ComponentProps<"a">;
|
|
@@ -780,19 +727,19 @@ declare function PaginationLink({
|
|
|
780
727
|
isActive,
|
|
781
728
|
size,
|
|
782
729
|
...props
|
|
783
|
-
}: PaginationLinkProps):
|
|
730
|
+
}: PaginationLinkProps): react_jsx_runtime18.JSX.Element;
|
|
784
731
|
declare function PaginationPrevious({
|
|
785
732
|
className,
|
|
786
733
|
...props
|
|
787
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
734
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime18.JSX.Element;
|
|
788
735
|
declare function PaginationNext({
|
|
789
736
|
className,
|
|
790
737
|
...props
|
|
791
|
-
}: react0.ComponentProps<typeof PaginationLink>):
|
|
738
|
+
}: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime18.JSX.Element;
|
|
792
739
|
declare function PaginationEllipsis({
|
|
793
740
|
className,
|
|
794
741
|
...props
|
|
795
|
-
}: react0.ComponentProps<"span">):
|
|
742
|
+
}: react0.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
796
743
|
//#endregion
|
|
797
744
|
//#region src/components/ui/select.d.ts
|
|
798
745
|
declare const cssAnimationPresets$1: {
|
|
@@ -845,12 +792,12 @@ interface SelectRootProps extends React.ComponentProps<typeof Select$1.Root> {
|
|
|
845
792
|
declare function Select({
|
|
846
793
|
backdrop,
|
|
847
794
|
...props
|
|
848
|
-
}: SelectRootProps):
|
|
795
|
+
}: SelectRootProps): react_jsx_runtime18.JSX.Element;
|
|
849
796
|
interface SelectTriggerProps extends React.ComponentProps<typeof Select$1.Trigger> {}
|
|
850
797
|
declare function SelectTrigger({
|
|
851
798
|
className,
|
|
852
799
|
...props
|
|
853
|
-
}: SelectTriggerProps):
|
|
800
|
+
}: SelectTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
854
801
|
interface SelectValueProps extends React.ComponentProps<typeof Select$1.Value> {
|
|
855
802
|
placeholder?: string;
|
|
856
803
|
}
|
|
@@ -858,12 +805,12 @@ declare function SelectValue({
|
|
|
858
805
|
className,
|
|
859
806
|
placeholder,
|
|
860
807
|
...props
|
|
861
|
-
}: SelectValueProps):
|
|
808
|
+
}: SelectValueProps): react_jsx_runtime18.JSX.Element;
|
|
862
809
|
interface SelectIconProps extends React.ComponentProps<typeof Select$1.Icon> {}
|
|
863
810
|
declare function SelectIcon({
|
|
864
811
|
className,
|
|
865
812
|
...props
|
|
866
|
-
}: SelectIconProps):
|
|
813
|
+
}: SelectIconProps): react_jsx_runtime18.JSX.Element;
|
|
867
814
|
interface SelectPositionerProps extends React.ComponentProps<typeof Select$1.Positioner> {}
|
|
868
815
|
interface SelectPopupProps extends React.ComponentProps<typeof Select$1.Popup>, Pick<SelectPositionerProps, "side" | "sideOffset" | "align" | "alignOffset" | "alignItemWithTrigger"> {
|
|
869
816
|
animationPreset?: CSSAnimationPresets$1;
|
|
@@ -884,89 +831,89 @@ declare function SelectPopup({
|
|
|
884
831
|
alignItemWithTrigger,
|
|
885
832
|
children,
|
|
886
833
|
...rest
|
|
887
|
-
}: SelectPopupProps):
|
|
834
|
+
}: SelectPopupProps): react_jsx_runtime18.JSX.Element;
|
|
888
835
|
interface SelectListProps extends React.ComponentProps<typeof Select$1.List> {}
|
|
889
836
|
declare function SelectList({
|
|
890
837
|
className,
|
|
891
838
|
...props
|
|
892
|
-
}: SelectListProps):
|
|
839
|
+
}: SelectListProps): react_jsx_runtime18.JSX.Element;
|
|
893
840
|
interface SelectItemProps extends React.ComponentProps<typeof Select$1.Item> {}
|
|
894
841
|
declare function SelectItem({
|
|
895
842
|
className,
|
|
896
843
|
...props
|
|
897
|
-
}: SelectItemProps):
|
|
844
|
+
}: SelectItemProps): react_jsx_runtime18.JSX.Element;
|
|
898
845
|
interface SelectItemTextProps extends React.ComponentProps<typeof Select$1.ItemText> {}
|
|
899
846
|
declare function SelectItemText({
|
|
900
847
|
className,
|
|
901
848
|
...props
|
|
902
|
-
}: SelectItemTextProps):
|
|
849
|
+
}: SelectItemTextProps): react_jsx_runtime18.JSX.Element;
|
|
903
850
|
interface SelectItemIndicatorProps extends React.ComponentProps<typeof Select$1.ItemIndicator> {}
|
|
904
851
|
declare function SelectItemIndicator({
|
|
905
852
|
className,
|
|
906
853
|
...props
|
|
907
|
-
}: SelectItemIndicatorProps):
|
|
854
|
+
}: SelectItemIndicatorProps): react_jsx_runtime18.JSX.Element;
|
|
908
855
|
interface SelectGroupProps extends React.ComponentProps<typeof Select$1.Group> {}
|
|
909
856
|
declare function SelectGroup({
|
|
910
857
|
...props
|
|
911
|
-
}: SelectGroupProps):
|
|
858
|
+
}: SelectGroupProps): react_jsx_runtime18.JSX.Element;
|
|
912
859
|
interface SelectGroupLabelProps extends React.ComponentProps<typeof Select$1.GroupLabel> {}
|
|
913
860
|
declare function SelectGroupLabel({
|
|
914
861
|
...props
|
|
915
|
-
}: SelectGroupLabelProps):
|
|
916
|
-
declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>):
|
|
917
|
-
declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>):
|
|
862
|
+
}: SelectGroupLabelProps): react_jsx_runtime18.JSX.Element;
|
|
863
|
+
declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime18.JSX.Element;
|
|
864
|
+
declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime18.JSX.Element;
|
|
918
865
|
interface SelectSeparatorProps extends React.ComponentProps<typeof Select$1.Separator> {}
|
|
919
866
|
declare function SelectSeparator({
|
|
920
867
|
...props
|
|
921
|
-
}: SelectSeparatorProps):
|
|
868
|
+
}: SelectSeparatorProps): react_jsx_runtime18.JSX.Element;
|
|
922
869
|
//#endregion
|
|
923
870
|
//#region src/components/ui/separator.d.ts
|
|
924
871
|
declare function Separator({
|
|
925
872
|
className,
|
|
926
873
|
orientation,
|
|
927
874
|
...props
|
|
928
|
-
}: Separator$1.Props):
|
|
875
|
+
}: Separator$1.Props): react_jsx_runtime18.JSX.Element;
|
|
929
876
|
//#endregion
|
|
930
877
|
//#region src/components/ui/table.d.ts
|
|
931
878
|
declare function Table({
|
|
932
879
|
className,
|
|
933
880
|
...props
|
|
934
|
-
}: react0.ComponentProps<"table">):
|
|
881
|
+
}: react0.ComponentProps<"table">): react_jsx_runtime18.JSX.Element;
|
|
935
882
|
declare function TableHeader({
|
|
936
883
|
className,
|
|
937
884
|
...props
|
|
938
|
-
}: react0.ComponentProps<"thead">):
|
|
885
|
+
}: react0.ComponentProps<"thead">): react_jsx_runtime18.JSX.Element;
|
|
939
886
|
declare function TableBody({
|
|
940
887
|
className,
|
|
941
888
|
...props
|
|
942
|
-
}: react0.ComponentProps<"tbody">):
|
|
889
|
+
}: react0.ComponentProps<"tbody">): react_jsx_runtime18.JSX.Element;
|
|
943
890
|
declare function TableFooter({
|
|
944
891
|
className,
|
|
945
892
|
...props
|
|
946
|
-
}: react0.ComponentProps<"tfoot">):
|
|
893
|
+
}: react0.ComponentProps<"tfoot">): react_jsx_runtime18.JSX.Element;
|
|
947
894
|
declare function TableRow({
|
|
948
895
|
className,
|
|
949
896
|
...props
|
|
950
|
-
}: react0.ComponentProps<"tr">):
|
|
897
|
+
}: react0.ComponentProps<"tr">): react_jsx_runtime18.JSX.Element;
|
|
951
898
|
declare function TableHead({
|
|
952
899
|
className,
|
|
953
900
|
...props
|
|
954
|
-
}: react0.ComponentProps<"th">):
|
|
901
|
+
}: react0.ComponentProps<"th">): react_jsx_runtime18.JSX.Element;
|
|
955
902
|
declare function TableCell({
|
|
956
903
|
className,
|
|
957
904
|
...props
|
|
958
|
-
}: react0.ComponentProps<"td">):
|
|
905
|
+
}: react0.ComponentProps<"td">): react_jsx_runtime18.JSX.Element;
|
|
959
906
|
declare function TableCaption({
|
|
960
907
|
className,
|
|
961
908
|
...props
|
|
962
|
-
}: react0.ComponentProps<"caption">):
|
|
909
|
+
}: react0.ComponentProps<"caption">): react_jsx_runtime18.JSX.Element;
|
|
963
910
|
//#endregion
|
|
964
911
|
//#region src/components/ui/tabs.d.ts
|
|
965
912
|
type TabsVariant = "default" | "underline";
|
|
966
913
|
declare function Tabs({
|
|
967
914
|
className,
|
|
968
915
|
...props
|
|
969
|
-
}: Tabs$1.Root.Props):
|
|
916
|
+
}: Tabs$1.Root.Props): react_jsx_runtime18.JSX.Element;
|
|
970
917
|
declare function TabsList({
|
|
971
918
|
variant,
|
|
972
919
|
className,
|
|
@@ -974,19 +921,19 @@ declare function TabsList({
|
|
|
974
921
|
...props
|
|
975
922
|
}: Tabs$1.List.Props & {
|
|
976
923
|
variant?: TabsVariant;
|
|
977
|
-
}):
|
|
924
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
978
925
|
declare function TabsTab({
|
|
979
926
|
className,
|
|
980
927
|
...props
|
|
981
|
-
}: Tabs$1.Tab.Props):
|
|
928
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime18.JSX.Element;
|
|
982
929
|
declare function TabsPanel({
|
|
983
930
|
className,
|
|
984
931
|
...props
|
|
985
|
-
}: Tabs$1.Panel.Props):
|
|
932
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime18.JSX.Element;
|
|
986
933
|
//#endregion
|
|
987
934
|
//#region src/components/ui/toast.d.ts
|
|
988
|
-
declare const toastManager:
|
|
989
|
-
declare const anchoredToastManager:
|
|
935
|
+
declare const toastManager: _base_ui_react0.ToastManager;
|
|
936
|
+
declare const anchoredToastManager: _base_ui_react0.ToastManager;
|
|
990
937
|
type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
|
|
991
938
|
interface ToastProviderProps extends Toast.Provider.Props {
|
|
992
939
|
position?: ToastPosition;
|
|
@@ -995,11 +942,11 @@ declare function ToastProvider({
|
|
|
995
942
|
children,
|
|
996
943
|
position,
|
|
997
944
|
...props
|
|
998
|
-
}: ToastProviderProps):
|
|
945
|
+
}: ToastProviderProps): react_jsx_runtime18.JSX.Element;
|
|
999
946
|
declare function AnchoredToastProvider({
|
|
1000
947
|
children,
|
|
1001
948
|
...props
|
|
1002
|
-
}: Toast.Provider.Props):
|
|
949
|
+
}: Toast.Provider.Props): react_jsx_runtime18.JSX.Element;
|
|
1003
950
|
//#endregion
|
|
1004
951
|
//#region src/components/ui/tooltip.d.ts
|
|
1005
952
|
declare const cssAnimationPresets: {
|
|
@@ -1050,13 +997,13 @@ interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
|
|
|
1050
997
|
declare function TooltipProvider({
|
|
1051
998
|
delay,
|
|
1052
999
|
...props
|
|
1053
|
-
}: TooltipProviderProps):
|
|
1000
|
+
}: TooltipProviderProps): react_jsx_runtime18.JSX.Element;
|
|
1054
1001
|
interface TooltipProps extends Tooltip$1.Root.Props {}
|
|
1055
1002
|
declare function Tooltip({
|
|
1056
1003
|
...props
|
|
1057
|
-
}: TooltipProps):
|
|
1004
|
+
}: TooltipProps): react_jsx_runtime18.JSX.Element;
|
|
1058
1005
|
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
1059
|
-
declare function TooltipTrigger(props: TooltipTriggerProps):
|
|
1006
|
+
declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime18.JSX.Element;
|
|
1060
1007
|
interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
|
|
1061
1008
|
interface TooltipPopupProps extends Tooltip$1.Popup.Props, Pick<TooltipPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
|
|
1062
1009
|
animationPreset?: CSSAnimationPresets;
|
|
@@ -1075,7 +1022,7 @@ declare function TooltipPopup({
|
|
|
1075
1022
|
align,
|
|
1076
1023
|
alignOffset,
|
|
1077
1024
|
...rest
|
|
1078
|
-
}: TooltipPopupProps):
|
|
1025
|
+
}: TooltipPopupProps): react_jsx_runtime18.JSX.Element;
|
|
1079
1026
|
//#endregion
|
|
1080
1027
|
//#region src/utils/animation.d.ts
|
|
1081
1028
|
type AnimationTraitProps = {
|
|
@@ -1250,5 +1197,5 @@ type OptimizedImageAttrs = {
|
|
|
1250
1197
|
*/
|
|
1251
1198
|
declare function useOptimizedImage(src: string | undefined): OptimizedImageAttrs | null;
|
|
1252
1199
|
//#endregion
|
|
1253
|
-
export { Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger, AnchoredToastProvider, AnimationTraitProps, Button, Checkbox, type CheckboxLayout, Dialog,
|
|
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, MenuLabel, MenuPopup, 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 };
|
|
1254
1201
|
//# sourceMappingURL=index.d.ts.map
|