@stlhorizon/vue-ui 1.2.3 → 1.2.5
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 +387 -339
- package/dist/index.js +1 -1
- 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 +13 -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
|
@@ -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,13 @@
|
|
|
1
|
+
export default AuthRoutes;
|
|
2
|
+
declare namespace AuthRoutes {
|
|
3
|
+
let path: string;
|
|
4
|
+
namespace meta {
|
|
5
|
+
let requiresAuth: boolean;
|
|
6
|
+
}
|
|
7
|
+
let children: {
|
|
8
|
+
name: string;
|
|
9
|
+
path: string;
|
|
10
|
+
component: () => Promise<typeof import("../views/authentication/LoginPage.vue")>;
|
|
11
|
+
}[];
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AuthRoutes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthRoutes.d.ts","sourceRoot":"","sources":["../../../src/router/AuthRoutes.js"],"names":[],"mappings":""}
|
|
@@ -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,kDASE"}
|
|
@@ -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":";AA4lBA,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"}
|