@lglab/compose-ui 0.30.0 → 0.30.2
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/accordion.d.ts +6 -6
- package/dist/accordion.d.ts.map +1 -1
- package/dist/autocomplete.d.ts +13 -13
- package/dist/avatar.d.ts +5 -5
- package/dist/avatar.d.ts.map +1 -1
- package/dist/badge.d.ts +4 -4
- package/dist/badge.d.ts.map +1 -1
- package/dist/button.d.ts +2 -2
- package/dist/card.d.ts +8 -8
- package/dist/checkbox-group.d.ts +2 -2
- package/dist/checkbox.d.ts +3 -3
- package/dist/checkbox.d.ts.map +1 -1
- package/dist/collapsible.d.ts +4 -4
- package/dist/combobox.d.ts +25 -25
- package/dist/context-menu.d.ts +20 -20
- package/dist/dialog.d.ts +11 -11
- package/dist/drawer.d.ts +12 -12
- package/dist/field.d.ts +8 -8
- package/dist/fieldset.d.ts +3 -3
- package/dist/fieldset.d.ts.map +1 -1
- package/dist/fieldset.js +1 -1
- package/dist/fieldset.js.map +1 -1
- package/dist/form.d.ts +2 -2
- package/dist/input.d.ts +2 -2
- package/dist/input.d.ts.map +1 -1
- package/dist/menu.d.ts +20 -20
- package/dist/menubar.d.ts +21 -21
- package/dist/meter.d.ts +6 -6
- package/dist/navigation-menu.d.ts +14 -14
- package/dist/navigation-menu.d.ts.map +1 -1
- package/dist/number-field.d.ts +8 -8
- package/dist/pagination.d.ts +10 -10
- package/dist/pagination.d.ts.map +1 -1
- package/dist/popover.d.ts +12 -12
- package/dist/preview-card.d.ts +8 -8
- package/dist/progress.d.ts +6 -6
- package/dist/radio-group.d.ts +2 -2
- package/dist/radio.d.ts +3 -3
- package/dist/scroll-area.d.ts +7 -7
- package/dist/select.d.ts +19 -19
- package/dist/separator.d.ts +2 -2
- package/dist/separator.d.ts.map +1 -1
- package/dist/skeleton.d.ts +2 -2
- package/dist/skeleton.d.ts.map +1 -1
- package/dist/slider.d.ts +7 -7
- package/dist/slider.d.ts.map +1 -1
- package/dist/switch.d.ts +3 -3
- package/dist/tabs.d.ts +6 -6
- package/dist/textarea.d.ts +2 -2
- package/dist/toast.d.ts +10 -10
- package/dist/toast.d.ts.map +1 -1
- package/dist/toggle-group.d.ts +3 -3
- package/dist/toggle.d.ts +2 -2
- package/dist/toolbar.d.ts +7 -7
- package/dist/toolbar.js +1 -1
- package/dist/toolbar.js.map +1 -1
- package/dist/tooltip.d.ts +8 -8
- package/package.json +1 -1
package/dist/accordion.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime16 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):
|
|
11
|
+
}: AccordionRootProps): react_jsx_runtime16.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):
|
|
19
|
+
}: AccordionItemProps): react_jsx_runtime16.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):
|
|
27
|
+
}: AccordionHeaderProps): react_jsx_runtime16.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):
|
|
36
|
+
}: AccordionTriggerProps): react_jsx_runtime16.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):
|
|
44
|
+
}: AccordionPanelProps): react_jsx_runtime16.JSX.Element;
|
|
45
45
|
displayName: string;
|
|
46
46
|
};
|
|
47
47
|
//#endregion
|
package/dist/accordion.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accordion.d.ts","names":[],"sources":["../src/components/accordion.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,kBAAA,GAAqB,KAAA,CAAM,sBAAsB,SAAA,CAAc;cAE9D;;;;KAA0C,qBAAkB,
|
|
1
|
+
{"version":3,"file":"accordion.d.ts","names":[],"sources":["../src/components/accordion.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,kBAAA,GAAqB,KAAA,CAAM,sBAAsB,SAAA,CAAc;cAE9D;;;;KAA0C,qBAAkB,mBAAA,CAAA,GAAA,CAAA;EAF7D,WAAA,EAAA,MAAA;CAAkB;KAYlB,kBAAA,GAAqB,KAAA,CAAM,cAZoC,CAAA,OAYd,SAAA,CAAc,IAZA,CAAA;cAc9D,aAd0B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcE,kBAdF,CAAA,EAcoB,mBAAA,CAAA,GAAA,CAAA,OAdpB;EAExC,WAAA,EAAA,MAEL;CAAA;KAyBI,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,SAAA,CAAc;cAEhE,eA7B0C,EAAA;;IAAkB,SAAA;IAAA,GAAA;EAAA,CAAA,EA6BhB,oBA7BgB,CAAA,EA6BI,mBAAA,CAAA,GAAA,CAAA,OA7BJ;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAuC7D,qBAAA,GAAwB,KAAA,CAAM,cA7BZ,CAAA,OA6BkC,SAAA,CAAc,OA7BhD,CAAA;cA+BjB,gBA/B8D,EAAA;;IAA1C,SAAM;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA,EA+B6B,qBA/B7B,CAAA,EA+BkD,mBAAA,CAAA,GAAA,CAAA,OA/BlD;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAmDzC,mBAAA,GAAsB,KAAA,CAAM,cA1ChC,CAAA,OA0CsD,SAAA,CAAc,KA1CpE,CAAA;cA4CK;;IAnD0C,SAAA;IAAA,GAAA;EAAA,CAAA,EAmDC,mBAnDD,CAAA,EAmDoB,mBAAA,CAAA,GAAA,CAAA,OAnDpB;aAAkB,EAAA,MAAA;CAAA"}
|
package/dist/autocomplete.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime121 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):
|
|
12
|
+
}: AutocompleteInputProps): react_jsx_runtime121.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):
|
|
17
|
+
(props: AutocompletePortalProps): react_jsx_runtime121.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):
|
|
25
|
+
}: AutocompletePositionerProps): react_jsx_runtime121.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):
|
|
33
|
+
}: AutocompletePopupProps): react_jsx_runtime121.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):
|
|
41
|
+
}: AutocompleteEmptyProps): react_jsx_runtime121.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):
|
|
49
|
+
}: AutocompleteListProps): react_jsx_runtime121.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):
|
|
57
|
+
}: AutocompleteItemProps): react_jsx_runtime121.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):
|
|
65
|
+
}: AutocompleteStatusProps): react_jsx_runtime121.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):
|
|
73
|
+
}: AutocompleteGroupProps): react_jsx_runtime121.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):
|
|
81
|
+
}: AutocompleteGroupLabelProps): react_jsx_runtime121.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):
|
|
86
|
+
(props: AutocompleteCollectionProps): react_jsx_runtime121.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):
|
|
94
|
+
}: AutocompleteSeparatorProps): react_jsx_runtime121.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
|
|
2
|
+
import * as react_jsx_runtime84 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):
|
|
16
|
+
}: AvatarRootProps): react_jsx_runtime84.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):
|
|
24
|
+
}: AvatarImageProps): react_jsx_runtime84.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):
|
|
32
|
+
}: AvatarFallbackProps): react_jsx_runtime84.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):
|
|
51
|
+
}: AvatarStackProps): react_jsx_runtime84.JSX.Element;
|
|
52
52
|
displayName: string;
|
|
53
53
|
};
|
|
54
54
|
//#endregion
|
package/dist/avatar.d.ts.map
CHANGED
|
@@ -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,
|
|
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"}
|
package/dist/badge.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime8 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):
|
|
27
|
+
}: BadgeProps): react_jsx_runtime8.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):
|
|
35
|
+
}: BadgeDotProps): react_jsx_runtime8.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):
|
|
43
|
+
}: BadgeButtonProps): react_jsx_runtime8.JSX.Element;
|
|
44
44
|
displayName: string;
|
|
45
45
|
};
|
|
46
46
|
//#endregion
|
package/dist/badge.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"badge.d.ts","names":[],"sources":["../src/components/badge.tsx"],"sourcesContent":[],"mappings":";;;;KAiLY,YAAA;KAQA,eAAA;KAEA,SAAA;AAVA,KAYA,UAAA,GAZY,MAAA,GAAA,SAAA;AAQxB,KAUK,UAAA,GAAa,KAAA,CAAM,cAVG,CAAA,MAAA,CAAA,GAAA;EAEf;EAEA,OAAA,CAAA,EAQA,YARU;EAMjB;EAAU,UAAA,CAAA,EAIA,eAJA;;MAEH,CAAA,EAIH,SAJG;;OAIH,CAAA,EAEC,UAFD;;cAKH,KAHc,EAAA;EAGd,CAAA;IAAA,SAOL;IAAA,OAAA;IAAA,UAAA;IAAA,IAAA;IAAA,KAAA;IAAA,GAAA;EAAA,CAAA,EAPyE,UAOzE,CAAA,EAPmF,
|
|
1
|
+
{"version":3,"file":"badge.d.ts","names":[],"sources":["../src/components/badge.tsx"],"sourcesContent":[],"mappings":";;;;KAiLY,YAAA;KAQA,eAAA;KAEA,SAAA;AAVA,KAYA,UAAA,GAZY,MAAA,GAAA,SAAA;AAQxB,KAUK,UAAA,GAAa,KAAA,CAAM,cAVG,CAAA,MAAA,CAAA,GAAA;EAEf;EAEA,OAAA,CAAA,EAQA,YARU;EAMjB;EAAU,UAAA,CAAA,EAIA,eAJA;;MAEH,CAAA,EAIH,SAJG;;OAIH,CAAA,EAEC,UAFD;;cAKH,KAHc,EAAA;EAGd,CAAA;IAAA,SAOL;IAAA,OAAA;IAAA,UAAA;IAAA,IAAA;IAAA,KAAA;IAAA,GAAA;EAAA,CAAA,EAPyE,UAOzE,CAAA,EAPmF,kBAAA,CAAA,GAAA,CAAA,OAOnF;EAAA,WAAA,EAAA,MAAA;;KAQI,aAAA,GAAgB,KAAA,CAAM;cAErB;;;;KAAqC,gBAAa,kBAAA,CAAA,GAAA,CAAA;;;KAgBnD,gBAAA,GAAmB,KAAA,CAAM,cAjCsD,CAAA,QAAA,CAAA;cAmC9E,WAnC8E,EAAA;EAe/E,CAAA;IAAA,SAAA;IAAA,GAAa;EAAS,CAAT,EAoB4B,gBApBnB,CAAA,EAoBmC,kBAAA,CAAA,GAAA,CAAA,OApBrB;EAEnC,WAQL,EAAA,MAAA;CAAA"}
|
package/dist/button.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
|
|
2
2
|
import { Button as Button$1 } from "@base-ui/react/button";
|
|
3
3
|
import * as React from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime134 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/button.d.ts
|
|
7
7
|
type ButtonProps = React.ComponentProps<typeof Button$1> & {
|
|
@@ -18,7 +18,7 @@ declare const Button: {
|
|
|
18
18
|
disabled,
|
|
19
19
|
children,
|
|
20
20
|
...props
|
|
21
|
-
}: ButtonProps):
|
|
21
|
+
}: ButtonProps): react_jsx_runtime134.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
package/dist/card.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime135 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):
|
|
26
|
+
}: CardMediaProps): react_jsx_runtime135.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):
|
|
37
|
+
}: CardHeaderProps): react_jsx_runtime135.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):
|
|
54
|
+
}: CardTitleProps): react_jsx_runtime135.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):
|
|
65
|
+
}: CardDescriptionProps): react_jsx_runtime135.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):
|
|
76
|
+
}: CardContentProps): react_jsx_runtime135.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):
|
|
88
|
+
}: CardSectionProps): react_jsx_runtime135.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):
|
|
100
|
+
}: CardFooterProps): react_jsx_runtime135.JSX.Element;
|
|
101
101
|
displayName: string;
|
|
102
102
|
};
|
|
103
103
|
//#endregion
|
package/dist/checkbox-group.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime133 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):
|
|
11
|
+
}: CheckboxGroupRootProps): react_jsx_runtime133.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/checkbox.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime177 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):
|
|
11
|
+
}: CheckboxRootProps): react_jsx_runtime177.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):
|
|
20
|
+
}: CheckboxIndicatorProps): react_jsx_runtime177.JSX.Element;
|
|
21
21
|
displayName: string;
|
|
22
22
|
};
|
|
23
23
|
//#endregion
|
package/dist/checkbox.d.ts.map
CHANGED
|
@@ -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,
|
|
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,oBAAA,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,oBAAA,CAAA,GAAA,CAAA,OA3BvC;EAEvC,WAAA,EAAA,MAeL;CAAA"}
|
package/dist/collapsible.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime249 from "react/jsx-runtime";
|
|
3
3
|
import { Collapsible } from "@base-ui/react/collapsible";
|
|
4
4
|
|
|
5
5
|
//#region src/components/collapsible.d.ts
|
|
@@ -8,7 +8,7 @@ declare const CollapsibleRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: CollapsibleRootProps):
|
|
11
|
+
}: CollapsibleRootProps): react_jsx_runtime249.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type CollapsibleTriggerProps = React.ComponentProps<typeof Collapsible.Trigger>;
|
|
@@ -16,7 +16,7 @@ declare const CollapsibleTrigger: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: CollapsibleTriggerProps):
|
|
19
|
+
}: CollapsibleTriggerProps): react_jsx_runtime249.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
type CollapsiblePanelProps = React.ComponentProps<typeof Collapsible.Panel>;
|
|
@@ -24,7 +24,7 @@ declare const CollapsiblePanel: {
|
|
|
24
24
|
({
|
|
25
25
|
className,
|
|
26
26
|
...props
|
|
27
|
-
}: CollapsiblePanelProps):
|
|
27
|
+
}: CollapsiblePanelProps): react_jsx_runtime249.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
//#endregion
|
package/dist/combobox.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime252 from "react/jsx-runtime";
|
|
3
3
|
import { Combobox as BaseCombobox, ComboboxRootProps as ComboboxRootProps$1 } from "@base-ui/react/combobox";
|
|
4
4
|
import * as _base_ui_react0 from "@base-ui/react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/combobox.d.ts
|
|
7
|
-
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>):
|
|
7
|
+
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>): react_jsx_runtime252.JSX.Element;
|
|
8
8
|
declare namespace ComboboxRoot {
|
|
9
9
|
var displayName: string;
|
|
10
10
|
}
|
|
11
11
|
type ComboboxRootProps<Value, Multiple extends boolean | undefined = false> = ComboboxRootProps$1<Value, Multiple>;
|
|
12
12
|
type ComboboxValueProps = React.ComponentProps<typeof BaseCombobox.Value>;
|
|
13
13
|
declare const ComboboxValue: {
|
|
14
|
-
(props: ComboboxValueProps):
|
|
14
|
+
(props: ComboboxValueProps): react_jsx_runtime252.JSX.Element;
|
|
15
15
|
displayName: string;
|
|
16
16
|
};
|
|
17
17
|
type ComboboxIconProps = React.ComponentProps<typeof BaseCombobox.Icon>;
|
|
@@ -19,7 +19,7 @@ declare const ComboboxIcon: {
|
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: ComboboxIconProps):
|
|
22
|
+
}: ComboboxIconProps): react_jsx_runtime252.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
type ComboboxInputProps = React.ComponentProps<typeof BaseCombobox.Input>;
|
|
@@ -27,7 +27,7 @@ declare const ComboboxInput: {
|
|
|
27
27
|
({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: ComboboxInputProps):
|
|
30
|
+
}: ComboboxInputProps): react_jsx_runtime252.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
type ComboboxControlProps = React.ComponentProps<'div'>;
|
|
@@ -35,7 +35,7 @@ declare const ComboboxControl: {
|
|
|
35
35
|
({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: ComboboxControlProps):
|
|
38
|
+
}: ComboboxControlProps): react_jsx_runtime252.JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
41
41
|
type ComboboxClearProps = React.ComponentProps<typeof BaseCombobox.Clear>;
|
|
@@ -43,7 +43,7 @@ declare const ComboboxClear: {
|
|
|
43
43
|
({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: ComboboxClearProps):
|
|
46
|
+
}: ComboboxClearProps): react_jsx_runtime252.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
};
|
|
49
49
|
type ComboboxTriggerProps = React.ComponentProps<typeof BaseCombobox.Trigger>;
|
|
@@ -51,7 +51,7 @@ declare const ComboboxTrigger: {
|
|
|
51
51
|
({
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: ComboboxTriggerProps):
|
|
54
|
+
}: ComboboxTriggerProps): react_jsx_runtime252.JSX.Element;
|
|
55
55
|
displayName: string;
|
|
56
56
|
};
|
|
57
57
|
type ComboboxBackdropProps = React.ComponentProps<typeof BaseCombobox.Backdrop>;
|
|
@@ -59,12 +59,12 @@ declare const ComboboxBackdrop: {
|
|
|
59
59
|
({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: ComboboxBackdropProps):
|
|
62
|
+
}: ComboboxBackdropProps): react_jsx_runtime252.JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
};
|
|
65
65
|
type ComboboxPortalProps = React.ComponentProps<typeof BaseCombobox.Portal>;
|
|
66
66
|
declare const ComboboxPortal: {
|
|
67
|
-
(props: ComboboxPortalProps):
|
|
67
|
+
(props: ComboboxPortalProps): react_jsx_runtime252.JSX.Element;
|
|
68
68
|
displayName: string;
|
|
69
69
|
};
|
|
70
70
|
type ComboboxPositionerProps = React.ComponentProps<typeof BaseCombobox.Positioner>;
|
|
@@ -72,7 +72,7 @@ declare const ComboboxPositioner: {
|
|
|
72
72
|
({
|
|
73
73
|
className,
|
|
74
74
|
...props
|
|
75
|
-
}: ComboboxPositionerProps):
|
|
75
|
+
}: ComboboxPositionerProps): react_jsx_runtime252.JSX.Element;
|
|
76
76
|
displayName: string;
|
|
77
77
|
};
|
|
78
78
|
type ComboboxPopupProps = React.ComponentProps<typeof BaseCombobox.Popup>;
|
|
@@ -80,7 +80,7 @@ declare const ComboboxPopup: {
|
|
|
80
80
|
({
|
|
81
81
|
className,
|
|
82
82
|
...props
|
|
83
|
-
}: ComboboxPopupProps):
|
|
83
|
+
}: ComboboxPopupProps): react_jsx_runtime252.JSX.Element;
|
|
84
84
|
displayName: string;
|
|
85
85
|
};
|
|
86
86
|
type ComboboxListProps = React.ComponentProps<typeof BaseCombobox.List>;
|
|
@@ -88,7 +88,7 @@ declare const ComboboxList: {
|
|
|
88
88
|
({
|
|
89
89
|
className,
|
|
90
90
|
...props
|
|
91
|
-
}: ComboboxListProps):
|
|
91
|
+
}: ComboboxListProps): react_jsx_runtime252.JSX.Element;
|
|
92
92
|
displayName: string;
|
|
93
93
|
};
|
|
94
94
|
type ComboboxEmptyProps = React.ComponentProps<typeof BaseCombobox.Empty>;
|
|
@@ -96,7 +96,7 @@ declare const ComboboxEmpty: {
|
|
|
96
96
|
({
|
|
97
97
|
className,
|
|
98
98
|
...props
|
|
99
|
-
}: ComboboxEmptyProps):
|
|
99
|
+
}: ComboboxEmptyProps): react_jsx_runtime252.JSX.Element;
|
|
100
100
|
displayName: string;
|
|
101
101
|
};
|
|
102
102
|
type ComboboxItemProps = React.ComponentProps<typeof BaseCombobox.Item>;
|
|
@@ -104,7 +104,7 @@ declare const ComboboxItem: {
|
|
|
104
104
|
({
|
|
105
105
|
className,
|
|
106
106
|
...props
|
|
107
|
-
}: ComboboxItemProps):
|
|
107
|
+
}: ComboboxItemProps): react_jsx_runtime252.JSX.Element;
|
|
108
108
|
displayName: string;
|
|
109
109
|
};
|
|
110
110
|
type ComboboxItemTextProps = React.ComponentProps<'span'>;
|
|
@@ -112,7 +112,7 @@ declare const ComboboxItemText: {
|
|
|
112
112
|
({
|
|
113
113
|
className,
|
|
114
114
|
...props
|
|
115
|
-
}: ComboboxItemTextProps):
|
|
115
|
+
}: ComboboxItemTextProps): react_jsx_runtime252.JSX.Element;
|
|
116
116
|
displayName: string;
|
|
117
117
|
};
|
|
118
118
|
type ComboboxItemIndicatorProps = React.ComponentProps<typeof BaseCombobox.ItemIndicator>;
|
|
@@ -120,7 +120,7 @@ declare const ComboboxItemIndicator: {
|
|
|
120
120
|
({
|
|
121
121
|
className,
|
|
122
122
|
...props
|
|
123
|
-
}: ComboboxItemIndicatorProps):
|
|
123
|
+
}: ComboboxItemIndicatorProps): react_jsx_runtime252.JSX.Element;
|
|
124
124
|
displayName: string;
|
|
125
125
|
};
|
|
126
126
|
type ComboboxGroupProps = React.ComponentProps<typeof BaseCombobox.Group>;
|
|
@@ -128,7 +128,7 @@ declare const ComboboxGroup: {
|
|
|
128
128
|
({
|
|
129
129
|
className,
|
|
130
130
|
...props
|
|
131
|
-
}: ComboboxGroupProps):
|
|
131
|
+
}: ComboboxGroupProps): react_jsx_runtime252.JSX.Element;
|
|
132
132
|
displayName: string;
|
|
133
133
|
};
|
|
134
134
|
type ComboboxGroupLabelProps = React.ComponentProps<typeof BaseCombobox.GroupLabel>;
|
|
@@ -136,12 +136,12 @@ declare const ComboboxGroupLabel: {
|
|
|
136
136
|
({
|
|
137
137
|
className,
|
|
138
138
|
...props
|
|
139
|
-
}: ComboboxGroupLabelProps):
|
|
139
|
+
}: ComboboxGroupLabelProps): react_jsx_runtime252.JSX.Element;
|
|
140
140
|
displayName: string;
|
|
141
141
|
};
|
|
142
142
|
type ComboboxCollectionProps = React.ComponentProps<typeof BaseCombobox.Collection>;
|
|
143
143
|
declare const ComboboxCollection: {
|
|
144
|
-
(props: ComboboxCollectionProps):
|
|
144
|
+
(props: ComboboxCollectionProps): react_jsx_runtime252.JSX.Element;
|
|
145
145
|
displayName: string;
|
|
146
146
|
};
|
|
147
147
|
type ComboboxSeparatorProps = React.ComponentProps<typeof BaseCombobox.Separator>;
|
|
@@ -149,7 +149,7 @@ declare const ComboboxSeparator: {
|
|
|
149
149
|
({
|
|
150
150
|
className,
|
|
151
151
|
...props
|
|
152
|
-
}: ComboboxSeparatorProps):
|
|
152
|
+
}: ComboboxSeparatorProps): react_jsx_runtime252.JSX.Element;
|
|
153
153
|
displayName: string;
|
|
154
154
|
};
|
|
155
155
|
type ComboboxStatusProps = React.ComponentProps<typeof BaseCombobox.Status>;
|
|
@@ -157,7 +157,7 @@ declare const ComboboxStatus: {
|
|
|
157
157
|
({
|
|
158
158
|
className,
|
|
159
159
|
...props
|
|
160
|
-
}: ComboboxStatusProps):
|
|
160
|
+
}: ComboboxStatusProps): react_jsx_runtime252.JSX.Element;
|
|
161
161
|
displayName: string;
|
|
162
162
|
};
|
|
163
163
|
type ComboboxChipsProps = React.ComponentProps<typeof BaseCombobox.Chips>;
|
|
@@ -167,7 +167,7 @@ declare const ComboboxChip: {
|
|
|
167
167
|
({
|
|
168
168
|
className,
|
|
169
169
|
...props
|
|
170
|
-
}: ComboboxChipProps):
|
|
170
|
+
}: ComboboxChipProps): react_jsx_runtime252.JSX.Element;
|
|
171
171
|
displayName: string;
|
|
172
172
|
};
|
|
173
173
|
type ComboboxChipRemoveProps = React.ComponentProps<typeof BaseCombobox.ChipRemove>;
|
|
@@ -175,7 +175,7 @@ declare const ComboboxChipRemove: {
|
|
|
175
175
|
({
|
|
176
176
|
className,
|
|
177
177
|
...props
|
|
178
|
-
}: ComboboxChipRemoveProps):
|
|
178
|
+
}: ComboboxChipRemoveProps): react_jsx_runtime252.JSX.Element;
|
|
179
179
|
displayName: string;
|
|
180
180
|
};
|
|
181
181
|
type ComboboxArrowProps = React.ComponentProps<typeof BaseCombobox.Arrow>;
|
|
@@ -183,7 +183,7 @@ declare const ComboboxArrow: {
|
|
|
183
183
|
({
|
|
184
184
|
className,
|
|
185
185
|
...props
|
|
186
|
-
}: ComboboxArrowProps):
|
|
186
|
+
}: ComboboxArrowProps): react_jsx_runtime252.JSX.Element;
|
|
187
187
|
displayName: string;
|
|
188
188
|
};
|
|
189
189
|
//#endregion
|