@noya-app/noya-designsystem 0.1.17 → 0.1.19
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 +9 -9
- package/CHANGELOG.md +14 -0
- package/dist/index.d.mts +77 -41
- package/dist/index.d.ts +77 -41
- package/dist/index.js +469 -136
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +450 -115
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/components/InspectorContainer.tsx +63 -0
- package/src/components/WorkspaceLayout.tsx +212 -0
- package/src/contexts/DesignSystemConfiguration.tsx +11 -3
- package/src/hooks/usePreservePanelSize.tsx +156 -0
- package/src/hooks/useWindowSize.tsx +26 -0
- package/src/index.tsx +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -18,13 +18,13 @@ import { useSortable } from '@dnd-kit/sortable';
|
|
|
18
18
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
19
19
|
import { RgbaColor } from '@noya-app/noya-colorpicker';
|
|
20
20
|
|
|
21
|
-
interface Props$
|
|
21
|
+
interface Props$i {
|
|
22
22
|
size?: number;
|
|
23
23
|
opacity?: number;
|
|
24
24
|
color?: string;
|
|
25
25
|
trackColor?: string;
|
|
26
26
|
}
|
|
27
|
-
declare const ActivityIndicator: (props: Props$
|
|
27
|
+
declare const ActivityIndicator: (props: Props$i) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
28
28
|
|
|
29
29
|
declare const Avatar: (props: {
|
|
30
30
|
image?: string | undefined;
|
|
@@ -270,7 +270,7 @@ declare const CloseButtonContainer: styled_components_dist_types.IStyledComponen
|
|
|
270
270
|
interface IDialog {
|
|
271
271
|
containsElement: (element: HTMLElement) => boolean;
|
|
272
272
|
}
|
|
273
|
-
interface Props$
|
|
273
|
+
interface Props$h {
|
|
274
274
|
title?: ReactNode;
|
|
275
275
|
description?: ReactNode;
|
|
276
276
|
children?: ReactNode;
|
|
@@ -280,8 +280,8 @@ interface Props$g {
|
|
|
280
280
|
onOpenAutoFocus?: ComponentProps<typeof DialogPrimitive.Content>["onOpenAutoFocus"];
|
|
281
281
|
closeOnInteractOutside?: boolean;
|
|
282
282
|
}
|
|
283
|
-
declare const Dialog: (props: Props$
|
|
284
|
-
declare const FullscreenDialog: (props: Props$
|
|
283
|
+
declare const Dialog: (props: Props$h & React__default.RefAttributes<IDialog>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
284
|
+
declare const FullscreenDialog: (props: Props$h & React__default.RefAttributes<IDialog>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
285
285
|
|
|
286
286
|
type DividerVariant = "normal" | "strong" | "subtle";
|
|
287
287
|
interface DividerProps {
|
|
@@ -316,22 +316,22 @@ type SketchPattern = {
|
|
|
316
316
|
patternTileScale: number;
|
|
317
317
|
};
|
|
318
318
|
|
|
319
|
-
interface Props$
|
|
319
|
+
interface Props$g {
|
|
320
320
|
id?: string;
|
|
321
321
|
value?: Sketch.Color | Sketch.Gradient | SketchPattern;
|
|
322
322
|
flex?: CSSProperties["flex"];
|
|
323
323
|
}
|
|
324
|
-
declare const FillInputField: (props: Props$
|
|
324
|
+
declare const FillInputField: (props: Props$g & React__default.RefAttributes<HTMLButtonElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
325
325
|
|
|
326
326
|
declare const PatternPreviewBackground: (props: {
|
|
327
327
|
fillType: Sketch.PatternFillType;
|
|
328
328
|
tileScale: number;
|
|
329
329
|
imageRef: string;
|
|
330
330
|
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
331
|
-
interface Props$
|
|
331
|
+
interface Props$f {
|
|
332
332
|
value?: Sketch.Color | Sketch.Gradient | SketchPattern;
|
|
333
333
|
}
|
|
334
|
-
declare const FillPreviewBackground: (props: Props$
|
|
334
|
+
declare const FillPreviewBackground: (props: Props$f) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
335
335
|
|
|
336
336
|
interface FloatingWindowProps {
|
|
337
337
|
title?: string;
|
|
@@ -352,7 +352,7 @@ interface FloatingWindowProps {
|
|
|
352
352
|
}
|
|
353
353
|
declare const FloatingWindow: React__default.FC<FloatingWindowProps>;
|
|
354
354
|
|
|
355
|
-
interface Props$
|
|
355
|
+
interface Props$e {
|
|
356
356
|
value: Sketch.GradientStop[];
|
|
357
357
|
selectedStop: number;
|
|
358
358
|
onChangeColor: (color: Sketch.Color) => void;
|
|
@@ -361,7 +361,7 @@ interface Props$d {
|
|
|
361
361
|
onDelete: () => void;
|
|
362
362
|
onSelectStop: (index: number) => void;
|
|
363
363
|
}
|
|
364
|
-
declare const GradientPicker: (props: Props$
|
|
364
|
+
declare const GradientPicker: (props: Props$e) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
365
365
|
|
|
366
366
|
type GridProps = {
|
|
367
367
|
columns?: string;
|
|
@@ -437,7 +437,7 @@ declare const IconButton: (props: Omit<ButtonRootProps, "children" | "size" | "f
|
|
|
437
437
|
size?: number | undefined;
|
|
438
438
|
} & React__default.RefAttributes<HTMLButtonElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
439
439
|
|
|
440
|
-
type Props$
|
|
440
|
+
type Props$d = {
|
|
441
441
|
id?: string;
|
|
442
442
|
style?: any;
|
|
443
443
|
className?: string;
|
|
@@ -455,13 +455,13 @@ type Props$c = {
|
|
|
455
455
|
onFocusChange?: (isFocused: boolean) => void;
|
|
456
456
|
onBlur?: FocusEventHandler;
|
|
457
457
|
} & Pick<InputHTMLAttributes<HTMLInputElement>, "autoComplete" | "autoCapitalize" | "autoCorrect" | "spellCheck" | "autoFocus">;
|
|
458
|
-
type ReadOnlyProps = Props$
|
|
458
|
+
type ReadOnlyProps = Props$d & {
|
|
459
459
|
readOnly: true;
|
|
460
460
|
};
|
|
461
|
-
type ControlledProps = Props$
|
|
461
|
+
type ControlledProps = Props$d & {
|
|
462
462
|
onChange: (value: string) => void;
|
|
463
463
|
};
|
|
464
|
-
type SubmittableProps = Props$
|
|
464
|
+
type SubmittableProps = Props$d & {
|
|
465
465
|
onSubmit: (value: string) => void;
|
|
466
466
|
allowSubmittingWithSameValue?: boolean;
|
|
467
467
|
submitAutomaticallyAfterDelay?: number;
|
|
@@ -724,7 +724,7 @@ interface CompletionMenuProps {
|
|
|
724
724
|
listSize: Size;
|
|
725
725
|
}
|
|
726
726
|
declare const CompletionMenu: (props: CompletionMenuProps & React__default.RefAttributes<IVirtualizedList>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
727
|
-
type Props$
|
|
727
|
+
type Props$c = {
|
|
728
728
|
loading?: boolean;
|
|
729
729
|
initialValue?: string;
|
|
730
730
|
placeholder?: string;
|
|
@@ -747,7 +747,17 @@ interface IInputFieldWithCompletions {
|
|
|
747
747
|
setValue(value: string): void;
|
|
748
748
|
selectAllInputText(): void;
|
|
749
749
|
}
|
|
750
|
-
declare const InputFieldWithCompletions: (props: Props$
|
|
750
|
+
declare const InputFieldWithCompletions: (props: Props$c & React__default.RefAttributes<IInputFieldWithCompletions>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
751
|
+
|
|
752
|
+
declare const InspectorContainer: (props: {
|
|
753
|
+
header?: React__default.ReactNode;
|
|
754
|
+
children?: React__default.ReactNode;
|
|
755
|
+
fallback?: React__default.ReactNode;
|
|
756
|
+
showDividers?: boolean | undefined;
|
|
757
|
+
id?: string | undefined;
|
|
758
|
+
className?: string | undefined;
|
|
759
|
+
style?: React__default.CSSProperties | undefined;
|
|
760
|
+
} & React__default.RefAttributes<HTMLDivElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
751
761
|
|
|
752
762
|
interface LabelRootProps {
|
|
753
763
|
label: ReactNode;
|
|
@@ -770,7 +780,7 @@ interface ContainerProps {
|
|
|
770
780
|
declare const LabeledElementView: (props: ContainerProps) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
771
781
|
|
|
772
782
|
type PopoverVariant = "normal" | "large";
|
|
773
|
-
interface Props$
|
|
783
|
+
interface Props$b extends Pick<ComponentProps<(typeof PopoverPrimitive)["Content"]>, "onOpenAutoFocus" | "onCloseAutoFocus" | "onPointerDownOutside" | "onInteractOutside" | "onFocusOutside" | "side"> {
|
|
774
784
|
children: React__default.ReactNode;
|
|
775
785
|
trigger: React__default.ReactNode;
|
|
776
786
|
variant?: PopoverVariant;
|
|
@@ -781,7 +791,7 @@ interface Props$a extends Pick<ComponentProps<(typeof PopoverPrimitive)["Content
|
|
|
781
791
|
onClickClose?: () => void;
|
|
782
792
|
showArrow?: boolean;
|
|
783
793
|
}
|
|
784
|
-
declare function Popover({ children, trigger, variant, closable, open, side, sideOffset, showArrow, onOpenChange, onOpenAutoFocus, onCloseAutoFocus, onPointerDownOutside, onInteractOutside, onFocusOutside, onClickClose, }: Props$
|
|
794
|
+
declare function Popover({ children, trigger, variant, closable, open, side, sideOffset, showArrow, onOpenChange, onOpenAutoFocus, onCloseAutoFocus, onPointerDownOutside, onInteractOutside, onFocusOutside, onClickClose, }: Props$b): React__default.JSX.Element;
|
|
785
795
|
|
|
786
796
|
type ProgressVariant = 'normal' | 'warning' | 'primary' | 'secondary';
|
|
787
797
|
declare function Progress({ value, width, height, flex, variant, }: {
|
|
@@ -799,7 +809,7 @@ interface ItemProps {
|
|
|
799
809
|
children: ReactNode;
|
|
800
810
|
disabled?: boolean;
|
|
801
811
|
}
|
|
802
|
-
interface Props$
|
|
812
|
+
interface Props$a {
|
|
803
813
|
id?: string;
|
|
804
814
|
value?: string;
|
|
805
815
|
onValueChange?: (value: string) => void;
|
|
@@ -808,14 +818,14 @@ interface Props$9 {
|
|
|
808
818
|
children: ReactNode;
|
|
809
819
|
}
|
|
810
820
|
declare namespace RadioGroup {
|
|
811
|
-
const Root: (props: Props$
|
|
821
|
+
const Root: (props: Props$a) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
812
822
|
const Item: (props: ItemProps & React__default.RefAttributes<HTMLButtonElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
813
823
|
}
|
|
814
824
|
|
|
815
|
-
interface Props$
|
|
825
|
+
interface Props$9 {
|
|
816
826
|
children?: ReactNode | ((scrollElementRef: HTMLDivElement) => ReactNode);
|
|
817
827
|
}
|
|
818
|
-
declare const ScrollArea: (props: Props$
|
|
828
|
+
declare const ScrollArea: (props: Props$9) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
819
829
|
|
|
820
830
|
interface SelectOptionProps<T extends string> {
|
|
821
831
|
value: T;
|
|
@@ -830,30 +840,30 @@ type ChildrenProps<T> = {
|
|
|
830
840
|
getTitle?: (option: T, index: number) => string;
|
|
831
841
|
onChange: (value: T) => void;
|
|
832
842
|
};
|
|
833
|
-
type Props$
|
|
843
|
+
type Props$8<T extends string> = ChildrenProps<T> & {
|
|
834
844
|
id: string;
|
|
835
845
|
flex?: CSSProperties["flex"];
|
|
836
846
|
value: T;
|
|
837
847
|
label?: string;
|
|
838
848
|
};
|
|
839
|
-
declare const Select: <T extends string>(props: Props$
|
|
849
|
+
declare const Select: <T extends string>(props: Props$8<T>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
840
850
|
|
|
841
|
-
interface Props$
|
|
851
|
+
interface Props$7 {
|
|
842
852
|
id?: string;
|
|
843
853
|
value: number;
|
|
844
854
|
onValueChange: (value: number) => void;
|
|
845
855
|
min: number;
|
|
846
856
|
max: number;
|
|
847
857
|
}
|
|
848
|
-
declare const Slider: ({ id, value, onValueChange, min, max, }: Props$
|
|
858
|
+
declare const Slider: ({ id, value, onValueChange, min, max, }: Props$7) => React__default.JSX.Element;
|
|
849
859
|
|
|
850
|
-
interface Props$
|
|
860
|
+
interface Props$6 {
|
|
851
861
|
size?: number | string;
|
|
852
862
|
inline?: boolean;
|
|
853
863
|
}
|
|
854
864
|
declare namespace Spacer {
|
|
855
|
-
const Vertical: (props: Props$
|
|
856
|
-
const Horizontal: (props: Props$
|
|
865
|
+
const Vertical: (props: Props$6 & React__default.RefAttributes<HTMLSpanElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
866
|
+
const Horizontal: (props: Props$6 & React__default.RefAttributes<HTMLSpanElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
857
867
|
}
|
|
858
868
|
|
|
859
869
|
type BreakpointKey = number | string;
|
|
@@ -918,7 +928,7 @@ interface StyleProps$1 {
|
|
|
918
928
|
backdropFilter?: CSSProperties["backdropFilter"];
|
|
919
929
|
}
|
|
920
930
|
type StackBreakpointList = BreakpointCollection<StyleProps$1>;
|
|
921
|
-
interface Props$
|
|
931
|
+
interface Props$5 extends StyleProps$1 {
|
|
922
932
|
id?: string;
|
|
923
933
|
as?: keyof ReactHTML;
|
|
924
934
|
className?: string;
|
|
@@ -928,19 +938,19 @@ interface Props$4 extends StyleProps$1 {
|
|
|
928
938
|
href?: string;
|
|
929
939
|
tabIndex?: number;
|
|
930
940
|
}
|
|
931
|
-
type StackProps = Omit<Props$
|
|
941
|
+
type StackProps = Omit<Props$5, "flexDirection">;
|
|
932
942
|
declare const Stack: {
|
|
933
943
|
V: (props: StackProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
934
944
|
H: (props: StackProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
935
945
|
};
|
|
936
946
|
|
|
937
947
|
type SwitchColorScheme = "normal" | "primary" | "secondary";
|
|
938
|
-
interface Props$
|
|
948
|
+
interface Props$4 {
|
|
939
949
|
value: boolean;
|
|
940
950
|
onChange: (value: boolean) => void;
|
|
941
951
|
colorScheme?: SwitchColorScheme;
|
|
942
952
|
}
|
|
943
|
-
declare const Switch: ({ value, onChange, colorScheme, }: Props$
|
|
953
|
+
declare const Switch: ({ value, onChange, colorScheme, }: Props$4) => React__default.JSX.Element;
|
|
944
954
|
|
|
945
955
|
type StyleProps = {
|
|
946
956
|
flex?: CSSProperties$1["flex"];
|
|
@@ -973,7 +983,7 @@ type StyleProps = {
|
|
|
973
983
|
cursor?: CSSProperties$1["cursor"];
|
|
974
984
|
};
|
|
975
985
|
type TextBreakpointList = BreakpointCollection<StyleProps>;
|
|
976
|
-
interface Props$
|
|
986
|
+
interface Props$3 extends StyleProps {
|
|
977
987
|
as?: keyof ReactHTML;
|
|
978
988
|
href?: string;
|
|
979
989
|
className?: string;
|
|
@@ -984,8 +994,8 @@ interface Props$2 extends StyleProps {
|
|
|
984
994
|
onClick?: () => void;
|
|
985
995
|
onDoubleClick?: () => void;
|
|
986
996
|
}
|
|
987
|
-
declare const Text$1: (props: Props$
|
|
988
|
-
type PresetProps = Omit<Props$
|
|
997
|
+
declare const Text$1: (props: Props$3 & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
998
|
+
type PresetProps = Omit<Props$3, "variant">;
|
|
989
999
|
declare const Heading1: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
990
1000
|
declare const Heading2: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
991
1001
|
declare const Heading3: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
@@ -1006,11 +1016,11 @@ declare const ToastProvider: ({ children }: {
|
|
|
1006
1016
|
children: React__default.ReactNode;
|
|
1007
1017
|
}) => React__default.JSX.Element;
|
|
1008
1018
|
|
|
1009
|
-
interface Props$
|
|
1019
|
+
interface Props$2 {
|
|
1010
1020
|
children: ReactNode;
|
|
1011
1021
|
content: ReactNode;
|
|
1012
1022
|
}
|
|
1013
|
-
declare const Tooltip: (props: Props$
|
|
1023
|
+
declare const Tooltip: (props: Props$2) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1014
1024
|
|
|
1015
1025
|
type TreeRowBaseProps = {
|
|
1016
1026
|
icon?: ReactNode;
|
|
@@ -1052,6 +1062,32 @@ declare namespace TreeView {
|
|
|
1052
1062
|
type RowProps<MenuItemType extends string> = TreeViewRowProps<MenuItemType>;
|
|
1053
1063
|
}
|
|
1054
1064
|
|
|
1065
|
+
type PanelLayoutState = {
|
|
1066
|
+
leftSidebarCollapsed: boolean;
|
|
1067
|
+
rightSidebarCollapsed: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
|
|
1070
|
+
interface Props$1 {
|
|
1071
|
+
autoSavePrefix?: string;
|
|
1072
|
+
leftSidebarContent?: React__default.ReactNode;
|
|
1073
|
+
children?: React__default.ReactNode;
|
|
1074
|
+
rightSidebarContent?: React__default.ReactNode;
|
|
1075
|
+
hasRightSidebar?: boolean;
|
|
1076
|
+
hasLeftSidebar?: boolean;
|
|
1077
|
+
onChangeLayoutState?: (layoutState: PanelLayoutState) => void;
|
|
1078
|
+
leftSidebarInitialSize?: number;
|
|
1079
|
+
rightSidebarInitialSize?: number;
|
|
1080
|
+
leftSidebarCanResize?: boolean;
|
|
1081
|
+
}
|
|
1082
|
+
type IWorkspaceLayout = {
|
|
1083
|
+
setLeftSidebarExpanded: (expanded: boolean) => void;
|
|
1084
|
+
setRightSidebarExpanded: (expanded: boolean) => void;
|
|
1085
|
+
toggleAllSidebars: () => void;
|
|
1086
|
+
toggleLeftSidebar: () => void;
|
|
1087
|
+
toggleRightSidebar: () => void;
|
|
1088
|
+
};
|
|
1089
|
+
declare const WorkspaceLayout: (props: Props$1 & React__default.RefAttributes<IWorkspaceLayout>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1090
|
+
|
|
1055
1091
|
declare const DesignSystemThemeProvider: (props: {
|
|
1056
1092
|
children: ReactNode;
|
|
1057
1093
|
theme?: typeof lightTheme | undefined;
|
|
@@ -1061,7 +1097,7 @@ type DesignSystemConfigurationContextValue = {
|
|
|
1061
1097
|
};
|
|
1062
1098
|
declare const DesignSystemConfigurationProvider: (props: {
|
|
1063
1099
|
children: ReactNode;
|
|
1064
|
-
theme?: typeof lightTheme | undefined;
|
|
1100
|
+
theme?: "dark" | "light" | typeof lightTheme | undefined;
|
|
1065
1101
|
platform?: PlatformName | undefined;
|
|
1066
1102
|
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1067
1103
|
declare function useDesignSystemConfiguration(): DesignSystemConfigurationContextValue;
|
|
@@ -1350,4 +1386,4 @@ declare module "react" {
|
|
|
1350
1386
|
function forwardRef<T, P = {}>(render: (props: P, ref: React.ForwardedRef<T>) => React.ReactElement | null): (props: P & React.RefAttributes<T>) => React.ReactElement | null;
|
|
1351
1387
|
}
|
|
1352
1388
|
|
|
1353
|
-
export { ActivityIndicator, ArrayController, type ArrayControllerProps, Avatar, AvatarStack, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, DesignSystemThemeProvider, Dialog, type DialogContextValue, DialogProvider, DimensionInput, type DimensionValue, Divider, DividerVertical, DraggableMenuButton, type DropValidator, DropdownMenu, type EditableRowProps, type ExtractMenuItemType, FillInputField, FillPreviewBackground, FloatingWindow, FloatingWindowProvider, FullscreenDialog, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, type IInputFieldWithCompletions, type IScoredItem, type IToken, type IVirtualizedList, IconButton, type ImageDataContextValue, ImageDataProvider, InputElement, InputField, type InputFieldSize, InputFieldWithCompletions, InspectorPrimitives, Italic, KeyboardShortcut, Label, LabeledElementView, type ListRowMarginType, type ListRowPosition, ListView, type MatchRange, type MenuConfig, type MenuItem, type MenuItemProps, type MenuProps, type Optional, PatternPreviewBackground, Popover, Progress, RadioGroup, type RegularMenuItem, type RelativeDropPosition, Row$1 as Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, type SetNumberMode, type SketchPattern, Slider, Small, Sortable, Spacer, Stack, type StackBreakpointList, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Text$1 as Text, type TextBreakpointList, type Theme, type ThemeColorName, Toast, ToastProvider, Tooltip, TreeView, createSectionedMenu, dark as darkTheme, fuzzyFilter, fuzzyScore, fuzzyTokenize, getGradientBackground, getNewValue, lightTheme, mediaQuery, normalizeListDestinationIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useCurrentFloatingWindowInternal, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useFloatingWindowManager, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|
|
1389
|
+
export { ActivityIndicator, ArrayController, type ArrayControllerProps, Avatar, AvatarStack, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, DesignSystemThemeProvider, Dialog, type DialogContextValue, DialogProvider, DimensionInput, type DimensionValue, Divider, DividerVertical, DraggableMenuButton, type DropValidator, DropdownMenu, type EditableRowProps, type ExtractMenuItemType, FillInputField, FillPreviewBackground, FloatingWindow, FloatingWindowProvider, FullscreenDialog, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, type IInputFieldWithCompletions, type IScoredItem, type IToken, type IVirtualizedList, type IWorkspaceLayout, IconButton, type ImageDataContextValue, ImageDataProvider, InputElement, InputField, type InputFieldSize, InputFieldWithCompletions, InspectorContainer, InspectorPrimitives, Italic, KeyboardShortcut, Label, LabeledElementView, type ListRowMarginType, type ListRowPosition, ListView, type MatchRange, type MenuConfig, type MenuItem, type MenuItemProps, type MenuProps, type Optional, PatternPreviewBackground, Popover, Progress, RadioGroup, type RegularMenuItem, type RelativeDropPosition, Row$1 as Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, type SetNumberMode, type SketchPattern, Slider, Small, Sortable, Spacer, Stack, type StackBreakpointList, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Text$1 as Text, type TextBreakpointList, type Theme, type ThemeColorName, Toast, ToastProvider, Tooltip, TreeView, WorkspaceLayout, createSectionedMenu, dark as darkTheme, fuzzyFilter, fuzzyScore, fuzzyTokenize, getGradientBackground, getNewValue, lightTheme, mediaQuery, normalizeListDestinationIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useCurrentFloatingWindowInternal, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useFloatingWindowManager, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|