@stlhorizon/vue-ui 2.7.4 → 2.9.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.
- package/README.md +1 -1
- package/dist/index.esm.js +2458 -2345
- package/dist/index.js +56 -15
- package/dist/src/components/Accordion.vue.d.ts +2 -2
- package/dist/src/components/Alert.vue.d.ts +2 -2
- package/dist/src/components/Badge.vue.d.ts +2 -2
- package/dist/src/components/Checkbox.vue.d.ts +2 -2
- package/dist/src/components/DataTable.vue.d.ts +7 -5
- package/dist/src/components/DataTable.vue.d.ts.map +1 -1
- package/dist/src/components/DataTableCell.vue.d.ts +4 -4
- package/dist/src/components/DataTableFilters.vue.d.ts +4 -0
- package/dist/src/components/DataTableFilters.vue.d.ts.map +1 -1
- package/dist/src/components/DataTablePagination.vue.d.ts +2 -2
- package/dist/src/components/DataTableRow.vue.d.ts +6 -6
- package/dist/src/components/DataTableToolBar.vue.d.ts +5 -5
- package/dist/src/components/FileUpload.vue.d.ts.map +1 -1
- package/dist/src/components/FormField.vue.d.ts +2 -2
- package/dist/src/components/Input.vue.d.ts +2 -2
- package/dist/src/components/Link.vue.d.ts +2 -2
- package/dist/src/components/{StlLoader.vue.d.ts → Loader.vue.d.ts} +1 -1
- package/dist/src/components/Loader.vue.d.ts.map +1 -0
- package/dist/src/components/ReusableFormModal.vue.d.ts.map +1 -1
- package/dist/src/components/Sidebar.vue.d.ts +4 -4
- package/dist/src/components/StepperItem.vue.d.ts +2 -2
- package/dist/src/components/Text.vue.d.ts +2 -2
- package/dist/src/components/Textarea.vue.d.ts +2 -2
- package/dist/src/components/TimelineItem.vue.d.ts +2 -2
- package/dist/src/components/Typography.vue.d.ts +2 -2
- package/dist/src/directives/tooltip.d.ts +6 -0
- package/dist/src/directives/tooltip.d.ts.map +1 -0
- package/dist/src/index.d.ts +3 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -1
- package/package.json +1 -1
- package/dist/src/components/StlLoader.vue.d.ts.map +0 -1
|
@@ -9,8 +9,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
size: string;
|
|
10
10
|
variant: string;
|
|
11
11
|
disabled: boolean;
|
|
12
|
-
items: unknown[];
|
|
13
12
|
multiple: boolean;
|
|
13
|
+
items: unknown[];
|
|
14
14
|
modelValue?: number | unknown[];
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
type __VLS_Slots = {
|
|
@@ -35,8 +35,8 @@ declare const props: {
|
|
|
35
35
|
readonly size: string;
|
|
36
36
|
readonly variant: string;
|
|
37
37
|
readonly disabled: boolean;
|
|
38
|
-
readonly items: unknown[];
|
|
39
38
|
readonly multiple: boolean;
|
|
39
|
+
readonly items: unknown[];
|
|
40
40
|
readonly modelValue?: number | unknown[];
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=Accordion.vue.d.ts.map
|
|
@@ -9,8 +9,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
variant: string;
|
|
10
10
|
dismissible: boolean;
|
|
11
11
|
showIcon: boolean;
|
|
12
|
-
dismissLabel: string;
|
|
13
12
|
actions: unknown[];
|
|
13
|
+
dismissLabel: string;
|
|
14
14
|
autoClose: number | boolean;
|
|
15
15
|
title?: string;
|
|
16
16
|
message?: string;
|
|
@@ -25,8 +25,8 @@ declare const props: {
|
|
|
25
25
|
readonly variant: string;
|
|
26
26
|
readonly dismissible: boolean;
|
|
27
27
|
readonly showIcon: boolean;
|
|
28
|
-
readonly dismissLabel: string;
|
|
29
28
|
readonly actions: unknown[];
|
|
29
|
+
readonly dismissLabel: string;
|
|
30
30
|
readonly autoClose: number | boolean;
|
|
31
31
|
readonly title?: string;
|
|
32
32
|
readonly message?: string;
|
|
@@ -9,8 +9,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
size: string;
|
|
10
10
|
variant: string;
|
|
11
11
|
dismissible: boolean;
|
|
12
|
-
shape: string;
|
|
13
12
|
dismissLabel: string;
|
|
13
|
+
shape: string;
|
|
14
14
|
icon?: string | Record<string, any>;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
type __VLS_Slots = {
|
|
@@ -21,8 +21,8 @@ declare const props: {
|
|
|
21
21
|
readonly size: string;
|
|
22
22
|
readonly variant: string;
|
|
23
23
|
readonly dismissible: boolean;
|
|
24
|
-
readonly shape: string;
|
|
25
24
|
readonly dismissLabel: string;
|
|
25
|
+
readonly shape: string;
|
|
26
26
|
readonly icon?: string | Record<string, any>;
|
|
27
27
|
};
|
|
28
28
|
//# sourceMappingURL=Badge.vue.d.ts.map
|
|
@@ -15,8 +15,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
15
15
|
error?: string;
|
|
16
16
|
value?: string | number | boolean;
|
|
17
17
|
label?: string;
|
|
18
|
-
description?: string;
|
|
19
18
|
id?: string;
|
|
19
|
+
description?: string;
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
21
|
type __VLS_Slots = {
|
|
22
22
|
default?: (props: {}) => any;
|
|
@@ -32,7 +32,7 @@ declare const props: {
|
|
|
32
32
|
readonly error?: string;
|
|
33
33
|
readonly value?: string | number | boolean;
|
|
34
34
|
readonly label?: string;
|
|
35
|
-
readonly description?: string;
|
|
36
35
|
readonly id?: string;
|
|
36
|
+
readonly description?: string;
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=Checkbox.vue.d.ts.map
|
|
@@ -18,16 +18,17 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
18
18
|
data: unknown[];
|
|
19
19
|
loadingText: string;
|
|
20
20
|
hoverable: boolean;
|
|
21
|
+
selectedItems: unknown[];
|
|
22
|
+
density: string;
|
|
21
23
|
columns: unknown[];
|
|
22
24
|
selectable: boolean;
|
|
23
25
|
striped: boolean;
|
|
24
26
|
clickableRows: boolean;
|
|
25
|
-
density: string;
|
|
26
27
|
pageSize: number;
|
|
27
28
|
showPagination: boolean;
|
|
28
|
-
selectedItems: unknown[];
|
|
29
29
|
sortOrder: string;
|
|
30
30
|
emptyText: string;
|
|
31
|
+
emptySubtitle: string;
|
|
31
32
|
rowKey: string;
|
|
32
33
|
headerVariant: string;
|
|
33
34
|
headerPadding: string;
|
|
@@ -71,23 +72,24 @@ type __VLS_Slots = {
|
|
|
71
72
|
} & {
|
|
72
73
|
footer?: (props: {}) => any;
|
|
73
74
|
};
|
|
74
|
-
declare const emit: (event: "row-click" | "selection-change" | "sort-change" | "page-change" | "page-size-change"
|
|
75
|
+
declare const emit: (event: "refresh" | "row-click" | "selection-change" | "sort-change" | "page-change" | "page-size-change", ...args: any[]) => void;
|
|
75
76
|
declare const props: {
|
|
76
77
|
readonly variant: string;
|
|
77
78
|
readonly loading: boolean;
|
|
78
79
|
readonly data: unknown[];
|
|
79
80
|
readonly loadingText: string;
|
|
80
81
|
readonly hoverable: boolean;
|
|
82
|
+
readonly selectedItems: unknown[];
|
|
83
|
+
readonly density: string;
|
|
81
84
|
readonly columns: unknown[];
|
|
82
85
|
readonly selectable: boolean;
|
|
83
86
|
readonly striped: boolean;
|
|
84
87
|
readonly clickableRows: boolean;
|
|
85
|
-
readonly density: string;
|
|
86
88
|
readonly pageSize: number;
|
|
87
89
|
readonly showPagination: boolean;
|
|
88
|
-
readonly selectedItems: unknown[];
|
|
89
90
|
readonly sortOrder: string;
|
|
90
91
|
readonly emptyText: string;
|
|
92
|
+
readonly emptySubtitle: string;
|
|
91
93
|
readonly rowKey: string;
|
|
92
94
|
readonly headerVariant: string;
|
|
93
95
|
readonly headerPadding: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DataTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable.vue"],"names":[],"mappings":"wBAs1DqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AAVzB;;;;;;;;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2OAIrC;;;;;;;;;;;;;;;;;;;;;;AAj6BH,uJAAwH;AA9JxH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4JE"}
|
|
@@ -5,10 +5,10 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
|
-
align: string;
|
|
9
|
-
item: Record<string, any>;
|
|
10
8
|
padding: string;
|
|
9
|
+
item: Record<string, any>;
|
|
11
10
|
column: Record<string, any>;
|
|
11
|
+
align: string;
|
|
12
12
|
textSize: string;
|
|
13
13
|
textColor: string;
|
|
14
14
|
value?: string | number | boolean | unknown[] | Record<string, any>;
|
|
@@ -18,10 +18,10 @@ type __VLS_Slots = {
|
|
|
18
18
|
default?: (props: {}) => any;
|
|
19
19
|
};
|
|
20
20
|
declare const props: {
|
|
21
|
-
readonly align: string;
|
|
22
|
-
readonly item: Record<string, any>;
|
|
23
21
|
readonly padding: string;
|
|
22
|
+
readonly item: Record<string, any>;
|
|
24
23
|
readonly column: Record<string, any>;
|
|
24
|
+
readonly align: string;
|
|
25
25
|
readonly textSize: string;
|
|
26
26
|
readonly textColor: string;
|
|
27
27
|
readonly value?: string | number | boolean | unknown[] | Record<string, any>;
|
|
@@ -19,6 +19,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
19
19
|
showExport: boolean;
|
|
20
20
|
showAdd: boolean;
|
|
21
21
|
showTableInfo: boolean;
|
|
22
|
+
showSearch: boolean;
|
|
23
|
+
showFilters: boolean;
|
|
22
24
|
totalItems: number;
|
|
23
25
|
itemLabel: string;
|
|
24
26
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -42,6 +44,8 @@ declare const props: {
|
|
|
42
44
|
readonly showExport: boolean;
|
|
43
45
|
readonly showAdd: boolean;
|
|
44
46
|
readonly showTableInfo: boolean;
|
|
47
|
+
readonly showSearch: boolean;
|
|
48
|
+
readonly showFilters: boolean;
|
|
45
49
|
readonly totalItems: number;
|
|
46
50
|
readonly itemLabel: string;
|
|
47
51
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTableFilters.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTableFilters.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DataTableFilters.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTableFilters.vue"],"names":[],"mappings":"wBA0uDqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;;;2OAGrC;;;;;;AA3+BH,sMASE;AA5FF;;;;;;;;;;;;;;;;;;EAiFE"}
|
|
@@ -8,13 +8,13 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
9
|
variant: string;
|
|
10
10
|
padding: string;
|
|
11
|
+
selectedCount: number;
|
|
11
12
|
selectable: boolean;
|
|
12
13
|
currentPage: number;
|
|
13
14
|
totalPages: number;
|
|
14
15
|
total: number;
|
|
15
16
|
pageSize: number;
|
|
16
17
|
showPagination: boolean;
|
|
17
|
-
selectedCount: number;
|
|
18
18
|
pageSizeOptions: unknown[];
|
|
19
19
|
maxVisiblePages: number;
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -25,13 +25,13 @@ declare const __VLS_emit: (event: "update:currentPage" | "update:pageSize", ...a
|
|
|
25
25
|
declare const props: {
|
|
26
26
|
readonly variant: string;
|
|
27
27
|
readonly padding: string;
|
|
28
|
+
readonly selectedCount: number;
|
|
28
29
|
readonly selectable: boolean;
|
|
29
30
|
readonly currentPage: number;
|
|
30
31
|
readonly totalPages: number;
|
|
31
32
|
readonly total: number;
|
|
32
33
|
readonly pageSize: number;
|
|
33
34
|
readonly showPagination: boolean;
|
|
34
|
-
readonly selectedCount: number;
|
|
35
35
|
readonly pageSizeOptions: unknown[];
|
|
36
36
|
readonly maxVisiblePages: number;
|
|
37
37
|
};
|
|
@@ -7,15 +7,15 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
$emit: typeof emit;
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
9
|
variant: string;
|
|
10
|
+
hoverable: boolean;
|
|
10
11
|
isSelected: boolean;
|
|
11
|
-
item: Record<string, any>;
|
|
12
12
|
index: number;
|
|
13
|
-
|
|
13
|
+
item: Record<string, any>;
|
|
14
|
+
density: string;
|
|
14
15
|
columns: unknown[];
|
|
15
16
|
selectable: boolean;
|
|
16
17
|
striped: boolean;
|
|
17
18
|
clickableRows: boolean;
|
|
18
|
-
density: string;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
20
|
type __VLS_Slots = {
|
|
21
21
|
[x: `cell-${any}`]: (props: {
|
|
@@ -33,14 +33,14 @@ type __VLS_Slots = {
|
|
|
33
33
|
declare const emit: (event: "toggle-selection" | "row-click", ...args: any[]) => void;
|
|
34
34
|
declare const props: {
|
|
35
35
|
readonly variant: string;
|
|
36
|
+
readonly hoverable: boolean;
|
|
36
37
|
readonly isSelected: boolean;
|
|
37
|
-
readonly item: Record<string, any>;
|
|
38
38
|
readonly index: number;
|
|
39
|
-
readonly
|
|
39
|
+
readonly item: Record<string, any>;
|
|
40
|
+
readonly density: string;
|
|
40
41
|
readonly columns: unknown[];
|
|
41
42
|
readonly selectable: boolean;
|
|
42
43
|
readonly striped: boolean;
|
|
43
44
|
readonly clickableRows: boolean;
|
|
44
|
-
readonly density: string;
|
|
45
45
|
};
|
|
46
46
|
//# sourceMappingURL=DataTableRow.vue.d.ts.map
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
2
|
-
$emit: (event: "
|
|
2
|
+
$emit: (event: "bulk-action" | "update:density" | "toggle-column" | "refresh", ...args: any[]) => void;
|
|
3
3
|
$props: Partial<{
|
|
4
4
|
readonly variant: string;
|
|
5
5
|
readonly padding: string;
|
|
6
|
-
readonly density: string;
|
|
7
|
-
readonly selectedItems: unknown[];
|
|
8
6
|
readonly totalItems: number;
|
|
7
|
+
readonly selectedItems: unknown[];
|
|
9
8
|
readonly bulkActions: unknown[];
|
|
10
9
|
readonly showDensityToggle: boolean;
|
|
11
10
|
readonly showColumnToggle: boolean;
|
|
12
11
|
readonly showRefresh: boolean;
|
|
13
12
|
readonly isRefreshing: boolean;
|
|
13
|
+
readonly density: string;
|
|
14
14
|
readonly toggleableColumns: unknown[];
|
|
15
15
|
readonly visibleColumns: unknown[];
|
|
16
16
|
}>;
|
|
17
17
|
variant: string;
|
|
18
18
|
padding: string;
|
|
19
|
-
density: string;
|
|
20
|
-
selectedItems: unknown[];
|
|
21
19
|
totalItems: number;
|
|
20
|
+
selectedItems: unknown[];
|
|
22
21
|
bulkActions: unknown[];
|
|
23
22
|
showDensityToggle: boolean;
|
|
24
23
|
showColumnToggle: boolean;
|
|
25
24
|
showRefresh: boolean;
|
|
26
25
|
isRefreshing: boolean;
|
|
26
|
+
density: string;
|
|
27
27
|
toggleableColumns: unknown[];
|
|
28
28
|
visibleColumns: unknown[];
|
|
29
29
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FileUpload.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FileUpload.vue"],"names":[],"mappings":";WA2dkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;AA1RxC,uFAA4D;AAX5D;;;;;EASE"}
|
|
@@ -13,8 +13,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
13
13
|
error?: string;
|
|
14
14
|
label?: string;
|
|
15
15
|
modelValue?: string | Date;
|
|
16
|
-
description?: string;
|
|
17
16
|
id?: string;
|
|
17
|
+
description?: string;
|
|
18
18
|
helpText?: string;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
20
|
type __VLS_Slots = {
|
|
@@ -35,8 +35,8 @@ declare const props: {
|
|
|
35
35
|
readonly error?: string;
|
|
36
36
|
readonly label?: string;
|
|
37
37
|
readonly modelValue?: string | Date;
|
|
38
|
-
readonly description?: string;
|
|
39
38
|
readonly id?: string;
|
|
39
|
+
readonly description?: string;
|
|
40
40
|
readonly helpText?: string;
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=FormField.vue.d.ts.map
|
|
@@ -15,10 +15,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
15
15
|
clearable: boolean;
|
|
16
16
|
clearLabel: string;
|
|
17
17
|
error?: string;
|
|
18
|
-
id?: string;
|
|
19
18
|
iconLeft?: string | Record<string, any>;
|
|
20
19
|
iconRight?: string | Record<string, any>;
|
|
21
20
|
autocomplete?: string;
|
|
21
|
+
id?: string;
|
|
22
22
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
23
|
export default _default;
|
|
24
24
|
declare const emit: (event: "clear" | "update:modelValue" | "blur" | "focus" | "keydown", ...args: any[]) => void;
|
|
@@ -34,9 +34,9 @@ declare const props: {
|
|
|
34
34
|
readonly clearable: boolean;
|
|
35
35
|
readonly clearLabel: string;
|
|
36
36
|
readonly error?: string;
|
|
37
|
-
readonly id?: string;
|
|
38
37
|
readonly iconLeft?: string | Record<string, any>;
|
|
39
38
|
readonly iconRight?: string | Record<string, any>;
|
|
40
39
|
readonly autocomplete?: string;
|
|
40
|
+
readonly id?: string;
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=Input.vue.d.ts.map
|
|
@@ -9,8 +9,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
size: string;
|
|
10
10
|
variant: string;
|
|
11
11
|
disabled: boolean;
|
|
12
|
-
external: boolean;
|
|
13
12
|
underline: string;
|
|
13
|
+
external: boolean;
|
|
14
14
|
iconPosition: string;
|
|
15
15
|
showExternalIcon: boolean;
|
|
16
16
|
block: boolean;
|
|
@@ -28,8 +28,8 @@ declare const props: {
|
|
|
28
28
|
readonly size: string;
|
|
29
29
|
readonly variant: string;
|
|
30
30
|
readonly disabled: boolean;
|
|
31
|
-
readonly external: boolean;
|
|
32
31
|
readonly underline: string;
|
|
32
|
+
readonly external: boolean;
|
|
33
33
|
readonly iconPosition: string;
|
|
34
34
|
readonly showExternalIcon: boolean;
|
|
35
35
|
readonly block: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Loader.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Loader.vue"],"names":[],"mappings":";YAuyBmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;;;;;;;;AAvyB9C;;;;;;;;;;EA0eE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReusableFormModal.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ReusableFormModal.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"ReusableFormModal.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ReusableFormModal.vue"],"names":[],"mappings":";WAysCkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;AAvqBxC,8FAAkE;AAlDlE;;;;;;;;;;EAgDE"}
|
|
@@ -7,25 +7,25 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
closeAllMenus: () => void;
|
|
8
8
|
$emit: typeof emit;
|
|
9
9
|
$props: Partial<typeof props>;
|
|
10
|
+
navigationItems: unknown[];
|
|
11
|
+
currentPath: string;
|
|
10
12
|
sidebarWidth: number;
|
|
11
13
|
mobileOpen: boolean;
|
|
12
|
-
navigationItems: unknown[];
|
|
13
14
|
managementSettings: unknown[];
|
|
14
15
|
showManagementSettings: boolean;
|
|
15
16
|
isManagementSettingsActive: boolean;
|
|
16
|
-
currentPath: string;
|
|
17
17
|
header?: Record<string, any>;
|
|
18
18
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
export default _default;
|
|
20
20
|
declare const emit: (event: "navigate" | "update:mobileOpen", ...args: any[]) => void;
|
|
21
21
|
declare const props: {
|
|
22
|
+
readonly navigationItems: unknown[];
|
|
23
|
+
readonly currentPath: string;
|
|
22
24
|
readonly sidebarWidth: number;
|
|
23
25
|
readonly mobileOpen: boolean;
|
|
24
|
-
readonly navigationItems: unknown[];
|
|
25
26
|
readonly managementSettings: unknown[];
|
|
26
27
|
readonly showManagementSettings: boolean;
|
|
27
28
|
readonly isManagementSettingsActive: boolean;
|
|
28
|
-
readonly currentPath: string;
|
|
29
29
|
readonly header?: Record<string, any>;
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=Sidebar.vue.d.ts.map
|
|
@@ -2,16 +2,16 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
$props: Partial<typeof __VLS_props>;
|
|
3
3
|
title: string;
|
|
4
4
|
description: string;
|
|
5
|
-
step: number;
|
|
6
5
|
active: boolean;
|
|
6
|
+
step: number;
|
|
7
7
|
completed: boolean;
|
|
8
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
declare const __VLS_props: {
|
|
11
11
|
readonly title: string;
|
|
12
12
|
readonly description: string;
|
|
13
|
-
readonly step: number;
|
|
14
13
|
readonly active: boolean;
|
|
14
|
+
readonly step: number;
|
|
15
15
|
readonly completed: boolean;
|
|
16
16
|
};
|
|
17
17
|
//# sourceMappingURL=StepperItem.vue.d.ts.map
|
|
@@ -7,9 +7,9 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
8
|
size: string;
|
|
9
9
|
variant: string;
|
|
10
|
+
align: string;
|
|
10
11
|
as: string;
|
|
11
12
|
weight: string;
|
|
12
|
-
align: string;
|
|
13
13
|
class?: string;
|
|
14
14
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
15
|
type __VLS_Slots = {
|
|
@@ -18,9 +18,9 @@ type __VLS_Slots = {
|
|
|
18
18
|
declare const props: {
|
|
19
19
|
readonly size: string;
|
|
20
20
|
readonly variant: string;
|
|
21
|
+
readonly align: string;
|
|
21
22
|
readonly as: string;
|
|
22
23
|
readonly weight: string;
|
|
23
|
-
readonly align: string;
|
|
24
24
|
readonly class?: string;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=Text.vue.d.ts.map
|
|
@@ -11,8 +11,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
readonly: boolean;
|
|
14
|
-
rows: number;
|
|
15
14
|
resize: string;
|
|
15
|
+
rows: number;
|
|
16
16
|
autoResize: boolean;
|
|
17
17
|
error?: string;
|
|
18
18
|
id?: string;
|
|
@@ -28,8 +28,8 @@ declare const props: {
|
|
|
28
28
|
readonly disabled: boolean;
|
|
29
29
|
readonly modelValue: string;
|
|
30
30
|
readonly readonly: boolean;
|
|
31
|
-
readonly rows: number;
|
|
32
31
|
readonly resize: string;
|
|
32
|
+
readonly rows: number;
|
|
33
33
|
readonly autoResize: boolean;
|
|
34
34
|
readonly error?: string;
|
|
35
35
|
readonly id?: string;
|
|
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$props: Partial<typeof __VLS_props>;
|
|
8
8
|
title: string;
|
|
9
|
-
orientation: string;
|
|
10
9
|
subtitle: string;
|
|
10
|
+
orientation: string;
|
|
11
11
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
type __VLS_Slots = {
|
|
13
13
|
icon?: (props: {}) => any;
|
|
@@ -20,7 +20,7 @@ type __VLS_Slots = {
|
|
|
20
20
|
};
|
|
21
21
|
declare const __VLS_props: {
|
|
22
22
|
readonly title: string;
|
|
23
|
-
readonly orientation: string;
|
|
24
23
|
readonly subtitle: string;
|
|
24
|
+
readonly orientation: string;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=TimelineItem.vue.d.ts.map
|
|
@@ -8,9 +8,9 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
variant: string;
|
|
9
9
|
color: string;
|
|
10
10
|
required: boolean;
|
|
11
|
-
underline: boolean;
|
|
12
11
|
align: string;
|
|
13
12
|
italic: boolean;
|
|
13
|
+
underline: boolean;
|
|
14
14
|
truncate: boolean;
|
|
15
15
|
noWrap: boolean;
|
|
16
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -21,9 +21,9 @@ declare const props: {
|
|
|
21
21
|
readonly variant: string;
|
|
22
22
|
readonly color: string;
|
|
23
23
|
readonly required: boolean;
|
|
24
|
-
readonly underline: boolean;
|
|
25
24
|
readonly align: string;
|
|
26
25
|
readonly italic: boolean;
|
|
26
|
+
readonly underline: boolean;
|
|
27
27
|
readonly truncate: boolean;
|
|
28
28
|
readonly noWrap: boolean;
|
|
29
29
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/directives/tooltip.js"],"names":[],"mappings":";IACE,8CAiHC;IAED,8CAIC;IAED,kCAWC"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ import Text from "./components/Text.vue";
|
|
|
25
25
|
import Textarea from "./components/Textarea.vue";
|
|
26
26
|
import Tooltip from "./components/Tooltip.vue";
|
|
27
27
|
import Typography from "./components/Typography.vue";
|
|
28
|
-
import
|
|
28
|
+
import Loader from "./components/Loader.vue";
|
|
29
29
|
import Alert from "./components/Alert.vue";
|
|
30
30
|
import Breadcrumb from "./components/Breadcrumb.vue";
|
|
31
31
|
import ButtonGroup from "./components/ButtonGroup.vue";
|
|
@@ -76,5 +76,6 @@ import DefaultLayout from "./layouts/DefaultLayout.vue";
|
|
|
76
76
|
import ErrorLayout from "./layouts/ErrorLayout.vue";
|
|
77
77
|
import { toast } from './lib/toast';
|
|
78
78
|
import { useToaster } from './lib/toast';
|
|
79
|
-
|
|
79
|
+
import { tooltip } from "./directives/tooltip.js";
|
|
80
|
+
export { Avatar, Badge, Button, Checkbox, Divider, Icon, Image, Input, Label, Link, Logo, Option, Progress, ProgressBar, Radio, Select, Spinner, Switch, Text, Textarea, Tooltip, Typography, Loader, Alert, Breadcrumb, ButtonGroup, Card, CardHeader, CardBody, CardFooter, CardContent, CardTitle, DatePicker, Dropdown, DropdownItem, FileUpload, FormField, InputGroup, ListItem, MenuItem, Modal, ModalHeader, ModalBody, ModalFooter, Notification, Toast, Search, Slider, Stepper, StepperItem, Tab, TabPanel, Accordion, AccordionItem, Calendar, DataTable, DataTableHeader, DataTableRow, DataTableCell, DataTablePagination, DataTableFilters, DataTableToolBar, Footer, Header, ReusableFormModal, Sidebar, Timeline, TimelineItem, AuthLayout, DefaultLayout, ErrorLayout, toast, useToaster, tooltip };
|
|
80
81
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;IAqKE,+
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;IAqKE,+CAaC;;mBAlLgB,yBAAyB;kBAC1B,wBAAwB;mBACvB,yBAAyB;qBACvB,2BAA2B;oBAC5B,0BAA0B;iBAC7B,uBAAuB;kBACtB,wBAAwB;kBACxB,wBAAwB;kBACxB,wBAAwB;iBACzB,uBAAuB;iBACvB,uBAAuB;mBACrB,yBAAyB;qBACvB,2BAA2B;wBACxB,8BAA8B;kBACpC,wBAAwB;mBACvB,yBAAyB;oBACxB,0BAA0B;mBAC3B,yBAAyB;iBAC3B,uBAAuB;qBACnB,2BAA2B;oBAC5B,0BAA0B;uBACvB,6BAA6B;mBAkEjC,yBAAyB;kBAhE1B,wBAAwB;uBACnB,6BAA6B;wBAC5B,8BAA8B;iBACrC,uBAAuB;uBACjB,6BAA6B;qBAC/B,2BAA2B;uBACzB,6BAA6B;wBAC5B,8BAA8B;sBAChC,4BAA4B;uBAC3B,6BAA6B;qBAC/B,2BAA2B;yBACvB,+BAA+B;uBACjC,6BAA6B;sBAC9B,4BAA4B;uBAC3B,6BAA6B;qBAE/B,2BAA2B;qBAC3B,2BAA2B;kBAE9B,wBAAwB;wBAClB,8BAA8B;sBAChC,4BAA4B;wBAC1B,8BAA8B;yBAC7B,+BAA+B;kBACtC,wBAAwB;mBAEvB,yBAAyB;mBAEzB,yBAAyB;oBACxB,0BAA0B;wBACtB,8BAA8B;gBACtC,sBAAsB;qBACjB,2BAA2B;sBAE1B,4BAA4B;0BACxB,gCAAgC;qBACrC,2BAA2B;sBAC1B,4BAA4B;4BACtB,kCAAkC;yBACrC,+BAA+B;0BAC9B,gCAAgC;gCAC1B,sCAAsC;6BACzC,mCAAmC;6BACnC,mCAAmC;mBAE7C,yBAAyB;mBACzB,yBAAyB;8BACd,oCAAoC;oBAC9C,0BAA0B;qBACzB,2BAA2B;yBACvB,+BAA+B;uBAEjC,0BAA0B;0BACvB,6BAA6B;wBAC/B,2BAA2B;sBAGjB,aAAa;2BAAb,aAAa;wBACvB,yBAAyB"}
|