@lglab/compose-ui 0.30.0 → 0.30.1

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 (60) hide show
  1. package/dist/accordion.d.ts +6 -6
  2. package/dist/accordion.d.ts.map +1 -1
  3. package/dist/alert-dialog.d.ts +10 -10
  4. package/dist/alert-dialog.d.ts.map +1 -1
  5. package/dist/autocomplete.d.ts +13 -13
  6. package/dist/avatar.d.ts +5 -5
  7. package/dist/badge.d.ts +4 -4
  8. package/dist/button.d.ts +2 -2
  9. package/dist/card.d.ts +8 -8
  10. package/dist/checkbox-group.d.ts +2 -2
  11. package/dist/checkbox.d.ts +3 -3
  12. package/dist/checkbox.d.ts.map +1 -1
  13. package/dist/collapsible.d.ts +4 -4
  14. package/dist/combobox.d.ts +25 -25
  15. package/dist/context-menu.d.ts +20 -20
  16. package/dist/dialog.d.ts +11 -11
  17. package/dist/field.d.ts +8 -8
  18. package/dist/fieldset.d.ts +3 -3
  19. package/dist/fieldset.d.ts.map +1 -1
  20. package/dist/form.d.ts +2 -2
  21. package/dist/form.d.ts.map +1 -1
  22. package/dist/input.d.ts +2 -2
  23. package/dist/input.d.ts.map +1 -1
  24. package/dist/menu.d.ts +20 -20
  25. package/dist/menubar.d.ts +21 -21
  26. package/dist/meter.d.ts +6 -6
  27. package/dist/navigation-menu.d.ts +14 -14
  28. package/dist/navigation-menu.d.ts.map +1 -1
  29. package/dist/number-field.d.ts +8 -8
  30. package/dist/number-field.d.ts.map +1 -1
  31. package/dist/pagination.d.ts +10 -10
  32. package/dist/popover.d.ts +12 -12
  33. package/dist/popover.d.ts.map +1 -1
  34. package/dist/preview-card.d.ts +8 -8
  35. package/dist/progress.d.ts +6 -6
  36. package/dist/progress.d.ts.map +1 -1
  37. package/dist/radio-group.d.ts +2 -2
  38. package/dist/radio-group.d.ts.map +1 -1
  39. package/dist/radio.d.ts +3 -3
  40. package/dist/radio.d.ts.map +1 -1
  41. package/dist/scroll-area.d.ts +7 -7
  42. package/dist/scroll-area.d.ts.map +1 -1
  43. package/dist/select.d.ts +19 -19
  44. package/dist/separator.d.ts +2 -2
  45. package/dist/skeleton.d.ts +2 -2
  46. package/dist/skeleton.d.ts.map +1 -1
  47. package/dist/slider.d.ts +7 -7
  48. package/dist/slider.d.ts.map +1 -1
  49. package/dist/switch.d.ts +3 -3
  50. package/dist/tabs.d.ts +6 -6
  51. package/dist/textarea.d.ts +2 -2
  52. package/dist/textarea.d.ts.map +1 -1
  53. package/dist/toast.d.ts +10 -10
  54. package/dist/toggle-group.d.ts +3 -3
  55. package/dist/toggle.d.ts +2 -2
  56. package/dist/toolbar.d.ts +7 -7
  57. package/dist/toolbar.js +1 -1
  58. package/dist/toolbar.js.map +1 -1
  59. package/dist/tooltip.d.ts +8 -8
  60. package/package.json +1 -1
package/dist/popover.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime162 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime93 from "react/jsx-runtime";
3
3
  import { Popover } from "@base-ui/react/popover";
4
4
 
5
5
  //#region src/components/popover.d.ts
6
6
  type PopoverRootProps = React.ComponentProps<typeof Popover.Root>;
7
7
  declare const PopoverRoot: {
8
- (props: PopoverRootProps): react_jsx_runtime162.JSX.Element;
8
+ (props: PopoverRootProps): react_jsx_runtime93.JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type PopoverTriggerProps = React.ComponentProps<typeof Popover.Trigger>;
@@ -13,12 +13,12 @@ declare const PopoverTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: PopoverTriggerProps): react_jsx_runtime162.JSX.Element;
16
+ }: PopoverTriggerProps): react_jsx_runtime93.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type PopoverPortalProps = React.ComponentProps<typeof Popover.Portal>;
20
20
  declare const PopoverPortal: {
21
- (props: PopoverPortalProps): react_jsx_runtime162.JSX.Element;
21
+ (props: PopoverPortalProps): react_jsx_runtime93.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  type PopoverBackdropProps = React.ComponentProps<typeof Popover.Backdrop>;
@@ -26,7 +26,7 @@ declare const PopoverBackdrop: {
26
26
  ({
27
27
  className,
28
28
  ...props
29
- }: PopoverBackdropProps): react_jsx_runtime162.JSX.Element;
29
+ }: PopoverBackdropProps): react_jsx_runtime93.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type PopoverPositionerProps = React.ComponentProps<typeof Popover.Positioner>;
@@ -34,7 +34,7 @@ declare const PopoverPositioner: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: PopoverPositionerProps): react_jsx_runtime162.JSX.Element;
37
+ }: PopoverPositionerProps): react_jsx_runtime93.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type PopoverPopupProps = React.ComponentProps<typeof Popover.Popup>;
@@ -42,7 +42,7 @@ declare const PopoverPopup: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: PopoverPopupProps): react_jsx_runtime162.JSX.Element;
45
+ }: PopoverPopupProps): react_jsx_runtime93.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type PopoverArrowProps = React.ComponentProps<typeof Popover.Arrow>;
@@ -50,7 +50,7 @@ declare const PopoverArrow: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: PopoverArrowProps): react_jsx_runtime162.JSX.Element;
53
+ }: PopoverArrowProps): react_jsx_runtime93.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  type PopoverTitleProps = React.ComponentProps<typeof Popover.Title>;
@@ -58,7 +58,7 @@ declare const PopoverTitle: {
58
58
  ({
59
59
  className,
60
60
  ...props
61
- }: PopoverTitleProps): react_jsx_runtime162.JSX.Element;
61
+ }: PopoverTitleProps): react_jsx_runtime93.JSX.Element;
62
62
  displayName: string;
63
63
  };
64
64
  type PopoverDescriptionProps = React.ComponentProps<typeof Popover.Description>;
@@ -66,7 +66,7 @@ declare const PopoverDescription: {
66
66
  ({
67
67
  className,
68
68
  ...props
69
- }: PopoverDescriptionProps): react_jsx_runtime162.JSX.Element;
69
+ }: PopoverDescriptionProps): react_jsx_runtime93.JSX.Element;
70
70
  displayName: string;
71
71
  };
72
72
  type PopoverCloseProps = React.ComponentProps<typeof Popover.Close>;
@@ -74,7 +74,7 @@ declare const PopoverClose: {
74
74
  ({
75
75
  className,
76
76
  ...props
77
- }: PopoverCloseProps): react_jsx_runtime162.JSX.Element;
77
+ }: PopoverCloseProps): react_jsx_runtime93.JSX.Element;
78
78
  displayName: string;
79
79
  };
80
80
  type PopoverViewportProps = React.ComponentProps<typeof Popover.Viewport>;
@@ -82,7 +82,7 @@ declare const PopoverViewport: {
82
82
  ({
83
83
  className,
84
84
  ...props
85
- }: PopoverViewportProps): react_jsx_runtime162.JSX.Element;
85
+ }: PopoverViewportProps): react_jsx_runtime93.JSX.Element;
86
86
  displayName: string;
87
87
  };
88
88
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"popover.d.ts","names":[],"sources":["../src/components/popover.tsx"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"popover.d.ts","names":[],"sources":["../src/components/popover.tsx"],"sourcesContent":[],"mappings":"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"}
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime173 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime104 from "react/jsx-runtime";
3
3
  import { PreviewCard } from "@base-ui/react/preview-card";
4
4
 
5
5
  //#region src/components/preview-card.d.ts
6
6
  type PreviewCardRootProps = React.ComponentProps<typeof PreviewCard.Root>;
7
7
  declare const PreviewCardRoot: {
8
- (props: PreviewCardRootProps): react_jsx_runtime173.JSX.Element;
8
+ (props: PreviewCardRootProps): react_jsx_runtime104.JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type PreviewCardTriggerProps = React.ComponentProps<typeof PreviewCard.Trigger>;
@@ -13,12 +13,12 @@ declare const PreviewCardTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: PreviewCardTriggerProps): react_jsx_runtime173.JSX.Element;
16
+ }: PreviewCardTriggerProps): react_jsx_runtime104.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type PreviewCardPortalProps = React.ComponentProps<typeof PreviewCard.Portal>;
20
20
  declare const PreviewCardPortal: {
21
- (props: PreviewCardPortalProps): react_jsx_runtime173.JSX.Element;
21
+ (props: PreviewCardPortalProps): react_jsx_runtime104.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  type PreviewCardBackdropProps = React.ComponentProps<typeof PreviewCard.Backdrop>;
@@ -26,7 +26,7 @@ declare const PreviewCardBackdrop: {
26
26
  ({
27
27
  className,
28
28
  ...props
29
- }: PreviewCardBackdropProps): react_jsx_runtime173.JSX.Element;
29
+ }: PreviewCardBackdropProps): react_jsx_runtime104.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type PreviewCardPositionerProps = React.ComponentProps<typeof PreviewCard.Positioner>;
@@ -34,7 +34,7 @@ declare const PreviewCardPositioner: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: PreviewCardPositionerProps): react_jsx_runtime173.JSX.Element;
37
+ }: PreviewCardPositionerProps): react_jsx_runtime104.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type PreviewCardPopupProps = React.ComponentProps<typeof PreviewCard.Popup>;
@@ -42,7 +42,7 @@ declare const PreviewCardPopup: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: PreviewCardPopupProps): react_jsx_runtime173.JSX.Element;
45
+ }: PreviewCardPopupProps): react_jsx_runtime104.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type PreviewCardArrowProps = React.ComponentProps<typeof PreviewCard.Arrow>;
@@ -50,7 +50,7 @@ declare const PreviewCardArrow: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: PreviewCardArrowProps): react_jsx_runtime173.JSX.Element;
53
+ }: PreviewCardArrowProps): react_jsx_runtime104.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime68 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime201 from "react/jsx-runtime";
3
3
  import { Progress } from "@base-ui/react/progress";
4
4
 
5
5
  //#region src/components/progress.d.ts
@@ -8,7 +8,7 @@ declare const ProgressRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: ProgressRootProps): react_jsx_runtime68.JSX.Element;
11
+ }: ProgressRootProps): react_jsx_runtime201.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type ProgressTrackProps = React.ComponentProps<typeof Progress.Track>;
@@ -16,7 +16,7 @@ declare const ProgressTrack: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: ProgressTrackProps): react_jsx_runtime68.JSX.Element;
19
+ }: ProgressTrackProps): react_jsx_runtime201.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type ProgressIndicatorProps = React.ComponentProps<typeof Progress.Indicator>;
@@ -24,7 +24,7 @@ declare const ProgressIndicator: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: ProgressIndicatorProps): react_jsx_runtime68.JSX.Element;
27
+ }: ProgressIndicatorProps): react_jsx_runtime201.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type ProgressValueProps = React.ComponentProps<typeof Progress.Value>;
@@ -32,7 +32,7 @@ declare const ProgressValue: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: ProgressValueProps): react_jsx_runtime68.JSX.Element;
35
+ }: ProgressValueProps): react_jsx_runtime201.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type ProgressLabelProps = React.ComponentProps<typeof Progress.Label>;
@@ -40,7 +40,7 @@ declare const ProgressLabel: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: ProgressLabelProps): react_jsx_runtime68.JSX.Element;
43
+ }: ProgressLabelProps): react_jsx_runtime201.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"progress.d.ts","names":[],"sources":["../src/components/progress.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,mBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAYjB,kBAAA,GAAqB,KAAA,CAAM,cAZkC,CAAA,OAYZ,QAAA,CAAa,KAZD,CAAA;cAc5D,aAdyB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,kBAdH,CAAA,EAcqB,mBAAA,CAAA,GAAA,CAAA,OAdrB;EAEvC,WAAA,EAAA,MAEL;CAAA;KA4BI,sBAAA,GAAyB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAEjE,iBAhCyC,EAAA;;IAAiB,SAAA;IAAA,GAAA;EAAA,CAAA,EAgCZ,sBAhCY,CAAA,EAgCU,mBAAA,CAAA,GAAA,CAAA,OAhCV;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAkD3D,kBAAA,GAAqB,KAAA,CAAM,cAxCT,CAAA,OAwC+B,QAAA,CAAa,KAxC5C,CAAA;cA0CjB,aA1C6D,EAAA;;IAAzC,SAAM;IAAA,GAAA;EAAA,CAAA,EA0CgB,kBA1ChB,CAAA,EA0CkC,mBAAA,CAAA,GAAA,CAAA,OA1ClC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAyDzC,kBAAA,GAAqB,KAAA,CAAM,cA7C/B,CAAA,OA6CqD,QAAA,CAAa,KA7ClE,CAAA;cA+CK;;IAzD0C,SAAA;IAAA,GAAA;EAAA,CAAA,EAyDA,kBAzDA,CAAA,EAyDkB,mBAAA,CAAA,GAAA,CAAA,OAzDlB;aAAkB,EAAA,MAAA;CAAA"}
1
+ {"version":3,"file":"progress.d.ts","names":[],"sources":["../src/components/progress.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,oBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAYjB,kBAAA,GAAqB,KAAA,CAAM,cAZkC,CAAA,OAYZ,QAAA,CAAa,KAZD,CAAA;cAc5D,aAdyB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,kBAdH,CAAA,EAcqB,oBAAA,CAAA,GAAA,CAAA,OAdrB;EAEvC,WAAA,EAAA,MAEL;CAAA;KA4BI,sBAAA,GAAyB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAEjE,iBAhCyC,EAAA;;IAAiB,SAAA;IAAA,GAAA;EAAA,CAAA,EAgCZ,sBAhCY,CAAA,EAgCU,oBAAA,CAAA,GAAA,CAAA,OAhCV;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAkD3D,kBAAA,GAAqB,KAAA,CAAM,cAxCT,CAAA,OAwC+B,QAAA,CAAa,KAxC5C,CAAA;cA0CjB,aA1C6D,EAAA;;IAAzC,SAAM;IAAA,GAAA;EAAA,CAAA,EA0CgB,kBA1ChB,CAAA,EA0CkC,oBAAA,CAAA,GAAA,CAAA,OA1ClC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAyDzC,kBAAA,GAAqB,KAAA,CAAM,cA7C/B,CAAA,OA6CqD,QAAA,CAAa,KA7ClE,CAAA;cA+CK;;IAzD0C,SAAA;IAAA,GAAA;EAAA,CAAA,EAyDA,kBAzDA,CAAA,EAyDkB,oBAAA,CAAA,GAAA,CAAA,OAzDlB;aAAkB,EAAA,MAAA;CAAA"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime75 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime217 from "react/jsx-runtime";
3
3
  import { RadioGroup } from "@base-ui/react/radio-group";
4
4
 
5
5
  //#region src/components/radio-group.d.ts
@@ -8,7 +8,7 @@ declare const RadioGroupRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: RadioGroupRootProps): react_jsx_runtime75.JSX.Element;
11
+ }: RadioGroupRootProps): react_jsx_runtime217.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"radio-group.d.ts","names":[],"sources":["../src/components/radio-group.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,mBAAA,GAAsB,KAAA,CAAM,sBAAsB;cAEjD;;;;KAA2C,sBAAmB,mBAAA,CAAA,GAAA,CAAA;EAF/D,WAAA,EAAA,MAAA;CAAmB"}
1
+ {"version":3,"file":"radio-group.d.ts","names":[],"sources":["../src/components/radio-group.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,mBAAA,GAAsB,KAAA,CAAM,sBAAsB;cAEjD;;;;KAA2C,sBAAmB,oBAAA,CAAA,GAAA,CAAA;EAF/D,WAAA,EAAA,MAAA;CAAmB"}
package/dist/radio.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime73 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime215 from "react/jsx-runtime";
3
3
  import { Radio } from "@base-ui/react/radio";
4
4
 
5
5
  //#region src/components/radio.d.ts
@@ -8,7 +8,7 @@ declare const RadioRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: RadioRootProps): react_jsx_runtime73.JSX.Element;
11
+ }: RadioRootProps): react_jsx_runtime215.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type RadioIndicatorProps = React.ComponentProps<typeof Radio.Indicator>;
@@ -16,7 +16,7 @@ declare const RadioIndicator: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: RadioIndicatorProps): react_jsx_runtime73.JSX.Element;
19
+ }: RadioIndicatorProps): react_jsx_runtime215.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"radio.d.ts","names":[],"sources":["../src/components/radio.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,mBAAA,CAAA,GAAA,CAAA;EAFrD,WAAA,EAAA,MAAc;CAAA;KAwBd,mBAAA,GAAsB,KAAA,CAAM,cAxB2B,CAAA,OAwBL,KAAA,CAAU,SAxBL,CAAA;cA0BtD,cA1BsB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EA0BO,mBA1BP,CAAA,EA0B0B,mBAAA,CAAA,GAAA,CAAA,OA1B1B;EAEpC,WAAA,EAcL,MAAA;CAAA"}
1
+ {"version":3,"file":"radio.d.ts","names":[],"sources":["../src/components/radio.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,oBAAA,CAAA,GAAA,CAAA;EAFrD,WAAA,EAAA,MAAc;CAAA;KAwBd,mBAAA,GAAsB,KAAA,CAAM,cAxB2B,CAAA,OAwBL,KAAA,CAAU,SAxBL,CAAA;cA0BtD,cA1BsB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EA0BO,mBA1BP,CAAA,EA0B0B,oBAAA,CAAA,GAAA,CAAA,OA1B1B;EAEpC,WAAA,EAcL,MAAA;CAAA"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime91 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime6 from "react/jsx-runtime";
3
3
  import { ScrollArea } from "@base-ui/react/scroll-area";
4
4
 
5
5
  //#region src/components/scroll-area.d.ts
@@ -8,7 +8,7 @@ declare const ScrollAreaRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: ScrollAreaRootProps): react_jsx_runtime91.JSX.Element;
11
+ }: ScrollAreaRootProps): react_jsx_runtime6.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type ScrollAreaViewportProps = React.ComponentProps<typeof ScrollArea.Viewport>;
@@ -16,7 +16,7 @@ declare const ScrollAreaViewport: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: ScrollAreaViewportProps): react_jsx_runtime91.JSX.Element;
19
+ }: ScrollAreaViewportProps): react_jsx_runtime6.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type ScrollAreaContentProps = React.ComponentProps<typeof ScrollArea.Content>;
@@ -24,7 +24,7 @@ declare const ScrollAreaContent: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: ScrollAreaContentProps): react_jsx_runtime91.JSX.Element;
27
+ }: ScrollAreaContentProps): react_jsx_runtime6.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type ScrollAreaScrollbarProps = React.ComponentProps<typeof ScrollArea.Scrollbar>;
@@ -33,7 +33,7 @@ declare const ScrollAreaScrollbar: {
33
33
  className,
34
34
  orientation,
35
35
  ...props
36
- }: ScrollAreaScrollbarProps): react_jsx_runtime91.JSX.Element;
36
+ }: ScrollAreaScrollbarProps): react_jsx_runtime6.JSX.Element;
37
37
  displayName: string;
38
38
  };
39
39
  type ScrollAreaThumbProps = React.ComponentProps<typeof ScrollArea.Thumb>;
@@ -41,7 +41,7 @@ declare const ScrollAreaThumb: {
41
41
  ({
42
42
  className,
43
43
  ...props
44
- }: ScrollAreaThumbProps): react_jsx_runtime91.JSX.Element;
44
+ }: ScrollAreaThumbProps): react_jsx_runtime6.JSX.Element;
45
45
  displayName: string;
46
46
  };
47
47
  type ScrollAreaCornerProps = React.ComponentProps<typeof ScrollArea.Corner>;
@@ -49,7 +49,7 @@ declare const ScrollAreaCorner: {
49
49
  ({
50
50
  className,
51
51
  ...props
52
- }: ScrollAreaCornerProps): react_jsx_runtime91.JSX.Element;
52
+ }: ScrollAreaCornerProps): react_jsx_runtime6.JSX.Element;
53
53
  displayName: string;
54
54
  };
55
55
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"scroll-area.d.ts","names":[],"sources":["../src/components/scroll-area.tsx"],"sourcesContent":[],"mappings":";;;;;KAOK,mBAAA,GAAsB,KAAA,CAAM,sBAAsB,UAAA,CAAe;cAEhE;;;;KAA2C,sBAAmB,mBAAA,CAAA,GAAA,CAAA;EAF/D,WAAA,EAAA,MAAA;CAAmB;KAQnB,uBAAA,GAA0B,KAAA,CAAM,cARiC,CAAA,OAQX,UAAA,CAAe,QARJ,CAAA;cAUhE,kBAV2B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAUM,uBAVN,CAAA,EAU6B,mBAAA,CAAA,GAAA,CAAA,OAV7B;EAEzC,WAAA,EAAA,MAEL;CAAA;KAiBI,sBAAA,GAAyB,KAAA,CAAM,sBAAsB,UAAA,CAAe;cAEnE,iBArB2C,EAAA;;IAAmB,SAAA;IAAA,GAAA;EAAA,CAAA,EAqBhB,sBArBgB,CAAA,EAqBM,mBAAA,CAAA,GAAA,CAAA,OArBN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA2B/D,wBAAA,GAA2B,KAAA,CAAM,cArBV,CAAA,OAqBgC,UAAA,CAAe,SArB/C,CAAA;cAuBtB,mBAvBoE,EAAA;;IAA3C,SAAM;IAAA,WAAA;IAAA,GAAA;EAAA,CAAA,EA2BlC,wBA3BkC,CAAA,EA2BV,mBAAA,CAAA,GAAA,CAAA,OA3BU;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KA6C9C,oBAAA,GAAuB,KAAA,CAAM,cApCjC,CAAA,OAoCuD,UAAA,CAAe,KApCtE,CAAA;cAsCK;;IA7C+C,SAAA;IAAA,GAAA;EAAA,CAAA,EA6CH,oBA7CG,CAAA,EA6CiB,mBAAA,CAAA,GAAA,CAAA,OA7CjB;aAAuB,EAAA,MAAA;CAAA;AAAA,KA4DvE,qBAAA,GAAwB,KAAA,CAAM,cAjDR,CAAA,OAiD8B,UAAA,CAAe,MAjD7C,CAAA;cAmDrB,gBAnDqB,EAAA;;IAA+B,SAAA;IAAe,GAAA;EAAA,CAAA,EAmDtB,qBAnDsB,CAAA,EAmDD,mBAAA,CAAA,GAAA,CAAA,OAnDC;aAArC,EAAA,MAAA;CAAc"}
1
+ {"version":3,"file":"scroll-area.d.ts","names":[],"sources":["../src/components/scroll-area.tsx"],"sourcesContent":[],"mappings":";;;;;KAOK,mBAAA,GAAsB,KAAA,CAAM,sBAAsB,UAAA,CAAe;cAEhE;;;;KAA2C,sBAAmB,kBAAA,CAAA,GAAA,CAAA;EAF/D,WAAA,EAAA,MAAA;CAAmB;KAQnB,uBAAA,GAA0B,KAAA,CAAM,cARiC,CAAA,OAQX,UAAA,CAAe,QARJ,CAAA;cAUhE,kBAV2B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAUM,uBAVN,CAAA,EAU6B,kBAAA,CAAA,GAAA,CAAA,OAV7B;EAEzC,WAAA,EAAA,MAEL;CAAA;KAiBI,sBAAA,GAAyB,KAAA,CAAM,sBAAsB,UAAA,CAAe;cAEnE,iBArB2C,EAAA;;IAAmB,SAAA;IAAA,GAAA;EAAA,CAAA,EAqBhB,sBArBgB,CAAA,EAqBM,kBAAA,CAAA,GAAA,CAAA,OArBN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA2B/D,wBAAA,GAA2B,KAAA,CAAM,cArBV,CAAA,OAqBgC,UAAA,CAAe,SArB/C,CAAA;cAuBtB,mBAvBoE,EAAA;;IAA3C,SAAM;IAAA,WAAA;IAAA,GAAA;EAAA,CAAA,EA2BlC,wBA3BkC,CAAA,EA2BV,kBAAA,CAAA,GAAA,CAAA,OA3BU;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KA6C9C,oBAAA,GAAuB,KAAA,CAAM,cApCjC,CAAA,OAoCuD,UAAA,CAAe,KApCtE,CAAA;cAsCK;;IA7C+C,SAAA;IAAA,GAAA;EAAA,CAAA,EA6CH,oBA7CG,CAAA,EA6CiB,kBAAA,CAAA,GAAA,CAAA,OA7CjB;aAAuB,EAAA,MAAA;CAAA;AAAA,KA4DvE,qBAAA,GAAwB,KAAA,CAAM,cAjDR,CAAA,OAiD8B,UAAA,CAAe,MAjD7C,CAAA;cAmDrB,gBAnDqB,EAAA;;IAA+B,SAAA;IAAe,GAAA;EAAA,CAAA,EAmDtB,qBAnDsB,CAAA,EAmDD,kBAAA,CAAA,GAAA,CAAA,OAnDC;aAArC,EAAA,MAAA;CAAc"}
package/dist/select.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime98 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime75 from "react/jsx-runtime";
3
3
  import { Select, SelectRootProps as SelectRootProps$1 } from "@base-ui/react/select";
4
4
 
5
5
  //#region src/components/select.d.ts
6
- declare function SelectRoot<Value, Multiple extends boolean | undefined = false>(props: SelectRootProps$1<Value, Multiple>): react_jsx_runtime98.JSX.Element;
6
+ declare function SelectRoot<Value, Multiple extends boolean | undefined = false>(props: SelectRootProps$1<Value, Multiple>): react_jsx_runtime75.JSX.Element;
7
7
  declare namespace SelectRoot {
8
8
  var displayName: string;
9
9
  }
@@ -13,7 +13,7 @@ declare const SelectTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: SelectTriggerProps): react_jsx_runtime98.JSX.Element;
16
+ }: SelectTriggerProps): react_jsx_runtime75.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type SelectValueProps = React.ComponentProps<typeof Select.Value>;
@@ -21,7 +21,7 @@ declare const SelectValue: {
21
21
  ({
22
22
  className,
23
23
  ...props
24
- }: SelectValueProps): react_jsx_runtime98.JSX.Element;
24
+ }: SelectValueProps): react_jsx_runtime75.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type SelectIconProps = React.ComponentProps<typeof Select.Icon>;
@@ -29,7 +29,7 @@ declare const SelectIcon: {
29
29
  ({
30
30
  className,
31
31
  ...props
32
- }: SelectIconProps): react_jsx_runtime98.JSX.Element;
32
+ }: SelectIconProps): react_jsx_runtime75.JSX.Element;
33
33
  displayName: string;
34
34
  };
35
35
  type SelectBackdropProps = React.ComponentProps<typeof Select.Backdrop>;
@@ -37,12 +37,12 @@ declare const SelectBackdrop: {
37
37
  ({
38
38
  className,
39
39
  ...props
40
- }: SelectBackdropProps): react_jsx_runtime98.JSX.Element;
40
+ }: SelectBackdropProps): react_jsx_runtime75.JSX.Element;
41
41
  displayName: string;
42
42
  };
43
43
  type SelectPortalProps = React.ComponentProps<typeof Select.Portal>;
44
44
  declare const SelectPortal: {
45
- (props: SelectPortalProps): react_jsx_runtime98.JSX.Element;
45
+ (props: SelectPortalProps): react_jsx_runtime75.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type SelectPositionerProps = React.ComponentProps<typeof Select.Positioner>;
@@ -50,7 +50,7 @@ declare const SelectPositioner: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: SelectPositionerProps): react_jsx_runtime98.JSX.Element;
53
+ }: SelectPositionerProps): react_jsx_runtime75.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  type SelectPopupProps = React.ComponentProps<typeof Select.Popup>;
@@ -58,7 +58,7 @@ declare const SelectPopup: {
58
58
  ({
59
59
  className,
60
60
  ...props
61
- }: SelectPopupProps): react_jsx_runtime98.JSX.Element;
61
+ }: SelectPopupProps): react_jsx_runtime75.JSX.Element;
62
62
  displayName: string;
63
63
  };
64
64
  type SelectListProps = React.ComponentProps<typeof Select.List>;
@@ -66,7 +66,7 @@ declare const SelectList: {
66
66
  ({
67
67
  className,
68
68
  ...props
69
- }: SelectListProps): react_jsx_runtime98.JSX.Element;
69
+ }: SelectListProps): react_jsx_runtime75.JSX.Element;
70
70
  displayName: string;
71
71
  };
72
72
  type SelectArrowProps = React.ComponentProps<typeof Select.Arrow>;
@@ -74,7 +74,7 @@ declare const SelectArrow: {
74
74
  ({
75
75
  className,
76
76
  ...props
77
- }: SelectArrowProps): react_jsx_runtime98.JSX.Element;
77
+ }: SelectArrowProps): react_jsx_runtime75.JSX.Element;
78
78
  displayName: string;
79
79
  };
80
80
  type SelectItemProps = React.ComponentProps<typeof Select.Item>;
@@ -82,7 +82,7 @@ declare const SelectItem: {
82
82
  ({
83
83
  className,
84
84
  ...props
85
- }: SelectItemProps): react_jsx_runtime98.JSX.Element;
85
+ }: SelectItemProps): react_jsx_runtime75.JSX.Element;
86
86
  displayName: string;
87
87
  };
88
88
  type SelectItemTextProps = React.ComponentProps<typeof Select.ItemText>;
@@ -90,7 +90,7 @@ declare const SelectItemText: {
90
90
  ({
91
91
  className,
92
92
  ...props
93
- }: SelectItemTextProps): react_jsx_runtime98.JSX.Element;
93
+ }: SelectItemTextProps): react_jsx_runtime75.JSX.Element;
94
94
  displayName: string;
95
95
  };
96
96
  type SelectItemIndicatorProps = React.ComponentProps<typeof Select.ItemIndicator>;
@@ -98,7 +98,7 @@ declare const SelectItemIndicator: {
98
98
  ({
99
99
  className,
100
100
  ...props
101
- }: SelectItemIndicatorProps): react_jsx_runtime98.JSX.Element;
101
+ }: SelectItemIndicatorProps): react_jsx_runtime75.JSX.Element;
102
102
  displayName: string;
103
103
  };
104
104
  type SelectGroupProps = React.ComponentProps<typeof Select.Group>;
@@ -106,7 +106,7 @@ declare const SelectGroup: {
106
106
  ({
107
107
  className,
108
108
  ...props
109
- }: SelectGroupProps): react_jsx_runtime98.JSX.Element;
109
+ }: SelectGroupProps): react_jsx_runtime75.JSX.Element;
110
110
  displayName: string;
111
111
  };
112
112
  type SelectGroupLabelProps = React.ComponentProps<typeof Select.GroupLabel>;
@@ -114,7 +114,7 @@ declare const SelectGroupLabel: {
114
114
  ({
115
115
  className,
116
116
  ...props
117
- }: SelectGroupLabelProps): react_jsx_runtime98.JSX.Element;
117
+ }: SelectGroupLabelProps): react_jsx_runtime75.JSX.Element;
118
118
  displayName: string;
119
119
  };
120
120
  type SelectScrollUpArrowProps = React.ComponentProps<typeof Select.ScrollUpArrow>;
@@ -122,7 +122,7 @@ declare const SelectScrollUpArrow: {
122
122
  ({
123
123
  className,
124
124
  ...props
125
- }: SelectScrollUpArrowProps): react_jsx_runtime98.JSX.Element;
125
+ }: SelectScrollUpArrowProps): react_jsx_runtime75.JSX.Element;
126
126
  displayName: string;
127
127
  };
128
128
  type SelectScrollDownArrowProps = React.ComponentProps<typeof Select.ScrollDownArrow>;
@@ -130,7 +130,7 @@ declare const SelectScrollDownArrow: {
130
130
  ({
131
131
  className,
132
132
  ...props
133
- }: SelectScrollDownArrowProps): react_jsx_runtime98.JSX.Element;
133
+ }: SelectScrollDownArrowProps): react_jsx_runtime75.JSX.Element;
134
134
  displayName: string;
135
135
  };
136
136
  type SelectSeparatorProps = React.ComponentProps<typeof Select.Separator>;
@@ -138,7 +138,7 @@ declare const SelectSeparator: {
138
138
  ({
139
139
  className,
140
140
  ...props
141
- }: SelectSeparatorProps): react_jsx_runtime98.JSX.Element;
141
+ }: SelectSeparatorProps): react_jsx_runtime75.JSX.Element;
142
142
  displayName: string;
143
143
  };
144
144
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime116 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime111 from "react/jsx-runtime";
3
3
  import { Separator as Separator$1 } from "@base-ui/react/separator";
4
4
 
5
5
  //#region src/components/separator.d.ts
@@ -9,7 +9,7 @@ declare const Separator: {
9
9
  className,
10
10
  orientation,
11
11
  ...props
12
- }: SeparatorProps): react_jsx_runtime116.JSX.Element;
12
+ }: SeparatorProps): react_jsx_runtime111.JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime97 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime125 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/skeleton.d.ts
5
5
  type SkeletonAnimation = 'pulse' | 'shimmer' | 'none';
@@ -12,7 +12,7 @@ declare const Skeleton: {
12
12
  className,
13
13
  animation,
14
14
  ...props
15
- }: SkeletonProps): react_jsx_runtime97.JSX.Element;
15
+ }: SkeletonProps): react_jsx_runtime125.JSX.Element;
16
16
  displayName: string;
17
17
  };
18
18
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"skeleton.d.ts","names":[],"sources":["../src/components/skeleton.tsx"],"sourcesContent":[],"mappings":";;;;KAyBY,iBAAA;KAMP,aAAA,GAAgB,KAAA,CAAM;;EANf,SAAA,CAAA,EAQE,iBARe;AAA+B,CAAA;cAWtD,QALY,EAAA;;IAAG,SAAM;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAK2B,aAL3B,CAAA,EAKwC,mBAAA,CAAA,GAAA,CAAA,OALxC;aAEb,EAAA,MAAA;CAAiB"}
1
+ {"version":3,"file":"skeleton.d.ts","names":[],"sources":["../src/components/skeleton.tsx"],"sourcesContent":[],"mappings":";;;;KAyBY,iBAAA;KAMP,aAAA,GAAgB,KAAA,CAAM;;EANf,SAAA,CAAA,EAQE,iBARe;AAA+B,CAAA;cAWtD,QALY,EAAA;;IAAG,SAAM;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAK2B,aAL3B,CAAA,EAKwC,oBAAA,CAAA,GAAA,CAAA,OALxC;aAEb,EAAA,MAAA;CAAiB"}
package/dist/slider.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime76 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime128 from "react/jsx-runtime";
3
3
  import { Slider } from "@base-ui/react/slider";
4
4
 
5
5
  //#region src/components/slider.d.ts
@@ -8,7 +8,7 @@ declare const SliderRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: SliderRootProps): react_jsx_runtime76.JSX.Element;
11
+ }: SliderRootProps): react_jsx_runtime128.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type SliderValueProps = React.ComponentProps<typeof Slider.Value>;
@@ -16,7 +16,7 @@ declare const SliderValue: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: SliderValueProps): react_jsx_runtime76.JSX.Element;
19
+ }: SliderValueProps): react_jsx_runtime128.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type SliderControlProps = React.ComponentProps<typeof Slider.Control>;
@@ -24,7 +24,7 @@ declare const SliderControl: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: SliderControlProps): react_jsx_runtime76.JSX.Element;
27
+ }: SliderControlProps): react_jsx_runtime128.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type SliderTrackProps = React.ComponentProps<typeof Slider.Track>;
@@ -32,7 +32,7 @@ declare const SliderTrack: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: SliderTrackProps): react_jsx_runtime76.JSX.Element;
35
+ }: SliderTrackProps): react_jsx_runtime128.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type SliderIndicatorProps = React.ComponentProps<typeof Slider.Indicator>;
@@ -40,7 +40,7 @@ declare const SliderIndicator: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: SliderIndicatorProps): react_jsx_runtime76.JSX.Element;
43
+ }: SliderIndicatorProps): react_jsx_runtime128.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  type SliderThumbProps = React.ComponentProps<typeof Slider.Thumb>;
@@ -48,7 +48,7 @@ declare const SliderThumb: {
48
48
  ({
49
49
  className,
50
50
  ...props
51
- }: SliderThumbProps): react_jsx_runtime76.JSX.Element;
51
+ }: SliderThumbProps): react_jsx_runtime128.JSX.Element;
52
52
  displayName: string;
53
53
  };
54
54
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"slider.d.ts","names":[],"sources":["../src/components/slider.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,eAAA,GAAkB,KAAA,CAAM,sBAAsB,MAAA,CAAW;cAExD;;;;KAAuC,kBAAe,mBAAA,CAAA,GAAA,CAAA;EAFvD,WAAA,EAAA,MAAe;CAAA;KAYf,gBAAA,GAAmB,KAAA,CAAM,cAZgC,CAAA,OAYV,MAAA,CAAW,KAZD,CAAA;cAcxD,WAduB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,gBAdH,CAAA,EAcmB,mBAAA,CAAA,GAAA,CAAA,OAdnB;EAErC,WAAA,EAEL,MAAA;CAAA;KAyBI,kBAAA,GAAqB,KAAA,CAAM,sBAAsB,MAAA,CAAW;cAE3D,aA7BuC,EAAA;;IAAe,SAAA;IAAA,GAAA;EAAA,CAAA,EA6BZ,kBA7BY,CAAA,EA6BM,mBAAA,CAAA,GAAA,CAAA,OA7BN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA4CvD,gBAAA,GAAmB,KAAA,CAAM,cAlCT,CAAA,OAkC+B,MAAA,CAAW,KAlC1C,CAAA;cAoCf,WApCyD,EAAA;;IAAvC,SAAM;IAAA,GAAA;EAAA,CAAA,EAoCgB,gBApChB,CAAA,EAoCgC,mBAAA,CAAA,GAAA,CAAA,OApChC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAmDvC,oBAAA,GAAuB,KAAA,CAAM,cA1CjC,CAAA,OA0CuD,MAAA,CAAW,SA1ClE,CAAA;cA4CK;;IAnDwC,SAAA;IAAA,GAAA;EAAA,CAAA,EAmDI,oBAnDJ,CAAA,EAmDwB,mBAAA,CAAA,GAAA,CAAA,OAnDxB;aAAgB,EAAA,MAAA;CAAA;AAAA,KAkEzD,gBAAA,GAAmB,KAAA,CAAM,cAnDP,CAAA,OAmD6B,MAAA,CAAW,KAnDxC,CAAA;cAqDjB,WArDiB,EAAA;;IAA+B,SAAW;IAAA,GAAA;EAAA,CAAA,EAqDnB,gBArDmB,CAAA,EAqDH,mBAAA,CAAA,GAAA,CAAA,OArDG;aAAjC,EAAA,MAAA;CAAc"}
1
+ {"version":3,"file":"slider.d.ts","names":[],"sources":["../src/components/slider.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,eAAA,GAAkB,KAAA,CAAM,sBAAsB,MAAA,CAAW;cAExD;;;;KAAuC,kBAAe,oBAAA,CAAA,GAAA,CAAA;EAFvD,WAAA,EAAA,MAAe;CAAA;KAYf,gBAAA,GAAmB,KAAA,CAAM,cAZgC,CAAA,OAYV,MAAA,CAAW,KAZD,CAAA;cAcxD,WAduB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,gBAdH,CAAA,EAcmB,oBAAA,CAAA,GAAA,CAAA,OAdnB;EAErC,WAAA,EAEL,MAAA;CAAA;KAyBI,kBAAA,GAAqB,KAAA,CAAM,sBAAsB,MAAA,CAAW;cAE3D,aA7BuC,EAAA;;IAAe,SAAA;IAAA,GAAA;EAAA,CAAA,EA6BZ,kBA7BY,CAAA,EA6BM,oBAAA,CAAA,GAAA,CAAA,OA7BN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA4CvD,gBAAA,GAAmB,KAAA,CAAM,cAlCT,CAAA,OAkC+B,MAAA,CAAW,KAlC1C,CAAA;cAoCf,WApCyD,EAAA;;IAAvC,SAAM;IAAA,GAAA;EAAA,CAAA,EAoCgB,gBApChB,CAAA,EAoCgC,oBAAA,CAAA,GAAA,CAAA,OApChC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAmDvC,oBAAA,GAAuB,KAAA,CAAM,cA1CjC,CAAA,OA0CuD,MAAA,CAAW,SA1ClE,CAAA;cA4CK;;IAnDwC,SAAA;IAAA,GAAA;EAAA,CAAA,EAmDI,oBAnDJ,CAAA,EAmDwB,oBAAA,CAAA,GAAA,CAAA,OAnDxB;aAAgB,EAAA,MAAA;CAAA;AAAA,KAkEzD,gBAAA,GAAmB,KAAA,CAAM,cAnDP,CAAA,OAmD6B,MAAA,CAAW,KAnDxC,CAAA;cAqDjB,WArDiB,EAAA;;IAA+B,SAAW;IAAA,GAAA;EAAA,CAAA,EAqDnB,gBArDmB,CAAA,EAqDH,oBAAA,CAAA,GAAA,CAAA,OArDG;aAAjC,EAAA,MAAA;CAAc"}
package/dist/switch.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime118 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime126 from "react/jsx-runtime";
3
3
  import { Switch } from "@base-ui/react/switch";
4
4
 
5
5
  //#region src/components/switch.d.ts
@@ -8,7 +8,7 @@ declare const SwitchRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: SwitchRootProps): react_jsx_runtime118.JSX.Element;
11
+ }: SwitchRootProps): react_jsx_runtime126.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type SwitchThumbProps = React.ComponentProps<typeof Switch.Thumb>;
@@ -16,7 +16,7 @@ declare const SwitchThumb: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: SwitchThumbProps): react_jsx_runtime118.JSX.Element;
19
+ }: SwitchThumbProps): react_jsx_runtime126.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  //#endregion