fge-auth-component 2.1.0 → 3.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/dist/components/FgeButtonCounter.vue.d.ts.map +1 -1
- package/dist/components/FgeEnviarCodigo.vue.d.ts.map +1 -1
- package/dist/components/FgeErrorMessage.vue.d.ts.map +1 -1
- package/dist/components/FgeFooter.vue.d.ts.map +1 -1
- package/dist/components/FgeHeader.vue.d.ts.map +1 -1
- package/dist/components/FgeLoadingComponent.vue.d.ts.map +1 -1
- package/dist/components/FgeLogin.vue.d.ts.map +1 -1
- package/dist/components/FgeMenuItems.vue.d.ts.map +1 -1
- package/dist/components/FgePassword.vue.d.ts.map +1 -0
- package/dist/components/FgePerfil.vue.d.ts.map +1 -1
- package/dist/components/FgePerfilHeader.vue.d.ts.map +1 -1
- package/dist/components/FgePerfilSidebar.vue.d.ts.map +1 -1
- package/dist/components/FgeRecuperarPassword.vue.d.ts.map +1 -1
- package/dist/components/FgeRegistrarPage.vue.d.ts.map +1 -1
- package/dist/components/FgeStepComponent.vue.d.ts.map +1 -1
- package/dist/components/PasswordDialog.vue.d.ts.map +1 -0
- package/dist/components/PrincipalLoginComp.vue.d.ts.map +1 -1
- package/dist/components/Sidebar.vue.d.ts.map +1 -0
- package/dist/components/TelegramDialog.vue.d.ts.map +1 -0
- package/dist/components/UpdateImageDialog.vue.d.ts.map +1 -0
- package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/ErrorIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/ExclamationIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/LoaderIcon.vue.d.ts.map +1 -1
- package/dist/fge-auth-component.css +1 -1
- package/dist/fge-auth-component.es.js +20877 -21981
- package/dist/fge-auth-component.umd.js +21 -123
- package/dist/main.d.ts +9 -110
- package/package.json +6 -10
- package/dist/components/FgeConfirmDialog.vue.d.ts.map +0 -1
- package/dist/components/FgeSidebar.vue.d.ts.map +0 -1
- package/dist/components/FgeToast.vue.d.ts.map +0 -1
- package/dist/components/primevue/ConfirmDialog.vue.d.ts.map +0 -1
- package/dist/components/svgIcons/InfoIcon.vue.d.ts.map +0 -1
package/dist/main.d.ts
CHANGED
|
@@ -2,16 +2,12 @@ import type { App } from 'vue';
|
|
|
2
2
|
import type { ComponentOptionsMixin } from 'vue';
|
|
3
3
|
import type { DefineComponent } from 'vue';
|
|
4
4
|
import type { ExtractPropTypes } from 'vue';
|
|
5
|
-
import type { PropType } from 'vue';
|
|
6
5
|
import type { PublicProps } from 'vue';
|
|
7
6
|
import type { Ref } from 'vue';
|
|
8
7
|
import type { StoreDefinition } from 'pinia';
|
|
9
8
|
import type { _UnwrapAll } from 'pinia';
|
|
10
9
|
|
|
11
10
|
export declare type ConfigOptions = {
|
|
12
|
-
usePrimeDirectives?: boolean;
|
|
13
|
-
usePrimeServices?: boolean;
|
|
14
|
-
usePrimeVueLocale?: boolean;
|
|
15
11
|
useYupLocale?: boolean;
|
|
16
12
|
baseUrl: string;
|
|
17
13
|
aplicacion: string;
|
|
@@ -36,16 +32,25 @@ export declare const FgeAuthMenuComponent: DefineComponent<{
|
|
|
36
32
|
type: BooleanConstructor;
|
|
37
33
|
default: boolean;
|
|
38
34
|
};
|
|
35
|
+
isDarkMode: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
39
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("onLogout" | "onChangeMode")[], "onLogout" | "onChangeMode", PublicProps, Readonly<ExtractPropTypes<{
|
|
40
40
|
showChangeMode: {
|
|
41
41
|
type: BooleanConstructor;
|
|
42
42
|
default: boolean;
|
|
43
43
|
};
|
|
44
|
+
isDarkMode: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
44
48
|
}>> & {
|
|
45
49
|
onOnLogout?: ((...args: any[]) => any) | undefined;
|
|
46
50
|
onOnChangeMode?: ((...args: any[]) => any) | undefined;
|
|
47
51
|
}, {
|
|
48
52
|
showChangeMode: boolean;
|
|
53
|
+
isDarkMode: boolean;
|
|
49
54
|
}, {}>;
|
|
50
55
|
|
|
51
56
|
export declare const FgeLoginComponent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("onLogin" | "onLoginError")[], "onLogin" | "onLoginError", PublicProps, Readonly<ExtractPropTypes<{}>> & {
|
|
@@ -55,114 +60,8 @@ export declare const FgeLoginComponent: DefineComponent<{}, {}, {}, {}, {}, Comp
|
|
|
55
60
|
|
|
56
61
|
export declare const FgePerfilSidebar: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
57
62
|
|
|
58
|
-
export declare const FgeToast: DefineComponent<{
|
|
59
|
-
group: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
default: null;
|
|
62
|
-
};
|
|
63
|
-
position: {
|
|
64
|
-
type: PropType<ToastPosition>;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
autoZIndex: {
|
|
68
|
-
type: BooleanConstructor;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
|
-
baseZIndex: {
|
|
72
|
-
type: NumberConstructor;
|
|
73
|
-
default: number;
|
|
74
|
-
};
|
|
75
|
-
breakpoints: {
|
|
76
|
-
type: ObjectConstructor;
|
|
77
|
-
default: null;
|
|
78
|
-
};
|
|
79
|
-
closeIcon: {
|
|
80
|
-
type: StringConstructor;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
infoIcon: {
|
|
84
|
-
type: StringConstructor;
|
|
85
|
-
default: string;
|
|
86
|
-
};
|
|
87
|
-
warnIcon: {
|
|
88
|
-
type: StringConstructor;
|
|
89
|
-
default: string;
|
|
90
|
-
};
|
|
91
|
-
errorIcon: {
|
|
92
|
-
type: StringConstructor;
|
|
93
|
-
default: string;
|
|
94
|
-
};
|
|
95
|
-
successIcon: {
|
|
96
|
-
type: StringConstructor;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
closeButtonProps: {
|
|
100
|
-
type: null;
|
|
101
|
-
default: null;
|
|
102
|
-
};
|
|
103
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
104
|
-
group: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
default: null;
|
|
107
|
-
};
|
|
108
|
-
position: {
|
|
109
|
-
type: PropType<ToastPosition>;
|
|
110
|
-
default: string;
|
|
111
|
-
};
|
|
112
|
-
autoZIndex: {
|
|
113
|
-
type: BooleanConstructor;
|
|
114
|
-
default: boolean;
|
|
115
|
-
};
|
|
116
|
-
baseZIndex: {
|
|
117
|
-
type: NumberConstructor;
|
|
118
|
-
default: number;
|
|
119
|
-
};
|
|
120
|
-
breakpoints: {
|
|
121
|
-
type: ObjectConstructor;
|
|
122
|
-
default: null;
|
|
123
|
-
};
|
|
124
|
-
closeIcon: {
|
|
125
|
-
type: StringConstructor;
|
|
126
|
-
default: string;
|
|
127
|
-
};
|
|
128
|
-
infoIcon: {
|
|
129
|
-
type: StringConstructor;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
warnIcon: {
|
|
133
|
-
type: StringConstructor;
|
|
134
|
-
default: string;
|
|
135
|
-
};
|
|
136
|
-
errorIcon: {
|
|
137
|
-
type: StringConstructor;
|
|
138
|
-
default: string;
|
|
139
|
-
};
|
|
140
|
-
successIcon: {
|
|
141
|
-
type: StringConstructor;
|
|
142
|
-
default: string;
|
|
143
|
-
};
|
|
144
|
-
closeButtonProps: {
|
|
145
|
-
type: null;
|
|
146
|
-
default: null;
|
|
147
|
-
};
|
|
148
|
-
}>>, {
|
|
149
|
-
group: string;
|
|
150
|
-
position: ToastPosition;
|
|
151
|
-
autoZIndex: boolean;
|
|
152
|
-
baseZIndex: number;
|
|
153
|
-
breakpoints: Record<string, any>;
|
|
154
|
-
closeIcon: string;
|
|
155
|
-
infoIcon: string;
|
|
156
|
-
warnIcon: string;
|
|
157
|
-
errorIcon: string;
|
|
158
|
-
successIcon: string;
|
|
159
|
-
closeButtonProps: any;
|
|
160
|
-
}, {}>;
|
|
161
|
-
|
|
162
63
|
declare type ShowPage = 'login' | 'registrar' | 'recuperar-password';
|
|
163
64
|
|
|
164
|
-
declare type ToastPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center';
|
|
165
|
-
|
|
166
65
|
export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _UnwrapAll<Pick<{
|
|
167
66
|
id: Ref<string>;
|
|
168
67
|
currentPage: Ref<ShowPage>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fge-auth-component",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -33,17 +33,18 @@
|
|
|
33
33
|
"luxon": "^3.4.4",
|
|
34
34
|
"pinia": "^2.1.7",
|
|
35
35
|
"pinia-plugin-store": "^2.1.33",
|
|
36
|
-
"primevue": "^3.50.0",
|
|
37
36
|
"uuid": "^9.0.1",
|
|
38
37
|
"vee-validate": "^4.12.6",
|
|
39
38
|
"vue": "^3.0.0",
|
|
40
39
|
"yup": "^1.3.3"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"vue
|
|
42
|
+
"radix-vue": "^1.9.4",
|
|
43
|
+
"vue-login-adds": "^1.0.4",
|
|
44
|
+
"vue3-toastify": "^0.2.2"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
|
-
"@rushstack/eslint-patch": "^1.10.
|
|
47
|
+
"@rushstack/eslint-patch": "^1.10.4",
|
|
47
48
|
"@types/crypto-js": "^4.2.2",
|
|
48
49
|
"@types/luxon": "^3.4.2",
|
|
49
50
|
"@types/node": "^20.12.3",
|
|
@@ -51,16 +52,11 @@
|
|
|
51
52
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
52
53
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
53
54
|
"@vue/eslint-config-typescript": "^13.0.0",
|
|
54
|
-
"autoprefixer": "^10.4.19",
|
|
55
55
|
"eslint": "^8.57.0",
|
|
56
|
-
"eslint-plugin-vue": "^9.
|
|
56
|
+
"eslint-plugin-vue": "^9.27.0",
|
|
57
57
|
"path": "^0.12.7",
|
|
58
|
-
"postcss": "^8.4.38",
|
|
59
58
|
"prettier": "^3.2.5",
|
|
60
|
-
"primeicons": "^7.0.0",
|
|
61
|
-
"primevue": "^3.50.0",
|
|
62
59
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
63
|
-
"tailwindcss": "^3.4.3",
|
|
64
60
|
"typescript": "5.2.2",
|
|
65
61
|
"vite": "^5.2.8",
|
|
66
62
|
"vite-plugin-dts": "^2.3.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FgeConfirmDialog.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeConfirmDialog.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,2IAA2I,CAAC;AAClK,cAAc,2IAA2I,CAAC;AAC1J,OAAO,yIAAyI,CAAC;AACjJ,eAAe,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FgeSidebar.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeSidebar.vue"],"names":[],"mappings":"AA8PA,OAAO,mIAAmI,CAAA;;AAG1I,wBAA4E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FgeToast.vue.d.ts","sourceRoot":"","sources":["../../src/components/FgeToast.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,mIAAmI,CAAC;AAC1J,cAAc,mIAAmI,CAAC;AAClJ,eAAe,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ConfirmDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/primevue/ConfirmDialog.vue"],"names":[],"mappings":";AAqCA,wBAA4E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"InfoIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/svgIcons/InfoIcon.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,4IAA4I,CAAC;AACnK,cAAc,4IAA4I,CAAC;AAC3J,eAAe,SAAS,CAAC"}
|