@noya-app/noya-designsystem 0.1.66 → 0.1.68
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 +14 -0
- package/dist/index.css +1 -1
- package/dist/index.d.mts +81 -5
- package/dist/index.d.ts +81 -5
- package/dist/index.js +1205 -857
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1047 -698
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
- package/src/components/Anchor.tsx +30 -0
- package/src/components/BaseToolbar.tsx +11 -8
- package/src/components/Chip.tsx +16 -2
- package/src/components/Collection.tsx +10 -0
- package/src/components/Combobox.tsx +30 -21
- package/src/components/ComboboxMenu.tsx +49 -18
- package/src/components/Dialog.tsx +7 -1
- package/src/components/EditableText.tsx +7 -3
- package/src/components/Grid.tsx +2 -0
- package/src/components/GridView.tsx +52 -9
- package/src/components/List.tsx +54 -9
- package/src/components/ListView.tsx +44 -0
- package/src/components/ScrollArea2.tsx +56 -0
- package/src/components/SearchCompletionMenu.tsx +6 -2
- package/src/components/TreeView.tsx +4 -0
- package/src/components/UserPointer.tsx +34 -7
- package/src/components/connected-users-menu/ConnectedUsersMenuLayout.tsx +1 -3
- package/src/components/listView/ListViewEditableRowTitle.tsx +23 -1
- package/src/components/listView/ListViewRoot.tsx +45 -13
- package/src/components/sorting/Sortable.tsx +22 -10
- package/src/components/workspace/WorkspaceLayout.tsx +62 -4
- package/src/components/workspace/WorkspaceSideContext.tsx +18 -0
- package/src/components/workspace/renderPanelChildren.tsx +2 -2
- package/src/components/workspace/types.ts +8 -1
- package/src/contexts/DialogContext.tsx +22 -10
- package/src/index.css +143 -1
- package/src/index.tsx +4 -0
- package/src/theme/proseTheme.ts +2 -0
- package/src/utils/combobox.ts +17 -2
- package/src/utils/detailLineClamp.ts +33 -0
- package/tailwind.config.ts +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, CSSProperties, AriaRole, KeyboardEventHandler, MouseEventHandler, PointerEventHandler, FocusEventHandler, InputHTMLAttributes, ForwardedRef,
|
|
2
|
+
import React__default, { ReactNode, ComponentProps, CSSProperties, AriaRole, KeyboardEventHandler, MouseEventHandler, PointerEventHandler, FocusEventHandler, InputHTMLAttributes, ForwardedRef, SyntheticEvent, LabelHTMLAttributes, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
3
3
|
import { IItemScore } from 'vscode-fuzzy-scorer';
|
|
4
4
|
import * as Icons from '@noya-app/noya-icons';
|
|
5
5
|
import { IconProps } from '@noya-app/noya-icons';
|
|
@@ -207,6 +207,12 @@ type AIAssistantLayoutProps = {
|
|
|
207
207
|
};
|
|
208
208
|
declare const AIAssistantLayout: React__default.ForwardRefExoticComponent<AIAssistantLayoutProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
209
209
|
|
|
210
|
+
interface AnchorProps extends ComponentProps<"a"> {
|
|
211
|
+
active?: boolean;
|
|
212
|
+
as?: React__default.ElementType;
|
|
213
|
+
}
|
|
214
|
+
declare const Anchor: React__default.ForwardRefExoticComponent<Omit<AnchorProps, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
215
|
+
|
|
210
216
|
type AnimatePresenceChildState = "entering" | "entered" | "exiting" | "exited";
|
|
211
217
|
type AnimatePresenceProps = {
|
|
212
218
|
children: React__default.ReactNode;
|
|
@@ -990,6 +996,7 @@ type ListViewRootProps<T> = {
|
|
|
990
996
|
sharedDragProps?: SharedDragProps;
|
|
991
997
|
sortableId?: string;
|
|
992
998
|
itemHeight?: number;
|
|
999
|
+
getItemHeightForItem?: (item: T, index: number) => number;
|
|
993
1000
|
};
|
|
994
1001
|
|
|
995
1002
|
interface EditableRowTitleProps {
|
|
@@ -999,6 +1006,12 @@ interface EditableRowTitleProps {
|
|
|
999
1006
|
placeholder?: string;
|
|
1000
1007
|
className?: string;
|
|
1001
1008
|
onKeyDown?: (e: React__default.KeyboardEvent) => void;
|
|
1009
|
+
/**
|
|
1010
|
+
* When true, selects only the portion of the value
|
|
1011
|
+
* before the last '.' on autofocus (useful for renaming files
|
|
1012
|
+
* without selecting the extension). Defaults to false.
|
|
1013
|
+
*/
|
|
1014
|
+
selectBeforeDot?: boolean;
|
|
1002
1015
|
}
|
|
1003
1016
|
|
|
1004
1017
|
interface ListViewClickInfo {
|
|
@@ -1061,11 +1074,24 @@ declare namespace ListView {
|
|
|
1061
1074
|
$colorScheme: ListColorScheme;
|
|
1062
1075
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1063
1076
|
const rowHeight = 31;
|
|
1064
|
-
const sectionHeaderLabelHeight =
|
|
1077
|
+
const sectionHeaderLabelHeight = 24;
|
|
1078
|
+
const tallRowHeight = 50;
|
|
1065
1079
|
const calculateHeight: ({ menuItemsCount, sectionHeaderCount, }: {
|
|
1066
1080
|
menuItemsCount: number;
|
|
1067
1081
|
sectionHeaderCount: number;
|
|
1068
1082
|
}) => number;
|
|
1083
|
+
const calculateHeightWithTallRows: ({ menuItemsCount, sectionHeaderCount, tallMenuItemsCount, maxBaseRows, }: {
|
|
1084
|
+
menuItemsCount: number;
|
|
1085
|
+
sectionHeaderCount: number;
|
|
1086
|
+
tallMenuItemsCount: number;
|
|
1087
|
+
/** Maximum number of base-height rows to show before capping */
|
|
1088
|
+
maxBaseRows: number;
|
|
1089
|
+
}) => number;
|
|
1090
|
+
const getMenuMetrics: <T extends string>(items: Array<MenuItem<T> | ScoredMenuItem<T>>) => {
|
|
1091
|
+
sectionHeaderCount: number;
|
|
1092
|
+
menuItemsCount: number;
|
|
1093
|
+
tallMenuItemsCount: number;
|
|
1094
|
+
};
|
|
1069
1095
|
const normalizeTargetIndex: (index: number, position: "above" | "below") => number;
|
|
1070
1096
|
}
|
|
1071
1097
|
|
|
@@ -1093,6 +1119,11 @@ interface CollectionProps<T, M extends string = string> {
|
|
|
1093
1119
|
getHref?: (item: T) => string;
|
|
1094
1120
|
getExpanded?: (item: T) => boolean | undefined;
|
|
1095
1121
|
getPlaceholder?: (item: T) => string;
|
|
1122
|
+
/**
|
|
1123
|
+
* When starting a rename, select only the portion before
|
|
1124
|
+
* the last '.' (keeping the extension unselected). Defaults to false.
|
|
1125
|
+
*/
|
|
1126
|
+
renameSelectsBeforeDot?: boolean;
|
|
1096
1127
|
/**
|
|
1097
1128
|
* Whether directories should be expandable.
|
|
1098
1129
|
* @default true
|
|
@@ -1111,6 +1142,11 @@ interface CollectionProps<T, M extends string = string> {
|
|
|
1111
1142
|
renderDetail?: (item: T, selected: boolean) => React__default.ReactNode;
|
|
1112
1143
|
/** Optional right-side content renderer for each item */
|
|
1113
1144
|
renderRight?: (item: T, selected: boolean) => React__default.ReactNode;
|
|
1145
|
+
/**
|
|
1146
|
+
* Number of lines to display for detail text when rendered below grid items.
|
|
1147
|
+
* @default 1
|
|
1148
|
+
*/
|
|
1149
|
+
detailLineClamp?: number;
|
|
1114
1150
|
/** Callback when selection changes. If not provided, selection will be disabled. */
|
|
1115
1151
|
onSelectionChange?: (selectedItemIds: string[], event?: ListView.ClickInfo) => void;
|
|
1116
1152
|
scrollable?: boolean;
|
|
@@ -1311,6 +1347,7 @@ type BaseComboboxProps<T extends string> = {
|
|
|
1311
1347
|
loading?: boolean;
|
|
1312
1348
|
placeholder?: string;
|
|
1313
1349
|
items: MenuItem<T>[];
|
|
1350
|
+
icon?: MenuItemIcon;
|
|
1314
1351
|
onFocus?: (event: React__default.FocusEvent<HTMLInputElement>) => void;
|
|
1315
1352
|
onDeleteWhenEmpty?: () => void;
|
|
1316
1353
|
size?: InputFieldSize;
|
|
@@ -1361,6 +1398,10 @@ interface ComboboxMenuProps<T extends string> {
|
|
|
1361
1398
|
indented?: boolean;
|
|
1362
1399
|
/** @default right */
|
|
1363
1400
|
iconPosition?: "left" | "right";
|
|
1401
|
+
/** Optional fixed row height for items (e.g., to accommodate descriptions) */
|
|
1402
|
+
itemHeight?: number;
|
|
1403
|
+
/** Optional per-item height resolver */
|
|
1404
|
+
getRowHeightForItem?: (item: ScoredMenuItem<T>, index: number) => number;
|
|
1364
1405
|
}
|
|
1365
1406
|
declare const ComboboxMenu: <T extends string>(props: ComboboxMenuProps<T> & React__default.RefAttributes<IVirtualizedList>) => React__default.ReactElement<any> | null;
|
|
1366
1407
|
|
|
@@ -1481,6 +1522,11 @@ type PanelLayoutState = {
|
|
|
1481
1522
|
};
|
|
1482
1523
|
type RenderPanel<TabValue extends string> = ReactNode | ((props: {
|
|
1483
1524
|
activeTabValue: TabValue;
|
|
1525
|
+
/**
|
|
1526
|
+
* When the layout is using a drawer (mobile), this will collapse
|
|
1527
|
+
* the current sidebar. It may be undefined for panel layouts.
|
|
1528
|
+
*/
|
|
1529
|
+
closeSidebar?: () => void;
|
|
1484
1530
|
}) => ReactNode);
|
|
1485
1531
|
type LayoutProps<LeftTab extends string = string, RightTab extends string = string> = {
|
|
1486
1532
|
leftPanel: ReactNode;
|
|
@@ -1686,6 +1732,7 @@ type GridViewContextValue = {
|
|
|
1686
1732
|
disabled: boolean;
|
|
1687
1733
|
gap: number;
|
|
1688
1734
|
alwaysShowSubtitles: boolean;
|
|
1735
|
+
descriptionLineClamp: number;
|
|
1689
1736
|
};
|
|
1690
1737
|
interface GridViewRootProps extends Partial<GridViewContextValue> {
|
|
1691
1738
|
children: ReactNode;
|
|
@@ -1700,6 +1747,7 @@ interface GridViewRootProps extends Partial<GridViewContextValue> {
|
|
|
1700
1747
|
renderEmptyState?: () => ReactNode;
|
|
1701
1748
|
contentClassName?: string;
|
|
1702
1749
|
alwaysShowSubtitles?: boolean;
|
|
1750
|
+
descriptionLineClamp?: number;
|
|
1703
1751
|
}
|
|
1704
1752
|
declare function GridViewSection({ children, className, renderEmptyState, }: {
|
|
1705
1753
|
children?: ReactNode;
|
|
@@ -2088,6 +2136,13 @@ interface Props$7 {
|
|
|
2088
2136
|
}
|
|
2089
2137
|
declare const ScrollArea: React$1.NamedExoticComponent<Props$7>;
|
|
2090
2138
|
|
|
2139
|
+
declare function ScrollArea2({ children, className, viewportClassName, orientation, }: {
|
|
2140
|
+
children: React$1.ReactNode;
|
|
2141
|
+
className?: string;
|
|
2142
|
+
viewportClassName?: string;
|
|
2143
|
+
orientation?: "vertical" | "horizontal" | "both";
|
|
2144
|
+
}): React$1.JSX.Element;
|
|
2145
|
+
|
|
2091
2146
|
type SectionHeaderProps = {
|
|
2092
2147
|
style?: CSSProperties;
|
|
2093
2148
|
className?: string;
|
|
@@ -2233,7 +2288,7 @@ interface RootProps {
|
|
|
2233
2288
|
declare function SortableItem<TElement extends HTMLElement>({ id, disabled, children, }: {
|
|
2234
2289
|
id: UniqueIdentifier;
|
|
2235
2290
|
disabled?: boolean;
|
|
2236
|
-
children: (props: ItemChildrenProps<TElement>, extraProps:
|
|
2291
|
+
children: (props: ItemChildrenProps<TElement>, extraProps: ItemChildrenExtraProps) => React$1.ReactNode;
|
|
2237
2292
|
}): React$1.ReactNode;
|
|
2238
2293
|
declare function SortableRoot_({ id: idProp, keys: keysProp, onMoveItem, onIsDraggingChange, renderOverlay, acceptsFromList, acceptsDrop, axis, children, getDropTargetParentIndex, sharedDragProps, containerRef, itemHitSlop, }: RootProps): React$1.JSX.Element;
|
|
2239
2294
|
interface SortableProps<TItem, TElement extends HTMLElement> extends Omit<RootProps, "children" | "keys" | "renderOverlay"> {
|
|
@@ -2347,6 +2402,7 @@ type TreeRowBaseProps = {
|
|
|
2347
2402
|
icon?: Exclude<ReactNode, string> | IconName;
|
|
2348
2403
|
expanded?: boolean;
|
|
2349
2404
|
chevronClassName?: string;
|
|
2405
|
+
chevronAs?: React__default.ElementType;
|
|
2350
2406
|
onClickChevron?: ({ altKey }: {
|
|
2351
2407
|
altKey: boolean;
|
|
2352
2408
|
}) => void;
|
|
@@ -2378,6 +2434,15 @@ type UserPointerProps = {
|
|
|
2378
2434
|
backgroundColor?: string;
|
|
2379
2435
|
style?: React__default.CSSProperties;
|
|
2380
2436
|
className?: string;
|
|
2437
|
+
/**
|
|
2438
|
+
* Whether to render the pointer icon. Useful for contexts that only need the
|
|
2439
|
+
* name tag styling/positioning without the icon.
|
|
2440
|
+
*/
|
|
2441
|
+
showPointerIcon?: boolean;
|
|
2442
|
+
/** Controls the shape of the name tag */
|
|
2443
|
+
labelVariant?: "rounded" | "rectangle";
|
|
2444
|
+
labelSize?: "small" | "medium";
|
|
2445
|
+
bordered?: boolean;
|
|
2381
2446
|
};
|
|
2382
2447
|
declare const UserPointer: React__default.NamedExoticComponent<UserPointerProps>;
|
|
2383
2448
|
|
|
@@ -2423,6 +2488,15 @@ type SideOptions = {
|
|
|
2423
2488
|
};
|
|
2424
2489
|
declare const WorkspaceLayout: <LeftTab extends string = string, RightTab extends string = string>(props: WorkspaceLayoutProps<LeftTab, RightTab> & React__default.RefAttributes<WorkspaceLayoutRef>) => React__default.ReactElement<any> | null;
|
|
2425
2490
|
|
|
2491
|
+
type WorkspaceSideContextValue = {
|
|
2492
|
+
/**
|
|
2493
|
+
* Collapses the current sidebar when available (e.g., in drawer/mobile layout).
|
|
2494
|
+
*/
|
|
2495
|
+
closeSidebar?: () => void;
|
|
2496
|
+
};
|
|
2497
|
+
declare const WorkspaceSideProvider: React$1.Provider<WorkspaceSideContextValue>;
|
|
2498
|
+
declare function useWorkspaceSide(): WorkspaceSideContextValue;
|
|
2499
|
+
|
|
2426
2500
|
type LinkComponent = React__default.ComponentType<React__default.ComponentProps<"a">>;
|
|
2427
2501
|
declare const LinkComponentProvider: React__default.Provider<LinkComponent | undefined>;
|
|
2428
2502
|
declare const useLinkComponent: () => "a" | LinkComponent;
|
|
@@ -2460,7 +2534,7 @@ type DialogContextValue = {
|
|
|
2460
2534
|
type BaseDialogContents = {
|
|
2461
2535
|
style?: React__default.CSSProperties;
|
|
2462
2536
|
className?: string;
|
|
2463
|
-
title:
|
|
2537
|
+
title: ReactNode;
|
|
2464
2538
|
description?: ReactNode;
|
|
2465
2539
|
};
|
|
2466
2540
|
declare const DialogProvider: ({ children, }: {
|
|
@@ -2593,6 +2667,8 @@ type UseThemeReturnType = "dark" | "light";
|
|
|
2593
2667
|
*/
|
|
2594
2668
|
declare function useTheme(): UseThemeReturnType;
|
|
2595
2669
|
|
|
2670
|
+
declare const proseTheme = "n-prose n-prose-sm n-max-w-none [[data-theme='dark']_&]:n-prose-invert prose-a:n-text-blue-600";
|
|
2671
|
+
|
|
2596
2672
|
type ClassNameItem = string | number | BigInt | boolean | null | undefined;
|
|
2597
2673
|
type Category = "text" | "color" | "font" | "flex" | "position" | "textAlign" | "rounded";
|
|
2598
2674
|
type Options = {
|
|
@@ -2848,4 +2924,4 @@ type ToolbarDrawerProps = {
|
|
|
2848
2924
|
};
|
|
2849
2925
|
declare const ToolbarDrawer: React__default.NamedExoticComponent<ToolbarDrawerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2850
2926
|
|
|
2851
|
-
export { AIAssistantInput, AIAssistantLayout, AIAssistantLoadingIndicator, type AcceptsDrop, type AcceptsDropOptions, type AcceptsFromList, ActionMenu, type ActivityIconSemanticColor, ActivityIndicator, ActivityLog, type ActivityLogItem, 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, 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, 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, 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, validateDropIndicator, withDragProvider, withSeparatorElements };
|
|
2927
|
+
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 };
|