@noya-app/noya-designsystem 0.1.75 → 0.1.77
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +16 -0
- package/dist/index.css +1 -1
- package/dist/index.d.mts +51 -4
- package/dist/index.d.ts +51 -4
- package/dist/index.js +546 -380
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +440 -279
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/components/BaseToolbar.tsx +19 -5
- package/src/components/DropdownMenu.tsx +3 -1
- package/src/components/GridBackground.tsx +40 -0
- package/src/components/OverlayToolbar.tsx +97 -0
- package/src/components/SegmentedControl.tsx +2 -2
- package/src/components/StackNavigator.tsx +1 -0
- package/src/components/Toolbar.tsx +19 -8
- package/src/components/UserPointer.tsx +5 -3
- package/src/components/workspace/WorkspaceLayout.tsx +55 -19
- package/src/index.tsx +2 -0
- package/src/theme/proseTheme.ts +20 -0
- package/tailwind.config.ts +6 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { IconProps } from '@noya-app/noya-icons';
|
|
|
6
6
|
export { Icons };
|
|
7
7
|
import tailwindConfig from '@noya-app/noya-tailwind-config';
|
|
8
8
|
import { UniqueIdentifier, ClientRect, CollisionDetection } from '@dnd-kit/core';
|
|
9
|
-
import { Point as Point$1, Insets, Size, Rect } from '@noya-app/noya-geometry';
|
|
9
|
+
import { Point as Point$1, Insets, Size, AffineTransform, 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
12
|
import { SectionProps as SectionProps$1, BannerProps as BannerProps$1, IconName as IconName$1, OptionModeProps as OptionModeProps$1 } from '@noya-app/noya-designsystem';
|
|
@@ -1606,6 +1606,7 @@ type DropdownRootProps<T extends string> = Omit<MenuProps<T>, "children"> & {
|
|
|
1606
1606
|
onCloseAutoFocus?: React__default.EventHandler<SyntheticEvent<unknown>>;
|
|
1607
1607
|
emptyState?: React__default.ReactNode;
|
|
1608
1608
|
contentStyle?: React__default.CSSProperties;
|
|
1609
|
+
modal?: boolean;
|
|
1609
1610
|
} & Pick<ComponentProps<typeof DropdownMenu$1.Content>, "side" | "sideOffset" | "align" | "alignOffset" | "collisionPadding">;
|
|
1610
1611
|
declare const DropdownMenu: <T extends string>(props: Omit<MenuProps<T>, "children"> & {
|
|
1611
1612
|
children?: ReactNode | ((props: {
|
|
@@ -1617,6 +1618,7 @@ declare const DropdownMenu: <T extends string>(props: Omit<MenuProps<T>, "childr
|
|
|
1617
1618
|
onCloseAutoFocus?: React__default.EventHandler<SyntheticEvent<unknown>>;
|
|
1618
1619
|
emptyState?: React__default.ReactNode;
|
|
1619
1620
|
contentStyle?: React__default.CSSProperties;
|
|
1621
|
+
modal?: boolean;
|
|
1620
1622
|
} & Pick<DropdownMenu$1.DropdownMenuContentProps & React__default.RefAttributes<HTMLDivElement>, "side" | "sideOffset" | "align" | "alignOffset" | "collisionPadding"> & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any> | null;
|
|
1621
1623
|
|
|
1622
1624
|
type RenderPreviewProps = {
|
|
@@ -1727,6 +1729,14 @@ declare const Grid: <T, M extends string = string>(props: CollectionProps<T, M>
|
|
|
1727
1729
|
ref?: React__default.ForwardedRef<CollectionRef>;
|
|
1728
1730
|
} & React__default.RefAttributes<CollectionRef>) => React__default.ReactElement<any> | null;
|
|
1729
1731
|
|
|
1732
|
+
interface GridBackgroundProps {
|
|
1733
|
+
transform?: AffineTransform;
|
|
1734
|
+
/** @default 10 */
|
|
1735
|
+
gridSize?: number;
|
|
1736
|
+
dotSize?: number;
|
|
1737
|
+
}
|
|
1738
|
+
declare const GridBackground: ({ transform, gridSize: gridSizeProp, dotSize, }: GridBackgroundProps) => React__default.JSX.Element;
|
|
1739
|
+
|
|
1730
1740
|
interface ItemProps<MenuItemType extends string = string> {
|
|
1731
1741
|
id: string;
|
|
1732
1742
|
href?: string;
|
|
@@ -2480,7 +2490,7 @@ type UserPointerProps = {
|
|
|
2480
2490
|
name?: string;
|
|
2481
2491
|
/** label to display in the tooltip next to the Pointer */
|
|
2482
2492
|
visible?: boolean;
|
|
2483
|
-
point
|
|
2493
|
+
point?: Point;
|
|
2484
2494
|
/** defaults to a random color based on the key, but can optionally be overridden */
|
|
2485
2495
|
backgroundColor?: string;
|
|
2486
2496
|
style?: React__default.CSSProperties;
|
|
@@ -2539,8 +2549,19 @@ type VirtualizedProps = {
|
|
|
2539
2549
|
};
|
|
2540
2550
|
declare const Virtualized: React__default.NamedExoticComponent<VirtualizedProps & React__default.RefAttributes<IVirtualizedList>>;
|
|
2541
2551
|
|
|
2552
|
+
type OverlayLayout = "bottomCenterTopRight" | "topLeftTopRight";
|
|
2553
|
+
interface OverlayToolbarProps {
|
|
2554
|
+
left?: React__default.ReactNode;
|
|
2555
|
+
right?: React__default.ReactNode;
|
|
2556
|
+
overlayLayout?: OverlayLayout;
|
|
2557
|
+
className?: string;
|
|
2558
|
+
style?: React__default.CSSProperties;
|
|
2559
|
+
}
|
|
2560
|
+
declare function OverlayToolbar({ left, right, overlayLayout, className, style, }: OverlayToolbarProps): React__default.JSX.Element;
|
|
2561
|
+
|
|
2542
2562
|
type SideType = "auto" | "panel" | "drawer";
|
|
2543
2563
|
type DetectSizeType = "container" | "window";
|
|
2564
|
+
type ToolbarVariant = "default" | "overlay";
|
|
2544
2565
|
interface WorkspaceLayoutProps<LeftTab extends string, RightTab extends string> extends Pick<LayoutProps<LeftTab, RightTab>, "leftTabItems" | "leftTabValue" | "rightTabItems" | "rightTabValue" | "onChangeLeftTab" | "onChangeRightTab"> {
|
|
2545
2566
|
id?: string;
|
|
2546
2567
|
className?: string;
|
|
@@ -2553,6 +2574,24 @@ interface WorkspaceLayoutProps<LeftTab extends string, RightTab extends string>
|
|
|
2553
2574
|
right?: RenderPanel<RightTab>;
|
|
2554
2575
|
rightOptions?: SideOptions;
|
|
2555
2576
|
toolbar?: React__default.ReactNode;
|
|
2577
|
+
/**
|
|
2578
|
+
* Toolbar variant - "default" renders above content, "overlay" renders floating panels
|
|
2579
|
+
* @default "default"
|
|
2580
|
+
*/
|
|
2581
|
+
toolbarVariant?: ToolbarVariant;
|
|
2582
|
+
/**
|
|
2583
|
+
* Content for the left/bottom-center overlay panel (when toolbarVariant is "overlay")
|
|
2584
|
+
*/
|
|
2585
|
+
overlayToolbarLeft?: React__default.ReactNode;
|
|
2586
|
+
/**
|
|
2587
|
+
* Content for the right overlay panel (when toolbarVariant is "overlay")
|
|
2588
|
+
*/
|
|
2589
|
+
overlayToolbarRight?: React__default.ReactNode;
|
|
2590
|
+
/**
|
|
2591
|
+
* Layout configuration for overlay toolbar
|
|
2592
|
+
* @default "bottomCenterTopRight"
|
|
2593
|
+
*/
|
|
2594
|
+
overlayLayout?: OverlayLayout;
|
|
2556
2595
|
sideType?: SideType;
|
|
2557
2596
|
sideTypeBreakpoint?: number;
|
|
2558
2597
|
detectSize?: DetectSizeType;
|
|
@@ -2766,6 +2805,7 @@ type UseThemeReturnType = "dark" | "light";
|
|
|
2766
2805
|
declare function useTheme(): UseThemeReturnType;
|
|
2767
2806
|
|
|
2768
2807
|
declare const proseTheme = "n-prose n-prose-sm n-max-w-none [[data-theme='dark']_&]:n-prose-invert prose-a:n-text-blue-600";
|
|
2808
|
+
declare const whiteboardProseTheme: (isDark: boolean) => string;
|
|
2769
2809
|
|
|
2770
2810
|
type ClassNameItem = string | number | BigInt | boolean | null | undefined;
|
|
2771
2811
|
type Category = "text" | "color" | "font" | "flex" | "position" | "textAlign" | "rounded";
|
|
@@ -2952,7 +2992,13 @@ interface BaseToolbarProps {
|
|
|
2952
2992
|
className?: string;
|
|
2953
2993
|
innerClassName?: string;
|
|
2954
2994
|
enableAbsoluteBreakpoint?: boolean;
|
|
2995
|
+
/** Whether to enable container query classes. @default true */
|
|
2996
|
+
enableContainerQuery?: boolean;
|
|
2955
2997
|
}
|
|
2998
|
+
/** Shared toolbar style that sets button and input backgrounds to transparent */
|
|
2999
|
+
declare const toolbarTransparentStyle: {
|
|
3000
|
+
readonly [x: string]: "transparent";
|
|
3001
|
+
};
|
|
2956
3002
|
declare function BaseToolbarContainer({ children, showDivider, className, innerClassName, enableAbsoluteBreakpoint, }: {
|
|
2957
3003
|
children: React__default.ReactNode;
|
|
2958
3004
|
showDivider?: boolean;
|
|
@@ -2960,7 +3006,7 @@ declare function BaseToolbarContainer({ children, showDivider, className, innerC
|
|
|
2960
3006
|
innerClassName?: string;
|
|
2961
3007
|
enableAbsoluteBreakpoint?: boolean;
|
|
2962
3008
|
}): React__default.JSX.Element;
|
|
2963
|
-
declare function BaseToolbar({ children, left, right, logo, showDivider, className, innerClassName, enableAbsoluteBreakpoint, }: BaseToolbarProps): React__default.JSX.Element;
|
|
3009
|
+
declare function BaseToolbar({ children, left, right, logo, showDivider, className, innerClassName, enableAbsoluteBreakpoint, enableContainerQuery, }: BaseToolbarProps): React__default.JSX.Element;
|
|
2964
3010
|
|
|
2965
3011
|
declare const ToolbarMenuContext: React__default.Context<{
|
|
2966
3012
|
dividerOverflow?: number;
|
|
@@ -3016,6 +3062,7 @@ interface ToolbarProps<T extends string = string> {
|
|
|
3016
3062
|
shouldBindKeyboardShortcuts?: boolean;
|
|
3017
3063
|
dividerOverflow?: number;
|
|
3018
3064
|
}
|
|
3065
|
+
declare function useBindKeyboardShortcutsForMenuItems<T extends string>(items: MenuItem<T>[], onSelectMenuItem?: (value: T) => void): void;
|
|
3019
3066
|
declare function Toolbar<T extends string = string>({ children, logo, leftMenuItems, rightMenuItems, onSelectMenuItem, shouldBindKeyboardShortcuts, dividerOverflow, }: ToolbarProps<T>): React__default.JSX.Element;
|
|
3020
3067
|
|
|
3021
3068
|
type ToolbarDrawerProps = {
|
|
@@ -3025,4 +3072,4 @@ type ToolbarDrawerProps = {
|
|
|
3025
3072
|
};
|
|
3026
3073
|
declare const ToolbarDrawer: React__default.NamedExoticComponent<ToolbarDrawerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3027
3074
|
|
|
3028
|
-
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 };
|
|
3075
|
+
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, GridBackground, 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 OverlayLayout, OverlayToolbar, type OverlayToolbarProps, 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, type ToolbarVariant, 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, toolbarTransparentStyle, updateSelection, useAutoResize, useBindKeyboardShortcutsForMenuItems, 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, whiteboardProseTheme, withDragProvider, withSeparatorElements };
|