@simsustech/quasar-components 0.1.0 → 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 (48) hide show
  1. package/CHANGELOG.md +13 -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 +2 -2
  45. package/src/ui/authentication/EmailChangeForm.vue +2 -2
  46. package/src/ui/authentication/LoginForm.vue +2 -2
  47. package/src/ui/authentication/RegisterForm.vue +2 -2
  48. package/src/ui/authentication/RequestOtpForm.vue +1 -1
@@ -0,0 +1,132 @@
1
+ import { QFormProps, QInputProps } from 'quasar';
2
+ export interface Props {
3
+ form?: QFormProps & HTMLFormElement;
4
+ input?: Omit<QInputProps, 'id' | 'name' | 'modelValue' | 'label' | 'rules' | 'type' | 'lazy-rules' | 'autofocus' | ('label' & {
5
+ style?: Partial<CSSStyleDeclaration>;
6
+ })>;
7
+ }
8
+ declare const _default: {
9
+ new (...args: any[]): {
10
+ $: import("vue").ComponentInternalInstance;
11
+ $data: {};
12
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
13
+ onSubmit?: ((args_0: {
14
+ email: string;
15
+ done: () => void;
16
+ }) => any) | undefined;
17
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
18
+ $attrs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $refs: {
22
+ [x: string]: unknown;
23
+ };
24
+ $slots: Readonly<{
25
+ [name: string]: import("vue").Slot | undefined;
26
+ }>;
27
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
28
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
29
+ $emit: (event: "submit", args_0: {
30
+ email: string;
31
+ done: () => void;
32
+ }) => void;
33
+ $el: any;
34
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
35
+ onSubmit?: ((args_0: {
36
+ email: string;
37
+ done: () => void;
38
+ }) => any) | undefined;
39
+ }, {
40
+ variables: import("vue").Ref<{
41
+ header: string;
42
+ }>;
43
+ functions: import("vue").Ref<{
44
+ submit: (args_0: {
45
+ value?: string | undefined;
46
+ done: () => void;
47
+ }) => any;
48
+ }>;
49
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
50
+ submit: (payload_0: {
51
+ email: string;
52
+ done: () => void;
53
+ }) => void;
54
+ }, string, {}, {}, string> & {
55
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
56
+ created?: ((() => void) | (() => void)[]) | undefined;
57
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
58
+ mounted?: ((() => void) | (() => void)[]) | undefined;
59
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
60
+ updated?: ((() => void) | (() => void)[]) | undefined;
61
+ activated?: ((() => void) | (() => void)[]) | undefined;
62
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
63
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
64
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
65
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
66
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
67
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
68
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
69
+ 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;
70
+ };
71
+ $forceUpdate: () => void;
72
+ $nextTick: typeof import("vue").nextTick;
73
+ $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;
74
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
75
+ onSubmit?: ((args_0: {
76
+ email: string;
77
+ done: () => void;
78
+ }) => any) | undefined;
79
+ } & import("vue").ShallowUnwrapRef<{
80
+ variables: import("vue").Ref<{
81
+ header: string;
82
+ }>;
83
+ functions: import("vue").Ref<{
84
+ submit: (args_0: {
85
+ value?: string | undefined;
86
+ done: () => void;
87
+ }) => any;
88
+ }>;
89
+ }> & {} & import("vue").ComponentCustomProperties & {};
90
+ __isFragment?: undefined;
91
+ __isTeleport?: undefined;
92
+ __isSuspense?: undefined;
93
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
94
+ onSubmit?: ((args_0: {
95
+ email: string;
96
+ done: () => void;
97
+ }) => any) | undefined;
98
+ }, {
99
+ variables: import("vue").Ref<{
100
+ header: string;
101
+ }>;
102
+ functions: import("vue").Ref<{
103
+ submit: (args_0: {
104
+ value?: string | undefined;
105
+ done: () => void;
106
+ }) => any;
107
+ }>;
108
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
109
+ submit: (payload_0: {
110
+ email: string;
111
+ done: () => void;
112
+ }) => void;
113
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
114
+ $slots: {
115
+ default: (_: {
116
+ submit: (args_0: {
117
+ value?: string | undefined;
118
+ done: () => void;
119
+ }) => any;
120
+ }) => any;
121
+ };
122
+ });
123
+ export default _default;
124
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
125
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
126
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
127
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
128
+ } : {
129
+ type: import('vue').PropType<T[K]>;
130
+ required: true;
131
+ };
132
+ };
@@ -0,0 +1,82 @@
1
+ import type { RouteLocationRaw } from 'vue-router';
2
+ export interface Props {
3
+ userRoute: RouteLocationRaw;
4
+ }
5
+ declare const _default: {
6
+ new (...args: any[]): {
7
+ $: import("vue").ComponentInternalInstance;
8
+ $data: {};
9
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
10
+ onSignOut?: (() => any) | undefined;
11
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
12
+ $attrs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $refs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $slots: Readonly<{
19
+ [name: string]: import("vue").Slot | undefined;
20
+ }>;
21
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
22
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
23
+ $emit: (event: "signOut") => void;
24
+ $el: any;
25
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
26
+ onSignOut?: (() => any) | undefined;
27
+ }, {
28
+ variables: import("vue").Ref<{}>;
29
+ functions: import("vue").Ref<{}>;
30
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
+ signOut: () => void;
32
+ }, string, {}, {}, string> & {
33
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
34
+ created?: ((() => void) | (() => void)[]) | undefined;
35
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
36
+ mounted?: ((() => void) | (() => void)[]) | undefined;
37
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
38
+ updated?: ((() => void) | (() => void)[]) | undefined;
39
+ activated?: ((() => void) | (() => void)[]) | undefined;
40
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
41
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
42
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
43
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
44
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
45
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
46
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
47
+ 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;
48
+ };
49
+ $forceUpdate: () => void;
50
+ $nextTick: typeof import("vue").nextTick;
51
+ $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;
52
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
53
+ onSignOut?: (() => any) | undefined;
54
+ } & import("vue").ShallowUnwrapRef<{
55
+ variables: import("vue").Ref<{}>;
56
+ functions: import("vue").Ref<{}>;
57
+ }> & {} & import("vue").ComponentCustomProperties & {};
58
+ __isFragment?: undefined;
59
+ __isTeleport?: undefined;
60
+ __isSuspense?: undefined;
61
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
62
+ onSignOut?: (() => any) | undefined;
63
+ }, {
64
+ variables: import("vue").Ref<{}>;
65
+ functions: import("vue").Ref<{}>;
66
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
67
+ signOut: () => void;
68
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
69
+ $slots: {
70
+ default: (_: {}) => any;
71
+ };
72
+ });
73
+ export default _default;
74
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
75
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
76
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
77
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
78
+ } : {
79
+ type: import('vue').PropType<T[K]>;
80
+ required: true;
81
+ };
82
+ };
@@ -0,0 +1,77 @@
1
+ export interface Props {
2
+ useVerificationSlider?: boolean;
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>>> & {
9
+ onVerified?: (() => any) | undefined;
10
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
11
+ $attrs: {
12
+ [x: string]: unknown;
13
+ };
14
+ $refs: {
15
+ [x: string]: unknown;
16
+ };
17
+ $slots: Readonly<{
18
+ [name: string]: import("vue").Slot | undefined;
19
+ }>;
20
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
21
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
22
+ $emit: (event: "verified") => void;
23
+ $el: any;
24
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
25
+ onVerified?: (() => any) | undefined;
26
+ }, {
27
+ variables: import("vue").Ref<{}>;
28
+ functions: import("vue").Ref<{}>;
29
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30
+ verified: () => void;
31
+ }, string, {}, {}, string> & {
32
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
33
+ created?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
35
+ mounted?: ((() => void) | (() => void)[]) | undefined;
36
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
37
+ updated?: ((() => void) | (() => void)[]) | undefined;
38
+ activated?: ((() => void) | (() => void)[]) | undefined;
39
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
40
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
41
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
42
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
43
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
44
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
45
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
46
+ 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;
47
+ };
48
+ $forceUpdate: () => void;
49
+ $nextTick: typeof import("vue").nextTick;
50
+ $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;
51
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
52
+ onVerified?: (() => any) | undefined;
53
+ } & import("vue").ShallowUnwrapRef<{
54
+ variables: import("vue").Ref<{}>;
55
+ functions: import("vue").Ref<{}>;
56
+ }> & {} & import("vue").ComponentCustomProperties & {};
57
+ __isFragment?: undefined;
58
+ __isTeleport?: undefined;
59
+ __isSuspense?: undefined;
60
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
61
+ onVerified?: (() => any) | undefined;
62
+ }, {
63
+ variables: import("vue").Ref<{}>;
64
+ functions: import("vue").Ref<{}>;
65
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
+ verified: () => void;
67
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
68
+ export default _default;
69
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
70
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
71
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
72
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
73
+ } : {
74
+ type: import('vue').PropType<T[K]>;
75
+ required: true;
76
+ };
77
+ };
@@ -0,0 +1,12 @@
1
+ export { default as RequestOtpForm } from './RequestOtpForm.vue';
2
+ export { default as OtpInput } from './OtpInput.vue';
3
+ export { default as EmailChangeForm } from './EmailChangeForm.vue';
4
+ export { default as EmailChangeStepper } from './EmailChangeStepper.vue';
5
+ export { default as PasswordChangeForm } from './PasswordChangeForm.vue';
6
+ export { default as PasswordChangeStepper } from './PasswordChangeStepper.vue';
7
+ export { default as LoginForm } from './LoginForm.vue';
8
+ export { default as RegisterForm } from './RegisterForm.vue';
9
+ export { default as VerificationSlider } from './VerificationSlider.vue';
10
+ export { default as ConsentList } from './ConsentList.vue';
11
+ export { default as UserMenuButton } from './UserMenuButton.vue';
12
+ export { default as LoginButton } from './LoginButton.vue';
@@ -0,0 +1,3 @@
1
+ import type { Language } from '../lang';
2
+ declare const lang: Language;
3
+ export default lang;
@@ -0,0 +1,176 @@
1
+ export interface Language {
2
+ isoName: string;
3
+ unprocessableRequest: string;
4
+ myAccount: string;
5
+ signOut: string;
6
+ consent: {
7
+ message: (name: string) => string;
8
+ deny: string;
9
+ allow: string;
10
+ };
11
+ email: {
12
+ fields: {
13
+ email: string;
14
+ newEmail: string;
15
+ repeatNewEmail: string;
16
+ };
17
+ validations: {
18
+ fieldRequired: string;
19
+ invalidEmail: string;
20
+ emailsDoNotMatch: string;
21
+ };
22
+ changeEmail: string;
23
+ emailChanged: string;
24
+ };
25
+ login: {
26
+ fields: {
27
+ email: string;
28
+ password: string;
29
+ username: string;
30
+ };
31
+ validations: {
32
+ fieldRequired: string;
33
+ invalidEmail: string;
34
+ };
35
+ login: string;
36
+ loginWith: string;
37
+ forgotPassword: string;
38
+ createAccount: string;
39
+ invalidCredentials: string;
40
+ };
41
+ otp: {
42
+ fields: {
43
+ email: string;
44
+ };
45
+ validations: {
46
+ fieldRequired: string;
47
+ invalidEmail: string;
48
+ };
49
+ request: string;
50
+ checkEmail: string;
51
+ verificationCode: string;
52
+ };
53
+ password: {
54
+ fields: {
55
+ password: string;
56
+ repeatPassword: string;
57
+ };
58
+ validations: {
59
+ fieldRequired: string;
60
+ minimumPasswordLength: (minimumPasswordLength: number) => string;
61
+ passwordsDoNotMatch: string;
62
+ };
63
+ changePassword: string;
64
+ passwordChanged: string;
65
+ };
66
+ register: {
67
+ fields: {
68
+ email: string;
69
+ password: string;
70
+ repeatPassword: string;
71
+ username: string;
72
+ };
73
+ validations: {
74
+ fieldRequired: string;
75
+ invalidEmail: string;
76
+ notAlphaNumeric: string;
77
+ };
78
+ register: string;
79
+ forgotPassword: string;
80
+ accountCreated: string;
81
+ alreadyRegistered: string;
82
+ };
83
+ verification: {
84
+ slider: string;
85
+ };
86
+ }
87
+ import type { Ref } from 'vue';
88
+ export declare const lang: Ref<{
89
+ isoName: string;
90
+ unprocessableRequest: string;
91
+ myAccount: string;
92
+ signOut: string;
93
+ consent: {
94
+ message: (name: string) => string;
95
+ deny: string;
96
+ allow: string;
97
+ };
98
+ email: {
99
+ fields: {
100
+ email: string;
101
+ newEmail: string;
102
+ repeatNewEmail: string;
103
+ };
104
+ validations: {
105
+ fieldRequired: string;
106
+ invalidEmail: string;
107
+ emailsDoNotMatch: string;
108
+ };
109
+ changeEmail: string;
110
+ emailChanged: string;
111
+ };
112
+ login: {
113
+ fields: {
114
+ email: string;
115
+ password: string;
116
+ username: string;
117
+ };
118
+ validations: {
119
+ fieldRequired: string;
120
+ invalidEmail: string;
121
+ };
122
+ login: string;
123
+ loginWith: string;
124
+ forgotPassword: string;
125
+ createAccount: string;
126
+ invalidCredentials: string;
127
+ };
128
+ otp: {
129
+ fields: {
130
+ email: string;
131
+ };
132
+ validations: {
133
+ fieldRequired: string;
134
+ invalidEmail: string;
135
+ };
136
+ request: string;
137
+ checkEmail: string;
138
+ verificationCode: string;
139
+ };
140
+ password: {
141
+ fields: {
142
+ password: string;
143
+ repeatPassword: string;
144
+ };
145
+ validations: {
146
+ fieldRequired: string;
147
+ minimumPasswordLength: (minimumPasswordLength: number) => string;
148
+ passwordsDoNotMatch: string;
149
+ };
150
+ changePassword: string;
151
+ passwordChanged: string;
152
+ };
153
+ register: {
154
+ fields: {
155
+ email: string;
156
+ password: string;
157
+ repeatPassword: string;
158
+ username: string;
159
+ };
160
+ validations: {
161
+ fieldRequired: string;
162
+ invalidEmail: string;
163
+ notAlphaNumeric: string;
164
+ };
165
+ register: string;
166
+ forgotPassword: string;
167
+ accountCreated: string;
168
+ alreadyRegistered: string;
169
+ };
170
+ verification: {
171
+ slider: string;
172
+ };
173
+ }>;
174
+ export declare const defineLang: (lang: Language) => Language;
175
+ export declare const useLang: () => Ref<Language>;
176
+ export declare const loadLang: (isoName: string) => Promise<void>;
@@ -0,0 +1,3 @@
1
+ import type { Language } from '../lang';
2
+ declare const lang: Language;
3
+ export default lang;
@@ -0,0 +1,3 @@
1
+ import nl from 'nl.flag';
2
+ import enUs from 'en-US.flag';
3
+ export { nl, enUs };
@@ -0,0 +1,3 @@
1
+ import type { Language } from '../lang';
2
+ declare const lang: Language;
3
+ export default lang;