fge-auth-component 0.0.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 (76) hide show
  1. package/README.md +18 -0
  2. package/dist/api/useLoginApi.d.ts +19 -0
  3. package/dist/api/useLoginInstance.d.ts +11 -0
  4. package/dist/api/usePerfilApi.d.ts +8 -0
  5. package/dist/api/useRecuperarPassApi.d.ts +18 -0
  6. package/dist/api/useRegistroUsuarioApi.d.ts +6 -0
  7. package/dist/components/FgeButtonCounter.vue.d.ts +14 -0
  8. package/dist/components/FgeButtonCounter.vue.d.ts.map +1 -0
  9. package/dist/components/FgeConfirmDialog.vue.d.ts +39 -0
  10. package/dist/components/FgeConfirmDialog.vue.d.ts.map +1 -0
  11. package/dist/components/FgeEnviarCodigo.vue.d.ts +84 -0
  12. package/dist/components/FgeEnviarCodigo.vue.d.ts.map +1 -0
  13. package/dist/components/FgeErrorMessage.vue.d.ts +10 -0
  14. package/dist/components/FgeErrorMessage.vue.d.ts.map +1 -0
  15. package/dist/components/FgeFooter.vue.d.ts +2 -0
  16. package/dist/components/FgeFooter.vue.d.ts.map +1 -0
  17. package/dist/components/FgeHeader.vue.d.ts +2 -0
  18. package/dist/components/FgeHeader.vue.d.ts.map +1 -0
  19. package/dist/components/FgeLoadingComponent.vue.d.ts +2 -0
  20. package/dist/components/FgeLoadingComponent.vue.d.ts.map +1 -0
  21. package/dist/components/FgeLogin.vue.d.ts +2 -0
  22. package/dist/components/FgeLogin.vue.d.ts.map +1 -0
  23. package/dist/components/FgeMenuItems.vue.d.ts +2 -0
  24. package/dist/components/FgeMenuItems.vue.d.ts.map +1 -0
  25. package/dist/components/FgePerfil.vue.d.ts +12 -0
  26. package/dist/components/FgePerfil.vue.d.ts.map +1 -0
  27. package/dist/components/FgePerfilHeader.vue.d.ts +21 -0
  28. package/dist/components/FgePerfilHeader.vue.d.ts.map +1 -0
  29. package/dist/components/FgePerfilSidebar.vue.d.ts +5 -0
  30. package/dist/components/FgePerfilSidebar.vue.d.ts.map +1 -0
  31. package/dist/components/FgeRecuperarPassword.vue.d.ts +2 -0
  32. package/dist/components/FgeRecuperarPassword.vue.d.ts.map +1 -0
  33. package/dist/components/FgeRegistrarPage.vue.d.ts +2 -0
  34. package/dist/components/FgeRegistrarPage.vue.d.ts.map +1 -0
  35. package/dist/components/FgeSidebar.vue.d.ts +87 -0
  36. package/dist/components/FgeSidebar.vue.d.ts.map +1 -0
  37. package/dist/components/FgeStepComponent.vue.d.ts +97 -0
  38. package/dist/components/FgeStepComponent.vue.d.ts.map +1 -0
  39. package/dist/components/FgeToast.vue.d.ts +106 -0
  40. package/dist/components/FgeToast.vue.d.ts.map +1 -0
  41. package/dist/components/PrincipalLoginComp.vue.d.ts +44 -0
  42. package/dist/components/PrincipalLoginComp.vue.d.ts.map +1 -0
  43. package/dist/components/svgIcons/CameraIcon.vue.d.ts +10 -0
  44. package/dist/components/svgIcons/CameraIcon.vue.d.ts.map +1 -0
  45. package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts +14 -0
  46. package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts.map +1 -0
  47. package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts +2 -0
  48. package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts.map +1 -0
  49. package/dist/constants/env.const.d.ts +5 -0
  50. package/dist/constants/locale.const.d.ts +43 -0
  51. package/dist/constants/regex.const.d.ts +4 -0
  52. package/dist/constants/validations.const.d.ts +2 -0
  53. package/dist/fge-auth-component.cjs.js +551 -0
  54. package/dist/fge-auth-component.css +1 -0
  55. package/dist/fge-auth-component.es.js +20585 -0
  56. package/dist/fge-auth-component.umd.js +552 -0
  57. package/dist/helpers/cookie.helper.d.ts +11 -0
  58. package/dist/helpers/error.helper.d.ts +7 -0
  59. package/dist/helpers/file.helper.d.ts +1 -0
  60. package/dist/helpers/helpers.d.ts +1 -0
  61. package/dist/hooks/useCiudadania.d.ts +3 -0
  62. package/dist/hooks/useEnviarMensaje.d.ts +20 -0
  63. package/dist/hooks/useGenericSidebar.d.ts +5 -0
  64. package/dist/hooks/useLoginForm.d.ts +27 -0
  65. package/dist/hooks/usePerfil.d.ts +36 -0
  66. package/dist/hooks/useRecuperarPassword.d.ts +30 -0
  67. package/dist/hooks/useRegisterForm.d.ts +36 -0
  68. package/dist/interfaces/loginInterfaces.d.ts +11 -0
  69. package/dist/main.d.ts +3 -0
  70. package/dist/outputs/index.d.ts +7 -0
  71. package/dist/outputs/main.d.ts +13 -0
  72. package/dist/store/index.d.ts +2 -0
  73. package/dist/store/useLoginStore.d.ts +167 -0
  74. package/dist/store/useStateStore.d.ts +13 -0
  75. package/dist/vite.svg +1 -0
  76. package/package.json +77 -0
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+ 1. Disable the built-in TypeScript Extension
16
+ 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+ 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+ 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
@@ -0,0 +1,19 @@
1
+ import { IResponse } from './useLoginInstance';
2
+ export interface ILoginApi {
3
+ usuario: string;
4
+ password: string;
5
+ aplicacion: string;
6
+ codigoDispositivo?: string;
7
+ }
8
+ export interface I2AuthLoginApi {
9
+ code: string;
10
+ usuarioId: string;
11
+ aplicacion: string;
12
+ codigoDispositivo?: string;
13
+ }
14
+ export default function useLoginApi(): {
15
+ onLoginApi: (values: ILoginApi) => Promise<IResponse>;
16
+ on2AuthLoginApi: (values: I2AuthLoginApi) => Promise<IResponse>;
17
+ onLogoutApi: () => Promise<IResponse>;
18
+ onLoginCiudadaniaApi: (values: any) => Promise<IResponse>;
19
+ };
@@ -0,0 +1,11 @@
1
+ export interface IResponse {
2
+ error: boolean;
3
+ message: string;
4
+ response: {
5
+ [key: string]: any;
6
+ } | undefined;
7
+ status: number;
8
+ }
9
+ export default function useLoginApiInstance(): {
10
+ apiLoginInstance: import("axios").AxiosInstance;
11
+ };
@@ -0,0 +1,8 @@
1
+ import { IResponse } from './useLoginInstance';
2
+ export default function usePerfilApi(): {
3
+ onEnviarMensajePerfilContactoApi: (values: any) => Promise<IResponse>;
4
+ onConfirmarContactoPerfilApi: (values: any) => Promise<IResponse>;
5
+ onCambiarPasswordPerfilApi: (values: any) => Promise<IResponse>;
6
+ onCambiarImagenPerfilApi: (values: any) => Promise<IResponse>;
7
+ onActualizarDatosApi: (values: any) => Promise<IResponse>;
8
+ };
@@ -0,0 +1,18 @@
1
+ import { IResponse } from './useLoginInstance';
2
+ export interface IRecoverPasswordApi {
3
+ usuario: string;
4
+ aplicacion: string;
5
+ }
6
+ export interface ISendRecoveryCodeApi extends IRecoverPasswordApi {
7
+ code: number;
8
+ }
9
+ export interface IChangePasswordApi extends IRecoverPasswordApi {
10
+ code: number;
11
+ newPassword: string;
12
+ confirmPassword: string;
13
+ }
14
+ export default function useRecuperarPassApi(): {
15
+ onRecoverPasswordApi: ({ usuario, aplicacion }: IRecoverPasswordApi) => Promise<IResponse>;
16
+ onSendRecoveryCodeApi: ({ usuario, aplicacion, code }: ISendRecoveryCodeApi) => Promise<IResponse>;
17
+ onChangePasswordApi: ({ usuario, aplicacion, code, newPassword, confirmPassword }: IChangePasswordApi) => Promise<IResponse>;
18
+ };
@@ -0,0 +1,6 @@
1
+ export default function useRegistroUsuarioApi(): {
2
+ onVerificarDatosRegistroApi: (values: any) => Promise<any>;
3
+ onRegistrarUsuarioApi: (values: any) => Promise<any>;
4
+ onSolicitarCodigoVerificacionApi: (values: any) => Promise<any>;
5
+ onConfirmarCodigoVerificacionApi: (values: any) => Promise<any>;
6
+ };
@@ -0,0 +1,14 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ reenviarMensaje: {
3
+ type: FunctionConstructor;
4
+ required: true;
5
+ };
6
+ }, {
7
+ reInit: (val?: number) => void;
8
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
+ reenviarMensaje: {
10
+ type: FunctionConstructor;
11
+ required: true;
12
+ };
13
+ }>>, {}>;
14
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeButtonCounter.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeButtonCounter.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iJAAiJ,CAAC;AACxK,cAAc,iJAAiJ,CAAC;AAChK,eAAe,SAAS,CAAC"}
@@ -0,0 +1,39 @@
1
+ import type { ConfirmationOptions } from 'primevue/confirmationoptions';
2
+ export interface IConfirmationOptionsExtended extends ConfirmationOptions {
3
+ question?: string;
4
+ instructions?: Array<string>;
5
+ }
6
+ export interface IDialogSlotProps {
7
+ message: IConfirmationOptionsExtended;
8
+ }
9
+ declare const _sfc_main: import("vue").DefineComponent<{
10
+ group: StringConstructor;
11
+ breakpoints: {
12
+ type: ObjectConstructor;
13
+ default: () => {
14
+ '960px': string;
15
+ '640px': string;
16
+ };
17
+ };
18
+ draggable: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
+ group: StringConstructor;
24
+ breakpoints: {
25
+ type: ObjectConstructor;
26
+ default: () => {
27
+ '960px': string;
28
+ '640px': string;
29
+ };
30
+ };
31
+ draggable: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ }>>, {
36
+ breakpoints: Record<string, any>;
37
+ draggable: boolean;
38
+ }>;
39
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeConfirmDialog.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeConfirmDialog.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iJAAiJ,CAAC;AACxK,cAAc,iJAAiJ,CAAC;AAChK,OAAO,+IAA+I,CAAC;AACvJ,eAAe,SAAS,CAAC"}
@@ -0,0 +1,84 @@
1
+ import { PropType } from 'vue';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ fieldName: {
4
+ type: StringConstructor;
5
+ required: true;
6
+ };
7
+ currentContacto: {
8
+ type: PropType<string | null | undefined>;
9
+ default: null;
10
+ required: true;
11
+ };
12
+ error: {
13
+ type: PropType<string | null | undefined>;
14
+ required: true;
15
+ };
16
+ cancelarText: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ aceptarText: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ cancelarFunction: {
25
+ type: FunctionConstructor;
26
+ required: false;
27
+ };
28
+ aceptarFunction: {
29
+ type: FunctionConstructor;
30
+ required: false;
31
+ };
32
+ reenviarMensaje: {
33
+ type: FunctionConstructor;
34
+ required: false;
35
+ };
36
+ refCounter: {
37
+ required: true;
38
+ };
39
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:codigo" | "update:refCounter")[], "update:codigo" | "update:refCounter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
40
+ fieldName: {
41
+ type: StringConstructor;
42
+ required: true;
43
+ };
44
+ currentContacto: {
45
+ type: PropType<string | null | undefined>;
46
+ default: null;
47
+ required: true;
48
+ };
49
+ error: {
50
+ type: PropType<string | null | undefined>;
51
+ required: true;
52
+ };
53
+ cancelarText: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ aceptarText: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ cancelarFunction: {
62
+ type: FunctionConstructor;
63
+ required: false;
64
+ };
65
+ aceptarFunction: {
66
+ type: FunctionConstructor;
67
+ required: false;
68
+ };
69
+ reenviarMensaje: {
70
+ type: FunctionConstructor;
71
+ required: false;
72
+ };
73
+ refCounter: {
74
+ required: true;
75
+ };
76
+ }>> & {
77
+ "onUpdate:codigo"?: ((...args: any[]) => any) | undefined;
78
+ "onUpdate:refCounter"?: ((...args: any[]) => any) | undefined;
79
+ }, {
80
+ currentContacto: string | null | undefined;
81
+ cancelarText: string;
82
+ aceptarText: string;
83
+ }>;
84
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeEnviarCodigo.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeEnviarCodigo.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,gJAAgJ,CAAC;AACvK,cAAc,gJAAgJ,CAAC;AAC/J,eAAe,SAAS,CAAC"}
@@ -0,0 +1,10 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ error: {
3
+ required: true;
4
+ };
5
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6
+ error: {
7
+ required: true;
8
+ };
9
+ }>>, {}>;
10
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeErrorMessage.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeErrorMessage.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,gJAAgJ,CAAC;AACvK,cAAc,gJAAgJ,CAAC;AAC/J,eAAe,SAAS,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeFooter.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeFooter.vue"],"names":[],"mappings":"AAcA,OAAO,wJAAwJ,CAAA;;AAG/J,wBAA4G"}
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeHeader.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeHeader.vue"],"names":[],"mappings":"AAgBA,OAAO,wJAAwJ,CAAA;;AAG/J,wBAA4G"}
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeLoadingComponent.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeLoadingComponent.vue"],"names":[],"mappings":"AAcA,OAAO,kKAAkK,CAAA;;AAGzK,wBAA4G"}
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeLogin.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeLogin.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,yIAAyI,CAAC;AAChK,cAAc,yIAAyI,CAAC;AACxJ,eAAe,SAAS,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeMenuItems.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeMenuItems.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,6IAA6I,CAAC;AACpK,cAAc,6IAA6I,CAAC;AAC5J,OAAO,2IAA2I,CAAC;AACnJ,eAAe,SAAS,CAAC"}
@@ -0,0 +1,12 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ onCloseBtn: {
3
+ type: FunctionConstructor;
4
+ required: false;
5
+ };
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ onCloseBtn: {
8
+ type: FunctionConstructor;
9
+ required: false;
10
+ };
11
+ }>>, {}>;
12
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgePerfil.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgePerfil.vue"],"names":[],"mappings":"AACA,cAAc,0IAA0I,CAAC;AACzJ,OAAO,uJAAuJ,CAAC;;AAE/J,wBAA0F"}
@@ -0,0 +1,21 @@
1
+ import { PropType } from 'vue';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ cambiarPassword: {
4
+ type: PropType<Function | null>;
5
+ required: false;
6
+ };
7
+ changeImage: {
8
+ type: FunctionConstructor;
9
+ required: false;
10
+ };
11
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
+ cambiarPassword: {
13
+ type: PropType<Function | null>;
14
+ required: false;
15
+ };
16
+ changeImage: {
17
+ type: FunctionConstructor;
18
+ required: false;
19
+ };
20
+ }>>, {}>;
21
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgePerfilHeader.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgePerfilHeader.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,gJAAgJ,CAAC;AACvK,cAAc,gJAAgJ,CAAC;AAC/J,OAAO,8IAA8I,CAAC;AACtJ,eAAe,SAAS,CAAC"}
@@ -0,0 +1,5 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {
2
+ openDialog: () => void;
3
+ closeDialog: (callback: Function) => void;
4
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
5
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgePerfilSidebar.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgePerfilSidebar.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iJAAiJ,CAAC;AACxK,cAAc,iJAAiJ,CAAC;AAChK,eAAe,SAAS,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeRecuperarPassword.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeRecuperarPassword.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,qJAAqJ,CAAC;AAC5K,cAAc,qJAAqJ,CAAC;AACpK,eAAe,SAAS,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeRegistrarPage.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeRegistrarPage.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iJAAiJ,CAAC;AACxK,cAAc,iJAAiJ,CAAC;AAChK,eAAe,SAAS,CAAC"}
@@ -0,0 +1,87 @@
1
+ export default _sfc_main;
2
+ declare namespace _sfc_main {
3
+ const name: string;
4
+ const inheritAttrs: boolean;
5
+ const emits: string[];
6
+ namespace props {
7
+ namespace visible {
8
+ export const type: BooleanConstructor;
9
+ const _default: boolean;
10
+ export { _default as default };
11
+ }
12
+ namespace position {
13
+ const type_1: StringConstructor;
14
+ export { type_1 as type };
15
+ const _default_1: string;
16
+ export { _default_1 as default };
17
+ }
18
+ namespace baseZIndex {
19
+ const type_2: NumberConstructor;
20
+ export { type_2 as type };
21
+ const _default_2: number;
22
+ export { _default_2 as default };
23
+ }
24
+ namespace autoZIndex {
25
+ const type_3: BooleanConstructor;
26
+ export { type_3 as type };
27
+ const _default_3: boolean;
28
+ export { _default_3 as default };
29
+ }
30
+ namespace dismissable {
31
+ const type_4: BooleanConstructor;
32
+ export { type_4 as type };
33
+ const _default_4: boolean;
34
+ export { _default_4 as default };
35
+ }
36
+ namespace showCloseIcon {
37
+ const type_5: BooleanConstructor;
38
+ export { type_5 as type };
39
+ const _default_5: boolean;
40
+ export { _default_5 as default };
41
+ }
42
+ namespace modal {
43
+ const type_6: BooleanConstructor;
44
+ export { type_6 as type };
45
+ const _default_6: boolean;
46
+ export { _default_6 as default };
47
+ }
48
+ namespace ariaCloseLabel {
49
+ const type_7: StringConstructor;
50
+ export { type_7 as type };
51
+ const _default_7: string;
52
+ export { _default_7 as default };
53
+ }
54
+ namespace showHeader {
55
+ const type_8: BooleanConstructor;
56
+ export { type_8 as type };
57
+ const _default_8: boolean;
58
+ export { _default_8 as default };
59
+ }
60
+ }
61
+ const mask: null;
62
+ const maskClickListener: null;
63
+ const container: null;
64
+ function beforeUnmount(): void;
65
+ namespace methods {
66
+ function hide(): void;
67
+ function onEnter(el: any): void;
68
+ function onLeave(): void;
69
+ function onAfterLeave(el: any): void;
70
+ function focus(): void;
71
+ function enableModality(): void;
72
+ function disableModality(): void;
73
+ function bindMaskClickListener(): void;
74
+ function unbindMaskClickListener(): void;
75
+ function destroyModal(): void;
76
+ function containerRef(el: any): void;
77
+ }
78
+ namespace computed {
79
+ function containerClass(): any;
80
+ function fullScreen(): any;
81
+ }
82
+ namespace directives {
83
+ export { Ripple as ripple };
84
+ }
85
+ const components: undefined;
86
+ }
87
+ import Ripple from 'primevue/ripple';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeSidebar.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeSidebar.vue"],"names":[],"mappings":"AA8PA,OAAO,yIAAyI,CAAA;;AAGhJ,wBAA4E"}
@@ -0,0 +1,97 @@
1
+ type StepItem = {
2
+ name: String;
3
+ };
4
+ declare const _sfc_main: import("vue").DefineComponent<{
5
+ showHeader: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ currentStep: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ steps: {
14
+ type: {
15
+ (arrayLength: number): StepItem[];
16
+ (...items: StepItem[]): StepItem[];
17
+ new (arrayLength: number): StepItem[];
18
+ new (...items: StepItem[]): StepItem[];
19
+ isArray(arg: any): arg is any[];
20
+ readonly prototype: any[];
21
+ from<T>(arrayLike: ArrayLike<T>): T[];
22
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
23
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
24
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
25
+ of<T_4>(...items: T_4[]): T_4[];
26
+ readonly [Symbol.species]: ArrayConstructor;
27
+ };
28
+ default: () => never[];
29
+ };
30
+ stepPrimaryColor: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ stepIconColor: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ containerClass: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ headerClass: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
+ showHeader: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ currentStep: {
52
+ type: NumberConstructor;
53
+ default: number;
54
+ };
55
+ steps: {
56
+ type: {
57
+ (arrayLength: number): StepItem[];
58
+ (...items: StepItem[]): StepItem[];
59
+ new (arrayLength: number): StepItem[];
60
+ new (...items: StepItem[]): StepItem[];
61
+ isArray(arg: any): arg is any[];
62
+ readonly prototype: any[];
63
+ from<T>(arrayLike: ArrayLike<T>): T[];
64
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
65
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
66
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
67
+ of<T_4>(...items: T_4[]): T_4[];
68
+ readonly [Symbol.species]: ArrayConstructor;
69
+ };
70
+ default: () => never[];
71
+ };
72
+ stepPrimaryColor: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ stepIconColor: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ };
80
+ containerClass: {
81
+ type: StringConstructor;
82
+ default: string;
83
+ };
84
+ headerClass: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ }>>, {
89
+ steps: StepItem[];
90
+ currentStep: number;
91
+ showHeader: boolean;
92
+ stepPrimaryColor: string;
93
+ stepIconColor: string;
94
+ containerClass: string;
95
+ headerClass: string;
96
+ }>;
97
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FgeStepComponent.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeStepComponent.vue"],"names":[],"mappings":"AACA,cAAc,iJAAiJ,CAAC;AAChK,OAAO,+JAA+J,CAAC;;AAEvK,wBAA0F"}