@noya-app/noya-designsystem 0.1.16 → 0.1.18
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 +16 -0
- package/dist/index.d.mts +79 -41
- package/dist/index.d.ts +79 -41
- package/dist/index.js +471 -136
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -115
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
- 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/src/theme/dark.ts +2 -1
- package/src/theme/light.ts +2 -1
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;
|
|
@@ -143,6 +143,7 @@ declare const colors$1: {
|
|
|
143
143
|
};
|
|
144
144
|
sidebar: {
|
|
145
145
|
background: string;
|
|
146
|
+
backgroundTransparent: string;
|
|
146
147
|
};
|
|
147
148
|
popover: {
|
|
148
149
|
background: string;
|
|
@@ -269,7 +270,7 @@ declare const CloseButtonContainer: styled_components_dist_types.IStyledComponen
|
|
|
269
270
|
interface IDialog {
|
|
270
271
|
containsElement: (element: HTMLElement) => boolean;
|
|
271
272
|
}
|
|
272
|
-
interface Props$
|
|
273
|
+
interface Props$h {
|
|
273
274
|
title?: ReactNode;
|
|
274
275
|
description?: ReactNode;
|
|
275
276
|
children?: ReactNode;
|
|
@@ -279,8 +280,8 @@ interface Props$g {
|
|
|
279
280
|
onOpenAutoFocus?: ComponentProps<typeof DialogPrimitive.Content>["onOpenAutoFocus"];
|
|
280
281
|
closeOnInteractOutside?: boolean;
|
|
281
282
|
}
|
|
282
|
-
declare const Dialog: (props: Props$
|
|
283
|
-
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;
|
|
284
285
|
|
|
285
286
|
type DividerVariant = "normal" | "strong" | "subtle";
|
|
286
287
|
interface DividerProps {
|
|
@@ -315,22 +316,22 @@ type SketchPattern = {
|
|
|
315
316
|
patternTileScale: number;
|
|
316
317
|
};
|
|
317
318
|
|
|
318
|
-
interface Props$
|
|
319
|
+
interface Props$g {
|
|
319
320
|
id?: string;
|
|
320
321
|
value?: Sketch.Color | Sketch.Gradient | SketchPattern;
|
|
321
322
|
flex?: CSSProperties["flex"];
|
|
322
323
|
}
|
|
323
|
-
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;
|
|
324
325
|
|
|
325
326
|
declare const PatternPreviewBackground: (props: {
|
|
326
327
|
fillType: Sketch.PatternFillType;
|
|
327
328
|
tileScale: number;
|
|
328
329
|
imageRef: string;
|
|
329
330
|
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
330
|
-
interface Props$
|
|
331
|
+
interface Props$f {
|
|
331
332
|
value?: Sketch.Color | Sketch.Gradient | SketchPattern;
|
|
332
333
|
}
|
|
333
|
-
declare const FillPreviewBackground: (props: Props$
|
|
334
|
+
declare const FillPreviewBackground: (props: Props$f) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
334
335
|
|
|
335
336
|
interface FloatingWindowProps {
|
|
336
337
|
title?: string;
|
|
@@ -351,7 +352,7 @@ interface FloatingWindowProps {
|
|
|
351
352
|
}
|
|
352
353
|
declare const FloatingWindow: React__default.FC<FloatingWindowProps>;
|
|
353
354
|
|
|
354
|
-
interface Props$
|
|
355
|
+
interface Props$e {
|
|
355
356
|
value: Sketch.GradientStop[];
|
|
356
357
|
selectedStop: number;
|
|
357
358
|
onChangeColor: (color: Sketch.Color) => void;
|
|
@@ -360,7 +361,7 @@ interface Props$d {
|
|
|
360
361
|
onDelete: () => void;
|
|
361
362
|
onSelectStop: (index: number) => void;
|
|
362
363
|
}
|
|
363
|
-
declare const GradientPicker: (props: Props$
|
|
364
|
+
declare const GradientPicker: (props: Props$e) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
364
365
|
|
|
365
366
|
type GridProps = {
|
|
366
367
|
columns?: string;
|
|
@@ -436,7 +437,7 @@ declare const IconButton: (props: Omit<ButtonRootProps, "children" | "size" | "f
|
|
|
436
437
|
size?: number | undefined;
|
|
437
438
|
} & React__default.RefAttributes<HTMLButtonElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
438
439
|
|
|
439
|
-
type Props$
|
|
440
|
+
type Props$d = {
|
|
440
441
|
id?: string;
|
|
441
442
|
style?: any;
|
|
442
443
|
className?: string;
|
|
@@ -454,13 +455,13 @@ type Props$c = {
|
|
|
454
455
|
onFocusChange?: (isFocused: boolean) => void;
|
|
455
456
|
onBlur?: FocusEventHandler;
|
|
456
457
|
} & Pick<InputHTMLAttributes<HTMLInputElement>, "autoComplete" | "autoCapitalize" | "autoCorrect" | "spellCheck" | "autoFocus">;
|
|
457
|
-
type ReadOnlyProps = Props$
|
|
458
|
+
type ReadOnlyProps = Props$d & {
|
|
458
459
|
readOnly: true;
|
|
459
460
|
};
|
|
460
|
-
type ControlledProps = Props$
|
|
461
|
+
type ControlledProps = Props$d & {
|
|
461
462
|
onChange: (value: string) => void;
|
|
462
463
|
};
|
|
463
|
-
type SubmittableProps = Props$
|
|
464
|
+
type SubmittableProps = Props$d & {
|
|
464
465
|
onSubmit: (value: string) => void;
|
|
465
466
|
allowSubmittingWithSameValue?: boolean;
|
|
466
467
|
submitAutomaticallyAfterDelay?: number;
|
|
@@ -723,7 +724,7 @@ interface CompletionMenuProps {
|
|
|
723
724
|
listSize: Size;
|
|
724
725
|
}
|
|
725
726
|
declare const CompletionMenu: (props: CompletionMenuProps & React__default.RefAttributes<IVirtualizedList>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
726
|
-
type Props$
|
|
727
|
+
type Props$c = {
|
|
727
728
|
loading?: boolean;
|
|
728
729
|
initialValue?: string;
|
|
729
730
|
placeholder?: string;
|
|
@@ -746,7 +747,17 @@ interface IInputFieldWithCompletions {
|
|
|
746
747
|
setValue(value: string): void;
|
|
747
748
|
selectAllInputText(): void;
|
|
748
749
|
}
|
|
749
|
-
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;
|
|
750
761
|
|
|
751
762
|
interface LabelRootProps {
|
|
752
763
|
label: ReactNode;
|
|
@@ -769,7 +780,7 @@ interface ContainerProps {
|
|
|
769
780
|
declare const LabeledElementView: (props: ContainerProps) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
770
781
|
|
|
771
782
|
type PopoverVariant = "normal" | "large";
|
|
772
|
-
interface Props$
|
|
783
|
+
interface Props$b extends Pick<ComponentProps<(typeof PopoverPrimitive)["Content"]>, "onOpenAutoFocus" | "onCloseAutoFocus" | "onPointerDownOutside" | "onInteractOutside" | "onFocusOutside" | "side"> {
|
|
773
784
|
children: React__default.ReactNode;
|
|
774
785
|
trigger: React__default.ReactNode;
|
|
775
786
|
variant?: PopoverVariant;
|
|
@@ -780,7 +791,7 @@ interface Props$a extends Pick<ComponentProps<(typeof PopoverPrimitive)["Content
|
|
|
780
791
|
onClickClose?: () => void;
|
|
781
792
|
showArrow?: boolean;
|
|
782
793
|
}
|
|
783
|
-
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;
|
|
784
795
|
|
|
785
796
|
type ProgressVariant = 'normal' | 'warning' | 'primary' | 'secondary';
|
|
786
797
|
declare function Progress({ value, width, height, flex, variant, }: {
|
|
@@ -798,7 +809,7 @@ interface ItemProps {
|
|
|
798
809
|
children: ReactNode;
|
|
799
810
|
disabled?: boolean;
|
|
800
811
|
}
|
|
801
|
-
interface Props$
|
|
812
|
+
interface Props$a {
|
|
802
813
|
id?: string;
|
|
803
814
|
value?: string;
|
|
804
815
|
onValueChange?: (value: string) => void;
|
|
@@ -807,14 +818,14 @@ interface Props$9 {
|
|
|
807
818
|
children: ReactNode;
|
|
808
819
|
}
|
|
809
820
|
declare namespace RadioGroup {
|
|
810
|
-
const Root: (props: Props$
|
|
821
|
+
const Root: (props: Props$a) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
811
822
|
const Item: (props: ItemProps & React__default.RefAttributes<HTMLButtonElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
812
823
|
}
|
|
813
824
|
|
|
814
|
-
interface Props$
|
|
825
|
+
interface Props$9 {
|
|
815
826
|
children?: ReactNode | ((scrollElementRef: HTMLDivElement) => ReactNode);
|
|
816
827
|
}
|
|
817
|
-
declare const ScrollArea: (props: Props$
|
|
828
|
+
declare const ScrollArea: (props: Props$9) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
818
829
|
|
|
819
830
|
interface SelectOptionProps<T extends string> {
|
|
820
831
|
value: T;
|
|
@@ -829,30 +840,30 @@ type ChildrenProps<T> = {
|
|
|
829
840
|
getTitle?: (option: T, index: number) => string;
|
|
830
841
|
onChange: (value: T) => void;
|
|
831
842
|
};
|
|
832
|
-
type Props$
|
|
843
|
+
type Props$8<T extends string> = ChildrenProps<T> & {
|
|
833
844
|
id: string;
|
|
834
845
|
flex?: CSSProperties["flex"];
|
|
835
846
|
value: T;
|
|
836
847
|
label?: string;
|
|
837
848
|
};
|
|
838
|
-
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;
|
|
839
850
|
|
|
840
|
-
interface Props$
|
|
851
|
+
interface Props$7 {
|
|
841
852
|
id?: string;
|
|
842
853
|
value: number;
|
|
843
854
|
onValueChange: (value: number) => void;
|
|
844
855
|
min: number;
|
|
845
856
|
max: number;
|
|
846
857
|
}
|
|
847
|
-
declare const Slider: ({ id, value, onValueChange, min, max, }: Props$
|
|
858
|
+
declare const Slider: ({ id, value, onValueChange, min, max, }: Props$7) => React__default.JSX.Element;
|
|
848
859
|
|
|
849
|
-
interface Props$
|
|
860
|
+
interface Props$6 {
|
|
850
861
|
size?: number | string;
|
|
851
862
|
inline?: boolean;
|
|
852
863
|
}
|
|
853
864
|
declare namespace Spacer {
|
|
854
|
-
const Vertical: (props: Props$
|
|
855
|
-
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;
|
|
856
867
|
}
|
|
857
868
|
|
|
858
869
|
type BreakpointKey = number | string;
|
|
@@ -917,7 +928,7 @@ interface StyleProps$1 {
|
|
|
917
928
|
backdropFilter?: CSSProperties["backdropFilter"];
|
|
918
929
|
}
|
|
919
930
|
type StackBreakpointList = BreakpointCollection<StyleProps$1>;
|
|
920
|
-
interface Props$
|
|
931
|
+
interface Props$5 extends StyleProps$1 {
|
|
921
932
|
id?: string;
|
|
922
933
|
as?: keyof ReactHTML;
|
|
923
934
|
className?: string;
|
|
@@ -927,19 +938,19 @@ interface Props$4 extends StyleProps$1 {
|
|
|
927
938
|
href?: string;
|
|
928
939
|
tabIndex?: number;
|
|
929
940
|
}
|
|
930
|
-
type StackProps = Omit<Props$
|
|
941
|
+
type StackProps = Omit<Props$5, "flexDirection">;
|
|
931
942
|
declare const Stack: {
|
|
932
943
|
V: (props: StackProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
933
944
|
H: (props: StackProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
934
945
|
};
|
|
935
946
|
|
|
936
947
|
type SwitchColorScheme = "normal" | "primary" | "secondary";
|
|
937
|
-
interface Props$
|
|
948
|
+
interface Props$4 {
|
|
938
949
|
value: boolean;
|
|
939
950
|
onChange: (value: boolean) => void;
|
|
940
951
|
colorScheme?: SwitchColorScheme;
|
|
941
952
|
}
|
|
942
|
-
declare const Switch: ({ value, onChange, colorScheme, }: Props$
|
|
953
|
+
declare const Switch: ({ value, onChange, colorScheme, }: Props$4) => React__default.JSX.Element;
|
|
943
954
|
|
|
944
955
|
type StyleProps = {
|
|
945
956
|
flex?: CSSProperties$1["flex"];
|
|
@@ -972,7 +983,7 @@ type StyleProps = {
|
|
|
972
983
|
cursor?: CSSProperties$1["cursor"];
|
|
973
984
|
};
|
|
974
985
|
type TextBreakpointList = BreakpointCollection<StyleProps>;
|
|
975
|
-
interface Props$
|
|
986
|
+
interface Props$3 extends StyleProps {
|
|
976
987
|
as?: keyof ReactHTML;
|
|
977
988
|
href?: string;
|
|
978
989
|
className?: string;
|
|
@@ -983,8 +994,8 @@ interface Props$2 extends StyleProps {
|
|
|
983
994
|
onClick?: () => void;
|
|
984
995
|
onDoubleClick?: () => void;
|
|
985
996
|
}
|
|
986
|
-
declare const Text$1: (props: Props$
|
|
987
|
-
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">;
|
|
988
999
|
declare const Heading1: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
989
1000
|
declare const Heading2: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
990
1001
|
declare const Heading3: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
@@ -1005,11 +1016,11 @@ declare const ToastProvider: ({ children }: {
|
|
|
1005
1016
|
children: React__default.ReactNode;
|
|
1006
1017
|
}) => React__default.JSX.Element;
|
|
1007
1018
|
|
|
1008
|
-
interface Props$
|
|
1019
|
+
interface Props$2 {
|
|
1009
1020
|
children: ReactNode;
|
|
1010
1021
|
content: ReactNode;
|
|
1011
1022
|
}
|
|
1012
|
-
declare const Tooltip: (props: Props$
|
|
1023
|
+
declare const Tooltip: (props: Props$2) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1013
1024
|
|
|
1014
1025
|
type TreeRowBaseProps = {
|
|
1015
1026
|
icon?: ReactNode;
|
|
@@ -1051,6 +1062,32 @@ declare namespace TreeView {
|
|
|
1051
1062
|
type RowProps<MenuItemType extends string> = TreeViewRowProps<MenuItemType>;
|
|
1052
1063
|
}
|
|
1053
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
|
+
|
|
1054
1091
|
declare const DesignSystemThemeProvider: (props: {
|
|
1055
1092
|
children: ReactNode;
|
|
1056
1093
|
theme?: typeof lightTheme | undefined;
|
|
@@ -1060,7 +1097,7 @@ type DesignSystemConfigurationContextValue = {
|
|
|
1060
1097
|
};
|
|
1061
1098
|
declare const DesignSystemConfigurationProvider: (props: {
|
|
1062
1099
|
children: ReactNode;
|
|
1063
|
-
theme?: typeof lightTheme | undefined;
|
|
1100
|
+
theme?: "dark" | "light" | typeof lightTheme | undefined;
|
|
1064
1101
|
platform?: PlatformName | undefined;
|
|
1065
1102
|
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1066
1103
|
declare function useDesignSystemConfiguration(): DesignSystemConfigurationContextValue;
|
|
@@ -1217,6 +1254,7 @@ declare const colors: {
|
|
|
1217
1254
|
};
|
|
1218
1255
|
sidebar: {
|
|
1219
1256
|
background: string;
|
|
1257
|
+
backgroundTransparent: string;
|
|
1220
1258
|
};
|
|
1221
1259
|
popover: {
|
|
1222
1260
|
background: string;
|
|
@@ -1348,4 +1386,4 @@ declare module "react" {
|
|
|
1348
1386
|
function forwardRef<T, P = {}>(render: (props: P, ref: React.ForwardedRef<T>) => React.ReactElement | null): (props: P & React.RefAttributes<T>) => React.ReactElement | null;
|
|
1349
1387
|
}
|
|
1350
1388
|
|
|
1351
|
-
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 };
|