@nurix/ui-component-library 1.1.4-stage.122 → 1.1.4-stage.125

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 CHANGED
@@ -307,6 +307,76 @@ interface SwitchProps {
307
307
 
308
308
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
309
309
 
310
+ interface SliderProps {
311
+ /**
312
+ * Controlled value. Single-thumb slider — pass a single number.
313
+ */
314
+ value?: number;
315
+ /**
316
+ * Uncontrolled initial value.
317
+ * @default min
318
+ */
319
+ defaultValue?: number;
320
+ /**
321
+ * Called whenever the value changes (during drag and on commit).
322
+ */
323
+ onValueChange?: (value: number) => void;
324
+ /**
325
+ * Called when the user finishes interacting (pointer up / blur).
326
+ */
327
+ onValueCommit?: (value: number) => void;
328
+ /**
329
+ * Minimum allowed value.
330
+ * @default 0
331
+ */
332
+ min?: number;
333
+ /**
334
+ * Maximum allowed value.
335
+ * @default 100
336
+ */
337
+ max?: number;
338
+ /**
339
+ * Step granularity.
340
+ * @default 1
341
+ */
342
+ step?: number;
343
+ disabled?: boolean;
344
+ /**
345
+ * Label shown at the left edge (under the min end of the track).
346
+ * The label row renders automatically when either `minLabel` or
347
+ * `maxLabel` is provided.
348
+ */
349
+ minLabel?: React$1.ReactNode;
350
+ /**
351
+ * Label shown at the right edge (under the max end of the track).
352
+ * The label row renders automatically when either `minLabel` or
353
+ * `maxLabel` is provided.
354
+ */
355
+ maxLabel?: React$1.ReactNode;
356
+ /**
357
+ * Accessible name for the thumb.
358
+ */
359
+ "aria-label"?: string;
360
+ /**
361
+ * Optional id forwarded to the underlying root element.
362
+ */
363
+ id?: string;
364
+ className?: string;
365
+ style?: React$1.CSSProperties;
366
+ /**
367
+ * Optional `data-testid` for Playwright. Defaults to `"slider"` if omitted.
368
+ * By convention pass a descriptive name like `"slider-temperature"`.
369
+ */
370
+ "data-testid"?: string;
371
+ }
372
+
373
+ /**
374
+ * Slider — single-thumb range input with optional min/max edge labels.
375
+ *
376
+ * Figma reference: 557:22788, 557:23017.
377
+ */
378
+ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
379
+
310
380
  /**
311
381
  * Toggle (segmented pill / card) — Figma references:
312
382
  * - 4960:33812 — IconToggleSetRegular (size = "regular", 36×36 pills)
@@ -556,17 +626,44 @@ interface AccordionProps<TType extends AccordionType = "single"> extends Omit<Re
556
626
  interface AccordionItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
557
627
  value: string;
558
628
  disabled?: boolean;
629
+ /**
630
+ * Visual variant for the item.
631
+ * - `"default"` (back-compat) — flat row with a bottom divider; used in
632
+ * long lists where items share a single border baseline.
633
+ * - `"card"` — bordered, rounded, drop-shadowed pill that reads as its own
634
+ * surface (Figma 707:17455 / 6441:22282). Use when each item is a
635
+ * self-contained section, e.g. a Speech Settings card.
636
+ * @default "default"
637
+ */
638
+ variant?: "default" | "card";
559
639
  }
640
+ type AccordionTriggerSize = "default" | "sm";
560
641
  interface AccordionTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
561
642
  /**
562
643
  * Optional description under the label (matches Figma).
563
644
  */
564
645
  description?: React$1.ReactNode;
565
646
  /**
566
- * Optional right-side action (e.g. "Add" button).
647
+ * Optional right-side action (e.g. "Add" button, Switch toggle).
567
648
  * Note: click events are stopped from toggling the accordion.
568
649
  */
569
650
  action?: React$1.ReactNode;
651
+ /**
652
+ * Hide the trailing chevron. Useful for a card whose header is purely a
653
+ * toggle (e.g. `action` is a `Switch`) — when off, there's no body to
654
+ * expand, so a chevron would be misleading.
655
+ * @default false
656
+ */
657
+ hideChevron?: boolean;
658
+ /**
659
+ * Trigger sizing.
660
+ * - `"default"` — `py-4`, title is `text-lg` (legacy long-list look).
661
+ * - `"sm"` — `p-3`, title is `text-sm font-semibold` (Heading/H5);
662
+ * pairs with `AccordionItem variant="card"` per Figma
663
+ * 707:17455.
664
+ * @default "default"
665
+ */
666
+ size?: AccordionTriggerSize;
570
667
  /**
571
668
  * Optional `data-testid` for Playwright. Defaults to `"accordion"` if omitted.
572
669
  */
@@ -839,6 +936,11 @@ interface SelectContentItem {
839
936
  subtext?: string;
840
937
  leadIcon?: React$1.ReactNode;
841
938
  leadIconSize?: "xs" | "sm" | "md";
939
+ /**
940
+ * Optional trailing content rendered between the label/subtext and the
941
+ * checkmark — typically used for tag badges, status pills, or counts.
942
+ */
943
+ trailing?: React$1.ReactNode;
842
944
  }
843
945
  /** Section with items when using SelectContent `items` prop. */
844
946
  interface SelectContentItemWithSection {
@@ -850,14 +952,20 @@ declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
850
952
  declare const SelectGroup: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
851
953
  /**
852
954
  * Select value text (placeholder/value) using Typography tokens.
853
- * We style placeholder color via `group-data-[placeholder]` on the trigger.
955
+ *
956
+ * Radix's `SelectPrimitive.Value` destructures `className` and `style` out of
957
+ * its props and never forwards them to the rendered span (see
958
+ * @radix-ui/react-select source) — so styling MUST live on a wrapper around
959
+ * it, not on the primitive itself. We wrap with a `<span>` that carries the
960
+ * truncation rules so long selected values ellipsize within the trigger
961
+ * instead of bleeding past the chevron / pushing siblings off the row.
854
962
  */
855
963
  declare const SelectValue: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
856
964
  declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
857
965
  showLead?: boolean;
858
966
  leadIcon?: React$1.ReactNode;
859
- /** Size of lead icon. "xs" = 16px, "sm" = 24px (default) */
860
- leadIconSize?: "xs" | "sm";
967
+ /** Size of lead icon wrapper. "xs" = 12px, "sm" = 16px (default), "md" = 20px */
968
+ leadIconSize?: "xs" | "sm" | "md";
861
969
  /** Size variant. "small" = 32px height, "regular" = 48px, "large" = 64px */
862
970
  size?: "small" | "regular" | "large";
863
971
  /** Background variant. "default" = input grey, "white" = card white */
@@ -875,6 +983,14 @@ declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
875
983
  items?: SelectContentItem[] | SelectContentItemWithSection[];
876
984
  showSearch?: boolean;
877
985
  searchPlaceholder?: string;
986
+ /**
987
+ * Ref forwarded to the internal `SelectPrimitive.Viewport` (the scroll
988
+ * container for items). Lets consumers attach an `IntersectionObserver`
989
+ * — typical use is wiring an `InfiniteScroll` so items lazy-load as the
990
+ * user scrolls a long list (e.g. paginated transfer agents). Function
991
+ * refs are also supported.
992
+ */
993
+ viewportRef?: React$1.Ref<HTMLDivElement> | ((node: HTMLDivElement | null) => void);
878
994
  } & React$1.RefAttributes<HTMLDivElement>>;
879
995
  declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
880
996
  declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
@@ -883,6 +999,11 @@ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive
883
999
  leadIcon?: React$1.ReactNode;
884
1000
  /** Size of leadIcon area. "xs" = 16px, "sm" = 24px, "md" = 36px (for playback controls) */
885
1001
  leadIconSize?: "xs" | "sm" | "md";
1002
+ /**
1003
+ * Optional trailing content rendered between the label/subtext and the
1004
+ * checkmark — typically used for tag badges, status pills, or counts.
1005
+ */
1006
+ trailing?: React$1.ReactNode;
886
1007
  /**
887
1008
  * Optional `data-testid` for Playwright. Defaults to `"select-item"` if omitted.
888
1009
  */
@@ -895,13 +1016,26 @@ interface PlaySelectAudioItem {
895
1016
  value: string;
896
1017
  label: string;
897
1018
  subtext?: string;
1019
+ /**
1020
+ * Audio preview URL. When empty/falsy, the play button is rendered in a
1021
+ * disabled visual state and clicks are no-ops — no playback state change.
1022
+ */
898
1023
  url: string;
1024
+ /**
1025
+ * Optional trailing content rendered between the label and the checkmark.
1026
+ * Typically used for tag badges (e.g. gender, language pills).
1027
+ */
1028
+ tags?: React$1.ReactNode;
899
1029
  }
900
1030
  interface PlaySelectProps {
901
1031
  /** List of audio items to display. Each has value, label, subtext, and playable url. */
902
1032
  dropdownListItems: PlaySelectAudioItem[];
903
1033
  /** Trigger label (e.g. "Title") */
904
1034
  label?: string;
1035
+ /** Whether to show the form label above the trigger. @default true */
1036
+ showLabel?: boolean;
1037
+ /** Whether the label shows the red `*` mandatory indicator. @default true */
1038
+ mandatory?: boolean;
905
1039
  /** Placeholder when nothing selected */
906
1040
  placeholder?: string;
907
1041
  /** Show search input in dropdown */
@@ -928,6 +1062,10 @@ interface PlaySelectProps {
928
1062
  triggerLeadIcon?: React$1.ReactNode;
929
1063
  /** Optional wrapper className (e.g. to control width) */
930
1064
  className?: string;
1065
+ /** Optional className passed to the SelectTrigger button */
1066
+ triggerClassName?: string;
1067
+ /** Optional className passed to the SelectContent dropdown panel */
1068
+ contentClassName?: string;
931
1069
  /** Minimum width (e.g. "196px"). Override via className if needed. */
932
1070
  minWidth?: string;
933
1071
  }
@@ -2012,6 +2150,18 @@ interface StepItem {
2012
2150
  * @default "incomplete"
2013
2151
  */
2014
2152
  state?: StepState;
2153
+ /**
2154
+ * Optional click handler. When provided, the step renders as a `<button>`
2155
+ * (rather than a static `<div>`) so consumers can use the stepper as
2156
+ * navigation — e.g. clicking a completed step jumps the wizard back to it.
2157
+ */
2158
+ onClick?: (event: React$1.MouseEvent<HTMLButtonElement>) => void;
2159
+ /**
2160
+ * Disable click navigation even when `onClick` is provided. Useful for the
2161
+ * currently active step or steps that aren't reachable from the current
2162
+ * position.
2163
+ */
2164
+ disabled?: boolean;
2015
2165
  }
2016
2166
  interface StepperProps {
2017
2167
  /**
@@ -2925,6 +3075,25 @@ interface KeyValueEditorProps {
2925
3075
  * matches the Figma reference.
2926
3076
  */
2927
3077
  valueLeadingIcon?: React$1.ReactNode;
3078
+ /**
3079
+ * Render an extra cell at the end of every row, between the value field
3080
+ * and the delete button. Use it for per-row controls that don't fit the
3081
+ * key/value contract (e.g. a `Toggle` for a third boolean field).
3082
+ *
3083
+ * `pair` is the current pair, `index` is the row index. Return `null` /
3084
+ * `undefined` to render nothing for that row. The trailing slot is
3085
+ * absent from the header — pass a `header` label string to render a
3086
+ * matching column header, otherwise the spot stays empty.
3087
+ *
3088
+ * Backwards-compatible: omit both props and the editor renders the
3089
+ * legacy 2-column layout.
3090
+ */
3091
+ renderRowTrailing?: (pair: KeyValuePair, index: number) => React$1.ReactNode;
3092
+ /**
3093
+ * Header label for the trailing column. Only rendered when
3094
+ * `renderRowTrailing` is also set and `hideHeader` is false.
3095
+ */
3096
+ trailingHeader?: string;
2928
3097
  className?: string;
2929
3098
  style?: React$1.CSSProperties;
2930
3099
  /**
@@ -3008,6 +3177,12 @@ interface ChatBubbleAgentProps extends ChatBubbleBaseProps {
3008
3177
  trailing?: React$1.ReactNode;
3009
3178
  /** In-Focus state — draws the brand ring around the bubble. */
3010
3179
  focused?: boolean;
3180
+ /**
3181
+ * Workspace icon URL rendered inside the 16px avatar slot. Used when
3182
+ * `avatar` isn't explicitly provided. Falls back to the bundled default
3183
+ * Nurix avatar when neither prop is set.
3184
+ */
3185
+ workspaceIcon?: string;
3011
3186
  }
3012
3187
  interface ChatBubbleUserProps extends ChatBubbleBaseProps {
3013
3188
  /** Shown below the message (e.g. a "Tool Call" tag). */
@@ -3130,4 +3305,107 @@ interface PopoverProps {
3130
3305
  */
3131
3306
  declare const Popover: React$1.ForwardRefExoticComponent<PopoverProps & React$1.RefAttributes<HTMLDivElement>>;
3132
3307
 
3133
- export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionSectionTrigger, type AccordionSectionTriggerProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, AudioPlayer, type AudioPlayerProps, 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, ChatBubbleAgent, type ChatBubbleAgentProps, ChatBubbleUser, type ChatBubbleUserProps, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, CompoundFilterSelect, type CompoundFilterSelectProps, type CompoundFilterToggleOption, 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, type FilterItemWithSection, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, type IconColor, IconPicker, type IconPickerProps, type IconSize, IconWrapper, type IconWrapperProps, 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, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListNavItemProps, ListNavigation, type ListNavigationProps, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, NestedButtonGroup, type NestedButtonGroupProps, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, Popover, type PopoverAlign, type PopoverProps, type PopoverShadow, type PopoverSide, ProgressBar, type ProgressBarProps, 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, SidePanel, type SidePanelProps, type SidePanelSize, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Surface, type SurfaceBackground, SurfaceBody, type SurfaceBodyProps, SurfaceFooter, type SurfaceFooterProps, SurfaceHeader, type SurfaceHeaderProps, type SurfaceProps, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagBadge, type TagBadgeProps, type TagOption, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Toggle, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleType, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographySize, type TypographyTone, type TypographyVariant, type TypographyWeight, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };
3308
+ /**
3309
+ * Plain item shape for `MultiSelect`. Mirrors the minimal subset of
3310
+ * `SelectContentItem` that's actually meaningful for a checkbox list — no
3311
+ * leadIcon / subtext / trailing slots.
3312
+ */
3313
+ interface MultiSelectItem<T extends string = string> {
3314
+ value: T;
3315
+ label: string;
3316
+ /** Optional: disable a single item. */
3317
+ disabled?: boolean;
3318
+ }
3319
+ interface MultiSelectProps<T extends string = string> {
3320
+ /**
3321
+ * Selected values (controlled).
3322
+ */
3323
+ value: T[];
3324
+ /**
3325
+ * Called whenever the selection changes.
3326
+ */
3327
+ onValueChange: (values: T[]) => void;
3328
+ /**
3329
+ * Items to render inside the dropdown.
3330
+ */
3331
+ items: MultiSelectItem<T>[];
3332
+ /**
3333
+ * Placeholder shown in the trigger when nothing is selected.
3334
+ * @default "Select…"
3335
+ */
3336
+ placeholder?: string;
3337
+ /**
3338
+ * Optional label rendered on the left of the trigger before a vertical
3339
+ * separator and the selected-items summary — mirrors `FilterSelect`'s
3340
+ * "Label | selected1, selected2 +N" layout. Use this when the field's
3341
+ * external label is also part of the trigger (e.g. compact rows where
3342
+ * the form-level label is omitted).
3343
+ */
3344
+ label?: string;
3345
+ /**
3346
+ * Render a search input above the list.
3347
+ * @default false
3348
+ */
3349
+ showSearch?: boolean;
3350
+ /**
3351
+ * Placeholder for the search input.
3352
+ * @default "Search…"
3353
+ */
3354
+ searchPlaceholder?: string;
3355
+ /**
3356
+ * Render a "(Select All)" toggle row above the items.
3357
+ * @default true
3358
+ */
3359
+ showSelectAll?: boolean;
3360
+ /**
3361
+ * Size variant. Same vocabulary as `SelectTrigger.size` so a paired
3362
+ * single-select and multi-select stay visually aligned.
3363
+ * @default "regular"
3364
+ */
3365
+ size?: "small" | "regular" | "large";
3366
+ /**
3367
+ * Background variant. Same vocabulary as `SelectTrigger.bg`.
3368
+ * @default "default"
3369
+ */
3370
+ bg?: "default" | "white";
3371
+ /**
3372
+ * Disable the entire control.
3373
+ */
3374
+ disabled?: boolean;
3375
+ /**
3376
+ * Max height for the items list. Content scrolls beyond this.
3377
+ * @default 260
3378
+ */
3379
+ maxHeight?: number | string;
3380
+ /**
3381
+ * id for the trigger button.
3382
+ */
3383
+ id?: string;
3384
+ /**
3385
+ * Optional className applied to the trigger button.
3386
+ */
3387
+ className?: string;
3388
+ /**
3389
+ * Optional `data-testid` for Playwright. Defaults to `"multi-select"`.
3390
+ */
3391
+ "data-testid"?: string;
3392
+ }
3393
+
3394
+ /**
3395
+ * MultiSelect — checkbox-list dropdown styled to match `Select`.
3396
+ *
3397
+ * Why this exists separately from `Select`: Radix Select is fundamentally
3398
+ * single-select (it commits + closes on each pick). MultiSelect is built on
3399
+ * `Popover` + `Checkbox` so the dropdown stays open while the user picks
3400
+ * multiple items — but its trigger reuses `SELECT_TOKENS.container.*` so
3401
+ * the height, border, chevron, and spacing match a sibling `Select` pixel-
3402
+ * for-pixel.
3403
+ *
3404
+ * Behaviour mirrors FilterSelect's `type="list"` (search + Select-All +
3405
+ * checkboxes), but the trigger is a form-field Select trigger rather than
3406
+ * a filter pill — so it slots into form layouts next to a normal Select
3407
+ * without visual drift.
3408
+ */
3409
+ declare function MultiSelect<T extends string = string>({ value, onValueChange, items, placeholder, label, showSearch, searchPlaceholder, showSelectAll, size, bg, disabled, maxHeight, id, className, "data-testid": dataTestId, }: MultiSelectProps<T>): react_jsx_runtime.JSX.Element;
3410
+
3411
+ export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionSectionTrigger, type AccordionSectionTriggerProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, AudioPlayer, type AudioPlayerProps, 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, ChatBubbleAgent, type ChatBubbleAgentProps, ChatBubbleUser, type ChatBubbleUserProps, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, CompoundFilterSelect, type CompoundFilterSelectProps, type CompoundFilterToggleOption, 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, type FilterItemWithSection, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, type IconColor, IconPicker, type IconPickerProps, type IconSize, IconWrapper, type IconWrapperProps, 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, type KeyValuePair, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListNavItemProps, ListNavigation, type ListNavigationProps, type ListProps, type ListType, type ListVariant, MONACO_OPTIONS, MONACO_OPTIONS_DIALOG, MultiSelect, type MultiSelectItem, type MultiSelectProps, NestedButtonGroup, type NestedButtonGroupProps, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, Popover, type PopoverAlign, type PopoverProps, type PopoverShadow, type PopoverSide, ProgressBar, type ProgressBarProps, 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, SidePanel, type SidePanelProps, type SidePanelSize, Slider, type SliderProps, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Surface, type SurfaceBackground, SurfaceBody, type SurfaceBodyProps, SurfaceFooter, type SurfaceFooterProps, SurfaceHeader, type SurfaceHeaderProps, type SurfaceProps, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagBadge, type TagBadgeProps, type TagOption, Textarea, type TextareaBorderRadius, type TextareaForceState, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Toggle, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleType, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographySize, type TypographyTone, type TypographyVariant, type TypographyWeight, type UsePlaySelectProps, type UseSelectProps, enhanceJsonError, showToast, useJsonEditor, usePlaySelect, useSelect, useTheme };