@noya-app/noya-designsystem 0.1.70 → 0.1.72

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.ts CHANGED
@@ -5,11 +5,11 @@ import * as Icons from '@noya-app/noya-icons';
5
5
  import { IconProps } from '@noya-app/noya-icons';
6
6
  export { Icons };
7
7
  import tailwindConfig from '@noya-app/noya-tailwind-config';
8
- import { Point as Point$1, Insets, Size, Rect } from '@noya-app/noya-geometry';
9
8
  import { UniqueIdentifier, ClientRect, CollisionDetection } from '@dnd-kit/core';
9
+ import { Point as Point$1, Insets, Size, Rect } from '@noya-app/noya-geometry';
10
10
  import { Property } from 'csstype';
11
11
  import * as _noya_app_noya_designsystem from '@noya-app/noya-designsystem';
12
- import { SectionProps as SectionProps$1, BannerProps as BannerProps$1, IconName as IconName$1 } from '@noya-app/noya-designsystem';
12
+ import { SectionProps as SectionProps$1, BannerProps as BannerProps$1, IconName as IconName$1, OptionModeProps as OptionModeProps$1 } from '@noya-app/noya-designsystem';
13
13
  import { Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, ContextMenu as ContextMenu$1, Popover as Popover$1, Tooltip as Tooltip$1 } from 'radix-ui';
14
14
  import * as _noya_app_noya_keymap from '@noya-app/noya-keymap';
15
15
  import { KeyModifiers, PlatformName } from '@noya-app/noya-keymap';
@@ -297,6 +297,9 @@ declare const ImageBlockComponent: React__default.ForwardRefExoticComponent<Omit
297
297
  type Theme = (typeof tailwindConfig.theme)["extend"];
298
298
  type ThemeColor = keyof Theme["colors"];
299
299
  declare const cssVars: {
300
+ containers: {
301
+ xl: string;
302
+ };
300
303
  colors: {
301
304
  logoFill: string;
302
305
  logoHighlight: string;
@@ -525,6 +528,9 @@ declare const cssVars: {
525
528
  };
526
529
  };
527
530
  declare const cssVarNames: {
531
+ containers: {
532
+ xl: string;
533
+ };
528
534
  colors: {
529
535
  logoFill: string;
530
536
  logoHighlight: string;
@@ -966,7 +972,7 @@ type ListViewRootProps<T> = {
966
972
  * Additionally, the key extracted with `keyExtractor` must match the ListItem.Row `id`.
967
973
  */
968
974
  sortable?: boolean;
969
- virtualized?: Size;
975
+ virtualized?: number;
970
976
  id?: string;
971
977
  className?: string;
972
978
  style?: CSSProperties;
@@ -1113,7 +1119,7 @@ type CollectionRenderActionProps<T> = {
1113
1119
  interface CollectionProps<T, M extends string = string> {
1114
1120
  className?: string;
1115
1121
  items: T[];
1116
- virtualized?: Size;
1122
+ virtualized?: number;
1117
1123
  getId: (item: T) => string;
1118
1124
  getName: (item: T) => string;
1119
1125
  getHref?: (item: T) => string;
@@ -1291,6 +1297,9 @@ type InputFieldInputProps = TextInputProps & {
1291
1297
  textAlign?: Property.TextAlign;
1292
1298
  variant?: "bare";
1293
1299
  };
1300
+ type NumberChangeOptions = {
1301
+ isEmpty: boolean;
1302
+ };
1294
1303
  type InputFieldNumberInputProps = Omit<TextInputProps, "value" | "onChange" | "onKeyDown" | "onSubmit" | "readOnly"> & {
1295
1304
  value: number | undefined;
1296
1305
  onNudge?: (value: number) => void;
@@ -1299,8 +1308,9 @@ type InputFieldNumberInputProps = Omit<TextInputProps, "value" | "onChange" | "o
1299
1308
  onBlur?: FocusEventHandler;
1300
1309
  readOnly?: boolean;
1301
1310
  className?: string;
1311
+ triggersOnEmpty?: boolean;
1302
1312
  } & ({
1303
- onChange: (value: number) => void;
1313
+ onChange: (value: number, options: NumberChangeOptions) => void;
1304
1314
  } | {
1305
1315
  onSubmit: (value: number) => void;
1306
1316
  });
@@ -1368,6 +1378,7 @@ type BaseComboboxProps<T extends string> = {
1368
1378
  readOnly?: boolean;
1369
1379
  tabBehavior?: "autocomplete" | "select";
1370
1380
  openMenuBehavior?: "showAllItems" | "showFilteredItems";
1381
+ iconPosition?: "left" | "right";
1371
1382
  };
1372
1383
  type StringModeOnlyProps = {
1373
1384
  mode: "string";
@@ -2152,11 +2163,16 @@ interface Props$7 {
2152
2163
  }
2153
2164
  declare const ScrollArea: React$1.NamedExoticComponent<Props$7>;
2154
2165
 
2155
- declare function ScrollArea2({ children, className, viewportClassName, orientation, }: {
2166
+ type ScrollAreaViewportProps = React$1.HTMLAttributes<HTMLDivElement> & {
2167
+ ref?: React$1.Ref<HTMLDivElement>;
2168
+ };
2169
+ declare function ScrollArea2({ children, className, viewportClassName, orientation, style, viewportProps, }: {
2156
2170
  children: React$1.ReactNode;
2157
2171
  className?: string;
2158
2172
  viewportClassName?: string;
2159
2173
  orientation?: "vertical" | "horizontal" | "both";
2174
+ style?: React$1.CSSProperties;
2175
+ viewportProps?: ScrollAreaViewportProps;
2160
2176
  }): React$1.JSX.Element;
2161
2177
 
2162
2178
  type SectionHeaderProps = {
@@ -2437,6 +2453,23 @@ declare namespace TreeView {
2437
2453
  type RowProps<MenuItemType extends string> = TreeViewRowProps<MenuItemType>;
2438
2454
  }
2439
2455
 
2456
+ type ComboboxOptionProps = Omit<OptionModeProps$1<string>, "mode" | "items" | "value" | "onSelectItem" | "onChange" | "onHoverItem">;
2457
+ type UserPickerUser = {
2458
+ id: string;
2459
+ name?: string | null;
2460
+ email?: string | null;
2461
+ image?: string | null;
2462
+ };
2463
+ type UserPickerProps<TUser extends UserPickerUser = UserPickerUser> = ComboboxOptionProps & {
2464
+ users: readonly TUser[];
2465
+ value?: string;
2466
+ defaultValue?: string;
2467
+ onChangeUserId?: (userId: string | undefined) => void;
2468
+ onSelectUser?: (user: TUser | undefined) => void;
2469
+ };
2470
+ declare function UserPicker<TUser extends UserPickerUser>({ users, value, defaultValue, onChangeUserId, onSelectUser, placeholder, ...rest }: UserPickerProps<TUser>): React__default.JSX.Element;
2471
+ declare function getUserDisplayName(user: UserPickerUser): string;
2472
+
2440
2473
  type Point = {
2441
2474
  x: number;
2442
2475
  y: number;
@@ -2463,6 +2496,48 @@ type UserPointerProps = {
2463
2496
  };
2464
2497
  declare const UserPointer: React__default.NamedExoticComponent<UserPointerProps>;
2465
2498
 
2499
+ type VirtualizedRenderItem = (index: number) => ReactNode;
2500
+ type VirtualizedPadding = number | {
2501
+ top?: number;
2502
+ bottom?: number;
2503
+ };
2504
+ type VirtualizedProps = {
2505
+ height: number;
2506
+ itemCount: number;
2507
+ getItemHeight: (index: number) => number;
2508
+ renderItem: VirtualizedRenderItem;
2509
+ overscan?: number;
2510
+ className?: string;
2511
+ style?: CSSProperties;
2512
+ innerClassName?: string;
2513
+ innerStyle?: CSSProperties;
2514
+ onScroll?: (scrollTop: number) => void;
2515
+ itemKey?: (index: number) => string | number;
2516
+ initialScrollOffset?: number;
2517
+ /**
2518
+ * When true (default) we flush scroll updates with `flushSync`
2519
+ * to avoid visual gaps during fast scrolling.
2520
+ */
2521
+ syncScrollUpdates?: boolean;
2522
+ /**
2523
+ * Optional padding applied above and below the content. Numbers apply to both.
2524
+ */
2525
+ padding?: VirtualizedPadding;
2526
+ /**
2527
+ * Optional constant gap inserted between items.
2528
+ */
2529
+ gap?: number;
2530
+ /**
2531
+ * Render content inside ScrollArea2 instead of a plain div.
2532
+ */
2533
+ useScrollArea?: boolean;
2534
+ /**
2535
+ * Optional class applied to the ScrollArea viewport when `useScrollArea` is true.
2536
+ */
2537
+ scrollAreaViewportClassName?: string;
2538
+ };
2539
+ declare const Virtualized: React__default.NamedExoticComponent<VirtualizedProps & React__default.RefAttributes<IVirtualizedList>>;
2540
+
2466
2541
  type SideType = "auto" | "panel" | "drawer";
2467
2542
  type DetectSizeType = "container" | "window";
2468
2543
  interface WorkspaceLayoutProps<LeftTab extends string, RightTab extends string> extends Pick<LayoutProps<LeftTab, RightTab>, "leftTabItems" | "leftTabValue" | "rightTabItems" | "rightTabValue" | "onChangeLeftTab" | "onChangeRightTab"> {
@@ -2946,4 +3021,4 @@ type ToolbarDrawerProps = {
2946
3021
  };
2947
3022
  declare const ToolbarDrawer: React__default.NamedExoticComponent<ToolbarDrawerProps & React__default.RefAttributes<HTMLDivElement>>;
2948
3023
 
2949
- export { AIAssistantInput, AIAssistantLayout, AIAssistantLoadingIndicator, type AcceptsDrop, type AcceptsDropOptions, type AcceptsFromList, ActionMenu, type ActivityIconSemanticColor, ActivityIndicator, ActivityLog, type ActivityLogItem, Anchor, AnimatePresence, type AnimatePresenceChildState, type AnimatePresenceProps, Avatar, type AvatarProps, AvatarStack, Banner, type BannerProps, type BaseComboboxProps, BaseToolbar, BaseToolbarContainer, type BaseToolbarProps, Body, BreadcrumbSlash, BreadcrumbText, Button, type ButtonProps, CHECKBOX_INDENT_WIDTH, CHECKBOX_RIGHT_INSET, CHECKBOX_WIDTH, Checkbox$1 as Checkbox, Chip, type ChipProps, Collection, type CollectionItemSize, type CollectionProps, type CollectionRef, type CollectionRenderActionProps, type CollectionThumbnailProps, type CollectionThumbnailSize, type CollectionViewType, ColorSwatch, ColorSwatchControl, type ColorSwatchSize, Combobox, ComboboxMenu, type ComboboxProps, type ComboboxRef, ComboboxState, type ComboboxStateSnapshot, CommandPalette, ConnectedUsersMenuLayout, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, type DetectSizeType, Dialog, type DialogContextValue, DialogProvider, DimensionInput, type DimensionValue, Divider, DividerVertical, type DragItem, type DragState, DraggableMenuButton, Drawer, type DrawerProps, type DropValidator, DropdownMenu, type DropdownRootProps, EditableText, type EditableTextRef, ExtraSmall, type ExtractMenuItemType, Fade, type FadeDirection, type FadeProps, FileExplorerCollection, FileExplorerDetail, FileExplorerEmptyState, FileExplorerLayout, FileExplorerUploadButton, FileUploadIndicator, FileUploadList, FloatingWindow, FloatingWindowProvider, FullscreenDialog, type GlobalInputBlurContextValue, GlobalInputBlurProvider, Grid, GridView, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, INPUT_HEIGHT, type IScoredItem, type ISearchCompletionMenu, type IToken, type IVirtualizedList, Icon, IconButton, type IconName, type IconProp, ImageBlockComponent, type ImageDataContextValue, ImageDataProvider, IndentContext, InputField, type InputFieldInputProps, type InputFieldProps, type InputFieldSize, InspectorContainer, InspectorPrimitives, Italic, type ItemChildrenExtraProps, type ItemChildrenProps, KeyboardShortcut, Label, LabelContext, type LabelProps, type LabelType, LabelTypeContext, type LabelTypeContextValue, LabelWidthContext, type LabelWidthContextValue, LabeledElementView, LabeledField, type LayoutProps, type LinkComponent, LinkComponentProvider, List, ListMenu, type ListMenuProps, ListNavigator, type ListNavigatorProps, ListView, Logo, type MatchRange, MediaThumbnail, type MediaThumbnailProps, type MenuComponents, type MenuConfig, type MenuItem, type MenuItemIcon, type MenuItemProps, type MenuItemRole, type MenuProps, MenuViewport, Message, type MessageProps, type MoveDragItemHandler, type MoveDragItemParameters, type MoveTreeItemOptions, Navigator, type NavigatorHeaderProps, type NavigatorNavigation, type NavigatorParams, type NavigatorProps, type NavigatorPushFunction, type NavigatorRenderContext, type NavigatorRenderHeader, type NavigatorReplaceFunction, type NavigatorRoute, type NavigatorRoutesConfig, type NavigatorScreenProps, type NavigatorStackEntry, type NonSelectableMenuItem, type OpenPortalControlsContextValue, type OpenPortalsContextValue, OpenPortalsProvider, type OptionModeOnlyProps, type OptionModeProps, type Optional, type PanelLayoutState, type PercentageSidebarOptions, PipelineResultLayout, PipelineResultLink, Popover, type PopoverMenuItem, type PortalScopeContextValue, PortalScopeProvider, Progress, type RelativeDropPosition, type RenderPanel, type RenderThumbnailIconProps, ResizableContainer, RingProgress, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, type ScoredMenuItem, ScrollArea, ScrollArea2, ScrollableSidebar, SearchCompletionMenu, Section$1 as Section, SectionHeader$1 as SectionHeader, SectionHeaderMenuItem, type SectionProps, SegmentedControl, type SegmentedControlItemProps, type SegmentedControlProps, SelectMenu, type SelectableMenuItem, SelectionToolbarContainer, type SeparatorItem, type SetNumberMode, SharedDragProvider, type SharedDragProviderProps, type SideOptions, type SideType, type SidebarRef, type SketchPattern, Slider, Small, Sortable, SortableItemContext, type SortableItemContextProps, type SortableProps, Spacer, type StackItem, StackNavigator, type StackNavigatorHeaderProps, type StackNavigatorProps, type StackNavigatorRenderHeader, Stepper, type StringModeOnlyProps, type StringModeProps, type SubMenuItem, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Tabs, type TabsProps, Text$1 as Text, TextArea, TextAreaRow, type TextProps, type Theme, type ThemeColor, Toast, ToastProvider, type TokenValue, Toolbar, ToolbarDrawer, ToolbarMenu, ToolbarMenuButton, ToolbarMenuContext, ToolbarMenuDropdown, ToolbarMenuItem, ToolbarMenuPopover, type ToolbarProps, ToolbarShortcut, Tooltip, TreeView, type UseThemeReturnType, UserAvatar, UserPointer, type UserPointerProps, type ValidateDropIndicatorParams, WorkspaceLayout, type WorkspaceLayoutGroup, type WorkspaceLayoutProps, type WorkspaceLayoutRef, type WorkspaceLayoutState, type WorkspaceSideContextValue, WorkspaceSideProvider, acceptsDrop, colorForStringValues, colorFromString, colorSwatchSizeMap, createDragItemKey, createNavigator, createSectionedMenu, createSharedDrag, cssVarNames, cssVars, cx, decodeImageSrc, defaultAcceptsDrop, dragItemKeySeparator, editableBlockStyles, filterWithGroupedSections, formatByteSize, fuzzyFilter, fuzzyScore, fuzzyTokenize, getClosestPortalScope, getFieldSpacing, getGridSize, getItemFirstCollisionDetection, getKeyboardShortcutsForMenuItems, getMenuItemKey, getNewValue, getNextIndex, getPipelineResultLink, getThumbnailColors, isMenuItemSectionHeader, isNonSelectableMenuItem, isPopoverMenuItem, isSelectableMenuItem, isSelectableMenuItemWithScore, isSubMenuItem, labeledFieldStyles, mergeConflictingClassNames, moveTreeItem, normalizeListTargetIndex, parseDragItemKey, popoverStyle, portalScopeDataSetName, portalScopePropName, portalScopeProps, proseTheme, renderIcon, separator, styles, textStyles, updateSelection, useAutoResize, useComboboxState, useCurrentFloatingWindowInternal, useDesignSystemConfiguration, useDialogContainsElement, useDialogContext, useFloatingWindowManager, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHasOpenPortals, useHover, useImageData, useIndent, useInputFieldContext, useLabel, useLabelType, useLabelWidth, useLinkComponent, useNavigator, useNavigatorRoute, useOpenConfirmationDialog, useOpenDialog, useOpenInputDialog, useOpenPortalsControls, usePlatform, usePlatformModKey, usePortalScopeId, useTheme, useWorkspaceSide, validateDropIndicator, withDragProvider, withSeparatorElements };
3024
+ export { AIAssistantInput, AIAssistantLayout, AIAssistantLoadingIndicator, type AcceptsDrop, type AcceptsDropOptions, type AcceptsFromList, ActionMenu, type ActivityIconSemanticColor, ActivityIndicator, ActivityLog, type ActivityLogItem, Anchor, AnimatePresence, type AnimatePresenceChildState, type AnimatePresenceProps, Avatar, type AvatarProps, AvatarStack, Banner, type BannerProps, type BaseComboboxProps, BaseToolbar, BaseToolbarContainer, type BaseToolbarProps, Body, BreadcrumbSlash, BreadcrumbText, Button, type ButtonProps, CHECKBOX_INDENT_WIDTH, CHECKBOX_RIGHT_INSET, CHECKBOX_WIDTH, Checkbox$1 as Checkbox, Chip, type ChipProps, Collection, type CollectionItemSize, type CollectionProps, type CollectionRef, type CollectionRenderActionProps, type CollectionThumbnailProps, type CollectionThumbnailSize, type CollectionViewType, ColorSwatch, ColorSwatchControl, type ColorSwatchSize, Combobox, ComboboxMenu, type ComboboxProps, type ComboboxRef, ComboboxState, type ComboboxStateSnapshot, CommandPalette, ConnectedUsersMenuLayout, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, type DetectSizeType, Dialog, type DialogContextValue, DialogProvider, DimensionInput, type DimensionValue, Divider, DividerVertical, type DragItem, type DragState, DraggableMenuButton, Drawer, type DrawerProps, type DropValidator, DropdownMenu, type DropdownRootProps, EditableText, type EditableTextRef, ExtraSmall, type ExtractMenuItemType, Fade, type FadeDirection, type FadeProps, FileExplorerCollection, FileExplorerDetail, FileExplorerEmptyState, FileExplorerLayout, FileExplorerUploadButton, FileUploadIndicator, FileUploadList, FloatingWindow, FloatingWindowProvider, FullscreenDialog, type GlobalInputBlurContextValue, GlobalInputBlurProvider, Grid, GridView, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, INPUT_HEIGHT, type IScoredItem, type ISearchCompletionMenu, type IToken, type IVirtualizedList, Icon, IconButton, type IconName, type IconProp, ImageBlockComponent, type ImageDataContextValue, ImageDataProvider, IndentContext, InputField, type InputFieldInputProps, type InputFieldProps, type InputFieldSize, InspectorContainer, InspectorPrimitives, Italic, type ItemChildrenExtraProps, type ItemChildrenProps, KeyboardShortcut, Label, LabelContext, type LabelProps, type LabelType, LabelTypeContext, type LabelTypeContextValue, LabelWidthContext, type LabelWidthContextValue, LabeledElementView, LabeledField, type LayoutProps, type LinkComponent, LinkComponentProvider, List, ListMenu, type ListMenuProps, ListNavigator, type ListNavigatorProps, ListView, Logo, type MatchRange, MediaThumbnail, type MediaThumbnailProps, type MenuComponents, type MenuConfig, type MenuItem, type MenuItemIcon, type MenuItemProps, type MenuItemRole, type MenuProps, MenuViewport, Message, type MessageProps, type MoveDragItemHandler, type MoveDragItemParameters, type MoveTreeItemOptions, Navigator, type NavigatorHeaderProps, type NavigatorNavigation, type NavigatorParams, type NavigatorProps, type NavigatorPushFunction, type NavigatorRenderContext, type NavigatorRenderHeader, type NavigatorReplaceFunction, type NavigatorRoute, type NavigatorRoutesConfig, type NavigatorScreenProps, type NavigatorStackEntry, type NonSelectableMenuItem, type OpenPortalControlsContextValue, type OpenPortalsContextValue, OpenPortalsProvider, type OptionModeOnlyProps, type OptionModeProps, type Optional, type PanelLayoutState, type PercentageSidebarOptions, PipelineResultLayout, PipelineResultLink, Popover, type PopoverMenuItem, type PortalScopeContextValue, PortalScopeProvider, Progress, type RelativeDropPosition, type RenderPanel, type RenderThumbnailIconProps, ResizableContainer, RingProgress, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, type ScoredMenuItem, ScrollArea, ScrollArea2, ScrollableSidebar, SearchCompletionMenu, Section$1 as Section, SectionHeader$1 as SectionHeader, SectionHeaderMenuItem, type SectionProps, SegmentedControl, type SegmentedControlItemProps, type SegmentedControlProps, SelectMenu, type SelectableMenuItem, SelectionToolbarContainer, type SeparatorItem, type SetNumberMode, SharedDragProvider, type SharedDragProviderProps, type SideOptions, type SideType, type SidebarRef, type SketchPattern, Slider, Small, Sortable, SortableItemContext, type SortableItemContextProps, type SortableProps, Spacer, type StackItem, StackNavigator, type StackNavigatorHeaderProps, type StackNavigatorProps, type StackNavigatorRenderHeader, Stepper, type StringModeOnlyProps, type StringModeProps, type SubMenuItem, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Tabs, type TabsProps, Text$1 as Text, TextArea, TextAreaRow, type TextProps, type Theme, type ThemeColor, Toast, ToastProvider, type TokenValue, Toolbar, ToolbarDrawer, ToolbarMenu, ToolbarMenuButton, ToolbarMenuContext, ToolbarMenuDropdown, ToolbarMenuItem, ToolbarMenuPopover, type ToolbarProps, ToolbarShortcut, Tooltip, TreeView, type UseThemeReturnType, UserAvatar, UserPicker, type UserPickerProps, type UserPickerUser, UserPointer, type UserPointerProps, type ValidateDropIndicatorParams, Virtualized, type VirtualizedProps, type VirtualizedRenderItem, WorkspaceLayout, type WorkspaceLayoutGroup, type WorkspaceLayoutProps, type WorkspaceLayoutRef, type WorkspaceLayoutState, type WorkspaceSideContextValue, WorkspaceSideProvider, acceptsDrop, colorForStringValues, colorFromString, colorSwatchSizeMap, createDragItemKey, createNavigator, createSectionedMenu, createSharedDrag, cssVarNames, cssVars, cx, decodeImageSrc, defaultAcceptsDrop, dragItemKeySeparator, editableBlockStyles, filterWithGroupedSections, formatByteSize, fuzzyFilter, fuzzyScore, fuzzyTokenize, getClosestPortalScope, getFieldSpacing, getGridSize, getItemFirstCollisionDetection, getKeyboardShortcutsForMenuItems, getMenuItemKey, getNewValue, getNextIndex, getPipelineResultLink, getThumbnailColors, getUserDisplayName, isMenuItemSectionHeader, isNonSelectableMenuItem, isPopoverMenuItem, isSelectableMenuItem, isSelectableMenuItemWithScore, isSubMenuItem, labeledFieldStyles, mergeConflictingClassNames, moveTreeItem, normalizeListTargetIndex, parseDragItemKey, popoverStyle, portalScopeDataSetName, portalScopePropName, portalScopeProps, proseTheme, renderIcon, separator, styles, textStyles, updateSelection, useAutoResize, useComboboxState, useCurrentFloatingWindowInternal, useDesignSystemConfiguration, useDialogContainsElement, useDialogContext, useFloatingWindowManager, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHasOpenPortals, useHover, useImageData, useIndent, useInputFieldContext, useLabel, useLabelType, useLabelWidth, useLinkComponent, useNavigator, useNavigatorRoute, useOpenConfirmationDialog, useOpenDialog, useOpenInputDialog, useOpenPortalsControls, usePlatform, usePlatformModKey, usePortalScopeId, useTheme, useWorkspaceSide, validateDropIndicator, withDragProvider, withSeparatorElements };