@skewedaspect/sleekspace-ui 0.6.0 → 0.7.1
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/dist/components/ColorPicker/SkColorPicker.vue.d.ts +29 -0
- package/dist/components/ColorPicker/index.d.ts +2 -0
- package/dist/components/ColorPicker/types.d.ts +4 -0
- package/dist/components/ContextMenu/SkContextMenu.vue.d.ts +25 -0
- package/dist/components/ContextMenu/SkContextMenuCheckboxItem.vue.d.ts +28 -0
- package/dist/components/ContextMenu/SkContextMenuItem.vue.d.ts +26 -0
- package/dist/components/ContextMenu/SkContextMenuLabel.vue.d.ts +17 -0
- package/dist/components/ContextMenu/SkContextMenuRadioGroup.vue.d.ts +26 -0
- package/dist/components/ContextMenu/SkContextMenuRadioItem.vue.d.ts +23 -0
- package/dist/components/ContextMenu/SkContextMenuSeparator.vue.d.ts +2 -0
- package/dist/components/ContextMenu/SkContextMenuSubmenu.vue.d.ts +24 -0
- package/dist/components/ContextMenu/index.d.ts +9 -0
- package/dist/components/ContextMenu/types.d.ts +2 -0
- package/dist/components/Dropdown/SkDropdown.vue.d.ts +1 -1
- package/dist/components/Dropdown/SkDropdownCheckboxItem.vue.d.ts +28 -0
- package/dist/components/Dropdown/SkDropdownMenuLabel.vue.d.ts +17 -0
- package/dist/components/Dropdown/SkDropdownRadioGroup.vue.d.ts +26 -0
- package/dist/components/Dropdown/SkDropdownRadioItem.vue.d.ts +23 -0
- package/dist/components/Dropdown/index.d.ts +4 -0
- package/dist/components/Popover/SkPopover.vue.d.ts +1 -1
- package/dist/components/ScrollArea/SkScrollArea.vue.d.ts +31 -0
- package/dist/components/ScrollArea/index.d.ts +2 -0
- package/dist/components/ScrollArea/types.d.ts +4 -0
- package/dist/components/Sidebar/SkSidebar.vue.d.ts +1 -1
- package/dist/components/Skeleton/SkSkeleton.vue.d.ts +1 -1
- package/dist/components/Splitter/SkSplitter.vue.d.ts +29 -0
- package/dist/components/Splitter/SkSplitterHandle.vue.d.ts +7 -0
- package/dist/components/Splitter/SkSplitterPanel.vue.d.ts +30 -0
- package/dist/components/Splitter/index.d.ts +4 -0
- package/dist/components/Splitter/types.d.ts +3 -0
- package/dist/components/Toolbar/SkToolbar.vue.d.ts +31 -0
- package/dist/components/Toolbar/SkToolbarButton.vue.d.ts +22 -0
- package/dist/components/Toolbar/SkToolbarSeparator.vue.d.ts +2 -0
- package/dist/components/Toolbar/SkToolbarToggleGroup.vue.d.ts +31 -0
- package/dist/components/Toolbar/SkToolbarToggleItem.vue.d.ts +23 -0
- package/dist/components/Toolbar/index.d.ts +6 -0
- package/dist/components/Toolbar/types.d.ts +5 -0
- package/dist/components/Tooltip/SkTooltip.vue.d.ts +1 -1
- package/dist/components/TreeView/SkTreeItem.vue.d.ts +39 -0
- package/dist/components/TreeView/SkTreeView.vue.d.ts +31 -0
- package/dist/components/TreeView/index.d.ts +3 -0
- package/dist/components/TreeView/types.d.ts +3 -0
- package/dist/index.d.ts +54 -0
- package/dist/sleekspace-ui.css +1215 -46
- package/dist/sleekspace-ui.es.js +16874 -7224
- package/dist/sleekspace-ui.umd.js +16855 -7205
- package/package.json +2 -1
- package/src/components/ColorPicker/SkColorPicker.vue +355 -0
- package/src/components/ColorPicker/index.ts +6 -0
- package/src/components/ColorPicker/types.ts +11 -0
- package/src/components/ContextMenu/SkContextMenu.vue +83 -0
- package/src/components/ContextMenu/SkContextMenuCheckboxItem.vue +72 -0
- package/src/components/ContextMenu/SkContextMenuItem.vue +49 -0
- package/src/components/ContextMenu/SkContextMenuLabel.vue +17 -0
- package/src/components/ContextMenu/SkContextMenuRadioGroup.vue +36 -0
- package/src/components/ContextMenu/SkContextMenuRadioItem.vue +53 -0
- package/src/components/ContextMenu/SkContextMenuSeparator.vue +21 -0
- package/src/components/ContextMenu/SkContextMenuSubmenu.vue +94 -0
- package/src/components/ContextMenu/index.ts +15 -0
- package/src/components/ContextMenu/types.ts +9 -0
- package/src/components/Dropdown/SkDropdown.vue +1 -1
- package/src/components/Dropdown/SkDropdownCheckboxItem.vue +72 -0
- package/src/components/Dropdown/SkDropdownMenuItem.vue +1 -1
- package/src/components/Dropdown/SkDropdownMenuLabel.vue +17 -0
- package/src/components/Dropdown/SkDropdownRadioGroup.vue +36 -0
- package/src/components/Dropdown/SkDropdownRadioItem.vue +53 -0
- package/src/components/Dropdown/SkDropdownSubmenu.vue +2 -2
- package/src/components/Dropdown/index.ts +4 -0
- package/src/components/ScrollArea/SkScrollArea.vue +87 -0
- package/src/components/ScrollArea/index.ts +8 -0
- package/src/components/ScrollArea/types.ts +11 -0
- package/src/components/Splitter/SkSplitter.vue +65 -0
- package/src/components/Splitter/SkSplitterHandle.vue +40 -0
- package/src/components/Splitter/SkSplitterPanel.vue +45 -0
- package/src/components/Splitter/index.ts +10 -0
- package/src/components/Splitter/types.ts +10 -0
- package/src/components/Toolbar/SkToolbar.vue +69 -0
- package/src/components/Toolbar/SkToolbarButton.vue +36 -0
- package/src/components/Toolbar/SkToolbarSeparator.vue +15 -0
- package/src/components/Toolbar/SkToolbarToggleGroup.vue +49 -0
- package/src/components/Toolbar/SkToolbarToggleItem.vue +37 -0
- package/src/components/Toolbar/index.ts +12 -0
- package/src/components/Toolbar/types.ts +12 -0
- package/src/components/TreeView/SkTreeItem.vue +84 -0
- package/src/components/TreeView/SkTreeView.vue +120 -0
- package/src/components/TreeView/index.ts +9 -0
- package/src/components/TreeView/types.ts +10 -0
- package/src/global.d.ts +20 -0
- package/src/index.ts +100 -0
- package/src/styles/components/_color-picker.scss +552 -0
- package/src/styles/components/_index.scss +5 -0
- package/src/styles/components/_menu.scss +52 -3
- package/src/styles/components/_scroll-area.scss +120 -0
- package/src/styles/components/_slider.scss +4 -4
- package/src/styles/components/_splitter.scss +136 -0
- package/src/styles/components/_toolbar.scss +296 -0
- package/src/styles/components/_tree-view.scss +187 -0
- package/web-types.json +1022 -122
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ComponentKind } from '../../types';
|
|
2
|
+
export type SkToolbarKind = ComponentKind;
|
|
3
|
+
export type SkToolbarOrientation = 'horizontal' | 'vertical';
|
|
4
|
+
export type SkToolbarToggleType = 'single' | 'multiple';
|
|
5
|
+
export type SkToolbarCorner = 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
|
|
@@ -67,8 +67,8 @@ declare const __VLS_component: import('vue').DefineComponent<SkTooltipComponentP
|
|
|
67
67
|
kind: ComponentKind;
|
|
68
68
|
variant: "solid" | "outline";
|
|
69
69
|
side: SkTooltipSide;
|
|
70
|
-
align: "start" | "center" | "end";
|
|
71
70
|
sideOffset: number;
|
|
71
|
+
align: "start" | "center" | "end";
|
|
72
72
|
showArrow: boolean;
|
|
73
73
|
delayDuration: number;
|
|
74
74
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FlattenedItem } from 'reka-ui';
|
|
2
|
+
export interface SkTreeItemComponentProps {
|
|
3
|
+
item: FlattenedItem<Record<string, unknown>>;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
showChevron?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
leading?(_: {
|
|
11
|
+
isExpanded: boolean;
|
|
12
|
+
isSelected: boolean;
|
|
13
|
+
}): any;
|
|
14
|
+
default?(_: {
|
|
15
|
+
isExpanded: boolean;
|
|
16
|
+
isSelected: boolean;
|
|
17
|
+
hasChildren: boolean;
|
|
18
|
+
level: number;
|
|
19
|
+
}): any;
|
|
20
|
+
trailing?(_: {
|
|
21
|
+
isExpanded: boolean;
|
|
22
|
+
isSelected: boolean;
|
|
23
|
+
}): any;
|
|
24
|
+
};
|
|
25
|
+
refs: {};
|
|
26
|
+
rootEl: any;
|
|
27
|
+
};
|
|
28
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
|
+
declare const __VLS_component: import('vue').DefineComponent<SkTreeItemComponentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SkTreeItemComponentProps> & Readonly<{}>, {
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
showChevron: boolean;
|
|
32
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SkTreeViewDefaultExpanded, SkTreeViewKind } from './types';
|
|
2
|
+
export interface SkTreeViewComponentProps {
|
|
3
|
+
items: T[];
|
|
4
|
+
getKey: (item: T) => string;
|
|
5
|
+
modelValue?: T | T[];
|
|
6
|
+
multiple?: boolean;
|
|
7
|
+
propagateSelect?: boolean;
|
|
8
|
+
kind?: SkTreeViewKind;
|
|
9
|
+
defaultExpanded?: SkTreeViewDefaultExpanded;
|
|
10
|
+
baseColor?: string;
|
|
11
|
+
textColor?: string;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: <T extends Record<string, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
14
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
15
|
+
readonly "onUpdate:modelValue"?: ((value: T | T[]) => any) | undefined;
|
|
16
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & SkTreeViewComponentProps & Partial<{}>> & import('vue').PublicProps;
|
|
17
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
18
|
+
attrs: any;
|
|
19
|
+
slots: {
|
|
20
|
+
default?(_: {
|
|
21
|
+
flattenItems: import('reka-ui').FlattenedItem<T>[];
|
|
22
|
+
}): any;
|
|
23
|
+
};
|
|
24
|
+
emit: (evt: "update:modelValue", value: T | T[]) => void;
|
|
25
|
+
}>) => import('vue').VNode & {
|
|
26
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
|
+
};
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_PrettifyLocal<T> = {
|
|
30
|
+
[K in keyof T]: T[K];
|
|
31
|
+
} & {};
|
package/dist/index.d.ts
CHANGED
|
@@ -11,10 +11,23 @@ import { default as SkButton, SkButtonComponentProps } from './components/Button
|
|
|
11
11
|
import { default as SkCard, SkCardComponentProps } from './components/Card/SkCard.vue';
|
|
12
12
|
import { default as SkCheckbox, SkCheckboxComponentProps } from './components/Checkbox/SkCheckbox.vue';
|
|
13
13
|
import { default as SkCollapsible, SkCollapsibleComponentProps } from './components/Collapsible/SkCollapsible.vue';
|
|
14
|
+
import { default as SkColorPicker, SkColorPickerComponentProps } from './components/ColorPicker/SkColorPicker.vue';
|
|
15
|
+
import { default as SkContextMenu, SkContextMenuComponentProps } from './components/ContextMenu/SkContextMenu.vue';
|
|
16
|
+
import { default as SkContextMenuCheckboxItem, SkContextMenuCheckboxItemComponentProps } from './components/ContextMenu/SkContextMenuCheckboxItem.vue';
|
|
17
|
+
import { default as SkContextMenuItem, SkContextMenuItemComponentProps } from './components/ContextMenu/SkContextMenuItem.vue';
|
|
18
|
+
import { default as SkContextMenuLabel } from './components/ContextMenu/SkContextMenuLabel.vue';
|
|
19
|
+
import { default as SkContextMenuRadioGroup, SkContextMenuRadioGroupComponentProps } from './components/ContextMenu/SkContextMenuRadioGroup.vue';
|
|
20
|
+
import { default as SkContextMenuRadioItem, SkContextMenuRadioItemComponentProps } from './components/ContextMenu/SkContextMenuRadioItem.vue';
|
|
21
|
+
import { default as SkContextMenuSeparator } from './components/ContextMenu/SkContextMenuSeparator.vue';
|
|
22
|
+
import { default as SkContextMenuSubmenu, SkContextMenuSubmenuComponentProps } from './components/ContextMenu/SkContextMenuSubmenu.vue';
|
|
14
23
|
import { default as SkDivider, SkDividerComponentProps } from './components/Divider/SkDivider.vue';
|
|
15
24
|
import { default as SkDropdown, SkDropdownComponentProps } from './components/Dropdown/SkDropdown.vue';
|
|
25
|
+
import { default as SkDropdownCheckboxItem, SkDropdownCheckboxItemComponentProps } from './components/Dropdown/SkDropdownCheckboxItem.vue';
|
|
26
|
+
import { default as SkDropdownMenuLabel } from './components/Dropdown/SkDropdownMenuLabel.vue';
|
|
16
27
|
import { default as SkDropdownMenuItem, SkDropdownMenuItemComponentProps } from './components/Dropdown/SkDropdownMenuItem.vue';
|
|
17
28
|
import { default as SkDropdownMenuSeparator } from './components/Dropdown/SkDropdownMenuSeparator.vue';
|
|
29
|
+
import { default as SkDropdownRadioGroup, SkDropdownRadioGroupComponentProps } from './components/Dropdown/SkDropdownRadioGroup.vue';
|
|
30
|
+
import { default as SkDropdownRadioItem, SkDropdownRadioItemComponentProps } from './components/Dropdown/SkDropdownRadioItem.vue';
|
|
18
31
|
import { default as SkDropdownSubmenu, SkDropdownSubmenuComponentProps } from './components/Dropdown/SkDropdownSubmenu.vue';
|
|
19
32
|
import { default as SkField, SkFieldComponentProps } from './components/Field/SkField.vue';
|
|
20
33
|
import { default as SkGroup, SkGroupComponentProps } from './components/Group/SkGroup.vue';
|
|
@@ -33,6 +46,7 @@ import { default as SkPopover, SkPopoverComponentProps } from './components/Popo
|
|
|
33
46
|
import { default as SkProgress, SkProgressComponentProps } from './components/Progress/SkProgress.vue';
|
|
34
47
|
import { default as SkRadio, SkRadioComponentProps } from './components/Radio/SkRadio.vue';
|
|
35
48
|
import { default as SkRadioGroup, SkRadioGroupComponentProps } from './components/Radio/SkRadioGroup.vue';
|
|
49
|
+
import { default as SkScrollArea, SkScrollAreaComponentProps } from './components/ScrollArea/SkScrollArea.vue';
|
|
36
50
|
import { default as SkSelect, SkSelectComponentProps } from './components/Select/SkSelect.vue';
|
|
37
51
|
import { default as SkSelectItem, SkSelectItemComponentProps } from './components/Select/SkSelectItem.vue';
|
|
38
52
|
import { default as SkSelectSeparator } from './components/Select/SkSelectSeparator.vue';
|
|
@@ -42,6 +56,9 @@ import { default as SkSidebarSection, SkSidebarSectionComponentProps } from './c
|
|
|
42
56
|
import { default as SkSkeleton, SkSkeletonComponentProps } from './components/Skeleton/SkSkeleton.vue';
|
|
43
57
|
import { default as SkSlider, SkSliderComponentProps } from './components/Slider/SkSlider.vue';
|
|
44
58
|
import { default as SkSpinner, SkSpinnerComponentProps } from './components/Spinner/SkSpinner.vue';
|
|
59
|
+
import { default as SkSplitter, SkSplitterComponentProps } from './components/Splitter/SkSplitter.vue';
|
|
60
|
+
import { default as SkSplitterHandle, SkSplitterHandleComponentProps } from './components/Splitter/SkSplitterHandle.vue';
|
|
61
|
+
import { default as SkSplitterPanel, SkSplitterPanelComponentProps } from './components/Splitter/SkSplitterPanel.vue';
|
|
45
62
|
import { default as SkSwitch, SkSwitchComponentProps } from './components/Switch/SkSwitch.vue';
|
|
46
63
|
import { default as SkTable, SkTableComponentProps } from './components/Table/SkTable.vue';
|
|
47
64
|
import { default as SkTab, SkTabComponentProps } from './components/Tabs/SkTab.vue';
|
|
@@ -53,8 +70,15 @@ import { default as SkTag, SkTagComponentProps } from './components/Tag/SkTag.vu
|
|
|
53
70
|
import { default as SkTagsInput, SkTagsInputComponentProps } from './components/TagsInput/SkTagsInput.vue';
|
|
54
71
|
import { default as SkTextarea, SkTextareaComponentProps } from './components/Textarea/SkTextarea.vue';
|
|
55
72
|
import { default as SkToastProvider, SkToastProviderComponentProps } from './components/Toast/SkToastProvider.vue';
|
|
73
|
+
import { default as SkToolbar, SkToolbarComponentProps } from './components/Toolbar/SkToolbar.vue';
|
|
74
|
+
import { default as SkToolbarButton, SkToolbarButtonComponentProps } from './components/Toolbar/SkToolbarButton.vue';
|
|
75
|
+
import { default as SkToolbarSeparator } from './components/Toolbar/SkToolbarSeparator.vue';
|
|
76
|
+
import { default as SkToolbarToggleGroup, SkToolbarToggleGroupComponentProps } from './components/Toolbar/SkToolbarToggleGroup.vue';
|
|
77
|
+
import { default as SkToolbarToggleItem, SkToolbarToggleItemComponentProps } from './components/Toolbar/SkToolbarToggleItem.vue';
|
|
56
78
|
import { default as SkTooltip, SkTooltipComponentProps } from './components/Tooltip/SkTooltip.vue';
|
|
57
79
|
import { default as SkTooltipProvider, SkTooltipProviderProps } from './components/Tooltip/SkTooltipProvider.vue';
|
|
80
|
+
import { default as SkTreeItem, SkTreeItemComponentProps } from './components/TreeView/SkTreeItem.vue';
|
|
81
|
+
import { default as SkTreeView, SkTreeViewComponentProps } from './components/TreeView/SkTreeView.vue';
|
|
58
82
|
import { default as SkTheme } from './components/Theme/SkTheme.vue';
|
|
59
83
|
export * from './types';
|
|
60
84
|
export * from './components/Accordion/types';
|
|
@@ -65,6 +89,8 @@ export * from './components/Button/types';
|
|
|
65
89
|
export * from './components/Card/types';
|
|
66
90
|
export * from './components/Checkbox/types';
|
|
67
91
|
export * from './components/Collapsible/types';
|
|
92
|
+
export * from './components/ColorPicker/types';
|
|
93
|
+
export * from './components/ContextMenu/types';
|
|
68
94
|
export * from './components/Divider/types';
|
|
69
95
|
export * from './components/Dropdown/types';
|
|
70
96
|
export * from './components/Field/types';
|
|
@@ -80,11 +106,13 @@ export * from './components/Panel/types';
|
|
|
80
106
|
export * from './components/Popover/types';
|
|
81
107
|
export * from './components/Progress/types';
|
|
82
108
|
export * from './components/Radio/types';
|
|
109
|
+
export * from './components/ScrollArea/types';
|
|
83
110
|
export * from './components/Select/types';
|
|
84
111
|
export * from './components/Sidebar/types';
|
|
85
112
|
export * from './components/Skeleton/types';
|
|
86
113
|
export * from './components/Slider/types';
|
|
87
114
|
export * from './components/Spinner/types';
|
|
115
|
+
export * from './components/Splitter/types';
|
|
88
116
|
export * from './components/Switch/types';
|
|
89
117
|
export * from './components/Table/types';
|
|
90
118
|
export * from './components/Tabs/types';
|
|
@@ -92,7 +120,9 @@ export * from './components/Tag/types';
|
|
|
92
120
|
export * from './components/TagsInput/types';
|
|
93
121
|
export * from './components/Textarea/types';
|
|
94
122
|
export * from './components/Toast/types';
|
|
123
|
+
export * from './components/Toolbar/types';
|
|
95
124
|
export * from './components/Tooltip/types';
|
|
125
|
+
export * from './components/TreeView/types';
|
|
96
126
|
export * from './components/Theme/types';
|
|
97
127
|
export { useTheme } from './components/Theme/useTheme';
|
|
98
128
|
export { useToast } from './components/Toast/useToast';
|
|
@@ -107,10 +137,23 @@ export { SkButton, type SkButtonComponentProps };
|
|
|
107
137
|
export { SkCard, type SkCardComponentProps };
|
|
108
138
|
export { SkCheckbox, type SkCheckboxComponentProps };
|
|
109
139
|
export { SkCollapsible, type SkCollapsibleComponentProps };
|
|
140
|
+
export { SkColorPicker, type SkColorPickerComponentProps };
|
|
141
|
+
export { SkContextMenu, type SkContextMenuComponentProps };
|
|
142
|
+
export { SkContextMenuCheckboxItem, type SkContextMenuCheckboxItemComponentProps };
|
|
143
|
+
export { SkContextMenuItem, type SkContextMenuItemComponentProps };
|
|
144
|
+
export { SkContextMenuLabel };
|
|
145
|
+
export { SkContextMenuRadioGroup, type SkContextMenuRadioGroupComponentProps };
|
|
146
|
+
export { SkContextMenuRadioItem, type SkContextMenuRadioItemComponentProps };
|
|
147
|
+
export { SkContextMenuSeparator };
|
|
148
|
+
export { SkContextMenuSubmenu, type SkContextMenuSubmenuComponentProps };
|
|
110
149
|
export { SkDivider, type SkDividerComponentProps };
|
|
111
150
|
export { SkDropdown, type SkDropdownComponentProps };
|
|
151
|
+
export { SkDropdownCheckboxItem, type SkDropdownCheckboxItemComponentProps };
|
|
152
|
+
export { SkDropdownMenuLabel };
|
|
112
153
|
export { SkDropdownMenuItem, type SkDropdownMenuItemComponentProps };
|
|
113
154
|
export { SkDropdownMenuSeparator };
|
|
155
|
+
export { SkDropdownRadioGroup, type SkDropdownRadioGroupComponentProps };
|
|
156
|
+
export { SkDropdownRadioItem, type SkDropdownRadioItemComponentProps };
|
|
114
157
|
export { SkDropdownSubmenu, type SkDropdownSubmenuComponentProps };
|
|
115
158
|
export { SkField, type SkFieldComponentProps };
|
|
116
159
|
export { SkGroup, type SkGroupComponentProps };
|
|
@@ -129,6 +172,7 @@ export { SkPopover, type SkPopoverComponentProps };
|
|
|
129
172
|
export { SkProgress, type SkProgressComponentProps };
|
|
130
173
|
export { SkRadio, type SkRadioComponentProps };
|
|
131
174
|
export { SkRadioGroup, type SkRadioGroupComponentProps };
|
|
175
|
+
export { SkScrollArea, type SkScrollAreaComponentProps };
|
|
132
176
|
export { SkSelect, type SkSelectComponentProps };
|
|
133
177
|
export { SkSelectItem, type SkSelectItemComponentProps };
|
|
134
178
|
export { SkSelectSeparator };
|
|
@@ -138,6 +182,9 @@ export { SkSidebarSection, type SkSidebarSectionComponentProps };
|
|
|
138
182
|
export { SkSkeleton, type SkSkeletonComponentProps };
|
|
139
183
|
export { SkSlider, type SkSliderComponentProps };
|
|
140
184
|
export { SkSpinner, type SkSpinnerComponentProps };
|
|
185
|
+
export { SkSplitter, type SkSplitterComponentProps };
|
|
186
|
+
export { SkSplitterHandle, type SkSplitterHandleComponentProps };
|
|
187
|
+
export { SkSplitterPanel, type SkSplitterPanelComponentProps };
|
|
141
188
|
export { SkSwitch, type SkSwitchComponentProps };
|
|
142
189
|
export { SkTab, type SkTabComponentProps };
|
|
143
190
|
export { SkTabList, type SkTabListComponentProps };
|
|
@@ -149,8 +196,15 @@ export { SkTag, type SkTagComponentProps };
|
|
|
149
196
|
export { SkTagsInput, type SkTagsInputComponentProps };
|
|
150
197
|
export { SkTextarea, type SkTextareaComponentProps };
|
|
151
198
|
export { SkToastProvider, type SkToastProviderComponentProps };
|
|
199
|
+
export { SkToolbar, type SkToolbarComponentProps };
|
|
200
|
+
export { SkToolbarButton, type SkToolbarButtonComponentProps };
|
|
201
|
+
export { SkToolbarSeparator };
|
|
202
|
+
export { SkToolbarToggleGroup, type SkToolbarToggleGroupComponentProps };
|
|
203
|
+
export { SkToolbarToggleItem, type SkToolbarToggleItemComponentProps };
|
|
152
204
|
export { SkTooltip, type SkTooltipComponentProps };
|
|
153
205
|
export { SkTooltipProvider, type SkTooltipProviderProps };
|
|
206
|
+
export { SkTreeItem, type SkTreeItemComponentProps };
|
|
207
|
+
export { SkTreeView, type SkTreeViewComponentProps };
|
|
154
208
|
export { SkTheme, type SkThemeComponentProps };
|
|
155
209
|
declare const SleekSpaceUI: Plugin;
|
|
156
210
|
export default SleekSpaceUI;
|