@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,147 @@
1
+ import { QFormProps, QInputProps } from 'quasar';
2
+ export interface Props {
3
+ email: string;
4
+ form?: QFormProps & HTMLFormElement;
5
+ input?: Omit<QInputProps, 'id' | 'name' | 'modelValue' | 'label' | 'rules' | 'type' | 'lazy-rules' | 'autofocus' | ('label' & {
6
+ style?: Partial<CSSStyleDeclaration>;
7
+ })>;
8
+ }
9
+ declare const _default: {
10
+ new (...args: any[]): {
11
+ $: import("vue").ComponentInternalInstance;
12
+ $data: {};
13
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
14
+ onSubmit?: ((args_0: {
15
+ email: string;
16
+ newEmail: string;
17
+ otp: string;
18
+ done: () => void;
19
+ }) => any) | undefined;
20
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
21
+ $attrs: {
22
+ [x: string]: unknown;
23
+ };
24
+ $refs: {
25
+ [x: string]: unknown;
26
+ };
27
+ $slots: Readonly<{
28
+ [name: string]: import("vue").Slot | undefined;
29
+ }>;
30
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
31
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
32
+ $emit: (event: "submit", args_0: {
33
+ email: string;
34
+ newEmail: string;
35
+ otp: string;
36
+ done: () => void;
37
+ }) => void;
38
+ $el: any;
39
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
40
+ onSubmit?: ((args_0: {
41
+ email: string;
42
+ newEmail: string;
43
+ otp: string;
44
+ done: () => void;
45
+ }) => any) | undefined;
46
+ }, {
47
+ variables: import("vue").Ref<{
48
+ header: string;
49
+ }>;
50
+ functions: import("vue").Ref<{
51
+ submit: (args_0: {
52
+ value?: string | undefined;
53
+ done: () => void;
54
+ }) => any;
55
+ }>;
56
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
57
+ submit: (payload_0: {
58
+ email: string;
59
+ newEmail: string;
60
+ otp: string;
61
+ done: () => void;
62
+ }) => void;
63
+ }, string, {}, {}, string> & {
64
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
65
+ created?: ((() => void) | (() => void)[]) | undefined;
66
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
67
+ mounted?: ((() => void) | (() => void)[]) | undefined;
68
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
69
+ updated?: ((() => void) | (() => void)[]) | undefined;
70
+ activated?: ((() => void) | (() => void)[]) | undefined;
71
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
72
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
73
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
74
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
75
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
76
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
77
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
78
+ 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;
79
+ };
80
+ $forceUpdate: () => void;
81
+ $nextTick: typeof import("vue").nextTick;
82
+ $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;
83
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
84
+ onSubmit?: ((args_0: {
85
+ email: string;
86
+ newEmail: string;
87
+ otp: string;
88
+ done: () => void;
89
+ }) => any) | undefined;
90
+ } & import("vue").ShallowUnwrapRef<{
91
+ variables: import("vue").Ref<{
92
+ header: string;
93
+ }>;
94
+ functions: import("vue").Ref<{
95
+ submit: (args_0: {
96
+ value?: string | undefined;
97
+ done: () => void;
98
+ }) => any;
99
+ }>;
100
+ }> & {} & import("vue").ComponentCustomProperties & {};
101
+ __isFragment?: undefined;
102
+ __isTeleport?: undefined;
103
+ __isSuspense?: undefined;
104
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
105
+ onSubmit?: ((args_0: {
106
+ email: string;
107
+ newEmail: string;
108
+ otp: string;
109
+ done: () => void;
110
+ }) => any) | undefined;
111
+ }, {
112
+ variables: import("vue").Ref<{
113
+ header: string;
114
+ }>;
115
+ functions: import("vue").Ref<{
116
+ submit: (args_0: {
117
+ value?: string | undefined;
118
+ done: () => void;
119
+ }) => any;
120
+ }>;
121
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
122
+ submit: (payload_0: {
123
+ email: string;
124
+ newEmail: string;
125
+ otp: string;
126
+ done: () => void;
127
+ }) => void;
128
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
129
+ $slots: {
130
+ default: (_: {
131
+ submit: (args_0: {
132
+ value?: string | undefined;
133
+ done: () => void;
134
+ }) => any;
135
+ }) => any;
136
+ };
137
+ });
138
+ export default _default;
139
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
140
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
141
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
142
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
143
+ } : {
144
+ type: import('vue').PropType<T[K]>;
145
+ required: true;
146
+ };
147
+ };
@@ -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
+ onChangeEmail?: ((args_0: {
13
+ email: string;
14
+ newEmail: string;
15
+ otp: string;
16
+ done: () => void;
17
+ }) => any) | undefined;
18
+ onRequestOtp?: ((args_0: {
19
+ email: 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: "changeEmail", args_0: {
35
+ email: string;
36
+ newEmail: 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
+ onChangeEmail?: ((args_0: {
46
+ email: string;
47
+ newEmail: string;
48
+ otp: string;
49
+ done: () => void;
50
+ }) => any) | undefined;
51
+ onRequestOtp?: ((args_0: {
52
+ email: string;
53
+ done: () => void;
54
+ }) => any) | undefined;
55
+ }, {
56
+ variables: import("vue").Ref<{
57
+ header: string;
58
+ emailChanged: string;
59
+ unprocessableRequest: string;
60
+ checkEmail: string;
61
+ steps: readonly ["requestOtp", "changeEmail"];
62
+ }>;
63
+ functions: import("vue").Ref<{
64
+ goToStep: (newStep: "changeEmail" | "requestOtp") => "changeEmail" | "requestOtp";
65
+ }>;
66
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
67
+ requestOtp: (payload_0: {
68
+ email: string;
69
+ done: () => void;
70
+ }) => void;
71
+ } & {
72
+ changeEmail: (payload_0: {
73
+ email: string;
74
+ newEmail: 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
+ onChangeEmail?: ((args_0: {
100
+ email: string;
101
+ newEmail: string;
102
+ otp: string;
103
+ done: () => void;
104
+ }) => any) | undefined;
105
+ onRequestOtp?: ((args_0: {
106
+ email: string;
107
+ done: () => void;
108
+ }) => any) | undefined;
109
+ } & import("vue").ShallowUnwrapRef<{
110
+ variables: import("vue").Ref<{
111
+ header: string;
112
+ emailChanged: string;
113
+ unprocessableRequest: string;
114
+ checkEmail: string;
115
+ steps: readonly ["requestOtp", "changeEmail"];
116
+ }>;
117
+ functions: import("vue").Ref<{
118
+ goToStep: (newStep: "changeEmail" | "requestOtp") => "changeEmail" | "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
+ onChangeEmail?: ((args_0: {
126
+ email: string;
127
+ newEmail: string;
128
+ otp: string;
129
+ done: () => void;
130
+ }) => any) | undefined;
131
+ onRequestOtp?: ((args_0: {
132
+ email: string;
133
+ done: () => void;
134
+ }) => any) | undefined;
135
+ }, {
136
+ variables: import("vue").Ref<{
137
+ header: string;
138
+ emailChanged: string;
139
+ unprocessableRequest: string;
140
+ checkEmail: string;
141
+ steps: readonly ["requestOtp", "changeEmail"];
142
+ }>;
143
+ functions: import("vue").Ref<{
144
+ goToStep: (newStep: "changeEmail" | "requestOtp") => "changeEmail" | "requestOtp";
145
+ }>;
146
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
147
+ requestOtp: (payload_0: {
148
+ email: string;
149
+ done: () => void;
150
+ }) => void;
151
+ } & {
152
+ changeEmail: (payload_0: {
153
+ email: string;
154
+ newEmail: 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,69 @@
1
+ export interface Props {
2
+ withNetwork?: string;
3
+ }
4
+ declare const _default: {
5
+ new (...args: any[]): {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
9
+ $attrs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $refs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $slots: Readonly<{
16
+ [name: string]: import("vue").Slot | undefined;
17
+ }>;
18
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
19
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
20
+ $emit: (event: string, ...args: any[]) => void;
21
+ $el: any;
22
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
23
+ variables: import("vue").Ref<{}>;
24
+ functions: import("vue").Ref<{}>;
25
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
26
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
27
+ created?: ((() => void) | (() => void)[]) | undefined;
28
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
29
+ mounted?: ((() => void) | (() => void)[]) | undefined;
30
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
31
+ updated?: ((() => void) | (() => void)[]) | undefined;
32
+ activated?: ((() => void) | (() => void)[]) | undefined;
33
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
35
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
36
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
37
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
38
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
39
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
40
+ 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;
41
+ };
42
+ $forceUpdate: () => void;
43
+ $nextTick: typeof import("vue").nextTick;
44
+ $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;
45
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").ShallowUnwrapRef<{
46
+ variables: import("vue").Ref<{}>;
47
+ functions: import("vue").Ref<{}>;
48
+ }> & {} & import("vue").ComponentCustomProperties & {};
49
+ __isFragment?: undefined;
50
+ __isTeleport?: undefined;
51
+ __isSuspense?: undefined;
52
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
53
+ variables: import("vue").Ref<{}>;
54
+ functions: import("vue").Ref<{}>;
55
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
56
+ $slots: {
57
+ icon: (_: {}) => any;
58
+ };
59
+ });
60
+ export default _default;
61
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
62
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
63
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
64
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
65
+ } : {
66
+ type: import('vue').PropType<T[K]>;
67
+ required: true;
68
+ };
69
+ };
@@ -0,0 +1,157 @@
1
+ import { QFormProps, QInputProps } from 'quasar';
2
+ export interface Props {
3
+ useUsername?: boolean;
4
+ passwordForgotUrl?: string;
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<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
15
+ onSubmit?: ((args_0: {
16
+ email?: string | undefined;
17
+ password: string;
18
+ username?: string | undefined;
19
+ done: () => void;
20
+ }) => any) | undefined;
21
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
22
+ $attrs: {
23
+ [x: string]: unknown;
24
+ };
25
+ $refs: {
26
+ [x: string]: unknown;
27
+ };
28
+ $slots: Readonly<{
29
+ [name: string]: import("vue").Slot | undefined;
30
+ }>;
31
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
32
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
33
+ $emit: (event: "submit", args_0: {
34
+ email?: string | undefined;
35
+ password: string;
36
+ username?: string | undefined;
37
+ done: () => void;
38
+ }) => void;
39
+ $el: any;
40
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
41
+ onSubmit?: ((args_0: {
42
+ email?: string | undefined;
43
+ password: string;
44
+ username?: string | undefined;
45
+ done: () => void;
46
+ }) => any) | undefined;
47
+ }, {
48
+ variables: import("vue").Ref<{
49
+ header: string;
50
+ createAccount: string;
51
+ invalidCredentials: string;
52
+ unprocessableRequest: string;
53
+ }>;
54
+ functions: import("vue").Ref<{
55
+ submit: (args_0: {
56
+ value?: string | undefined;
57
+ done: () => void;
58
+ }) => any;
59
+ }>;
60
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
61
+ submit: (payload_0: {
62
+ email?: string | undefined;
63
+ password: string;
64
+ username?: string | undefined;
65
+ done: () => void;
66
+ }) => void;
67
+ }, string, {}, {}, string> & {
68
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
69
+ created?: ((() => void) | (() => void)[]) | undefined;
70
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
71
+ mounted?: ((() => void) | (() => void)[]) | undefined;
72
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
73
+ updated?: ((() => void) | (() => void)[]) | undefined;
74
+ activated?: ((() => void) | (() => void)[]) | undefined;
75
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
76
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
77
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
78
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
79
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
80
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
81
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
82
+ 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;
83
+ };
84
+ $forceUpdate: () => void;
85
+ $nextTick: typeof import("vue").nextTick;
86
+ $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;
87
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
88
+ onSubmit?: ((args_0: {
89
+ email?: string | undefined;
90
+ password: string;
91
+ username?: string | undefined;
92
+ done: () => void;
93
+ }) => any) | undefined;
94
+ } & import("vue").ShallowUnwrapRef<{
95
+ variables: import("vue").Ref<{
96
+ header: string;
97
+ createAccount: string;
98
+ invalidCredentials: string;
99
+ unprocessableRequest: string;
100
+ }>;
101
+ functions: import("vue").Ref<{
102
+ submit: (args_0: {
103
+ value?: string | undefined;
104
+ done: () => void;
105
+ }) => any;
106
+ }>;
107
+ }> & {} & import("vue").ComponentCustomProperties & {};
108
+ __isFragment?: undefined;
109
+ __isTeleport?: undefined;
110
+ __isSuspense?: undefined;
111
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
112
+ onSubmit?: ((args_0: {
113
+ email?: string | undefined;
114
+ password: string;
115
+ username?: string | undefined;
116
+ done: () => void;
117
+ }) => any) | undefined;
118
+ }, {
119
+ variables: import("vue").Ref<{
120
+ header: string;
121
+ createAccount: string;
122
+ invalidCredentials: string;
123
+ unprocessableRequest: string;
124
+ }>;
125
+ functions: import("vue").Ref<{
126
+ submit: (args_0: {
127
+ value?: string | undefined;
128
+ done: () => void;
129
+ }) => any;
130
+ }>;
131
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
132
+ submit: (payload_0: {
133
+ email?: string | undefined;
134
+ password: string;
135
+ username?: string | undefined;
136
+ done: () => void;
137
+ }) => void;
138
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
139
+ $slots: {
140
+ default: (_: {
141
+ submit: (args_0: {
142
+ value?: string | undefined;
143
+ done: () => void;
144
+ }) => any;
145
+ }) => any;
146
+ };
147
+ });
148
+ export default _default;
149
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
150
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
151
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
152
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
153
+ } : {
154
+ type: import('vue').PropType<T[K]>;
155
+ required: true;
156
+ };
157
+ };
@@ -0,0 +1,69 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ modelValue: string;
7
+ }>>> & {
8
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
9
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
+ $attrs: {
11
+ [x: string]: unknown;
12
+ };
13
+ $refs: {
14
+ [x: string]: unknown;
15
+ };
16
+ $slots: Readonly<{
17
+ [name: string]: import("vue").Slot | undefined;
18
+ }>;
19
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
20
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
21
+ $emit: (event: "update:modelValue", ...args: any[]) => void;
22
+ $el: any;
23
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
24
+ modelValue: string;
25
+ }>>> & {
26
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {}, {}, string> & {
28
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
29
+ created?: ((() => void) | (() => void)[]) | undefined;
30
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
31
+ mounted?: ((() => void) | (() => void)[]) | undefined;
32
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
33
+ updated?: ((() => void) | (() => void)[]) | undefined;
34
+ activated?: ((() => void) | (() => void)[]) | undefined;
35
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
36
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
37
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
38
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
39
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
40
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
41
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
42
+ 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;
43
+ };
44
+ $forceUpdate: () => void;
45
+ $nextTick: typeof import("vue").nextTick;
46
+ $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;
47
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
48
+ modelValue: string;
49
+ }>>> & {
50
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
51
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
52
+ __isFragment?: undefined;
53
+ __isTeleport?: undefined;
54
+ __isSuspense?: undefined;
55
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
56
+ modelValue: string;
57
+ }>>> & {
58
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
60
+ export default _default;
61
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
62
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
63
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
64
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
65
+ } : {
66
+ type: import('vue').PropType<T[K]>;
67
+ required: true;
68
+ };
69
+ };