@simsustech/quasar-components 0.1.3 → 0.3.0

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 (85) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/{QSubmitButton.vue_vue_type_script_setup_true_lang.1d0c06eb.js → QSubmitButton.vue_vue_type_script_setup_true_lang-b5f452c6.js} +11 -4
  3. package/dist/authentication.js +53 -27
  4. package/dist/en-US-6cc72154.js +226 -0
  5. package/dist/flags.js +5 -215
  6. package/dist/form.js +543 -0
  7. package/dist/general.js +364 -14
  8. package/dist/icons.js +5 -3
  9. package/dist/nl-38cb2607.js +134 -0
  10. package/dist/{nl.6b0aedb7.js → nl-710ec15d.js} +1 -1
  11. package/dist/nl-ea9ab282.js +38 -0
  12. package/dist/style.css +2 -2
  13. package/dist/types/ui/authentication/ConsentList.vue.d.ts +2 -58
  14. package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +20 -112
  15. package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +13 -131
  16. package/dist/types/ui/authentication/LoginButton.vue.d.ts +9 -54
  17. package/dist/types/ui/authentication/LoginForm.vue.d.ts +20 -118
  18. package/dist/types/ui/authentication/OtpInput.vue.d.ts +4 -56
  19. package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +31 -140
  20. package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +13 -131
  21. package/dist/types/ui/authentication/RegisterForm.vue.d.ts +33 -167
  22. package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +18 -100
  23. package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +11 -64
  24. package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +4 -60
  25. package/dist/types/ui/form/BooleanItem.vue.d.ts +15 -0
  26. package/dist/types/ui/form/BooleanSelect.vue.d.ts +18 -0
  27. package/dist/types/ui/form/DateInput.vue.d.ts +19 -0
  28. package/dist/types/ui/form/EmailInput.vue.d.ts +24 -0
  29. package/dist/types/ui/form/FormInput.vue.d.ts +18 -0
  30. package/dist/types/ui/form/FormItem.vue.d.ts +25 -0
  31. package/dist/types/ui/form/GenderItem.vue.d.ts +15 -0
  32. package/dist/types/ui/form/GenderSelect.vue.d.ts +18 -0
  33. package/dist/types/ui/form/PostalCodeInput.vue.d.ts +19 -0
  34. package/dist/types/ui/form/TelephoneNumberInput.vue.d.ts +17 -0
  35. package/dist/types/ui/form/index.d.ts +10 -0
  36. package/dist/types/ui/form/lang/en-US.d.ts +3 -0
  37. package/dist/types/ui/form/lang/index.d.ts +74 -0
  38. package/dist/types/ui/form/lang/nl.d.ts +3 -0
  39. package/dist/types/ui/general/QLanguageSelect.vue.d.ts +16 -0
  40. package/dist/types/ui/general/QStyledCard.vue.d.ts +13 -58
  41. package/dist/types/ui/general/QStyledLayout.vue.d.ts +9 -54
  42. package/dist/types/ui/general/QSubmitButton.vue.d.ts +29 -114
  43. package/dist/types/ui/general/ResourcePage.vue.d.ts +61 -0
  44. package/dist/types/ui/general/ResponsiveDialog.vue.d.ts +37 -0
  45. package/dist/types/ui/general/index.d.ts +3 -0
  46. package/dist/types/virtualModules.d.ts +1 -0
  47. package/dist/virtualModules.d.ts +1 -0
  48. package/dist/virtualModules.js +3 -2
  49. package/dist/vite-plugin.js +26 -5
  50. package/package.json +28 -23
  51. package/src/ui/authentication/EmailChangeStepper.vue +2 -2
  52. package/src/ui/authentication/PasswordChangeStepper.vue +2 -2
  53. package/src/ui/authentication/lang/en-US.ts +1 -2
  54. package/src/ui/authentication/lang/nl.ts +1 -2
  55. package/src/ui/flags/README.md +1 -1
  56. package/src/ui/form/BooleanItem.vue +34 -0
  57. package/src/ui/form/BooleanSelect.vue +55 -0
  58. package/src/ui/form/DateInput.vue +70 -0
  59. package/src/ui/form/EmailInput.vue +50 -0
  60. package/src/ui/form/FormInput.vue +44 -0
  61. package/src/ui/form/FormItem.vue +50 -0
  62. package/src/ui/form/GenderItem.vue +35 -0
  63. package/src/ui/form/GenderSelect.vue +59 -0
  64. package/src/ui/form/PostalCodeInput.vue +47 -0
  65. package/src/ui/form/TelephoneNumberInput.vue +35 -0
  66. package/src/ui/form/index.ts +10 -0
  67. package/src/ui/form/lang/en-US.ts +39 -0
  68. package/src/ui/form/lang/index.ts +73 -0
  69. package/src/ui/form/lang/nl.ts +39 -0
  70. package/src/ui/general/QLanguageSelect.vue +86 -0
  71. package/src/ui/general/QStyledCard.vue +1 -1
  72. package/src/ui/general/QSubmitButton.vue +6 -1
  73. package/src/ui/general/ResourcePage.vue +121 -0
  74. package/src/ui/general/ResponsiveDialog.vue +94 -0
  75. package/src/ui/general/index.ts +3 -0
  76. package/src/ui/icons/README.md +2 -0
  77. package/src/virtualModules.ts +48 -5
  78. package/src/vite-plugin.ts +26 -6
  79. package/vite.config.ts +30 -30
  80. package/dist/nl.b1ad9de9.js +0 -134
  81. package/dist/types/ui/index.d.ts +0 -1
  82. package/src/ui/index.ts +0 -1
  83. /package/dist/{nl.7787ff31.js → nl-022c8c63.js} +0 -0
  84. /package/dist/types/ui/icons/{icons.d.ts → labels.d.ts} +0 -0
  85. /package/src/ui/icons/{icons.ts → labels.ts} +0 -0
@@ -9,70 +9,14 @@ export interface Props {
9
9
  name: string;
10
10
  }[];
11
11
  }
12
- declare const _default: {
13
- new (...args: any[]): {
14
- $: import("vue").ComponentInternalInstance;
15
- $data: {};
16
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17
- $attrs: {
18
- [x: string]: unknown;
19
- };
20
- $refs: {
21
- [x: string]: unknown;
22
- };
23
- $slots: Readonly<{
24
- [name: string]: import("vue").Slot | undefined;
25
- }>;
26
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
27
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
28
- $emit: (event: string, ...args: any[]) => void;
29
- $el: any;
30
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
31
- variables: import("vue").Ref<{
32
- message: (name: string) => string;
33
- allow: string;
34
- deny: string;
35
- }>;
36
- functions: import("vue").Ref<{}>;
37
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
38
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
39
- created?: ((() => void) | (() => void)[]) | undefined;
40
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
41
- mounted?: ((() => void) | (() => void)[]) | undefined;
42
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
43
- updated?: ((() => void) | (() => void)[]) | undefined;
44
- activated?: ((() => void) | (() => void)[]) | undefined;
45
- deactivated?: ((() => void) | (() => void)[]) | undefined;
46
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
47
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
48
- destroyed?: ((() => void) | (() => void)[]) | undefined;
49
- unmounted?: ((() => void) | (() => void)[]) | undefined;
50
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
51
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
52
- 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;
53
- };
54
- $forceUpdate: () => void;
55
- $nextTick: typeof import("vue").nextTick;
56
- $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;
57
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").ShallowUnwrapRef<{
58
- variables: import("vue").Ref<{
59
- message: (name: string) => string;
60
- allow: string;
61
- deny: string;
62
- }>;
63
- functions: import("vue").Ref<{}>;
64
- }> & {} & import("vue").ComponentCustomProperties & {};
65
- __isFragment?: undefined;
66
- __isTeleport?: undefined;
67
- __isSuspense?: undefined;
68
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
12
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
69
13
  variables: import("vue").Ref<{
70
14
  message: (name: string) => string;
71
15
  allow: string;
72
16
  deny: string;
73
17
  }>;
74
18
  functions: import("vue").Ref<{}>;
75
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
19
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}>;
76
20
  export default _default;
77
21
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
78
22
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -6,109 +6,7 @@ export interface Props {
6
6
  style?: Partial<CSSStyleDeclaration>;
7
7
  })>;
8
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
- }, {
9
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
112
10
  variables: import("vue").Ref<{
113
11
  header: string;
114
12
  }>;
@@ -125,16 +23,21 @@ declare const _default: {
125
23
  otp: string;
126
24
  done: () => void;
127
25
  }) => 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;
26
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
27
+ onSubmit?: ((args_0: {
28
+ email: string;
29
+ newEmail: string;
30
+ otp: string;
31
+ done: () => void;
32
+ }) => any) | undefined;
33
+ }, {}>, {
34
+ default?(_: {
35
+ submit: (args_0: {
36
+ value?: string | undefined;
37
+ done: () => void;
135
38
  }) => any;
136
- };
137
- });
39
+ }): any;
40
+ }>;
138
41
  export default _default;
139
42
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
140
43
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -145,3 +48,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
145
48
  required: true;
146
49
  };
147
50
  };
51
+ type __VLS_WithTemplateSlots<T, S> = T & {
52
+ new (): {
53
+ $slots: S;
54
+ };
55
+ };
@@ -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
- 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
- }, {
7
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
136
8
  variables: import("vue").Ref<{
137
9
  header: string;
138
10
  emailChanged: string;
@@ -148,14 +20,24 @@ declare const _default: {
148
20
  email: string;
149
21
  done: () => void;
150
22
  }) => void;
151
- } & {
152
23
  changeEmail: (payload_0: {
153
24
  email: string;
154
25
  newEmail: string;
155
26
  otp: string;
156
27
  done: () => void;
157
28
  }) => void;
158
- }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
29
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
30
+ onChangeEmail?: ((args_0: {
31
+ email: string;
32
+ newEmail: string;
33
+ otp: string;
34
+ done: () => void;
35
+ }) => any) | undefined;
36
+ onRequestOtp?: ((args_0: {
37
+ email: 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> = {
@@ -1,62 +1,12 @@
1
1
  export interface Props {
2
2
  withNetwork?: string;
3
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>>>, {
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
53
5
  variables: import("vue").Ref<{}>;
54
6
  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
- });
7
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}>, {
8
+ icon?(_: {}): any;
9
+ }>;
60
10
  export default _default;
61
11
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
62
12
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -67,3 +17,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
67
17
  required: true;
68
18
  };
69
19
  };
20
+ type __VLS_WithTemplateSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -7,115 +7,7 @@ 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<{}> & 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
- }, {
10
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
119
11
  variables: import("vue").Ref<{
120
12
  header: string;
121
13
  createAccount: string;
@@ -135,16 +27,21 @@ declare const _default: {
135
27
  username?: string | undefined;
136
28
  done: () => void;
137
29
  }) => 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;
30
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
31
+ onSubmit?: ((args_0: {
32
+ email?: string | undefined;
33
+ password: string;
34
+ username?: string | undefined;
35
+ done: () => void;
36
+ }) => any) | undefined;
37
+ }, {}>, {
38
+ default?(_: {
39
+ submit: (args_0: {
40
+ value?: string | undefined;
41
+ done: () => void;
145
42
  }) => any;
146
- };
147
- });
43
+ }): any;
44
+ }>;
148
45
  export default _default;
149
46
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
150
47
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -155,3 +52,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
155
52
  required: true;
156
53
  };
157
54
  };
55
+ type __VLS_WithTemplateSlots<T, S> = T & {
56
+ new (): {
57
+ $slots: S;
58
+ };
59
+ };