general-library-union 2.9.93 → 2.9.96
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/utils.service.mjs +4 -1
- package/esm2022/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.mjs +19 -11
- package/fesm2022/general-library-union.mjs +19 -10
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/servicios/utils.service.d.ts +1 -0
- package/src/app/layout/app.menuitem.component.d.ts +1 -1
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.d.ts +2 -1
- package/src/styles/primeng/sass/overrides/_theme_styles.scss +5 -0
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +5 -0
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ export declare class UtilsService {
|
|
|
37
37
|
cambiarTema(tema: ('temaClaro' | 'temaOscuro')): void;
|
|
38
38
|
calcularPosicionDialog(): void;
|
|
39
39
|
validarPalabra(texto: string): boolean;
|
|
40
|
+
isNumeric(value: string): boolean;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
41
42
|
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
42
43
|
}
|
|
@@ -30,7 +30,7 @@ export declare class AppMenuitemComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
calculatePosition(overlay: HTMLElement, target: HTMLElement): void;
|
|
31
31
|
itemClick(event: Event): void;
|
|
32
32
|
onMouseEnter(): void;
|
|
33
|
-
get submenuAnimation(): "
|
|
33
|
+
get submenuAnimation(): "visible" | "collapsed" | "expanded" | "hidden";
|
|
34
34
|
get isHorizontal(): boolean;
|
|
35
35
|
get isSlim(): boolean;
|
|
36
36
|
get isSlimPlus(): boolean;
|
|
@@ -43,11 +43,12 @@ export declare class CarguePlantillaGeneralComponent {
|
|
|
43
43
|
rutaPrincipal: string;
|
|
44
44
|
filteredFiles: TreeNode[];
|
|
45
45
|
filterValue: string;
|
|
46
|
-
FORMATS_VALIDOS: Set<string>;
|
|
47
46
|
filtroConvertir: string;
|
|
48
47
|
html: boolean;
|
|
49
48
|
mostrarEditor: boolean;
|
|
50
49
|
modificarHTML: string;
|
|
50
|
+
FORMATS_VALIDOS: Set<string>;
|
|
51
|
+
readonly FORMATOS = "doc;html;jasper;xls;jrxml;odt;xlsm;xlsx;pgp;asc;cer;p12;docx;properties";
|
|
51
52
|
constructor(plantillasService: PlantillasService, authService: AuthService, translateService: TranslateService, controlFuncionService: CargarControlFuncionalidadService, confirmationService: ConfirmationService, toastService: ToastService, cargarArchivoServices: CargarArchivosService, encriptadoBasico: EncriptadoBasicoService, generalPipe: GeneralPipe, utilsService: UtilsService);
|
|
52
53
|
ngOnInit(): Promise<void>;
|
|
53
54
|
openDataTable(): Promise<void>;
|
|
@@ -3019,6 +3019,11 @@ p.chip {
|
|
|
3019
3019
|
opacity: 0.5;
|
|
3020
3020
|
}
|
|
3021
3021
|
|
|
3022
|
+
input::-webkit-search-cancel-button {
|
|
3023
|
+
-webkit-appearance: none;
|
|
3024
|
+
appearance: none;
|
|
3025
|
+
}
|
|
3026
|
+
|
|
3022
3027
|
.disabled-field .p-inputtext:enabled:focus {
|
|
3023
3028
|
box-shadow: none;
|
|
3024
3029
|
opacity: 0.75;
|
|
@@ -3345,6 +3345,11 @@ p.chip {
|
|
|
3345
3345
|
opacity: 0.5;
|
|
3346
3346
|
}
|
|
3347
3347
|
|
|
3348
|
+
input::-webkit-search-cancel-button {
|
|
3349
|
+
-webkit-appearance: none;
|
|
3350
|
+
appearance: none;
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3348
3353
|
.disabled-field .p-inputtext:enabled:focus {
|
|
3349
3354
|
box-shadow: none;
|
|
3350
3355
|
opacity: 0.75;
|