@ckc-net/puck-extended 0.1.8 → 0.1.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react0 from "react";
2
2
  import React$1 from "react";
3
- import * as react_jsx_runtime82 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime17 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
- }) => react_jsx_runtime82.JSX.Element;
40
+ }) => react_jsx_runtime17.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
- }): react_jsx_runtime82.JSX.Element;
54
+ }): react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
63
+ }) => react_jsx_runtime17.JSX.Element;
64
64
  Label: ({
65
65
  label
66
66
  }: {
67
67
  label: string;
68
- }) => react_jsx_runtime82.JSX.Element;
68
+ }) => react_jsx_runtime17.JSX.Element;
69
69
  Group: ({
70
70
  children
71
71
  }: {
72
72
  children: react0.ReactNode;
73
- }) => react_jsx_runtime82.JSX.Element;
74
- Separator: () => react_jsx_runtime82.JSX.Element;
73
+ }) => react_jsx_runtime17.JSX.Element;
74
+ Separator: () => react_jsx_runtime17.JSX.Element;
75
75
  };
76
76
  drawer: ({
77
77
  children
78
78
  }: {
79
79
  children: React.ReactNode;
80
- }) => react_jsx_runtime82.JSX.Element;
80
+ }) => react_jsx_runtime17.JSX.Element;
81
81
  drawerItem: ({
82
82
  name,
83
83
  icon
84
84
  }: {
85
85
  name: string;
86
86
  icon?: React.ReactNode;
87
- }) => react_jsx_runtime82.JSX.Element;
87
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
97
+ }) => react_jsx_runtime17.JSX.Element;
98
98
  fieldLabel: ({
99
99
  children,
100
100
  label
101
101
  }: {
102
102
  children: React.ReactNode;
103
103
  label: string;
104
- }) => react_jsx_runtime82.JSX.Element;
104
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element | null;
123
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
136
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element | null;
154
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
167
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
180
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
193
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
205
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
220
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
235
+ }) => react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element;
250
+ }) => react_jsx_runtime17.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): react_jsx_runtime82.JSX.Element;
264
+ }: RadioGroupProps): react_jsx_runtime17.JSX.Element;
257
265
  declare function RadioGroupItem({
258
266
  className,
259
267
  layout,
260
268
  ...props
261
- }: RadioGroupItemProps): react_jsx_runtime82.JSX.Element;
269
+ }: RadioGroupItemProps): react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element | null;
290
+ }) => react_jsx_runtime17.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): react_jsx_runtime82.JSX.Element;
301
+ }: CheckboxProps$1): react_jsx_runtime17.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
- }) => react_jsx_runtime82.JSX.Element | null;
322
+ }) => react_jsx_runtime17.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) => react_jsx_runtime82.JSX.Element;
346
+ }: MediaPickerProps) => react_jsx_runtime17.JSX.Element;
339
347
  declare const getMediaUrl: (value?: MediaPickerValue) => string | undefined;
340
348
  //#endregion
341
349
  //#region src/components/PagePicker/index.d.ts
@@ -358,7 +366,7 @@ type PagePickerProps = {
358
366
  declare const PagePicker: ({
359
367
  value,
360
368
  onChange
361
- }: PagePickerProps) => react_jsx_runtime82.JSX.Element;
369
+ }: PagePickerProps) => react_jsx_runtime17.JSX.Element;
362
370
  declare const getPageUrl: (value?: PagePickerValue) => string | undefined;
363
371
  //#endregion
364
372
  //#region src/components/ui/accordion.d.ts
@@ -420,19 +428,19 @@ declare function Accordion({
420
428
  className,
421
429
  multiple,
422
430
  ...props
423
- }: AccordionProps): react_jsx_runtime82.JSX.Element;
431
+ }: AccordionProps): react_jsx_runtime17.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): react_jsx_runtime82.JSX.Element;
438
+ }: AccordionItemProps): react_jsx_runtime17.JSX.Element;
431
439
  interface AccordionHeaderProps extends Accordion$1.Header.Props {}
432
440
  declare function AccordionHeader({
433
441
  className,
434
442
  ...props
435
- }: AccordionHeaderProps): react_jsx_runtime82.JSX.Element;
443
+ }: AccordionHeaderProps): react_jsx_runtime17.JSX.Element;
436
444
  interface AccordionTriggerProps extends Accordion$1.Trigger.Props {
437
445
  icon?: (props: {
438
446
  open: boolean;
@@ -443,18 +451,18 @@ declare function AccordionTrigger({
443
451
  icon,
444
452
  children,
445
453
  ...props
446
- }: AccordionTriggerProps): react_jsx_runtime82.JSX.Element;
454
+ }: AccordionTriggerProps): react_jsx_runtime17.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): react_jsx_runtime82.JSX.Element;
461
+ }: AccordionPanelProps): react_jsx_runtime17.JSX.Element;
454
462
  //#endregion
455
463
  //#region src/components/ui/button.d.ts
456
464
  declare const buttonVariants: (props?: ({
457
- size?: "default" | "icon" | "icon-lg" | "icon-sm" | "icon-xl" | "icon-xs" | "lg" | "sm" | "xl" | "xs" | null | undefined;
465
+ size?: "icon" | "default" | "icon-lg" | "icon-sm" | "icon-xl" | "icon-xs" | "lg" | "sm" | "xl" | "xs" | null | undefined;
458
466
  variant?: "default" | "destructive" | "destructive-outline" | "ghost" | "link" | "outline" | "primary" | "secondary" | null | undefined;
459
467
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
460
468
  interface ButtonProps extends useRender.ComponentProps<"button"> {
@@ -520,22 +528,22 @@ interface DialogProps<TPayload = unknown> extends Dialog$1.Root.Props<TPayload>
520
528
  declare function Dialog<TPayload = unknown>({
521
529
  modal,
522
530
  ...props
523
- }: DialogProps<TPayload>): react_jsx_runtime82.JSX.Element;
531
+ }: DialogProps<TPayload>): react_jsx_runtime17.JSX.Element;
524
532
  interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
525
533
  declare function DialogTrigger({
526
534
  ...props
527
- }: DialogTriggerProps): react_jsx_runtime82.JSX.Element;
535
+ }: DialogTriggerProps): react_jsx_runtime17.JSX.Element;
528
536
  interface DialogViewportProps extends Dialog$1.Viewport.Props {}
529
537
  declare function DialogViewport({
530
538
  ...props
531
- }: DialogViewportProps): react_jsx_runtime82.JSX.Element;
539
+ }: DialogViewportProps): react_jsx_runtime17.JSX.Element;
532
540
  interface DialogPortalProps extends Dialog$1.Portal.Props {}
533
- declare function DialogPortal(props: DialogPortalProps): react_jsx_runtime82.JSX.Element;
541
+ declare function DialogPortal(props: DialogPortalProps): react_jsx_runtime17.JSX.Element;
534
542
  interface DialogBackdropProps extends Dialog$1.Backdrop.Props {}
535
543
  declare function DialogBackdrop({
536
544
  className,
537
545
  ...props
538
- }: DialogBackdropProps): react_jsx_runtime82.JSX.Element;
546
+ }: DialogBackdropProps): react_jsx_runtime17.JSX.Element;
539
547
  interface DialogPopupProps extends Dialog$1.Popup.Props {
540
548
  animationPreset?: CSSAnimationPresets$3;
541
549
  transitionPreset?: CSSTransitionPresets$3;
@@ -550,25 +558,25 @@ declare function DialogPopup({
550
558
  reduceMotion,
551
559
  showCloseButton,
552
560
  ...rest
553
- }: DialogPopupProps): react_jsx_runtime82.JSX.Element;
561
+ }: DialogPopupProps): react_jsx_runtime17.JSX.Element;
554
562
  declare function DialogHeader({
555
563
  className,
556
564
  ...props
557
- }: React.ComponentProps<"div">): react_jsx_runtime82.JSX.Element;
565
+ }: React.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
558
566
  declare function DialogFooter({
559
567
  className,
560
568
  ...props
561
- }: React.ComponentProps<"div">): react_jsx_runtime82.JSX.Element;
569
+ }: React.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
562
570
  declare function DialogTitle({
563
571
  className,
564
572
  ...props
565
- }: Dialog$1.Title.Props): react_jsx_runtime82.JSX.Element;
573
+ }: Dialog$1.Title.Props): react_jsx_runtime17.JSX.Element;
566
574
  declare function DialogDescription({
567
575
  className,
568
576
  ...props
569
- }: Dialog$1.Description.Props): react_jsx_runtime82.JSX.Element;
577
+ }: Dialog$1.Description.Props): react_jsx_runtime17.JSX.Element;
570
578
  interface DialogCloseProps extends Dialog$1.Close.Props {}
571
- declare function DialogClose(props: DialogCloseProps): react_jsx_runtime82.JSX.Element;
579
+ declare function DialogClose(props: DialogCloseProps): react_jsx_runtime17.JSX.Element;
572
580
  //#endregion
573
581
  //#region src/components/ui/input.d.ts
574
582
  type InputProps = Omit<Input$1.Props & react0.RefAttributes<HTMLInputElement>, "size"> & {
@@ -582,7 +590,7 @@ declare function Input({
582
590
  unstyled,
583
591
  nativeInput,
584
592
  ...props
585
- }: InputProps): react_jsx_runtime82.JSX.Element;
593
+ }: InputProps): react_jsx_runtime17.JSX.Element;
586
594
  //#endregion
587
595
  //#region src/components/ui/textarea.d.ts
588
596
  type TextareaProps = react0.ComponentProps<"textarea"> & {
@@ -594,13 +602,13 @@ declare function Textarea({
594
602
  size,
595
603
  unstyled,
596
604
  ...props
597
- }: TextareaProps): react_jsx_runtime82.JSX.Element;
605
+ }: TextareaProps): react_jsx_runtime17.JSX.Element;
598
606
  //#endregion
599
607
  //#region src/components/ui/input-group.d.ts
600
608
  declare function InputGroup({
601
609
  className,
602
610
  ...props
603
- }: react0.ComponentProps<"div">): react_jsx_runtime82.JSX.Element;
611
+ }: react0.ComponentProps<"div">): react_jsx_runtime17.JSX.Element;
604
612
  declare const inputGroupAddonVariants: (props?: ({
605
613
  align?: "inline-start" | "block-end" | "block-start" | "inline-end" | null | undefined;
606
614
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
@@ -608,19 +616,19 @@ declare function InputGroupAddon({
608
616
  className,
609
617
  align,
610
618
  ...props
611
- }: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime82.JSX.Element;
619
+ }: react0.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime17.JSX.Element;
612
620
  declare function InputGroupText({
613
621
  className,
614
622
  ...props
615
- }: react0.ComponentProps<"span">): react_jsx_runtime82.JSX.Element;
623
+ }: react0.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
616
624
  declare function InputGroupInput({
617
625
  className,
618
626
  ...props
619
- }: InputProps): react_jsx_runtime82.JSX.Element;
627
+ }: InputProps): react_jsx_runtime17.JSX.Element;
620
628
  declare function InputGroupTextarea({
621
629
  className,
622
630
  ...props
623
- }: TextareaProps): react_jsx_runtime82.JSX.Element;
631
+ }: TextareaProps): react_jsx_runtime17.JSX.Element;
624
632
  //#endregion
625
633
  //#region src/components/ui/menu.d.ts
626
634
  declare const cssAnimationPresets$2: {
@@ -673,11 +681,11 @@ interface MenuProps extends Menu$1.Root.Props {
673
681
  declare function Menu({
674
682
  backdrop,
675
683
  ...props
676
- }: MenuProps): react_jsx_runtime82.JSX.Element;
684
+ }: MenuProps): react_jsx_runtime17.JSX.Element;
677
685
  interface MenuTriggerProps extends Menu$1.Trigger.Props {}
678
686
  declare function MenuTrigger({
679
687
  ...props
680
- }: MenuTriggerProps): react_jsx_runtime82.JSX.Element;
688
+ }: MenuTriggerProps): react_jsx_runtime17.JSX.Element;
681
689
  interface MenuPositionerProps extends Menu$1.Positioner.Props {}
682
690
  interface MenuPopupProps extends Menu$1.Popup.Props, Pick<MenuPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
683
691
  animationPreset?: CSSAnimationPresets$2;
@@ -697,58 +705,58 @@ declare function MenuPopup({
697
705
  alignOffset,
698
706
  children,
699
707
  ...rest
700
- }: MenuPopupProps): react_jsx_runtime82.JSX.Element;
708
+ }: MenuPopupProps): react_jsx_runtime17.JSX.Element;
701
709
  interface MenuGroupProps extends Menu$1.Group.Props {}
702
- declare function MenuGroup(props: MenuGroupProps): react_jsx_runtime82.JSX.Element;
710
+ declare function MenuGroup(props: MenuGroupProps): react_jsx_runtime17.JSX.Element;
703
711
  interface MenuGroupLabelProps extends Menu$1.GroupLabel.Props {}
704
712
  declare function MenuGroupLabel({
705
713
  className,
706
714
  ...rest
707
- }: MenuGroupLabelProps): react_jsx_runtime82.JSX.Element;
715
+ }: MenuGroupLabelProps): react_jsx_runtime17.JSX.Element;
708
716
  declare function MenuLabel({
709
717
  className,
710
718
  ...props
711
- }: React.ComponentProps<"span">): react_jsx_runtime82.JSX.Element;
719
+ }: React.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
712
720
  interface MenuItemProps extends Menu$1.Item.Props {}
713
721
  declare function MenuItem({
714
722
  className,
715
723
  ...rest
716
- }: MenuItemProps): react_jsx_runtime82.JSX.Element;
724
+ }: MenuItemProps): react_jsx_runtime17.JSX.Element;
717
725
  declare function MenuSeparator({
718
726
  className,
719
727
  ...props
720
- }: Menu$1.Separator.Props): react_jsx_runtime82.JSX.Element;
728
+ }: Menu$1.Separator.Props): react_jsx_runtime17.JSX.Element;
721
729
  interface MenuCheckboxItemProps extends Menu$1.CheckboxItem.Props {}
722
730
  declare function MenuCheckboxItem({
723
731
  className,
724
732
  children,
725
733
  ...rest
726
- }: MenuCheckboxItemProps): react_jsx_runtime82.JSX.Element;
734
+ }: MenuCheckboxItemProps): react_jsx_runtime17.JSX.Element;
727
735
  interface MenuRadioGroupProps extends Menu$1.RadioGroup.Props {
728
736
  activeIcon?: React.ReactNode;
729
737
  }
730
738
  declare function MenuRadioGroup({
731
739
  activeIcon,
732
740
  ...props
733
- }: MenuRadioGroupProps): react_jsx_runtime82.JSX.Element;
741
+ }: MenuRadioGroupProps): react_jsx_runtime17.JSX.Element;
734
742
  declare function MenuRadioItem({
735
743
  className,
736
744
  children,
737
745
  value,
738
746
  ...props
739
- }: Menu$1.RadioItem.Props): react_jsx_runtime82.JSX.Element;
747
+ }: Menu$1.RadioItem.Props): react_jsx_runtime17.JSX.Element;
740
748
  declare function MenuShortcut({
741
749
  className,
742
750
  ...props
743
- }: React.ComponentProps<"span">): react_jsx_runtime82.JSX.Element;
751
+ }: React.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
744
752
  interface MenuSubProps extends Menu$1.SubmenuRoot.Props {}
745
- declare function MenuSub(props: MenuSubProps): react_jsx_runtime82.JSX.Element;
753
+ declare function MenuSub(props: MenuSubProps): react_jsx_runtime17.JSX.Element;
746
754
  interface MenuSubTriggerProps extends Menu$1.SubmenuTrigger.Props {}
747
755
  declare function MenuSubTrigger({
748
756
  className,
749
757
  children,
750
758
  ...rest
751
- }: MenuSubTriggerProps): react_jsx_runtime82.JSX.Element;
759
+ }: MenuSubTriggerProps): react_jsx_runtime17.JSX.Element;
752
760
  interface MenuSubPopupProps extends Menu$1.Popup.Props, Pick<MenuPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {}
753
761
  declare function MenuSubPopup({
754
762
  className,
@@ -758,20 +766,20 @@ declare function MenuSubPopup({
758
766
  align,
759
767
  alignOffset,
760
768
  ...rest
761
- }: MenuSubPopupProps): react_jsx_runtime82.JSX.Element;
769
+ }: MenuSubPopupProps): react_jsx_runtime17.JSX.Element;
762
770
  //#endregion
763
771
  //#region src/components/ui/pagination.d.ts
764
772
  declare function Pagination({
765
773
  className,
766
774
  ...props
767
- }: react0.ComponentProps<"nav">): react_jsx_runtime82.JSX.Element;
775
+ }: react0.ComponentProps<"nav">): react_jsx_runtime17.JSX.Element;
768
776
  declare function PaginationContent({
769
777
  className,
770
778
  ...props
771
- }: react0.ComponentProps<"ul">): react_jsx_runtime82.JSX.Element;
779
+ }: react0.ComponentProps<"ul">): react_jsx_runtime17.JSX.Element;
772
780
  declare function PaginationItem({
773
781
  ...props
774
- }: react0.ComponentProps<"li">): react_jsx_runtime82.JSX.Element;
782
+ }: react0.ComponentProps<"li">): react_jsx_runtime17.JSX.Element;
775
783
  type PaginationLinkProps = {
776
784
  isActive?: boolean;
777
785
  } & Pick<react0.ComponentProps<typeof Button>, "size"> & react0.ComponentProps<"a">;
@@ -780,19 +788,19 @@ declare function PaginationLink({
780
788
  isActive,
781
789
  size,
782
790
  ...props
783
- }: PaginationLinkProps): react_jsx_runtime82.JSX.Element;
791
+ }: PaginationLinkProps): react_jsx_runtime17.JSX.Element;
784
792
  declare function PaginationPrevious({
785
793
  className,
786
794
  ...props
787
- }: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime82.JSX.Element;
795
+ }: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
788
796
  declare function PaginationNext({
789
797
  className,
790
798
  ...props
791
- }: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime82.JSX.Element;
799
+ }: react0.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
792
800
  declare function PaginationEllipsis({
793
801
  className,
794
802
  ...props
795
- }: react0.ComponentProps<"span">): react_jsx_runtime82.JSX.Element;
803
+ }: react0.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
796
804
  //#endregion
797
805
  //#region src/components/ui/select.d.ts
798
806
  declare const cssAnimationPresets$1: {
@@ -845,12 +853,12 @@ interface SelectRootProps extends React.ComponentProps<typeof Select$1.Root> {
845
853
  declare function Select({
846
854
  backdrop,
847
855
  ...props
848
- }: SelectRootProps): react_jsx_runtime82.JSX.Element;
856
+ }: SelectRootProps): react_jsx_runtime17.JSX.Element;
849
857
  interface SelectTriggerProps extends React.ComponentProps<typeof Select$1.Trigger> {}
850
858
  declare function SelectTrigger({
851
859
  className,
852
860
  ...props
853
- }: SelectTriggerProps): react_jsx_runtime82.JSX.Element;
861
+ }: SelectTriggerProps): react_jsx_runtime17.JSX.Element;
854
862
  interface SelectValueProps extends React.ComponentProps<typeof Select$1.Value> {
855
863
  placeholder?: string;
856
864
  }
@@ -858,12 +866,12 @@ declare function SelectValue({
858
866
  className,
859
867
  placeholder,
860
868
  ...props
861
- }: SelectValueProps): react_jsx_runtime82.JSX.Element;
869
+ }: SelectValueProps): react_jsx_runtime17.JSX.Element;
862
870
  interface SelectIconProps extends React.ComponentProps<typeof Select$1.Icon> {}
863
871
  declare function SelectIcon({
864
872
  className,
865
873
  ...props
866
- }: SelectIconProps): react_jsx_runtime82.JSX.Element;
874
+ }: SelectIconProps): react_jsx_runtime17.JSX.Element;
867
875
  interface SelectPositionerProps extends React.ComponentProps<typeof Select$1.Positioner> {}
868
876
  interface SelectPopupProps extends React.ComponentProps<typeof Select$1.Popup>, Pick<SelectPositionerProps, "side" | "sideOffset" | "align" | "alignOffset" | "alignItemWithTrigger"> {
869
877
  animationPreset?: CSSAnimationPresets$1;
@@ -884,89 +892,89 @@ declare function SelectPopup({
884
892
  alignItemWithTrigger,
885
893
  children,
886
894
  ...rest
887
- }: SelectPopupProps): react_jsx_runtime82.JSX.Element;
895
+ }: SelectPopupProps): react_jsx_runtime17.JSX.Element;
888
896
  interface SelectListProps extends React.ComponentProps<typeof Select$1.List> {}
889
897
  declare function SelectList({
890
898
  className,
891
899
  ...props
892
- }: SelectListProps): react_jsx_runtime82.JSX.Element;
900
+ }: SelectListProps): react_jsx_runtime17.JSX.Element;
893
901
  interface SelectItemProps extends React.ComponentProps<typeof Select$1.Item> {}
894
902
  declare function SelectItem({
895
903
  className,
896
904
  ...props
897
- }: SelectItemProps): react_jsx_runtime82.JSX.Element;
905
+ }: SelectItemProps): react_jsx_runtime17.JSX.Element;
898
906
  interface SelectItemTextProps extends React.ComponentProps<typeof Select$1.ItemText> {}
899
907
  declare function SelectItemText({
900
908
  className,
901
909
  ...props
902
- }: SelectItemTextProps): react_jsx_runtime82.JSX.Element;
910
+ }: SelectItemTextProps): react_jsx_runtime17.JSX.Element;
903
911
  interface SelectItemIndicatorProps extends React.ComponentProps<typeof Select$1.ItemIndicator> {}
904
912
  declare function SelectItemIndicator({
905
913
  className,
906
914
  ...props
907
- }: SelectItemIndicatorProps): react_jsx_runtime82.JSX.Element;
915
+ }: SelectItemIndicatorProps): react_jsx_runtime17.JSX.Element;
908
916
  interface SelectGroupProps extends React.ComponentProps<typeof Select$1.Group> {}
909
917
  declare function SelectGroup({
910
918
  ...props
911
- }: SelectGroupProps): react_jsx_runtime82.JSX.Element;
919
+ }: SelectGroupProps): react_jsx_runtime17.JSX.Element;
912
920
  interface SelectGroupLabelProps extends React.ComponentProps<typeof Select$1.GroupLabel> {}
913
921
  declare function SelectGroupLabel({
914
922
  ...props
915
- }: SelectGroupLabelProps): react_jsx_runtime82.JSX.Element;
916
- declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime82.JSX.Element;
917
- declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime82.JSX.Element;
923
+ }: SelectGroupLabelProps): react_jsx_runtime17.JSX.Element;
924
+ declare function SelectScrollUpArrow(props: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime17.JSX.Element;
925
+ declare function SelectScrollDownArrow(props: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime17.JSX.Element;
918
926
  interface SelectSeparatorProps extends React.ComponentProps<typeof Select$1.Separator> {}
919
927
  declare function SelectSeparator({
920
928
  ...props
921
- }: SelectSeparatorProps): react_jsx_runtime82.JSX.Element;
929
+ }: SelectSeparatorProps): react_jsx_runtime17.JSX.Element;
922
930
  //#endregion
923
931
  //#region src/components/ui/separator.d.ts
924
932
  declare function Separator({
925
933
  className,
926
934
  orientation,
927
935
  ...props
928
- }: Separator$1.Props): react_jsx_runtime82.JSX.Element;
936
+ }: Separator$1.Props): react_jsx_runtime17.JSX.Element;
929
937
  //#endregion
930
938
  //#region src/components/ui/table.d.ts
931
939
  declare function Table({
932
940
  className,
933
941
  ...props
934
- }: react0.ComponentProps<"table">): react_jsx_runtime82.JSX.Element;
942
+ }: react0.ComponentProps<"table">): react_jsx_runtime17.JSX.Element;
935
943
  declare function TableHeader({
936
944
  className,
937
945
  ...props
938
- }: react0.ComponentProps<"thead">): react_jsx_runtime82.JSX.Element;
946
+ }: react0.ComponentProps<"thead">): react_jsx_runtime17.JSX.Element;
939
947
  declare function TableBody({
940
948
  className,
941
949
  ...props
942
- }: react0.ComponentProps<"tbody">): react_jsx_runtime82.JSX.Element;
950
+ }: react0.ComponentProps<"tbody">): react_jsx_runtime17.JSX.Element;
943
951
  declare function TableFooter({
944
952
  className,
945
953
  ...props
946
- }: react0.ComponentProps<"tfoot">): react_jsx_runtime82.JSX.Element;
954
+ }: react0.ComponentProps<"tfoot">): react_jsx_runtime17.JSX.Element;
947
955
  declare function TableRow({
948
956
  className,
949
957
  ...props
950
- }: react0.ComponentProps<"tr">): react_jsx_runtime82.JSX.Element;
958
+ }: react0.ComponentProps<"tr">): react_jsx_runtime17.JSX.Element;
951
959
  declare function TableHead({
952
960
  className,
953
961
  ...props
954
- }: react0.ComponentProps<"th">): react_jsx_runtime82.JSX.Element;
962
+ }: react0.ComponentProps<"th">): react_jsx_runtime17.JSX.Element;
955
963
  declare function TableCell({
956
964
  className,
957
965
  ...props
958
- }: react0.ComponentProps<"td">): react_jsx_runtime82.JSX.Element;
966
+ }: react0.ComponentProps<"td">): react_jsx_runtime17.JSX.Element;
959
967
  declare function TableCaption({
960
968
  className,
961
969
  ...props
962
- }: react0.ComponentProps<"caption">): react_jsx_runtime82.JSX.Element;
970
+ }: react0.ComponentProps<"caption">): react_jsx_runtime17.JSX.Element;
963
971
  //#endregion
964
972
  //#region src/components/ui/tabs.d.ts
965
973
  type TabsVariant = "default" | "underline";
966
974
  declare function Tabs({
967
975
  className,
968
976
  ...props
969
- }: Tabs$1.Root.Props): react_jsx_runtime82.JSX.Element;
977
+ }: Tabs$1.Root.Props): react_jsx_runtime17.JSX.Element;
970
978
  declare function TabsList({
971
979
  variant,
972
980
  className,
@@ -974,19 +982,19 @@ declare function TabsList({
974
982
  ...props
975
983
  }: Tabs$1.List.Props & {
976
984
  variant?: TabsVariant;
977
- }): react_jsx_runtime82.JSX.Element;
985
+ }): react_jsx_runtime17.JSX.Element;
978
986
  declare function TabsTab({
979
987
  className,
980
988
  ...props
981
- }: Tabs$1.Tab.Props): react_jsx_runtime82.JSX.Element;
989
+ }: Tabs$1.Tab.Props): react_jsx_runtime17.JSX.Element;
982
990
  declare function TabsPanel({
983
991
  className,
984
992
  ...props
985
- }: Tabs$1.Panel.Props): react_jsx_runtime82.JSX.Element;
993
+ }: Tabs$1.Panel.Props): react_jsx_runtime17.JSX.Element;
986
994
  //#endregion
987
995
  //#region src/components/ui/toast.d.ts
988
- declare const toastManager: _base_ui_react_toast0.ToastManager;
989
- declare const anchoredToastManager: _base_ui_react_toast0.ToastManager;
996
+ declare const toastManager: _base_ui_react0.ToastManager;
997
+ declare const anchoredToastManager: _base_ui_react0.ToastManager;
990
998
  type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
991
999
  interface ToastProviderProps extends Toast.Provider.Props {
992
1000
  position?: ToastPosition;
@@ -995,11 +1003,11 @@ declare function ToastProvider({
995
1003
  children,
996
1004
  position,
997
1005
  ...props
998
- }: ToastProviderProps): react_jsx_runtime82.JSX.Element;
1006
+ }: ToastProviderProps): react_jsx_runtime17.JSX.Element;
999
1007
  declare function AnchoredToastProvider({
1000
1008
  children,
1001
1009
  ...props
1002
- }: Toast.Provider.Props): react_jsx_runtime82.JSX.Element;
1010
+ }: Toast.Provider.Props): react_jsx_runtime17.JSX.Element;
1003
1011
  //#endregion
1004
1012
  //#region src/components/ui/tooltip.d.ts
1005
1013
  declare const cssAnimationPresets: {
@@ -1050,13 +1058,13 @@ interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
1050
1058
  declare function TooltipProvider({
1051
1059
  delay,
1052
1060
  ...props
1053
- }: TooltipProviderProps): react_jsx_runtime82.JSX.Element;
1061
+ }: TooltipProviderProps): react_jsx_runtime17.JSX.Element;
1054
1062
  interface TooltipProps extends Tooltip$1.Root.Props {}
1055
1063
  declare function Tooltip({
1056
1064
  ...props
1057
- }: TooltipProps): react_jsx_runtime82.JSX.Element;
1065
+ }: TooltipProps): react_jsx_runtime17.JSX.Element;
1058
1066
  interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
1059
- declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime82.JSX.Element;
1067
+ declare function TooltipTrigger(props: TooltipTriggerProps): react_jsx_runtime17.JSX.Element;
1060
1068
  interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
1061
1069
  interface TooltipPopupProps extends Tooltip$1.Popup.Props, Pick<TooltipPositionerProps, "side" | "sideOffset" | "align" | "alignOffset"> {
1062
1070
  animationPreset?: CSSAnimationPresets;
@@ -1075,7 +1083,7 @@ declare function TooltipPopup({
1075
1083
  align,
1076
1084
  alignOffset,
1077
1085
  ...rest
1078
- }: TooltipPopupProps): react_jsx_runtime82.JSX.Element;
1086
+ }: TooltipPopupProps): react_jsx_runtime17.JSX.Element;
1079
1087
  //#endregion
1080
1088
  //#region src/utils/animation.d.ts
1081
1089
  type AnimationTraitProps = {