@lglab/compose-ui 0.30.2 → 0.30.4
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/alert-dialog.d.ts +10 -10
- package/dist/alert-dialog.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/card.d.ts.map +1 -1
- package/dist/card.js +2 -2
- package/dist/card.js.map +1 -1
- package/dist/checkbox-group.d.ts +2 -2
- package/dist/checkbox-group.d.ts.map +1 -1
- 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/components/table/primitives.d.ts.map +1 -1
- package/dist/components/table/primitives.js +3 -3
- package/dist/components/table/primitives.js.map +1 -1
- package/dist/context-menu.d.ts +20 -20
- package/dist/context-menu.d.ts.map +1 -1
- package/dist/dialog.d.ts +11 -11
- package/dist/dialog.d.ts.map +1 -1
- package/dist/drawer.d.ts +12 -12
- package/dist/drawer.d.ts.map +1 -1
- package/dist/field.d.ts +8 -8
- package/dist/field.d.ts.map +1 -1
- 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/menu.d.ts +20 -20
- package/dist/menu.d.ts.map +1 -1
- package/dist/menubar.d.ts +21 -21
- package/dist/meter.d.ts +6 -6
- package/dist/meter.d.ts.map +1 -1
- package/dist/navigation-menu.d.ts +14 -14
- package/dist/number-field.d.ts +8 -8
- package/dist/pagination.d.ts +10 -10
- package/dist/popover.d.ts +12 -12
- package/dist/preview-card.d.ts +8 -8
- package/dist/progress.d.ts +6 -6
- package/dist/progress.d.ts.map +1 -1
- package/dist/radio-group.d.ts +2 -2
- package/dist/radio.d.ts +3 -3
- package/dist/radio.d.ts.map +1 -1
- package/dist/scroll-area.d.ts +7 -7
- package/dist/select.d.ts +19 -19
- package/dist/select.d.ts.map +1 -1
- package/dist/separator.d.ts +2 -2
- 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/switch.d.ts.map +1 -1
- 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/tooltip.d.ts +8 -8
- package/package.json +1 -1
package/dist/drawer.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime29 from "react/jsx-runtime";
|
|
4
4
|
import { Dialog } from "@base-ui/react/dialog";
|
|
5
5
|
|
|
6
6
|
//#region src/components/drawer.d.ts
|
|
7
7
|
type DrawerRootProps = React.ComponentProps<typeof Dialog.Root>;
|
|
8
8
|
declare const DrawerRoot: {
|
|
9
|
-
(props: DrawerRootProps):
|
|
9
|
+
(props: DrawerRootProps): react_jsx_runtime29.JSX.Element;
|
|
10
10
|
displayName: string;
|
|
11
11
|
};
|
|
12
12
|
type DrawerTriggerProps = React.ComponentProps<typeof Dialog.Trigger> & {
|
|
@@ -21,12 +21,12 @@ declare const DrawerTrigger: {
|
|
|
21
21
|
variant,
|
|
22
22
|
size,
|
|
23
23
|
...props
|
|
24
|
-
}: DrawerTriggerProps):
|
|
24
|
+
}: DrawerTriggerProps): react_jsx_runtime29.JSX.Element;
|
|
25
25
|
displayName: string;
|
|
26
26
|
};
|
|
27
27
|
type DrawerPortalProps = React.ComponentProps<typeof Dialog.Portal>;
|
|
28
28
|
declare const DrawerPortal: {
|
|
29
|
-
(props: DrawerPortalProps):
|
|
29
|
+
(props: DrawerPortalProps): react_jsx_runtime29.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
type DrawerBackdropProps = React.ComponentProps<typeof Dialog.Backdrop>;
|
|
@@ -34,7 +34,7 @@ declare const DrawerBackdrop: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: DrawerBackdropProps):
|
|
37
|
+
}: DrawerBackdropProps): react_jsx_runtime29.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
type DrawerPopupProps = React.ComponentProps<typeof Dialog.Popup> & {
|
|
@@ -46,7 +46,7 @@ declare const DrawerPopup: {
|
|
|
46
46
|
className,
|
|
47
47
|
side,
|
|
48
48
|
...props
|
|
49
|
-
}: DrawerPopupProps):
|
|
49
|
+
}: DrawerPopupProps): react_jsx_runtime29.JSX.Element;
|
|
50
50
|
displayName: string;
|
|
51
51
|
};
|
|
52
52
|
type DrawerTitleProps = React.ComponentProps<typeof Dialog.Title>;
|
|
@@ -54,7 +54,7 @@ declare const DrawerTitle: {
|
|
|
54
54
|
({
|
|
55
55
|
className,
|
|
56
56
|
...props
|
|
57
|
-
}: DrawerTitleProps):
|
|
57
|
+
}: DrawerTitleProps): react_jsx_runtime29.JSX.Element;
|
|
58
58
|
displayName: string;
|
|
59
59
|
};
|
|
60
60
|
type DrawerDescriptionProps = React.ComponentProps<typeof Dialog.Description>;
|
|
@@ -62,7 +62,7 @@ declare const DrawerDescription: {
|
|
|
62
62
|
({
|
|
63
63
|
className,
|
|
64
64
|
...props
|
|
65
|
-
}: DrawerDescriptionProps):
|
|
65
|
+
}: DrawerDescriptionProps): react_jsx_runtime29.JSX.Element;
|
|
66
66
|
displayName: string;
|
|
67
67
|
};
|
|
68
68
|
type DrawerCloseProps = React.ComponentProps<typeof Dialog.Close> & {
|
|
@@ -77,7 +77,7 @@ declare const DrawerClose: {
|
|
|
77
77
|
variant,
|
|
78
78
|
size,
|
|
79
79
|
...props
|
|
80
|
-
}: DrawerCloseProps):
|
|
80
|
+
}: DrawerCloseProps): react_jsx_runtime29.JSX.Element;
|
|
81
81
|
displayName: string;
|
|
82
82
|
};
|
|
83
83
|
type DrawerHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -85,7 +85,7 @@ declare const DrawerHeader: {
|
|
|
85
85
|
({
|
|
86
86
|
className,
|
|
87
87
|
...props
|
|
88
|
-
}: DrawerHeaderProps):
|
|
88
|
+
}: DrawerHeaderProps): react_jsx_runtime29.JSX.Element;
|
|
89
89
|
displayName: string;
|
|
90
90
|
};
|
|
91
91
|
type DrawerContentProps = React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -93,7 +93,7 @@ declare const DrawerContent: {
|
|
|
93
93
|
({
|
|
94
94
|
className,
|
|
95
95
|
...props
|
|
96
|
-
}: DrawerContentProps):
|
|
96
|
+
}: DrawerContentProps): react_jsx_runtime29.JSX.Element;
|
|
97
97
|
displayName: string;
|
|
98
98
|
};
|
|
99
99
|
type DrawerFooterProps = React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -101,7 +101,7 @@ declare const DrawerFooter: {
|
|
|
101
101
|
({
|
|
102
102
|
className,
|
|
103
103
|
...props
|
|
104
|
-
}: DrawerFooterProps):
|
|
104
|
+
}: DrawerFooterProps): react_jsx_runtime29.JSX.Element;
|
|
105
105
|
displayName: string;
|
|
106
106
|
};
|
|
107
107
|
//#endregion
|
package/dist/drawer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drawer.d.ts","names":[],"sources":["../src/components/drawer.tsx"],"sourcesContent":[],"mappings":";;;;;;KAiBK,eAAA,GAAkB,KAAA,CAAM,sBAAsB,MAAA,CAAW;cAExD;UAAqB,kBAAe,
|
|
1
|
+
{"version":3,"file":"drawer.d.ts","names":[],"sources":["../src/components/drawer.tsx"],"sourcesContent":[],"mappings":"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"}
|
package/dist/field.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 { Field } from "@base-ui/react/field";
|
|
4
4
|
|
|
5
5
|
//#region src/components/field.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FieldRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FieldRootProps):
|
|
11
|
+
}: FieldRootProps): react_jsx_runtime84.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type FieldLabelProps = React.ComponentProps<typeof Field.Label>;
|
|
@@ -16,7 +16,7 @@ declare const FieldLabel: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: FieldLabelProps):
|
|
19
|
+
}: FieldLabelProps): react_jsx_runtime84.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
type FieldControlProps = React.ComponentProps<typeof Field.Control>;
|
|
@@ -24,7 +24,7 @@ declare const FieldControl: {
|
|
|
24
24
|
({
|
|
25
25
|
className,
|
|
26
26
|
...props
|
|
27
|
-
}: FieldControlProps):
|
|
27
|
+
}: FieldControlProps): react_jsx_runtime84.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
type FieldDescriptionProps = React.ComponentProps<typeof Field.Description>;
|
|
@@ -32,7 +32,7 @@ declare const FieldDescription: {
|
|
|
32
32
|
({
|
|
33
33
|
className,
|
|
34
34
|
...props
|
|
35
|
-
}: FieldDescriptionProps):
|
|
35
|
+
}: FieldDescriptionProps): react_jsx_runtime84.JSX.Element;
|
|
36
36
|
displayName: string;
|
|
37
37
|
};
|
|
38
38
|
type FieldErrorProps = React.ComponentProps<typeof Field.Error>;
|
|
@@ -40,7 +40,7 @@ declare const FieldError: {
|
|
|
40
40
|
({
|
|
41
41
|
className,
|
|
42
42
|
...props
|
|
43
|
-
}: FieldErrorProps):
|
|
43
|
+
}: FieldErrorProps): react_jsx_runtime84.JSX.Element;
|
|
44
44
|
displayName: string;
|
|
45
45
|
};
|
|
46
46
|
type FieldItemProps = React.ComponentProps<typeof Field.Item>;
|
|
@@ -48,12 +48,12 @@ declare const FieldItem: {
|
|
|
48
48
|
({
|
|
49
49
|
className,
|
|
50
50
|
...props
|
|
51
|
-
}: FieldItemProps):
|
|
51
|
+
}: FieldItemProps): react_jsx_runtime84.JSX.Element;
|
|
52
52
|
displayName: string;
|
|
53
53
|
};
|
|
54
54
|
type FieldValidityProps = React.ComponentProps<typeof Field.Validity>;
|
|
55
55
|
declare const FieldValidity: {
|
|
56
|
-
(props: FieldValidityProps):
|
|
56
|
+
(props: FieldValidityProps): react_jsx_runtime84.JSX.Element;
|
|
57
57
|
displayName: string;
|
|
58
58
|
};
|
|
59
59
|
//#endregion
|
package/dist/field.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field.d.ts","names":[],"sources":["../src/components/field.tsx"],"sourcesContent":[],"mappings":";;;;;KAmBK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,
|
|
1
|
+
{"version":3,"file":"field.d.ts","names":[],"sources":["../src/components/field.tsx"],"sourcesContent":[],"mappings":";;;;;KAmBK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,mBAAA,CAAA,GAAA,CAAA;EAFrD,WAAA,EAAA,MAAc;CAAA;KAYd,eAAA,GAAkB,KAAA,CAAM,cAZ+B,CAAA,OAYT,KAAA,CAAU,KAZD,CAAA;cActD,UAdsB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,eAdH,CAAA,EAckB,mBAAA,CAAA,GAAA,CAAA,OAdlB;EAEpC,WAAA,EAEL,MAAA;CAAA;KAoBI,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEzD,YAxBsC,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EAwBX,iBAxBW,CAAA,EAwBM,mBAAA,CAAA,GAAA,CAAA,OAxBN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAkCrD,qBAAA,GAAwB,KAAA,CAAM,cAxBf,CAAA,OAwBqC,KAAA,CAAU,WAxB/C,CAAA;cA0Bd,gBA1BuD,EAAA;;IAAtC,SAAM;IAAA,GAAA;EAAA,CAAA,EA0BsB,qBA1BtB,CAAA,EA0B2C,mBAAA,CAAA,GAAA,CAAA,OA1B3C;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAoCtC,eAAA,GAAkB,KAAA,CAAM,cAhC5B,CAAA,OAgCkD,KAAA,CAAU,KAhC5D,CAAA;cAkCK;;IApCuC,SAAA;IAAA,GAAA;EAAA,CAAA,EAoCA,eApCA,CAAA,EAoCe,mBAAA,CAAA,GAAA,CAAA,OApCf;aAAe,EAAA,MAAA;CAAA;AAAA,KA8CvD,cAAA,GAAiB,KAAA,CAAM,cApCN,CAAA,OAoC4B,KAAA,CAAU,IApCtC,CAAA;cAsChB,SAtCgB,EAAA;;IAA+B,SAAU;IAAA,GAAA;EAAA,CAAA,EAsCnB,cAtCmB,CAAA,EAsCL,mBAAA,CAAA,GAAA,CAAA,OAtCK;aAAhC,EAAA,MAAA;CAAc;AAAA,KAgDxC,kBAAA,GAAqB,KAAA,CAAM,cA5C/B,CAAA,OA4CqD,KAAA,CAAU,QA5C/D,CAAA;cA8CK,aA9CL,EAAA;UA8C6B,qBAAkB,mBAAA,CAAA,GAAA,CAAA;aAhDD,EAAA,MAAA"}
|
package/dist/fieldset.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime91 from "react/jsx-runtime";
|
|
3
3
|
import { Fieldset } from "@base-ui/react/fieldset";
|
|
4
4
|
|
|
5
5
|
//#region src/components/fieldset.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FieldsetRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FieldsetRootProps):
|
|
11
|
+
}: FieldsetRootProps): react_jsx_runtime91.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type FieldsetLegendProps = React.ComponentProps<typeof Fieldset.Legend>;
|
|
@@ -16,7 +16,7 @@ declare const FieldsetLegend: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: FieldsetLegendProps):
|
|
19
|
+
}: FieldsetLegendProps): react_jsx_runtime91.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
//#endregion
|
package/dist/fieldset.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,
|
|
1
|
+
{"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,mBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAYjB,mBAAA,GAAsB,KAAA,CAAM,cAZiC,CAAA,OAYX,QAAA,CAAa,MAZF,CAAA;cAc5D,cAdyB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcI,mBAdJ,CAAA,EAcuB,mBAAA,CAAA,GAAA,CAAA,OAdvB;EAEvC,WAAA,EAAA,MAEL;CAAA"}
|
package/dist/fieldset.js
CHANGED
|
@@ -16,7 +16,7 @@ const FieldsetRoot = ({ className, ...props }) => {
|
|
|
16
16
|
FieldsetRoot.displayName = "FieldsetRoot";
|
|
17
17
|
const FieldsetLegend = ({ className, ...props }) => {
|
|
18
18
|
return /* @__PURE__ */ jsx(Fieldset.Legend, {
|
|
19
|
-
className: cn(labelStyles, className),
|
|
19
|
+
className: cn("mb-1", labelStyles, className),
|
|
20
20
|
...props
|
|
21
21
|
});
|
|
22
22
|
};
|
package/dist/fieldset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fieldset.js","names":["BaseFieldset"],"sources":["../src/components/fieldset.tsx"],"sourcesContent":["'use client'\n\nimport { Fieldset as BaseFieldset } from '@base-ui/react/fieldset'\nimport * as React from 'react'\n\nimport { labelStyles } from '../lib/form-variants'\nimport { cn } from '../lib/utils'\n\n// ============================================================================\n// FieldsetRoot\n// ============================================================================\n\ntype FieldsetRootProps = React.ComponentProps<typeof BaseFieldset.Root>\n\nconst FieldsetRoot = ({ className, ...props }: FieldsetRootProps) => {\n return <BaseFieldset.Root className={cn('flex flex-col gap-2', className)} {...props} />\n}\n\nFieldsetRoot.displayName = 'FieldsetRoot'\n\n// ============================================================================\n// FieldsetLegend\n// ============================================================================\n\ntype FieldsetLegendProps = React.ComponentProps<typeof BaseFieldset.Legend>\n\nconst FieldsetLegend = ({ className, ...props }: FieldsetLegendProps) => {\n return <BaseFieldset.Legend className={cn(labelStyles, className)} {...props} />\n}\n\nFieldsetLegend.displayName = 'FieldsetLegend'\n\n// ============================================================================\n// Exports\n// ============================================================================\n\nexport { FieldsetRoot, FieldsetLegend }\n\nexport type { FieldsetRootProps, FieldsetLegendProps }\n"],"mappings":";;;;;;;;;AAcA,MAAM,gBAAgB,EAAE,WAAW,GAAG,YAA+B;AACnE,QAAO,oBAACA,SAAa;EAAK,WAAW,GAAG,uBAAuB,UAAU;EAAE,GAAI;GAAS;;AAG1F,aAAa,cAAc;AAQ3B,MAAM,kBAAkB,EAAE,WAAW,GAAG,YAAiC;AACvE,QAAO,oBAACA,SAAa;EAAO,WAAW,GAAG,aAAa,UAAU;EAAE,GAAI;GAAS;;
|
|
1
|
+
{"version":3,"file":"fieldset.js","names":["BaseFieldset"],"sources":["../src/components/fieldset.tsx"],"sourcesContent":["'use client'\n\nimport { Fieldset as BaseFieldset } from '@base-ui/react/fieldset'\nimport * as React from 'react'\n\nimport { labelStyles } from '../lib/form-variants'\nimport { cn } from '../lib/utils'\n\n// ============================================================================\n// FieldsetRoot\n// ============================================================================\n\ntype FieldsetRootProps = React.ComponentProps<typeof BaseFieldset.Root>\n\nconst FieldsetRoot = ({ className, ...props }: FieldsetRootProps) => {\n return <BaseFieldset.Root className={cn('flex flex-col gap-2', className)} {...props} />\n}\n\nFieldsetRoot.displayName = 'FieldsetRoot'\n\n// ============================================================================\n// FieldsetLegend\n// ============================================================================\n\ntype FieldsetLegendProps = React.ComponentProps<typeof BaseFieldset.Legend>\n\nconst FieldsetLegend = ({ className, ...props }: FieldsetLegendProps) => {\n return <BaseFieldset.Legend className={cn('mb-1', labelStyles, className)} {...props} />\n}\n\nFieldsetLegend.displayName = 'FieldsetLegend'\n\n// ============================================================================\n// Exports\n// ============================================================================\n\nexport { FieldsetRoot, FieldsetLegend }\n\nexport type { FieldsetRootProps, FieldsetLegendProps }\n"],"mappings":";;;;;;;;;AAcA,MAAM,gBAAgB,EAAE,WAAW,GAAG,YAA+B;AACnE,QAAO,oBAACA,SAAa;EAAK,WAAW,GAAG,uBAAuB,UAAU;EAAE,GAAI;GAAS;;AAG1F,aAAa,cAAc;AAQ3B,MAAM,kBAAkB,EAAE,WAAW,GAAG,YAAiC;AACvE,QAAO,oBAACA,SAAa;EAAO,WAAW,GAAG,QAAQ,aAAa,UAAU;EAAE,GAAI;GAAS;;AAG1F,eAAe,cAAc"}
|
package/dist/form.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime113 from "react/jsx-runtime";
|
|
3
3
|
import { Form } from "@base-ui/react/form";
|
|
4
4
|
|
|
5
5
|
//#region src/components/form.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FormRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FormRootProps):
|
|
11
|
+
}: FormRootProps): react_jsx_runtime113.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/input.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime119 from "react/jsx-runtime";
|
|
3
3
|
import { Input as Input$1 } from "@base-ui/react/input";
|
|
4
4
|
|
|
5
5
|
//#region src/components/input.d.ts
|
|
@@ -8,7 +8,7 @@ declare const Input: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: InputProps):
|
|
11
|
+
}: InputProps): react_jsx_runtime119.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/menu.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime133 from "react/jsx-runtime";
|
|
3
3
|
import { Menu } from "@base-ui/react/menu";
|
|
4
4
|
|
|
5
5
|
//#region src/components/menu.d.ts
|
|
6
6
|
type MenuRootProps = React.ComponentProps<typeof Menu.Root>;
|
|
7
7
|
declare const MenuRoot: {
|
|
8
|
-
(props: MenuRootProps):
|
|
8
|
+
(props: MenuRootProps): react_jsx_runtime133.JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
10
|
};
|
|
11
11
|
type MenuTriggerProps = React.ComponentProps<typeof Menu.Trigger>;
|
|
@@ -13,12 +13,12 @@ declare const MenuTrigger: {
|
|
|
13
13
|
({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: MenuTriggerProps):
|
|
16
|
+
}: MenuTriggerProps): react_jsx_runtime133.JSX.Element;
|
|
17
17
|
displayName: string;
|
|
18
18
|
};
|
|
19
19
|
type MenuPortalProps = React.ComponentProps<typeof Menu.Portal>;
|
|
20
20
|
declare const MenuPortal: {
|
|
21
|
-
(props: MenuPortalProps):
|
|
21
|
+
(props: MenuPortalProps): react_jsx_runtime133.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
type MenuPositionerProps = React.ComponentProps<typeof Menu.Positioner>;
|
|
@@ -26,7 +26,7 @@ declare const MenuPositioner: {
|
|
|
26
26
|
({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: MenuPositionerProps):
|
|
29
|
+
}: MenuPositionerProps): react_jsx_runtime133.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
type MenuPopupProps = React.ComponentProps<typeof Menu.Popup>;
|
|
@@ -34,7 +34,7 @@ declare const MenuPopup: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: MenuPopupProps):
|
|
37
|
+
}: MenuPopupProps): react_jsx_runtime133.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
type MenuArrowProps = React.ComponentProps<typeof Menu.Arrow>;
|
|
@@ -42,7 +42,7 @@ declare const MenuArrow: {
|
|
|
42
42
|
({
|
|
43
43
|
className,
|
|
44
44
|
...props
|
|
45
|
-
}: MenuArrowProps):
|
|
45
|
+
}: MenuArrowProps): react_jsx_runtime133.JSX.Element;
|
|
46
46
|
displayName: string;
|
|
47
47
|
};
|
|
48
48
|
type MenuItemProps = React.ComponentProps<typeof Menu.Item>;
|
|
@@ -50,7 +50,7 @@ declare const MenuItem: {
|
|
|
50
50
|
({
|
|
51
51
|
className,
|
|
52
52
|
...props
|
|
53
|
-
}: MenuItemProps):
|
|
53
|
+
}: MenuItemProps): react_jsx_runtime133.JSX.Element;
|
|
54
54
|
displayName: string;
|
|
55
55
|
};
|
|
56
56
|
type MenuSeparatorProps = React.ComponentProps<typeof Menu.Separator>;
|
|
@@ -58,7 +58,7 @@ declare const MenuSeparator: {
|
|
|
58
58
|
({
|
|
59
59
|
className,
|
|
60
60
|
...props
|
|
61
|
-
}: MenuSeparatorProps):
|
|
61
|
+
}: MenuSeparatorProps): react_jsx_runtime133.JSX.Element;
|
|
62
62
|
displayName: string;
|
|
63
63
|
};
|
|
64
64
|
type MenuGroupProps = React.ComponentProps<typeof Menu.Group>;
|
|
@@ -66,7 +66,7 @@ declare const MenuGroup: {
|
|
|
66
66
|
({
|
|
67
67
|
className,
|
|
68
68
|
...props
|
|
69
|
-
}: MenuGroupProps):
|
|
69
|
+
}: MenuGroupProps): react_jsx_runtime133.JSX.Element;
|
|
70
70
|
displayName: string;
|
|
71
71
|
};
|
|
72
72
|
type MenuGroupLabelProps = React.ComponentProps<typeof Menu.GroupLabel>;
|
|
@@ -74,7 +74,7 @@ declare const MenuGroupLabel: {
|
|
|
74
74
|
({
|
|
75
75
|
className,
|
|
76
76
|
...props
|
|
77
|
-
}: MenuGroupLabelProps):
|
|
77
|
+
}: MenuGroupLabelProps): react_jsx_runtime133.JSX.Element;
|
|
78
78
|
displayName: string;
|
|
79
79
|
};
|
|
80
80
|
type MenuRadioGroupProps = React.ComponentProps<typeof Menu.RadioGroup>;
|
|
@@ -82,7 +82,7 @@ declare const MenuRadioGroup: {
|
|
|
82
82
|
({
|
|
83
83
|
className,
|
|
84
84
|
...props
|
|
85
|
-
}: MenuRadioGroupProps):
|
|
85
|
+
}: MenuRadioGroupProps): react_jsx_runtime133.JSX.Element;
|
|
86
86
|
displayName: string;
|
|
87
87
|
};
|
|
88
88
|
type MenuRadioItemProps = React.ComponentProps<typeof Menu.RadioItem>;
|
|
@@ -90,7 +90,7 @@ declare const MenuRadioItem: {
|
|
|
90
90
|
({
|
|
91
91
|
className,
|
|
92
92
|
...props
|
|
93
|
-
}: MenuRadioItemProps):
|
|
93
|
+
}: MenuRadioItemProps): react_jsx_runtime133.JSX.Element;
|
|
94
94
|
displayName: string;
|
|
95
95
|
};
|
|
96
96
|
type MenuCheckboxItemProps = React.ComponentProps<typeof Menu.CheckboxItem>;
|
|
@@ -98,7 +98,7 @@ declare const MenuCheckboxItem: {
|
|
|
98
98
|
({
|
|
99
99
|
className,
|
|
100
100
|
...props
|
|
101
|
-
}: MenuCheckboxItemProps):
|
|
101
|
+
}: MenuCheckboxItemProps): react_jsx_runtime133.JSX.Element;
|
|
102
102
|
displayName: string;
|
|
103
103
|
};
|
|
104
104
|
type MenuRadioItemIndicatorProps = React.ComponentProps<typeof Menu.RadioItemIndicator>;
|
|
@@ -106,7 +106,7 @@ declare const MenuRadioItemIndicator: {
|
|
|
106
106
|
({
|
|
107
107
|
className,
|
|
108
108
|
...props
|
|
109
|
-
}: MenuRadioItemIndicatorProps):
|
|
109
|
+
}: MenuRadioItemIndicatorProps): react_jsx_runtime133.JSX.Element;
|
|
110
110
|
displayName: string;
|
|
111
111
|
};
|
|
112
112
|
type MenuCheckboxItemIndicatorProps = React.ComponentProps<typeof Menu.CheckboxItemIndicator>;
|
|
@@ -114,7 +114,7 @@ declare const MenuCheckboxItemIndicator: {
|
|
|
114
114
|
({
|
|
115
115
|
className,
|
|
116
116
|
...props
|
|
117
|
-
}: MenuCheckboxItemIndicatorProps):
|
|
117
|
+
}: MenuCheckboxItemIndicatorProps): react_jsx_runtime133.JSX.Element;
|
|
118
118
|
displayName: string;
|
|
119
119
|
};
|
|
120
120
|
type MenuCheckboxItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -122,7 +122,7 @@ declare const MenuCheckboxItemLabel: {
|
|
|
122
122
|
({
|
|
123
123
|
className,
|
|
124
124
|
...props
|
|
125
|
-
}: MenuCheckboxItemLabelProps):
|
|
125
|
+
}: MenuCheckboxItemLabelProps): react_jsx_runtime133.JSX.Element;
|
|
126
126
|
displayName: string;
|
|
127
127
|
};
|
|
128
128
|
type MenuRadioItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -130,7 +130,7 @@ declare const MenuRadioItemLabel: {
|
|
|
130
130
|
({
|
|
131
131
|
className,
|
|
132
132
|
...props
|
|
133
|
-
}: MenuRadioItemLabelProps):
|
|
133
|
+
}: MenuRadioItemLabelProps): react_jsx_runtime133.JSX.Element;
|
|
134
134
|
displayName: string;
|
|
135
135
|
};
|
|
136
136
|
type MenuSubmenuTriggerProps = React.ComponentProps<typeof Menu.SubmenuTrigger>;
|
|
@@ -138,12 +138,12 @@ declare const MenuSubmenuTrigger: {
|
|
|
138
138
|
({
|
|
139
139
|
className,
|
|
140
140
|
...props
|
|
141
|
-
}: MenuSubmenuTriggerProps):
|
|
141
|
+
}: MenuSubmenuTriggerProps): react_jsx_runtime133.JSX.Element;
|
|
142
142
|
displayName: string;
|
|
143
143
|
};
|
|
144
144
|
type MenuSubmenuRootProps = React.ComponentProps<typeof Menu.SubmenuRoot>;
|
|
145
145
|
declare const MenuSubmenuRoot: {
|
|
146
|
-
(props: MenuSubmenuRootProps):
|
|
146
|
+
(props: MenuSubmenuRootProps): react_jsx_runtime133.JSX.Element;
|
|
147
147
|
displayName: string;
|
|
148
148
|
};
|
|
149
149
|
//#endregion
|
package/dist/menu.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.d.ts","names":[],"sources":["../src/components/menu.tsx"],"sourcesContent":[],"mappings":";;;;;KAaK,aAAA,GAAgB,KAAA,CAAM,sBAAsB,IAAA,CAAS;cAEpD;UAAmB,gBAAa,
|
|
1
|
+
{"version":3,"file":"menu.d.ts","names":[],"sources":["../src/components/menu.tsx"],"sourcesContent":[],"mappings":"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"}
|
package/dist/menubar.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ControlSize, ControlVariant } from "./lib/control-variants.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime93 from "react/jsx-runtime";
|
|
4
4
|
import { Menu } from "@base-ui/react/menu";
|
|
5
5
|
import { Menubar } from "@base-ui/react/menubar";
|
|
6
6
|
|
|
@@ -10,12 +10,12 @@ declare const MenubarRoot: {
|
|
|
10
10
|
({
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: MenubarRootProps):
|
|
13
|
+
}: MenubarRootProps): react_jsx_runtime93.JSX.Element;
|
|
14
14
|
displayName: string;
|
|
15
15
|
};
|
|
16
16
|
type MenubarMenuProps = React.ComponentProps<typeof Menu.Root>;
|
|
17
17
|
declare const MenubarMenu: {
|
|
18
|
-
(props: MenubarMenuProps):
|
|
18
|
+
(props: MenubarMenuProps): react_jsx_runtime93.JSX.Element;
|
|
19
19
|
displayName: string;
|
|
20
20
|
};
|
|
21
21
|
type MenubarTriggerProps = React.ComponentProps<typeof Menu.Trigger> & {
|
|
@@ -30,12 +30,12 @@ declare const MenubarTrigger: {
|
|
|
30
30
|
variant,
|
|
31
31
|
size,
|
|
32
32
|
...props
|
|
33
|
-
}: MenubarTriggerProps):
|
|
33
|
+
}: MenubarTriggerProps): react_jsx_runtime93.JSX.Element;
|
|
34
34
|
displayName: string;
|
|
35
35
|
};
|
|
36
36
|
type MenubarPortalProps = React.ComponentProps<typeof Menu.Portal>;
|
|
37
37
|
declare const MenubarPortal: {
|
|
38
|
-
(props: MenubarPortalProps):
|
|
38
|
+
(props: MenubarPortalProps): react_jsx_runtime93.JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
41
41
|
type MenubarPositionerProps = React.ComponentProps<typeof Menu.Positioner>;
|
|
@@ -43,7 +43,7 @@ declare const MenubarPositioner: {
|
|
|
43
43
|
({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: MenubarPositionerProps):
|
|
46
|
+
}: MenubarPositionerProps): react_jsx_runtime93.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
};
|
|
49
49
|
type MenubarPopupProps = React.ComponentProps<typeof Menu.Popup>;
|
|
@@ -51,7 +51,7 @@ declare const MenubarPopup: {
|
|
|
51
51
|
({
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: MenubarPopupProps):
|
|
54
|
+
}: MenubarPopupProps): react_jsx_runtime93.JSX.Element;
|
|
55
55
|
displayName: string;
|
|
56
56
|
};
|
|
57
57
|
type MenubarArrowProps = React.ComponentProps<typeof Menu.Arrow>;
|
|
@@ -59,7 +59,7 @@ declare const MenubarArrow: {
|
|
|
59
59
|
({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: MenubarArrowProps):
|
|
62
|
+
}: MenubarArrowProps): react_jsx_runtime93.JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
};
|
|
65
65
|
type MenubarItemProps = React.ComponentProps<typeof Menu.Item>;
|
|
@@ -67,7 +67,7 @@ declare const MenubarItem: {
|
|
|
67
67
|
({
|
|
68
68
|
className,
|
|
69
69
|
...props
|
|
70
|
-
}: MenubarItemProps):
|
|
70
|
+
}: MenubarItemProps): react_jsx_runtime93.JSX.Element;
|
|
71
71
|
displayName: string;
|
|
72
72
|
};
|
|
73
73
|
type MenubarSeparatorProps = React.ComponentProps<typeof Menu.Separator>;
|
|
@@ -75,7 +75,7 @@ declare const MenubarSeparator: {
|
|
|
75
75
|
({
|
|
76
76
|
className,
|
|
77
77
|
...props
|
|
78
|
-
}: MenubarSeparatorProps):
|
|
78
|
+
}: MenubarSeparatorProps): react_jsx_runtime93.JSX.Element;
|
|
79
79
|
displayName: string;
|
|
80
80
|
};
|
|
81
81
|
type MenubarGroupProps = React.ComponentProps<typeof Menu.Group>;
|
|
@@ -83,7 +83,7 @@ declare const MenubarGroup: {
|
|
|
83
83
|
({
|
|
84
84
|
className,
|
|
85
85
|
...props
|
|
86
|
-
}: MenubarGroupProps):
|
|
86
|
+
}: MenubarGroupProps): react_jsx_runtime93.JSX.Element;
|
|
87
87
|
displayName: string;
|
|
88
88
|
};
|
|
89
89
|
type MenubarGroupLabelProps = React.ComponentProps<typeof Menu.GroupLabel>;
|
|
@@ -91,7 +91,7 @@ declare const MenubarGroupLabel: {
|
|
|
91
91
|
({
|
|
92
92
|
className,
|
|
93
93
|
...props
|
|
94
|
-
}: MenubarGroupLabelProps):
|
|
94
|
+
}: MenubarGroupLabelProps): react_jsx_runtime93.JSX.Element;
|
|
95
95
|
displayName: string;
|
|
96
96
|
};
|
|
97
97
|
type MenubarRadioGroupProps = React.ComponentProps<typeof Menu.RadioGroup>;
|
|
@@ -99,7 +99,7 @@ declare const MenubarRadioGroup: {
|
|
|
99
99
|
({
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: MenubarRadioGroupProps):
|
|
102
|
+
}: MenubarRadioGroupProps): react_jsx_runtime93.JSX.Element;
|
|
103
103
|
displayName: string;
|
|
104
104
|
};
|
|
105
105
|
type MenubarRadioItemProps = React.ComponentProps<typeof Menu.RadioItem>;
|
|
@@ -107,7 +107,7 @@ declare const MenubarRadioItem: {
|
|
|
107
107
|
({
|
|
108
108
|
className,
|
|
109
109
|
...props
|
|
110
|
-
}: MenubarRadioItemProps):
|
|
110
|
+
}: MenubarRadioItemProps): react_jsx_runtime93.JSX.Element;
|
|
111
111
|
displayName: string;
|
|
112
112
|
};
|
|
113
113
|
type MenubarCheckboxItemProps = React.ComponentProps<typeof Menu.CheckboxItem>;
|
|
@@ -115,7 +115,7 @@ declare const MenubarCheckboxItem: {
|
|
|
115
115
|
({
|
|
116
116
|
className,
|
|
117
117
|
...props
|
|
118
|
-
}: MenubarCheckboxItemProps):
|
|
118
|
+
}: MenubarCheckboxItemProps): react_jsx_runtime93.JSX.Element;
|
|
119
119
|
displayName: string;
|
|
120
120
|
};
|
|
121
121
|
type MenubarRadioItemIndicatorProps = React.ComponentProps<typeof Menu.RadioItemIndicator>;
|
|
@@ -123,7 +123,7 @@ declare const MenubarRadioItemIndicator: {
|
|
|
123
123
|
({
|
|
124
124
|
className,
|
|
125
125
|
...props
|
|
126
|
-
}: MenubarRadioItemIndicatorProps):
|
|
126
|
+
}: MenubarRadioItemIndicatorProps): react_jsx_runtime93.JSX.Element;
|
|
127
127
|
displayName: string;
|
|
128
128
|
};
|
|
129
129
|
type MenubarCheckboxItemIndicatorProps = React.ComponentProps<typeof Menu.CheckboxItemIndicator>;
|
|
@@ -131,7 +131,7 @@ declare const MenubarCheckboxItemIndicator: {
|
|
|
131
131
|
({
|
|
132
132
|
className,
|
|
133
133
|
...props
|
|
134
|
-
}: MenubarCheckboxItemIndicatorProps):
|
|
134
|
+
}: MenubarCheckboxItemIndicatorProps): react_jsx_runtime93.JSX.Element;
|
|
135
135
|
displayName: string;
|
|
136
136
|
};
|
|
137
137
|
type MenubarCheckboxItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -139,7 +139,7 @@ declare const MenubarCheckboxItemLabel: {
|
|
|
139
139
|
({
|
|
140
140
|
className,
|
|
141
141
|
...props
|
|
142
|
-
}: MenubarCheckboxItemLabelProps):
|
|
142
|
+
}: MenubarCheckboxItemLabelProps): react_jsx_runtime93.JSX.Element;
|
|
143
143
|
displayName: string;
|
|
144
144
|
};
|
|
145
145
|
type MenubarRadioItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -147,7 +147,7 @@ declare const MenubarRadioItemLabel: {
|
|
|
147
147
|
({
|
|
148
148
|
className,
|
|
149
149
|
...props
|
|
150
|
-
}: MenubarRadioItemLabelProps):
|
|
150
|
+
}: MenubarRadioItemLabelProps): react_jsx_runtime93.JSX.Element;
|
|
151
151
|
displayName: string;
|
|
152
152
|
};
|
|
153
153
|
type MenubarSubmenuTriggerProps = React.ComponentProps<typeof Menu.SubmenuTrigger>;
|
|
@@ -155,12 +155,12 @@ declare const MenubarSubmenuTrigger: {
|
|
|
155
155
|
({
|
|
156
156
|
className,
|
|
157
157
|
...props
|
|
158
|
-
}: MenubarSubmenuTriggerProps):
|
|
158
|
+
}: MenubarSubmenuTriggerProps): react_jsx_runtime93.JSX.Element;
|
|
159
159
|
displayName: string;
|
|
160
160
|
};
|
|
161
161
|
type MenubarSubmenuRootProps = React.ComponentProps<typeof Menu.SubmenuRoot>;
|
|
162
162
|
declare const MenubarSubmenuRoot: {
|
|
163
|
-
(props: MenubarSubmenuRootProps):
|
|
163
|
+
(props: MenubarSubmenuRootProps): react_jsx_runtime93.JSX.Element;
|
|
164
164
|
displayName: string;
|
|
165
165
|
};
|
|
166
166
|
//#endregion
|