@lglab/compose-ui 0.24.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/checkbox-group.d.ts +12 -0
- package/dist/checkbox-group.js +15 -0
- package/dist/checkbox.d.ts +19 -0
- package/dist/checkbox.js +33 -0
- package/dist/field.d.ts +54 -0
- package/dist/field.js +28 -0
- package/dist/fieldset.d.ts +19 -0
- package/dist/fieldset.js +19 -0
- package/dist/form-variants-D4ge0qav.js +9 -0
- package/dist/form.d.ts +12 -0
- package/dist/form.js +9 -0
- package/dist/index.d.ts +313 -0
- package/dist/index.js +270 -216
- package/dist/input.d.ts +12 -0
- package/dist/input.js +10 -0
- package/dist/number-field.d.ts +54 -0
- package/dist/number-field.js +70 -0
- package/dist/radio-group.d.ts +12 -0
- package/dist/radio-group.js +15 -0
- package/dist/radio.d.ts +19 -0
- package/dist/radio.js +35 -0
- package/dist/select.d.ts +133 -0
- package/dist/select.js +172 -0
- package/dist/textarea.d.ts +11 -0
- package/dist/textarea.js +15 -0
- package/package.json +47 -3
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CheckboxGroup } from '@base-ui/react/checkbox-group';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
import * as React_2 from 'react';
|
|
4
|
+
|
|
5
|
+
export declare const CheckboxGroupRoot: {
|
|
6
|
+
({ className, ...props }: CheckboxGroupRootProps): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare type CheckboxGroupRootProps = React_2.ComponentProps<typeof CheckboxGroup>;
|
|
11
|
+
|
|
12
|
+
export { }
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
3
|
+
import { CheckboxGroup as t } from "@base-ui/react/checkbox-group";
|
|
4
|
+
import { c } from "./utils-B6yFEsav.js";
|
|
5
|
+
const m = ({ className: o, ...r }) => /* @__PURE__ */ e(
|
|
6
|
+
t,
|
|
7
|
+
{
|
|
8
|
+
className: c("flex flex-col items-start gap-2", o),
|
|
9
|
+
...r
|
|
10
|
+
}
|
|
11
|
+
);
|
|
12
|
+
m.displayName = "CheckboxGroupRoot";
|
|
13
|
+
export {
|
|
14
|
+
m as CheckboxGroupRoot
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Checkbox } from '@base-ui/react/checkbox';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
import * as React_2 from 'react';
|
|
4
|
+
|
|
5
|
+
export declare const CheckboxIndicator: {
|
|
6
|
+
({ className, children, ...props }: CheckboxIndicatorProps): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare type CheckboxIndicatorProps = React_2.ComponentProps<typeof Checkbox.Indicator>;
|
|
11
|
+
|
|
12
|
+
export declare const CheckboxRoot: {
|
|
13
|
+
({ className, ...props }: CheckboxRootProps): JSX.Element;
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export declare type CheckboxRootProps = React_2.ComponentProps<typeof Checkbox.Root>;
|
|
18
|
+
|
|
19
|
+
export { }
|
package/dist/checkbox.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
3
|
+
import { Checkbox as a } from "@base-ui/react/checkbox";
|
|
4
|
+
import { c as o } from "./utils-B6yFEsav.js";
|
|
5
|
+
const d = ({ className: e, ...r }) => /* @__PURE__ */ t(
|
|
6
|
+
a.Root,
|
|
7
|
+
{
|
|
8
|
+
className: o(
|
|
9
|
+
"flex size-5 items-center justify-center rounded-sm border border-input bg-transparent",
|
|
10
|
+
"transition-colors duration-150",
|
|
11
|
+
"focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring",
|
|
12
|
+
"data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground",
|
|
13
|
+
"data-indeterminate:border-primary data-indeterminate:bg-primary data-indeterminate:text-primary-foreground",
|
|
14
|
+
"data-disabled:cursor-not-allowed data-disabled:opacity-50",
|
|
15
|
+
e
|
|
16
|
+
),
|
|
17
|
+
...r
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
d.displayName = "CheckboxRoot";
|
|
21
|
+
const n = ({ className: e, children: r, ...i }) => /* @__PURE__ */ t(
|
|
22
|
+
a.Indicator,
|
|
23
|
+
{
|
|
24
|
+
className: o("flex items-center justify-center data-unchecked:hidden", e),
|
|
25
|
+
...i,
|
|
26
|
+
children: r
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
n.displayName = "CheckboxIndicator";
|
|
30
|
+
export {
|
|
31
|
+
n as CheckboxIndicator,
|
|
32
|
+
d as CheckboxRoot
|
|
33
|
+
};
|
package/dist/field.d.ts
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Field } from '@base-ui/react/field';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
import * as React_2 from 'react';
|
|
4
|
+
|
|
5
|
+
export declare const FieldControl: {
|
|
6
|
+
({ className, ...props }: FieldControlProps): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare type FieldControlProps = React_2.ComponentProps<typeof Field.Control>;
|
|
11
|
+
|
|
12
|
+
export declare const FieldDescription: {
|
|
13
|
+
({ className, ...props }: FieldDescriptionProps): JSX.Element;
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export declare type FieldDescriptionProps = React_2.ComponentProps<typeof Field.Description>;
|
|
18
|
+
|
|
19
|
+
export declare const FieldError: {
|
|
20
|
+
({ className, ...props }: FieldErrorProps): JSX.Element;
|
|
21
|
+
displayName: string;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export declare type FieldErrorProps = React_2.ComponentProps<typeof Field.Error>;
|
|
25
|
+
|
|
26
|
+
export declare const FieldItem: {
|
|
27
|
+
({ className, ...props }: FieldItemProps): JSX.Element;
|
|
28
|
+
displayName: string;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export declare type FieldItemProps = React_2.ComponentProps<typeof Field.Item>;
|
|
32
|
+
|
|
33
|
+
export declare const FieldLabel: {
|
|
34
|
+
({ className, ...props }: FieldLabelProps): JSX.Element;
|
|
35
|
+
displayName: string;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export declare type FieldLabelProps = React_2.ComponentProps<typeof Field.Label>;
|
|
39
|
+
|
|
40
|
+
export declare const FieldRoot: {
|
|
41
|
+
({ className, ...props }: FieldRootProps): JSX.Element;
|
|
42
|
+
displayName: string;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export declare type FieldRootProps = React_2.ComponentProps<typeof Field.Root>;
|
|
46
|
+
|
|
47
|
+
export declare const FieldValidity: {
|
|
48
|
+
(props: FieldValidityProps): JSX.Element;
|
|
49
|
+
displayName: string;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export declare type FieldValidityProps = React_2.ComponentProps<typeof Field.Validity>;
|
|
53
|
+
|
|
54
|
+
export { }
|
package/dist/field.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
3
|
+
import { Field as i } from "@base-ui/react/field";
|
|
4
|
+
import { f as a, l as r, i as o, d, e as m, a as n } from "./form-variants-D4ge0qav.js";
|
|
5
|
+
import { c as t } from "./utils-B6yFEsav.js";
|
|
6
|
+
const c = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Root, { className: t(a, e), ...l });
|
|
7
|
+
c.displayName = "FieldRoot";
|
|
8
|
+
const p = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Label, { className: t(r, e), ...l });
|
|
9
|
+
p.displayName = "FieldLabel";
|
|
10
|
+
const y = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Control, { className: t(o, e), ...l });
|
|
11
|
+
y.displayName = "FieldControl";
|
|
12
|
+
const F = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Description, { className: t(d, e), ...l });
|
|
13
|
+
F.displayName = "FieldDescription";
|
|
14
|
+
const N = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Error, { className: t(m, e), ...l });
|
|
15
|
+
N.displayName = "FieldError";
|
|
16
|
+
const u = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Item, { className: t(n, e), ...l });
|
|
17
|
+
u.displayName = "FieldItem";
|
|
18
|
+
const f = (e) => /* @__PURE__ */ s(i.Validity, { ...e });
|
|
19
|
+
f.displayName = "FieldValidity";
|
|
20
|
+
export {
|
|
21
|
+
y as FieldControl,
|
|
22
|
+
F as FieldDescription,
|
|
23
|
+
N as FieldError,
|
|
24
|
+
u as FieldItem,
|
|
25
|
+
p as FieldLabel,
|
|
26
|
+
c as FieldRoot,
|
|
27
|
+
f as FieldValidity
|
|
28
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Fieldset } from '@base-ui/react/fieldset';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
import * as React_2 from 'react';
|
|
4
|
+
|
|
5
|
+
export declare const FieldsetLegend: {
|
|
6
|
+
({ className, ...props }: FieldsetLegendProps): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare type FieldsetLegendProps = React_2.ComponentProps<typeof Fieldset.Legend>;
|
|
11
|
+
|
|
12
|
+
export declare const FieldsetRoot: {
|
|
13
|
+
({ className, ...props }: FieldsetRootProps): JSX.Element;
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export declare type FieldsetRootProps = React_2.ComponentProps<typeof Fieldset.Root>;
|
|
18
|
+
|
|
19
|
+
export { }
|
package/dist/fieldset.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
3
|
+
import { Fieldset as o } from "@base-ui/react/fieldset";
|
|
4
|
+
import { l as r } from "./form-variants-D4ge0qav.js";
|
|
5
|
+
import { c as l } from "./utils-B6yFEsav.js";
|
|
6
|
+
const a = ({ className: e, ...t }) => /* @__PURE__ */ s(
|
|
7
|
+
o.Root,
|
|
8
|
+
{
|
|
9
|
+
className: l("flex flex-col items-start gap-2", e),
|
|
10
|
+
...t
|
|
11
|
+
}
|
|
12
|
+
);
|
|
13
|
+
a.displayName = "FieldsetRoot";
|
|
14
|
+
const i = ({ className: e, ...t }) => /* @__PURE__ */ s(o.Legend, { className: l(r, e), ...t });
|
|
15
|
+
i.displayName = "FieldsetLegend";
|
|
16
|
+
export {
|
|
17
|
+
i as FieldsetLegend,
|
|
18
|
+
a as FieldsetRoot
|
|
19
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const e = "flex w-full rounded-md text-sm h-9 px-3 bg-transparent text-foreground border border-input transition-colors duration-200 placeholder:text-muted-foreground aria-invalid:border-destructive aria-invalid:ring-destructive/20", t = "flex items-center gap-2 text-sm font-medium text-foreground data-disabled:opacity-50", r = "text-sm text-muted-foreground", s = "text-sm text-destructive", o = "flex flex-col gap-1.5", a = "flex items-center gap-2";
|
|
2
|
+
export {
|
|
3
|
+
a,
|
|
4
|
+
r as d,
|
|
5
|
+
s as e,
|
|
6
|
+
o as f,
|
|
7
|
+
e as i,
|
|
8
|
+
t as l
|
|
9
|
+
};
|
package/dist/form.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Form } from '@base-ui/react/form';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
import * as React_2 from 'react';
|
|
4
|
+
|
|
5
|
+
export declare const FormRoot: {
|
|
6
|
+
({ className, ...props }: FormRootProps): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare type FormRootProps = React_2.ComponentProps<typeof Form>;
|
|
11
|
+
|
|
12
|
+
export { }
|
package/dist/form.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as m } from "react/jsx-runtime";
|
|
3
|
+
import { Form as t } from "@base-ui/react/form";
|
|
4
|
+
import { c as e } from "./utils-B6yFEsav.js";
|
|
5
|
+
const s = ({ className: o, ...r }) => /* @__PURE__ */ m(t, { className: e("flex flex-col gap-4", o), ...r });
|
|
6
|
+
s.displayName = "FormRoot";
|
|
7
|
+
export {
|
|
8
|
+
s as FormRoot
|
|
9
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2,20 +2,31 @@ import { Accordion } from '@base-ui/react/accordion';
|
|
|
2
2
|
import { AlertDialog } from '@base-ui/react/alert-dialog';
|
|
3
3
|
import { Avatar } from '@base-ui/react/avatar';
|
|
4
4
|
import { Button as Button_2 } from '@base-ui/react/button';
|
|
5
|
+
import { Checkbox } from '@base-ui/react/checkbox';
|
|
6
|
+
import { CheckboxGroup } from '@base-ui/react/checkbox-group';
|
|
5
7
|
import { ClassProp } from 'class-variance-authority/types';
|
|
6
8
|
import { Collapsible } from '@base-ui/react/collapsible';
|
|
7
9
|
import { ContextMenu } from '@base-ui/react/context-menu';
|
|
8
10
|
import { Dialog } from '@base-ui/react/dialog';
|
|
11
|
+
import { Field } from '@base-ui/react/field';
|
|
12
|
+
import { Fieldset } from '@base-ui/react/fieldset';
|
|
13
|
+
import { Form } from '@base-ui/react/form';
|
|
14
|
+
import { Input as Input_2 } from '@base-ui/react/input';
|
|
9
15
|
import { JSX } from 'react/jsx-runtime';
|
|
10
16
|
import { Menu } from '@base-ui/react/menu';
|
|
11
17
|
import { Menubar } from '@base-ui/react/menubar';
|
|
12
18
|
import { Meter } from '@base-ui/react/meter';
|
|
13
19
|
import { NavigationMenu } from '@base-ui/react/navigation-menu';
|
|
20
|
+
import { NumberField } from '@base-ui/react/number-field';
|
|
14
21
|
import { Popover } from '@base-ui/react/popover';
|
|
15
22
|
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
16
23
|
import { Progress } from '@base-ui/react/progress';
|
|
24
|
+
import { Radio } from '@base-ui/react/radio';
|
|
25
|
+
import { RadioGroup } from '@base-ui/react/radio-group';
|
|
17
26
|
import * as React_2 from 'react';
|
|
18
27
|
import { ScrollArea } from '@base-ui/react/scroll-area';
|
|
28
|
+
import { Select } from '@base-ui/react/select';
|
|
29
|
+
import { SelectRootProps as SelectRootProps_2 } from '@base-ui/react/select';
|
|
19
30
|
import { Separator as Separator_2 } from '@base-ui/react/separator';
|
|
20
31
|
import { Slider } from '@base-ui/react/slider';
|
|
21
32
|
import { Switch } from '@base-ui/react/switch';
|
|
@@ -286,6 +297,27 @@ declare const cardVariants: (props?: ({
|
|
|
286
297
|
variant?: "default" | "outline" | "elevated" | null | undefined;
|
|
287
298
|
} & ClassProp) | undefined) => string;
|
|
288
299
|
|
|
300
|
+
export declare const CheckboxGroupRoot: {
|
|
301
|
+
({ className, ...props }: CheckboxGroupRootProps): JSX.Element;
|
|
302
|
+
displayName: string;
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
export declare type CheckboxGroupRootProps = React_2.ComponentProps<typeof CheckboxGroup>;
|
|
306
|
+
|
|
307
|
+
export declare const CheckboxIndicator: {
|
|
308
|
+
({ className, children, ...props }: CheckboxIndicatorProps): JSX.Element;
|
|
309
|
+
displayName: string;
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export declare type CheckboxIndicatorProps = React_2.ComponentProps<typeof Checkbox.Indicator>;
|
|
313
|
+
|
|
314
|
+
export declare const CheckboxRoot: {
|
|
315
|
+
({ className, ...props }: CheckboxRootProps): JSX.Element;
|
|
316
|
+
displayName: string;
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
export declare type CheckboxRootProps = React_2.ComponentProps<typeof Checkbox.Root>;
|
|
320
|
+
|
|
289
321
|
export declare const CollapsiblePanel: {
|
|
290
322
|
({ className, ...props }: CollapsiblePanelProps): JSX.Element;
|
|
291
323
|
displayName: string;
|
|
@@ -617,8 +649,85 @@ export declare type DrawerTriggerProps = React_2.ComponentProps<typeof Dialog.Tr
|
|
|
617
649
|
size?: ButtonSize;
|
|
618
650
|
};
|
|
619
651
|
|
|
652
|
+
export declare const FieldControl: {
|
|
653
|
+
({ className, ...props }: FieldControlProps): JSX.Element;
|
|
654
|
+
displayName: string;
|
|
655
|
+
};
|
|
656
|
+
|
|
657
|
+
export declare type FieldControlProps = React_2.ComponentProps<typeof Field.Control>;
|
|
658
|
+
|
|
659
|
+
export declare const FieldDescription: {
|
|
660
|
+
({ className, ...props }: FieldDescriptionProps): JSX.Element;
|
|
661
|
+
displayName: string;
|
|
662
|
+
};
|
|
663
|
+
|
|
664
|
+
export declare type FieldDescriptionProps = React_2.ComponentProps<typeof Field.Description>;
|
|
665
|
+
|
|
666
|
+
export declare const FieldError: {
|
|
667
|
+
({ className, ...props }: FieldErrorProps): JSX.Element;
|
|
668
|
+
displayName: string;
|
|
669
|
+
};
|
|
670
|
+
|
|
671
|
+
export declare type FieldErrorProps = React_2.ComponentProps<typeof Field.Error>;
|
|
672
|
+
|
|
673
|
+
export declare const FieldItem: {
|
|
674
|
+
({ className, ...props }: FieldItemProps): JSX.Element;
|
|
675
|
+
displayName: string;
|
|
676
|
+
};
|
|
677
|
+
|
|
678
|
+
export declare type FieldItemProps = React_2.ComponentProps<typeof Field.Item>;
|
|
679
|
+
|
|
680
|
+
export declare const FieldLabel: {
|
|
681
|
+
({ className, ...props }: FieldLabelProps): JSX.Element;
|
|
682
|
+
displayName: string;
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
export declare type FieldLabelProps = React_2.ComponentProps<typeof Field.Label>;
|
|
686
|
+
|
|
687
|
+
export declare const FieldRoot: {
|
|
688
|
+
({ className, ...props }: FieldRootProps): JSX.Element;
|
|
689
|
+
displayName: string;
|
|
690
|
+
};
|
|
691
|
+
|
|
692
|
+
export declare type FieldRootProps = React_2.ComponentProps<typeof Field.Root>;
|
|
693
|
+
|
|
694
|
+
export declare const FieldsetLegend: {
|
|
695
|
+
({ className, ...props }: FieldsetLegendProps): JSX.Element;
|
|
696
|
+
displayName: string;
|
|
697
|
+
};
|
|
698
|
+
|
|
699
|
+
export declare type FieldsetLegendProps = React_2.ComponentProps<typeof Fieldset.Legend>;
|
|
700
|
+
|
|
701
|
+
export declare const FieldsetRoot: {
|
|
702
|
+
({ className, ...props }: FieldsetRootProps): JSX.Element;
|
|
703
|
+
displayName: string;
|
|
704
|
+
};
|
|
705
|
+
|
|
706
|
+
export declare type FieldsetRootProps = React_2.ComponentProps<typeof Fieldset.Root>;
|
|
707
|
+
|
|
708
|
+
export declare const FieldValidity: {
|
|
709
|
+
(props: FieldValidityProps): JSX.Element;
|
|
710
|
+
displayName: string;
|
|
711
|
+
};
|
|
712
|
+
|
|
713
|
+
export declare type FieldValidityProps = React_2.ComponentProps<typeof Field.Validity>;
|
|
714
|
+
|
|
715
|
+
export declare const FormRoot: {
|
|
716
|
+
({ className, ...props }: FormRootProps): JSX.Element;
|
|
717
|
+
displayName: string;
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
export declare type FormRootProps = React_2.ComponentProps<typeof Form>;
|
|
721
|
+
|
|
620
722
|
declare type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
621
723
|
|
|
724
|
+
export declare const Input: {
|
|
725
|
+
({ className, ...props }: InputProps): JSX.Element;
|
|
726
|
+
displayName: string;
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
export declare type InputProps = React_2.ComponentProps<typeof Input_2>;
|
|
730
|
+
|
|
622
731
|
export declare const MenuArrow: {
|
|
623
732
|
({ className, ...props }: MenuArrowProps): JSX.Element;
|
|
624
733
|
displayName: string;
|
|
@@ -1026,6 +1135,55 @@ export declare const NavigationMenuViewport: {
|
|
|
1026
1135
|
|
|
1027
1136
|
export declare type NavigationMenuViewportProps = React_2.ComponentProps<typeof NavigationMenu.Viewport>;
|
|
1028
1137
|
|
|
1138
|
+
export declare const NumberFieldDecrement: {
|
|
1139
|
+
({ className, ...props }: NumberFieldDecrementProps): JSX.Element;
|
|
1140
|
+
displayName: string;
|
|
1141
|
+
};
|
|
1142
|
+
|
|
1143
|
+
export declare type NumberFieldDecrementProps = React_2.ComponentProps<typeof NumberField.Decrement>;
|
|
1144
|
+
|
|
1145
|
+
export declare const NumberFieldGroup: {
|
|
1146
|
+
({ className, ...props }: NumberFieldGroupProps): JSX.Element;
|
|
1147
|
+
displayName: string;
|
|
1148
|
+
};
|
|
1149
|
+
|
|
1150
|
+
export declare type NumberFieldGroupProps = React_2.ComponentProps<typeof NumberField.Group>;
|
|
1151
|
+
|
|
1152
|
+
export declare const NumberFieldIncrement: {
|
|
1153
|
+
({ className, ...props }: NumberFieldIncrementProps): JSX.Element;
|
|
1154
|
+
displayName: string;
|
|
1155
|
+
};
|
|
1156
|
+
|
|
1157
|
+
export declare type NumberFieldIncrementProps = React_2.ComponentProps<typeof NumberField.Increment>;
|
|
1158
|
+
|
|
1159
|
+
export declare const NumberFieldInput: {
|
|
1160
|
+
({ className, ...props }: NumberFieldInputProps): JSX.Element;
|
|
1161
|
+
displayName: string;
|
|
1162
|
+
};
|
|
1163
|
+
|
|
1164
|
+
export declare type NumberFieldInputProps = React_2.ComponentProps<typeof NumberField.Input>;
|
|
1165
|
+
|
|
1166
|
+
export declare const NumberFieldRoot: {
|
|
1167
|
+
({ className, ...props }: NumberFieldRootProps): JSX.Element;
|
|
1168
|
+
displayName: string;
|
|
1169
|
+
};
|
|
1170
|
+
|
|
1171
|
+
export declare type NumberFieldRootProps = React_2.ComponentProps<typeof NumberField.Root>;
|
|
1172
|
+
|
|
1173
|
+
export declare const NumberFieldScrubArea: {
|
|
1174
|
+
({ className, ...props }: NumberFieldScrubAreaProps): JSX.Element;
|
|
1175
|
+
displayName: string;
|
|
1176
|
+
};
|
|
1177
|
+
|
|
1178
|
+
export declare const NumberFieldScrubAreaCursor: {
|
|
1179
|
+
({ className, ...props }: NumberFieldScrubAreaCursorProps): JSX.Element;
|
|
1180
|
+
displayName: string;
|
|
1181
|
+
};
|
|
1182
|
+
|
|
1183
|
+
export declare type NumberFieldScrubAreaCursorProps = React_2.ComponentProps<typeof NumberField.ScrubAreaCursor>;
|
|
1184
|
+
|
|
1185
|
+
export declare type NumberFieldScrubAreaProps = React_2.ComponentProps<typeof NumberField.ScrubArea>;
|
|
1186
|
+
|
|
1029
1187
|
export declare const PopoverArrow: {
|
|
1030
1188
|
({ className, ...props }: PopoverArrowProps): JSX.Element;
|
|
1031
1189
|
displayName: string;
|
|
@@ -1187,6 +1345,27 @@ export declare const ProgressValue: {
|
|
|
1187
1345
|
|
|
1188
1346
|
export declare type ProgressValueProps = React_2.ComponentProps<typeof Progress.Value>;
|
|
1189
1347
|
|
|
1348
|
+
export declare const RadioGroupRoot: {
|
|
1349
|
+
({ className, ...props }: RadioGroupRootProps): JSX.Element;
|
|
1350
|
+
displayName: string;
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
export declare type RadioGroupRootProps = React_2.ComponentProps<typeof RadioGroup>;
|
|
1354
|
+
|
|
1355
|
+
export declare const RadioIndicator: {
|
|
1356
|
+
({ className, ...props }: RadioIndicatorProps): JSX.Element;
|
|
1357
|
+
displayName: string;
|
|
1358
|
+
};
|
|
1359
|
+
|
|
1360
|
+
export declare type RadioIndicatorProps = React_2.ComponentProps<typeof Radio.Indicator>;
|
|
1361
|
+
|
|
1362
|
+
export declare const RadioRoot: {
|
|
1363
|
+
({ className, ...props }: RadioRootProps): JSX.Element;
|
|
1364
|
+
displayName: string;
|
|
1365
|
+
};
|
|
1366
|
+
|
|
1367
|
+
export declare type RadioRootProps = React_2.ComponentProps<typeof Radio.Root>;
|
|
1368
|
+
|
|
1190
1369
|
export declare const ScrollAreaContent: {
|
|
1191
1370
|
({ className, ...props }: ScrollAreaContentProps): JSX.Element;
|
|
1192
1371
|
displayName: string;
|
|
@@ -1229,6 +1408,133 @@ export declare const ScrollAreaViewport: {
|
|
|
1229
1408
|
|
|
1230
1409
|
export declare type ScrollAreaViewportProps = React_2.ComponentProps<typeof ScrollArea.Viewport>;
|
|
1231
1410
|
|
|
1411
|
+
export declare const SelectArrow: {
|
|
1412
|
+
({ className, ...props }: SelectArrowProps): JSX.Element;
|
|
1413
|
+
displayName: string;
|
|
1414
|
+
};
|
|
1415
|
+
|
|
1416
|
+
export declare type SelectArrowProps = React_2.ComponentProps<typeof Select.Arrow>;
|
|
1417
|
+
|
|
1418
|
+
export declare const SelectBackdrop: {
|
|
1419
|
+
({ className, ...props }: SelectBackdropProps): JSX.Element;
|
|
1420
|
+
displayName: string;
|
|
1421
|
+
};
|
|
1422
|
+
|
|
1423
|
+
export declare type SelectBackdropProps = React_2.ComponentProps<typeof Select.Backdrop>;
|
|
1424
|
+
|
|
1425
|
+
export declare const SelectGroup: {
|
|
1426
|
+
({ className, ...props }: SelectGroupProps): JSX.Element;
|
|
1427
|
+
displayName: string;
|
|
1428
|
+
};
|
|
1429
|
+
|
|
1430
|
+
export declare const SelectGroupLabel: {
|
|
1431
|
+
({ className, ...props }: SelectGroupLabelProps): JSX.Element;
|
|
1432
|
+
displayName: string;
|
|
1433
|
+
};
|
|
1434
|
+
|
|
1435
|
+
export declare type SelectGroupLabelProps = React_2.ComponentProps<typeof Select.GroupLabel>;
|
|
1436
|
+
|
|
1437
|
+
export declare type SelectGroupProps = React_2.ComponentProps<typeof Select.Group>;
|
|
1438
|
+
|
|
1439
|
+
export declare const SelectIcon: {
|
|
1440
|
+
({ className, ...props }: SelectIconProps): JSX.Element;
|
|
1441
|
+
displayName: string;
|
|
1442
|
+
};
|
|
1443
|
+
|
|
1444
|
+
export declare type SelectIconProps = React_2.ComponentProps<typeof Select.Icon>;
|
|
1445
|
+
|
|
1446
|
+
export declare const SelectItem: {
|
|
1447
|
+
({ className, ...props }: SelectItemProps): JSX.Element;
|
|
1448
|
+
displayName: string;
|
|
1449
|
+
};
|
|
1450
|
+
|
|
1451
|
+
export declare const SelectItemIndicator: {
|
|
1452
|
+
({ className, ...props }: SelectItemIndicatorProps): JSX.Element;
|
|
1453
|
+
displayName: string;
|
|
1454
|
+
};
|
|
1455
|
+
|
|
1456
|
+
export declare type SelectItemIndicatorProps = React_2.ComponentProps<typeof Select.ItemIndicator>;
|
|
1457
|
+
|
|
1458
|
+
export declare type SelectItemProps = React_2.ComponentProps<typeof Select.Item>;
|
|
1459
|
+
|
|
1460
|
+
export declare const SelectItemText: {
|
|
1461
|
+
({ className, ...props }: SelectItemTextProps): JSX.Element;
|
|
1462
|
+
displayName: string;
|
|
1463
|
+
};
|
|
1464
|
+
|
|
1465
|
+
export declare type SelectItemTextProps = React_2.ComponentProps<typeof Select.ItemText>;
|
|
1466
|
+
|
|
1467
|
+
export declare const SelectList: {
|
|
1468
|
+
({ className, ...props }: SelectListProps): JSX.Element;
|
|
1469
|
+
displayName: string;
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
export declare type SelectListProps = React_2.ComponentProps<typeof Select.List>;
|
|
1473
|
+
|
|
1474
|
+
export declare const SelectPopup: {
|
|
1475
|
+
({ className, ...props }: SelectPopupProps): JSX.Element;
|
|
1476
|
+
displayName: string;
|
|
1477
|
+
};
|
|
1478
|
+
|
|
1479
|
+
export declare type SelectPopupProps = React_2.ComponentProps<typeof Select.Popup>;
|
|
1480
|
+
|
|
1481
|
+
export declare const SelectPortal: {
|
|
1482
|
+
(props: SelectPortalProps): JSX.Element;
|
|
1483
|
+
displayName: string;
|
|
1484
|
+
};
|
|
1485
|
+
|
|
1486
|
+
export declare type SelectPortalProps = React_2.ComponentProps<typeof Select.Portal>;
|
|
1487
|
+
|
|
1488
|
+
export declare const SelectPositioner: {
|
|
1489
|
+
({ className, ...props }: SelectPositionerProps): JSX.Element;
|
|
1490
|
+
displayName: string;
|
|
1491
|
+
};
|
|
1492
|
+
|
|
1493
|
+
export declare type SelectPositionerProps = React_2.ComponentProps<typeof Select.Positioner>;
|
|
1494
|
+
|
|
1495
|
+
export declare function SelectRoot<Value, Multiple extends boolean | undefined = false>(props: SelectRootProps_2<Value, Multiple>): JSX.Element;
|
|
1496
|
+
|
|
1497
|
+
export declare namespace SelectRoot {
|
|
1498
|
+
var displayName: string;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
export declare type SelectRootProps<Value, Multiple extends boolean | undefined = false> = SelectRootProps_2<Value, Multiple>;
|
|
1502
|
+
|
|
1503
|
+
export declare const SelectScrollDownArrow: {
|
|
1504
|
+
({ className, ...props }: SelectScrollDownArrowProps): JSX.Element;
|
|
1505
|
+
displayName: string;
|
|
1506
|
+
};
|
|
1507
|
+
|
|
1508
|
+
export declare type SelectScrollDownArrowProps = React_2.ComponentProps<typeof Select.ScrollDownArrow>;
|
|
1509
|
+
|
|
1510
|
+
export declare const SelectScrollUpArrow: {
|
|
1511
|
+
({ className, ...props }: SelectScrollUpArrowProps): JSX.Element;
|
|
1512
|
+
displayName: string;
|
|
1513
|
+
};
|
|
1514
|
+
|
|
1515
|
+
export declare type SelectScrollUpArrowProps = React_2.ComponentProps<typeof Select.ScrollUpArrow>;
|
|
1516
|
+
|
|
1517
|
+
export declare const SelectSeparator: {
|
|
1518
|
+
({ className, ...props }: SelectSeparatorProps): JSX.Element;
|
|
1519
|
+
displayName: string;
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
export declare type SelectSeparatorProps = React_2.ComponentProps<typeof Select.Separator>;
|
|
1523
|
+
|
|
1524
|
+
export declare const SelectTrigger: {
|
|
1525
|
+
({ className, ...props }: SelectTriggerProps): JSX.Element;
|
|
1526
|
+
displayName: string;
|
|
1527
|
+
};
|
|
1528
|
+
|
|
1529
|
+
export declare type SelectTriggerProps = React_2.ComponentProps<typeof Select.Trigger>;
|
|
1530
|
+
|
|
1531
|
+
export declare const SelectValue: {
|
|
1532
|
+
({ className, ...props }: SelectValueProps): JSX.Element;
|
|
1533
|
+
displayName: string;
|
|
1534
|
+
};
|
|
1535
|
+
|
|
1536
|
+
export declare type SelectValueProps = React_2.ComponentProps<typeof Select.Value>;
|
|
1537
|
+
|
|
1232
1538
|
export declare const Separator: {
|
|
1233
1539
|
({ className, orientation, ...props }: SeparatorProps): JSX.Element;
|
|
1234
1540
|
displayName: string;
|
|
@@ -1336,6 +1642,13 @@ export declare type TabsTabProps = React_2.ComponentProps<typeof Tabs.Tab> & {
|
|
|
1336
1642
|
size?: 'sm' | 'default' | 'lg';
|
|
1337
1643
|
};
|
|
1338
1644
|
|
|
1645
|
+
export declare const Textarea: {
|
|
1646
|
+
({ className, ...props }: TextareaProps): JSX.Element;
|
|
1647
|
+
displayName: string;
|
|
1648
|
+
};
|
|
1649
|
+
|
|
1650
|
+
export declare type TextareaProps = React_2.ComponentProps<'textarea'>;
|
|
1651
|
+
|
|
1339
1652
|
export { Toast }
|
|
1340
1653
|
|
|
1341
1654
|
export declare const ToastAction: {
|