general-library-union 2.4.61 → 2.4.63
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/webcommon/pages/fuente-reporte/fuente-reporte.component.mjs +3 -3
- package/fesm2022/general-library-union.mjs +2 -2
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -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 +2 -1
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +2 -1
- package/src/styles/primeng/sass/theme/extensions/_steps.scss +4 -15
package/package.json
CHANGED
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;
|
|
@@ -330,6 +330,7 @@ color: var(--color-700);
|
|
|
330
330
|
#timeout {
|
|
331
331
|
width: 100%;
|
|
332
332
|
height: 100%;
|
|
333
|
+
linear-gradient(to bottom, #ffffff, var(--color-100));
|
|
333
334
|
|
|
334
335
|
|
|
335
336
|
.card-container {
|
|
@@ -350,7 +351,7 @@ color: var(--color-700);
|
|
|
350
351
|
font-size: 3.5rem;
|
|
351
352
|
letter-spacing: 16px;
|
|
352
353
|
font-weight: 700;
|
|
353
|
-
text-align:
|
|
354
|
+
text-align: left;
|
|
354
355
|
max-width: 60rem;
|
|
355
356
|
text-align: center;
|
|
356
357
|
margin: 0;
|
|
@@ -329,6 +329,7 @@ body {
|
|
|
329
329
|
#timeout {
|
|
330
330
|
width: 100%;
|
|
331
331
|
height: 100%;
|
|
332
|
+
background: linear-gradient(to bottom, #fffcfc, #8e8e8e);
|
|
332
333
|
|
|
333
334
|
.card-container {
|
|
334
335
|
height: 100vh;
|
|
@@ -348,7 +349,7 @@ body {
|
|
|
348
349
|
font-size: 3.5rem;
|
|
349
350
|
letter-spacing: 16px;
|
|
350
351
|
font-weight: 700;
|
|
351
|
-
text-align:
|
|
352
|
+
text-align: left;
|
|
352
353
|
max-width: 60rem;
|
|
353
354
|
text-align: left;
|
|
354
355
|
margin: 0;
|
|
@@ -22,19 +22,18 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.p-menuitem-link {
|
|
25
|
+
flex-direction: row;
|
|
25
26
|
flex: 1 1 auto;
|
|
26
27
|
overflow: visible;
|
|
27
|
-
padding: 1rem
|
|
28
|
-
text-align: center;
|
|
28
|
+
padding: 1rem $inlineSpacing;
|
|
29
29
|
|
|
30
30
|
.p-steps-number {
|
|
31
|
+
background-color: #9e9d9e;
|
|
32
|
+
color: #ffffff;
|
|
31
33
|
font-size: 0.857rem;
|
|
32
34
|
min-width: 1.714rem;
|
|
33
35
|
height: 1.714rem;
|
|
34
36
|
line-height: 1.714rem;
|
|
35
|
-
border: solid 1px var(--color-400);
|
|
36
|
-
color: var(--color-600);
|
|
37
|
-
font-weight: bold;
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
.p-steps-title {
|
|
@@ -64,13 +63,3 @@
|
|
|
64
63
|
}
|
|
65
64
|
}
|
|
66
65
|
}
|
|
67
|
-
|
|
68
|
-
.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus {
|
|
69
|
-
background: transparent !important;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus .p-steps-number{
|
|
74
|
-
background: var(--color-400) !important;
|
|
75
|
-
font-size: bold;
|
|
76
|
-
}
|