general-library-union 2.7.28 → 2.7.30
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/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +5 -3
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +3 -3
- package/fesm2022/general-library-union.mjs +70 -8
- 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 +15 -27
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +0 -26
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;
|
|
@@ -1165,6 +1165,12 @@ min-height: 60px !important;
|
|
|
1165
1165
|
text-align: center
|
|
1166
1166
|
}
|
|
1167
1167
|
|
|
1168
|
+
.avatar-image {
|
|
1169
|
+
width: 100%;
|
|
1170
|
+
height: 100%;
|
|
1171
|
+
object-fit: cover;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1168
1174
|
.UploadFoto-btn {
|
|
1169
1175
|
box-shadow: 2px 2px 5px #ccc;
|
|
1170
1176
|
}
|
|
@@ -1252,32 +1258,7 @@ min-height: 60px !important;
|
|
|
1252
1258
|
color: #ffffff;
|
|
1253
1259
|
}
|
|
1254
1260
|
|
|
1255
|
-
@media (max-width:1300px){
|
|
1256
|
-
.hojavida {
|
|
1257
|
-
width: 78.5%;
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
.UploadFoto-btn {
|
|
1261
|
-
width: 20%;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
.avatar-container{
|
|
1265
|
-
width: 120px;
|
|
1266
|
-
height: 120px;
|
|
1267
|
-
border: solid 5px var(--color-700);
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.menu-accordeon {
|
|
1271
|
-
max-height: 330px;
|
|
1272
|
-
width: 100%;
|
|
1273
|
-
height: 300px !important;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.mbottom {
|
|
1277
|
-
margin-top: -30px !important;
|
|
1278
|
-
}
|
|
1279
1261
|
|
|
1280
|
-
}
|
|
1281
1262
|
|
|
1282
1263
|
/******************************************************************************
|
|
1283
1264
|
* CARD INSTRUCCIONES styles
|
|
@@ -2631,6 +2612,13 @@ li.btn-descarga-masiva a {
|
|
|
2631
2612
|
overflow: hidden;
|
|
2632
2613
|
text-align: center
|
|
2633
2614
|
}
|
|
2615
|
+
|
|
2616
|
+
.avatar-image {
|
|
2617
|
+
width: 100%;
|
|
2618
|
+
height: 100%;
|
|
2619
|
+
object-fit: cover;
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2634
2622
|
p.chip {
|
|
2635
2623
|
background: #fff;
|
|
2636
2624
|
padding: 0.35rem 3%;
|
|
@@ -3418,8 +3406,8 @@ td.GrupoColor {
|
|
|
3418
3406
|
}
|
|
3419
3407
|
|
|
3420
3408
|
.avatar-image {
|
|
3421
|
-
width:
|
|
3422
|
-
height:
|
|
3409
|
+
width: 100%;
|
|
3410
|
+
height: 100%;
|
|
3423
3411
|
object-fit: cover;
|
|
3424
3412
|
}
|
|
3425
3413
|
|
|
@@ -1309,32 +1309,6 @@ body {
|
|
|
1309
1309
|
color: white;
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
|
-
@media (max-width:1300px){
|
|
1313
|
-
.hojavida {
|
|
1314
|
-
width: 78.5%;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
.UploadFoto-btn {
|
|
1318
|
-
width: 20%;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
.avatar-container{
|
|
1322
|
-
width: 120px;
|
|
1323
|
-
height: 120px;
|
|
1324
|
-
border: solid 5px var(--color-700);
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
.menu-accordeon {
|
|
1328
|
-
max-height: 330px;
|
|
1329
|
-
width: 100%;
|
|
1330
|
-
height: 300px !important;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
.mbottom {
|
|
1334
|
-
margin-top: -30px !important;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
}
|
|
1338
1312
|
|
|
1339
1313
|
|
|
1340
1314
|
|