@simsustech/quasar-components 0.4.4 → 0.4.6
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/CHANGELOG.md +12 -0
- package/dist/{QSubmitButton.vue_vue_type_script_setup_true_lang-b5f452c6.js → QSubmitButton.vue_vue_type_script_setup_true_lang-62670a79.js} +12 -5
- package/dist/authentication.js +21 -23
- package/dist/form.js +11 -4
- package/dist/general.js +5 -3
- package/dist/{nl-022c8c63.js → nl-f499b5cb.js} +1 -1
- package/dist/types/ui/authentication/ConsentList.vue.d.ts +10 -35
- package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +12 -29
- package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +13 -16
- package/dist/types/ui/authentication/LoginButton.vue.d.ts +10 -12
- package/dist/types/ui/authentication/LoginForm.vue.d.ts +12 -33
- package/dist/types/ui/authentication/OtpInput.vue.d.ts +16 -11
- package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +28 -41
- package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +13 -16
- package/dist/types/ui/authentication/RegisterForm.vue.d.ts +30 -55
- package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +12 -21
- package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +11 -12
- package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +11 -10
- package/dist/types/ui/form/BooleanItem.vue.d.ts +9 -18
- package/dist/types/ui/form/BooleanSelect.vue.d.ts +12 -23
- package/dist/types/ui/form/DateInput.vue.d.ts +11 -34
- package/dist/types/ui/form/DatePicker.vue.d.ts +25 -34
- package/dist/types/ui/form/EmailInput.vue.d.ts +11 -20
- package/dist/types/ui/form/FormInput.vue.d.ts +10 -27
- package/dist/types/ui/form/FormItem.vue.d.ts +10 -21
- package/dist/types/ui/form/GenderItem.vue.d.ts +9 -10
- package/dist/types/ui/form/GenderSelect.vue.d.ts +12 -23
- package/dist/types/ui/form/PostalCodeInput.vue.d.ts +12 -25
- package/dist/types/ui/form/TelephoneNumberInput.vue.d.ts +12 -17
- package/dist/types/ui/general/QLanguageSelect.vue.d.ts +9 -18
- package/dist/types/ui/general/QStyledCard.vue.d.ts +11 -10
- package/dist/types/ui/general/QStyledLayout.vue.d.ts +11 -12
- package/dist/types/ui/general/QSubmitButton.vue.d.ts +10 -3
- package/dist/types/ui/general/ResourcePage.vue.d.ts +27 -22
- package/dist/types/ui/general/ResponsiveDialog.vue.d.ts +12 -11
- package/package.json +1 -1
- package/src/ui/authentication/LoginButton.vue +7 -31
- package/src/ui/form/DateInput.vue +4 -1
- package/src/ui/general/QSubmitButton.vue +5 -2
- package/src/ui/general/lang/nl.ts +1 -1
|
@@ -7,26 +7,11 @@ export interface Props {
|
|
|
7
7
|
style?: Partial<CSSStyleDeclaration>;
|
|
8
8
|
})>;
|
|
9
9
|
}
|
|
10
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
minimumPasswordLength: {
|
|
16
|
-
type: import("vue").PropType<number>;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
|
-
form: {
|
|
20
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
21
|
-
default: undefined;
|
|
22
|
-
};
|
|
23
|
-
input: {
|
|
24
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
25
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
26
|
-
})>>;
|
|
27
|
-
default: undefined;
|
|
28
|
-
};
|
|
29
|
-
}, {
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
11
|
+
minimumPasswordLength: number;
|
|
12
|
+
form: undefined;
|
|
13
|
+
input: undefined;
|
|
14
|
+
}>, {
|
|
30
15
|
variables: import("vue").Ref<{
|
|
31
16
|
header: string;
|
|
32
17
|
}>;
|
|
@@ -37,32 +22,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
22
|
}) => any;
|
|
38
23
|
}>;
|
|
39
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
40
|
-
submit: (
|
|
25
|
+
submit: (args_0: {
|
|
41
26
|
email: string;
|
|
42
27
|
newPassword: string;
|
|
43
28
|
otp: string;
|
|
44
29
|
done: () => void;
|
|
45
30
|
}) => void;
|
|
46
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
minimumPasswordLength: {
|
|
52
|
-
type: import("vue").PropType<number>;
|
|
53
|
-
default: number;
|
|
54
|
-
};
|
|
55
|
-
form: {
|
|
56
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
57
|
-
default: undefined;
|
|
58
|
-
};
|
|
59
|
-
input: {
|
|
60
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
61
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
62
|
-
})>>;
|
|
63
|
-
default: undefined;
|
|
64
|
-
};
|
|
65
|
-
}>> & {
|
|
31
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
32
|
+
minimumPasswordLength: number;
|
|
33
|
+
form: undefined;
|
|
34
|
+
input: undefined;
|
|
35
|
+
}>>> & {
|
|
66
36
|
onSubmit?: ((args_0: {
|
|
67
37
|
email: string;
|
|
68
38
|
newPassword: string;
|
|
@@ -84,6 +54,23 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
84
54
|
}): any;
|
|
85
55
|
}>;
|
|
86
56
|
export default _default;
|
|
57
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
59
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
60
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
61
|
+
} : {
|
|
62
|
+
type: import('vue').PropType<T[K]>;
|
|
63
|
+
required: true;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
type __VLS_WithDefaults<P, D> = {
|
|
67
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
68
|
+
default: D[K];
|
|
69
|
+
}> : P[K];
|
|
70
|
+
};
|
|
71
|
+
type __VLS_Prettify<T> = {
|
|
72
|
+
[K in keyof T]: T[K];
|
|
73
|
+
} & {};
|
|
87
74
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
88
75
|
new (): {
|
|
89
76
|
$slots: S;
|
|
@@ -4,13 +4,7 @@ export interface Props {
|
|
|
4
4
|
style?: Partial<CSSStyleDeclaration>;
|
|
5
5
|
})>;
|
|
6
6
|
}
|
|
7
|
-
declare const _default: import("vue").DefineComponent<{
|
|
8
|
-
input: {
|
|
9
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
10
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
11
|
-
})>>;
|
|
12
|
-
};
|
|
13
|
-
}, {
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
14
8
|
variables: import("vue").Ref<{
|
|
15
9
|
header: string;
|
|
16
10
|
passwordChanged: string;
|
|
@@ -22,23 +16,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
16
|
goToStep: (newStep: "changePassword" | "requestOtp") => "changePassword" | "requestOtp";
|
|
23
17
|
}>;
|
|
24
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
requestOtp: (
|
|
19
|
+
requestOtp: (args_0: {
|
|
26
20
|
email: string;
|
|
27
21
|
done: () => void;
|
|
28
22
|
}) => void;
|
|
29
|
-
changePassword: (
|
|
23
|
+
changePassword: (args_0: {
|
|
30
24
|
email: string;
|
|
31
25
|
newPassword: string;
|
|
32
26
|
otp: string;
|
|
33
27
|
done: () => void;
|
|
34
28
|
}) => void;
|
|
35
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
-
input: {
|
|
37
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
38
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
39
|
-
})>>;
|
|
40
|
-
};
|
|
41
|
-
}>> & {
|
|
29
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
42
30
|
onRequestOtp?: ((args_0: {
|
|
43
31
|
email: string;
|
|
44
32
|
done: () => void;
|
|
@@ -51,3 +39,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
39
|
}) => any) | undefined;
|
|
52
40
|
}, {}, {}>;
|
|
53
41
|
export default _default;
|
|
42
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
43
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
44
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
45
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
46
|
+
} : {
|
|
47
|
+
type: import('vue').PropType<T[K]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
@@ -12,33 +12,12 @@ export interface Props {
|
|
|
12
12
|
style?: Partial<CSSStyleDeclaration>;
|
|
13
13
|
})>;
|
|
14
14
|
}
|
|
15
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
16
|
-
minimumPasswordLength:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
22
|
-
default: undefined;
|
|
23
|
-
};
|
|
24
|
-
input: {
|
|
25
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
26
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
27
|
-
})>>;
|
|
28
|
-
default: undefined;
|
|
29
|
-
};
|
|
30
|
-
useUsername: {
|
|
31
|
-
type: import("vue").PropType<boolean>;
|
|
32
|
-
};
|
|
33
|
-
extraFields: {
|
|
34
|
-
type: import("vue").PropType<{
|
|
35
|
-
name: string;
|
|
36
|
-
label: string;
|
|
37
|
-
rules?: ((val: string) => boolean)[] | undefined;
|
|
38
|
-
}[]>;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
}, {
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
|
+
minimumPasswordLength: number;
|
|
17
|
+
extraFields: undefined;
|
|
18
|
+
form: undefined;
|
|
19
|
+
input: undefined;
|
|
20
|
+
}>, {
|
|
42
21
|
variables: import("vue").Ref<{
|
|
43
22
|
header: string;
|
|
44
23
|
forgotPassword: string;
|
|
@@ -53,40 +32,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
53
32
|
}) => any;
|
|
54
33
|
}>;
|
|
55
34
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
56
|
-
submit: (
|
|
35
|
+
submit: (args_0: {
|
|
57
36
|
email?: string | undefined;
|
|
58
37
|
password: string;
|
|
59
38
|
username?: string | undefined;
|
|
60
39
|
extraFields?: Record<string, string> | undefined;
|
|
61
40
|
done: () => void;
|
|
62
41
|
}) => void;
|
|
63
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
-
minimumPasswordLength:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
70
|
-
default: undefined;
|
|
71
|
-
};
|
|
72
|
-
input: {
|
|
73
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
74
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
75
|
-
})>>;
|
|
76
|
-
default: undefined;
|
|
77
|
-
};
|
|
78
|
-
useUsername: {
|
|
79
|
-
type: import("vue").PropType<boolean>;
|
|
80
|
-
};
|
|
81
|
-
extraFields: {
|
|
82
|
-
type: import("vue").PropType<{
|
|
83
|
-
name: string;
|
|
84
|
-
label: string;
|
|
85
|
-
rules?: ((val: string) => boolean)[] | undefined;
|
|
86
|
-
}[]>;
|
|
87
|
-
default: undefined;
|
|
88
|
-
};
|
|
89
|
-
}>> & {
|
|
42
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
43
|
+
minimumPasswordLength: number;
|
|
44
|
+
extraFields: undefined;
|
|
45
|
+
form: undefined;
|
|
46
|
+
input: undefined;
|
|
47
|
+
}>>> & {
|
|
90
48
|
onSubmit?: ((args_0: {
|
|
91
49
|
email?: string | undefined;
|
|
92
50
|
password: string;
|
|
@@ -114,6 +72,23 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
114
72
|
}): any;
|
|
115
73
|
}>;
|
|
116
74
|
export default _default;
|
|
75
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
76
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
77
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
78
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
79
|
+
} : {
|
|
80
|
+
type: import('vue').PropType<T[K]>;
|
|
81
|
+
required: true;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
type __VLS_WithDefaults<P, D> = {
|
|
85
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
86
|
+
default: D[K];
|
|
87
|
+
}> : P[K];
|
|
88
|
+
};
|
|
89
|
+
type __VLS_Prettify<T> = {
|
|
90
|
+
[K in keyof T]: T[K];
|
|
91
|
+
} & {};
|
|
117
92
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
118
93
|
new (): {
|
|
119
94
|
$slots: S;
|
|
@@ -5,16 +5,7 @@ export interface Props {
|
|
|
5
5
|
style?: Partial<CSSStyleDeclaration>;
|
|
6
6
|
})>;
|
|
7
7
|
}
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
9
|
-
form: {
|
|
10
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
11
|
-
};
|
|
12
|
-
input: {
|
|
13
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
14
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
15
|
-
})>>;
|
|
16
|
-
};
|
|
17
|
-
}, {
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
18
9
|
variables: import("vue").Ref<{
|
|
19
10
|
header: string;
|
|
20
11
|
}>;
|
|
@@ -25,20 +16,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
16
|
}) => any;
|
|
26
17
|
}>;
|
|
27
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
-
submit: (
|
|
19
|
+
submit: (args_0: {
|
|
29
20
|
email: string;
|
|
30
21
|
done: () => void;
|
|
31
22
|
}) => void;
|
|
32
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
-
form: {
|
|
34
|
-
type: import("vue").PropType<QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>>;
|
|
35
|
-
};
|
|
36
|
-
input: {
|
|
37
|
-
type: import("vue").PropType<Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "rules" | "autofocus" | "id" | "lazy-rules" | ("label" & {
|
|
38
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
39
|
-
})>>;
|
|
40
|
-
};
|
|
41
|
-
}>> & {
|
|
23
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
42
24
|
onSubmit?: ((args_0: {
|
|
43
25
|
email: string;
|
|
44
26
|
done: () => void;
|
|
@@ -52,6 +34,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
52
34
|
}): any;
|
|
53
35
|
}>;
|
|
54
36
|
export default _default;
|
|
37
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
55
46
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
56
47
|
new (): {
|
|
57
48
|
$slots: S;
|
|
@@ -2,27 +2,26 @@ import type { RouteLocationRaw } from 'vue-router';
|
|
|
2
2
|
export interface Props {
|
|
3
3
|
userRoute: RouteLocationRaw;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
|
-
userRoute: {
|
|
7
|
-
type: import("vue").PropType<RouteLocationRaw>;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
}, {
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
11
6
|
variables: import("vue").Ref<{}>;
|
|
12
7
|
functions: import("vue").Ref<{}>;
|
|
13
8
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
9
|
signOut: () => void;
|
|
15
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
userRoute: {
|
|
17
|
-
type: import("vue").PropType<RouteLocationRaw>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
}>> & {
|
|
10
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
21
11
|
onSignOut?: (() => any) | undefined;
|
|
22
12
|
}, {}, {}>, {
|
|
23
13
|
default?(_: {}): any;
|
|
24
14
|
}>;
|
|
25
15
|
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
26
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
26
|
new (): {
|
|
28
27
|
$slots: S;
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
export interface Props {
|
|
2
2
|
useVerificationSlider?: boolean;
|
|
3
3
|
}
|
|
4
|
-
declare const _default: import("vue").DefineComponent<{
|
|
5
|
-
useVerificationSlider: {
|
|
6
|
-
type: import("vue").PropType<boolean>;
|
|
7
|
-
};
|
|
8
|
-
}, {
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
5
|
variables: import("vue").Ref<{}>;
|
|
10
6
|
functions: import("vue").Ref<{}>;
|
|
11
7
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
8
|
verified: () => void;
|
|
13
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
-
useVerificationSlider: {
|
|
15
|
-
type: import("vue").PropType<boolean>;
|
|
16
|
-
};
|
|
17
|
-
}>> & {
|
|
9
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
18
10
|
onVerified?: (() => any) | undefined;
|
|
19
11
|
}, {}, {}>;
|
|
20
12
|
export default _default;
|
|
13
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
+
} : {
|
|
18
|
+
type: import('vue').PropType<T[K]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -2,23 +2,14 @@ export interface Props {
|
|
|
2
2
|
modelValue: boolean;
|
|
3
3
|
label: string;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import("vue").DefineComponent<{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
modelValue: {
|
|
16
|
-
type: import("vue").PropType<boolean>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
label: {
|
|
20
|
-
type: import("vue").PropType<string>;
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
21
13
|
required: true;
|
|
22
14
|
};
|
|
23
|
-
}
|
|
24
|
-
export default _default;
|
|
15
|
+
};
|
|
@@ -3,29 +3,18 @@ export interface Props {
|
|
|
3
3
|
label?: string;
|
|
4
4
|
required?: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const _default: import("vue").DefineComponent<{
|
|
7
|
-
modelValue:
|
|
8
|
-
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
label: {
|
|
12
|
-
type: import("vue").PropType<string>;
|
|
13
|
-
};
|
|
14
|
-
required: {
|
|
15
|
-
type: import("vue").PropType<boolean>;
|
|
16
|
-
};
|
|
17
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
modelValue: {
|
|
19
|
-
type: import("vue").PropType<boolean | null>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
label: {
|
|
23
|
-
type: import("vue").PropType<string>;
|
|
24
|
-
};
|
|
25
|
-
required: {
|
|
26
|
-
type: import("vue").PropType<boolean>;
|
|
27
|
-
};
|
|
28
|
-
}>> & {
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (...args: any[]) => void;
|
|
8
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
29
9
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
30
10
|
}, {}, {}>;
|
|
31
11
|
export default _default;
|
|
12
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
14
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
|
+
} : {
|
|
17
|
+
type: import('vue').PropType<T[K]>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -6,41 +6,18 @@ export interface Props {
|
|
|
6
6
|
clearable?: boolean;
|
|
7
7
|
date?: Partial<QDateProps>;
|
|
8
8
|
}
|
|
9
|
-
declare const _default: import("vue").DefineComponent<{
|
|
10
|
-
modelValue: {
|
|
11
|
-
type: import("vue").PropType<string | null>;
|
|
12
|
-
};
|
|
13
|
-
label: {
|
|
14
|
-
type: import("vue").PropType<string>;
|
|
15
|
-
};
|
|
16
|
-
required: {
|
|
17
|
-
type: import("vue").PropType<boolean>;
|
|
18
|
-
};
|
|
19
|
-
clearable: {
|
|
20
|
-
type: import("vue").PropType<boolean>;
|
|
21
|
-
};
|
|
22
|
-
date: {
|
|
23
|
-
type: import("vue").PropType<Partial<QDateProps>>;
|
|
24
|
-
};
|
|
25
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
10
|
"update:modelValue": (val: string | null) => void;
|
|
27
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
-
modelValue: {
|
|
29
|
-
type: import("vue").PropType<string | null>;
|
|
30
|
-
};
|
|
31
|
-
label: {
|
|
32
|
-
type: import("vue").PropType<string>;
|
|
33
|
-
};
|
|
34
|
-
required: {
|
|
35
|
-
type: import("vue").PropType<boolean>;
|
|
36
|
-
};
|
|
37
|
-
clearable: {
|
|
38
|
-
type: import("vue").PropType<boolean>;
|
|
39
|
-
};
|
|
40
|
-
date: {
|
|
41
|
-
type: import("vue").PropType<Partial<QDateProps>>;
|
|
42
|
-
};
|
|
43
|
-
}>> & {
|
|
11
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
44
12
|
"onUpdate:modelValue"?: ((val: string | null) => any) | undefined;
|
|
45
13
|
}, {}, {}>;
|
|
46
14
|
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -3,49 +3,40 @@ export interface Period {
|
|
|
3
3
|
endDate: string;
|
|
4
4
|
type: 'unavailable';
|
|
5
5
|
}
|
|
6
|
-
declare const _default: import("vue").DefineComponent<{
|
|
7
|
-
modelValue: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
to: string;
|
|
11
|
-
} | null | undefined>;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
periods: {
|
|
15
|
-
type: import("vue").PropType<Period[]>;
|
|
16
|
-
};
|
|
17
|
-
range: {
|
|
18
|
-
type: import("vue").PropType<boolean>;
|
|
19
|
-
};
|
|
20
|
-
options: {
|
|
21
|
-
type: import("vue").PropType<(date: string) => boolean>;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
modelValue: string | null | undefined | {
|
|
8
|
+
from: string;
|
|
9
|
+
to: string;
|
|
22
10
|
};
|
|
23
|
-
|
|
11
|
+
periods?: Period[] | undefined;
|
|
12
|
+
range?: boolean | undefined;
|
|
13
|
+
options?: ((date: string) => boolean) | undefined;
|
|
14
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
15
|
"update:modelValue": (val: string | {
|
|
25
16
|
from: string;
|
|
26
17
|
to: string;
|
|
27
18
|
}) => void;
|
|
28
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
-
modelValue: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
to: string;
|
|
33
|
-
} | null | undefined>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
periods: {
|
|
37
|
-
type: import("vue").PropType<Period[]>;
|
|
38
|
-
};
|
|
39
|
-
range: {
|
|
40
|
-
type: import("vue").PropType<boolean>;
|
|
41
|
-
};
|
|
42
|
-
options: {
|
|
43
|
-
type: import("vue").PropType<(date: string) => boolean>;
|
|
19
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
20
|
+
modelValue: string | null | undefined | {
|
|
21
|
+
from: string;
|
|
22
|
+
to: string;
|
|
44
23
|
};
|
|
45
|
-
|
|
24
|
+
periods?: Period[] | undefined;
|
|
25
|
+
range?: boolean | undefined;
|
|
26
|
+
options?: ((date: string) => boolean) | undefined;
|
|
27
|
+
}>>> & {
|
|
46
28
|
"onUpdate:modelValue"?: ((val: string | {
|
|
47
29
|
from: string;
|
|
48
30
|
to: string;
|
|
49
31
|
}) => any) | undefined;
|
|
50
32
|
}, {}, {}>;
|
|
51
33
|
export default _default;
|
|
34
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
36
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
+
} : {
|
|
39
|
+
type: import('vue').PropType<T[K]>;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -2,32 +2,23 @@ export interface Props {
|
|
|
2
2
|
subject: string;
|
|
3
3
|
body: string;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import("vue").DefineComponent<{
|
|
6
|
-
subject: {
|
|
7
|
-
type: import("vue").PropType<string>;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
body: {
|
|
11
|
-
type: import("vue").PropType<string>;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
}, {
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
15
6
|
variables: import("vue").Ref<{}>;
|
|
16
7
|
functions: import("vue").Ref<{}>;
|
|
17
8
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
9
|
"update:subject": (value: string | number | null) => void;
|
|
19
10
|
"update:body": (value: string | null) => void;
|
|
20
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
-
subject: {
|
|
22
|
-
type: import("vue").PropType<string>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
body: {
|
|
26
|
-
type: import("vue").PropType<string>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
}>> & {
|
|
11
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
30
12
|
"onUpdate:subject"?: ((value: string | number | null) => any) | undefined;
|
|
31
13
|
"onUpdate:body"?: ((value: string | null) => any) | undefined;
|
|
32
14
|
}, {}, {}>;
|
|
33
15
|
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|