general-library-union 2.7.26 → 2.7.27
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/data-exporter-table.utils.mjs +4 -4
- package/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +65 -5
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.mjs +3 -14
- package/fesm2022/general-library-union.mjs +69 -17
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/servicios/data-exporter-table.utils.d.ts +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 +13 -76
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +11 -74
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ export declare class DataExporter {
|
|
|
3
3
|
constructor();
|
|
4
4
|
exportPdf(lista: any[], exportColumns: any[], nombreArchivo: string): void;
|
|
5
5
|
exportExcel(lista: any[], nombreArchivo: string): Promise<void>;
|
|
6
|
-
exportExcelColumnas(lista: any[], nombreArchivo: string, columnas: string[]
|
|
6
|
+
exportExcelColumnas(lista: any[], nombreArchivo: string, columnas: string[]): Promise<void>;
|
|
7
7
|
saveAsExcelFile(buffer: any, fileName: string): void;
|
|
8
8
|
exportCSV(lista: any[], columnas: string[], nombreArchivo: string): void;
|
|
9
9
|
convertirAFormatoCSV(data: any[], columns: string[]): string;
|
|
@@ -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 | 5 | 20 | 100;
|
|
118
118
|
cargarParametrosPuntoProceso(): Promise<void>;
|
|
119
119
|
cargarArchivo(data: FileSelectEvent, fubauto: any): void;
|
|
120
120
|
private readFile;
|
|
@@ -856,7 +856,6 @@ color: var(--color-700);
|
|
|
856
856
|
margin: 0 auto;
|
|
857
857
|
display: table;
|
|
858
858
|
text-align: center;
|
|
859
|
-
padding: 2%;
|
|
860
859
|
}
|
|
861
860
|
|
|
862
861
|
.centrar-contenedor-imagen-sin-datos p {
|
|
@@ -865,16 +864,11 @@ color: var(--color-700);
|
|
|
865
864
|
font-weight: 500;
|
|
866
865
|
}
|
|
867
866
|
|
|
868
|
-
.contenedor-titulo-actos img {
|
|
869
|
-
width: 4.5rem;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
|
|
873
867
|
|
|
874
868
|
.centrar-contenedor-imagen-sin-datos img {
|
|
869
|
+
opacity: 0.6;
|
|
875
870
|
width: 100%;
|
|
876
|
-
max-width:
|
|
877
|
-
margin-bottom: -20px;
|
|
871
|
+
max-width: 300px;
|
|
878
872
|
}
|
|
879
873
|
|
|
880
874
|
.toast-salto-linea {
|
|
@@ -890,9 +884,9 @@ color: var(--color-700);
|
|
|
890
884
|
}
|
|
891
885
|
|
|
892
886
|
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
887
|
+
.p-toast.p-toast-top-right, .p-toast.p-toast-top-left, .p-toast.p-toast-top-center {
|
|
888
|
+
z-index: 1105 !important;
|
|
889
|
+
}
|
|
896
890
|
|
|
897
891
|
|
|
898
892
|
.my-toast.toast-text-small .p-toast-detail {
|
|
@@ -1258,32 +1252,7 @@ min-height: 60px !important;
|
|
|
1258
1252
|
color: #ffffff;
|
|
1259
1253
|
}
|
|
1260
1254
|
|
|
1261
|
-
@media (max-width:1300px){
|
|
1262
|
-
.hojavida {
|
|
1263
|
-
width: 78.5%;
|
|
1264
|
-
}
|
|
1265
1255
|
|
|
1266
|
-
.UploadFoto-btn {
|
|
1267
|
-
width: 20%;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.avatar-container{
|
|
1271
|
-
width: 120px;
|
|
1272
|
-
height: 120px;
|
|
1273
|
-
border: solid 5px var(--color-700);
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.menu-accordeon {
|
|
1277
|
-
max-height: 330px;
|
|
1278
|
-
width: 100%;
|
|
1279
|
-
height: 300px !important;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
.mbottom {
|
|
1283
|
-
margin-top: -30px !important;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
}
|
|
1287
1256
|
|
|
1288
1257
|
/******************************************************************************
|
|
1289
1258
|
* CARD INSTRUCCIONES styles
|
|
@@ -2413,9 +2382,9 @@ li.btn-descarga-masiva a {
|
|
|
2413
2382
|
margin: 0 auto;
|
|
2414
2383
|
width: 100%;
|
|
2415
2384
|
position: -webkit-sticky;
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2385
|
+
position: sticky;
|
|
2386
|
+
top: 60px;
|
|
2387
|
+
z-index: 99;
|
|
2419
2388
|
padding: 0;
|
|
2420
2389
|
}
|
|
2421
2390
|
|
|
@@ -3788,50 +3757,18 @@ td.GrupoColor {
|
|
|
3788
3757
|
}
|
|
3789
3758
|
|
|
3790
3759
|
|
|
3791
|
-
.menu-punto-proceso .p-dialog .p-button.p-button-icon-only.p-button-rounded {
|
|
3792
|
-
border-radius: 50% !important;
|
|
3793
|
-
height: 1.5rem !important;
|
|
3794
|
-
width: 1.5rem !important;
|
|
3795
|
-
padding: 13px !important;
|
|
3796
|
-
margin: 0px 3px !important;
|
|
3797
|
-
color: var(--color-500) !important;
|
|
3798
|
-
border: solid 1px !important;
|
|
3799
|
-
color: #fff;
|
|
3800
|
-
box-shadow: none;
|
|
3801
|
-
}
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
3760
|
.menu-punto-proceso .p-dialog .p-button.p-button-outlined {
|
|
3805
|
-
background:
|
|
3806
|
-
padding:
|
|
3761
|
+
background: transparent !important;
|
|
3762
|
+
padding: 13px !important;
|
|
3807
3763
|
border: solid 1px !important;
|
|
3808
3764
|
color: var(--color-500) !important;
|
|
3809
|
-
|
|
3810
|
-
&:hover{
|
|
3811
|
-
color: var(--color-500) !important;
|
|
3812
|
-
border:solid 1px !important;
|
|
3813
|
-
}
|
|
3814
|
-
|
|
3765
|
+
margin: 0 !important;
|
|
3815
3766
|
}
|
|
3816
3767
|
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
background: var(--color-400) !important;
|
|
3820
|
-
box-shadow: none;
|
|
3821
|
-
color: #fff;
|
|
3822
|
-
padding: 0.45rem 0.55rem !important;
|
|
3823
|
-
margin: 11px !important;
|
|
3824
|
-
|
|
3825
|
-
span{
|
|
3826
|
-
color:#fff !important;
|
|
3827
|
-
}
|
|
3828
|
-
|
|
3829
|
-
&:hover{
|
|
3830
|
-
box-shadow: 2px 2px 15px var(--color-200) !important;
|
|
3831
|
-
}
|
|
3768
|
+
.menu-punto-proceso .p-dialog .justify-content-end .p-button.p-button-outlined{
|
|
3769
|
+
padding: 0.45rem 0.55rem !important
|
|
3832
3770
|
}
|
|
3833
3771
|
|
|
3834
|
-
|
|
3835
3772
|
.menu-punto-proceso .p-dialog .p-dialog-header .p-dialog-header-icon {
|
|
3836
3773
|
height: 2rem !important;
|
|
3837
3774
|
}
|
|
@@ -871,6 +871,10 @@ body {
|
|
|
871
871
|
padding: 5px;
|
|
872
872
|
}
|
|
873
873
|
|
|
874
|
+
.p-toast.p-toast-top-right, .p-toast.p-toast-top-left, .p-toast.p-toast-top-center {
|
|
875
|
+
z-index: 1105 !important;
|
|
876
|
+
}
|
|
877
|
+
|
|
874
878
|
.my-toast.toast-text-small .p-toast-detail {
|
|
875
879
|
font-size: 0.7rem !important;
|
|
876
880
|
line-height: 18px !important;
|
|
@@ -1309,32 +1313,6 @@ body {
|
|
|
1309
1313
|
color: white;
|
|
1310
1314
|
}
|
|
1311
1315
|
|
|
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
1316
|
|
|
1339
1317
|
|
|
1340
1318
|
|
|
@@ -2699,9 +2677,9 @@ li.btn-descarga-masiva a {
|
|
|
2699
2677
|
display: table;
|
|
2700
2678
|
margin: 0 auto;
|
|
2701
2679
|
width: 100%;
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2680
|
+
position: sticky;
|
|
2681
|
+
top: 60px;
|
|
2682
|
+
z-index: 99;
|
|
2705
2683
|
padding: 0;
|
|
2706
2684
|
}
|
|
2707
2685
|
|
|
@@ -4819,34 +4797,12 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
|
|
|
4819
4797
|
padding: 0;
|
|
4820
4798
|
}
|
|
4821
4799
|
|
|
4822
|
-
|
|
4823
|
-
.menu-punto-proceso .p-dialog .p-button.p-button-icon-only.p-button-rounded {
|
|
4824
|
-
border-radius: 50% !important;
|
|
4825
|
-
height: 1.5rem !important;
|
|
4826
|
-
width: 1.5rem !important;
|
|
4827
|
-
padding: 13px !important;
|
|
4828
|
-
margin: 0px 3px !important;
|
|
4829
|
-
color: var(--color-500) !important;
|
|
4830
|
-
border: solid 1px !important;
|
|
4831
|
-
color: #fff;
|
|
4832
|
-
box-shadow: none;
|
|
4833
|
-
}
|
|
4834
|
-
|
|
4835
4800
|
.menu-punto-proceso .p-dialog .p-button.p-button-outlined {
|
|
4836
|
-
background:
|
|
4837
|
-
padding:
|
|
4801
|
+
background: transparent !important;
|
|
4802
|
+
padding: 13px !important;
|
|
4838
4803
|
border: solid 1px !important;
|
|
4839
|
-
color:
|
|
4840
|
-
|
|
4841
|
-
span{
|
|
4842
|
-
color: #fff !important;
|
|
4843
|
-
}
|
|
4844
|
-
|
|
4845
|
-
&:hover{
|
|
4846
|
-
background: #4a4851 !important;
|
|
4847
|
-
color: #fff;
|
|
4848
|
-
}
|
|
4849
|
-
|
|
4804
|
+
color: var(--color-500) !important;
|
|
4805
|
+
margin: 0 !important;
|
|
4850
4806
|
}
|
|
4851
4807
|
|
|
4852
4808
|
.menu-punto-proceso .p-dialog .p-dialog-header .p-dialog-header-icon {
|
|
@@ -4866,24 +4822,6 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
|
|
|
4866
4822
|
background: var(--color-75) !important;
|
|
4867
4823
|
}
|
|
4868
4824
|
|
|
4869
|
-
.menu-punto-proceso .p-dialog .p-button.p-button-raised {
|
|
4870
|
-
background: #121212 !important;
|
|
4871
|
-
padding: 0.45rem 0.55rem !important;
|
|
4872
|
-
margin: 11px !important;
|
|
4873
|
-
border: solid 1px var(--color-400);
|
|
4874
|
-
color: var(--color-400) !important;
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
span{
|
|
4878
|
-
color: var(--color-400) !important;
|
|
4879
|
-
}
|
|
4880
|
-
|
|
4881
|
-
&:hover{
|
|
4882
|
-
background: #39373f !important;
|
|
4883
|
-
border: solid 1px var(--color-400);
|
|
4884
|
-
}
|
|
4885
|
-
}
|
|
4886
|
-
|
|
4887
4825
|
.menu-punto-proceso .p-button.p-button-raised {
|
|
4888
4826
|
box-shadow: none;
|
|
4889
4827
|
background:#39373f !important;
|
|
@@ -4921,7 +4859,6 @@ background: var(--color-75) !important;
|
|
|
4921
4859
|
border: none;
|
|
4922
4860
|
padding: 0.15rem 0.55rem;
|
|
4923
4861
|
border: none;
|
|
4924
|
-
margin: 11px !important;
|
|
4925
4862
|
|
|
4926
4863
|
&:hover{
|
|
4927
4864
|
background: #2b2b33 !important;
|