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.
- package/README.md +18 -0
- package/dist/api/useLoginApi.d.ts +19 -0
- package/dist/api/useLoginInstance.d.ts +11 -0
- package/dist/api/usePerfilApi.d.ts +8 -0
- package/dist/api/useRecuperarPassApi.d.ts +18 -0
- package/dist/api/useRegistroUsuarioApi.d.ts +6 -0
- package/dist/components/FgeButtonCounter.vue.d.ts +14 -0
- package/dist/components/FgeButtonCounter.vue.d.ts.map +1 -0
- package/dist/components/FgeConfirmDialog.vue.d.ts +39 -0
- package/dist/components/FgeConfirmDialog.vue.d.ts.map +1 -0
- package/dist/components/FgeEnviarCodigo.vue.d.ts +84 -0
- package/dist/components/FgeEnviarCodigo.vue.d.ts.map +1 -0
- package/dist/components/FgeErrorMessage.vue.d.ts +10 -0
- package/dist/components/FgeErrorMessage.vue.d.ts.map +1 -0
- package/dist/components/FgeFooter.vue.d.ts +2 -0
- package/dist/components/FgeFooter.vue.d.ts.map +1 -0
- package/dist/components/FgeHeader.vue.d.ts +2 -0
- package/dist/components/FgeHeader.vue.d.ts.map +1 -0
- package/dist/components/FgeLoadingComponent.vue.d.ts +2 -0
- package/dist/components/FgeLoadingComponent.vue.d.ts.map +1 -0
- package/dist/components/FgeLogin.vue.d.ts +2 -0
- package/dist/components/FgeLogin.vue.d.ts.map +1 -0
- package/dist/components/FgeMenuItems.vue.d.ts +2 -0
- package/dist/components/FgeMenuItems.vue.d.ts.map +1 -0
- package/dist/components/FgePerfil.vue.d.ts +12 -0
- package/dist/components/FgePerfil.vue.d.ts.map +1 -0
- package/dist/components/FgePerfilHeader.vue.d.ts +21 -0
- package/dist/components/FgePerfilHeader.vue.d.ts.map +1 -0
- package/dist/components/FgePerfilSidebar.vue.d.ts +5 -0
- package/dist/components/FgePerfilSidebar.vue.d.ts.map +1 -0
- package/dist/components/FgeRecuperarPassword.vue.d.ts +2 -0
- package/dist/components/FgeRecuperarPassword.vue.d.ts.map +1 -0
- package/dist/components/FgeRegistrarPage.vue.d.ts +2 -0
- package/dist/components/FgeRegistrarPage.vue.d.ts.map +1 -0
- package/dist/components/FgeSidebar.vue.d.ts +87 -0
- package/dist/components/FgeSidebar.vue.d.ts.map +1 -0
- package/dist/components/FgeStepComponent.vue.d.ts +97 -0
- package/dist/components/FgeStepComponent.vue.d.ts.map +1 -0
- package/dist/components/FgeToast.vue.d.ts +106 -0
- package/dist/components/FgeToast.vue.d.ts.map +1 -0
- package/dist/components/PrincipalLoginComp.vue.d.ts +44 -0
- package/dist/components/PrincipalLoginComp.vue.d.ts.map +1 -0
- package/dist/components/svgIcons/CameraIcon.vue.d.ts +10 -0
- package/dist/components/svgIcons/CameraIcon.vue.d.ts.map +1 -0
- package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts +14 -0
- package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts.map +1 -0
- package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts +2 -0
- package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts.map +1 -0
- package/dist/constants/env.const.d.ts +5 -0
- package/dist/constants/locale.const.d.ts +43 -0
- package/dist/constants/regex.const.d.ts +4 -0
- package/dist/constants/validations.const.d.ts +2 -0
- package/dist/fge-auth-component.cjs.js +551 -0
- package/dist/fge-auth-component.css +1 -0
- package/dist/fge-auth-component.es.js +20585 -0
- package/dist/fge-auth-component.umd.js +552 -0
- package/dist/helpers/cookie.helper.d.ts +11 -0
- package/dist/helpers/error.helper.d.ts +7 -0
- package/dist/helpers/file.helper.d.ts +1 -0
- package/dist/helpers/helpers.d.ts +1 -0
- package/dist/hooks/useCiudadania.d.ts +3 -0
- package/dist/hooks/useEnviarMensaje.d.ts +20 -0
- package/dist/hooks/useGenericSidebar.d.ts +5 -0
- package/dist/hooks/useLoginForm.d.ts +27 -0
- package/dist/hooks/usePerfil.d.ts +36 -0
- package/dist/hooks/useRecuperarPassword.d.ts +30 -0
- package/dist/hooks/useRegisterForm.d.ts +36 -0
- package/dist/interfaces/loginInterfaces.d.ts +11 -0
- package/dist/main.d.ts +3 -0
- package/dist/outputs/index.d.ts +7 -0
- package/dist/outputs/main.d.ts +13 -0
- package/dist/store/index.d.ts +2 -0
- package/dist/store/useLoginStore.d.ts +167 -0
- package/dist/store/useStateStore.d.ts +13 -0
- package/dist/vite.svg +1 -0
- package/package.json +77 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
type ToastPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center';
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
group: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: null;
|
|
7
|
+
};
|
|
8
|
+
position: {
|
|
9
|
+
type: PropType<ToastPosition>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
autoZIndex: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
baseZIndex: {
|
|
17
|
+
type: NumberConstructor;
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
breakpoints: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: null;
|
|
23
|
+
};
|
|
24
|
+
closeIcon: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
infoIcon: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
warnIcon: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
errorIcon: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
successIcon: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
closeButtonProps: {
|
|
45
|
+
type: null;
|
|
46
|
+
default: null;
|
|
47
|
+
};
|
|
48
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
+
group: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: null;
|
|
52
|
+
};
|
|
53
|
+
position: {
|
|
54
|
+
type: PropType<ToastPosition>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
autoZIndex: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
baseZIndex: {
|
|
62
|
+
type: NumberConstructor;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
breakpoints: {
|
|
66
|
+
type: ObjectConstructor;
|
|
67
|
+
default: null;
|
|
68
|
+
};
|
|
69
|
+
closeIcon: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
infoIcon: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
warnIcon: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
81
|
+
errorIcon: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
85
|
+
successIcon: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
closeButtonProps: {
|
|
90
|
+
type: null;
|
|
91
|
+
default: null;
|
|
92
|
+
};
|
|
93
|
+
}>>, {
|
|
94
|
+
group: string;
|
|
95
|
+
breakpoints: Record<string, any>;
|
|
96
|
+
autoZIndex: boolean;
|
|
97
|
+
baseZIndex: number;
|
|
98
|
+
position: ToastPosition;
|
|
99
|
+
closeIcon: string;
|
|
100
|
+
infoIcon: string;
|
|
101
|
+
warnIcon: string;
|
|
102
|
+
errorIcon: string;
|
|
103
|
+
successIcon: string;
|
|
104
|
+
closeButtonProps: any;
|
|
105
|
+
}>;
|
|
106
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FgeToast.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeToast.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,yIAAyI,CAAC;AAChK,cAAc,yIAAyI,CAAC;AACxJ,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
apiBaseUrl: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
aplicacion: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
rrhhUrl: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
redirectLoginFunction: {
|
|
15
|
+
type: FunctionConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
redirectLogoutFunction: {
|
|
19
|
+
type: FunctionConstructor;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
apiBaseUrl: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
aplicacion: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
rrhhUrl: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
redirectLoginFunction: {
|
|
36
|
+
type: FunctionConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
redirectLogoutFunction: {
|
|
40
|
+
type: FunctionConstructor;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>>, {}>;
|
|
44
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrincipalLoginComp.vue.d.ts","sourceRoot":"","sources":["../../src/components/PrincipalLoginComp.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,mJAAmJ,CAAC;AAC1K,cAAc,mJAAmJ,CAAC;AAClK,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
svgClass: {
|
|
3
|
+
required: false;
|
|
4
|
+
};
|
|
5
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
svgClass: {
|
|
7
|
+
required: false;
|
|
8
|
+
};
|
|
9
|
+
}>>, {}>;
|
|
10
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CameraIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/svgIcons/CameraIcon.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,oJAAoJ,CAAC;AAC3K,cAAc,oJAAoJ,CAAC;AACnK,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
color: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
color: string;
|
|
13
|
+
}>;
|
|
14
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckMarkIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/svgIcons/CheckMarkIcon.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uJAAuJ,CAAC;AAC9K,cAAc,uJAAuJ,CAAC;AACtK,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":"DefaultUserIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/svgIcons/DefaultUserIcon.vue"],"names":[],"mappings":";AA+BA,wBAA4E"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare const PRIME_LOCALE_ES: {
|
|
2
|
+
startsWith: string;
|
|
3
|
+
contains: string;
|
|
4
|
+
notContains: string;
|
|
5
|
+
endsWith: string;
|
|
6
|
+
equals: string;
|
|
7
|
+
notEquals: string;
|
|
8
|
+
noFilter: string;
|
|
9
|
+
lt: string;
|
|
10
|
+
lte: string;
|
|
11
|
+
gt: string;
|
|
12
|
+
gte: string;
|
|
13
|
+
dateIs: string;
|
|
14
|
+
dateIsNot: string;
|
|
15
|
+
dateBefore: string;
|
|
16
|
+
dateAfter: string;
|
|
17
|
+
clear: string;
|
|
18
|
+
apply: string;
|
|
19
|
+
matchAll: string;
|
|
20
|
+
matchAny: string;
|
|
21
|
+
addRule: string;
|
|
22
|
+
removeRule: string;
|
|
23
|
+
accept: string;
|
|
24
|
+
reject: string;
|
|
25
|
+
choose: string;
|
|
26
|
+
upload: string;
|
|
27
|
+
cancel: string;
|
|
28
|
+
dayNames: string[];
|
|
29
|
+
dayNamesShort: string[];
|
|
30
|
+
dayNamesMin: string[];
|
|
31
|
+
monthNames: string[];
|
|
32
|
+
monthNamesShort: string[];
|
|
33
|
+
today: string;
|
|
34
|
+
weekHeader: string;
|
|
35
|
+
firstDayOfWeek: number;
|
|
36
|
+
dateFormat: string;
|
|
37
|
+
weak: string;
|
|
38
|
+
medium: string;
|
|
39
|
+
strong: string;
|
|
40
|
+
passwordPrompt: string;
|
|
41
|
+
emptyFilterMessage: string;
|
|
42
|
+
emptyMessage: string;
|
|
43
|
+
};
|