@stlhorizon/vue-ui 1.2.9 → 1.3.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/dist/index.esm.js +6043 -2673
- package/dist/index.js +576 -46
- package/dist/src/components/Alert.vue.d.ts +2 -2
- package/dist/src/components/Badge.vue.d.ts +2 -2
- package/dist/src/components/Breadcrumb.vue.d.ts +2 -2
- package/dist/src/components/Button.vue.d.ts +2 -2
- package/dist/src/components/Checkbox.vue.d.ts +4 -4
- package/dist/src/components/DataTable.vue.d.ts +2 -2
- package/dist/src/components/DataTableCell.vue.d.ts +2 -2
- package/dist/src/components/DataTableFilters.vue.d.ts.map +1 -1
- package/dist/src/components/DataTableToolBar.vue.d.ts.map +1 -1
- package/dist/src/components/DatePicker.vue.d.ts +2 -2
- package/dist/src/components/FormField.vue.d.ts +10 -6
- package/dist/src/components/FormField.vue.d.ts.map +1 -1
- package/dist/src/components/Icon.vue.d.ts +4 -2
- package/dist/src/components/Icon.vue.d.ts.map +1 -1
- package/dist/src/components/Image.vue.d.ts +2 -2
- package/dist/src/components/Input.vue.d.ts +7 -7
- package/dist/src/components/Label.vue.d.ts +2 -2
- package/dist/src/components/Link.vue.d.ts +4 -4
- package/dist/src/components/ListItem.vue.d.ts +2 -2
- package/dist/src/components/Logo.vue.d.ts +2 -2
- package/dist/src/components/Option.vue.d.ts +2 -2
- package/dist/src/components/ProgressBar.vue.d.ts +2 -2
- package/dist/src/components/Radio.vue.d.ts +4 -4
- package/dist/src/components/Search.vue.d.ts +5 -5
- package/dist/src/components/Spinner.vue.d.ts +2 -2
- package/dist/src/components/Textarea.vue.d.ts +6 -6
- package/dist/src/components/Typography.vue.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/layouts/DashboardLayout.vue.d.ts +2 -9
- package/dist/src/layouts/DashboardLayout.vue.d.ts.map +1 -1
- package/dist/src/layouts/ErrorLayout.vue.d.ts +6 -6
- package/dist/src/router/DashboardRoutes.d.ts +15 -0
- package/dist/src/router/DashboardRoutes.d.ts.map +1 -0
- package/dist/src/router/index.d.ts.map +1 -1
- package/dist/src/views/AnalyticsPage.vue.d.ts +2 -48
- package/dist/src/views/DataTableTest.vue.d.ts +3 -0
- package/dist/src/views/DataTableTest.vue.d.ts.map +1 -0
- package/dist/src/views/authentication/LoginPage.vue.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -5
- package/package.json +8 -4
|
@@ -8,8 +8,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
9
|
variant: string;
|
|
10
10
|
dismissible: boolean;
|
|
11
|
-
dismissLabel: string;
|
|
12
11
|
showIcon: boolean;
|
|
12
|
+
dismissLabel: string;
|
|
13
13
|
actions: unknown[];
|
|
14
14
|
autoClose: number | boolean;
|
|
15
15
|
title?: string;
|
|
@@ -24,8 +24,8 @@ declare const emit: (event: "dismiss" | "action", ...args: any[]) => void;
|
|
|
24
24
|
declare const props: {
|
|
25
25
|
readonly variant: string;
|
|
26
26
|
readonly dismissible: boolean;
|
|
27
|
-
readonly dismissLabel: string;
|
|
28
27
|
readonly showIcon: boolean;
|
|
28
|
+
readonly dismissLabel: string;
|
|
29
29
|
readonly actions: unknown[];
|
|
30
30
|
readonly autoClose: number | boolean;
|
|
31
31
|
readonly title?: string;
|
|
@@ -8,8 +8,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
9
|
size: string;
|
|
10
10
|
variant: string;
|
|
11
|
-
shape: string;
|
|
12
11
|
dismissible: boolean;
|
|
12
|
+
shape: string;
|
|
13
13
|
dismissLabel: 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>;
|
|
@@ -20,8 +20,8 @@ declare const emit: (event: "dismiss", ...args: any[]) => void;
|
|
|
20
20
|
declare const props: {
|
|
21
21
|
readonly size: string;
|
|
22
22
|
readonly variant: string;
|
|
23
|
-
readonly shape: string;
|
|
24
23
|
readonly dismissible: boolean;
|
|
24
|
+
readonly shape: string;
|
|
25
25
|
readonly dismissLabel: string;
|
|
26
26
|
readonly icon?: string | Record<string, any>;
|
|
27
27
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
|
-
ariaLabel: string;
|
|
4
3
|
variant: string;
|
|
4
|
+
ariaLabel: string;
|
|
5
5
|
items: unknown[];
|
|
6
6
|
separator: string;
|
|
7
7
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
8
|
export default _default;
|
|
9
9
|
declare const props: {
|
|
10
|
-
readonly ariaLabel: string;
|
|
11
10
|
readonly variant: string;
|
|
11
|
+
readonly ariaLabel: string;
|
|
12
12
|
readonly items: unknown[];
|
|
13
13
|
readonly separator: string;
|
|
14
14
|
};
|
|
@@ -7,8 +7,8 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
8
|
size: string;
|
|
9
9
|
variant: string;
|
|
10
|
-
disabled: boolean;
|
|
11
10
|
loading: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
12
|
loadingText?: string;
|
|
13
13
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
14
|
type __VLS_Slots = {
|
|
@@ -19,8 +19,8 @@ type __VLS_Slots = {
|
|
|
19
19
|
declare const props: {
|
|
20
20
|
readonly size: string;
|
|
21
21
|
readonly variant: string;
|
|
22
|
-
readonly disabled: boolean;
|
|
23
22
|
readonly loading: boolean;
|
|
23
|
+
readonly disabled: boolean;
|
|
24
24
|
readonly loadingText?: string;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=Button.vue.d.ts.map
|
|
@@ -6,33 +6,33 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: typeof emit;
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
|
-
required: boolean;
|
|
10
9
|
size: string;
|
|
11
10
|
variant: string;
|
|
11
|
+
required: boolean;
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
modelValue: boolean | unknown[];
|
|
14
14
|
indeterminate: boolean;
|
|
15
|
+
error?: string;
|
|
15
16
|
value?: string | number | boolean;
|
|
16
17
|
label?: string;
|
|
17
18
|
description?: string;
|
|
18
19
|
id?: string;
|
|
19
|
-
error?: 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;
|
|
23
23
|
};
|
|
24
24
|
declare const emit: (event: "update:modelValue" | "change", ...args: any[]) => void;
|
|
25
25
|
declare const props: {
|
|
26
|
-
readonly required: boolean;
|
|
27
26
|
readonly size: string;
|
|
28
27
|
readonly variant: string;
|
|
28
|
+
readonly required: boolean;
|
|
29
29
|
readonly disabled: boolean;
|
|
30
30
|
readonly modelValue: boolean | unknown[];
|
|
31
31
|
readonly indeterminate: boolean;
|
|
32
|
+
readonly error?: string;
|
|
32
33
|
readonly value?: string | number | boolean;
|
|
33
34
|
readonly label?: string;
|
|
34
35
|
readonly description?: string;
|
|
35
36
|
readonly id?: string;
|
|
36
|
-
readonly error?: string;
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=Checkbox.vue.d.ts.map
|
|
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: typeof emit;
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
|
-
data: unknown[];
|
|
10
9
|
variant: string;
|
|
10
|
+
data: unknown[];
|
|
11
11
|
hoverable: boolean;
|
|
12
12
|
columns: unknown[];
|
|
13
13
|
selectable: boolean;
|
|
@@ -51,8 +51,8 @@ type __VLS_Slots = {
|
|
|
51
51
|
};
|
|
52
52
|
declare const emit: (event: "row-click" | "selection-change" | "sort-change", ...args: any[]) => void;
|
|
53
53
|
declare const props: {
|
|
54
|
-
readonly data: unknown[];
|
|
55
54
|
readonly variant: string;
|
|
55
|
+
readonly data: unknown[];
|
|
56
56
|
readonly hoverable: boolean;
|
|
57
57
|
readonly columns: unknown[];
|
|
58
58
|
readonly selectable: boolean;
|
|
@@ -11,7 +11,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
11
11
|
column: Record<string, any>;
|
|
12
12
|
textSize: string;
|
|
13
13
|
textColor: string;
|
|
14
|
-
value?: string | number | boolean | Record<string, any
|
|
14
|
+
value?: string | number | boolean | unknown[] | Record<string, any>;
|
|
15
15
|
width?: string;
|
|
16
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
17
|
type __VLS_Slots = {
|
|
@@ -24,7 +24,7 @@ declare const props: {
|
|
|
24
24
|
readonly column: Record<string, any>;
|
|
25
25
|
readonly textSize: string;
|
|
26
26
|
readonly textColor: string;
|
|
27
|
-
readonly value?: string | number | boolean | Record<string, any
|
|
27
|
+
readonly value?: string | number | boolean | unknown[] | Record<string, any>;
|
|
28
28
|
readonly width?: string;
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=DataTableCell.vue.d.ts.map
|
|
@@ -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":"wBA+nCqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;2OAGrC;;;;AA1pBH,+KAQE;AAzDF;;;;;;;;;;;;EA+CE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTableToolBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTableToolBar.vue"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"DataTableToolBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTableToolBar.vue"],"names":[],"mappings":";;YA24BmB,OAAO;;;;;;;;;;;;;MAAc;;;;;;;;;;;;;;cA/C1B,CAAC,KAAK,IAAiB,KAAK,GAAG;;;qBAwDxB,CAAC,EAAE,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: typeof __VLS_emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
|
-
required: boolean;
|
|
5
4
|
size: string;
|
|
6
5
|
variant: string;
|
|
6
|
+
required: boolean;
|
|
7
7
|
disabled: boolean;
|
|
8
8
|
modelValue?: string;
|
|
9
9
|
id?: string;
|
|
@@ -13,9 +13,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
13
13
|
export default _default;
|
|
14
14
|
declare const __VLS_emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
15
15
|
declare const props: {
|
|
16
|
-
readonly required: boolean;
|
|
17
16
|
readonly size: string;
|
|
18
17
|
readonly variant: string;
|
|
18
|
+
readonly required: boolean;
|
|
19
19
|
readonly disabled: boolean;
|
|
20
20
|
readonly modelValue?: string;
|
|
21
21
|
readonly id?: string;
|
|
@@ -5,13 +5,14 @@ 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
|
-
required: boolean;
|
|
9
8
|
size: string;
|
|
9
|
+
type: string;
|
|
10
|
+
required: boolean;
|
|
11
|
+
success?: string;
|
|
12
|
+
error?: string;
|
|
10
13
|
label?: string;
|
|
11
14
|
description?: string;
|
|
12
15
|
id?: string;
|
|
13
|
-
error?: string;
|
|
14
|
-
success?: string;
|
|
15
16
|
helpText?: string;
|
|
16
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
18
|
type __VLS_Slots = {
|
|
@@ -19,16 +20,19 @@ type __VLS_Slots = {
|
|
|
19
20
|
fieldId: string;
|
|
20
21
|
hasError: boolean;
|
|
21
22
|
ariaDescribedBy: string;
|
|
23
|
+
showPassword: boolean;
|
|
24
|
+
togglePasswordVisibility: () => void;
|
|
22
25
|
}) => any;
|
|
23
26
|
};
|
|
24
27
|
declare const props: {
|
|
25
|
-
readonly required: boolean;
|
|
26
28
|
readonly size: string;
|
|
29
|
+
readonly type: string;
|
|
30
|
+
readonly required: boolean;
|
|
31
|
+
readonly success?: string;
|
|
32
|
+
readonly error?: string;
|
|
27
33
|
readonly label?: string;
|
|
28
34
|
readonly description?: string;
|
|
29
35
|
readonly id?: string;
|
|
30
|
-
readonly error?: string;
|
|
31
|
-
readonly success?: string;
|
|
32
36
|
readonly helpText?: string;
|
|
33
37
|
};
|
|
34
38
|
//# sourceMappingURL=FormField.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormField.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormField.vue"],"names":[],"mappings":"wBAmiBqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;2OAErC;;;;;;;;;;AAhWH;;;;;;;;;;EAcE"}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
|
-
name: string;
|
|
4
3
|
size: string;
|
|
4
|
+
icon: string;
|
|
5
|
+
prefix: string;
|
|
5
6
|
color?: string;
|
|
6
7
|
ariaLabel?: string;
|
|
7
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
9
|
export default _default;
|
|
9
10
|
declare const props: {
|
|
10
|
-
readonly name: string;
|
|
11
11
|
readonly size: string;
|
|
12
|
+
readonly icon: string;
|
|
13
|
+
readonly prefix: string;
|
|
12
14
|
readonly color?: string;
|
|
13
15
|
readonly ariaLabel?: string;
|
|
14
16
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Icon.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Icon.vue"],"names":[],"mappings":";YAqJmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;AA5FxC;;;;;;EAeE"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: typeof emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
|
+
loading: string;
|
|
4
5
|
src: string;
|
|
5
6
|
alt: string;
|
|
6
|
-
loading: string;
|
|
7
7
|
aspectRatio: string;
|
|
8
8
|
objectFit: string;
|
|
9
9
|
showSpinner: boolean;
|
|
@@ -12,9 +12,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
12
12
|
export default _default;
|
|
13
13
|
declare const emit: (event: "error" | "load", ...args: any[]) => void;
|
|
14
14
|
declare const props: {
|
|
15
|
+
readonly loading: string;
|
|
15
16
|
readonly src: string;
|
|
16
17
|
readonly alt: string;
|
|
17
|
-
readonly loading: string;
|
|
18
18
|
readonly aspectRatio: string;
|
|
19
19
|
readonly objectFit: string;
|
|
20
20
|
readonly showSpinner: boolean;
|
|
@@ -4,37 +4,37 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
4
4
|
select: () => any;
|
|
5
5
|
$emit: typeof emit;
|
|
6
6
|
$props: Partial<typeof props>;
|
|
7
|
+
size: string;
|
|
8
|
+
variant: string;
|
|
7
9
|
type: string;
|
|
8
10
|
required: boolean;
|
|
9
11
|
placeholder: string;
|
|
10
|
-
size: string;
|
|
11
|
-
variant: string;
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
modelValue: string | number;
|
|
14
14
|
readonly: boolean;
|
|
15
15
|
clearable: boolean;
|
|
16
16
|
clearLabel: string;
|
|
17
|
-
id?: string;
|
|
18
17
|
error?: string;
|
|
18
|
+
id?: string;
|
|
19
19
|
iconLeft?: string | Record<string, any>;
|
|
20
20
|
iconRight?: string | Record<string, any>;
|
|
21
21
|
autocomplete?: 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
|
-
declare const emit: (event: "update:modelValue" | "blur" | "focus" | "
|
|
24
|
+
declare const emit: (event: "clear" | "update:modelValue" | "blur" | "focus" | "keydown", ...args: any[]) => void;
|
|
25
25
|
declare const props: {
|
|
26
|
+
readonly size: string;
|
|
27
|
+
readonly variant: string;
|
|
26
28
|
readonly type: string;
|
|
27
29
|
readonly required: boolean;
|
|
28
30
|
readonly placeholder: string;
|
|
29
|
-
readonly size: string;
|
|
30
|
-
readonly variant: string;
|
|
31
31
|
readonly disabled: boolean;
|
|
32
32
|
readonly modelValue: string | number;
|
|
33
33
|
readonly readonly: boolean;
|
|
34
34
|
readonly clearable: boolean;
|
|
35
35
|
readonly clearLabel: string;
|
|
36
|
-
readonly id?: string;
|
|
37
36
|
readonly error?: string;
|
|
37
|
+
readonly id?: string;
|
|
38
38
|
readonly iconLeft?: string | Record<string, any>;
|
|
39
39
|
readonly iconRight?: string | Record<string, any>;
|
|
40
40
|
readonly autocomplete?: string;
|
|
@@ -5,8 +5,8 @@ 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
|
-
required: boolean;
|
|
9
8
|
size: string;
|
|
9
|
+
required: boolean;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
class?: string;
|
|
12
12
|
htmlFor?: string;
|
|
@@ -15,8 +15,8 @@ type __VLS_Slots = {
|
|
|
15
15
|
default?: (props: {}) => any;
|
|
16
16
|
};
|
|
17
17
|
declare const props: {
|
|
18
|
-
readonly required: boolean;
|
|
19
18
|
readonly size: string;
|
|
19
|
+
readonly required: boolean;
|
|
20
20
|
readonly disabled: boolean;
|
|
21
21
|
readonly class?: string;
|
|
22
22
|
readonly htmlFor?: string;
|
|
@@ -14,10 +14,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
14
14
|
iconPosition: string;
|
|
15
15
|
showExternalIcon: boolean;
|
|
16
16
|
block: boolean;
|
|
17
|
-
target?: string;
|
|
18
17
|
icon?: string;
|
|
19
|
-
|
|
18
|
+
target?: string;
|
|
20
19
|
to?: string | Record<string, any>;
|
|
20
|
+
href?: string;
|
|
21
21
|
rel?: string;
|
|
22
22
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
23
|
type __VLS_Slots = {
|
|
@@ -33,10 +33,10 @@ declare const props: {
|
|
|
33
33
|
readonly iconPosition: string;
|
|
34
34
|
readonly showExternalIcon: boolean;
|
|
35
35
|
readonly block: boolean;
|
|
36
|
-
readonly target?: string;
|
|
37
36
|
readonly icon?: string;
|
|
38
|
-
readonly
|
|
37
|
+
readonly target?: string;
|
|
39
38
|
readonly to?: string | Record<string, any>;
|
|
39
|
+
readonly href?: string;
|
|
40
40
|
readonly rel?: string;
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=Link.vue.d.ts.map
|
|
@@ -7,9 +7,9 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
$emit: typeof emit;
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
9
|
variant: string;
|
|
10
|
+
icon?: string;
|
|
10
11
|
title?: string;
|
|
11
12
|
role?: string;
|
|
12
|
-
icon?: string;
|
|
13
13
|
description?: string;
|
|
14
14
|
href?: string;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -23,9 +23,9 @@ type __VLS_Slots = {
|
|
|
23
23
|
declare const emit: (event: "click", ...args: any[]) => void;
|
|
24
24
|
declare const props: {
|
|
25
25
|
readonly variant: string;
|
|
26
|
+
readonly icon?: string;
|
|
26
27
|
readonly title?: string;
|
|
27
28
|
readonly role?: string;
|
|
28
|
-
readonly icon?: string;
|
|
29
29
|
readonly description?: string;
|
|
30
30
|
readonly href?: string;
|
|
31
31
|
};
|
|
@@ -2,8 +2,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
3
|
size: string;
|
|
4
4
|
variant: string;
|
|
5
|
-
text?: string;
|
|
6
5
|
class?: string;
|
|
6
|
+
text?: string;
|
|
7
7
|
src?: string;
|
|
8
8
|
alt?: string;
|
|
9
9
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -11,8 +11,8 @@ export default _default;
|
|
|
11
11
|
declare const props: {
|
|
12
12
|
readonly size: string;
|
|
13
13
|
readonly variant: string;
|
|
14
|
-
readonly text?: string;
|
|
15
14
|
readonly class?: string;
|
|
15
|
+
readonly text?: string;
|
|
16
16
|
readonly src?: string;
|
|
17
17
|
readonly alt?: string;
|
|
18
18
|
};
|
|
@@ -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 props>;
|
|
8
8
|
value: string | number | boolean;
|
|
9
|
-
label: string;
|
|
10
9
|
disabled: boolean;
|
|
10
|
+
label: string;
|
|
11
11
|
selected: boolean;
|
|
12
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
13
|
type __VLS_Slots = {
|
|
@@ -15,8 +15,8 @@ type __VLS_Slots = {
|
|
|
15
15
|
};
|
|
16
16
|
declare const props: {
|
|
17
17
|
readonly value: string | number | boolean;
|
|
18
|
-
readonly label: string;
|
|
19
18
|
readonly disabled: boolean;
|
|
19
|
+
readonly label: string;
|
|
20
20
|
readonly selected: boolean;
|
|
21
21
|
};
|
|
22
22
|
//# sourceMappingURL=Option.vue.d.ts.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
|
-
value: number;
|
|
4
3
|
size: string;
|
|
5
4
|
variant: string;
|
|
5
|
+
value: number;
|
|
6
6
|
max: number;
|
|
7
7
|
showLabel: boolean;
|
|
8
8
|
class?: string;
|
|
9
9
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
10
|
export default _default;
|
|
11
11
|
declare const props: {
|
|
12
|
-
readonly value: number;
|
|
13
12
|
readonly size: string;
|
|
14
13
|
readonly variant: string;
|
|
14
|
+
readonly value: number;
|
|
15
15
|
readonly max: number;
|
|
16
16
|
readonly showLabel: boolean;
|
|
17
17
|
readonly class?: string;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: typeof emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
|
-
value: unknown;
|
|
5
4
|
size: string;
|
|
5
|
+
value: unknown;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
modelValue: any;
|
|
8
|
-
label?: string;
|
|
9
8
|
class?: string;
|
|
9
|
+
label?: string;
|
|
10
10
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
11
|
export default _default;
|
|
12
12
|
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
13
13
|
declare const props: {
|
|
14
|
-
readonly value: unknown;
|
|
15
14
|
readonly size: string;
|
|
15
|
+
readonly value: unknown;
|
|
16
16
|
readonly disabled: boolean;
|
|
17
17
|
readonly modelValue: any;
|
|
18
|
-
readonly label?: string;
|
|
19
18
|
readonly class?: string;
|
|
19
|
+
readonly label?: string;
|
|
20
20
|
};
|
|
21
21
|
//# sourceMappingURL=Radio.vue.d.ts.map
|
|
@@ -6,10 +6,10 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: typeof emit;
|
|
8
8
|
$props: Partial<typeof props>;
|
|
9
|
-
placeholder: string;
|
|
10
9
|
size: string;
|
|
11
|
-
disabled: boolean;
|
|
12
10
|
loading: boolean;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
disabled: boolean;
|
|
13
13
|
modelValue: string;
|
|
14
14
|
clearable: boolean;
|
|
15
15
|
clearLabel: string;
|
|
@@ -23,12 +23,12 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
23
23
|
type __VLS_Slots = {
|
|
24
24
|
footer?: (props: {}) => any;
|
|
25
25
|
};
|
|
26
|
-
declare const emit: (event: "search" | "select" | "update:modelValue" | "blur" | "focus"
|
|
26
|
+
declare const emit: (event: "clear" | "search" | "select" | "update:modelValue" | "blur" | "focus", ...args: any[]) => void;
|
|
27
27
|
declare const props: {
|
|
28
|
-
readonly placeholder: string;
|
|
29
28
|
readonly size: string;
|
|
30
|
-
readonly disabled: boolean;
|
|
31
29
|
readonly loading: boolean;
|
|
30
|
+
readonly placeholder: string;
|
|
31
|
+
readonly disabled: boolean;
|
|
32
32
|
readonly modelValue: string;
|
|
33
33
|
readonly clearable: boolean;
|
|
34
34
|
readonly clearLabel: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
3
|
size: string;
|
|
4
|
-
label: string;
|
|
5
4
|
variant: string;
|
|
5
|
+
label: string;
|
|
6
6
|
class?: string;
|
|
7
7
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
8
|
export default _default;
|
|
9
9
|
declare const props: {
|
|
10
10
|
readonly size: string;
|
|
11
|
-
readonly label: string;
|
|
12
11
|
readonly variant: string;
|
|
12
|
+
readonly label: string;
|
|
13
13
|
readonly class?: string;
|
|
14
14
|
};
|
|
15
15
|
//# sourceMappingURL=Spinner.vue.d.ts.map
|
|
@@ -4,35 +4,35 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
4
4
|
select: () => any;
|
|
5
5
|
$emit: typeof emit;
|
|
6
6
|
$props: Partial<typeof props>;
|
|
7
|
-
required: boolean;
|
|
8
|
-
placeholder: string;
|
|
9
7
|
size: string;
|
|
10
8
|
variant: string;
|
|
9
|
+
required: boolean;
|
|
10
|
+
placeholder: string;
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
readonly: boolean;
|
|
14
14
|
rows: number;
|
|
15
15
|
resize: string;
|
|
16
16
|
autoResize: boolean;
|
|
17
|
-
id?: string;
|
|
18
17
|
error?: string;
|
|
18
|
+
id?: string;
|
|
19
19
|
maxlength?: number;
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
21
|
export default _default;
|
|
22
22
|
declare const emit: (event: "update:modelValue" | "blur" | "focus" | "keydown", ...args: any[]) => void;
|
|
23
23
|
declare const props: {
|
|
24
|
-
readonly required: boolean;
|
|
25
|
-
readonly placeholder: string;
|
|
26
24
|
readonly size: string;
|
|
27
25
|
readonly variant: string;
|
|
26
|
+
readonly required: boolean;
|
|
27
|
+
readonly placeholder: string;
|
|
28
28
|
readonly disabled: boolean;
|
|
29
29
|
readonly modelValue: string;
|
|
30
30
|
readonly readonly: boolean;
|
|
31
31
|
readonly rows: number;
|
|
32
32
|
readonly resize: string;
|
|
33
33
|
readonly autoResize: boolean;
|
|
34
|
-
readonly id?: string;
|
|
35
34
|
readonly error?: string;
|
|
35
|
+
readonly id?: string;
|
|
36
36
|
readonly maxlength?: number;
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=Textarea.vue.d.ts.map
|
|
@@ -5,8 +5,8 @@ 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
|
-
color: string;
|
|
9
8
|
variant: string;
|
|
9
|
+
color: string;
|
|
10
10
|
underline: boolean;
|
|
11
11
|
align: string;
|
|
12
12
|
italic: boolean;
|
|
@@ -17,8 +17,8 @@ type __VLS_Slots = {
|
|
|
17
17
|
default?: (props: {}) => any;
|
|
18
18
|
};
|
|
19
19
|
declare const props: {
|
|
20
|
-
readonly color: string;
|
|
21
20
|
readonly variant: string;
|
|
21
|
+
readonly color: string;
|
|
22
22
|
readonly underline: boolean;
|
|
23
23
|
readonly align: string;
|
|
24
24
|
readonly italic: boolean;
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;IA+JE,+CAUC;;mBAzKgB,yBAAyB;kBAC1B,wBAAwB;mBACvB,yBAAyB;qBACvB,2BAA2B;oBAC5B,0BAA0B;iBAC7B,uBAAuB;kBACtB,wBAAwB;kBACxB,wBAAwB;kBACxB,wBAAwB;iBACzB,uBAAuB;iBACvB,uBAAuB;mBACrB,yBAAyB;wBACpB,8BAA8B;kBACpC,wBAAwB;mBACvB,yBAAyB;oBACxB,0BAA0B;mBAC3B,yBAAyB;iBAC3B,uBAAuB;qBACnB,2BAA2B;oBAC5B,0BAA0B;uBACvB,6BAA6B;kBAElC,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;oBACxB,0BAA0B;qBACzB,2BAA2B;yBACvB,+BAA+B;uBAEjC,0BAA0B;0BACvB,6BAA6B;wBAC/B,2BAA2B;sBAGjB,aAAa;2BAAb,aAAa"}
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
7
2
|
navigate: (itemName: any) => void;
|
|
8
3
|
toggleSidebar: () => void;
|
|
9
4
|
updateCurrentPage: (section: any, page: any) => void;
|
|
@@ -15,9 +10,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
15
10
|
initialSection: string;
|
|
16
11
|
initialPage: string;
|
|
17
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
|
|
19
|
-
default?: (props: {}) => any;
|
|
20
|
-
};
|
|
13
|
+
export default _default;
|
|
21
14
|
declare const emit: (event: "search" | "profile-action" | "logout" | "navigate" | "sidebar-toggle", ...args: any[]) => void;
|
|
22
15
|
declare const props: {
|
|
23
16
|
readonly user: Record<string, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardLayout.vue.d.ts","sourceRoot":"","sources":["../../../src/layouts/DashboardLayout.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DashboardLayout.vue.d.ts","sourceRoot":"","sources":["../../../src/layouts/DashboardLayout.vue"],"names":[],"mappings":";;;;;;WAwlBkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;AAvUxC,4HAME;AA1BF;;;;EAiBE"}
|