@simsustech/quasar-components 0.1.1 → 0.1.2

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/QSubmitButton.vue_vue_type_script_setup_true_lang.fe90878f.js +93 -0
  3. package/dist/authentication.js +1633 -0
  4. package/dist/flags.js +217 -0
  5. package/dist/general.js +81 -0
  6. package/dist/icons.js +23 -0
  7. package/dist/nl.6b0aedb7.js +89 -0
  8. package/dist/nl.7787ff31.js +9 -0
  9. package/dist/nl.b1ad9de9.js +134 -0
  10. package/dist/style.css +4 -0
  11. package/dist/types/ui/authentication/ConsentList.vue.d.ts +85 -0
  12. package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +147 -0
  13. package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +168 -0
  14. package/dist/types/ui/authentication/LoginButton.vue.d.ts +69 -0
  15. package/dist/types/ui/authentication/LoginForm.vue.d.ts +157 -0
  16. package/dist/types/ui/authentication/OtpInput.vue.d.ts +69 -0
  17. package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +187 -0
  18. package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +168 -0
  19. package/dist/types/ui/authentication/RegisterForm.vue.d.ts +230 -0
  20. package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +132 -0
  21. package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +82 -0
  22. package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +77 -0
  23. package/dist/types/ui/authentication/index.d.ts +12 -0
  24. package/dist/types/ui/authentication/lang/en-US.d.ts +3 -0
  25. package/dist/types/ui/authentication/lang/index.d.ts +176 -0
  26. package/dist/types/ui/authentication/lang/nl.d.ts +3 -0
  27. package/dist/types/ui/flags/index.d.ts +3 -0
  28. package/dist/types/ui/flags/lang/en-US.d.ts +3 -0
  29. package/dist/types/ui/flags/lang/index.d.ts +266 -0
  30. package/dist/types/ui/flags/lang/nl.d.ts +3 -0
  31. package/dist/types/ui/general/QStyledCard.vue.d.ts +74 -0
  32. package/dist/types/ui/general/QStyledLayout.vue.d.ts +69 -0
  33. package/dist/types/ui/general/QSubmitButton.vue.d.ts +138 -0
  34. package/dist/types/ui/general/index.d.ts +2 -0
  35. package/dist/types/ui/general/lang/en-US.d.ts +3 -0
  36. package/dist/types/ui/general/lang/index.d.ts +16 -0
  37. package/dist/types/ui/general/lang/nl.d.ts +3 -0
  38. package/dist/types/ui/icons/icons.d.ts +6 -0
  39. package/dist/types/ui/icons/index.d.ts +2 -0
  40. package/dist/types/ui/index.d.ts +2 -0
  41. package/dist/types/vite-plugin.d.ts +2 -0
  42. package/dist/vite-plugin.d.ts +2 -0
  43. package/dist/vite-plugin.js +66 -0
  44. package/package.json +1 -1
  45. package/src/ui/authentication/EmailChangeForm.vue +2 -2
  46. package/src/ui/authentication/RequestOtpForm.vue +1 -1
@@ -0,0 +1,187 @@
1
+ import { QFormProps, QInputProps } from 'quasar';
2
+ export interface Props {
3
+ email: string;
4
+ minimumPasswordLength?: number;
5
+ form?: QFormProps & HTMLFormElement;
6
+ input?: Omit<QInputProps, 'id' | 'name' | 'modelValue' | 'label' | 'rules' | 'type' | 'lazy-rules' | 'autofocus' | ('label' & {
7
+ style?: Partial<CSSStyleDeclaration>;
8
+ })>;
9
+ }
10
+ declare const _default: {
11
+ new (...args: any[]): {
12
+ $: import("vue").ComponentInternalInstance;
13
+ $data: {};
14
+ $props: Partial<{
15
+ minimumPasswordLength: number;
16
+ form: QFormProps & HTMLFormElement;
17
+ input: Omit<QInputProps, "label" | "name" | "type" | "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 & HTMLFormElement;
81
+ input: Omit<QInputProps, "label" | "name" | "type" | "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>, {
130
+ minimumPasswordLength: number;
131
+ form: undefined;
132
+ input: undefined;
133
+ }>>> & {
134
+ onSubmit?: ((args_0: {
135
+ email: string;
136
+ newPassword: string;
137
+ otp: string;
138
+ done: () => void;
139
+ }) => any) | undefined;
140
+ }, {
141
+ variables: import("vue").Ref<{
142
+ header: string;
143
+ }>;
144
+ functions: import("vue").Ref<{
145
+ submit: (args_0: {
146
+ value?: string | undefined;
147
+ done: () => void;
148
+ }) => any;
149
+ }>;
150
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
151
+ submit: (payload_0: {
152
+ email: string;
153
+ newPassword: string;
154
+ otp: string;
155
+ done: () => void;
156
+ }) => void;
157
+ }, string, {
158
+ minimumPasswordLength: number;
159
+ form: QFormProps & HTMLFormElement;
160
+ input: Omit<QInputProps, "label" | "name" | "type" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
161
+ style?: Partial<CSSStyleDeclaration> | undefined;
162
+ })>;
163
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
164
+ $slots: {
165
+ default: (_: {
166
+ submit: (args_0: {
167
+ value?: string | undefined;
168
+ done: () => void;
169
+ }) => any;
170
+ }) => any;
171
+ };
172
+ });
173
+ export default _default;
174
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
175
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
176
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
177
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
178
+ } : {
179
+ type: import('vue').PropType<T[K]>;
180
+ required: true;
181
+ };
182
+ };
183
+ declare type __VLS_WithDefaults<P, D> = {
184
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
185
+ default: D[K];
186
+ } : P[K];
187
+ };
@@ -0,0 +1,168 @@
1
+ import { QInputProps } from 'quasar';
2
+ export interface Props {
3
+ input?: Omit<QInputProps, 'id' | 'name' | 'modelValue' | 'label' | 'rules' | 'type' | 'lazy-rules' | 'autofocus' | ('label' & {
4
+ style?: Partial<CSSStyleDeclaration>;
5
+ })>;
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
+ }, {
136
+ variables: import("vue").Ref<{
137
+ header: string;
138
+ passwordChanged: string;
139
+ unprocessableRequest: string;
140
+ checkEmail: string;
141
+ steps: readonly ["requestOtp", "changePassword"];
142
+ }>;
143
+ functions: import("vue").Ref<{
144
+ goToStep: (newStep: "changePassword" | "requestOtp") => "changePassword" | "requestOtp";
145
+ }>;
146
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
147
+ requestOtp: (payload_0: {
148
+ email: string;
149
+ done: () => void;
150
+ }) => void;
151
+ } & {
152
+ changePassword: (payload_0: {
153
+ email: string;
154
+ newPassword: string;
155
+ otp: string;
156
+ done: () => void;
157
+ }) => void;
158
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
159
+ export default _default;
160
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
161
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
162
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
163
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
164
+ } : {
165
+ type: import('vue').PropType<T[K]>;
166
+ required: true;
167
+ };
168
+ };
@@ -0,0 +1,230 @@
1
+ import { QFormProps, QInputProps } from 'quasar';
2
+ export interface Props {
3
+ useUsername?: boolean;
4
+ extraFields?: {
5
+ name: string;
6
+ label: string;
7
+ rules?: ((val: string) => boolean)[];
8
+ }[];
9
+ minimumPasswordLength?: number;
10
+ form?: QFormProps & HTMLFormElement;
11
+ input?: Omit<QInputProps, 'id' | 'name' | 'modelValue' | 'label' | 'rules' | 'type' | 'lazy-rules' | 'autofocus' | ('label' & {
12
+ style?: Partial<CSSStyleDeclaration>;
13
+ })>;
14
+ }
15
+ declare const _default: {
16
+ new (...args: any[]): {
17
+ $: import("vue").ComponentInternalInstance;
18
+ $data: {};
19
+ $props: Partial<{
20
+ minimumPasswordLength: number;
21
+ form: QFormProps & HTMLFormElement;
22
+ input: Omit<QInputProps, "label" | "name" | "type" | "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 & HTMLFormElement;
101
+ input: Omit<QInputProps, "label" | "name" | "type" | "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>, {
161
+ minimumPasswordLength: number;
162
+ extraFields: undefined;
163
+ form: undefined;
164
+ 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
+ }, {
174
+ variables: import("vue").Ref<{
175
+ header: string;
176
+ forgotPassword: string;
177
+ accountCreated: string;
178
+ unprocessableRequest: string;
179
+ alreadyRegistered: string;
180
+ }>;
181
+ functions: import("vue").Ref<{
182
+ submit: (args_0: {
183
+ value?: string | undefined;
184
+ done: () => void;
185
+ }) => any;
186
+ }>;
187
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
188
+ submit: (payload_0: {
189
+ email?: string | undefined;
190
+ password: string;
191
+ username?: string | undefined;
192
+ extraFields?: Record<string, string> | undefined;
193
+ done: () => void;
194
+ }) => void;
195
+ }, string, {
196
+ minimumPasswordLength: number;
197
+ form: QFormProps & HTMLFormElement;
198
+ input: Omit<QInputProps, "label" | "name" | "type" | "modelValue" | "id" | "lazy-rules" | "rules" | "autofocus" | ("label" & {
199
+ style?: Partial<CSSStyleDeclaration> | undefined;
200
+ })>;
201
+ extraFields: {
202
+ name: string;
203
+ label: string;
204
+ rules?: ((val: string) => boolean)[] | undefined;
205
+ }[];
206
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
207
+ $slots: {
208
+ default: (_: {
209
+ submit: (args_0: {
210
+ value?: string | undefined;
211
+ done: () => void;
212
+ }) => any;
213
+ }) => any;
214
+ };
215
+ });
216
+ export default _default;
217
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
218
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
219
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
220
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
221
+ } : {
222
+ type: import('vue').PropType<T[K]>;
223
+ required: true;
224
+ };
225
+ };
226
+ declare type __VLS_WithDefaults<P, D> = {
227
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
228
+ default: D[K];
229
+ } : P[K];
230
+ };