@noya-app/noya-designsystem 0.0.7 → 0.0.8
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 +7 -0
- package/dist/index.d.mts +72 -3
- package/dist/index.d.ts +72 -3
- package/dist/index.js +675 -10789
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +301 -10417
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
- package/src/components/ArrayController.tsx +168 -0
- package/src/components/InspectorPrimitives.tsx +139 -0
- package/src/hooks/__tests__/mergeEventHandlers.test.ts +10 -9
- package/src/index.tsx +4 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -5,13 +5,13 @@ CLI tsup v8.0.1
|
|
|
5
5
|
CLI Target: esnext
|
|
6
6
|
CJS Build start
|
|
7
7
|
ESM Build start
|
|
8
|
+
CJS dist/index.js 183.08 KB
|
|
9
|
+
CJS dist/index.js.map 366.48 KB
|
|
10
|
+
CJS ⚡️ Build success in 48ms
|
|
11
|
+
ESM dist/index.mjs 166.96 KB
|
|
12
|
+
ESM dist/index.mjs.map 365.59 KB
|
|
13
|
+
ESM ⚡️ Build success in 48ms
|
|
8
14
|
DTS Build start
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
ESM dist/index.mjs 750.45 KB
|
|
13
|
-
ESM dist/index.mjs.map 1.12 MB
|
|
14
|
-
ESM ⚡️ Build success in 362ms
|
|
15
|
-
DTS ⚡️ Build success in 5235ms
|
|
16
|
-
DTS dist/index.d.ts 48.78 KB
|
|
17
|
-
DTS dist/index.d.mts 48.78 KB
|
|
15
|
+
DTS ⚡️ Build success in 5132ms
|
|
16
|
+
DTS dist/index.d.ts 52.64 KB
|
|
17
|
+
DTS dist/index.d.mts 52.64 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -913,7 +913,7 @@ interface Props$1 extends StyleProps {
|
|
|
913
913
|
children: ReactNode;
|
|
914
914
|
onClick?: () => void;
|
|
915
915
|
}
|
|
916
|
-
declare const Text: (props: Props$1 & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
916
|
+
declare const Text$1: (props: Props$1 & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
917
917
|
type PresetProps = Omit<Props$1, 'variant'>;
|
|
918
918
|
declare const Heading1: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
919
919
|
declare const Heading2: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
@@ -991,7 +991,7 @@ declare const DesignSystemConfigurationProvider: (props: {
|
|
|
991
991
|
declare function useDesignSystemConfiguration(): DesignSystemConfigurationContextValue;
|
|
992
992
|
declare function useDesignSystemTheme(): styled_components.DefaultTheme;
|
|
993
993
|
|
|
994
|
-
declare const Row: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
994
|
+
declare const Row$1: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
995
995
|
type DialogContextValue = {
|
|
996
996
|
openInputDialog(title: string, inputValue?: string): Promise<string | undefined>;
|
|
997
997
|
containsElement(element: HTMLElement): boolean;
|
|
@@ -1179,9 +1179,78 @@ declare function sketchColorToRgbaString(value: Sketch.Color): string;
|
|
|
1179
1179
|
declare function rgbaToSketchColor(value: RgbaColor): Sketch.Color;
|
|
1180
1180
|
declare function sketchColorToHex(value: Sketch.Color): string;
|
|
1181
1181
|
|
|
1182
|
+
declare const Section: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1183
|
+
padding?: CSSProperties["padding"];
|
|
1184
|
+
gap?: CSSProperties["gap"];
|
|
1185
|
+
}, never>;
|
|
1186
|
+
declare const SectionHeader: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1187
|
+
declare const Title: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1188
|
+
textStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1189
|
+
}, never>;
|
|
1190
|
+
declare const Row: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1191
|
+
gap?: CSSProperties["gap"];
|
|
1192
|
+
}, never>;
|
|
1193
|
+
declare const Column: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1194
|
+
declare const Checkbox: styled_components.StyledComponent<"input", styled_components.DefaultTheme, {}, never>;
|
|
1195
|
+
declare const Text: styled_components.StyledComponent<"span", styled_components.DefaultTheme, {}, never>;
|
|
1196
|
+
declare const VerticalSeparator: () => React__default.JSX.Element;
|
|
1197
|
+
declare const HorizontalSeparator: () => React__default.JSX.Element;
|
|
1198
|
+
declare const RowLabel: styled_components.StyledComponent<"span", styled_components.DefaultTheme, {
|
|
1199
|
+
textStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1200
|
+
}, never>;
|
|
1201
|
+
declare const LabeledRow: (props: {
|
|
1202
|
+
id?: string | undefined;
|
|
1203
|
+
children: ReactNode;
|
|
1204
|
+
label: string;
|
|
1205
|
+
labelTextStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1206
|
+
gap?: CSSProperties["gap"];
|
|
1207
|
+
right?: ReactNode;
|
|
1208
|
+
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1209
|
+
declare const LabeledSliderRow: (props: {
|
|
1210
|
+
children: ReactNode;
|
|
1211
|
+
label: string;
|
|
1212
|
+
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1213
|
+
|
|
1214
|
+
declare const InspectorPrimitives_Checkbox: typeof Checkbox;
|
|
1215
|
+
declare const InspectorPrimitives_Column: typeof Column;
|
|
1216
|
+
declare const InspectorPrimitives_HorizontalSeparator: typeof HorizontalSeparator;
|
|
1217
|
+
declare const InspectorPrimitives_LabeledRow: typeof LabeledRow;
|
|
1218
|
+
declare const InspectorPrimitives_LabeledSliderRow: typeof LabeledSliderRow;
|
|
1219
|
+
declare const InspectorPrimitives_Row: typeof Row;
|
|
1220
|
+
declare const InspectorPrimitives_RowLabel: typeof RowLabel;
|
|
1221
|
+
declare const InspectorPrimitives_Section: typeof Section;
|
|
1222
|
+
declare const InspectorPrimitives_SectionHeader: typeof SectionHeader;
|
|
1223
|
+
declare const InspectorPrimitives_Text: typeof Text;
|
|
1224
|
+
declare const InspectorPrimitives_Title: typeof Title;
|
|
1225
|
+
declare const InspectorPrimitives_VerticalSeparator: typeof VerticalSeparator;
|
|
1226
|
+
declare namespace InspectorPrimitives {
|
|
1227
|
+
export { InspectorPrimitives_Checkbox as Checkbox, InspectorPrimitives_Column as Column, InspectorPrimitives_HorizontalSeparator as HorizontalSeparator, InspectorPrimitives_LabeledRow as LabeledRow, InspectorPrimitives_LabeledSliderRow as LabeledSliderRow, InspectorPrimitives_Row as Row, InspectorPrimitives_RowLabel as RowLabel, InspectorPrimitives_Section as Section, InspectorPrimitives_SectionHeader as SectionHeader, InspectorPrimitives_Text as Text, InspectorPrimitives_Title as Title, InspectorPrimitives_VerticalSeparator as VerticalSeparator };
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
interface ArrayControllerProps<Item> {
|
|
1231
|
+
id: string;
|
|
1232
|
+
items: Item[];
|
|
1233
|
+
title: ReactNode;
|
|
1234
|
+
sortable?: boolean;
|
|
1235
|
+
reversed?: boolean;
|
|
1236
|
+
expanded?: boolean;
|
|
1237
|
+
getKey?: (item: Item) => string;
|
|
1238
|
+
onMoveItem?: (sourceIndex: number, destinationIndex: number) => void;
|
|
1239
|
+
onClickPlus?: () => void;
|
|
1240
|
+
onClickTrash?: () => void;
|
|
1241
|
+
onClickExpand?: () => void;
|
|
1242
|
+
renderItem: (props: {
|
|
1243
|
+
item: Item;
|
|
1244
|
+
index: number;
|
|
1245
|
+
}) => ReactNode;
|
|
1246
|
+
renderExpandedContent?: () => ReactNode;
|
|
1247
|
+
padding?: number;
|
|
1248
|
+
}
|
|
1249
|
+
declare const ArrayController: <Item>(props: ArrayControllerProps<Item>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1250
|
+
|
|
1182
1251
|
declare module "react" {
|
|
1183
1252
|
function memo<A, B>(Component: (props: A) => B): (props: A) => React.ReactElement | null;
|
|
1184
1253
|
function forwardRef<T, P = {}>(render: (props: P, ref: React.ForwardedRef<T>) => React.ReactElement | null): (props: P & React.RefAttributes<T>) => React.ReactElement | null;
|
|
1185
1254
|
}
|
|
1186
1255
|
|
|
1187
|
-
export { ActivityIndicator, Avatar, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, Dialog, type DialogContextValue, DialogProvider, Divider, DividerVertical, type DropValidator, DropdownMenu, type EditableRowProps, type EventName, type ExtractMenuItemType, FillInputField, FillPreviewBackground, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, type IScoredItem, type IToken, type IVirtualizedList, IconButton, type ImageDataContextValue, ImageDataProvider, InputElement, InputField, type InputFieldSize, InputFieldWithCompletions, 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 ReactDOMEventHandlers, type ReactEventHandlers, type RegularMenuItem, type RelativeDropPosition, Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, type SketchPattern, Slider, Small, Sortable, Spacer, Stack, type StackBreakpointList, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Text, type TextBreakpointList, type Theme, type ThemeColorName, Toast, ToastProvider, Tooltip, TreeView, createSectionedMenu, dark as darkTheme, fuzzyFilter, fuzzyScore, fuzzyTokenize, getGradientBackground, isLeftButtonClicked, isRightButtonClicked, lightTheme, mediaQuery, mergeEventHandlers, normalizeListIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|
|
1256
|
+
export { ActivityIndicator, ArrayController, type ArrayControllerProps, Avatar, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, Dialog, type DialogContextValue, DialogProvider, Divider, DividerVertical, type DropValidator, DropdownMenu, type EditableRowProps, type EventName, type ExtractMenuItemType, FillInputField, FillPreviewBackground, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, 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 ReactDOMEventHandlers, type ReactEventHandlers, type RegularMenuItem, type RelativeDropPosition, Row$1 as Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, 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, isLeftButtonClicked, isRightButtonClicked, lightTheme, mediaQuery, mergeEventHandlers, normalizeListIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|
package/dist/index.d.ts
CHANGED
|
@@ -913,7 +913,7 @@ interface Props$1 extends StyleProps {
|
|
|
913
913
|
children: ReactNode;
|
|
914
914
|
onClick?: () => void;
|
|
915
915
|
}
|
|
916
|
-
declare const Text: (props: Props$1 & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
916
|
+
declare const Text$1: (props: Props$1 & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
917
917
|
type PresetProps = Omit<Props$1, 'variant'>;
|
|
918
918
|
declare const Heading1: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
919
919
|
declare const Heading2: (props: PresetProps & React__default.RefAttributes<HTMLElement>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
@@ -991,7 +991,7 @@ declare const DesignSystemConfigurationProvider: (props: {
|
|
|
991
991
|
declare function useDesignSystemConfiguration(): DesignSystemConfigurationContextValue;
|
|
992
992
|
declare function useDesignSystemTheme(): styled_components.DefaultTheme;
|
|
993
993
|
|
|
994
|
-
declare const Row: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
994
|
+
declare const Row$1: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
995
995
|
type DialogContextValue = {
|
|
996
996
|
openInputDialog(title: string, inputValue?: string): Promise<string | undefined>;
|
|
997
997
|
containsElement(element: HTMLElement): boolean;
|
|
@@ -1179,9 +1179,78 @@ declare function sketchColorToRgbaString(value: Sketch.Color): string;
|
|
|
1179
1179
|
declare function rgbaToSketchColor(value: RgbaColor): Sketch.Color;
|
|
1180
1180
|
declare function sketchColorToHex(value: Sketch.Color): string;
|
|
1181
1181
|
|
|
1182
|
+
declare const Section: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1183
|
+
padding?: CSSProperties["padding"];
|
|
1184
|
+
gap?: CSSProperties["gap"];
|
|
1185
|
+
}, never>;
|
|
1186
|
+
declare const SectionHeader: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1187
|
+
declare const Title: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1188
|
+
textStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1189
|
+
}, never>;
|
|
1190
|
+
declare const Row: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1191
|
+
gap?: CSSProperties["gap"];
|
|
1192
|
+
}, never>;
|
|
1193
|
+
declare const Column: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1194
|
+
declare const Checkbox: styled_components.StyledComponent<"input", styled_components.DefaultTheme, {}, never>;
|
|
1195
|
+
declare const Text: styled_components.StyledComponent<"span", styled_components.DefaultTheme, {}, never>;
|
|
1196
|
+
declare const VerticalSeparator: () => React__default.JSX.Element;
|
|
1197
|
+
declare const HorizontalSeparator: () => React__default.JSX.Element;
|
|
1198
|
+
declare const RowLabel: styled_components.StyledComponent<"span", styled_components.DefaultTheme, {
|
|
1199
|
+
textStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1200
|
+
}, never>;
|
|
1201
|
+
declare const LabeledRow: (props: {
|
|
1202
|
+
id?: string | undefined;
|
|
1203
|
+
children: ReactNode;
|
|
1204
|
+
label: string;
|
|
1205
|
+
labelTextStyle?: "small" | "heading3" | "heading4" | "heading5" | undefined;
|
|
1206
|
+
gap?: CSSProperties["gap"];
|
|
1207
|
+
right?: ReactNode;
|
|
1208
|
+
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1209
|
+
declare const LabeledSliderRow: (props: {
|
|
1210
|
+
children: ReactNode;
|
|
1211
|
+
label: string;
|
|
1212
|
+
}) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1213
|
+
|
|
1214
|
+
declare const InspectorPrimitives_Checkbox: typeof Checkbox;
|
|
1215
|
+
declare const InspectorPrimitives_Column: typeof Column;
|
|
1216
|
+
declare const InspectorPrimitives_HorizontalSeparator: typeof HorizontalSeparator;
|
|
1217
|
+
declare const InspectorPrimitives_LabeledRow: typeof LabeledRow;
|
|
1218
|
+
declare const InspectorPrimitives_LabeledSliderRow: typeof LabeledSliderRow;
|
|
1219
|
+
declare const InspectorPrimitives_Row: typeof Row;
|
|
1220
|
+
declare const InspectorPrimitives_RowLabel: typeof RowLabel;
|
|
1221
|
+
declare const InspectorPrimitives_Section: typeof Section;
|
|
1222
|
+
declare const InspectorPrimitives_SectionHeader: typeof SectionHeader;
|
|
1223
|
+
declare const InspectorPrimitives_Text: typeof Text;
|
|
1224
|
+
declare const InspectorPrimitives_Title: typeof Title;
|
|
1225
|
+
declare const InspectorPrimitives_VerticalSeparator: typeof VerticalSeparator;
|
|
1226
|
+
declare namespace InspectorPrimitives {
|
|
1227
|
+
export { InspectorPrimitives_Checkbox as Checkbox, InspectorPrimitives_Column as Column, InspectorPrimitives_HorizontalSeparator as HorizontalSeparator, InspectorPrimitives_LabeledRow as LabeledRow, InspectorPrimitives_LabeledSliderRow as LabeledSliderRow, InspectorPrimitives_Row as Row, InspectorPrimitives_RowLabel as RowLabel, InspectorPrimitives_Section as Section, InspectorPrimitives_SectionHeader as SectionHeader, InspectorPrimitives_Text as Text, InspectorPrimitives_Title as Title, InspectorPrimitives_VerticalSeparator as VerticalSeparator };
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
interface ArrayControllerProps<Item> {
|
|
1231
|
+
id: string;
|
|
1232
|
+
items: Item[];
|
|
1233
|
+
title: ReactNode;
|
|
1234
|
+
sortable?: boolean;
|
|
1235
|
+
reversed?: boolean;
|
|
1236
|
+
expanded?: boolean;
|
|
1237
|
+
getKey?: (item: Item) => string;
|
|
1238
|
+
onMoveItem?: (sourceIndex: number, destinationIndex: number) => void;
|
|
1239
|
+
onClickPlus?: () => void;
|
|
1240
|
+
onClickTrash?: () => void;
|
|
1241
|
+
onClickExpand?: () => void;
|
|
1242
|
+
renderItem: (props: {
|
|
1243
|
+
item: Item;
|
|
1244
|
+
index: number;
|
|
1245
|
+
}) => ReactNode;
|
|
1246
|
+
renderExpandedContent?: () => ReactNode;
|
|
1247
|
+
padding?: number;
|
|
1248
|
+
}
|
|
1249
|
+
declare const ArrayController: <Item>(props: ArrayControllerProps<Item>) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1250
|
+
|
|
1182
1251
|
declare module "react" {
|
|
1183
1252
|
function memo<A, B>(Component: (props: A) => B): (props: A) => React.ReactElement | null;
|
|
1184
1253
|
function forwardRef<T, P = {}>(render: (props: P, ref: React.ForwardedRef<T>) => React.ReactElement | null): (props: P & React.RefAttributes<T>) => React.ReactElement | null;
|
|
1185
1254
|
}
|
|
1186
1255
|
|
|
1187
|
-
export { ActivityIndicator, Avatar, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, Dialog, type DialogContextValue, DialogProvider, Divider, DividerVertical, type DropValidator, DropdownMenu, type EditableRowProps, type EventName, type ExtractMenuItemType, FillInputField, FillPreviewBackground, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, type IScoredItem, type IToken, type IVirtualizedList, IconButton, type ImageDataContextValue, ImageDataProvider, InputElement, InputField, type InputFieldSize, InputFieldWithCompletions, 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 ReactDOMEventHandlers, type ReactEventHandlers, type RegularMenuItem, type RelativeDropPosition, Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, type SketchPattern, Slider, Small, Sortable, Spacer, Stack, type StackBreakpointList, type SupportedCanvasUploadType, type SupportedImageUploadType, Switch, Text, type TextBreakpointList, type Theme, type ThemeColorName, Toast, ToastProvider, Tooltip, TreeView, createSectionedMenu, dark as darkTheme, fuzzyFilter, fuzzyScore, fuzzyTokenize, getGradientBackground, isLeftButtonClicked, isRightButtonClicked, lightTheme, mediaQuery, mergeEventHandlers, normalizeListIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|
|
1256
|
+
export { ActivityIndicator, ArrayController, type ArrayControllerProps, Avatar, Body, Button, ButtonElement, type ButtonRootProps, Chip, type ChipProps, CloseButtonContainer, type Colors, type CompletionItem, type CompletionListItem, CompletionMenu, type CompletionSectionHeader, CompletionToken, ContextMenu, type DesignSystemConfigurationContextValue, DesignSystemConfigurationProvider, Dialog, type DialogContextValue, DialogProvider, Divider, DividerVertical, type DropValidator, DropdownMenu, type EditableRowProps, type EventName, type ExtractMenuItemType, FillInputField, FillPreviewBackground, type GlobalInputBlurContextValue, GlobalInputBlurProvider, GradientPicker, type GridProps, GridView, type GridViewSize, Heading1, Heading2, Heading3, Heading4, Heading5, type HoverEvent, type HoverEvents, type HoverProps, type IDialog, 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 ReactDOMEventHandlers, type ReactEventHandlers, type RegularMenuItem, type RelativeDropPosition, Row$1 as Row, SEPARATOR_ITEM, SUPPORTED_CANVAS_UPLOAD_TYPES, SUPPORTED_IMAGE_UPLOAD_TYPES, ScrollArea, Select, SelectOption, 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, isLeftButtonClicked, isRightButtonClicked, lightTheme, mediaQuery, mergeEventHandlers, normalizeListIndex, rgbaToSketchColor, size, sketchColorToHex, sketchColorToRgba, sketchColorToRgbaString, useDesignSystemConfiguration, useDesignSystemTheme, useDialogContainsElement, useGlobalInputBlur, useGlobalInputBlurListener, useGlobalInputBlurTrigger, useHover, useImageData, useOpenInputDialog, usePlatform, usePlatformModKey, withSeparatorElements };
|