moduix 0.6.5 → 0.7.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/components/Accordion/Accordion.d.ts +28 -3
- package/dist/components/Accordion/index.d.ts +1 -1
- package/dist/components/AlertDialog/AlertDialog.d.ts +18 -5
- package/dist/components/AlertDialog/index.d.ts +1 -1
- package/dist/components/Autocomplete/Autocomplete.d.ts +25 -1
- package/dist/components/Autocomplete/index.d.ts +1 -1
- package/dist/components/Bleed/Bleed.d.ts +3 -2
- package/dist/components/Checkbox/Checkbox.d.ts +12 -3
- package/dist/components/Checkbox/index.d.ts +1 -1
- package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +4 -1
- package/dist/components/CheckboxGroup/index.d.ts +1 -1
- package/dist/components/Collapsible/Collapsible.d.ts +26 -3
- package/dist/components/Collapsible/index.d.ts +1 -1
- package/dist/components/Combobox/Combobox.d.ts +28 -1
- package/dist/components/Combobox/index.d.ts +1 -1
- package/dist/components/Dialog/Dialog.d.ts +8 -5
- package/dist/components/Dialog/index.d.ts +1 -1
- package/dist/components/Drawer/Drawer.d.ts +12 -8
- package/dist/components/Drawer/index.d.ts +1 -1
- package/dist/components/Field/Field.d.ts +11 -1
- package/dist/components/Field/index.d.ts +1 -1
- package/dist/components/Fieldset/Fieldset.d.ts +3 -1
- package/dist/components/Fieldset/index.d.ts +1 -1
- package/dist/components/Input/Input.d.ts +4 -1
- package/dist/components/Input/index.d.ts +1 -1
- package/dist/components/Menu/Menu.d.ts +9 -6
- package/dist/components/Menu/index.d.ts +1 -1
- package/dist/components/Menubar/Menubar.d.ts +9 -6
- package/dist/components/Menubar/index.d.ts +1 -1
- package/dist/components/NavigationMenu/NavigationMenu.d.ts +34 -5
- package/dist/components/NavigationMenu/index.d.ts +1 -1
- package/dist/components/NumberField/NumberField.d.ts +15 -6
- package/dist/components/NumberField/index.d.ts +2 -2
- package/dist/components/OTPField/OTPField.d.ts +15 -1
- package/dist/components/Popover/Popover.d.ts +11 -12
- package/dist/components/Popover/index.d.ts +2 -2
- package/dist/components/PreviewCard/index.d.ts +1 -1
- package/dist/components/Progress/Progress.d.ts +2 -2
- package/dist/components/Radio/Radio.d.ts +9 -10
- package/dist/components/Radio/index.d.ts +2 -2
- package/dist/components/ScrollArea/ScrollArea.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +10 -7
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Switch/Switch.d.ts +9 -6
- package/dist/components/Switch/index.d.ts +2 -2
- package/dist/components/Tabs/Tabs.d.ts +6 -2
- package/dist/components/Tabs/index.d.ts +1 -1
- package/dist/components/Text/Text.d.ts +7 -5
- package/dist/components/Toast/Toast.d.ts +1 -4
- package/dist/components/Tooltip/Tooltip.d.ts +9 -6
- package/dist/components/Tooltip/index.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1583 -1505
- package/package.json +4 -5
|
@@ -3,15 +3,40 @@ import * as React from 'react';
|
|
|
3
3
|
declare function Accordion<Value = unknown>({ className, ...props }: AccordionProps<Value>): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
declare function AccordionItem({ className, ...props }: AccordionPrimitive.Item.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare function AccordionHeader({ className, ...props }: AccordionPrimitive.Header.Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare function AccordionTrigger({ className, ...props }:
|
|
6
|
+
declare function AccordionTrigger({ className, children, icon, hideIcon, classNames, slotProps, ...props }: AccordionTriggerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
declare function AccordionTriggerIcon({ className, children, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
declare function AccordionPanel({ className, ...props }: AccordionPrimitive.Panel.Props): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
type AccordionProps<Value = unknown> = AccordionPrimitive.Root.Props<Value>;
|
|
10
10
|
type AccordionValue<Value = unknown> = AccordionPrimitive.Root.Value<Value>;
|
|
11
11
|
type AccordionItemProps = AccordionPrimitive.Item.Props;
|
|
12
12
|
type AccordionHeaderProps = AccordionPrimitive.Header.Props;
|
|
13
|
-
type AccordionTriggerProps = AccordionPrimitive.Trigger.Props;
|
|
14
13
|
type AccordionTriggerIconProps = React.ComponentProps<'span'>;
|
|
15
14
|
type AccordionPanelProps = AccordionPrimitive.Panel.Props;
|
|
15
|
+
type AccordionTriggerClassNames = {
|
|
16
|
+
header?: AccordionHeaderProps['className'];
|
|
17
|
+
icon?: AccordionTriggerIconProps['className'];
|
|
18
|
+
};
|
|
19
|
+
type AccordionTriggerSlotProps = {
|
|
20
|
+
header?: Omit<AccordionHeaderProps, 'children' | 'className'>;
|
|
21
|
+
icon?: Omit<AccordionTriggerIconProps, 'children' | 'className'>;
|
|
22
|
+
};
|
|
23
|
+
type AccordionTriggerProps = AccordionPrimitive.Trigger.Props & {
|
|
24
|
+
/**
|
|
25
|
+
* Icon rendered at the end of the trigger. Pass `hideIcon` to remove it.
|
|
26
|
+
*/
|
|
27
|
+
icon?: React.ReactNode;
|
|
28
|
+
/**
|
|
29
|
+
* Removes the default trigger icon.
|
|
30
|
+
*/
|
|
31
|
+
hideIcon?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Classes for internal slots rendered by the trigger.
|
|
34
|
+
*/
|
|
35
|
+
classNames?: AccordionTriggerClassNames;
|
|
36
|
+
/**
|
|
37
|
+
* Props for internal slots rendered by the trigger.
|
|
38
|
+
*/
|
|
39
|
+
slotProps?: AccordionTriggerSlotProps;
|
|
40
|
+
};
|
|
16
41
|
export { Accordion, AccordionItem, AccordionHeader, AccordionTrigger, AccordionTriggerIcon, AccordionPanel, };
|
|
17
|
-
export type { AccordionValue, AccordionProps, AccordionItemProps, AccordionHeaderProps, AccordionTriggerProps, AccordionTriggerIconProps, AccordionPanelProps, };
|
|
42
|
+
export type { AccordionValue, AccordionProps, AccordionItemProps, AccordionHeaderProps, AccordionTriggerProps, AccordionTriggerIconProps, AccordionPanelProps, AccordionTriggerClassNames, AccordionTriggerSlotProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Accordion, AccordionItem, AccordionHeader, AccordionTrigger, AccordionTriggerIcon, AccordionPanel, } from './Accordion';
|
|
2
|
-
export type { AccordionValue, AccordionProps, AccordionItemProps, AccordionHeaderProps, AccordionTriggerProps, AccordionTriggerIconProps, AccordionPanelProps, } from './Accordion';
|
|
2
|
+
export type { AccordionValue, AccordionProps, AccordionItemProps, AccordionHeaderProps, AccordionTriggerProps, AccordionTriggerClassNames, AccordionTriggerSlotProps, AccordionTriggerIconProps, AccordionPanelProps, } from './Accordion';
|
|
@@ -5,14 +5,17 @@ type AlertDialogContentClassNames = {
|
|
|
5
5
|
backdrop?: AlertDialogPrimitive.Backdrop.Props['className'];
|
|
6
6
|
viewport?: AlertDialogPrimitive.Viewport.Props['className'];
|
|
7
7
|
};
|
|
8
|
+
type AlertDialogContentSlotProps = {
|
|
9
|
+
portal?: Omit<AlertDialogPrimitive.Portal.Props, 'className' | 'children'>;
|
|
10
|
+
backdrop?: Omit<AlertDialogPrimitive.Backdrop.Props, 'className'>;
|
|
11
|
+
viewport?: Omit<AlertDialogPrimitive.Viewport.Props, 'className'>;
|
|
12
|
+
};
|
|
8
13
|
type AlertDialogContentProps = Omit<AlertDialogPrimitive.Popup.Props, 'className'> & {
|
|
9
14
|
className?: AlertDialogPrimitive.Popup.Props['className'];
|
|
10
15
|
classNames?: AlertDialogContentClassNames;
|
|
16
|
+
slotProps?: AlertDialogContentSlotProps;
|
|
11
17
|
container?: AlertDialogPrimitive.Portal.Props['container'];
|
|
12
18
|
withBackdrop?: boolean;
|
|
13
|
-
portalProps?: Omit<AlertDialogPrimitive.Portal.Props, 'className' | 'children'>;
|
|
14
|
-
backdropProps?: Omit<AlertDialogPrimitive.Backdrop.Props, 'className'>;
|
|
15
|
-
viewportProps?: Omit<AlertDialogPrimitive.Viewport.Props, 'className'>;
|
|
16
19
|
};
|
|
17
20
|
declare const AlertDialog: typeof AlertDialogPrimitive.Root;
|
|
18
21
|
declare const createAlertDialogHandle: typeof AlertDialogPrimitive.createHandle;
|
|
@@ -21,7 +24,7 @@ declare function AlertDialogTitle({ className, ...props }: AlertDialogPrimitive.
|
|
|
21
24
|
declare function AlertDialogDescription({ className, ...props }: AlertDialogPrimitive.Description.Props): import("react/jsx-runtime").JSX.Element;
|
|
22
25
|
declare function AlertDialogClose({ className, ...props }: AlertDialogPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
23
26
|
declare function AlertDialogCloseIcon({ className, children, ...props }: AlertDialogPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare function AlertDialogContent({ className, classNames, container, withBackdrop,
|
|
27
|
+
declare function AlertDialogContent({ className, classNames, slotProps, container, withBackdrop, ...props }: AlertDialogContentProps): import("react/jsx-runtime").JSX.Element;
|
|
25
28
|
declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
26
29
|
declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
27
30
|
declare function AlertDialogBody({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -29,5 +32,15 @@ declare function AlertDialogAction({ className, ...props }: AlertDialogPrimitive
|
|
|
29
32
|
declare function AlertDialogCancel({ className, ...props }: AlertDialogPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
30
33
|
type AlertDialogProps<Payload = unknown> = AlertDialogPrimitive.Root.Props<Payload>;
|
|
31
34
|
type AlertDialogHandle<Payload = unknown> = AlertDialogPrimitive.Handle<Payload>;
|
|
35
|
+
type AlertDialogTriggerProps = AlertDialogPrimitive.Trigger.Props;
|
|
36
|
+
type AlertDialogTitleProps = AlertDialogPrimitive.Title.Props;
|
|
37
|
+
type AlertDialogDescriptionProps = AlertDialogPrimitive.Description.Props;
|
|
38
|
+
type AlertDialogCloseProps = AlertDialogPrimitive.Close.Props;
|
|
39
|
+
type AlertDialogCloseIconProps = AlertDialogPrimitive.Close.Props;
|
|
40
|
+
type AlertDialogHeaderProps = React.ComponentProps<'div'>;
|
|
41
|
+
type AlertDialogBodyProps = React.ComponentProps<'div'>;
|
|
42
|
+
type AlertDialogFooterProps = React.ComponentProps<'div'>;
|
|
43
|
+
type AlertDialogActionProps = AlertDialogPrimitive.Close.Props;
|
|
44
|
+
type AlertDialogCancelProps = AlertDialogPrimitive.Close.Props;
|
|
32
45
|
export { AlertDialog, createAlertDialogHandle, AlertDialogTrigger, AlertDialogTitle, AlertDialogDescription, AlertDialogClose, AlertDialogCloseIcon, AlertDialogContent, AlertDialogHeader, AlertDialogBody, AlertDialogFooter, AlertDialogAction, AlertDialogCancel, };
|
|
33
|
-
export type { AlertDialogProps, AlertDialogHandle, AlertDialogContentProps, AlertDialogContentClassNames, };
|
|
46
|
+
export type { AlertDialogProps, AlertDialogHandle, AlertDialogTriggerProps, AlertDialogTitleProps, AlertDialogDescriptionProps, AlertDialogCloseProps, AlertDialogCloseIconProps, AlertDialogContentProps, AlertDialogContentClassNames, AlertDialogContentSlotProps, AlertDialogHeaderProps, AlertDialogBodyProps, AlertDialogFooterProps, AlertDialogActionProps, AlertDialogCancelProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { AlertDialog, createAlertDialogHandle, AlertDialogTrigger, AlertDialogTitle, AlertDialogDescription, AlertDialogClose, AlertDialogCloseIcon, AlertDialogContent, AlertDialogHeader, AlertDialogBody, AlertDialogFooter, AlertDialogAction, AlertDialogCancel, } from './AlertDialog';
|
|
2
|
-
export type { AlertDialogProps, AlertDialogHandle, AlertDialogContentProps, AlertDialogContentClassNames, } from './AlertDialog';
|
|
2
|
+
export type { AlertDialogProps, AlertDialogHandle, AlertDialogTriggerProps, AlertDialogTitleProps, AlertDialogDescriptionProps, AlertDialogCloseProps, AlertDialogCloseIconProps, AlertDialogContentProps, AlertDialogContentClassNames, AlertDialogContentSlotProps, AlertDialogHeaderProps, AlertDialogBodyProps, AlertDialogFooterProps, AlertDialogActionProps, AlertDialogCancelProps, } from './AlertDialog';
|
|
@@ -48,5 +48,29 @@ declare const useAutocompleteFilter: typeof import('@base-ui/react/internals/fil
|
|
|
48
48
|
declare const useAutocompleteFilteredItems: typeof AutocompletePrimitive.useFilteredItems;
|
|
49
49
|
type AutocompleteProps<Value = unknown> = AutocompletePrimitive.Root.Props<Value>;
|
|
50
50
|
type AutocompleteValueType<Value = unknown> = AutocompleteProps<Value>['value'];
|
|
51
|
+
type AutocompleteFieldProps = React.ComponentProps<'div'>;
|
|
52
|
+
type AutocompleteInlineInputContainerProps = React.ComponentProps<'div'>;
|
|
53
|
+
type AutocompleteFieldLabelProps = React.ComponentProps<'label'>;
|
|
54
|
+
type AutocompleteValueProps = AutocompletePrimitive.Value.Props;
|
|
55
|
+
type AutocompleteInputGroupProps = AutocompletePrimitive.InputGroup.Props;
|
|
56
|
+
type AutocompleteInputProps = AutocompletePrimitive.Input.Props;
|
|
57
|
+
type AutocompleteControlActionsProps = React.ComponentProps<'div'>;
|
|
58
|
+
type AutocompleteTriggerProps = AutocompletePrimitive.Trigger.Props;
|
|
59
|
+
type AutocompleteFieldTriggerProps = AutocompletePrimitive.Trigger.Props;
|
|
60
|
+
type AutocompleteIconProps = AutocompletePrimitive.Icon.Props;
|
|
61
|
+
type AutocompleteClearProps = AutocompletePrimitive.Clear.Props;
|
|
62
|
+
type AutocompleteStatusProps = AutocompletePrimitive.Status.Props;
|
|
63
|
+
type AutocompleteEmptyProps = AutocompletePrimitive.Empty.Props;
|
|
64
|
+
type AutocompleteListProps = AutocompletePrimitive.List.Props;
|
|
65
|
+
type AutocompleteRowProps = AutocompletePrimitive.Row.Props;
|
|
66
|
+
type AutocompleteItemProps = AutocompletePrimitive.Item.Props;
|
|
67
|
+
type AutocompleteItemTextProps = React.ComponentProps<'span'>;
|
|
68
|
+
type AutocompleteItemTextContentProps = React.ComponentProps<'span'>;
|
|
69
|
+
type AutocompleteItemTextIconProps = React.ComponentProps<'span'>;
|
|
70
|
+
type AutocompleteItemTextLabelProps = React.ComponentProps<'span'>;
|
|
71
|
+
type AutocompleteSeparatorProps = AutocompletePrimitive.Separator.Props;
|
|
72
|
+
type AutocompleteGroupProps = AutocompletePrimitive.Group.Props;
|
|
73
|
+
type AutocompleteGroupLabelProps = AutocompletePrimitive.GroupLabel.Props;
|
|
74
|
+
type AutocompleteCollectionProps = AutocompletePrimitive.Collection.Props;
|
|
51
75
|
export { Autocomplete, AutocompleteField, AutocompleteInlineInputContainer, AutocompleteFieldLabel, AutocompleteValue, AutocompleteInputGroup, AutocompleteInput, AutocompleteControlActions, AutocompleteTrigger, AutocompleteFieldTrigger, AutocompleteIcon, AutocompleteClear, AutocompleteContent, AutocompleteStatus, AutocompleteEmpty, AutocompleteList, AutocompleteRow, AutocompleteItem, AutocompleteItemText, AutocompleteItemTextContent, AutocompleteItemTextIcon, AutocompleteItemTextLabel, AutocompleteSeparator, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteCollection, useAutocompleteAnchor, useAutocompleteFilter, useAutocompleteFilteredItems, };
|
|
52
|
-
export type { AutocompleteProps, AutocompleteValueType, AutocompleteContentClassNames, AutocompleteContentProps, };
|
|
76
|
+
export type { AutocompleteProps, AutocompleteValueType, AutocompleteContentClassNames, AutocompleteContentProps, AutocompleteFieldProps, AutocompleteInlineInputContainerProps, AutocompleteFieldLabelProps, AutocompleteValueProps, AutocompleteInputGroupProps, AutocompleteInputProps, AutocompleteControlActionsProps, AutocompleteTriggerProps, AutocompleteFieldTriggerProps, AutocompleteIconProps, AutocompleteClearProps, AutocompleteStatusProps, AutocompleteEmptyProps, AutocompleteListProps, AutocompleteRowProps, AutocompleteItemProps, AutocompleteItemTextProps, AutocompleteItemTextContentProps, AutocompleteItemTextIconProps, AutocompleteItemTextLabelProps, AutocompleteSeparatorProps, AutocompleteGroupProps, AutocompleteGroupLabelProps, AutocompleteCollectionProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Autocomplete, AutocompleteField, AutocompleteInlineInputContainer, AutocompleteFieldLabel, AutocompleteValue, AutocompleteInputGroup, AutocompleteInput, AutocompleteControlActions, AutocompleteTrigger, AutocompleteFieldTrigger, AutocompleteIcon, AutocompleteClear, AutocompleteContent, AutocompleteStatus, AutocompleteEmpty, AutocompleteList, AutocompleteRow, AutocompleteItem, AutocompleteItemText, AutocompleteItemTextContent, AutocompleteItemTextIcon, AutocompleteItemTextLabel, AutocompleteSeparator, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteCollection, useAutocompleteAnchor, useAutocompleteFilter, useAutocompleteFilteredItems, } from './Autocomplete';
|
|
2
|
-
export type { AutocompleteProps, AutocompleteValueType, AutocompleteContentClassNames, AutocompleteContentProps, } from './Autocomplete';
|
|
2
|
+
export type { AutocompleteProps, AutocompleteValueType, AutocompleteContentClassNames, AutocompleteContentProps, AutocompleteFieldProps, AutocompleteInlineInputContainerProps, AutocompleteFieldLabelProps, AutocompleteValueProps, AutocompleteInputGroupProps, AutocompleteInputProps, AutocompleteControlActionsProps, AutocompleteTriggerProps, AutocompleteFieldTriggerProps, AutocompleteIconProps, AutocompleteClearProps, AutocompleteStatusProps, AutocompleteEmptyProps, AutocompleteListProps, AutocompleteRowProps, AutocompleteItemProps, AutocompleteItemTextProps, AutocompleteItemTextContentProps, AutocompleteItemTextIconProps, AutocompleteItemTextLabelProps, AutocompleteSeparatorProps, AutocompleteGroupProps, AutocompleteGroupLabelProps, AutocompleteCollectionProps, } from './Autocomplete';
|
|
@@ -7,7 +7,8 @@ type BleedOwnProps<As extends BleedAs = 'div'> = {
|
|
|
7
7
|
inline?: BleedInline;
|
|
8
8
|
block?: BleedBlock;
|
|
9
9
|
};
|
|
10
|
-
type BleedProps<As extends BleedAs = 'div'> = BleedOwnProps<As> & Omit<React.
|
|
11
|
-
|
|
10
|
+
type BleedProps<As extends BleedAs = 'div'> = BleedOwnProps<As> & Omit<React.ComponentPropsWithRef<As>, keyof BleedOwnProps<As>>;
|
|
11
|
+
type BleedComponent = <As extends BleedAs = 'div'>(props: BleedProps<As>) => React.ReactElement | null;
|
|
12
|
+
declare const Bleed: BleedComponent;
|
|
12
13
|
export { Bleed };
|
|
13
14
|
export type { BleedProps, BleedAs, BleedInline, BleedBlock };
|
|
@@ -2,19 +2,24 @@ import { Checkbox as CheckboxPrimitive } from '@base-ui/react/checkbox';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
4
|
type CheckboxClassNames = {
|
|
5
|
-
indicator?:
|
|
5
|
+
indicator?: CheckboxIndicatorProps['className'];
|
|
6
6
|
indicatorIcon?: string;
|
|
7
7
|
checkedIcon?: string;
|
|
8
8
|
indeterminateIcon?: string;
|
|
9
9
|
};
|
|
10
|
+
type CheckboxSlotProps = {
|
|
11
|
+
indicator?: Omit<CheckboxIndicatorProps, 'children' | 'className'>;
|
|
12
|
+
indicatorIcon?: Omit<CheckboxIndicatorIconProps, 'checkedIcon' | 'children' | 'className'>;
|
|
13
|
+
};
|
|
10
14
|
type CheckboxProps = CheckboxPrimitive.Root.Props & {
|
|
11
15
|
size?: CheckboxSize;
|
|
12
16
|
indicator?: React.ReactNode;
|
|
13
17
|
checkedIcon?: React.ReactNode;
|
|
14
18
|
indeterminateIcon?: React.ReactNode;
|
|
15
19
|
classNames?: CheckboxClassNames;
|
|
20
|
+
slotProps?: CheckboxSlotProps;
|
|
16
21
|
};
|
|
17
|
-
declare function Checkbox({ className, size, children, indicator, checkedIcon, indeterminateIcon, classNames, ...props }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
declare function Checkbox({ className, size, children, indicator, checkedIcon, indeterminateIcon, classNames, slotProps, ...props }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
18
23
|
type CheckboxIndicatorProps = CheckboxPrimitive.Indicator.Props & {
|
|
19
24
|
checkedIcon?: React.ReactNode;
|
|
20
25
|
checkedIconClassName?: string;
|
|
@@ -32,6 +37,10 @@ declare function CheckboxIndicatorIcon({ className, checkedIcon, checkedIconClas
|
|
|
32
37
|
type CheckboxFieldProps = React.ComponentProps<'label'>;
|
|
33
38
|
declare function CheckboxField({ className, ...props }: CheckboxFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
34
39
|
type CheckboxLabelProps = React.ComponentProps<'span'>;
|
|
40
|
+
type CheckboxState = CheckboxPrimitive.Root.State;
|
|
41
|
+
type CheckboxIndicatorState = CheckboxPrimitive.Indicator.State;
|
|
42
|
+
type CheckboxChangeEventReason = CheckboxPrimitive.Root.ChangeEventReason;
|
|
43
|
+
type CheckboxChangeEventDetails = CheckboxPrimitive.Root.ChangeEventDetails;
|
|
35
44
|
declare function CheckboxLabel({ className, ...props }: CheckboxLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
36
45
|
export { Checkbox, CheckboxIndicator, CheckboxIndicatorIcon, CheckboxField, CheckboxLabel };
|
|
37
|
-
export type { CheckboxSize, CheckboxClassNames, CheckboxProps, CheckboxIndicatorProps, CheckboxIndicatorIconProps, CheckboxFieldProps, CheckboxLabelProps, };
|
|
46
|
+
export type { CheckboxSize, CheckboxClassNames, CheckboxSlotProps, CheckboxProps, CheckboxIndicatorProps, CheckboxIndicatorIconProps, CheckboxFieldProps, CheckboxLabelProps, CheckboxState, CheckboxIndicatorState, CheckboxChangeEventReason, CheckboxChangeEventDetails, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Checkbox, CheckboxIndicator, CheckboxIndicatorIcon, CheckboxField, CheckboxLabel, } from './Checkbox';
|
|
2
|
-
export type { CheckboxSize, CheckboxClassNames, CheckboxProps, CheckboxIndicatorProps, CheckboxIndicatorIconProps, CheckboxFieldProps, CheckboxLabelProps, } from './Checkbox';
|
|
2
|
+
export type { CheckboxSize, CheckboxClassNames, CheckboxSlotProps, CheckboxProps, CheckboxIndicatorProps, CheckboxIndicatorIconProps, CheckboxFieldProps, CheckboxLabelProps, CheckboxState, CheckboxIndicatorState, CheckboxChangeEventReason, CheckboxChangeEventDetails, } from './Checkbox';
|
|
@@ -9,9 +9,12 @@ type CheckboxGroupItemControlProps = CheckboxProps;
|
|
|
9
9
|
declare function CheckboxGroupItemControl(props: CheckboxGroupItemControlProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
declare function CheckboxGroupItemLabel({ className, ...props }: CheckboxGroupItemLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
type CheckboxGroupProps = CheckboxGroupPrimitive.Props;
|
|
12
|
+
type CheckboxGroupState = CheckboxGroupPrimitive.State;
|
|
13
|
+
type CheckboxGroupChangeEventReason = CheckboxGroupPrimitive.ChangeEventReason;
|
|
14
|
+
type CheckboxGroupChangeEventDetails = CheckboxGroupPrimitive.ChangeEventDetails;
|
|
12
15
|
type CheckboxGroupLabelProps = React.ComponentProps<'div'>;
|
|
13
16
|
type CheckboxGroupListProps = React.ComponentProps<'div'>;
|
|
14
17
|
type CheckboxGroupItemProps = React.ComponentProps<'label'>;
|
|
15
18
|
type CheckboxGroupItemLabelProps = React.ComponentProps<'span'>;
|
|
16
19
|
export { CheckboxGroup, CheckboxGroupLabel, CheckboxGroupList, CheckboxGroupItem, CheckboxGroupItemControl, CheckboxGroupItemLabel, };
|
|
17
|
-
export type { CheckboxGroupProps, CheckboxGroupLabelProps, CheckboxGroupListProps, CheckboxGroupItemProps, CheckboxGroupItemControlProps, CheckboxGroupItemLabelProps, };
|
|
20
|
+
export type { CheckboxGroupProps, CheckboxGroupState, CheckboxGroupChangeEventReason, CheckboxGroupChangeEventDetails, CheckboxGroupLabelProps, CheckboxGroupListProps, CheckboxGroupItemProps, CheckboxGroupItemControlProps, CheckboxGroupItemLabelProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { CheckboxGroup, CheckboxGroupLabel, CheckboxGroupList, CheckboxGroupItem, CheckboxGroupItemControl, CheckboxGroupItemLabel, } from './CheckboxGroup';
|
|
2
|
-
export type { CheckboxGroupProps, CheckboxGroupLabelProps, CheckboxGroupListProps, CheckboxGroupItemProps, CheckboxGroupItemControlProps, CheckboxGroupItemLabelProps, } from './CheckboxGroup';
|
|
2
|
+
export type { CheckboxGroupProps, CheckboxGroupState, CheckboxGroupChangeEventReason, CheckboxGroupChangeEventDetails, CheckboxGroupLabelProps, CheckboxGroupListProps, CheckboxGroupItemProps, CheckboxGroupItemControlProps, CheckboxGroupItemLabelProps, } from './CheckboxGroup';
|
|
@@ -1,12 +1,35 @@
|
|
|
1
1
|
import { Collapsible as CollapsiblePrimitive } from '@base-ui/react/collapsible';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
declare function Collapsible({ className, ...props }: CollapsiblePrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare function CollapsibleTrigger({ className, ...props }:
|
|
4
|
+
declare function CollapsibleTrigger({ className, children, icon, hideIcon, classNames, slotProps, ...props }: CollapsibleTriggerProps): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare function CollapsibleTriggerIcon({ className, children, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare function CollapsiblePanel({ className, ...props }: CollapsiblePrimitive.Panel.Props): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
type CollapsibleProps = CollapsiblePrimitive.Root.Props;
|
|
8
|
-
type CollapsibleTriggerProps = CollapsiblePrimitive.Trigger.Props;
|
|
9
8
|
type CollapsibleTriggerIconProps = React.ComponentProps<'span'>;
|
|
10
9
|
type CollapsiblePanelProps = CollapsiblePrimitive.Panel.Props;
|
|
10
|
+
type CollapsibleTriggerClassNames = {
|
|
11
|
+
icon?: CollapsibleTriggerIconProps['className'];
|
|
12
|
+
};
|
|
13
|
+
type CollapsibleTriggerSlotProps = {
|
|
14
|
+
icon?: Omit<CollapsibleTriggerIconProps, 'children' | 'className'>;
|
|
15
|
+
};
|
|
16
|
+
type CollapsibleTriggerProps = CollapsiblePrimitive.Trigger.Props & {
|
|
17
|
+
/**
|
|
18
|
+
* Icon rendered at the start of the trigger. Pass `hideIcon` to remove it.
|
|
19
|
+
*/
|
|
20
|
+
icon?: React.ReactNode;
|
|
21
|
+
/**
|
|
22
|
+
* Removes the default trigger icon.
|
|
23
|
+
*/
|
|
24
|
+
hideIcon?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Classes for internal slots rendered by the trigger.
|
|
27
|
+
*/
|
|
28
|
+
classNames?: CollapsibleTriggerClassNames;
|
|
29
|
+
/**
|
|
30
|
+
* Props for internal slots rendered by the trigger.
|
|
31
|
+
*/
|
|
32
|
+
slotProps?: CollapsibleTriggerSlotProps;
|
|
33
|
+
};
|
|
11
34
|
export { Collapsible, CollapsibleTrigger, CollapsibleTriggerIcon, CollapsiblePanel };
|
|
12
|
-
export type { CollapsibleProps, CollapsibleTriggerProps, CollapsibleTriggerIconProps, CollapsiblePanelProps, };
|
|
35
|
+
export type { CollapsibleProps, CollapsibleTriggerProps, CollapsibleTriggerIconProps, CollapsiblePanelProps, CollapsibleTriggerClassNames, CollapsibleTriggerSlotProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Collapsible, CollapsibleTrigger, CollapsibleTriggerIcon, CollapsiblePanel, } from './Collapsible';
|
|
2
|
-
export type { CollapsibleProps, CollapsibleTriggerProps, CollapsibleTriggerIconProps, CollapsiblePanelProps, } from './Collapsible';
|
|
2
|
+
export type { CollapsibleProps, CollapsibleTriggerProps, CollapsibleTriggerIconProps, CollapsiblePanelProps, CollapsibleTriggerClassNames, CollapsibleTriggerSlotProps, } from './Collapsible';
|
|
@@ -58,5 +58,32 @@ declare const useComboboxFilter: typeof ComboboxPrimitive.useFilter;
|
|
|
58
58
|
declare const useComboboxFilteredItems: typeof ComboboxPrimitive.useFilteredItems;
|
|
59
59
|
type ComboboxProps<Value = unknown, Multiple extends boolean | undefined = false> = ComboboxPrimitive.Root.Props<Value, Multiple>;
|
|
60
60
|
type ComboboxValueType<Value = unknown, Multiple extends boolean | undefined = false> = ComboboxProps<Value, Multiple>['value'];
|
|
61
|
+
type ComboboxFieldProps = React.ComponentProps<'div'>;
|
|
62
|
+
type ComboboxValueProps = ComboboxPrimitive.Value.Props;
|
|
63
|
+
type ComboboxInputGroupProps = ComboboxPrimitive.InputGroup.Props;
|
|
64
|
+
type ComboboxInputProps = ComboboxPrimitive.Input.Props;
|
|
65
|
+
type ComboboxControlActionsProps = React.ComponentProps<'div'>;
|
|
66
|
+
type ComboboxTriggerProps = ComboboxPrimitive.Trigger.Props;
|
|
67
|
+
type ComboboxIconProps = ComboboxPrimitive.Icon.Props;
|
|
68
|
+
type ComboboxClearProps = ComboboxPrimitive.Clear.Props;
|
|
69
|
+
type ComboboxStatusProps = ComboboxPrimitive.Status.Props;
|
|
70
|
+
type ComboboxEmptyProps = ComboboxPrimitive.Empty.Props;
|
|
71
|
+
type ComboboxListProps = ComboboxPrimitive.List.Props;
|
|
72
|
+
type ComboboxRowProps = ComboboxPrimitive.Row.Props;
|
|
73
|
+
type ComboboxItemIndicatorProps = ComboboxPrimitive.ItemIndicator.Props;
|
|
74
|
+
type ComboboxItemTextProps = React.ComponentProps<'span'>;
|
|
75
|
+
type ComboboxItemTextContentProps = React.ComponentProps<'span'>;
|
|
76
|
+
type ComboboxItemTextIconProps = React.ComponentProps<'span'>;
|
|
77
|
+
type ComboboxItemTextLabelProps = React.ComponentProps<'span'>;
|
|
78
|
+
type ComboboxSeparatorProps = ComboboxPrimitive.Separator.Props;
|
|
79
|
+
type ComboboxGroupProps = ComboboxPrimitive.Group.Props;
|
|
80
|
+
type ComboboxGroupLabelProps = ComboboxPrimitive.GroupLabel.Props;
|
|
81
|
+
type ComboboxCollectionProps = ComboboxPrimitive.Collection.Props;
|
|
82
|
+
type ComboboxInlineInputContainerProps = React.ComponentProps<'div'>;
|
|
83
|
+
type ComboboxChipsProps = ComboboxPrimitive.Chips.Props;
|
|
84
|
+
type ComboboxChipProps = ComboboxPrimitive.Chip.Props;
|
|
85
|
+
type ComboboxChipRemoveProps = ComboboxPrimitive.ChipRemove.Props;
|
|
86
|
+
type ComboboxChipTextProps = React.ComponentProps<'span'>;
|
|
87
|
+
type ComboboxChipsInputProps = ComboboxPrimitive.Input.Props;
|
|
61
88
|
export { Combobox, ComboboxField, ComboboxFieldLabel, ComboboxValue, ComboboxInputGroup, ComboboxInput, ComboboxControlActions, ComboboxTrigger, ComboboxIcon, ComboboxClear, ComboboxContent, ComboboxStatus, ComboboxEmpty, ComboboxList, ComboboxRow, ComboboxItem, ComboboxItemIndicator, ComboboxItemText, ComboboxItemTextContent, ComboboxItemTextIcon, ComboboxItemTextLabel, ComboboxSeparator, ComboboxGroup, ComboboxGroupLabel, ComboboxCollection, ComboboxInlineInputContainer, ComboboxChips, ComboboxChip, ComboboxChipRemove, ComboboxChipText, ComboboxChipsInput, useComboboxAnchor, useComboboxFilter, useComboboxFilteredItems, };
|
|
62
|
-
export type { ComboboxProps, ComboboxValueType, ComboboxContentClassNames, ComboboxContentProps, ComboboxFieldLabelProps, };
|
|
89
|
+
export type { ComboboxProps, ComboboxValueType, ComboboxContentClassNames, ComboboxContentProps, ComboboxFieldProps, ComboboxFieldLabelProps, ComboboxValueProps, ComboboxInputGroupProps, ComboboxInputProps, ComboboxControlActionsProps, ComboboxTriggerProps, ComboboxIconProps, ComboboxClearProps, ComboboxStatusProps, ComboboxEmptyProps, ComboboxListProps, ComboboxRowProps, ComboboxItemProps, ComboboxItemIndicatorProps, ComboboxItemTextProps, ComboboxItemTextContentProps, ComboboxItemTextIconProps, ComboboxItemTextLabelProps, ComboboxSeparatorProps, ComboboxGroupProps, ComboboxGroupLabelProps, ComboboxCollectionProps, ComboboxInlineInputContainerProps, ComboboxChipsProps, ComboboxChipProps, ComboboxChipRemoveProps, ComboboxChipTextProps, ComboboxChipsInputProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Combobox, ComboboxField, ComboboxFieldLabel, ComboboxValue, ComboboxInputGroup, ComboboxInput, ComboboxControlActions, ComboboxTrigger, ComboboxIcon, ComboboxClear, ComboboxContent, ComboboxStatus, ComboboxEmpty, ComboboxList, ComboboxRow, ComboboxItem, ComboboxItemIndicator, ComboboxItemText, ComboboxItemTextContent, ComboboxItemTextIcon, ComboboxItemTextLabel, ComboboxSeparator, ComboboxGroup, ComboboxGroupLabel, ComboboxCollection, ComboboxInlineInputContainer, ComboboxChips, ComboboxChip, ComboboxChipRemove, ComboboxChipText, ComboboxChipsInput, useComboboxAnchor, useComboboxFilter, useComboboxFilteredItems, } from './Combobox';
|
|
2
|
-
export type { ComboboxProps, ComboboxValueType, ComboboxContentClassNames, ComboboxContentProps, ComboboxFieldLabelProps, } from './Combobox';
|
|
2
|
+
export type { ComboboxProps, ComboboxValueType, ComboboxContentClassNames, ComboboxContentProps, ComboboxFieldProps, ComboboxFieldLabelProps, ComboboxValueProps, ComboboxInputGroupProps, ComboboxInputProps, ComboboxControlActionsProps, ComboboxTriggerProps, ComboboxIconProps, ComboboxClearProps, ComboboxStatusProps, ComboboxEmptyProps, ComboboxListProps, ComboboxRowProps, ComboboxItemProps, ComboboxItemIndicatorProps, ComboboxItemTextProps, ComboboxItemTextContentProps, ComboboxItemTextIconProps, ComboboxItemTextLabelProps, ComboboxSeparatorProps, ComboboxGroupProps, ComboboxGroupLabelProps, ComboboxCollectionProps, ComboboxInlineInputContainerProps, ComboboxChipsProps, ComboboxChipProps, ComboboxChipRemoveProps, ComboboxChipTextProps, ComboboxChipsInputProps, } from './Combobox';
|
|
@@ -5,14 +5,17 @@ type DialogContentClassNames = {
|
|
|
5
5
|
backdrop?: DialogPrimitive.Backdrop.Props['className'];
|
|
6
6
|
viewport?: DialogPrimitive.Viewport.Props['className'];
|
|
7
7
|
};
|
|
8
|
+
type DialogContentSlotProps = {
|
|
9
|
+
portal?: Omit<DialogPrimitive.Portal.Props, 'className' | 'children'>;
|
|
10
|
+
backdrop?: Omit<DialogPrimitive.Backdrop.Props, 'className'>;
|
|
11
|
+
viewport?: Omit<DialogPrimitive.Viewport.Props, 'className'>;
|
|
12
|
+
};
|
|
8
13
|
type DialogContentProps = Omit<DialogPrimitive.Popup.Props, 'className'> & {
|
|
9
14
|
className?: DialogPrimitive.Popup.Props['className'];
|
|
10
15
|
classNames?: DialogContentClassNames;
|
|
16
|
+
slotProps?: DialogContentSlotProps;
|
|
11
17
|
container?: DialogPrimitive.Portal.Props['container'];
|
|
12
18
|
withBackdrop?: boolean;
|
|
13
|
-
portalProps?: Omit<DialogPrimitive.Portal.Props, 'className' | 'children'>;
|
|
14
|
-
backdropProps?: Omit<DialogPrimitive.Backdrop.Props, 'className'>;
|
|
15
|
-
viewportProps?: Omit<DialogPrimitive.Viewport.Props, 'className'>;
|
|
16
19
|
};
|
|
17
20
|
declare const Dialog: typeof DialogPrimitive.Root;
|
|
18
21
|
declare const createDialogHandle: typeof DialogPrimitive.createHandle;
|
|
@@ -21,7 +24,7 @@ declare function DialogTitle({ className, ...props }: DialogPrimitive.Title.Prop
|
|
|
21
24
|
declare function DialogDescription({ className, ...props }: DialogPrimitive.Description.Props): import("react/jsx-runtime").JSX.Element;
|
|
22
25
|
declare function DialogClose({ className, ...props }: DialogPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
23
26
|
declare function DialogCloseIcon({ className, children, ...props }: DialogPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
declare function DialogContent({ className, classNames, container, withBackdrop,
|
|
27
|
+
declare function DialogContent({ className, classNames, slotProps, container, withBackdrop, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
|
|
25
28
|
declare function DialogHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
26
29
|
declare function DialogFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
27
30
|
declare function DialogBody({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -36,4 +39,4 @@ type DialogHeaderProps = React.ComponentProps<'div'>;
|
|
|
36
39
|
type DialogBodyProps = React.ComponentProps<'div'>;
|
|
37
40
|
type DialogFooterProps = React.ComponentProps<'div'>;
|
|
38
41
|
export { Dialog, createDialogHandle, DialogTrigger, DialogTitle, DialogDescription, DialogClose, DialogCloseIcon, DialogContent, DialogHeader, DialogBody, DialogFooter, };
|
|
39
|
-
export type { DialogProps, DialogHandle, DialogTriggerProps, DialogTitleProps, DialogDescriptionProps, DialogCloseProps, DialogCloseIconProps, DialogContentProps, DialogContentClassNames, DialogHeaderProps, DialogBodyProps, DialogFooterProps, };
|
|
42
|
+
export type { DialogProps, DialogHandle, DialogTriggerProps, DialogTitleProps, DialogDescriptionProps, DialogCloseProps, DialogCloseIconProps, DialogContentProps, DialogContentClassNames, DialogContentSlotProps, DialogHeaderProps, DialogBodyProps, DialogFooterProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Dialog, createDialogHandle, DialogTrigger, DialogTitle, DialogDescription, DialogClose, DialogCloseIcon, DialogContent, DialogHeader, DialogBody, DialogFooter, } from './Dialog';
|
|
2
|
-
export type { DialogProps, DialogHandle, DialogTriggerProps, DialogTitleProps, DialogDescriptionProps, DialogCloseProps, DialogCloseIconProps, DialogContentProps, DialogContentClassNames, DialogHeaderProps, DialogBodyProps, DialogFooterProps, } from './Dialog';
|
|
2
|
+
export type { DialogProps, DialogHandle, DialogTriggerProps, DialogTitleProps, DialogDescriptionProps, DialogCloseProps, DialogCloseIconProps, DialogContentProps, DialogContentClassNames, DialogContentSlotProps, DialogHeaderProps, DialogBodyProps, DialogFooterProps, } from './Dialog';
|
|
@@ -7,20 +7,23 @@ type DrawerContentClassNames = {
|
|
|
7
7
|
content?: DrawerPrimitive.Content.Props['className'];
|
|
8
8
|
handle?: React.ComponentProps<'div'>['className'];
|
|
9
9
|
};
|
|
10
|
+
type DrawerContentSlotProps = {
|
|
11
|
+
portal?: Omit<DrawerPrimitive.Portal.Props, 'className' | 'children'>;
|
|
12
|
+
backdrop?: Omit<DrawerPrimitive.Backdrop.Props, 'className'>;
|
|
13
|
+
viewport?: Omit<DrawerPrimitive.Viewport.Props, 'className' | 'children'>;
|
|
14
|
+
content?: Omit<DrawerPrimitive.Content.Props, 'className' | 'children'>;
|
|
15
|
+
handle?: Omit<React.ComponentProps<'div'>, 'className'>;
|
|
16
|
+
};
|
|
10
17
|
type DrawerContentProps = Omit<DrawerPrimitive.Popup.Props, 'className'> & {
|
|
11
18
|
className?: DrawerPrimitive.Popup.Props['className'];
|
|
12
19
|
classNames?: DrawerContentClassNames;
|
|
20
|
+
slotProps?: DrawerContentSlotProps;
|
|
13
21
|
container?: DrawerPrimitive.Portal.Props['container'];
|
|
14
22
|
withBackdrop?: boolean;
|
|
15
23
|
withHandle?: boolean;
|
|
16
24
|
snapLayout?: boolean;
|
|
17
25
|
variant?: 'bleed' | 'island';
|
|
18
26
|
disableInitialAnimation?: boolean;
|
|
19
|
-
portalProps?: Omit<DrawerPrimitive.Portal.Props, 'className' | 'children'>;
|
|
20
|
-
backdropProps?: Omit<DrawerPrimitive.Backdrop.Props, 'className'>;
|
|
21
|
-
viewportProps?: Omit<DrawerPrimitive.Viewport.Props, 'className'>;
|
|
22
|
-
contentProps?: Omit<DrawerPrimitive.Content.Props, 'className' | 'children'>;
|
|
23
|
-
handleProps?: Omit<React.ComponentProps<'div'>, 'className'>;
|
|
24
27
|
};
|
|
25
28
|
type DrawerProps<Payload = unknown> = DrawerPrimitive.Root.Props<Payload> & {
|
|
26
29
|
persistent?: boolean;
|
|
@@ -39,11 +42,12 @@ type DrawerSnapToggleProps = React.ComponentProps<'button'> & {
|
|
|
39
42
|
expanded: boolean;
|
|
40
43
|
};
|
|
41
44
|
declare function DrawerSnapToggle({ expanded, className, children, type, ...props }: DrawerSnapToggleProps): import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
declare function DrawerHandle({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
42
46
|
declare function DrawerHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
43
47
|
declare function DrawerBody({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
44
48
|
declare function DrawerFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
declare function DrawerContent({ withBackdrop, withHandle, snapLayout, variant, disableInitialAnimation, className, classNames,
|
|
46
|
-
type
|
|
49
|
+
declare function DrawerContent({ withBackdrop, withHandle, snapLayout, variant, disableInitialAnimation, className, classNames, slotProps, container, children, ...props }: DrawerContentProps): import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
type DrawerHandle<Payload = unknown> = DrawerPrimitive.Handle<Payload>;
|
|
47
51
|
type DrawerTriggerProps = DrawerPrimitive.Trigger.Props;
|
|
48
52
|
type DrawerSwipeAreaProps = DrawerPrimitive.SwipeArea.Props;
|
|
49
53
|
type DrawerTitleProps = DrawerPrimitive.Title.Props;
|
|
@@ -54,4 +58,4 @@ type DrawerBodyProps = React.ComponentProps<'div'>;
|
|
|
54
58
|
type DrawerFooterProps = React.ComponentProps<'div'>;
|
|
55
59
|
type DrawerSnapPoint = NonNullable<DrawerProps['snapPoints']>[number];
|
|
56
60
|
export { Drawer, DrawerProvider, createDrawerHandle, DrawerIndent, DrawerIndentBackground, DrawerTrigger, DrawerSwipeArea, DrawerTitle, DrawerDescription, DrawerClose, DrawerSnapToggle, DrawerHeader, DrawerBody, DrawerFooter, DrawerContent, };
|
|
57
|
-
export type { DrawerProps,
|
|
61
|
+
export type { DrawerProps, DrawerHandle, DrawerTriggerProps, DrawerSwipeAreaProps, DrawerTitleProps, DrawerDescriptionProps, DrawerCloseProps, DrawerHeaderProps, DrawerBodyProps, DrawerFooterProps, DrawerContentProps, DrawerContentClassNames, DrawerContentSlotProps, DrawerSnapToggleProps, DrawerSnapPoint, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Drawer, DrawerProvider, createDrawerHandle, DrawerIndent, DrawerIndentBackground, DrawerTrigger, DrawerSwipeArea, DrawerTitle, DrawerDescription, DrawerClose, DrawerSnapToggle, DrawerHeader, DrawerBody, DrawerFooter, DrawerContent, } from './Drawer';
|
|
2
|
-
export type { DrawerProps,
|
|
2
|
+
export type { DrawerProps, DrawerHandle, DrawerTriggerProps, DrawerSwipeAreaProps, DrawerTitleProps, DrawerDescriptionProps, DrawerCloseProps, DrawerHeaderProps, DrawerBodyProps, DrawerFooterProps, DrawerContentProps, DrawerContentClassNames, DrawerContentSlotProps, DrawerSnapToggleProps, DrawerSnapPoint, } from './Drawer';
|
|
@@ -7,11 +7,21 @@ declare function FieldDescription({ className, ...props }: FieldPrimitive.Descri
|
|
|
7
7
|
declare function FieldError({ className, ...props }: FieldPrimitive.Error.Props): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
declare const FieldValidity: import('react').FC<import('@base-ui/react').FieldValidityProps>;
|
|
9
9
|
type FieldProps = FieldPrimitive.Root.Props;
|
|
10
|
+
type FieldState = FieldPrimitive.Root.State;
|
|
11
|
+
type FieldActions = FieldPrimitive.Root.Actions;
|
|
10
12
|
type FieldItemProps = FieldPrimitive.Item.Props;
|
|
13
|
+
type FieldItemState = FieldPrimitive.Item.State;
|
|
11
14
|
type FieldLabelProps = FieldPrimitive.Label.Props;
|
|
15
|
+
type FieldLabelState = FieldPrimitive.Label.State;
|
|
12
16
|
type FieldControlProps = FieldPrimitive.Control.Props;
|
|
17
|
+
type FieldControlState = FieldPrimitive.Control.State;
|
|
18
|
+
type FieldControlChangeEventReason = FieldPrimitive.Control.ChangeEventReason;
|
|
19
|
+
type FieldControlChangeEventDetails = FieldPrimitive.Control.ChangeEventDetails;
|
|
13
20
|
type FieldDescriptionProps = FieldPrimitive.Description.Props;
|
|
21
|
+
type FieldDescriptionState = FieldPrimitive.Description.State;
|
|
14
22
|
type FieldErrorProps = FieldPrimitive.Error.Props;
|
|
23
|
+
type FieldErrorState = FieldPrimitive.Error.State;
|
|
15
24
|
type FieldValidityProps = FieldPrimitive.Validity.Props;
|
|
25
|
+
type FieldValidityState = FieldPrimitive.Validity.State;
|
|
16
26
|
export { Field, FieldItem, FieldLabel, FieldControl, FieldDescription, FieldError, FieldValidity };
|
|
17
|
-
export type { FieldProps, FieldItemProps, FieldLabelProps, FieldControlProps, FieldDescriptionProps, FieldErrorProps, FieldValidityProps, };
|
|
27
|
+
export type { FieldProps, FieldState, FieldActions, FieldItemProps, FieldItemState, FieldLabelProps, FieldLabelState, FieldControlProps, FieldControlState, FieldControlChangeEventReason, FieldControlChangeEventDetails, FieldDescriptionProps, FieldDescriptionState, FieldErrorProps, FieldErrorState, FieldValidityProps, FieldValidityState, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Field, FieldItem, FieldLabel, FieldControl, FieldDescription, FieldError, FieldValidity, } from './Field';
|
|
2
|
-
export type { FieldProps, FieldItemProps, FieldLabelProps, FieldControlProps, FieldDescriptionProps, FieldErrorProps, FieldValidityProps, } from './Field';
|
|
2
|
+
export type { FieldProps, FieldState, FieldActions, FieldItemProps, FieldItemState, FieldLabelProps, FieldLabelState, FieldControlProps, FieldControlState, FieldControlChangeEventReason, FieldControlChangeEventDetails, FieldDescriptionProps, FieldDescriptionState, FieldErrorProps, FieldErrorState, FieldValidityProps, FieldValidityState, } from './Field';
|
|
@@ -2,6 +2,8 @@ import { Fieldset as FieldsetPrimitive } from '@base-ui/react/fieldset';
|
|
|
2
2
|
declare function Fieldset({ className, disabled, render, ...props }: FieldsetPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
declare function FieldsetLegend({ className, ...props }: FieldsetPrimitive.Legend.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
type FieldsetProps = FieldsetPrimitive.Root.Props;
|
|
5
|
+
type FieldsetState = FieldsetPrimitive.Root.State;
|
|
5
6
|
type FieldsetLegendProps = FieldsetPrimitive.Legend.Props;
|
|
7
|
+
type FieldsetLegendState = FieldsetPrimitive.Legend.State;
|
|
6
8
|
export { Fieldset, FieldsetLegend };
|
|
7
|
-
export type { FieldsetProps, FieldsetLegendProps };
|
|
9
|
+
export type { FieldsetProps, FieldsetState, FieldsetLegendProps, FieldsetLegendState };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Fieldset, FieldsetLegend } from './Fieldset';
|
|
2
|
-
export type { FieldsetProps, FieldsetLegendProps } from './Fieldset';
|
|
2
|
+
export type { FieldsetProps, FieldsetState, FieldsetLegendProps, FieldsetLegendState, } from './Fieldset';
|
|
@@ -5,6 +5,9 @@ type InputProps = Omit<InputPrimitive.Props, 'size'> & {
|
|
|
5
5
|
size?: InputSize;
|
|
6
6
|
htmlSize?: React.ComponentProps<'input'>['size'];
|
|
7
7
|
};
|
|
8
|
+
type InputState = InputPrimitive.State;
|
|
9
|
+
type InputChangeEventReason = InputPrimitive.ChangeEventReason;
|
|
10
|
+
type InputChangeEventDetails = InputPrimitive.ChangeEventDetails;
|
|
8
11
|
declare function Input({ className, size, htmlSize, ...props }: InputProps): import("react/jsx-runtime").JSX.Element;
|
|
9
12
|
export { Input };
|
|
10
|
-
export type { InputProps, InputSize };
|
|
13
|
+
export type { InputProps, InputState, InputChangeEventReason, InputChangeEventDetails, InputSize };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Input } from './Input';
|
|
2
|
-
export type { InputProps, InputSize } from './Input';
|
|
2
|
+
export type { InputProps, InputState, InputChangeEventReason, InputChangeEventDetails, InputSize, } from './Input';
|
|
@@ -6,15 +6,18 @@ type MenuContentClassNames = {
|
|
|
6
6
|
positioner?: MenuPrimitive.Positioner.Props['className'];
|
|
7
7
|
viewport?: MenuPrimitive.Viewport.Props['className'];
|
|
8
8
|
};
|
|
9
|
+
type MenuContentSlotProps = {
|
|
10
|
+
portal?: Omit<MenuPrimitive.Portal.Props, 'className' | 'children'>;
|
|
11
|
+
backdrop?: Omit<MenuPrimitive.Backdrop.Props, 'className'>;
|
|
12
|
+
positioner?: Omit<MenuPrimitive.Positioner.Props, 'className' | 'children'>;
|
|
13
|
+
viewport?: Omit<MenuPrimitive.Viewport.Props, 'className' | 'children'>;
|
|
14
|
+
};
|
|
9
15
|
type MenuContentProps = MenuPrimitive.Popup.Props & Pick<MenuPrimitive.Positioner.Props, 'side' | 'sideOffset' | 'align' | 'alignOffset' | 'arrowPadding' | 'anchor' | 'collisionAvoidance' | 'collisionBoundary' | 'collisionPadding' | 'sticky' | 'positionMethod' | 'disableAnchorTracking'> & {
|
|
10
16
|
classNames?: MenuContentClassNames;
|
|
17
|
+
slotProps?: MenuContentSlotProps;
|
|
11
18
|
container?: MenuPrimitive.Portal.Props['container'];
|
|
12
19
|
withBackdrop?: boolean;
|
|
13
20
|
withViewport?: boolean;
|
|
14
|
-
portalProps?: Omit<MenuPrimitive.Portal.Props, 'className' | 'children'>;
|
|
15
|
-
backdropProps?: Omit<MenuPrimitive.Backdrop.Props, 'className'>;
|
|
16
|
-
positionerProps?: Omit<MenuPrimitive.Positioner.Props, 'className' | 'children'>;
|
|
17
|
-
viewportProps?: Omit<MenuPrimitive.Viewport.Props, 'className' | 'children'>;
|
|
18
21
|
};
|
|
19
22
|
type IndicatorPosition = 'start' | 'end';
|
|
20
23
|
type MenuRadioItemProps = MenuPrimitive.RadioItem.Props & {
|
|
@@ -29,7 +32,7 @@ declare const createMenuHandle: typeof MenuPrimitive.createHandle;
|
|
|
29
32
|
declare function MenuTrigger({ className, render, ...props }: MenuPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
|
|
30
33
|
declare function MenuTriggerIcon({ className, children, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
|
|
31
34
|
declare function MenuArrow({ className, children, ...props }: MenuPrimitive.Arrow.Props): import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare function MenuContent({ className, classNames, children, container, withBackdrop, withViewport,
|
|
35
|
+
declare function MenuContent({ className, classNames, slotProps, children, container, withBackdrop, withViewport, side, sideOffset, align, alignOffset, arrowPadding, anchor, collisionAvoidance, collisionBoundary, collisionPadding, sticky, positionMethod, disableAnchorTracking, ...props }: MenuContentProps): import("react/jsx-runtime").JSX.Element;
|
|
33
36
|
declare function MenuSubmenuContent({ sideOffset, alignOffset, ...props }: MenuContentProps): import("react/jsx-runtime").JSX.Element;
|
|
34
37
|
declare function MenuItem({ className, ...props }: MenuPrimitive.Item.Props): import("react/jsx-runtime").JSX.Element;
|
|
35
38
|
declare function MenuLinkItem({ className, ...props }: MenuPrimitive.LinkItem.Props): import("react/jsx-runtime").JSX.Element;
|
|
@@ -58,4 +61,4 @@ type MenuCheckboxItemPropsPublic = MenuCheckboxItemProps;
|
|
|
58
61
|
type MenuSubmenuTriggerProps = MenuPrimitive.SubmenuTrigger.Props;
|
|
59
62
|
type MenuItemShortcutProps = React.ComponentProps<'span'>;
|
|
60
63
|
export { Menu, MenuSubmenu, createMenuHandle, MenuTrigger, MenuTriggerIcon, MenuArrow, MenuContent, MenuSubmenuContent, MenuItem, MenuLinkItem, MenuSeparator, MenuGroup, MenuGroupLabel, MenuSubmenuTrigger, MenuSubmenuTriggerIcon, MenuRadioGroup, MenuRadioItem, MenuRadioItemIndicator, MenuCheckboxItem, MenuCheckboxItemIndicator, MenuItemText, MenuItemTextContent, MenuItemTextIcon, MenuItemTextLabel, MenuItemShortcut, };
|
|
61
|
-
export type { MenuProps, MenuHandle, MenuContentProps, MenuContentClassNames, MenuTriggerProps, MenuItemProps, MenuLinkItemProps, MenuRadioItemPropsPublic as MenuRadioItemProps, MenuCheckboxItemPropsPublic as MenuCheckboxItemProps, MenuSubmenuTriggerProps, MenuItemShortcutProps, };
|
|
64
|
+
export type { MenuProps, MenuHandle, MenuContentProps, MenuContentClassNames, MenuContentSlotProps, MenuTriggerProps, MenuItemProps, MenuLinkItemProps, MenuRadioItemPropsPublic as MenuRadioItemProps, MenuCheckboxItemPropsPublic as MenuCheckboxItemProps, MenuSubmenuTriggerProps, MenuItemShortcutProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Menu, MenuSubmenu, createMenuHandle, MenuTrigger, MenuTriggerIcon, MenuArrow, MenuContent, MenuSubmenuContent, MenuItem, MenuLinkItem, MenuSeparator, MenuGroup, MenuGroupLabel, MenuSubmenuTrigger, MenuSubmenuTriggerIcon, MenuRadioGroup, MenuRadioItem, MenuRadioItemIndicator, MenuCheckboxItem, MenuCheckboxItemIndicator, MenuItemText, MenuItemTextContent, MenuItemTextIcon, MenuItemTextLabel, MenuItemShortcut, } from './Menu';
|
|
2
|
-
export type { MenuProps, MenuHandle, MenuContentProps, MenuContentClassNames, MenuTriggerProps, MenuItemProps, MenuLinkItemProps, MenuRadioItemProps, MenuCheckboxItemProps, MenuSubmenuTriggerProps, MenuItemShortcutProps, } from './Menu';
|
|
2
|
+
export type { MenuProps, MenuHandle, MenuContentProps, MenuContentClassNames, MenuContentSlotProps, MenuTriggerProps, MenuItemProps, MenuLinkItemProps, MenuRadioItemProps, MenuCheckboxItemProps, MenuSubmenuTriggerProps, MenuItemShortcutProps, } from './Menu';
|
|
@@ -7,14 +7,17 @@ type MenubarContentClassNames = {
|
|
|
7
7
|
positioner?: MenuPrimitive.Positioner.Props['className'];
|
|
8
8
|
viewport?: MenuPrimitive.Viewport.Props['className'];
|
|
9
9
|
};
|
|
10
|
+
type MenubarContentSlotProps = {
|
|
11
|
+
portal?: Omit<MenuPrimitive.Portal.Props, 'className' | 'children'>;
|
|
12
|
+
backdrop?: Omit<MenuPrimitive.Backdrop.Props, 'className'>;
|
|
13
|
+
positioner?: Omit<MenuPrimitive.Positioner.Props, 'className' | 'children'>;
|
|
14
|
+
viewport?: Omit<MenuPrimitive.Viewport.Props, 'className' | 'children'>;
|
|
15
|
+
};
|
|
10
16
|
type MenubarContentProps = MenuPrimitive.Popup.Props & Pick<MenuPrimitive.Positioner.Props, 'side' | 'sideOffset' | 'align' | 'alignOffset' | 'arrowPadding' | 'anchor' | 'collisionAvoidance' | 'collisionBoundary' | 'collisionPadding' | 'sticky' | 'positionMethod' | 'disableAnchorTracking'> & {
|
|
11
17
|
classNames?: MenubarContentClassNames;
|
|
18
|
+
slotProps?: MenubarContentSlotProps;
|
|
12
19
|
container?: MenuPrimitive.Portal.Props['container'];
|
|
13
20
|
withBackdrop?: boolean;
|
|
14
|
-
portalProps?: Omit<MenuPrimitive.Portal.Props, 'className' | 'children'>;
|
|
15
|
-
backdropProps?: Omit<MenuPrimitive.Backdrop.Props, 'className'>;
|
|
16
|
-
positionerProps?: Omit<MenuPrimitive.Positioner.Props, 'className' | 'children'>;
|
|
17
|
-
viewportProps?: Omit<MenuPrimitive.Viewport.Props, 'className' | 'children'>;
|
|
18
21
|
};
|
|
19
22
|
type IndicatorPosition = 'start' | 'end';
|
|
20
23
|
type MenubarRadioItemProps = MenuPrimitive.RadioItem.Props & {
|
|
@@ -29,7 +32,7 @@ declare const createMenubarMenuHandle: typeof MenuPrimitive.createHandle;
|
|
|
29
32
|
declare function Menubar({ className, ...props }: MenubarPrimitive.Props): import("react/jsx-runtime").JSX.Element;
|
|
30
33
|
declare function MenubarTrigger({ className, render, ...props }: MenuPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
|
|
31
34
|
declare function MenubarArrow({ className, children, ...props }: MenuPrimitive.Arrow.Props): import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare function MenubarContent({ className, classNames, children, container, withBackdrop,
|
|
35
|
+
declare function MenubarContent({ className, classNames, slotProps, children, container, withBackdrop, side, sideOffset, align, alignOffset, arrowPadding, anchor, collisionAvoidance, collisionBoundary, collisionPadding, sticky, positionMethod, disableAnchorTracking, ...props }: MenubarContentProps): import("react/jsx-runtime").JSX.Element;
|
|
33
36
|
declare function MenubarSubmenuContent({ sideOffset, alignOffset, ...props }: MenubarContentProps): import("react/jsx-runtime").JSX.Element;
|
|
34
37
|
declare function MenubarItem({ className, ...props }: MenuPrimitive.Item.Props): import("react/jsx-runtime").JSX.Element;
|
|
35
38
|
declare function MenubarLinkItem({ className, ...props }: MenuPrimitive.LinkItem.Props): import("react/jsx-runtime").JSX.Element;
|
|
@@ -70,4 +73,4 @@ type MenubarItemTextIconProps = React.ComponentProps<'span'>;
|
|
|
70
73
|
type MenubarItemTextLabelProps = React.ComponentProps<'span'>;
|
|
71
74
|
type MenubarItemShortcutProps = React.ComponentProps<'span'>;
|
|
72
75
|
export { Menubar, MenubarMenu, MenubarSubmenu, createMenubarMenuHandle, MenubarTrigger, MenubarArrow, MenubarContent, MenubarSubmenuContent, MenubarItem, MenubarLinkItem, MenubarSeparator, MenubarGroup, MenubarGroupLabel, MenubarSubmenuTrigger, MenubarSubmenuTriggerIcon, MenubarRadioGroup, MenubarRadioItem, MenubarRadioItemIndicator, MenubarCheckboxItem, MenubarCheckboxItemIndicator, MenubarItemText, MenubarItemTextContent, MenubarItemTextIcon, MenubarItemTextLabel, MenubarItemShortcut, };
|
|
73
|
-
export type { MenubarProps, MenubarMenuProps, MenubarMenuHandle, MenubarSubmenuProps, MenubarTriggerProps, MenubarArrowProps, MenubarContentProps, MenubarContentClassNames, MenubarItemProps, MenubarLinkItemProps, MenubarSeparatorProps, MenubarGroupProps, MenubarGroupLabelProps, MenubarSubmenuTriggerProps, MenubarSubmenuTriggerIconProps, MenubarRadioGroupProps, MenubarRadioItemProps, MenubarRadioItemIndicatorProps, MenubarCheckboxItemProps, MenubarCheckboxItemIndicatorProps, MenubarItemTextProps, MenubarItemTextContentProps, MenubarItemTextIconProps, MenubarItemTextLabelProps, MenubarItemShortcutProps, };
|
|
76
|
+
export type { MenubarProps, MenubarMenuProps, MenubarMenuHandle, MenubarSubmenuProps, MenubarTriggerProps, MenubarArrowProps, MenubarContentProps, MenubarContentClassNames, MenubarContentSlotProps, MenubarItemProps, MenubarLinkItemProps, MenubarSeparatorProps, MenubarGroupProps, MenubarGroupLabelProps, MenubarSubmenuTriggerProps, MenubarSubmenuTriggerIconProps, MenubarRadioGroupProps, MenubarRadioItemProps, MenubarRadioItemIndicatorProps, MenubarCheckboxItemProps, MenubarCheckboxItemIndicatorProps, MenubarItemTextProps, MenubarItemTextContentProps, MenubarItemTextIconProps, MenubarItemTextLabelProps, MenubarItemShortcutProps, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Menubar, MenubarMenu, MenubarSubmenu, createMenubarMenuHandle, MenubarTrigger, MenubarArrow, MenubarContent, MenubarSubmenuContent, MenubarItem, MenubarLinkItem, MenubarSeparator, MenubarGroup, MenubarGroupLabel, MenubarSubmenuTrigger, MenubarSubmenuTriggerIcon, MenubarRadioGroup, MenubarRadioItem, MenubarRadioItemIndicator, MenubarCheckboxItem, MenubarCheckboxItemIndicator, MenubarItemText, MenubarItemTextContent, MenubarItemTextIcon, MenubarItemTextLabel, MenubarItemShortcut, } from './Menubar';
|
|
2
|
-
export type { MenubarProps, MenubarMenuProps, MenubarMenuHandle, MenubarSubmenuProps, MenubarTriggerProps, MenubarArrowProps, MenubarContentProps, MenubarItemProps, MenubarLinkItemProps, MenubarSeparatorProps, MenubarGroupProps, MenubarGroupLabelProps, MenubarSubmenuTriggerProps, MenubarSubmenuTriggerIconProps, MenubarRadioGroupProps, MenubarRadioItemProps, MenubarRadioItemIndicatorProps, MenubarCheckboxItemProps, MenubarCheckboxItemIndicatorProps, MenubarItemTextProps, MenubarItemTextContentProps, MenubarItemTextIconProps, MenubarItemTextLabelProps, MenubarItemShortcutProps, } from './Menubar';
|
|
2
|
+
export type { MenubarProps, MenubarMenuProps, MenubarMenuHandle, MenubarSubmenuProps, MenubarTriggerProps, MenubarArrowProps, MenubarContentProps, MenubarContentClassNames, MenubarContentSlotProps, MenubarItemProps, MenubarLinkItemProps, MenubarSeparatorProps, MenubarGroupProps, MenubarGroupLabelProps, MenubarSubmenuTriggerProps, MenubarSubmenuTriggerIconProps, MenubarRadioGroupProps, MenubarRadioItemProps, MenubarRadioItemIndicatorProps, MenubarCheckboxItemProps, MenubarCheckboxItemIndicatorProps, MenubarItemTextProps, MenubarItemTextContentProps, MenubarItemTextIconProps, MenubarItemTextLabelProps, MenubarItemShortcutProps, } from './Menubar';
|