@construct-space/ui 0.1.0

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.
Files changed (51) hide show
  1. package/dist/components/Accordion.vue.d.ts +41 -0
  2. package/dist/components/Alert.vue.d.ts +26 -0
  3. package/dist/components/Avatar.vue.d.ts +13 -0
  4. package/dist/components/Badge.vue.d.ts +25 -0
  5. package/dist/components/Button.vue.d.ts +32 -0
  6. package/dist/components/Calendar.vue.d.ts +57 -0
  7. package/dist/components/Card.vue.d.ts +28 -0
  8. package/dist/components/Checkbox.vue.d.ts +26 -0
  9. package/dist/components/Chip.vue.d.ts +32 -0
  10. package/dist/components/ColorPicker.vue.d.ts +21 -0
  11. package/dist/components/ContextMenu.vue.d.ts +24 -0
  12. package/dist/components/DashboardPanel.vue.d.ts +37 -0
  13. package/dist/components/Drawer.vue.d.ts +35 -0
  14. package/dist/components/Dropdown.vue.d.ts +23 -0
  15. package/dist/components/DropdownMenu.vue.d.ts +32 -0
  16. package/dist/components/DropdownMenuItem.vue.d.ts +25 -0
  17. package/dist/components/Empty.vue.d.ts +17 -0
  18. package/dist/components/FormField.vue.d.ts +36 -0
  19. package/dist/components/Icon.vue.d.ts +5 -0
  20. package/dist/components/Input.vue.d.ts +28 -0
  21. package/dist/components/Kbd.vue.d.ts +11 -0
  22. package/dist/components/Modal.vue.d.ts +42 -0
  23. package/dist/components/Pagination.vue.d.ts +17 -0
  24. package/dist/components/PanelSection.vue.d.ts +34 -0
  25. package/dist/components/Popover.vue.d.ts +28 -0
  26. package/dist/components/Progress.vue.d.ts +23 -0
  27. package/dist/components/PropRow.vue.d.ts +35 -0
  28. package/dist/components/RadioGroup.vue.d.ts +28 -0
  29. package/dist/components/ScrollArea.vue.d.ts +12 -0
  30. package/dist/components/Select.vue.d.ts +32 -0
  31. package/dist/components/SelectMenu.vue.d.ts +40 -0
  32. package/dist/components/Separator.vue.d.ts +12 -0
  33. package/dist/components/Skeleton.vue.d.ts +17 -0
  34. package/dist/components/Slideover.vue.d.ts +31 -0
  35. package/dist/components/Slider.vue.d.ts +21 -0
  36. package/dist/components/Switch.vue.d.ts +30 -0
  37. package/dist/components/Table.vue.d.ts +63 -0
  38. package/dist/components/Tabs.vue.d.ts +28 -0
  39. package/dist/components/Textarea.vue.d.ts +27 -0
  40. package/dist/components/Timeline.vue.d.ts +38 -0
  41. package/dist/components/Toast.vue.d.ts +2 -0
  42. package/dist/components/Tooltip.vue.d.ts +25 -0
  43. package/dist/components/Tree.vue.d.ts +157 -0
  44. package/dist/composables/useAuth.d.ts +39 -0
  45. package/dist/composables/useToast.d.ts +46 -0
  46. package/dist/construct-ui.js +15289 -0
  47. package/dist/index.d.ts +55 -0
  48. package/dist/layouts/HeaderLayout.vue.d.ts +44 -0
  49. package/dist/layouts/SidebarLayout.vue.d.ts +43 -0
  50. package/dist/style.css +2 -0
  51. package/package.json +60 -0
@@ -0,0 +1,34 @@
1
+ /**
2
+ * PanelSection — Construct UI
3
+ * Section divider for design panels with a bold label and optional action slot.
4
+ * Mirrors the "Layout", "Appearance", "Typography" section headers in the design tool.
5
+ *
6
+ * Usage:
7
+ * <PanelSection label="Layout">
8
+ * <PropRow> ... </PropRow>
9
+ * </PanelSection>
10
+ *
11
+ * <PanelSection label="Prototype">
12
+ * <template #action><button>+</button></template>
13
+ * </PanelSection>
14
+ */
15
+ type __VLS_Props = {
16
+ label: string;
17
+ collapsible?: boolean;
18
+ };
19
+ declare var __VLS_1: {}, __VLS_3: {};
20
+ type __VLS_Slots = {} & {
21
+ action?: (props: typeof __VLS_1) => any;
22
+ } & {
23
+ default?: (props: typeof __VLS_3) => any;
24
+ };
25
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
+ collapsible: boolean;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
29
+ export default _default;
30
+ type __VLS_WithSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ open?: boolean;
3
+ content?: {
4
+ side?: 'top' | 'bottom' | 'left' | 'right';
5
+ align?: 'start' | 'center' | 'end';
6
+ sideOffset?: number;
7
+ };
8
+ };
9
+ declare var __VLS_14: {}, __VLS_24: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_14) => any;
12
+ } & {
13
+ content?: (props: typeof __VLS_24) => any;
14
+ };
15
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
+ "update:open": (value: boolean) => any;
17
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
19
+ }>, {
20
+ open: boolean;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Progress - Bar and circle progress indicator
3
+ * Supports: bar (horizontal) and circle (SVG) variants
4
+ * Indeterminate mode for unknown progress
5
+ */
6
+ type __VLS_Props = {
7
+ value?: number;
8
+ max?: number;
9
+ color?: string;
10
+ size?: 'xs' | 'sm' | 'md' | 'lg';
11
+ indeterminate?: boolean;
12
+ label?: boolean;
13
+ variant?: 'bar' | 'circle';
14
+ };
15
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
+ label: boolean;
17
+ value: number;
18
+ size: "xs" | "sm" | "md" | "lg";
19
+ variant: "bar" | "circle";
20
+ indeterminate: boolean;
21
+ max: number;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * PropRow — Construct UI
3
+ * Horizontal row for design panel properties.
4
+ * Slots are laid out side by side in equal columns.
5
+ *
6
+ * Usage (two inputs in a row):
7
+ * <PropRow>
8
+ * <Input v-model="w" prefix="W" />
9
+ * <Input v-model="h" prefix="H" />
10
+ * </PropRow>
11
+ *
12
+ * Usage (label + control, like FormField layout="row"):
13
+ * <PropRow label="Opacity">
14
+ * <Input v-model="opacity" suffix="%" />
15
+ * <Select v-model="blend" :options="blendModes" />
16
+ * </PropRow>
17
+ */
18
+ type __VLS_Props = {
19
+ label?: string;
20
+ cols?: number;
21
+ };
22
+ declare var __VLS_1: {};
23
+ type __VLS_Slots = {} & {
24
+ default?: (props: typeof __VLS_1) => any;
25
+ };
26
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
27
+ cols: number;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ export default _default;
31
+ type __VLS_WithSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -0,0 +1,28 @@
1
+ export interface RadioOption {
2
+ value: string;
3
+ label: string;
4
+ description?: string;
5
+ icon?: string;
6
+ disabled?: boolean;
7
+ }
8
+ type __VLS_Props = {
9
+ modelValue?: string;
10
+ options?: RadioOption[];
11
+ orientation?: 'vertical' | 'horizontal';
12
+ size?: 'sm' | 'md' | 'lg';
13
+ variant?: 'default' | 'card';
14
+ disabled?: boolean;
15
+ };
16
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ "update:modelValue": (value: string) => any;
18
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
19
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
+ }>, {
21
+ disabled: boolean;
22
+ orientation: "vertical" | "horizontal";
23
+ modelValue: string;
24
+ size: "sm" | "md" | "lg";
25
+ variant: "default" | "card";
26
+ options: RadioOption[];
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
+ export default _default;
@@ -0,0 +1,12 @@
1
+ declare var __VLS_10: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_10) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -0,0 +1,32 @@
1
+ export interface SelectOption {
2
+ label: string;
3
+ value: string | number | null;
4
+ disabled?: boolean;
5
+ [key: string]: unknown;
6
+ }
7
+ type __VLS_Props = {
8
+ modelValue?: string | number | null;
9
+ options?: SelectOption[] | string[];
10
+ items?: SelectOption[] | string[];
11
+ placeholder?: string;
12
+ size?: 'xs' | 'sm' | 'md' | 'lg';
13
+ disabled?: boolean;
14
+ icon?: string;
15
+ variant?: 'outline' | 'soft' | 'none';
16
+ valueAttribute?: string;
17
+ optionAttribute?: string;
18
+ };
19
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ "update:modelValue": (value: string) => any;
21
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
22
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
23
+ }>, {
24
+ disabled: boolean;
25
+ modelValue: string | number | null;
26
+ placeholder: string;
27
+ size: "xs" | "sm" | "md" | "lg";
28
+ options: SelectOption[] | string[];
29
+ valueAttribute: string;
30
+ optionAttribute: string;
31
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
32
+ export default _default;
@@ -0,0 +1,40 @@
1
+ export interface SelectOption {
2
+ label: string;
3
+ value?: string | number | null;
4
+ icon?: string;
5
+ disabled?: boolean;
6
+ description?: string;
7
+ type?: string;
8
+ [key: string]: unknown;
9
+ }
10
+ type __VLS_Props = {
11
+ modelValue?: string | number | null;
12
+ options?: SelectOption[] | string[];
13
+ items?: SelectOption[] | SelectOption[][] | string[];
14
+ placeholder?: string;
15
+ searchable?: boolean;
16
+ size?: 'xs' | 'sm' | 'md' | 'lg';
17
+ disabled?: boolean;
18
+ icon?: string;
19
+ variant?: 'outline' | 'soft' | 'none';
20
+ valueAttribute?: string;
21
+ valueKey?: string;
22
+ optionAttribute?: string;
23
+ };
24
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
+ "update:modelValue": (value: string) => any;
26
+ change: (value: string) => any;
27
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
28
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
29
+ onChange?: ((value: string) => any) | undefined;
30
+ }>, {
31
+ disabled: boolean;
32
+ modelValue: string | number | null;
33
+ placeholder: string;
34
+ size: "xs" | "sm" | "md" | "lg";
35
+ options: SelectOption[] | string[];
36
+ valueAttribute: string;
37
+ optionAttribute: string;
38
+ searchable: boolean;
39
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
40
+ export default _default;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Separator - Horizontal or vertical divider
3
+ * Optional label text displayed in the middle
4
+ */
5
+ type __VLS_Props = {
6
+ orientation?: 'horizontal' | 'vertical';
7
+ label?: string;
8
+ };
9
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
+ orientation: "horizontal" | "vertical";
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Skeleton - Loading placeholder with pulse animation
3
+ * Supports rectangular, rounded, circle, and multi-line text modes
4
+ */
5
+ type __VLS_Props = {
6
+ width?: string;
7
+ height?: string;
8
+ rounded?: boolean;
9
+ circle?: boolean;
10
+ lines?: number;
11
+ };
12
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
+ circle: boolean;
14
+ rounded: boolean;
15
+ lines: number;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ export default _default;
@@ -0,0 +1,31 @@
1
+ type __VLS_Props = {
2
+ open?: boolean;
3
+ title?: string;
4
+ side?: 'left' | 'right';
5
+ preventClose?: boolean;
6
+ };
7
+ declare var __VLS_30: {}, __VLS_32: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_30) => any;
10
+ } & {
11
+ footer?: (props: typeof __VLS_32) => any;
12
+ };
13
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ close: () => any;
15
+ "update:open": (value: boolean) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ onClose?: (() => any) | undefined;
18
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
19
+ }>, {
20
+ open: boolean;
21
+ title: string;
22
+ side: "left" | "right";
23
+ preventClose: boolean;
24
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
26
+ export default _default;
27
+ type __VLS_WithSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -0,0 +1,21 @@
1
+ type __VLS_Props = {
2
+ modelValue?: number;
3
+ min?: number;
4
+ max?: number;
5
+ step?: number;
6
+ disabled?: boolean;
7
+ size?: 'xs' | 'sm' | 'md';
8
+ };
9
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ "update:modelValue": (value: number) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
13
+ }>, {
14
+ disabled: boolean;
15
+ modelValue: number;
16
+ size: "xs" | "sm" | "md";
17
+ max: number;
18
+ min: number;
19
+ step: number;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ export default _default;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Switch — plain implementation, no reka-ui dependency issues
3
+ */
4
+ type __VLS_Props = {
5
+ modelValue?: boolean;
6
+ label?: string;
7
+ disabled?: boolean;
8
+ size?: 'xs' | 'sm' | 'md';
9
+ };
10
+ declare var __VLS_1: {};
11
+ type __VLS_Slots = {} & {
12
+ default?: (props: typeof __VLS_1) => any;
13
+ };
14
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (value: boolean) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18
+ }>, {
19
+ label: string;
20
+ disabled: boolean;
21
+ modelValue: boolean;
22
+ size: "xs" | "sm" | "md";
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,63 @@
1
+ /**
2
+ * Table - Data table with sorting, selection, and custom slots
3
+ * Supports sticky header, striped rows, loading skeleton, and empty state
4
+ */
5
+ export interface TableColumn {
6
+ key: string;
7
+ label: string;
8
+ sortable?: boolean;
9
+ width?: string;
10
+ align?: 'left' | 'center' | 'right';
11
+ }
12
+ type __VLS_Props = {
13
+ columns: TableColumn[];
14
+ rows: Record<string, any>[];
15
+ loading?: boolean;
16
+ selectable?: boolean | 'single' | 'multi';
17
+ striped?: boolean;
18
+ size?: 'compact' | 'comfortable';
19
+ stickyHeader?: boolean;
20
+ rowKey?: string;
21
+ skeletonRows?: number;
22
+ };
23
+ type __VLS_Slots = {
24
+ [key: `cell-${string}`]: (props: {
25
+ row: Record<string, any>;
26
+ value: any;
27
+ index: number;
28
+ }) => any;
29
+ [key: `header-${string}`]: (props: {
30
+ column: TableColumn;
31
+ }) => any;
32
+ empty: () => any;
33
+ };
34
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
35
+ sort: (payload: {
36
+ key: string;
37
+ direction: "asc" | "desc";
38
+ }) => any;
39
+ select: (selected: Record<string, any>[]) => any;
40
+ "row-click": (row: Record<string, any>, index: number) => any;
41
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
42
+ onSort?: ((payload: {
43
+ key: string;
44
+ direction: "asc" | "desc";
45
+ }) => any) | undefined;
46
+ onSelect?: ((selected: Record<string, any>[]) => any) | undefined;
47
+ "onRow-click"?: ((row: Record<string, any>, index: number) => any) | undefined;
48
+ }>, {
49
+ size: "compact" | "comfortable";
50
+ loading: boolean;
51
+ selectable: boolean | "single" | "multi";
52
+ striped: boolean;
53
+ stickyHeader: boolean;
54
+ rowKey: string;
55
+ skeletonRows: number;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
58
+ export default _default;
59
+ type __VLS_WithSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
@@ -0,0 +1,28 @@
1
+ export interface TabItem {
2
+ label: string;
3
+ value: string;
4
+ icon?: string;
5
+ }
6
+ type __VLS_Props = {
7
+ modelValue?: string;
8
+ items?: TabItem[];
9
+ };
10
+ declare var __VLS_27: string, __VLS_28: {};
11
+ type __VLS_Slots = {} & {
12
+ [K in NonNullable<typeof __VLS_27>]?: (props: typeof __VLS_28) => any;
13
+ };
14
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (value: string) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
18
+ }>, {
19
+ items: TabItem[];
20
+ modelValue: string;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Textarea — Construct UI
3
+ * Compact dark textarea matching the design panel aesthetic.
4
+ */
5
+ type __VLS_Props = {
6
+ modelValue?: string;
7
+ placeholder?: string;
8
+ rows?: number;
9
+ size?: 'xs' | 'sm' | 'md' | 'lg';
10
+ disabled?: boolean;
11
+ autoresize?: boolean;
12
+ variant?: 'outline' | 'none';
13
+ };
14
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (value: string) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
18
+ }>, {
19
+ disabled: boolean;
20
+ modelValue: string;
21
+ placeholder: string;
22
+ size: "xs" | "sm" | "md" | "lg";
23
+ variant: "outline" | "none";
24
+ rows: number;
25
+ autoresize: boolean;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
+ export default _default;
@@ -0,0 +1,38 @@
1
+ export interface TimelineItem {
2
+ id: string;
3
+ title: string;
4
+ description?: string;
5
+ icon?: string;
6
+ color?: string;
7
+ timestamp?: string | Date;
8
+ status?: 'completed' | 'active' | 'pending';
9
+ }
10
+ type __VLS_Props = {
11
+ items?: TimelineItem[];
12
+ direction?: 'vertical' | 'horizontal';
13
+ size?: 'compact' | 'comfortable';
14
+ };
15
+ declare var __VLS_1: {
16
+ item: TimelineItem;
17
+ index: number;
18
+ }, __VLS_3: {
19
+ item: TimelineItem;
20
+ index: number;
21
+ };
22
+ type __VLS_Slots = {} & {
23
+ item?: (props: typeof __VLS_1) => any;
24
+ } & {
25
+ item?: (props: typeof __VLS_3) => any;
26
+ };
27
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
28
+ items: TimelineItem[];
29
+ size: "compact" | "comfortable";
30
+ direction: "vertical" | "horizontal";
31
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
32
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
33
+ export default _default;
34
+ type __VLS_WithSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,25 @@
1
+ type __VLS_Props = {
2
+ text?: string;
3
+ content?: {
4
+ side?: 'top' | 'bottom' | 'left' | 'right';
5
+ align?: 'start' | 'center' | 'end';
6
+ sideOffset?: number;
7
+ };
8
+ popper?: {
9
+ placement?: string;
10
+ };
11
+ };
12
+ declare var __VLS_14: {};
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_14) => any;
15
+ };
16
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ text: string;
18
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
+ export default _default;
21
+ type __VLS_WithSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };