@nurix/ui-component-library 1.1.3-stage.102 → 1.1.3-stage.104
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/index.d.mts +37 -4
- package/dist/index.d.ts +37 -4
- package/dist/index.js +97 -82
- package/dist/index.mjs +119 -104
- package/dist/styles.css +48 -18
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -35,6 +35,7 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
35
35
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
36
36
|
|
|
37
37
|
type InputBorderRadius = "none" | "soft" | "rounded" | "pill";
|
|
38
|
+
type InputVariant = "grey" | "white";
|
|
38
39
|
type SupportingTextType = "help" | "error";
|
|
39
40
|
type InputForceState = "active" | "focussed" | "disabled";
|
|
40
41
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
|
@@ -58,6 +59,12 @@ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>,
|
|
|
58
59
|
* Hide the supporting text row (even if `supportingText` is provided).
|
|
59
60
|
*/
|
|
60
61
|
hideSupportingText?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Input field background variant in light mode.
|
|
64
|
+
* grey: light grey background (--input). white: white background (--card).
|
|
65
|
+
* @default "grey"
|
|
66
|
+
*/
|
|
67
|
+
inputVariant?: InputVariant;
|
|
61
68
|
/**
|
|
62
69
|
* Design-system controlled border radius.
|
|
63
70
|
*/
|
|
@@ -82,6 +89,7 @@ interface FileInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
82
89
|
placeholder?: string;
|
|
83
90
|
fileName?: string;
|
|
84
91
|
input_border_radius?: InputBorderRadius;
|
|
92
|
+
inputVariant?: InputVariant;
|
|
85
93
|
onFileChange?: (file: File | null) => void;
|
|
86
94
|
}
|
|
87
95
|
|
|
@@ -129,6 +137,12 @@ interface InputGroupProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElem
|
|
|
129
137
|
*/
|
|
130
138
|
endSegment?: React$1.ReactNode;
|
|
131
139
|
input_border_radius?: InputGroupBorderRadius;
|
|
140
|
+
/**
|
|
141
|
+
* Input field background variant in light mode.
|
|
142
|
+
* grey: light grey (--input). white: white (--card).
|
|
143
|
+
* @default "grey"
|
|
144
|
+
*/
|
|
145
|
+
inputVariant?: InputVariant;
|
|
132
146
|
}
|
|
133
147
|
|
|
134
148
|
declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -156,6 +170,12 @@ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
156
170
|
* Hide the supporting text row (even if `supportingText` is provided).
|
|
157
171
|
*/
|
|
158
172
|
hideSupportingText?: boolean;
|
|
173
|
+
/**
|
|
174
|
+
* Input field background variant in light mode.
|
|
175
|
+
* grey: light grey (--input). white: white (--card).
|
|
176
|
+
* @default "grey"
|
|
177
|
+
*/
|
|
178
|
+
inputVariant?: InputVariant;
|
|
159
179
|
/**
|
|
160
180
|
* Design-system controlled border radius.
|
|
161
181
|
*/
|
|
@@ -506,7 +526,10 @@ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
|
|
|
506
526
|
leadIcon?: React$1.ReactNode;
|
|
507
527
|
/** Size of lead icon. "xs" = 16px, "sm" = 24px (default) */
|
|
508
528
|
leadIconSize?: "xs" | "sm";
|
|
509
|
-
|
|
529
|
+
/** Size variant. "small" = 32px height, "regular" = 48px, "large" = 64px */
|
|
530
|
+
size?: "small" | "regular" | "large";
|
|
531
|
+
/** Background variant. "default" = input grey, "white" = card white */
|
|
532
|
+
bg?: "default" | "white";
|
|
510
533
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
511
534
|
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
512
535
|
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -708,6 +731,8 @@ type TooltipContentProps = React.ComponentPropsWithoutRef<typeof TooltipPrimitiv
|
|
|
708
731
|
|
|
709
732
|
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p1" | "p2" | "p3";
|
|
710
733
|
type TypographyTone = "default" | "muted" | "inherit";
|
|
734
|
+
/** Font family. sans = Nunito (Figma design system). inherit = use parent. */
|
|
735
|
+
type TypographyFontFamily = "sans" | "inherit";
|
|
711
736
|
interface TypographyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
712
737
|
/**
|
|
713
738
|
* Typography variant (maps to Figma text styles).
|
|
@@ -729,6 +754,12 @@ interface TypographyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
|
729
754
|
* Ignored when `asChild` is true.
|
|
730
755
|
*/
|
|
731
756
|
as?: React$1.ElementType;
|
|
757
|
+
/**
|
|
758
|
+
* Font family. "sans" uses Nunito (Figma/Nurix design system).
|
|
759
|
+
* "inherit" uses the parent's font.
|
|
760
|
+
* @default "sans"
|
|
761
|
+
*/
|
|
762
|
+
fontFamily?: TypographyFontFamily;
|
|
732
763
|
}
|
|
733
764
|
|
|
734
765
|
/**
|
|
@@ -1134,7 +1165,7 @@ declare const DEFAULT_THEME: {
|
|
|
1134
1165
|
readonly popover: "#ffffff";
|
|
1135
1166
|
readonly popoverForeground: "#0a0a0a";
|
|
1136
1167
|
readonly primaryForeground: "#fafafa";
|
|
1137
|
-
readonly input: "#
|
|
1168
|
+
readonly input: "#eee";
|
|
1138
1169
|
readonly sidebar: "#fafafa";
|
|
1139
1170
|
readonly sidebarForeground: "#0a0a0a";
|
|
1140
1171
|
readonly sidebarPrimary: "#171717";
|
|
@@ -1192,7 +1223,7 @@ declare const DEFAULT_THEME: {
|
|
|
1192
1223
|
readonly popover: "#262626";
|
|
1193
1224
|
readonly popoverForeground: "#fafafa";
|
|
1194
1225
|
readonly primaryForeground: "#171717";
|
|
1195
|
-
readonly input: "#
|
|
1226
|
+
readonly input: "#171717";
|
|
1196
1227
|
readonly sidebar: "#171717";
|
|
1197
1228
|
readonly sidebarForeground: "#fafafa";
|
|
1198
1229
|
readonly sidebarPrimary: "#0588f0";
|
|
@@ -1686,6 +1717,8 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
|
|
|
1686
1717
|
items: FilterItem<T>[];
|
|
1687
1718
|
/** Enable drag-and-drop reordering (default: false) */
|
|
1688
1719
|
draggable?: boolean;
|
|
1720
|
+
/** To show clear button regardless of selected items or text / date content (default: true) */
|
|
1721
|
+
showClearBtn?: boolean;
|
|
1689
1722
|
/** Callback when selection changes */
|
|
1690
1723
|
onSelectionChange?: (values: T[]) => void;
|
|
1691
1724
|
/** Callback when order changes (draggable mode) */
|
|
@@ -2039,4 +2072,4 @@ interface KeyValueJsonEditorProps {
|
|
|
2039
2072
|
*/
|
|
2040
2073
|
declare const KeyValueJsonEditor: React$1.ForwardRefExoticComponent<KeyValueJsonEditorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2041
2074
|
|
|
2042
|
-
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, KeyValueJsonEditor, type KeyValueJsonEditorMode, type KeyValueJsonEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|
|
2075
|
+
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, type InputVariant, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, KeyValueJsonEditor, type KeyValueJsonEditorMode, type KeyValueJsonEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyFontFamily, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
35
35
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
36
36
|
|
|
37
37
|
type InputBorderRadius = "none" | "soft" | "rounded" | "pill";
|
|
38
|
+
type InputVariant = "grey" | "white";
|
|
38
39
|
type SupportingTextType = "help" | "error";
|
|
39
40
|
type InputForceState = "active" | "focussed" | "disabled";
|
|
40
41
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
|
@@ -58,6 +59,12 @@ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>,
|
|
|
58
59
|
* Hide the supporting text row (even if `supportingText` is provided).
|
|
59
60
|
*/
|
|
60
61
|
hideSupportingText?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Input field background variant in light mode.
|
|
64
|
+
* grey: light grey background (--input). white: white background (--card).
|
|
65
|
+
* @default "grey"
|
|
66
|
+
*/
|
|
67
|
+
inputVariant?: InputVariant;
|
|
61
68
|
/**
|
|
62
69
|
* Design-system controlled border radius.
|
|
63
70
|
*/
|
|
@@ -82,6 +89,7 @@ interface FileInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
82
89
|
placeholder?: string;
|
|
83
90
|
fileName?: string;
|
|
84
91
|
input_border_radius?: InputBorderRadius;
|
|
92
|
+
inputVariant?: InputVariant;
|
|
85
93
|
onFileChange?: (file: File | null) => void;
|
|
86
94
|
}
|
|
87
95
|
|
|
@@ -129,6 +137,12 @@ interface InputGroupProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElem
|
|
|
129
137
|
*/
|
|
130
138
|
endSegment?: React$1.ReactNode;
|
|
131
139
|
input_border_radius?: InputGroupBorderRadius;
|
|
140
|
+
/**
|
|
141
|
+
* Input field background variant in light mode.
|
|
142
|
+
* grey: light grey (--input). white: white (--card).
|
|
143
|
+
* @default "grey"
|
|
144
|
+
*/
|
|
145
|
+
inputVariant?: InputVariant;
|
|
132
146
|
}
|
|
133
147
|
|
|
134
148
|
declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -156,6 +170,12 @@ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
156
170
|
* Hide the supporting text row (even if `supportingText` is provided).
|
|
157
171
|
*/
|
|
158
172
|
hideSupportingText?: boolean;
|
|
173
|
+
/**
|
|
174
|
+
* Input field background variant in light mode.
|
|
175
|
+
* grey: light grey (--input). white: white (--card).
|
|
176
|
+
* @default "grey"
|
|
177
|
+
*/
|
|
178
|
+
inputVariant?: InputVariant;
|
|
159
179
|
/**
|
|
160
180
|
* Design-system controlled border radius.
|
|
161
181
|
*/
|
|
@@ -506,7 +526,10 @@ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
|
|
|
506
526
|
leadIcon?: React$1.ReactNode;
|
|
507
527
|
/** Size of lead icon. "xs" = 16px, "sm" = 24px (default) */
|
|
508
528
|
leadIconSize?: "xs" | "sm";
|
|
509
|
-
|
|
529
|
+
/** Size variant. "small" = 32px height, "regular" = 48px, "large" = 64px */
|
|
530
|
+
size?: "small" | "regular" | "large";
|
|
531
|
+
/** Background variant. "default" = input grey, "white" = card white */
|
|
532
|
+
bg?: "default" | "white";
|
|
510
533
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
511
534
|
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
512
535
|
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -708,6 +731,8 @@ type TooltipContentProps = React.ComponentPropsWithoutRef<typeof TooltipPrimitiv
|
|
|
708
731
|
|
|
709
732
|
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p1" | "p2" | "p3";
|
|
710
733
|
type TypographyTone = "default" | "muted" | "inherit";
|
|
734
|
+
/** Font family. sans = Nunito (Figma design system). inherit = use parent. */
|
|
735
|
+
type TypographyFontFamily = "sans" | "inherit";
|
|
711
736
|
interface TypographyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
712
737
|
/**
|
|
713
738
|
* Typography variant (maps to Figma text styles).
|
|
@@ -729,6 +754,12 @@ interface TypographyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
|
729
754
|
* Ignored when `asChild` is true.
|
|
730
755
|
*/
|
|
731
756
|
as?: React$1.ElementType;
|
|
757
|
+
/**
|
|
758
|
+
* Font family. "sans" uses Nunito (Figma/Nurix design system).
|
|
759
|
+
* "inherit" uses the parent's font.
|
|
760
|
+
* @default "sans"
|
|
761
|
+
*/
|
|
762
|
+
fontFamily?: TypographyFontFamily;
|
|
732
763
|
}
|
|
733
764
|
|
|
734
765
|
/**
|
|
@@ -1134,7 +1165,7 @@ declare const DEFAULT_THEME: {
|
|
|
1134
1165
|
readonly popover: "#ffffff";
|
|
1135
1166
|
readonly popoverForeground: "#0a0a0a";
|
|
1136
1167
|
readonly primaryForeground: "#fafafa";
|
|
1137
|
-
readonly input: "#
|
|
1168
|
+
readonly input: "#eee";
|
|
1138
1169
|
readonly sidebar: "#fafafa";
|
|
1139
1170
|
readonly sidebarForeground: "#0a0a0a";
|
|
1140
1171
|
readonly sidebarPrimary: "#171717";
|
|
@@ -1192,7 +1223,7 @@ declare const DEFAULT_THEME: {
|
|
|
1192
1223
|
readonly popover: "#262626";
|
|
1193
1224
|
readonly popoverForeground: "#fafafa";
|
|
1194
1225
|
readonly primaryForeground: "#171717";
|
|
1195
|
-
readonly input: "#
|
|
1226
|
+
readonly input: "#171717";
|
|
1196
1227
|
readonly sidebar: "#171717";
|
|
1197
1228
|
readonly sidebarForeground: "#fafafa";
|
|
1198
1229
|
readonly sidebarPrimary: "#0588f0";
|
|
@@ -1686,6 +1717,8 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
|
|
|
1686
1717
|
items: FilterItem<T>[];
|
|
1687
1718
|
/** Enable drag-and-drop reordering (default: false) */
|
|
1688
1719
|
draggable?: boolean;
|
|
1720
|
+
/** To show clear button regardless of selected items or text / date content (default: true) */
|
|
1721
|
+
showClearBtn?: boolean;
|
|
1689
1722
|
/** Callback when selection changes */
|
|
1690
1723
|
onSelectionChange?: (values: T[]) => void;
|
|
1691
1724
|
/** Callback when order changes (draggable mode) */
|
|
@@ -2039,4 +2072,4 @@ interface KeyValueJsonEditorProps {
|
|
|
2039
2072
|
*/
|
|
2040
2073
|
declare const KeyValueJsonEditor: React$1.ForwardRefExoticComponent<KeyValueJsonEditorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2041
2074
|
|
|
2042
|
-
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, KeyValueJsonEditor, type KeyValueJsonEditorMode, type KeyValueJsonEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|
|
2075
|
+
export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, ButtonList, type ButtonListItem, type ButtonListProps, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateIllustrationPosition, type EmptyStateIllustrationSize, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, type InputVariant, JSON_EDITOR_LANGUAGE_OPTIONS, JsonEditor, type JsonEditorLanguage, type JsonEditorProps, KeyValueEditor, type KeyValueEditorProps, KeyValueJsonEditor, type KeyValueJsonEditorMode, type KeyValueJsonEditorProps, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyFontFamily, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
|