@simsustech/quasar-components 0.2.0 → 0.3.1
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 +17 -0
- package/dist/{QSubmitButton.vue_vue_type_script_setup_true_lang.65d6ac94.js → QSubmitButton.vue_vue_type_script_setup_true_lang-b5f452c6.js} +5 -2
- package/dist/authentication.js +52 -26
- package/dist/{en-US.d5751f99.js → en-US-6cc72154.js} +81 -72
- package/dist/flags.js +1 -1
- package/dist/form.js +76 -25
- package/dist/general.js +40 -19
- package/dist/icons.js +3 -1
- package/dist/nl-38cb2607.js +134 -0
- package/dist/{nl.7a710ba4.js → nl-ea9ab282.js} +4 -1
- package/dist/types/ui/authentication/ConsentList.vue.d.ts +2 -58
- package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +20 -112
- package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +13 -131
- package/dist/types/ui/authentication/LoginButton.vue.d.ts +9 -54
- package/dist/types/ui/authentication/LoginForm.vue.d.ts +20 -118
- package/dist/types/ui/authentication/OtpInput.vue.d.ts +4 -56
- package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +31 -140
- package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +13 -131
- package/dist/types/ui/authentication/RegisterForm.vue.d.ts +33 -167
- package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +18 -100
- package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +11 -64
- package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +4 -60
- package/dist/types/ui/form/BooleanItem.vue.d.ts +1 -43
- package/dist/types/ui/form/BooleanSelect.vue.d.ts +2 -50
- package/dist/types/ui/form/DateInput.vue.d.ts +1 -43
- package/dist/types/ui/form/EmailInput.vue.d.ts +24 -0
- package/dist/types/ui/form/FormInput.vue.d.ts +2 -44
- package/dist/types/ui/form/FormItem.vue.d.ts +10 -49
- package/dist/types/ui/form/GenderItem.vue.d.ts +1 -43
- package/dist/types/ui/form/GenderSelect.vue.d.ts +2 -50
- package/dist/types/ui/form/PostalCodeInput.vue.d.ts +2 -50
- package/dist/types/ui/form/TelephoneNumberInput.vue.d.ts +2 -50
- package/dist/types/ui/form/index.d.ts +1 -0
- package/dist/types/ui/form/lang/index.d.ts +8 -2
- package/dist/types/ui/general/QLanguageSelect.vue.d.ts +1 -43
- package/dist/types/ui/general/QStyledCard.vue.d.ts +13 -58
- package/dist/types/ui/general/QStyledLayout.vue.d.ts +9 -54
- package/dist/types/ui/general/QSubmitButton.vue.d.ts +23 -128
- package/dist/types/ui/general/ResourcePage.vue.d.ts +29 -127
- package/dist/types/ui/general/ResponsiveDialog.vue.d.ts +17 -88
- package/package.json +23 -23
- package/src/ui/authentication/EmailChangeStepper.vue +2 -2
- package/src/ui/authentication/PasswordChangeStepper.vue +2 -2
- package/src/ui/form/BooleanSelect.vue +1 -1
- package/src/ui/form/EmailInput.vue +50 -0
- package/src/ui/form/FormInput.vue +1 -1
- package/src/ui/form/FormItem.vue +1 -1
- package/src/ui/form/index.ts +1 -0
- package/src/ui/form/lang/en-US.ts +4 -1
- package/src/ui/form/lang/index.ts +4 -1
- package/src/ui/form/lang/nl.ts +4 -1
- package/src/ui/general/ResponsiveDialog.vue +7 -7
- package/dist/nl.b1ad9de9.js +0 -134
- /package/dist/{nl.7787ff31.js → nl-022c8c63.js} +0 -0
- /package/dist/{nl.1df15493.js → nl-710ec15d.js} +0 -0
|
@@ -7,137 +7,11 @@ export interface Props {
|
|
|
7
7
|
style?: Partial<CSSStyleDeclaration>;
|
|
8
8
|
})>;
|
|
9
9
|
}
|
|
10
|
-
declare const _default: {
|
|
11
|
-
new (...args: any[]): {
|
|
12
|
-
$: import("vue").ComponentInternalInstance;
|
|
13
|
-
$data: {};
|
|
14
|
-
$props: Partial<{
|
|
15
|
-
minimumPasswordLength: number;
|
|
16
|
-
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
17
|
-
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
18
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
19
|
-
})>;
|
|
20
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
21
|
-
minimumPasswordLength: number;
|
|
22
|
-
form: undefined;
|
|
23
|
-
input: undefined;
|
|
24
|
-
}>>> & {
|
|
25
|
-
onSubmit?: ((args_0: {
|
|
26
|
-
email: string;
|
|
27
|
-
newPassword: string;
|
|
28
|
-
otp: string;
|
|
29
|
-
done: () => void;
|
|
30
|
-
}) => any) | undefined;
|
|
31
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "minimumPasswordLength" | "form" | "input">;
|
|
32
|
-
$attrs: {
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
35
|
-
$refs: {
|
|
36
|
-
[x: string]: unknown;
|
|
37
|
-
};
|
|
38
|
-
$slots: Readonly<{
|
|
39
|
-
[name: string]: import("vue").Slot | undefined;
|
|
40
|
-
}>;
|
|
41
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
42
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
43
|
-
$emit: (event: "submit", args_0: {
|
|
44
|
-
email: string;
|
|
45
|
-
newPassword: string;
|
|
46
|
-
otp: string;
|
|
47
|
-
done: () => void;
|
|
48
|
-
}) => void;
|
|
49
|
-
$el: any;
|
|
50
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
51
|
-
minimumPasswordLength: number;
|
|
52
|
-
form: undefined;
|
|
53
|
-
input: undefined;
|
|
54
|
-
}>>> & {
|
|
55
|
-
onSubmit?: ((args_0: {
|
|
56
|
-
email: string;
|
|
57
|
-
newPassword: string;
|
|
58
|
-
otp: string;
|
|
59
|
-
done: () => void;
|
|
60
|
-
}) => any) | undefined;
|
|
61
|
-
}, {
|
|
62
|
-
variables: import("vue").Ref<{
|
|
63
|
-
header: string;
|
|
64
|
-
}>;
|
|
65
|
-
functions: import("vue").Ref<{
|
|
66
|
-
submit: (args_0: {
|
|
67
|
-
value?: string | undefined;
|
|
68
|
-
done: () => void;
|
|
69
|
-
}) => any;
|
|
70
|
-
}>;
|
|
71
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
72
|
-
submit: (payload_0: {
|
|
73
|
-
email: string;
|
|
74
|
-
newPassword: string;
|
|
75
|
-
otp: string;
|
|
76
|
-
done: () => void;
|
|
77
|
-
}) => void;
|
|
78
|
-
}, string, {
|
|
79
|
-
minimumPasswordLength: number;
|
|
80
|
-
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
81
|
-
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
82
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
83
|
-
})>;
|
|
84
|
-
}, {}, string> & {
|
|
85
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
92
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
93
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
94
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
95
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
96
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
97
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
98
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
99
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
100
|
-
};
|
|
101
|
-
$forceUpdate: () => void;
|
|
102
|
-
$nextTick: typeof import("vue").nextTick;
|
|
103
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
104
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
105
|
-
minimumPasswordLength: number;
|
|
106
|
-
form: undefined;
|
|
107
|
-
input: undefined;
|
|
108
|
-
}>>> & {
|
|
109
|
-
onSubmit?: ((args_0: {
|
|
110
|
-
email: string;
|
|
111
|
-
newPassword: string;
|
|
112
|
-
otp: string;
|
|
113
|
-
done: () => void;
|
|
114
|
-
}) => any) | undefined;
|
|
115
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
116
|
-
variables: import("vue").Ref<{
|
|
117
|
-
header: string;
|
|
118
|
-
}>;
|
|
119
|
-
functions: import("vue").Ref<{
|
|
120
|
-
submit: (args_0: {
|
|
121
|
-
value?: string | undefined;
|
|
122
|
-
done: () => void;
|
|
123
|
-
}) => any;
|
|
124
|
-
}>;
|
|
125
|
-
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
126
|
-
__isFragment?: undefined;
|
|
127
|
-
__isTeleport?: undefined;
|
|
128
|
-
__isSuspense?: undefined;
|
|
129
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
130
11
|
minimumPasswordLength: number;
|
|
131
12
|
form: undefined;
|
|
132
13
|
input: undefined;
|
|
133
|
-
}
|
|
134
|
-
onSubmit?: ((args_0: {
|
|
135
|
-
email: string;
|
|
136
|
-
newPassword: string;
|
|
137
|
-
otp: string;
|
|
138
|
-
done: () => void;
|
|
139
|
-
}) => any) | undefined;
|
|
140
|
-
}, {
|
|
14
|
+
}>, {
|
|
141
15
|
variables: import("vue").Ref<{
|
|
142
16
|
header: string;
|
|
143
17
|
}>;
|
|
@@ -154,22 +28,31 @@ declare const _default: {
|
|
|
154
28
|
otp: string;
|
|
155
29
|
done: () => void;
|
|
156
30
|
}) => void;
|
|
157
|
-
}, string, {
|
|
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
|
+
}>>> & {
|
|
36
|
+
onSubmit?: ((args_0: {
|
|
37
|
+
email: string;
|
|
38
|
+
newPassword: string;
|
|
39
|
+
otp: string;
|
|
40
|
+
done: () => void;
|
|
41
|
+
}) => any) | undefined;
|
|
42
|
+
}, {
|
|
158
43
|
minimumPasswordLength: number;
|
|
159
44
|
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
160
45
|
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
161
46
|
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
162
47
|
})>;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
done: () => void;
|
|
169
|
-
}) => any;
|
|
48
|
+
}>, {
|
|
49
|
+
default?(_: {
|
|
50
|
+
submit: (args_0: {
|
|
51
|
+
value?: string | undefined;
|
|
52
|
+
done: () => void;
|
|
170
53
|
}) => any;
|
|
171
|
-
};
|
|
172
|
-
}
|
|
54
|
+
}): any;
|
|
55
|
+
}>;
|
|
173
56
|
export default _default;
|
|
174
57
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
175
58
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -181,7 +64,15 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
181
64
|
};
|
|
182
65
|
};
|
|
183
66
|
type __VLS_WithDefaults<P, D> = {
|
|
184
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
67
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
185
68
|
default: D[K];
|
|
186
|
-
} : P[K];
|
|
69
|
+
}> : P[K];
|
|
70
|
+
};
|
|
71
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
+
new (): {
|
|
73
|
+
$slots: S;
|
|
74
|
+
};
|
|
187
75
|
};
|
|
76
|
+
type __VLS_Prettify<T> = {
|
|
77
|
+
[K in keyof T]: T[K];
|
|
78
|
+
} & {};
|
|
@@ -4,135 +4,7 @@ export interface Props {
|
|
|
4
4
|
style?: Partial<CSSStyleDeclaration>;
|
|
5
5
|
})>;
|
|
6
6
|
}
|
|
7
|
-
declare const _default: {
|
|
8
|
-
new (...args: any[]): {
|
|
9
|
-
$: import("vue").ComponentInternalInstance;
|
|
10
|
-
$data: {};
|
|
11
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
12
|
-
onRequestOtp?: ((args_0: {
|
|
13
|
-
email: string;
|
|
14
|
-
done: () => void;
|
|
15
|
-
}) => any) | undefined;
|
|
16
|
-
onChangePassword?: ((args_0: {
|
|
17
|
-
email: string;
|
|
18
|
-
newPassword: string;
|
|
19
|
-
otp: string;
|
|
20
|
-
done: () => void;
|
|
21
|
-
}) => any) | undefined;
|
|
22
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
23
|
-
$attrs: {
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
26
|
-
$refs: {
|
|
27
|
-
[x: string]: unknown;
|
|
28
|
-
};
|
|
29
|
-
$slots: Readonly<{
|
|
30
|
-
[name: string]: import("vue").Slot | undefined;
|
|
31
|
-
}>;
|
|
32
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
33
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
34
|
-
$emit: ((event: "changePassword", args_0: {
|
|
35
|
-
email: string;
|
|
36
|
-
newPassword: string;
|
|
37
|
-
otp: string;
|
|
38
|
-
done: () => void;
|
|
39
|
-
}) => void) & ((event: "requestOtp", args_0: {
|
|
40
|
-
email: string;
|
|
41
|
-
done: () => void;
|
|
42
|
-
}) => void);
|
|
43
|
-
$el: any;
|
|
44
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
45
|
-
onRequestOtp?: ((args_0: {
|
|
46
|
-
email: string;
|
|
47
|
-
done: () => void;
|
|
48
|
-
}) => any) | undefined;
|
|
49
|
-
onChangePassword?: ((args_0: {
|
|
50
|
-
email: string;
|
|
51
|
-
newPassword: string;
|
|
52
|
-
otp: string;
|
|
53
|
-
done: () => void;
|
|
54
|
-
}) => any) | undefined;
|
|
55
|
-
}, {
|
|
56
|
-
variables: import("vue").Ref<{
|
|
57
|
-
header: string;
|
|
58
|
-
passwordChanged: string;
|
|
59
|
-
unprocessableRequest: string;
|
|
60
|
-
checkEmail: string;
|
|
61
|
-
steps: readonly ["requestOtp", "changePassword"];
|
|
62
|
-
}>;
|
|
63
|
-
functions: import("vue").Ref<{
|
|
64
|
-
goToStep: (newStep: "changePassword" | "requestOtp") => "changePassword" | "requestOtp";
|
|
65
|
-
}>;
|
|
66
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
67
|
-
requestOtp: (payload_0: {
|
|
68
|
-
email: string;
|
|
69
|
-
done: () => void;
|
|
70
|
-
}) => void;
|
|
71
|
-
} & {
|
|
72
|
-
changePassword: (payload_0: {
|
|
73
|
-
email: string;
|
|
74
|
-
newPassword: string;
|
|
75
|
-
otp: string;
|
|
76
|
-
done: () => void;
|
|
77
|
-
}) => void;
|
|
78
|
-
}, string, {}, {}, string> & {
|
|
79
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
92
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
93
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
94
|
-
};
|
|
95
|
-
$forceUpdate: () => void;
|
|
96
|
-
$nextTick: typeof import("vue").nextTick;
|
|
97
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
98
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
99
|
-
onRequestOtp?: ((args_0: {
|
|
100
|
-
email: string;
|
|
101
|
-
done: () => void;
|
|
102
|
-
}) => any) | undefined;
|
|
103
|
-
onChangePassword?: ((args_0: {
|
|
104
|
-
email: string;
|
|
105
|
-
newPassword: string;
|
|
106
|
-
otp: string;
|
|
107
|
-
done: () => void;
|
|
108
|
-
}) => any) | undefined;
|
|
109
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
110
|
-
variables: import("vue").Ref<{
|
|
111
|
-
header: string;
|
|
112
|
-
passwordChanged: string;
|
|
113
|
-
unprocessableRequest: string;
|
|
114
|
-
checkEmail: string;
|
|
115
|
-
steps: readonly ["requestOtp", "changePassword"];
|
|
116
|
-
}>;
|
|
117
|
-
functions: import("vue").Ref<{
|
|
118
|
-
goToStep: (newStep: "changePassword" | "requestOtp") => "changePassword" | "requestOtp";
|
|
119
|
-
}>;
|
|
120
|
-
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
121
|
-
__isFragment?: undefined;
|
|
122
|
-
__isTeleport?: undefined;
|
|
123
|
-
__isSuspense?: undefined;
|
|
124
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
125
|
-
onRequestOtp?: ((args_0: {
|
|
126
|
-
email: string;
|
|
127
|
-
done: () => void;
|
|
128
|
-
}) => any) | undefined;
|
|
129
|
-
onChangePassword?: ((args_0: {
|
|
130
|
-
email: string;
|
|
131
|
-
newPassword: string;
|
|
132
|
-
otp: string;
|
|
133
|
-
done: () => void;
|
|
134
|
-
}) => any) | undefined;
|
|
135
|
-
}, {
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
136
8
|
variables: import("vue").Ref<{
|
|
137
9
|
header: string;
|
|
138
10
|
passwordChanged: string;
|
|
@@ -148,14 +20,24 @@ declare const _default: {
|
|
|
148
20
|
email: string;
|
|
149
21
|
done: () => void;
|
|
150
22
|
}) => void;
|
|
151
|
-
} & {
|
|
152
23
|
changePassword: (payload_0: {
|
|
153
24
|
email: string;
|
|
154
25
|
newPassword: string;
|
|
155
26
|
otp: string;
|
|
156
27
|
done: () => void;
|
|
157
28
|
}) => void;
|
|
158
|
-
}, string,
|
|
29
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
30
|
+
onRequestOtp?: ((args_0: {
|
|
31
|
+
email: string;
|
|
32
|
+
done: () => void;
|
|
33
|
+
}) => any) | undefined;
|
|
34
|
+
onChangePassword?: ((args_0: {
|
|
35
|
+
email: string;
|
|
36
|
+
newPassword: string;
|
|
37
|
+
otp: string;
|
|
38
|
+
done: () => void;
|
|
39
|
+
}) => any) | undefined;
|
|
40
|
+
}, {}>;
|
|
159
41
|
export default _default;
|
|
160
42
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
161
43
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -12,165 +12,12 @@ export interface Props {
|
|
|
12
12
|
style?: Partial<CSSStyleDeclaration>;
|
|
13
13
|
})>;
|
|
14
14
|
}
|
|
15
|
-
declare const _default: {
|
|
16
|
-
new (...args: any[]): {
|
|
17
|
-
$: import("vue").ComponentInternalInstance;
|
|
18
|
-
$data: {};
|
|
19
|
-
$props: Partial<{
|
|
20
|
-
minimumPasswordLength: number;
|
|
21
|
-
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
22
|
-
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
23
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
24
|
-
})>;
|
|
25
|
-
extraFields: {
|
|
26
|
-
name: string;
|
|
27
|
-
label: string;
|
|
28
|
-
rules?: ((val: string) => boolean)[] | undefined;
|
|
29
|
-
}[];
|
|
30
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
31
|
-
minimumPasswordLength: number;
|
|
32
|
-
extraFields: undefined;
|
|
33
|
-
form: undefined;
|
|
34
|
-
input: undefined;
|
|
35
|
-
}>>> & {
|
|
36
|
-
onSubmit?: ((args_0: {
|
|
37
|
-
email?: string | undefined;
|
|
38
|
-
password: string;
|
|
39
|
-
username?: string | undefined;
|
|
40
|
-
extraFields?: Record<string, string> | undefined;
|
|
41
|
-
done: () => void;
|
|
42
|
-
}) => any) | undefined;
|
|
43
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "minimumPasswordLength" | "form" | "input" | "extraFields">;
|
|
44
|
-
$attrs: {
|
|
45
|
-
[x: string]: unknown;
|
|
46
|
-
};
|
|
47
|
-
$refs: {
|
|
48
|
-
[x: string]: unknown;
|
|
49
|
-
};
|
|
50
|
-
$slots: Readonly<{
|
|
51
|
-
[name: string]: import("vue").Slot | undefined;
|
|
52
|
-
}>;
|
|
53
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
54
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
55
|
-
$emit: (event: "submit", args_0: {
|
|
56
|
-
email?: string | undefined;
|
|
57
|
-
password: string;
|
|
58
|
-
username?: string | undefined;
|
|
59
|
-
extraFields?: Record<string, string> | undefined;
|
|
60
|
-
done: () => void;
|
|
61
|
-
}) => void;
|
|
62
|
-
$el: any;
|
|
63
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
64
|
-
minimumPasswordLength: number;
|
|
65
|
-
extraFields: undefined;
|
|
66
|
-
form: undefined;
|
|
67
|
-
input: undefined;
|
|
68
|
-
}>>> & {
|
|
69
|
-
onSubmit?: ((args_0: {
|
|
70
|
-
email?: string | undefined;
|
|
71
|
-
password: string;
|
|
72
|
-
username?: string | undefined;
|
|
73
|
-
extraFields?: Record<string, string> | undefined;
|
|
74
|
-
done: () => void;
|
|
75
|
-
}) => any) | undefined;
|
|
76
|
-
}, {
|
|
77
|
-
variables: import("vue").Ref<{
|
|
78
|
-
header: string;
|
|
79
|
-
forgotPassword: string;
|
|
80
|
-
accountCreated: string;
|
|
81
|
-
unprocessableRequest: string;
|
|
82
|
-
alreadyRegistered: string;
|
|
83
|
-
}>;
|
|
84
|
-
functions: import("vue").Ref<{
|
|
85
|
-
submit: (args_0: {
|
|
86
|
-
value?: string | undefined;
|
|
87
|
-
done: () => void;
|
|
88
|
-
}) => any;
|
|
89
|
-
}>;
|
|
90
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
91
|
-
submit: (payload_0: {
|
|
92
|
-
email?: string | undefined;
|
|
93
|
-
password: string;
|
|
94
|
-
username?: string | undefined;
|
|
95
|
-
extraFields?: Record<string, string> | undefined;
|
|
96
|
-
done: () => void;
|
|
97
|
-
}) => void;
|
|
98
|
-
}, string, {
|
|
99
|
-
minimumPasswordLength: number;
|
|
100
|
-
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
101
|
-
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
102
|
-
style?: Partial<CSSStyleDeclaration> | undefined;
|
|
103
|
-
})>;
|
|
104
|
-
extraFields: {
|
|
105
|
-
name: string;
|
|
106
|
-
label: string;
|
|
107
|
-
rules?: ((val: string) => boolean)[] | undefined;
|
|
108
|
-
}[];
|
|
109
|
-
}, {}, string> & {
|
|
110
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
111
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
112
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
113
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
114
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
115
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
116
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
117
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
118
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
119
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
120
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
121
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
122
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
123
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
124
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
125
|
-
};
|
|
126
|
-
$forceUpdate: () => void;
|
|
127
|
-
$nextTick: typeof import("vue").nextTick;
|
|
128
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
129
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
130
|
-
minimumPasswordLength: number;
|
|
131
|
-
extraFields: undefined;
|
|
132
|
-
form: undefined;
|
|
133
|
-
input: undefined;
|
|
134
|
-
}>>> & {
|
|
135
|
-
onSubmit?: ((args_0: {
|
|
136
|
-
email?: string | undefined;
|
|
137
|
-
password: string;
|
|
138
|
-
username?: string | undefined;
|
|
139
|
-
extraFields?: Record<string, string> | undefined;
|
|
140
|
-
done: () => void;
|
|
141
|
-
}) => any) | undefined;
|
|
142
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
143
|
-
variables: import("vue").Ref<{
|
|
144
|
-
header: string;
|
|
145
|
-
forgotPassword: string;
|
|
146
|
-
accountCreated: string;
|
|
147
|
-
unprocessableRequest: string;
|
|
148
|
-
alreadyRegistered: string;
|
|
149
|
-
}>;
|
|
150
|
-
functions: import("vue").Ref<{
|
|
151
|
-
submit: (args_0: {
|
|
152
|
-
value?: string | undefined;
|
|
153
|
-
done: () => void;
|
|
154
|
-
}) => any;
|
|
155
|
-
}>;
|
|
156
|
-
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
157
|
-
__isFragment?: undefined;
|
|
158
|
-
__isTeleport?: undefined;
|
|
159
|
-
__isSuspense?: undefined;
|
|
160
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
161
16
|
minimumPasswordLength: number;
|
|
162
17
|
extraFields: undefined;
|
|
163
18
|
form: undefined;
|
|
164
19
|
input: undefined;
|
|
165
|
-
}
|
|
166
|
-
onSubmit?: ((args_0: {
|
|
167
|
-
email?: string | undefined;
|
|
168
|
-
password: string;
|
|
169
|
-
username?: string | undefined;
|
|
170
|
-
extraFields?: Record<string, string> | undefined;
|
|
171
|
-
done: () => void;
|
|
172
|
-
}) => any) | undefined;
|
|
173
|
-
}, {
|
|
20
|
+
}>, {
|
|
174
21
|
variables: import("vue").Ref<{
|
|
175
22
|
header: string;
|
|
176
23
|
forgotPassword: string;
|
|
@@ -192,7 +39,20 @@ declare const _default: {
|
|
|
192
39
|
extraFields?: Record<string, string> | undefined;
|
|
193
40
|
done: () => void;
|
|
194
41
|
}) => void;
|
|
195
|
-
}, string, {
|
|
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
|
+
}>>> & {
|
|
48
|
+
onSubmit?: ((args_0: {
|
|
49
|
+
email?: string | undefined;
|
|
50
|
+
password: string;
|
|
51
|
+
username?: string | undefined;
|
|
52
|
+
extraFields?: Record<string, string> | undefined;
|
|
53
|
+
done: () => void;
|
|
54
|
+
}) => any) | undefined;
|
|
55
|
+
}, {
|
|
196
56
|
minimumPasswordLength: number;
|
|
197
57
|
form: QFormProps & Partial<HTMLFormElement> & Partial<HTMLDivElement>;
|
|
198
58
|
input: Omit<QInputProps, "name" | "type" | "label" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
|
|
@@ -203,16 +63,14 @@ declare const _default: {
|
|
|
203
63
|
label: string;
|
|
204
64
|
rules?: ((val: string) => boolean)[] | undefined;
|
|
205
65
|
}[];
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
done: () => void;
|
|
212
|
-
}) => any;
|
|
66
|
+
}>, {
|
|
67
|
+
default?(_: {
|
|
68
|
+
submit: (args_0: {
|
|
69
|
+
value?: string | undefined;
|
|
70
|
+
done: () => void;
|
|
213
71
|
}) => any;
|
|
214
|
-
};
|
|
215
|
-
}
|
|
72
|
+
}): any;
|
|
73
|
+
}>;
|
|
216
74
|
export default _default;
|
|
217
75
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
218
76
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -224,7 +82,15 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
224
82
|
};
|
|
225
83
|
};
|
|
226
84
|
type __VLS_WithDefaults<P, D> = {
|
|
227
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
85
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
228
86
|
default: D[K];
|
|
229
|
-
} : P[K];
|
|
87
|
+
}> : P[K];
|
|
88
|
+
};
|
|
89
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
90
|
+
new (): {
|
|
91
|
+
$slots: S;
|
|
92
|
+
};
|
|
230
93
|
};
|
|
94
|
+
type __VLS_Prettify<T> = {
|
|
95
|
+
[K in keyof T]: T[K];
|
|
96
|
+
} & {};
|