@stlhorizon/vue-ui 1.2.2 → 1.2.4
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 +519 -549
- package/dist/index.js +13 -13
- 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 +6 -6
- package/dist/src/components/DataTable.vue.d.ts +2 -2
- package/dist/src/components/DataTableCell.vue.d.ts +2 -2
- package/dist/src/components/DatePicker.vue.d.ts +4 -4
- package/dist/src/components/FormField.vue.d.ts +8 -8
- package/dist/src/components/Icon.vue.d.ts +2 -2
- package/dist/src/components/Image.vue.d.ts +2 -2
- package/dist/src/components/Input.vue.d.ts +9 -9
- package/dist/src/components/Label.vue.d.ts +2 -2
- package/dist/src/components/Link.vue.d.ts +4 -4
- package/dist/src/components/ProgressBar.vue.d.ts +2 -2
- package/dist/src/components/Radio.vue.d.ts +2 -2
- 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/layouts/ErrorLayout.vue.d.ts +6 -6
- package/dist/src/router/AuthRoutes.d.ts +15 -0
- package/dist/src/router/AuthRoutes.d.ts.map +1 -0
- package/dist/src/router/index.d.ts +1 -1
- package/dist/src/router/index.d.ts.map +1 -1
- package/dist/src/views/authentication/ForgotPasswordPage.vue.d.ts +3 -0
- package/dist/src/views/authentication/ForgotPasswordPage.vue.d.ts.map +1 -0
- package/dist/src/views/authentication/LoginPage.vue.d.ts +3 -0
- package/dist/src/views/authentication/LoginPage.vue.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -1
- package/package.json +2 -1
|
@@ -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
|
-
showIcon: boolean;
|
|
12
11
|
dismissLabel: string;
|
|
12
|
+
showIcon: boolean;
|
|
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 showIcon: boolean;
|
|
28
27
|
readonly dismissLabel: string;
|
|
28
|
+
readonly showIcon: boolean;
|
|
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
|
-
dismissible: boolean;
|
|
12
11
|
shape: string;
|
|
12
|
+
dismissible: boolean;
|
|
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 dismissible: boolean;
|
|
24
23
|
readonly shape: string;
|
|
24
|
+
readonly dismissible: boolean;
|
|
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
|
-
variant: string;
|
|
4
3
|
ariaLabel: string;
|
|
4
|
+
variant: 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 variant: string;
|
|
11
10
|
readonly ariaLabel: string;
|
|
11
|
+
readonly variant: 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
|
-
loading: boolean;
|
|
11
10
|
disabled: boolean;
|
|
11
|
+
loading: 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 loading: boolean;
|
|
23
22
|
readonly disabled: boolean;
|
|
23
|
+
readonly loading: 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;
|
|
9
10
|
size: string;
|
|
10
11
|
variant: string;
|
|
11
|
-
required: boolean;
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
modelValue: boolean | unknown[];
|
|
14
14
|
indeterminate: boolean;
|
|
15
|
-
error?: string;
|
|
16
15
|
value?: string | number | boolean;
|
|
17
16
|
label?: string;
|
|
18
|
-
id?: string;
|
|
19
17
|
description?: string;
|
|
18
|
+
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;
|
|
26
27
|
readonly size: string;
|
|
27
28
|
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;
|
|
33
32
|
readonly value?: string | number | boolean;
|
|
34
33
|
readonly label?: string;
|
|
35
|
-
readonly id?: string;
|
|
36
34
|
readonly description?: string;
|
|
35
|
+
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
|
-
variant: string;
|
|
10
9
|
data: unknown[];
|
|
10
|
+
variant: string;
|
|
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 variant: string;
|
|
55
54
|
readonly data: unknown[];
|
|
55
|
+
readonly variant: string;
|
|
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 |
|
|
14
|
+
value?: string | number | boolean | Record<string, any> | unknown[];
|
|
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 |
|
|
27
|
+
readonly value?: string | number | boolean | Record<string, any> | unknown[];
|
|
28
28
|
readonly width?: string;
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=DataTableCell.vue.d.ts.map
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: typeof __VLS_emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
|
+
required: boolean;
|
|
4
5
|
size: string;
|
|
5
6
|
variant: string;
|
|
6
|
-
required: boolean;
|
|
7
7
|
disabled: boolean;
|
|
8
|
-
id?: string;
|
|
9
8
|
modelValue?: string;
|
|
9
|
+
id?: string;
|
|
10
10
|
max?: string;
|
|
11
11
|
min?: string;
|
|
12
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
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;
|
|
16
17
|
readonly size: string;
|
|
17
18
|
readonly variant: string;
|
|
18
|
-
readonly required: boolean;
|
|
19
19
|
readonly disabled: boolean;
|
|
20
|
-
readonly id?: string;
|
|
21
20
|
readonly modelValue?: string;
|
|
21
|
+
readonly id?: string;
|
|
22
22
|
readonly max?: string;
|
|
23
23
|
readonly min?: string;
|
|
24
24
|
};
|
|
@@ -5,13 +5,13 @@ 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
|
-
size: string;
|
|
9
8
|
required: boolean;
|
|
10
|
-
|
|
11
|
-
error?: string;
|
|
9
|
+
size: string;
|
|
12
10
|
label?: string;
|
|
13
|
-
id?: string;
|
|
14
11
|
description?: string;
|
|
12
|
+
id?: string;
|
|
13
|
+
error?: string;
|
|
14
|
+
success?: string;
|
|
15
15
|
helpText?: 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 = {
|
|
@@ -22,13 +22,13 @@ type __VLS_Slots = {
|
|
|
22
22
|
}) => any;
|
|
23
23
|
};
|
|
24
24
|
declare const props: {
|
|
25
|
-
readonly size: string;
|
|
26
25
|
readonly required: boolean;
|
|
27
|
-
readonly
|
|
28
|
-
readonly error?: string;
|
|
26
|
+
readonly size: string;
|
|
29
27
|
readonly label?: string;
|
|
30
|
-
readonly id?: string;
|
|
31
28
|
readonly description?: string;
|
|
29
|
+
readonly id?: string;
|
|
30
|
+
readonly error?: string;
|
|
31
|
+
readonly success?: string;
|
|
32
32
|
readonly helpText?: string;
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=FormField.vue.d.ts.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: Partial<typeof props>;
|
|
3
|
-
size: string;
|
|
4
3
|
name: string;
|
|
4
|
+
size: string;
|
|
5
5
|
color?: string;
|
|
6
6
|
ariaLabel?: 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 size: string;
|
|
11
10
|
readonly name: string;
|
|
11
|
+
readonly size: string;
|
|
12
12
|
readonly color?: string;
|
|
13
13
|
readonly ariaLabel?: string;
|
|
14
14
|
};
|
|
@@ -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;
|
|
5
4
|
src: string;
|
|
6
5
|
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;
|
|
16
15
|
readonly src: string;
|
|
17
16
|
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;
|
|
9
7
|
type: string;
|
|
10
8
|
required: boolean;
|
|
11
|
-
disabled: boolean;
|
|
12
9
|
placeholder: string;
|
|
10
|
+
size: string;
|
|
11
|
+
variant: string;
|
|
12
|
+
disabled: boolean;
|
|
13
13
|
modelValue: string | number;
|
|
14
14
|
readonly: boolean;
|
|
15
15
|
clearable: boolean;
|
|
16
16
|
clearLabel: string;
|
|
17
|
-
error?: string;
|
|
18
17
|
id?: string;
|
|
18
|
+
error?: 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: "
|
|
24
|
+
declare const emit: (event: "update:modelValue" | "blur" | "focus" | "clear" | "keydown", ...args: any[]) => void;
|
|
25
25
|
declare const props: {
|
|
26
|
-
readonly size: string;
|
|
27
|
-
readonly variant: string;
|
|
28
26
|
readonly type: string;
|
|
29
27
|
readonly required: boolean;
|
|
30
|
-
readonly disabled: boolean;
|
|
31
28
|
readonly placeholder: string;
|
|
29
|
+
readonly size: string;
|
|
30
|
+
readonly variant: string;
|
|
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 error?: string;
|
|
37
36
|
readonly id?: string;
|
|
37
|
+
readonly error?: 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
|
-
size: string;
|
|
9
8
|
required: boolean;
|
|
9
|
+
size: string;
|
|
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 size: string;
|
|
19
18
|
readonly required: boolean;
|
|
19
|
+
readonly size: string;
|
|
20
20
|
readonly disabled: boolean;
|
|
21
21
|
readonly class?: string;
|
|
22
22
|
readonly htmlFor?: string;
|
|
@@ -9,15 +9,15 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
size: string;
|
|
10
10
|
variant: string;
|
|
11
11
|
disabled: boolean;
|
|
12
|
-
block: boolean;
|
|
13
12
|
external: boolean;
|
|
14
13
|
underline: string;
|
|
15
14
|
iconPosition: string;
|
|
16
15
|
showExternalIcon: boolean;
|
|
17
|
-
|
|
16
|
+
block: boolean;
|
|
18
17
|
target?: string;
|
|
19
18
|
icon?: string;
|
|
20
19
|
href?: string;
|
|
20
|
+
to?: string | Record<string, any>;
|
|
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 = {
|
|
@@ -28,15 +28,15 @@ declare const props: {
|
|
|
28
28
|
readonly size: string;
|
|
29
29
|
readonly variant: string;
|
|
30
30
|
readonly disabled: boolean;
|
|
31
|
-
readonly block: boolean;
|
|
32
31
|
readonly external: boolean;
|
|
33
32
|
readonly underline: string;
|
|
34
33
|
readonly iconPosition: string;
|
|
35
34
|
readonly showExternalIcon: boolean;
|
|
36
|
-
readonly
|
|
35
|
+
readonly block: boolean;
|
|
37
36
|
readonly target?: string;
|
|
38
37
|
readonly icon?: string;
|
|
39
38
|
readonly href?: string;
|
|
39
|
+
readonly to?: string | Record<string, any>;
|
|
40
40
|
readonly rel?: string;
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=Link.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;
|
|
3
4
|
size: string;
|
|
4
5
|
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;
|
|
12
13
|
readonly size: string;
|
|
13
14
|
readonly variant: string;
|
|
14
|
-
readonly value: number;
|
|
15
15
|
readonly max: number;
|
|
16
16
|
readonly showLabel: boolean;
|
|
17
17
|
readonly class?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: typeof emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
|
-
size: string;
|
|
5
4
|
value: unknown;
|
|
5
|
+
size: string;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
modelValue: any;
|
|
8
8
|
label?: string;
|
|
@@ -11,8 +11,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
11
11
|
export default _default;
|
|
12
12
|
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
13
13
|
declare const props: {
|
|
14
|
-
readonly size: string;
|
|
15
14
|
readonly value: unknown;
|
|
15
|
+
readonly size: string;
|
|
16
16
|
readonly disabled: boolean;
|
|
17
17
|
readonly modelValue: any;
|
|
18
18
|
readonly label?: string;
|
|
@@ -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;
|
|
9
10
|
size: string;
|
|
10
|
-
loading: boolean;
|
|
11
11
|
disabled: boolean;
|
|
12
|
-
|
|
12
|
+
loading: 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: "
|
|
26
|
+
declare const emit: (event: "search" | "select" | "update:modelValue" | "blur" | "focus" | "clear", ...args: any[]) => void;
|
|
27
27
|
declare const props: {
|
|
28
|
+
readonly placeholder: string;
|
|
28
29
|
readonly size: string;
|
|
29
|
-
readonly loading: boolean;
|
|
30
30
|
readonly disabled: boolean;
|
|
31
|
-
readonly
|
|
31
|
+
readonly loading: 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
|
-
variant: string;
|
|
5
4
|
label: string;
|
|
5
|
+
variant: 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 variant: string;
|
|
12
11
|
readonly label: string;
|
|
12
|
+
readonly variant: 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;
|
|
7
9
|
size: string;
|
|
8
10
|
variant: string;
|
|
9
|
-
required: boolean;
|
|
10
11
|
disabled: boolean;
|
|
11
|
-
placeholder: string;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
readonly: boolean;
|
|
14
14
|
rows: number;
|
|
15
15
|
resize: string;
|
|
16
16
|
autoResize: boolean;
|
|
17
|
-
error?: string;
|
|
18
17
|
id?: string;
|
|
18
|
+
error?: 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;
|
|
24
26
|
readonly size: string;
|
|
25
27
|
readonly variant: string;
|
|
26
|
-
readonly required: boolean;
|
|
27
28
|
readonly disabled: boolean;
|
|
28
|
-
readonly placeholder: string;
|
|
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 error?: string;
|
|
35
34
|
readonly id?: string;
|
|
35
|
+
readonly error?: 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
|
-
variant: string;
|
|
9
8
|
color: string;
|
|
9
|
+
variant: 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 variant: string;
|
|
21
20
|
readonly color: string;
|
|
21
|
+
readonly variant: string;
|
|
22
22
|
readonly underline: boolean;
|
|
23
23
|
readonly align: string;
|
|
24
24
|
readonly italic: boolean;
|
|
@@ -193,14 +193,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
193
193
|
$props: Partial<{
|
|
194
194
|
readonly size: string;
|
|
195
195
|
readonly variant: string;
|
|
196
|
-
readonly loading: boolean;
|
|
197
196
|
readonly disabled: boolean;
|
|
197
|
+
readonly loading: boolean;
|
|
198
198
|
readonly loadingText?: string;
|
|
199
199
|
}>;
|
|
200
200
|
size: string;
|
|
201
201
|
variant: string;
|
|
202
|
-
loading: boolean;
|
|
203
202
|
disabled: boolean;
|
|
203
|
+
loading: boolean;
|
|
204
204
|
loadingText?: string;
|
|
205
205
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
206
206
|
P: {};
|
|
@@ -213,14 +213,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
213
213
|
$props: Partial<{
|
|
214
214
|
readonly size: string;
|
|
215
215
|
readonly variant: string;
|
|
216
|
-
readonly loading: boolean;
|
|
217
216
|
readonly disabled: boolean;
|
|
217
|
+
readonly loading: boolean;
|
|
218
218
|
readonly loadingText?: string;
|
|
219
219
|
}>;
|
|
220
220
|
size: string;
|
|
221
221
|
variant: string;
|
|
222
|
-
loading: boolean;
|
|
223
222
|
disabled: boolean;
|
|
223
|
+
loading: boolean;
|
|
224
224
|
loadingText?: string;
|
|
225
225
|
}, {}, {}, {}, {}>;
|
|
226
226
|
__isFragment?: never;
|
|
@@ -230,14 +230,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
230
230
|
$props: Partial<{
|
|
231
231
|
readonly size: string;
|
|
232
232
|
readonly variant: string;
|
|
233
|
-
readonly loading: boolean;
|
|
234
233
|
readonly disabled: boolean;
|
|
234
|
+
readonly loading: boolean;
|
|
235
235
|
readonly loadingText?: string;
|
|
236
236
|
}>;
|
|
237
237
|
size: string;
|
|
238
238
|
variant: string;
|
|
239
|
-
loading: boolean;
|
|
240
239
|
disabled: boolean;
|
|
240
|
+
loading: boolean;
|
|
241
241
|
loadingText?: string;
|
|
242
242
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
243
243
|
$slots: {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default AuthRoutes;
|
|
2
|
+
declare namespace AuthRoutes {
|
|
3
|
+
export let path: string;
|
|
4
|
+
export { AuthLayout as component };
|
|
5
|
+
export namespace meta {
|
|
6
|
+
let requiresAuth: boolean;
|
|
7
|
+
}
|
|
8
|
+
export let children: {
|
|
9
|
+
name: string;
|
|
10
|
+
path: string;
|
|
11
|
+
component: () => Promise<typeof import("../views/authentication/LoginPage.vue")>;
|
|
12
|
+
}[];
|
|
13
|
+
}
|
|
14
|
+
import AuthLayout from '../layouts/AuthLayout.vue';
|
|
15
|
+
//# sourceMappingURL=AuthRoutes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthRoutes.d.ts","sourceRoot":"","sources":["../../../src/router/AuthRoutes.js"],"names":[],"mappings":";;;;;;;;;;;;;uBAAuB,2BAA2B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/router/index.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/router/index.js"],"names":[],"mappings":";AAGA,kDAKE"}
|
|
@@ -0,0 +1,3 @@
|
|
|
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;
|
|
3
|
+
//# sourceMappingURL=ForgotPasswordPage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForgotPasswordPage.vue.d.ts","sourceRoot":"","sources":["../../../../src/views/authentication/ForgotPasswordPage.vue"],"names":[],"mappings":";AAgmBA,wBACG"}
|
|
@@ -0,0 +1,3 @@
|
|
|
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;
|
|
3
|
+
//# sourceMappingURL=LoginPage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoginPage.vue.d.ts","sourceRoot":"","sources":["../../../../src/views/authentication/LoginPage.vue"],"names":[],"mappings":";AAkgBA,wBACG"}
|