general-library-union 2.7.28 → 2.7.29
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/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +65 -5
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +3 -3
- package/fesm2022/general-library-union.mjs +66 -6
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/servicios/interceptores/token-interceptor.service.d.ts +6 -1
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +1 -1
- package/src/styles/primeng/sass/overrides/_theme_styles.scss +11 -7
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +10 -15
package/package.json
CHANGED
|
@@ -11,11 +11,16 @@ export declare class TokenInterceptorService implements HttpInterceptor {
|
|
|
11
11
|
private authService;
|
|
12
12
|
private storage;
|
|
13
13
|
private errorInterceptor;
|
|
14
|
+
private storageService;
|
|
14
15
|
private utilsService;
|
|
15
|
-
constructor(router: Router, authService: AuthService, storage: StorageService, errorInterceptor: ErrorIntecertorService, utilsService: UtilsService);
|
|
16
|
+
constructor(router: Router, authService: AuthService, storage: StorageService, errorInterceptor: ErrorIntecertorService, storageService: StorageService, utilsService: UtilsService);
|
|
16
17
|
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
17
18
|
interceptDetalle(request: HttpRequest<any>, next: HttpHandler): Promise<HttpEvent<any>>;
|
|
18
19
|
setearTokenRequest(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
20
|
+
portaltraerSitioSincrono(url: string, idDBSeguridad: any, idSitio: any, token: string): any;
|
|
21
|
+
obtenerTokenSyncrono(url: any): any;
|
|
22
|
+
private navegar;
|
|
23
|
+
get urlNavegador(): string;
|
|
19
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<TokenInterceptorService, never>;
|
|
20
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<TokenInterceptorService>;
|
|
21
26
|
}
|
package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ export declare class ImportarFuenteConComponent implements OnInit {
|
|
|
114
114
|
cargarFormularioCamposEntrada(): Promise<void>;
|
|
115
115
|
camposEntrada(fuente: FuenteGeneralModel, parametrosPunto: FuenteCampoAtributoModel[]): Promise<CampoFormularioModel[]>;
|
|
116
116
|
obtenerValorMarcador(valorEntrada: string): string;
|
|
117
|
-
determinarLongitud(tipoDato: string): 0 |
|
|
117
|
+
determinarLongitud(tipoDato: string): 0 | 100 | 5 | 20;
|
|
118
118
|
cargarParametrosPuntoProceso(): Promise<void>;
|
|
119
119
|
cargarArchivo(data: FileSelectEvent, fubauto: any): void;
|
|
120
120
|
private readFile;
|
|
@@ -1132,21 +1132,25 @@ min-height: 60px !important;
|
|
|
1132
1132
|
|
|
1133
1133
|
|
|
1134
1134
|
.hijo-seleccionado {
|
|
1135
|
-
border-left: 5px solid
|
|
1135
|
+
border-left: 5px solid var(--color-100);
|
|
1136
1136
|
padding-left: 10px;
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1137
|
+
padding: 4px 15px 5px;
|
|
1138
|
+
min-height: 33px;
|
|
1139
|
+
margin-left: 15px;
|
|
1140
1140
|
|
|
1141
1141
|
.hijo-seleccionado {
|
|
1142
|
-
border-left: 5px solid
|
|
1142
|
+
border-left: 5px solid var(--color-100);
|
|
1143
1143
|
padding-left: 10px;
|
|
1144
|
-
padding:
|
|
1145
|
-
min-height:
|
|
1144
|
+
padding: 4px 15px 5px;
|
|
1145
|
+
min-height: 33px;
|
|
1146
1146
|
margin-left: 15px;
|
|
1147
1147
|
}
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
|
+
.menu-accordeon .p-accordion-content td {
|
|
1151
|
+
padding: 0;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1150
1154
|
.hijo-noseleccionado {
|
|
1151
1155
|
border-left: 5px solid #4f4f5f;
|
|
1152
1156
|
padding: 8px 15px 5px;
|
|
@@ -1180,29 +1180,24 @@ body {
|
|
|
1180
1180
|
|
|
1181
1181
|
|
|
1182
1182
|
.hijo-seleccionado {
|
|
1183
|
-
border-left: 5px solid var(--color-200);
|
|
1184
|
-
padding-left: 10px;
|
|
1185
|
-
padding: 8px 15px 5px;
|
|
1186
|
-
min-height: 40px;
|
|
1187
|
-
margin-left: 15px;
|
|
1188
|
-
|
|
1189
|
-
.hijo-seleccionado {
|
|
1190
1183
|
border-left: 5px solid #4f4f5f;
|
|
1191
1184
|
padding-left: 10px;
|
|
1192
|
-
padding:
|
|
1193
|
-
min-height:
|
|
1185
|
+
padding: 4px 15px 5px;
|
|
1186
|
+
min-height: 33px;
|
|
1194
1187
|
margin-left: 15px;
|
|
1188
|
+
|
|
1189
|
+
.hijo-noseleccionado {
|
|
1190
|
+
border-left: 5px solid #4f4f5f;
|
|
1191
|
+
padding: 6px 15px 5px;
|
|
1192
|
+
min-height: 33px;
|
|
1193
|
+
margin-left: 15px;
|
|
1195
1194
|
}
|
|
1196
1195
|
}
|
|
1197
1196
|
|
|
1198
|
-
.
|
|
1199
|
-
|
|
1200
|
-
padding: 8px 15px 5px;
|
|
1201
|
-
min-height: 40px;
|
|
1202
|
-
margin-left: 15px;
|
|
1197
|
+
.menu-accordeon .p-accordion-content td {
|
|
1198
|
+
padding: 0;
|
|
1203
1199
|
}
|
|
1204
1200
|
|
|
1205
|
-
|
|
1206
1201
|
.avatar-container {
|
|
1207
1202
|
position: relative;
|
|
1208
1203
|
width: 130px;
|