@lglab/compose-ui 0.37.0 → 0.38.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.
Files changed (78) hide show
  1. package/dist/accordion.d.ts +6 -6
  2. package/dist/alert-dialog.d.ts +10 -10
  3. package/dist/alert-dialog.d.ts.map +1 -1
  4. package/dist/alert.d.ts +8 -8
  5. package/dist/alert.d.ts.map +1 -1
  6. package/dist/autocomplete.d.ts +13 -13
  7. package/dist/avatar.d.ts +5 -5
  8. package/dist/avatar.d.ts.map +1 -1
  9. package/dist/badge.d.ts +4 -4
  10. package/dist/breadcrumb.d.ts +6 -6
  11. package/dist/breadcrumb.d.ts.map +1 -1
  12. package/dist/button.d.ts +2 -2
  13. package/dist/button.d.ts.map +1 -1
  14. package/dist/calendar.d.ts +2 -2
  15. package/dist/card.d.ts +8 -8
  16. package/dist/card.d.ts.map +1 -1
  17. package/dist/checkbox-group.d.ts +2 -2
  18. package/dist/checkbox-group.d.ts.map +1 -1
  19. package/dist/checkbox.d.ts +3 -3
  20. package/dist/checkbox.d.ts.map +1 -1
  21. package/dist/collapsible.d.ts +4 -4
  22. package/dist/combobox.d.ts +25 -25
  23. package/dist/components/chart/legend.d.ts +2 -2
  24. package/dist/components/chart/tooltip.d.ts +2 -2
  25. package/dist/components/table/primitives.d.ts +9 -9
  26. package/dist/context-menu.d.ts +20 -20
  27. package/dist/dialog.d.ts +11 -11
  28. package/dist/drawer.d.ts +12 -12
  29. package/dist/empty.d.ts +7 -7
  30. package/dist/field.d.ts +8 -8
  31. package/dist/field.d.ts.map +1 -1
  32. package/dist/fieldset.d.ts +3 -3
  33. package/dist/fieldset.d.ts.map +1 -1
  34. package/dist/form.d.ts +2 -2
  35. package/dist/form.d.ts.map +1 -1
  36. package/dist/group.d.ts +3 -3
  37. package/dist/group.d.ts.map +1 -1
  38. package/dist/index.d.ts +2 -2
  39. package/dist/index.js +2 -2
  40. package/dist/input.d.ts +2 -2
  41. package/dist/input.d.ts.map +1 -1
  42. package/dist/menu.d.ts +20 -20
  43. package/dist/menu.d.ts.map +1 -1
  44. package/dist/menubar.d.ts +21 -21
  45. package/dist/menubar.d.ts.map +1 -1
  46. package/dist/meter.d.ts +6 -6
  47. package/dist/navigation-menu.d.ts +14 -14
  48. package/dist/navigation-menu.js +1 -1
  49. package/dist/navigation-menu.js.map +1 -1
  50. package/dist/number-field.d.ts +8 -8
  51. package/dist/pagination.d.ts +10 -10
  52. package/dist/popover.d.ts +12 -12
  53. package/dist/preview-card.d.ts +8 -8
  54. package/dist/progress.d.ts +30 -7
  55. package/dist/progress.d.ts.map +1 -1
  56. package/dist/progress.js +63 -3
  57. package/dist/progress.js.map +1 -1
  58. package/dist/radio-group.d.ts +2 -2
  59. package/dist/radio.d.ts +3 -3
  60. package/dist/scroll-area.d.ts +7 -7
  61. package/dist/scroll-area.d.ts.map +1 -1
  62. package/dist/scroll-area.js +1 -1
  63. package/dist/scroll-area.js.map +1 -1
  64. package/dist/select.d.ts +19 -19
  65. package/dist/select.d.ts.map +1 -1
  66. package/dist/separator.d.ts +2 -2
  67. package/dist/skeleton.d.ts +2 -2
  68. package/dist/slider.d.ts +7 -7
  69. package/dist/switch.d.ts +3 -3
  70. package/dist/tabs.d.ts +6 -6
  71. package/dist/textarea.d.ts +2 -2
  72. package/dist/timeline.d.ts +11 -11
  73. package/dist/toast.d.ts +10 -10
  74. package/dist/toggle-group.d.ts +3 -3
  75. package/dist/toggle.d.ts +2 -2
  76. package/dist/toolbar.d.ts +7 -7
  77. package/dist/tooltip.d.ts +8 -8
  78. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime281 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime209 from "react/jsx-runtime";
3
3
  import { Accordion } from "@base-ui/react/accordion";
4
4
 
5
5
  //#region src/components/accordion.d.ts
@@ -8,7 +8,7 @@ declare const AccordionRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: AccordionRootProps): react_jsx_runtime281.JSX.Element;
11
+ }: AccordionRootProps): react_jsx_runtime209.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type AccordionItemProps = React.ComponentProps<typeof Accordion.Item>;
@@ -16,7 +16,7 @@ declare const AccordionItem: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: AccordionItemProps): react_jsx_runtime281.JSX.Element;
19
+ }: AccordionItemProps): react_jsx_runtime209.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type AccordionHeaderProps = React.ComponentProps<typeof Accordion.Header>;
@@ -24,7 +24,7 @@ declare const AccordionHeader: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: AccordionHeaderProps): react_jsx_runtime281.JSX.Element;
27
+ }: AccordionHeaderProps): react_jsx_runtime209.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type AccordionTriggerProps = React.ComponentProps<typeof Accordion.Trigger>;
@@ -33,7 +33,7 @@ declare const AccordionTrigger: {
33
33
  className,
34
34
  children,
35
35
  ...props
36
- }: AccordionTriggerProps): react_jsx_runtime281.JSX.Element;
36
+ }: AccordionTriggerProps): react_jsx_runtime209.JSX.Element;
37
37
  displayName: string;
38
38
  };
39
39
  type AccordionPanelProps = React.ComponentProps<typeof Accordion.Panel>;
@@ -41,7 +41,7 @@ declare const AccordionPanel: {
41
41
  ({
42
42
  className,
43
43
  ...props
44
- }: AccordionPanelProps): react_jsx_runtime281.JSX.Element;
44
+ }: AccordionPanelProps): react_jsx_runtime209.JSX.Element;
45
45
  displayName: string;
46
46
  };
47
47
  //#endregion
@@ -1,12 +1,12 @@
1
1
  import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime305 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime14 from "react/jsx-runtime";
4
4
  import { AlertDialog, AlertDialog as AlertDialog$1 } from "@base-ui/react/alert-dialog";
5
5
 
6
6
  //#region src/components/alert-dialog.d.ts
7
7
  type AlertDialogRootProps = React.ComponentProps<typeof AlertDialog$1.Root>;
8
8
  declare const AlertDialogRoot: {
9
- (props: AlertDialogRootProps): react_jsx_runtime305.JSX.Element;
9
+ (props: AlertDialogRootProps): react_jsx_runtime14.JSX.Element;
10
10
  displayName: string;
11
11
  };
12
12
  type AlertDialogTriggerProps = React.ComponentProps<typeof AlertDialog$1.Trigger> & {
@@ -21,12 +21,12 @@ declare const AlertDialogTrigger: {
21
21
  variant,
22
22
  size,
23
23
  ...props
24
- }: AlertDialogTriggerProps): react_jsx_runtime305.JSX.Element;
24
+ }: AlertDialogTriggerProps): react_jsx_runtime14.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type AlertDialogPortalProps = React.ComponentProps<typeof AlertDialog$1.Portal>;
28
28
  declare const AlertDialogPortal: {
29
- (props: AlertDialogPortalProps): react_jsx_runtime305.JSX.Element;
29
+ (props: AlertDialogPortalProps): react_jsx_runtime14.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type AlertDialogBackdropProps = React.ComponentProps<typeof AlertDialog$1.Backdrop>;
@@ -34,7 +34,7 @@ declare const AlertDialogBackdrop: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: AlertDialogBackdropProps): react_jsx_runtime305.JSX.Element;
37
+ }: AlertDialogBackdropProps): react_jsx_runtime14.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type AlertDialogViewportProps = React.ComponentProps<typeof AlertDialog$1.Viewport>;
@@ -42,7 +42,7 @@ declare const AlertDialogViewport: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: AlertDialogViewportProps): react_jsx_runtime305.JSX.Element;
45
+ }: AlertDialogViewportProps): react_jsx_runtime14.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type AlertDialogPopupProps = React.ComponentProps<typeof AlertDialog$1.Popup> & {
@@ -54,7 +54,7 @@ declare const AlertDialogPopup: {
54
54
  className,
55
55
  size,
56
56
  ...props
57
- }: AlertDialogPopupProps): react_jsx_runtime305.JSX.Element;
57
+ }: AlertDialogPopupProps): react_jsx_runtime14.JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  type AlertDialogTitleProps = React.ComponentProps<typeof AlertDialog$1.Title>;
@@ -62,7 +62,7 @@ declare const AlertDialogTitle: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: AlertDialogTitleProps): react_jsx_runtime305.JSX.Element;
65
+ }: AlertDialogTitleProps): react_jsx_runtime14.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type AlertDialogDescriptionProps = React.ComponentProps<typeof AlertDialog$1.Description>;
@@ -70,7 +70,7 @@ declare const AlertDialogDescription: {
70
70
  ({
71
71
  className,
72
72
  ...props
73
- }: AlertDialogDescriptionProps): react_jsx_runtime305.JSX.Element;
73
+ }: AlertDialogDescriptionProps): react_jsx_runtime14.JSX.Element;
74
74
  displayName: string;
75
75
  };
76
76
  type AlertDialogCloseProps = React.ComponentProps<typeof AlertDialog$1.Close> & {
@@ -85,7 +85,7 @@ declare const AlertDialogClose: {
85
85
  variant,
86
86
  size,
87
87
  ...props
88
- }: AlertDialogCloseProps): react_jsx_runtime305.JSX.Element;
88
+ }: AlertDialogCloseProps): react_jsx_runtime14.JSX.Element;
89
89
  displayName: string;
90
90
  };
91
91
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"alert-dialog.d.ts","names":[],"sources":["../src/components/alert-dialog.tsx"],"sourcesContent":[],"mappings":";;;;;;KAiBK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,aAAA,CAAgB;cAElE;UAA0B,uBAAoB,oBAAA,CAAA,GAAA,CAAA;EAF/C,WAAA,EAAA,MAAA;CAAoB;KAYpB,uBAAA,GAA0B,KAAA,CAAM,cAZmC,CAAA,OAYb,aAAA,CAAgB,OAZH,CAAA,GAAA;;EAAxB,OAAA,CAAA,EAcpC,aAdoC;EAE1C;EAEL,IAAA,CAAA,EAYQ,UAZR;;cAeK,kBAjB8C,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAsBjD,uBAtBiD,CAAA,EAsB1B,oBAAA,CAAA,GAAA,CAAA,OAtB0B;EAU/C,WAAA,EAAA,MAAA;CAAuB;KA2BvB,sBAAA,GAAyB,KAAA,CAAM,cA3BuC,CAAA,OA2BjB,aAAA,CAAgB,MA3BC,CAAA;cA6BrE,iBA7B+B,EAAA;QAEzB,EA2BsB,sBA3BtB,CAAA,EA2B4C,oBAAA,CAAA,GAAA,CAAA,OA3B5C;aAEH,EAAA,MAAA;CAAU;AAAA,KAmCd,wBAAA,GAA2B,KAAA,CAAM,cApBrC,CAAA,OAoB2D,aAAA,CAAgB,QApB3E,CAAA;cAsBK,mBAtBL,EAAA;;;;KAsBqD,2BAAwB,oBAAA,CAAA,GAAA,CAAA;;;KAoBzE,wBAAA,GAA2B,KAAA,CAAM,cAjDnC,CAAA,OAiDyD,aAAA,CAAgB,QAjDzE,CAAA;cAmDG,mBAnDoB,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAmD4B,wBAnD5B,CAAA,EAmDoD,oBAAA,CAAA,GAAA,CAAA,OAnDpD;EAerB,WAAA,EAAA,MAAA;CAAsB;KA6EtB,qBAAA,GAAwB,KAAA,CAAM,cA7EuC,CAAA,OA6EjB,aAAA,CAAgB,KA7EC,CAAA,GAAA;;EAAxB,IAAA,CAAA,EAAA,IAAA,GAAA,SAAA,GAAA,IAAA,GAAA,IAAA,GAAA,MAAA;AAAA,CAAA;cAkF5C,gBA9EL,EAAA;;IAFiC,SAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAgFuB,qBAhFvB,CAAA,EAgF4C,oBAAA,CAAA,GAAA,CAAA,OAhF5C;aAAsB,EAAA,MAAA;CAAA;AAAA,KA+FnD,qBAAA,GAAwB,KAAA,CAAM,cArFN,CAAA,OAqF4B,aAAA,CAAgB,KArF5C,CAAA;cAuFvB,gBAvFuB,EAAA;;IAA+B,SAAA;IAAA,GAAgB;EAAA,CAAA,EAuFzB,qBAvFyB,CAAA,EAuFJ,oBAAA,CAAA,GAAA,CAAA,OAvFI;aAAtC,EAAA,MAAA;CAAc;AAAA,KAsG/C,2BAAA,GAA8B,KAAA,CAAM,cAxFxC,CAAA,OAyFQ,aAAA,CAAgB,WAzFxB,CAAA;cA4FK,sBA5FL,EAAA;;;;KA4FwD,8BAA2B,oBAAA,CAAA,GAAA,CAAA;aAxG9B,EAAA,MAAA;;KAkHjD,qBAAA,GAAwB,KAAA,CAAM,cAlH2C,CAAA,OAkHrB,aAAA,CAAgB,KAlHK,CAAA,GAAA;EAoBzE;EAAwB,OAAA,CAAA,EAgGjB,aAhGiB;;MAAG,CAAA,EAkGvB,UAlG6B;CAAc;AAAA,cAqG9C,gBA5FL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAiGE,qBAjGF,CAAA,EAiGuB,oBAAA,CAAA,GAAA,CAAA,OAjGvB"}
1
+ {"version":3,"file":"alert-dialog.d.ts","names":[],"sources":["../src/components/alert-dialog.tsx"],"sourcesContent":[],"mappings":";;;;;;KAiBK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,aAAA,CAAgB;cAElE;UAA0B,uBAAoB,mBAAA,CAAA,GAAA,CAAA;EAF/C,WAAA,EAAA,MAAA;CAAoB;KAYpB,uBAAA,GAA0B,KAAA,CAAM,cAZmC,CAAA,OAYb,aAAA,CAAgB,OAZH,CAAA,GAAA;;EAAxB,OAAA,CAAA,EAcpC,aAdoC;EAE1C;EAEL,IAAA,CAAA,EAYQ,UAZR;;cAeK,kBAjB8C,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAsBjD,uBAtBiD,CAAA,EAsB1B,mBAAA,CAAA,GAAA,CAAA,OAtB0B;EAU/C,WAAA,EAAA,MAAA;CAAuB;KA2BvB,sBAAA,GAAyB,KAAA,CAAM,cA3BuC,CAAA,OA2BjB,aAAA,CAAgB,MA3BC,CAAA;cA6BrE,iBA7B+B,EAAA;QAEzB,EA2BsB,sBA3BtB,CAAA,EA2B4C,mBAAA,CAAA,GAAA,CAAA,OA3B5C;aAEH,EAAA,MAAA;CAAU;AAAA,KAmCd,wBAAA,GAA2B,KAAA,CAAM,cApBrC,CAAA,OAoB2D,aAAA,CAAgB,QApB3E,CAAA;cAsBK,mBAtBL,EAAA;;;;KAsBqD,2BAAwB,mBAAA,CAAA,GAAA,CAAA;;;KAoBzE,wBAAA,GAA2B,KAAA,CAAM,cAjDnC,CAAA,OAiDyD,aAAA,CAAgB,QAjDzE,CAAA;cAmDG,mBAnDoB,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAmD4B,wBAnD5B,CAAA,EAmDoD,mBAAA,CAAA,GAAA,CAAA,OAnDpD;EAerB,WAAA,EAAA,MAAA;CAAsB;KA6EtB,qBAAA,GAAwB,KAAA,CAAM,cA7EuC,CAAA,OA6EjB,aAAA,CAAgB,KA7EC,CAAA,GAAA;;EAAxB,IAAA,CAAA,EAAA,IAAA,GAAA,SAAA,GAAA,IAAA,GAAA,IAAA,GAAA,MAAA;AAAA,CAAA;cAkF5C,gBA9EL,EAAA;;IAFiC,SAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAgFuB,qBAhFvB,CAAA,EAgF4C,mBAAA,CAAA,GAAA,CAAA,OAhF5C;aAAsB,EAAA,MAAA;CAAA;AAAA,KA+FnD,qBAAA,GAAwB,KAAA,CAAM,cArFN,CAAA,OAqF4B,aAAA,CAAgB,KArF5C,CAAA;cAuFvB,gBAvFuB,EAAA;;IAA+B,SAAA;IAAA,GAAgB;EAAA,CAAA,EAuFzB,qBAvFyB,CAAA,EAuFJ,mBAAA,CAAA,GAAA,CAAA,OAvFI;aAAtC,EAAA,MAAA;CAAc;AAAA,KAsG/C,2BAAA,GAA8B,KAAA,CAAM,cAxFxC,CAAA,OAyFQ,aAAA,CAAgB,WAzFxB,CAAA;cA4FK,sBA5FL,EAAA;;;;KA4FwD,8BAA2B,mBAAA,CAAA,GAAA,CAAA;aAxG9B,EAAA,MAAA;;KAkHjD,qBAAA,GAAwB,KAAA,CAAM,cAlH2C,CAAA,OAkHrB,aAAA,CAAgB,KAlHK,CAAA,GAAA;EAoBzE;EAAwB,OAAA,CAAA,EAgGjB,aAhGiB;;MAAG,CAAA,EAkGvB,UAlG6B;CAAc;AAAA,cAqG9C,gBA5FL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAiGE,qBAjGF,CAAA,EAiGuB,mBAAA,CAAA,GAAA,CAAA,OAjGvB"}
package/dist/alert.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime286 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/alert.d.ts
5
5
  type AlertVariant = 'default' | 'destructive' | 'success' | 'warning' | 'info';
@@ -20,7 +20,7 @@ declare const Alert: {
20
20
  appearance,
21
21
  size,
22
22
  ...props
23
- }: AlertProps): react_jsx_runtime286.JSX.Element;
23
+ }: AlertProps): react_jsx_runtime7.JSX.Element;
24
24
  displayName: string;
25
25
  };
26
26
  type AlertIconProps = React.ComponentProps<'span'>;
@@ -28,7 +28,7 @@ declare const AlertIcon: {
28
28
  ({
29
29
  className,
30
30
  ...props
31
- }: AlertIconProps): react_jsx_runtime286.JSX.Element;
31
+ }: AlertIconProps): react_jsx_runtime7.JSX.Element;
32
32
  displayName: string;
33
33
  };
34
34
  type AlertContentProps = React.ComponentProps<'div'>;
@@ -36,7 +36,7 @@ declare const AlertContent: {
36
36
  ({
37
37
  className,
38
38
  ...props
39
- }: AlertContentProps): react_jsx_runtime286.JSX.Element;
39
+ }: AlertContentProps): react_jsx_runtime7.JSX.Element;
40
40
  displayName: string;
41
41
  };
42
42
  type AlertTitleProps = React.ComponentProps<'h5'>;
@@ -44,7 +44,7 @@ declare const AlertTitle: {
44
44
  ({
45
45
  className,
46
46
  ...props
47
- }: AlertTitleProps): react_jsx_runtime286.JSX.Element;
47
+ }: AlertTitleProps): react_jsx_runtime7.JSX.Element;
48
48
  displayName: string;
49
49
  };
50
50
  type AlertDescriptionProps = React.ComponentProps<'div'>;
@@ -52,7 +52,7 @@ declare const AlertDescription: {
52
52
  ({
53
53
  className,
54
54
  ...props
55
- }: AlertDescriptionProps): react_jsx_runtime286.JSX.Element;
55
+ }: AlertDescriptionProps): react_jsx_runtime7.JSX.Element;
56
56
  displayName: string;
57
57
  };
58
58
  type AlertActionProps = React.ComponentProps<'div'>;
@@ -60,7 +60,7 @@ declare const AlertAction: {
60
60
  ({
61
61
  className,
62
62
  ...props
63
- }: AlertActionProps): react_jsx_runtime286.JSX.Element;
63
+ }: AlertActionProps): react_jsx_runtime7.JSX.Element;
64
64
  displayName: string;
65
65
  };
66
66
  type AlertCloseProps = React.ComponentProps<'button'>;
@@ -68,7 +68,7 @@ declare const AlertClose: {
68
68
  ({
69
69
  className,
70
70
  ...props
71
- }: AlertCloseProps): react_jsx_runtime286.JSX.Element;
71
+ }: AlertCloseProps): react_jsx_runtime7.JSX.Element;
72
72
  displayName: string;
73
73
  };
74
74
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"alert.d.ts","names":[],"sources":["../src/components/alert.tsx"],"sourcesContent":[],"mappings":";;;;KAyHY,YAAA;KAEA,eAAA;KAEA,SAAA;AAJZ,KAUK,UAAA,GAAa,KAAA,CAAM,cAVA,CAAA,KAAA,CAAA,GAAA;EAEZ;EAEA,OAAA,CAAA,EAQA,YARS;EAMhB;EAAU,UAAA,CAAA,EAIA,eAJA;;MAEH,CAAA,EAIH,SAJG;;cAON,KAHG,EAAA;EAAS,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,UAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAGiD,UAHjD,CAAA,EAG2D,oBAAA,CAAA,GAAA,CAAA,OAH3D;EAGZ,WAQL,EAAA,MAAA;CAAA;KAQI,cAAA,GAAiB,KAAA,CAAM;cAEtB;;;;KAAsC,iBAAc,oBAAA,CAAA,GAAA,CAAA;;;KAgBrD,iBAAA,GAAoB,KAAA,CAAM,cAlC8C,CAAA,KAAA,CAAA;cAoCvE,YApCuE,EAAA;EAgBxE,CAAA;IAAA,SAAA;IAAA,GAAc;EAAS,CAAT,EAoB4B,iBApBnB,CAAA,EAoBoC,oBAAA,CAAA,GAAA,CAAA,OApBtB;EAEpC,WAAA,EAQL,MAAA;CAAA;KA0BI,eAAA,GAAkB,KAAA,CAAM;cAEvB,UApCsC,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EAoCb,eApCa,CAAA,EAoCE,oBAAA,CAAA,GAAA,CAAA,OApCF;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;AAgBb,KAoCxC,qBAAA,GAAwB,KAAA,CAAM,cA1BlC,CAAA,KAAA,CAAA;cA4BK,gBA5BL,EAAA;;;;KA4BkD,wBAAqB,oBAAA,CAAA,GAAA,CAAA;aApCzB,EAAA,MAAA;;KAoD1C,gBAAA,GAAmB,KAAA,CAAM,cApDkC,CAAA,KAAA,CAAA;AAAA,cAsD1D,WAtCc,EAAA;EAEd,CAAA;IAAA,SAAA;IAQL,GAAA;EAAA,CAAA,EA4B6C,gBA5B7C,CAAA,EA4B6D,oBAAA,CAAA,GAAA,CAAA,OA5B7D;EAAA,WAAA,EAAA,MAAA;;KA4CI,eAAA,GAAkB,KAAA,CAAM,cApDgB,CAAA,QAAA,CAAA;cAsDvC,UAtDsD,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAsDf,eAtDe,CAAA,EAsDA,oBAAA,CAAA,GAAA,CAAA,OAtDA;EAgBvD,WAAA,EAAA,MAAA;AAA4C,CAAA"}
1
+ {"version":3,"file":"alert.d.ts","names":[],"sources":["../src/components/alert.tsx"],"sourcesContent":[],"mappings":";;;;KAyHY,YAAA;KAEA,eAAA;KAEA,SAAA;AAJZ,KAUK,UAAA,GAAa,KAAA,CAAM,cAVA,CAAA,KAAA,CAAA,GAAA;EAEZ;EAEA,OAAA,CAAA,EAQA,YARS;EAMhB;EAAU,UAAA,CAAA,EAIA,eAJA;;MAEH,CAAA,EAIH,SAJG;;cAON,KAHG,EAAA;EAAS,CAAA;IAAA,SAAA;IAAA,OAAA;IAAA,UAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAGiD,UAHjD,CAAA,EAG2D,kBAAA,CAAA,GAAA,CAAA,OAH3D;EAGZ,WAQL,EAAA,MAAA;CAAA;KAQI,cAAA,GAAiB,KAAA,CAAM;cAEtB;;;;KAAsC,iBAAc,kBAAA,CAAA,GAAA,CAAA;;;KAgBrD,iBAAA,GAAoB,KAAA,CAAM,cAlC8C,CAAA,KAAA,CAAA;cAoCvE,YApCuE,EAAA;EAgBxE,CAAA;IAAA,SAAA;IAAA,GAAc;EAAS,CAAT,EAoB4B,iBApBnB,CAAA,EAoBoC,kBAAA,CAAA,GAAA,CAAA,OApBtB;EAEpC,WAAA,EAQL,MAAA;CAAA;KA0BI,eAAA,GAAkB,KAAA,CAAM;cAEvB,UApCsC,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EAoCb,eApCa,CAAA,EAoCE,kBAAA,CAAA,GAAA,CAAA,OApCF;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;AAgBb,KAoCxC,qBAAA,GAAwB,KAAA,CAAM,cA1BlC,CAAA,KAAA,CAAA;cA4BK,gBA5BL,EAAA;;;;KA4BkD,wBAAqB,kBAAA,CAAA,GAAA,CAAA;aApCzB,EAAA,MAAA;;KAoD1C,gBAAA,GAAmB,KAAA,CAAM,cApDkC,CAAA,KAAA,CAAA;AAAA,cAsD1D,WAtCc,EAAA;EAEd,CAAA;IAAA,SAAA;IAQL,GAAA;EAAA,CAAA,EA4B6C,gBA5B7C,CAAA,EA4B6D,kBAAA,CAAA,GAAA,CAAA,OA5B7D;EAAA,WAAA,EAAA,MAAA;;KA4CI,eAAA,GAAkB,KAAA,CAAM,cApDgB,CAAA,QAAA,CAAA;cAsDvC,UAtDsD,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAsDf,eAtDe,CAAA,EAsDA,kBAAA,CAAA,GAAA,CAAA,OAtDA;EAgBvD,WAAA,EAAA,MAAA;AAA4C,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime293 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime221 from "react/jsx-runtime";
3
3
  import { Autocomplete as BaseAutocomplete, AutocompleteRootProps } from "@base-ui/react/autocomplete";
4
4
 
5
5
  //#region src/components/autocomplete.d.ts
@@ -9,12 +9,12 @@ declare const AutocompleteInput: {
9
9
  ({
10
10
  className,
11
11
  ...props
12
- }: AutocompleteInputProps): react_jsx_runtime293.JSX.Element;
12
+ }: AutocompleteInputProps): react_jsx_runtime221.JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  type AutocompletePortalProps = React.ComponentProps<typeof BaseAutocomplete.Portal>;
16
16
  declare const AutocompletePortal: {
17
- (props: AutocompletePortalProps): react_jsx_runtime293.JSX.Element;
17
+ (props: AutocompletePortalProps): react_jsx_runtime221.JSX.Element;
18
18
  displayName: string;
19
19
  };
20
20
  type AutocompletePositionerProps = React.ComponentProps<typeof BaseAutocomplete.Positioner>;
@@ -22,7 +22,7 @@ declare const AutocompletePositioner: {
22
22
  ({
23
23
  className,
24
24
  ...props
25
- }: AutocompletePositionerProps): react_jsx_runtime293.JSX.Element;
25
+ }: AutocompletePositionerProps): react_jsx_runtime221.JSX.Element;
26
26
  displayName: string;
27
27
  };
28
28
  type AutocompletePopupProps = React.ComponentProps<typeof BaseAutocomplete.Popup>;
@@ -30,7 +30,7 @@ declare const AutocompletePopup: {
30
30
  ({
31
31
  className,
32
32
  ...props
33
- }: AutocompletePopupProps): react_jsx_runtime293.JSX.Element;
33
+ }: AutocompletePopupProps): react_jsx_runtime221.JSX.Element;
34
34
  displayName: string;
35
35
  };
36
36
  type AutocompleteEmptyProps = React.ComponentProps<typeof BaseAutocomplete.Empty>;
@@ -38,7 +38,7 @@ declare const AutocompleteEmpty: {
38
38
  ({
39
39
  className,
40
40
  ...props
41
- }: AutocompleteEmptyProps): react_jsx_runtime293.JSX.Element;
41
+ }: AutocompleteEmptyProps): react_jsx_runtime221.JSX.Element;
42
42
  displayName: string;
43
43
  };
44
44
  type AutocompleteListProps = React.ComponentProps<typeof BaseAutocomplete.List>;
@@ -46,7 +46,7 @@ declare const AutocompleteList: {
46
46
  ({
47
47
  className,
48
48
  ...props
49
- }: AutocompleteListProps): react_jsx_runtime293.JSX.Element;
49
+ }: AutocompleteListProps): react_jsx_runtime221.JSX.Element;
50
50
  displayName: string;
51
51
  };
52
52
  type AutocompleteItemProps = React.ComponentProps<typeof BaseAutocomplete.Item>;
@@ -54,7 +54,7 @@ declare const AutocompleteItem: {
54
54
  ({
55
55
  className,
56
56
  ...props
57
- }: AutocompleteItemProps): react_jsx_runtime293.JSX.Element;
57
+ }: AutocompleteItemProps): react_jsx_runtime221.JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  type AutocompleteStatusProps = React.ComponentProps<typeof BaseAutocomplete.Status>;
@@ -62,7 +62,7 @@ declare const AutocompleteStatus: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: AutocompleteStatusProps): react_jsx_runtime293.JSX.Element;
65
+ }: AutocompleteStatusProps): react_jsx_runtime221.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type AutocompleteGroupProps = React.ComponentProps<typeof BaseAutocomplete.Group>;
@@ -70,7 +70,7 @@ declare const AutocompleteGroup: {
70
70
  ({
71
71
  className,
72
72
  ...props
73
- }: AutocompleteGroupProps): react_jsx_runtime293.JSX.Element;
73
+ }: AutocompleteGroupProps): react_jsx_runtime221.JSX.Element;
74
74
  displayName: string;
75
75
  };
76
76
  type AutocompleteGroupLabelProps = React.ComponentProps<typeof BaseAutocomplete.GroupLabel>;
@@ -78,12 +78,12 @@ declare const AutocompleteGroupLabel: {
78
78
  ({
79
79
  className,
80
80
  ...props
81
- }: AutocompleteGroupLabelProps): react_jsx_runtime293.JSX.Element;
81
+ }: AutocompleteGroupLabelProps): react_jsx_runtime221.JSX.Element;
82
82
  displayName: string;
83
83
  };
84
84
  type AutocompleteCollectionProps = React.ComponentProps<typeof BaseAutocomplete.Collection>;
85
85
  declare const AutocompleteCollection: {
86
- (props: AutocompleteCollectionProps): react_jsx_runtime293.JSX.Element;
86
+ (props: AutocompleteCollectionProps): react_jsx_runtime221.JSX.Element;
87
87
  displayName: string;
88
88
  };
89
89
  type AutocompleteSeparatorProps = React.ComponentProps<typeof BaseAutocomplete.Separator>;
@@ -91,7 +91,7 @@ declare const AutocompleteSeparator: {
91
91
  ({
92
92
  className,
93
93
  ...props
94
- }: AutocompleteSeparatorProps): react_jsx_runtime293.JSX.Element;
94
+ }: AutocompleteSeparatorProps): react_jsx_runtime221.JSX.Element;
95
95
  displayName: string;
96
96
  };
97
97
  //#endregion
package/dist/avatar.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime64 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime214 from "react/jsx-runtime";
3
3
  import { Avatar } from "@base-ui/react/avatar";
4
4
 
5
5
  //#region src/components/avatar.d.ts
@@ -13,7 +13,7 @@ declare const AvatarRoot: {
13
13
  className,
14
14
  size,
15
15
  ...props
16
- }: AvatarRootProps): react_jsx_runtime64.JSX.Element;
16
+ }: AvatarRootProps): react_jsx_runtime214.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type AvatarImageProps = React.ComponentProps<typeof Avatar.Image>;
@@ -21,7 +21,7 @@ declare const AvatarImage: {
21
21
  ({
22
22
  className,
23
23
  ...props
24
- }: AvatarImageProps): react_jsx_runtime64.JSX.Element;
24
+ }: AvatarImageProps): react_jsx_runtime214.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type AvatarFallbackProps = React.ComponentProps<typeof Avatar.Fallback>;
@@ -29,7 +29,7 @@ declare const AvatarFallback: {
29
29
  ({
30
30
  className,
31
31
  ...props
32
- }: AvatarFallbackProps): react_jsx_runtime64.JSX.Element;
32
+ }: AvatarFallbackProps): react_jsx_runtime214.JSX.Element;
33
33
  displayName: string;
34
34
  };
35
35
  type AvatarStackProps = {
@@ -48,7 +48,7 @@ declare const AvatarStack: {
48
48
  maxVisible,
49
49
  className,
50
50
  children
51
- }: AvatarStackProps): react_jsx_runtime64.JSX.Element;
51
+ }: AvatarStackProps): react_jsx_runtime214.JSX.Element;
52
52
  displayName: string;
53
53
  };
54
54
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"avatar.d.ts","names":[],"sources":["../src/components/avatar.tsx"],"sourcesContent":[],"mappings":";;;;;KAgCK,UAAA;KAMA,eAAA,GAAkB,KAAA,CAAM,sBAAsB,MAAA,CAAW;;EANzD,IAAA,CAAA,EAQI,UARM;AAAA,CAAA;cAWT,UALc,EAAA;;IAA+B,SAAW;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAKX,eALW,CAAA,EAKI,mBAAA,CAAA,GAAA,CAAA,OALJ;aAAjC,EAAA,MAAA;;KAiBxB,gBAAA,GAAmB,KAAA,CAAM,cAfX,CAAA,OAeiC,MAAA,CAAW,KAf5C,CAAA;AAAA,cAiBb,WAVL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAU6C,gBAV7C,CAAA,EAU6D,mBAAA,CAAA,GAAA,CAAA,OAV7D;;;KAyBI,mBAAA,GAAsB,KAAA,CAAM,cA7BkB,CAAA,OA6BI,MAAA,CAAW,QA7Bf,CAAA;cA+B7C,cA/B4D,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EA+BjB,mBA/BiB,CAAA,EA+BE,mBAAA,CAAA,GAAA,CAAA,OA/BF;EAY7D,WAAA,EAAA,MAAgB;CAAA;KAqChB,gBAAA,GArC0D;;EAAnB,YAAA,EAAA,MAAA;EAEtC;EAOL,UAAA,CAAA,EAAA,MAAA;;WAP6C,CAAA,EAAA,MAAA;;EAAgB,QAAA,EA2ClD,KAAA,CAAM,SA3C4C;AAAA,CAAA;cA8CxD,WA/BkB,EAAA;;IAA+B,YAAW,WAAA;IAAA,UAAA;IAAA,SAAA;IAAA;EAAA,CAAA,EAoC/D,gBApC+D,CAAA,EAoC/C,mBAAA,CAAA,GAAA,CAAA,OApC+C;aAAjC,EAAA,MAAA;CAAc"}
1
+ {"version":3,"file":"avatar.d.ts","names":[],"sources":["../src/components/avatar.tsx"],"sourcesContent":[],"mappings":";;;;;KAgCK,UAAA;KAMA,eAAA,GAAkB,KAAA,CAAM,sBAAsB,MAAA,CAAW;;EANzD,IAAA,CAAA,EAQI,UARM;AAAA,CAAA;cAWT,UALc,EAAA;;IAA+B,SAAW;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAKX,eALW,CAAA,EAKI,oBAAA,CAAA,GAAA,CAAA,OALJ;aAAjC,EAAA,MAAA;;KAiBxB,gBAAA,GAAmB,KAAA,CAAM,cAfX,CAAA,OAeiC,MAAA,CAAW,KAf5C,CAAA;AAAA,cAiBb,WAVL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAU6C,gBAV7C,CAAA,EAU6D,oBAAA,CAAA,GAAA,CAAA,OAV7D;;;KAyBI,mBAAA,GAAsB,KAAA,CAAM,cA7BkB,CAAA,OA6BI,MAAA,CAAW,QA7Bf,CAAA;cA+B7C,cA/B4D,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EA+BjB,mBA/BiB,CAAA,EA+BE,oBAAA,CAAA,GAAA,CAAA,OA/BF;EAY7D,WAAA,EAAA,MAAgB;CAAA;KAqChB,gBAAA,GArC0D;;EAAnB,YAAA,EAAA,MAAA;EAEtC;EAOL,UAAA,CAAA,EAAA,MAAA;;WAP6C,CAAA,EAAA,MAAA;;EAAgB,QAAA,EA2ClD,KAAA,CAAM,SA3C4C;AAAA,CAAA;cA8CxD,WA/BkB,EAAA;;IAA+B,YAAW,WAAA;IAAA,UAAA;IAAA,SAAA;IAAA;EAAA,CAAA,EAoC/D,gBApC+D,CAAA,EAoC/C,oBAAA,CAAA,GAAA,CAAA,OApC+C;aAAjC,EAAA,MAAA;CAAc"}
package/dist/badge.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime123 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime218 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/badge.d.ts
5
5
  type BadgeVariant = 'default' | 'secondary' | 'destructive' | 'success' | 'warning' | 'info';
@@ -24,7 +24,7 @@ declare const Badge: {
24
24
  size,
25
25
  shape,
26
26
  ...props
27
- }: BadgeProps): react_jsx_runtime123.JSX.Element;
27
+ }: BadgeProps): react_jsx_runtime218.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type BadgeDotProps = React.ComponentProps<'span'>;
@@ -32,7 +32,7 @@ declare const BadgeDot: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: BadgeDotProps): react_jsx_runtime123.JSX.Element;
35
+ }: BadgeDotProps): react_jsx_runtime218.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type BadgeButtonProps = React.ComponentProps<'button'>;
@@ -40,7 +40,7 @@ declare const BadgeButton: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: BadgeButtonProps): react_jsx_runtime123.JSX.Element;
43
+ }: BadgeButtonProps): react_jsx_runtime218.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime264 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime55 from "react/jsx-runtime";
3
3
  import { useRender } from "@base-ui/react/use-render";
4
4
 
5
5
  //#region src/components/breadcrumb.d.ts
@@ -9,7 +9,7 @@ declare const BreadcrumbRoot: {
9
9
  className,
10
10
  children,
11
11
  ...props
12
- }: BreadcrumbRootProps): react_jsx_runtime264.JSX.Element;
12
+ }: BreadcrumbRootProps): react_jsx_runtime55.JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  type BreadcrumbItemProps = React.ComponentProps<'li'>;
@@ -17,7 +17,7 @@ declare const BreadcrumbItem: {
17
17
  ({
18
18
  className,
19
19
  ...props
20
- }: BreadcrumbItemProps): react_jsx_runtime264.JSX.Element;
20
+ }: BreadcrumbItemProps): react_jsx_runtime55.JSX.Element;
21
21
  displayName: string;
22
22
  };
23
23
  type BreadcrumbLinkProps = useRender.ComponentProps<'a'>;
@@ -34,7 +34,7 @@ declare const BreadcrumbPage: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: BreadcrumbPageProps): react_jsx_runtime264.JSX.Element;
37
+ }: BreadcrumbPageProps): react_jsx_runtime55.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type BreadcrumbSeparatorProps = React.ComponentProps<'li'>;
@@ -43,7 +43,7 @@ declare const BreadcrumbSeparator: {
43
43
  className,
44
44
  children,
45
45
  ...props
46
- }: BreadcrumbSeparatorProps): react_jsx_runtime264.JSX.Element;
46
+ }: BreadcrumbSeparatorProps): react_jsx_runtime55.JSX.Element;
47
47
  displayName: string;
48
48
  };
49
49
  type BreadcrumbEllipsisProps = React.ComponentProps<'li'>;
@@ -52,7 +52,7 @@ declare const BreadcrumbEllipsis: {
52
52
  className,
53
53
  children,
54
54
  ...props
55
- }: BreadcrumbEllipsisProps): react_jsx_runtime264.JSX.Element;
55
+ }: BreadcrumbEllipsisProps): react_jsx_runtime55.JSX.Element;
56
56
  displayName: string;
57
57
  };
58
58
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"breadcrumb.d.ts","names":[],"sources":["../src/components/breadcrumb.tsx"],"sourcesContent":[],"mappings":";;;;;KASK,mBAAA,GAAsB,KAAA,CAAM;cAE3B;;;;;KAAqD,sBAAmB,oBAAA,CAAA,GAAA,CAAA;EAFzE,WAAA,EAAA,MAAA;AAA0C,CAAA;KAsB1C,mBAAA,GAAsB,KAAA,CAAM,cARhC,CAAA,IAAA,CAAA;cAUK;;;;KAA2C,sBAAmB,oBAAA,CAAA,GAAA,CAAA;aAtBT,EAAA,MAAA;;KAgCtD,mBAAA,GAAsB,SAAA,CAAU,cAhCyC,CAAA,GAAA,CAAA;AAAA,cAkCxE,cAdkB,EAAA;EAElB,CAAA;IAAA,SAAA;IAAA,MAEL;IAAA,GAAA;EAAA,CAAA,EAUwD,mBAVxD,CAAA,EAU2E,KAAA,CAAA,YAV3E,CAAA,OAAA,EAAA,MAAA,GAU2E,KAAA,CAAA,qBAV3E,CAAA,GAAA,CAAA,CAAA;EAAA,WAAA,EAAA,MAAA;;KA8BI,mBAAA,GAAsB,KAAA,CAAM,cAhCgB,CAAA,MAAA,CAAA;cAkC3C,cAlC8D,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkCnB,mBAlCmB,CAAA,EAkCA,oBAAA,CAAA,GAAA,CAAA,OAlCA;EAU/D,WAAA,EAAA,MAAA;AAA8C,CAAA;KAwC9C,wBAAA,GAA2B,KAAA,CAAM,cA1BrC,CAAA,IAAA,CAAA;cA4BK;;;;;KAIH,2BAAwB,oBAAA,CAAA,GAAA,CAAA;aA5C8B,EAAA,MAAA;;KA+DpD,uBAAA,GAA0B,KAAA,CAAM,cA/DuC,CAAA,IAAA,CAAA;cAiEtE,kBAjEsE,EAAA;EAoBvE,CAAA;IAAA,SAAA;IAAA,QAAmB;IAAA,GAAA;EAAuB,CAApB,EAiDxB,uBAjD4C,CAAA,EAiDrB,oBAAA,CAAA,GAAA,CAAA,OAjDqB;EAEzC,WAAA,EAAA,MAQL;CAAA"}
1
+ {"version":3,"file":"breadcrumb.d.ts","names":[],"sources":["../src/components/breadcrumb.tsx"],"sourcesContent":[],"mappings":";;;;;KASK,mBAAA,GAAsB,KAAA,CAAM;cAE3B;;;;;KAAqD,sBAAmB,mBAAA,CAAA,GAAA,CAAA;EAFzE,WAAA,EAAA,MAAA;AAA0C,CAAA;KAsB1C,mBAAA,GAAsB,KAAA,CAAM,cARhC,CAAA,IAAA,CAAA;cAUK;;;;KAA2C,sBAAmB,mBAAA,CAAA,GAAA,CAAA;aAtBT,EAAA,MAAA;;KAgCtD,mBAAA,GAAsB,SAAA,CAAU,cAhCyC,CAAA,GAAA,CAAA;AAAA,cAkCxE,cAdkB,EAAA;EAElB,CAAA;IAAA,SAAA;IAAA,MAEL;IAAA,GAAA;EAAA,CAAA,EAUwD,mBAVxD,CAAA,EAU2E,KAAA,CAAA,YAV3E,CAAA,OAAA,EAAA,MAAA,GAU2E,KAAA,CAAA,qBAV3E,CAAA,GAAA,CAAA,CAAA;EAAA,WAAA,EAAA,MAAA;;KA8BI,mBAAA,GAAsB,KAAA,CAAM,cAhCgB,CAAA,MAAA,CAAA;cAkC3C,cAlC8D,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkCnB,mBAlCmB,CAAA,EAkCA,mBAAA,CAAA,GAAA,CAAA,OAlCA;EAU/D,WAAA,EAAA,MAAA;AAA8C,CAAA;KAwC9C,wBAAA,GAA2B,KAAA,CAAM,cA1BrC,CAAA,IAAA,CAAA;cA4BK;;;;;KAIH,2BAAwB,mBAAA,CAAA,GAAA,CAAA;aA5C8B,EAAA,MAAA;;KA+DpD,uBAAA,GAA0B,KAAA,CAAM,cA/DuC,CAAA,IAAA,CAAA;cAiEtE,kBAjEsE,EAAA;EAoBvE,CAAA;IAAA,SAAA;IAAA,QAAmB;IAAA,GAAA;EAAuB,CAApB,EAiDxB,uBAjD4C,CAAA,EAiDrB,mBAAA,CAAA,GAAA,CAAA,OAjDqB;EAEzC,WAAA,EAAA,MAQL;CAAA"}
package/dist/button.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime269 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime84 from "react/jsx-runtime";
4
4
  import { Button as Button$1 } from "@base-ui/react/button";
5
5
 
6
6
  //#region src/components/button.d.ts
@@ -18,7 +18,7 @@ declare const Button: {
18
18
  disabled,
19
19
  children,
20
20
  ...props
21
- }: ButtonProps): react_jsx_runtime269.JSX.Element;
21
+ }: ButtonProps): react_jsx_runtime84.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"button.d.ts","names":[],"sources":["../src/components/button.tsx"],"sourcesContent":[],"mappings":";;;;;;KAYK,WAAA,GAAc,KAAA,CAAM,sBAAsB;;YAEnC;EAFP;EAAW,IAAA,CAAA,EAIP,UAJO;;cAOV,MAPmB,EAAA;;IAEb,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,QAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA,EAYT,WAZS,CAAA,EAYE,oBAAA,CAAA,GAAA,CAAA,OAZF;aAEH,EAAA,MAAA;CAAU"}
1
+ {"version":3,"file":"button.d.ts","names":[],"sources":["../src/components/button.tsx"],"sourcesContent":[],"mappings":";;;;;;KAYK,WAAA,GAAc,KAAA,CAAM,sBAAsB;;YAEnC;EAFP;EAAW,IAAA,CAAA,EAIP,UAJO;;cAOV,MAPmB,EAAA;;IAEb,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,QAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA,EAYT,WAZS,CAAA,EAYE,mBAAA,CAAA,GAAA,CAAA,OAZF;aAEH,EAAA,MAAA;CAAU"}
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime17 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime41 from "react/jsx-runtime";
2
2
  import { DayPickerProps } from "react-day-picker";
3
3
 
4
4
  //#region src/components/calendar.d.ts
@@ -10,7 +10,7 @@ declare function Calendar({
10
10
  classNames,
11
11
  captionLayout,
12
12
  ...props
13
- }: CalendarProps): react_jsx_runtime17.JSX.Element;
13
+ }: CalendarProps): react_jsx_runtime41.JSX.Element;
14
14
  declare namespace Calendar {
15
15
  var displayName: string;
16
16
  }
package/dist/card.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { VariantProps } from "class-variance-authority";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime0 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime42 from "react/jsx-runtime";
4
4
  import * as class_variance_authority_types0 from "class-variance-authority/types";
5
5
 
6
6
  //#region src/components/card.d.ts
@@ -23,7 +23,7 @@ declare const CardMedia: {
23
23
  ({
24
24
  className,
25
25
  ...props
26
- }: CardMediaProps): react_jsx_runtime0.JSX.Element;
26
+ }: CardMediaProps): react_jsx_runtime42.JSX.Element;
27
27
  displayName: string;
28
28
  };
29
29
  type CardHeaderProps = React.ComponentProps<'header'>;
@@ -34,7 +34,7 @@ declare const CardHeader: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: CardHeaderProps): react_jsx_runtime0.JSX.Element;
37
+ }: CardHeaderProps): react_jsx_runtime42.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
@@ -51,7 +51,7 @@ declare const CardTitle: {
51
51
  as: Component,
52
52
  className,
53
53
  ...props
54
- }: CardTitleProps): react_jsx_runtime0.JSX.Element;
54
+ }: CardTitleProps): react_jsx_runtime42.JSX.Element;
55
55
  displayName: string;
56
56
  };
57
57
  type CardDescriptionProps = React.ComponentProps<'p'>;
@@ -62,7 +62,7 @@ declare const CardDescription: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: CardDescriptionProps): react_jsx_runtime0.JSX.Element;
65
+ }: CardDescriptionProps): react_jsx_runtime42.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type CardContentProps = React.ComponentProps<'div'>;
@@ -73,7 +73,7 @@ declare const CardContent: {
73
73
  ({
74
74
  className,
75
75
  ...props
76
- }: CardContentProps): react_jsx_runtime0.JSX.Element;
76
+ }: CardContentProps): react_jsx_runtime42.JSX.Element;
77
77
  displayName: string;
78
78
  };
79
79
  type CardSectionProps = React.ComponentProps<'section'>;
@@ -85,7 +85,7 @@ declare const CardSection: {
85
85
  ({
86
86
  className,
87
87
  ...props
88
- }: CardSectionProps): react_jsx_runtime0.JSX.Element;
88
+ }: CardSectionProps): react_jsx_runtime42.JSX.Element;
89
89
  displayName: string;
90
90
  };
91
91
  type CardFooterProps = React.ComponentProps<'footer'>;
@@ -97,7 +97,7 @@ declare const CardFooter: {
97
97
  ({
98
98
  className,
99
99
  ...props
100
- }: CardFooterProps): react_jsx_runtime0.JSX.Element;
100
+ }: CardFooterProps): react_jsx_runtime42.JSX.Element;
101
101
  displayName: string;
102
102
  };
103
103
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"card.d.ts","names":[],"sources":["../src/components/card.tsx"],"sourcesContent":[],"mappings":";;;;;;cAWM;;IAWJ,+BAAA,CAAA;KAEU,WAAA,GAAc,oBAAoB;AArBhB,KA2BzB,aAAA,GAAgB,KAAA,CAAM,cARzB,CAAA,SAAA,CAAA,GAQqD,YARrD,CAAA,OAQyE,YARzE,CAAA;AAEF;;;;cAYM,QAZgC,EAYxB,KAAA,CAAA,yBAZwB,CAYxB,IAZwB,CAYxB,aAZwB,EAAA,KAAA,CAAA,GAYxB,KAAA,CAAA,aAZwB,CAYxB,WAZwB,CAAA,CAAA;AAAgC,KA8BjE,cAAA,GAAiB,KAAA,CAAM,cAxBV,CAAA,KAAA,CAAA;;;;;cA8BZ,SA9B6D,EAAA;EAM7D,CAAA;IAAA,SAUL;IAAA,GAAA;EAAA,CAAA,EAc2C,cAd3C,CAAA,EAcyD,kBAAA,CAAA,GAAA,CAAA,OAdzD;EAAA,WAAA,EAAA,MAAA;;KAiCI,eAAA,GAAkB,KAAA,CAAM,cA3Cf,CAAA,QAAA,CAAA;;;;cAgDR,UAhDQ,EAAA;EAkBT,CAAA;IAAA,SAAA;IAAA,GAAc;EAAS,CAAT,EA8B0B,eA9BjB,CAAA,EA8BgC,kBAAA,CAAA,GAAA,CAAA,OA9BlB;EAMpC,WAAA,EAWL,MAAA;CAAA;KAuBI,YAAA;KAEA,cAAA,GAAiB,KAAA,CAAM,cApCgB,CAAA,IAAA,CAAA,GAAA;;EAAc,EAAA,CAAA,EAsCnD,YAtCmD;AAAA,CAAA;AAmBf;;;;cA0BrC,SArBsD,EAAA;EAAA,CAAA;IAAA,EAAA,WAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAqBM,cArBN,CAAA,EAqBoB,kBAAA,CAAA,GAAA,CAAA,OArBpB;EAUvD,WAAA,EAAA,MAAY;AAAA,CAAA;KA0BZ,oBAAA,GAAuB,KAAA,CAAM,cAxBf,CAAA,GAAA,CAAA;;;;AAEA,cA2Bb,eAbL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAaiD,oBAbjD,CAAA,EAaqE,kBAAA,CAAA,GAAA,CAAA,OAbrE;;;KAuBI,gBAAA,GAAmB,KAAA,CAAM,cA9BoC,CAAA,KAAA,CAAA;;;AAAc;AAehC,cAoB1C,WAbL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAa6C,gBAb7C,CAAA,EAa6D,kBAAA,CAAA,GAAA,CAAA,OAb7D;;;KAuBI,gBAAA,GAAmB,KAAA,CAAM,cAzBwC,CAAA,SAAA,CAAA;;AAAA;AAU1B;;cAqBtC;;IAhBwC,SAAA;IAAA,GAAA;EAAA,CAAA,EAgBA,gBAhBA,CAAA,EAgBgB,kBAAA,CAAA,GAAA,CAAA,OAhBhB;aAAgB,EAAA,MAAA;CAAA;AAAA,KA0BzD,eAAA,GAAkB,KAAA,CAAM,cAhBC,CAAA,QAAA,CAAA;AAAc;;;;cAsBtC,UAhBwD,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAgBjB,eAhBiB,CAAA,EAgBF,kBAAA,CAAA,GAAA,CAAA,OAhBE;EAUzD,WAAA,EAAA,MAAe;AAAuB,CAAA"}
1
+ {"version":3,"file":"card.d.ts","names":[],"sources":["../src/components/card.tsx"],"sourcesContent":[],"mappings":";;;;;;cAWM;;IAWJ,+BAAA,CAAA;KAEU,WAAA,GAAc,oBAAoB;AArBhB,KA2BzB,aAAA,GAAgB,KAAA,CAAM,cARzB,CAAA,SAAA,CAAA,GAQqD,YARrD,CAAA,OAQyE,YARzE,CAAA;AAEF;;;;cAYM,QAZgC,EAYxB,KAAA,CAAA,yBAZwB,CAYxB,IAZwB,CAYxB,aAZwB,EAAA,KAAA,CAAA,GAYxB,KAAA,CAAA,aAZwB,CAYxB,WAZwB,CAAA,CAAA;AAAgC,KA8BjE,cAAA,GAAiB,KAAA,CAAM,cAxBV,CAAA,KAAA,CAAA;;;;;cA8BZ,SA9B6D,EAAA;EAM7D,CAAA;IAAA,SAUL;IAAA,GAAA;EAAA,CAAA,EAc2C,cAd3C,CAAA,EAcyD,mBAAA,CAAA,GAAA,CAAA,OAdzD;EAAA,WAAA,EAAA,MAAA;;KAiCI,eAAA,GAAkB,KAAA,CAAM,cA3Cf,CAAA,QAAA,CAAA;;;;cAgDR,UAhDQ,EAAA;EAkBT,CAAA;IAAA,SAAA;IAAA,GAAc;EAAS,CAAT,EA8B0B,eA9BjB,CAAA,EA8BgC,mBAAA,CAAA,GAAA,CAAA,OA9BlB;EAMpC,WAAA,EAWL,MAAA;CAAA;KAuBI,YAAA;KAEA,cAAA,GAAiB,KAAA,CAAM,cApCgB,CAAA,IAAA,CAAA,GAAA;;EAAc,EAAA,CAAA,EAsCnD,YAtCmD;AAAA,CAAA;AAmBf;;;;cA0BrC,SArBsD,EAAA;EAAA,CAAA;IAAA,EAAA,WAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAqBM,cArBN,CAAA,EAqBoB,mBAAA,CAAA,GAAA,CAAA,OArBpB;EAUvD,WAAA,EAAA,MAAY;AAAA,CAAA;KA0BZ,oBAAA,GAAuB,KAAA,CAAM,cAxBf,CAAA,GAAA,CAAA;;;;AAEA,cA2Bb,eAbL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAaiD,oBAbjD,CAAA,EAaqE,mBAAA,CAAA,GAAA,CAAA,OAbrE;;;KAuBI,gBAAA,GAAmB,KAAA,CAAM,cA9BoC,CAAA,KAAA,CAAA;;;AAAc;AAehC,cAoB1C,WAbL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAa6C,gBAb7C,CAAA,EAa6D,mBAAA,CAAA,GAAA,CAAA,OAb7D;;;KAuBI,gBAAA,GAAmB,KAAA,CAAM,cAzBwC,CAAA,SAAA,CAAA;;AAAA;AAU1B;;cAqBtC;;IAhBwC,SAAA;IAAA,GAAA;EAAA,CAAA,EAgBA,gBAhBA,CAAA,EAgBgB,mBAAA,CAAA,GAAA,CAAA,OAhBhB;aAAgB,EAAA,MAAA;CAAA;AAAA,KA0BzD,eAAA,GAAkB,KAAA,CAAM,cAhBC,CAAA,QAAA,CAAA;AAAc;;;;cAsBtC,UAhBwD,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAgBjB,eAhBiB,CAAA,EAgBF,mBAAA,CAAA,GAAA,CAAA,OAhBE;EAUzD,WAAA,EAAA,MAAe;AAAuB,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime8 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime51 from "react/jsx-runtime";
3
3
  import { CheckboxGroup } from "@base-ui/react/checkbox-group";
4
4
 
5
5
  //#region src/components/checkbox-group.d.ts
@@ -8,7 +8,7 @@ declare const CheckboxGroupRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: CheckboxGroupRootProps): react_jsx_runtime8.JSX.Element;
11
+ }: CheckboxGroupRootProps): react_jsx_runtime51.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox-group.d.ts","names":[],"sources":["../src/components/checkbox-group.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,sBAAA,GAAyB,KAAA,CAAM,sBAAsB;cAEpD;;;;KAA8C,yBAAsB,kBAAA,CAAA,GAAA,CAAA;EAFrE,WAAA,EAAA,MAAA;CAAsB"}
1
+ {"version":3,"file":"checkbox-group.d.ts","names":[],"sources":["../src/components/checkbox-group.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,sBAAA,GAAyB,KAAA,CAAM,sBAAsB;cAEpD;;;;KAA8C,yBAAsB,mBAAA,CAAA,GAAA,CAAA;EAFrE,WAAA,EAAA,MAAA;CAAsB"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime49 from "react/jsx-runtime";
3
3
  import { Checkbox } from "@base-ui/react/checkbox";
4
4
 
5
5
  //#region src/components/checkbox.d.ts
@@ -8,7 +8,7 @@ declare const CheckboxRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: CheckboxRootProps): react_jsx_runtime6.JSX.Element;
11
+ }: CheckboxRootProps): react_jsx_runtime49.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type CheckboxIndicatorProps = React.ComponentProps<typeof Checkbox.Indicator>;
@@ -17,7 +17,7 @@ declare const CheckboxIndicator: {
17
17
  className,
18
18
  children,
19
19
  ...props
20
- }: CheckboxIndicatorProps): react_jsx_runtime6.JSX.Element;
20
+ }: CheckboxIndicatorProps): react_jsx_runtime49.JSX.Element;
21
21
  displayName: string;
22
22
  };
23
23
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","names":[],"sources":["../src/components/checkbox.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,kBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAyBjB,sBAAA,GAAyB,KAAA,CAAM,cAzB8B,CAAA,OAyBR,QAAA,CAAa,SAzBL,CAAA;cA2B5D,iBA3ByB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA,EA2BiB,sBA3BjB,CAAA,EA2BuC,kBAAA,CAAA,GAAA,CAAA,OA3BvC;EAEvC,WAAA,EAAA,MAeL;CAAA"}
1
+ {"version":3,"file":"checkbox.d.ts","names":[],"sources":["../src/components/checkbox.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,mBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAyBjB,sBAAA,GAAyB,KAAA,CAAM,cAzB8B,CAAA,OAyBR,QAAA,CAAa,SAzBL,CAAA;cA2B5D,iBA3ByB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA,EA2BiB,sBA3BjB,CAAA,EA2BuC,mBAAA,CAAA,GAAA,CAAA,OA3BvC;EAEvC,WAAA,EAAA,MAeL;CAAA"}