@jvsoft/components 0.0.10 → 0.0.12

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.
Files changed (141) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/build.js +20 -0
  3. package/dialog-flotante/dialog-flotante.component.html +66 -0
  4. package/dialog-flotante/dialog-flotante.component.ts +115 -0
  5. package/dialog-flotante/dialog-flotante.interface.ts +13 -0
  6. package/dialog-flotante/index.ts +1 -0
  7. package/dialog-flotante/ng-package.json +5 -0
  8. package/{index.d.ts → index.ts} +8 -1
  9. package/lista-arbol/lista-arbol.component.html +66 -0
  10. package/lista-arbol/lista-arbol.component.ts +238 -0
  11. package/lista-arbol/lista-arbol.functions.ts +46 -0
  12. package/lista-arbol/ng-package.json +5 -0
  13. package/luces-navidad/christmas-tree.png +0 -0
  14. package/luces-navidad/index.ts +1 -0
  15. package/luces-navidad/luces-navidad.component.html +6 -0
  16. package/luces-navidad/luces-navidad.component.ts +24 -0
  17. package/luces-navidad/ng-package.json +5 -0
  18. package/mat-suffix-search-button/index.ts +1 -0
  19. package/mat-suffix-search-button/mat-suffix-search-button.component.html +5 -0
  20. package/mat-suffix-search-button/mat-suffix-search-button.component.ts +36 -0
  21. package/mat-suffix-search-button/ng-package.json +5 -0
  22. package/menu/index.ts +1 -0
  23. package/menu/menu.component.html +40 -0
  24. package/menu/menu.component.ts +88 -0
  25. package/menu/menu.interface.ts +16 -0
  26. package/menu/ng-package.json +5 -0
  27. package/ng-package.json +17 -0
  28. package/package.json +17 -42
  29. package/progress-spinner.zip +0 -0
  30. package/tabla-mantenimiento/classes/data-model.ts +150 -0
  31. package/tabla-mantenimiento/components/progress-bar/index.ts +1 -0
  32. package/tabla-mantenimiento/components/progress-bar/ng-package.json +5 -0
  33. package/tabla-mantenimiento/components/progress-bar/progress-bar.component.html +10 -0
  34. package/tabla-mantenimiento/components/progress-bar/progress-bar.component.ts +85 -0
  35. package/tabla-mantenimiento/components/progress-bar/public-api.ts +2 -0
  36. package/tabla-mantenimiento/index.ts +1 -0
  37. package/tabla-mantenimiento/interfaces/{archivo.d.ts → archivo.ts} +7 -4
  38. package/tabla-mantenimiento/interfaces/global/{boton-mantenimiento.d.ts → boton-mantenimiento.ts} +9 -3
  39. package/tabla-mantenimiento/interfaces/global/{columnas-tabla.d.ts → columnas-tabla.ts} +90 -13
  40. package/tabla-mantenimiento/interfaces/global/export-excel-servidor.ts +0 -0
  41. package/tabla-mantenimiento/interfaces/global/no-export.ts +11 -0
  42. package/tabla-mantenimiento/interfaces/global/{otros.d.ts → otros.ts} +15 -3
  43. package/tabla-mantenimiento/interfaces/implements/{incluye-tabla-mantenimiento.d.ts → incluye-tabla-mantenimiento.ts} +6 -4
  44. package/tabla-mantenimiento/interfaces/implements/{index.d.ts → index.ts} +1 -0
  45. package/tabla-mantenimiento/mat-row-keyboard-selection.directive.ts +97 -0
  46. package/tabla-mantenimiento/ng-package.json +5 -0
  47. package/tabla-mantenimiento/pipes/no-sanitize.pipe.ts +12 -0
  48. package/tabla-mantenimiento/pipes/zero-fill.pipe.ts +19 -0
  49. package/tabla-mantenimiento/{public-api.d.ts → public-api.ts} +3 -2
  50. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-date/column-type-date.component.html +22 -0
  51. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-date/column-type-date.component.ts +12 -0
  52. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-icons/column-type-icons.component.html +58 -0
  53. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-icons/column-type-icons.component.ts +19 -0
  54. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-money/column-type-money.component.html +40 -0
  55. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-money/column-type-money.component.ts +17 -0
  56. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-number/column-type-number.component.html +25 -0
  57. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-number/column-type-number.component.ts +14 -0
  58. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-progressbar/column-type-progressbar.component.html +28 -0
  59. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-progressbar/column-type-progressbar.component.ts +13 -0
  60. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-sino/column-type-sino.component.html +30 -0
  61. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-sino/column-type-sino.component.ts +38 -0
  62. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-text/column-type-text.component.html +97 -0
  63. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-text/column-type-text.component.ts +43 -0
  64. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type.component.html +26 -0
  65. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type.component.ts +36 -0
  66. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type.module.ts +54 -0
  67. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/tabla-mantenimiento-column-defs.component.html +76 -0
  68. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/tabla-mantenimiento-column-defs.component.ts +67 -0
  69. package/tabla-mantenimiento/tabla-mantenimiento-menu/tabla-mantenimiento-menu.component.html +7 -0
  70. package/tabla-mantenimiento/tabla-mantenimiento-menu/tabla-mantenimiento-menu.component.ts +39 -0
  71. package/tabla-mantenimiento/tabla-mantenimiento.component.html +385 -0
  72. package/tabla-mantenimiento/tabla-mantenimiento.component.ts +951 -0
  73. package/tabla-mantenimiento/tabla-mantenimiento.functions.ts +57 -0
  74. package/tabla-mantenimiento/tabla-mantenimiento.service.ts +44 -0
  75. package/tabla-mantenimiento/table-util.ts +49 -0
  76. package/tabla-mantenimiento.zip +0 -0
  77. package/tsconfig.lib.json +16 -0
  78. package/tsconfig.lib.prod.json +11 -0
  79. package/tsconfig.spec.json +15 -0
  80. package/yarn-error.log +68 -0
  81. package/dialog-flotante/dialog-flotante.component.d.ts +0 -32
  82. package/dialog-flotante/dialog-flotante.interface.d.ts +0 -11
  83. package/dialog-flotante/index.d.ts +0 -5
  84. package/fesm2022/jvsoft-components-dialog-flotante.mjs +0 -130
  85. package/fesm2022/jvsoft-components-dialog-flotante.mjs.map +0 -1
  86. package/fesm2022/jvsoft-components-lista-arbol.mjs +0 -266
  87. package/fesm2022/jvsoft-components-lista-arbol.mjs.map +0 -1
  88. package/fesm2022/jvsoft-components-luces-navidad.mjs +0 -33
  89. package/fesm2022/jvsoft-components-luces-navidad.mjs.map +0 -1
  90. package/fesm2022/jvsoft-components-mat-suffix-search-button.mjs +0 -47
  91. package/fesm2022/jvsoft-components-mat-suffix-search-button.mjs.map +0 -1
  92. package/fesm2022/jvsoft-components-menu.mjs +0 -102
  93. package/fesm2022/jvsoft-components-menu.mjs.map +0 -1
  94. package/fesm2022/jvsoft-components-tabla-mantenimiento-components-progress-bar.mjs +0 -91
  95. package/fesm2022/jvsoft-components-tabla-mantenimiento-components-progress-bar.mjs.map +0 -1
  96. package/fesm2022/jvsoft-components-tabla-mantenimiento.mjs +0 -1801
  97. package/fesm2022/jvsoft-components-tabla-mantenimiento.mjs.map +0 -1
  98. package/fesm2022/jvsoft-components.mjs +0 -2309
  99. package/fesm2022/jvsoft-components.mjs.map +0 -1
  100. package/lista-arbol/index.d.ts +0 -5
  101. package/lista-arbol/lista-arbol.component.d.ts +0 -58
  102. package/lista-arbol/lista-arbol.functions.d.ts +0 -1
  103. package/luces-navidad/index.d.ts +0 -5
  104. package/luces-navidad/luces-navidad.component.d.ts +0 -11
  105. package/mat-suffix-search-button/index.d.ts +0 -5
  106. package/mat-suffix-search-button/mat-suffix-search-button.component.d.ts +0 -12
  107. package/menu/index.d.ts +0 -5
  108. package/menu/menu.component.d.ts +0 -25
  109. package/menu/menu.interface.d.ts +0 -16
  110. package/src/styles/base-jvsoft-components.css +0 -9
  111. package/tabla-mantenimiento/classes/data-model.d.ts +0 -25
  112. package/tabla-mantenimiento/components/progress-bar/index.d.ts +0 -5
  113. package/tabla-mantenimiento/components/progress-bar/progress-bar.component.d.ts +0 -30
  114. package/tabla-mantenimiento/components/progress-bar/public-api.d.ts +0 -1
  115. package/tabla-mantenimiento/index.d.ts +0 -5
  116. package/tabla-mantenimiento/interfaces/global/no-export.d.ts +0 -2
  117. package/tabla-mantenimiento/mat-row-keyboard-selection.directive.d.ts +0 -19
  118. package/tabla-mantenimiento/pipes/no-sanitize.pipe.d.ts +0 -10
  119. package/tabla-mantenimiento/pipes/zero-fill.pipe.d.ts +0 -8
  120. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-date/column-type-date.component.d.ts +0 -8
  121. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-icons/column-type-icons.component.d.ts +0 -9
  122. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-money/column-type-money.component.d.ts +0 -9
  123. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-number/column-type-number.component.d.ts +0 -8
  124. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-progressbar/column-type-progressbar.component.d.ts +0 -8
  125. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-sino/column-type-sino.component.d.ts +0 -9
  126. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type-text/column-type-text.component.d.ts +0 -8
  127. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type.component.d.ts +0 -18
  128. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/column-type/column-type.module.d.ts +0 -23
  129. package/tabla-mantenimiento/tabla-mantenimiento-column-defs/tabla-mantenimiento-column-defs.component.d.ts +0 -21
  130. package/tabla-mantenimiento/tabla-mantenimiento-menu/tabla-mantenimiento-menu.component.d.ts +0 -18
  131. package/tabla-mantenimiento/tabla-mantenimiento.component.d.ts +0 -147
  132. package/tabla-mantenimiento/tabla-mantenimiento.functions.d.ts +0 -5
  133. package/tabla-mantenimiento/tabla-mantenimiento.service.d.ts +0 -8
  134. package/tabla-mantenimiento/table-util.d.ts +0 -11
  135. /package/dialog-flotante/{public-api.d.ts → public-api.ts} +0 -0
  136. /package/lista-arbol/{public-api.d.ts → public-api.ts} +0 -0
  137. /package/luces-navidad/{public-api.d.ts → public-api.ts} +0 -0
  138. /package/mat-suffix-search-button/{public-api.d.ts → public-api.ts} +0 -0
  139. /package/menu/{public-api.d.ts → public-api.ts} +0 -0
  140. /package/tabla-mantenimiento/interfaces/global/{index.d.ts → index.ts} +0 -0
  141. /package/tabla-mantenimiento/interfaces/{index.d.ts → index.ts} +0 -0
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/lista-arbol" />
5
- export * from './public-api';
@@ -1,58 +0,0 @@
1
- import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import { NestedTreeControl } from '@angular/cdk/tree';
4
- import { DataModel } from '@jvsoft/utils';
5
- import { SelectionModel } from '@angular/cdk/collections';
6
- import * as i0 from "@angular/core";
7
- export declare class ListaArbolComponent<T = any> implements OnInit {
8
- listaSuscription: Observable<T[]>;
9
- nombreColeccion: string;
10
- checkbox: boolean;
11
- expandirRecursivo: boolean;
12
- checkboxSeleccionados: T[];
13
- campoId: string;
14
- campoIdPadre: string;
15
- campoStr: string;
16
- strHijoContainer: string;
17
- menuContextual?: {
18
- abrirMenuContextual: Function;
19
- cerrarMenuContextual: Function;
20
- };
21
- classSeleccionado: string[];
22
- classAnulado: string[];
23
- campoAnulado?: string | null;
24
- templateTxtData?: TemplateRef<any>;
25
- condicionMostrar?: (item: T) => boolean;
26
- condicionesClaseFila: (item: T) => string[];
27
- set selectionModel(val: SelectionModel<any>);
28
- selectionModelChange: EventEmitter<SelectionModel<any>>;
29
- seleccionado: EventEmitter<any>;
30
- listaCheck: EventEmitter<T[]>;
31
- listaCheckObj: EventEmitter<Record<string, any>>;
32
- private _idTabla;
33
- get idTabla(): string[];
34
- set idTabla(val: string[] | string);
35
- get buscarItemSeleccionado(): any;
36
- get objSeleccionado(): any;
37
- set objSeleccionado(val: any);
38
- chkLista: DataModel;
39
- listaMuestraArbol: T[];
40
- listaOriginal: T[];
41
- treeControl: NestedTreeControl<any, any>;
42
- _seleccionado: any;
43
- ngOnInit(): void;
44
- idTablaValor(data: any): string;
45
- propiedadSeleccion(item: any): string;
46
- esSeleccionActual(item: any): boolean;
47
- seleccionarItem(item?: any, forzado?: boolean): void;
48
- hasChild: (_: number, node: any) => boolean;
49
- opcMenu(v: any): void;
50
- emitirModeloCheck(): void;
51
- cambiarPadre(checkActual: T, estado: boolean): void;
52
- cambiarCheck(checkActual: T, estado: boolean): void;
53
- hijosActivos(tipo: 'checked' | 'indeterminate', checkActual: T): boolean;
54
- classFila2(item: T): string[];
55
- classFila(item: any): any[];
56
- static ɵfac: i0.ɵɵFactoryDeclaration<ListaArbolComponent<any>, never>;
57
- static ɵcmp: i0.ɵɵComponentDeclaration<ListaArbolComponent<any>, "jvs-lista-arbol", never, { "listaSuscription": { "alias": "listaSuscription"; "required": false; }; "nombreColeccion": { "alias": "nombreColeccion"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "expandirRecursivo": { "alias": "expandirRecursivo"; "required": false; }; "checkboxSeleccionados": { "alias": "checkboxSeleccionados"; "required": false; }; "campoId": { "alias": "campoId"; "required": false; }; "campoIdPadre": { "alias": "campoIdPadre"; "required": false; }; "campoStr": { "alias": "campoStr"; "required": false; }; "strHijoContainer": { "alias": "strHijoContainer"; "required": false; }; "menuContextual": { "alias": "menuContextual"; "required": false; }; "classSeleccionado": { "alias": "classSeleccionado"; "required": false; }; "classAnulado": { "alias": "classAnulado"; "required": false; }; "campoAnulado": { "alias": "campoAnulado"; "required": false; }; "templateTxtData": { "alias": "templateTxtData"; "required": false; }; "condicionMostrar": { "alias": "condicionMostrar"; "required": false; }; "condicionesClaseFila": { "alias": "condicionesClaseFila"; "required": false; }; "selectionModel": { "alias": "selectionModel"; "required": false; }; "idTabla": { "alias": "idTabla"; "required": true; }; }, { "selectionModelChange": "selectionModelChange"; "seleccionado": "seleccionado"; "listaCheck": "listaCheck"; "listaCheckObj": "listaCheckObj"; }, never, never, true, never>;
58
- }
@@ -1 +0,0 @@
1
- export declare function generarArbol(lista: any[], campoId: string, campoIdPadre: string, idPadre?: null, strChildren?: string): any[];
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/luces-navidad" />
5
- export * from './public-api';
@@ -1,11 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class LucesNavidadComponent implements OnInit {
4
- enProduccion: boolean;
5
- forzarMuestra: boolean;
6
- mesActual: number;
7
- constructor();
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<LucesNavidadComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<LucesNavidadComponent, "jvs-luces-navidad, [jvsLucesNavidad]", never, { "enProduccion": { "alias": "enProduccion"; "required": false; }; "forzarMuestra": { "alias": "forzarMuestra"; "required": false; }; }, {}, never, never, true, never>;
11
- }
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/mat-suffix-search-button" />
5
- export * from './public-api';
@@ -1,12 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class MatSuffixSearchButtonComponent {
5
- fControl: any;
6
- eventLimpiar: EventEmitter<any>;
7
- eventBuscar: EventEmitter<any>;
8
- get control(): FormControl;
9
- emitirClick(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MatSuffixSearchButtonComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<MatSuffixSearchButtonComponent, "div[matSuffix][matSuffixSearchButton]", never, { "fControl": { "alias": "fControl"; "required": true; }; }, { "eventLimpiar": "eventLimpiar"; "eventBuscar": "eventBuscar"; }, never, never, true, never>;
12
- }
package/menu/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/menu" />
5
- export * from './public-api';
@@ -1,25 +0,0 @@
1
- import { AfterViewInit, EventEmitter, OnInit, QueryList } from '@angular/core';
2
- import { MatMenu } from '@angular/material/menu';
3
- import { BotonMenu } from './menu.interface';
4
- import * as i0 from "@angular/core";
5
- export declare class MenuComponent implements OnInit, AfterViewInit {
6
- cssBoton?: string;
7
- title?: string;
8
- disabled: boolean;
9
- itemSeleccion?: string;
10
- menu: BotonMenu[];
11
- action: EventEmitter<string>;
12
- matmenus: QueryList<MatMenu>;
13
- menuItems: string[];
14
- yet: boolean;
15
- _submenus: BotonMenu[][];
16
- get submenus(): BotonMenu[][];
17
- ngOnInit(): void;
18
- ngAfterViewInit(): void;
19
- onClick(value: string): void;
20
- getMenu(index: number): MatMenu | null;
21
- reindex(): void;
22
- createSubmenus(menu: BotonMenu[], prefix: string, count: number): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "jvs-menu", never, { "cssBoton": { "alias": "cssBoton"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemSeleccion": { "alias": "itemSeleccion"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; }, { "action": "action"; }, never, ["*"], true, never>;
25
- }
@@ -1,16 +0,0 @@
1
- export interface BotonMenu {
2
- idUnico?: string;
3
- class?: string;
4
- icono?: string;
5
- label?: string;
6
- soloIcono?: boolean;
7
- sinCondicion?: boolean;
8
- badge?: string;
9
- tooltip?: string;
10
- idxOpcionCalc?: any;
11
- subItems?: BotonMenu[];
12
- datosExtra?: any;
13
- valorSeleccion?: any;
14
- esVisible?(dataValid?: any): boolean;
15
- estaDeshabilitado?(item?: any): boolean;
16
- }
@@ -1,9 +0,0 @@
1
- @use "tailwind.scss";
2
-
3
- @use "components/index.scss";
4
-
5
- /*
6
-
7
- @import "../../components/tabla-mantenimiento/tabla-mantenimiento.component.scss";
8
- */
9
-
@@ -1,25 +0,0 @@
1
- import { FormGroup } from '@angular/forms';
2
- export declare class DataModel {
3
- modelosChk: {
4
- [key: string]: boolean | any;
5
- };
6
- checkbox: ForCheckboxModel;
7
- constructor();
8
- generarId(row: any, campoValor: string[] | string, separador?: string): string;
9
- agregarControles(lista: any[], idLista: string, limpiar?: boolean, campoValor?: string[] | string | null, campoValorSeparador?: string): void;
10
- setState(idx: string, state: boolean): void;
11
- getState(idx: string): boolean | any;
12
- getDataMultiple(idx: string): any;
13
- generarLista(tipoRetorno?: 'array' | 'object' | null, esCampoNumerico?: boolean): string | object | any[];
14
- generarFormGroupFromModelosChk(tipo?: string): FormGroup;
15
- }
16
- declare class ForCheckboxModel {
17
- private modeloCheck;
18
- constructor(modeloCheck: DataModel);
19
- get cantidadActivos(): number;
20
- get existenActivados(): boolean;
21
- get todosActivos(): boolean;
22
- get algunosActivos(): boolean;
23
- establecerTodos(activo: boolean): void;
24
- }
25
- export {};
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/tabla-mantenimiento/components/progress-bar" />
5
- export * from './public-api';
@@ -1,30 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export interface EstilosBarra {
4
- valorMaximo: number;
5
- class?: string;
6
- style?: string;
7
- }
8
- export declare class ProgressBarComponent implements OnInit {
9
- objThis: any;
10
- porcentaje: number;
11
- textoCentrado: boolean;
12
- private _textoMostrar;
13
- get textoMostrar(): string;
14
- set textoMostrar(val: string);
15
- private _formatoNumero;
16
- get formatoNumero(): string;
17
- set formatoNumero(val: string | undefined);
18
- private _coloresValor;
19
- get coloresValor(): EstilosBarra[];
20
- set coloresValor(val: EstilosBarra[] | undefined);
21
- constructor();
22
- ngOnInit(): void;
23
- colorEstilo(): {
24
- style: string;
25
- class: string;
26
- };
27
- ordenarPorPropiedad(objData: any[], propiedad: string, numeros?: boolean): any[];
28
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "jvs-progress-bar", never, { "objThis": { "alias": "objThis"; "required": false; }; "porcentaje": { "alias": "porcentaje"; "required": false; }; "textoCentrado": { "alias": "textoCentrado"; "required": false; }; "textoMostrar": { "alias": "textoMostrar"; "required": false; }; "formatoNumero": { "alias": "formatoNumero"; "required": false; }; "coloresValor": { "alias": "coloresValor"; "required": false; }; }, {}, never, never, true, never>;
30
- }
@@ -1 +0,0 @@
1
- export * from './progress-bar.component';
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/tabla-mantenimiento" />
5
- export * from './public-api';
@@ -1,2 +0,0 @@
1
- export type TipoValorFuncion<T> = T | ((...param: any) => T);
2
- export declare function tipoValorFuncion<T>(datoParam: TipoValorFuncion<T>, defaultValue?: T, ...param: any[]): T | undefined;
@@ -1,19 +0,0 @@
1
- import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
- import { MatTable } from '@angular/material/table';
3
- import * as i0 from "@angular/core";
4
- export declare class MatRowKeyboardSelectionDirective implements OnInit, OnDestroy {
5
- private el;
6
- private rows;
7
- private renderedData;
8
- tabla: MatTable<any>;
9
- rowModel: any;
10
- seleccionarSiguiente: EventEmitter<any>;
11
- private unsubscriber$;
12
- constructor(el: ElementRef);
13
- ngOnInit(): void;
14
- ngOnDestroy(): void;
15
- onKeydown(event: KeyboardEvent): void;
16
- private getTableRows;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<MatRowKeyboardSelectionDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatRowKeyboardSelectionDirective, "[matRowKeyboardSelection]", never, { "tabla": { "alias": "matRowKeyboardSelection"; "required": false; }; "rowModel": { "alias": "rowModel"; "required": false; }; }, { "seleccionarSiguiente": "seleccionarSiguiente"; }, never, never, true, never>;
19
- }
@@ -1,10 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
4
- export declare class NoSanitizePipe implements PipeTransform {
5
- private domSanitizer;
6
- constructor(domSanitizer: DomSanitizer);
7
- transform(html: string): SafeHtml;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<NoSanitizePipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<NoSanitizePipe, "noSanitize", true>;
10
- }
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ZeroFillPipe implements PipeTransform {
4
- transform(value: unknown, digitos: number, ...args: unknown[]): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ZeroFillPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<ZeroFillPipe, "zeroFill", true>;
7
- }
8
- export declare function zeroFill(value: unknown, digitos: number, ...args: unknown[]): string;
@@ -1,8 +0,0 @@
1
- import { ColumnaDate } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeDateComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaDate<T>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeDateComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeDateComponent<any>, "jvs-column-type-date", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
8
- }
@@ -1,9 +0,0 @@
1
- import { ColumnaIcons, IconsIcon } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeIconsComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaIcons<T>;
6
- obtenerItems(columna: any, row: any): IconsIcon[];
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeIconsComponent<any>, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeIconsComponent<any>, "jvs-column-type-icons", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
9
- }
@@ -1,9 +0,0 @@
1
- import { ColumnaMoney } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeMoneyComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaMoney<T>;
6
- value(row: any): number;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeMoneyComponent<any>, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeMoneyComponent<any>, "jvs-column-type-money", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
9
- }
@@ -1,8 +0,0 @@
1
- import { ColumnaNumber } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeNumberComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaNumber<T>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeNumberComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeNumberComponent<any>, "jvs-column-type-number", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
8
- }
@@ -1,8 +0,0 @@
1
- import { ColumnaProgress } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeProgressbarComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaProgress<T>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeProgressbarComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeProgressbarComponent<any>, "jvs-column-type-progressbar", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
8
- }
@@ -1,9 +0,0 @@
1
- import { ColumnaYesNo } from '../../../interfaces';
2
- import { ColumnTypeComponent } from '../column-type.component';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeSinoComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaYesNo<T>;
6
- constructor();
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeSinoComponent<any>, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeSinoComponent<any>, "jvs-column-type-sino", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
9
- }
@@ -1,8 +0,0 @@
1
- import { ColumnTypeComponent } from '../column-type.component';
2
- import { ColumnaTexto } from '../../../interfaces';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnTypeTextComponent<T> extends ColumnTypeComponent<T> {
5
- column: ColumnaTexto<T>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeTextComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeTextComponent<any>, "jvs-column-type-text", never, { "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
8
- }
@@ -1,18 +0,0 @@
1
- import { AfterViewInit, OnInit, TemplateRef } from '@angular/core';
2
- import { MatColumnDef, MatTable } from '@angular/material/table';
3
- import { ColumnaTabla } from '../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class ColumnTypeComponent<T> implements OnInit, AfterViewInit {
6
- private table;
7
- column: ColumnaTabla<T>;
8
- columnDef: MatColumnDef;
9
- columnTitleTemplate?: TemplateRef<any>;
10
- columnFooterTemplate?: TemplateRef<any>;
11
- cellTemplate: TemplateRef<any>;
12
- constructor(table: MatTable<T>);
13
- ngOnInit(): void;
14
- ngAfterViewInit(): void;
15
- accionClick(item: T, event: Event): boolean;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeComponent<any>, [{ optional: true; }]>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnTypeComponent<any>, "jvs-column-type", never, { "column": { "alias": "column"; "required": true; }; "columnTitleTemplate": { "alias": "columnTitleTemplate"; "required": false; }; "columnFooterTemplate": { "alias": "columnFooterTemplate"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; }, {}, never, never, false, never>;
18
- }
@@ -1,23 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./column-type.component";
3
- import * as i2 from "./column-type-text/column-type-text.component";
4
- import * as i3 from "./column-type-money/column-type-money.component";
5
- import * as i4 from "./column-type-number/column-type-number.component";
6
- import * as i5 from "./column-type-date/column-type-date.component";
7
- import * as i6 from "./column-type-icons/column-type-icons.component";
8
- import * as i7 from "./column-type-sino/column-type-sino.component";
9
- import * as i8 from "./column-type-progressbar/column-type-progressbar.component";
10
- import * as i9 from "@angular/common";
11
- import * as i10 from "@angular/material/table";
12
- import * as i11 from "@angular/material/sort";
13
- import * as i12 from "@angular/material/tooltip";
14
- import * as i13 from "../../pipes/no-sanitize.pipe";
15
- import * as i14 from "../../pipes/zero-fill.pipe";
16
- import * as i15 from "@angular/material/core";
17
- import * as i16 from "@angular/material/icon";
18
- import * as i17 from "../../components/progress-bar/progress-bar.component";
19
- export declare class ColumnTypeModule {
20
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTypeModule, never>;
21
- static ɵmod: i0.ɵɵNgModuleDeclaration<ColumnTypeModule, [typeof i1.ColumnTypeComponent, typeof i2.ColumnTypeTextComponent, typeof i3.ColumnTypeMoneyComponent, typeof i4.ColumnTypeNumberComponent, typeof i5.ColumnTypeDateComponent, typeof i6.ColumnTypeIconsComponent, typeof i7.ColumnTypeSinoComponent, typeof i8.ColumnTypeProgressbarComponent], [typeof i9.CommonModule, typeof i10.MatTableModule, typeof i11.MatSortModule, typeof i12.MatTooltipModule, typeof i13.NoSanitizePipe, typeof i14.ZeroFillPipe, typeof i15.MatRipple, typeof i16.MatIcon, typeof i17.ProgressBarComponent], [typeof i2.ColumnTypeTextComponent, typeof i3.ColumnTypeMoneyComponent, typeof i4.ColumnTypeNumberComponent, typeof i5.ColumnTypeDateComponent, typeof i6.ColumnTypeIconsComponent, typeof i7.ColumnTypeSinoComponent, typeof i8.ColumnTypeProgressbarComponent]>;
22
- static ɵinj: i0.ɵɵInjectorDeclaration<ColumnTypeModule>;
23
- }
@@ -1,21 +0,0 @@
1
- import { AfterContentInit, ChangeDetectorRef, EventEmitter, QueryList } from '@angular/core';
2
- import { MatColumnDef, MatTable } from '@angular/material/table';
3
- import { ColumnaTabla } from '../interfaces/global';
4
- import { DataModel } from '../classes/data-model';
5
- import * as i0 from "@angular/core";
6
- export declare class TablaMantenimientoColumnDefsComponent implements AfterContentInit {
7
- table: MatTable<any>;
8
- private cdRef;
9
- objThis: any;
10
- nombreColeccion: any;
11
- colDetalle: ColumnaTabla<any>[];
12
- chkLista: DataModel;
13
- chkListaChange: EventEmitter<DataModel>;
14
- columnDefLocales: QueryList<MatColumnDef>;
15
- columnDefEnSubComponentes: QueryList<MatColumnDef>;
16
- constructor(table: MatTable<any>, cdRef: ChangeDetectorRef);
17
- ngAfterContentInit(): void;
18
- trackByProperty<T>(index: number, column: ColumnaTabla<T>): string | Extract<keyof T, string>;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<TablaMantenimientoColumnDefsComponent, [{ optional: true; }, null]>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<TablaMantenimientoColumnDefsComponent, "jvs-tabla-mantenimiento-column-defs", never, { "objThis": { "alias": "objThis"; "required": false; }; "nombreColeccion": { "alias": "nombreColeccion"; "required": false; }; "colDetalle": { "alias": "colDetalle"; "required": false; }; "chkLista": { "alias": "chkLista"; "required": false; }; }, { "chkListaChange": "chkListaChange"; }, ["columnDefEnSubComponentes"], ["*"], true, never>;
21
- }
@@ -1,18 +0,0 @@
1
- import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
- import { MatMenu } from '@angular/material/menu';
3
- import { BotonMantenimiento } from '../interfaces/global';
4
- import * as i0 from "@angular/core";
5
- export declare class TablaMantenimientoMenuComponent implements OnInit {
6
- objThis: any;
7
- nombreColeccion: string;
8
- item: any;
9
- derechosActuales: any;
10
- opcionSelecionada: EventEmitter<any>;
11
- menu: MatMenu;
12
- subItems: BotonMantenimiento[];
13
- botonTemplate: TemplateRef<any>;
14
- constructor();
15
- ngOnInit(): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<TablaMantenimientoMenuComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<TablaMantenimientoMenuComponent, "jvs-tabla-mantenimiento-menu", never, { "objThis": { "alias": "objThis"; "required": false; }; "nombreColeccion": { "alias": "nombreColeccion"; "required": false; }; "item": { "alias": "item"; "required": false; }; "derechosActuales": { "alias": "derechosActuales"; "required": false; }; "subItems": { "alias": "subItems"; "required": true; }; "botonTemplate": { "alias": "botonTemplate"; "required": true; }; }, { "opcionSelecionada": "opcionSelecionada"; }, never, never, true, never>;
18
- }
@@ -1,147 +0,0 @@
1
- import { Overlay, OverlayRef } from '@angular/cdk/overlay';
2
- import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
3
- import { FormBuilder, FormControl } from '@angular/forms';
4
- import { MatPaginator } from '@angular/material/paginator';
5
- import { MatSort } from '@angular/material/sort';
6
- import { MatColumnDef, MatTable, MatTableDataSource } from '@angular/material/table';
7
- import { Observable, Subscription } from 'rxjs';
8
- import { DataModel } from './classes/data-model';
9
- import { BotonMantenimiento, ColumnaTabla, OpcionSeleccionada, SeccionesBotonesMantenimiento } from './interfaces';
10
- import { tipoValorFuncion, TipoValorFuncion } from './interfaces/global/no-export';
11
- import { capitalizarTexto } from './tabla-mantenimiento.functions';
12
- import { TablaMantenimientoService } from './tabla-mantenimiento.service';
13
- import { SelectionModel } from '@angular/cdk/collections';
14
- import * as i0 from "@angular/core";
15
- export interface MantenimientoFilaExtraData {
16
- template?: TemplateRef<any>;
17
- esVisible?(item?: any): boolean;
18
- }
19
- type TiposControlBusqueda = 'query' | 'simple' | '';
20
- export declare class TablaMantenimientoComponent<T> implements OnInit, AfterContentInit, OnChanges {
21
- private fb;
22
- overlay: Overlay;
23
- viewContainerRef: ViewContainerRef;
24
- protected tablaMantenimientoService: TablaMantenimientoService;
25
- private cdRef;
26
- static nextId: number;
27
- readonly id: string;
28
- get templateBotonesComunes(): BotonMantenimiento[];
29
- get templateColumnasTabla(): ColumnaTabla<any>[];
30
- dataSuscription: Observable<any> | undefined;
31
- objThis: any;
32
- nombreColeccion: any;
33
- ctrlBusquedaValue: string;
34
- ctrlBusquedaPlaceholder: string;
35
- filtroCampos: boolean;
36
- paginador: boolean;
37
- esTabla: boolean;
38
- readOnly: boolean | 'permitirSeleccion';
39
- filaExtraHeader: MantenimientoFilaExtraData | any;
40
- filaFooter: boolean;
41
- botonesCRUD: string;
42
- dblclickItem: EventEmitter<any>;
43
- objBotonesCRUD: BotonMantenimiento[];
44
- classSeleccionado: string[];
45
- classAnulado: string[];
46
- campoAnulado: any;
47
- campoAnuladoMensaje: any;
48
- opcionSelecionada: EventEmitter<any>;
49
- opcBusqueda: EventEmitter<any>;
50
- accionRecargar: EventEmitter<any>;
51
- set selectionModel(val: SelectionModel<any>);
52
- selectionModelChange: EventEmitter<SelectionModel<any>>;
53
- isRecargarUsed: boolean;
54
- filaExtraTemplate: TemplateRef<any> | undefined;
55
- paginator: MatPaginator;
56
- sort: MatSort;
57
- exportarExcel: boolean;
58
- pageSize: number;
59
- pageSizeOptions: number[];
60
- dataSourceChange: EventEmitter<any>;
61
- resultados: EventEmitter<any>;
62
- dataSource: MatTableDataSource<unknown, MatPaginator>;
63
- table: MatTable<T>;
64
- columnDefs: QueryList<MatColumnDef>;
65
- componenteCargadoTotalmente: boolean;
66
- paginacion: {
67
- pageSize: number;
68
- pageSizeOptions: number[];
69
- pageCurrent: any;
70
- pageIndex: number;
71
- pageLength: null;
72
- };
73
- ignorarDerechos: boolean;
74
- derechosActuales: any;
75
- rows: QueryList<ElementRef<HTMLTableRowElement>>;
76
- rowFooter: ElementRef<HTMLTableRowElement>;
77
- mouseEvent$: Subscription | undefined;
78
- overlayRef: OverlayRef | undefined;
79
- userMenu: TemplateRef<any>;
80
- opcFiltroActual: {};
81
- protected readonly capitalizarTexto: typeof capitalizarTexto;
82
- _seleccionado: any;
83
- cCampoBusqueda: FormControl<string | null>;
84
- chkLista: DataModel;
85
- constructor(fb: FormBuilder, overlay: Overlay, viewContainerRef: ViewContainerRef, tablaMantenimientoService: TablaMantenimientoService, cdRef: ChangeDetectorRef);
86
- _ctrlBusqueda: TiposControlBusqueda;
87
- get ctrlBusqueda(): TiposControlBusqueda;
88
- set ctrlBusqueda(val: TiposControlBusqueda);
89
- private _leyenda;
90
- get leyenda(): {
91
- text: string;
92
- class?: string;
93
- } | undefined;
94
- set leyenda(val: {
95
- text: string;
96
- class?: string;
97
- } | string);
98
- private _idTabla;
99
- get idTabla(): string[];
100
- set idTabla(val: string[] | string);
101
- private _columnasTabla;
102
- get columnasTabla(): ColumnaTabla<any>[];
103
- set columnasTabla(val: ColumnaTabla<any>[]);
104
- private _botonesMenu;
105
- get botonesMenu(): SeccionesBotonesMantenimiento;
106
- get botonesMenuFinal(): SeccionesBotonesMantenimiento;
107
- set botonesMenu(val: SeccionesBotonesMantenimiento);
108
- get listaMenuCompleto(): BotonMantenimiento[];
109
- get objVisibleColumns(): ColumnaTabla<any>[];
110
- get visibleColumns(): string[];
111
- get tieneCheckbox(): false | import("@jvsoft/components/tabla-mantenimiento").ColumnaCheckbox<any>;
112
- get buscarItemSeleccionado(): any;
113
- get objSeleccionado(): any;
114
- set objSeleccionado(val: any);
115
- get idsSeleccionado(): string;
116
- idTablaValor(data: any): string;
117
- condicionesClaseFila: (item: any) => any[];
118
- rowTooltip: (item: any) => string;
119
- soloIconos?: TipoValorFuncion<boolean>;
120
- ngOnInit(): void;
121
- ngAfterContentInit(): void;
122
- ngOnChanges(changes: SimpleChanges): void;
123
- trackByFn: (index: number, item: any) => string;
124
- agregarBotonesExportacion(): void;
125
- actualizarCrud(): void;
126
- classFila(item: any): any[];
127
- procesarRowTooltip(item: any): string;
128
- subItemsActivos(btn: any, item: any): boolean;
129
- get noData(): any;
130
- onFilterChange(value: string): void;
131
- toggleColumnVisibility(column: any, event: any): void;
132
- cargarData(retorno?: boolean): any;
133
- setData(data: any): void;
134
- botonDisabled(btn: BotonMantenimiento, item: any): boolean | undefined;
135
- propiedadSeleccion(item: any): string;
136
- esSeleccionActual(item: any): boolean;
137
- seleccionarItem(item?: any, forzado?: boolean): void;
138
- opcMenu(item: any, objMenu: OpcionSeleccionada, modal?: null, retorno?: boolean): 1 | OpcionSeleccionada;
139
- emitirResultados(evento?: {}): void;
140
- abrirMenuContextual({ x, y }: MouseEvent, user: any): void;
141
- cerrarMenuContextual(): void;
142
- emitirAccionRecargar(): void;
143
- protected readonly tipoValorFuncion: typeof tipoValorFuncion;
144
- static ɵfac: i0.ɵɵFactoryDeclaration<TablaMantenimientoComponent<any>, never>;
145
- static ɵcmp: i0.ɵɵComponentDeclaration<TablaMantenimientoComponent<any>, "jvs-tabla-mantenimiento", never, { "dataSuscription": { "alias": "dataSuscription"; "required": false; }; "objThis": { "alias": "objThis"; "required": true; }; "nombreColeccion": { "alias": "nombreColeccion"; "required": true; }; "ctrlBusquedaValue": { "alias": "ctrlBusquedaValue"; "required": false; }; "ctrlBusquedaPlaceholder": { "alias": "ctrlBusquedaPlaceholder"; "required": false; }; "filtroCampos": { "alias": "filtroCampos"; "required": false; }; "paginador": { "alias": "paginador"; "required": false; }; "esTabla": { "alias": "esTabla"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "filaExtraHeader": { "alias": "filaExtraHeader"; "required": false; }; "filaFooter": { "alias": "filaFooter"; "required": false; }; "botonesCRUD": { "alias": "botonesCRUD"; "required": false; }; "objBotonesCRUD": { "alias": "objBotonesCRUD"; "required": false; }; "classSeleccionado": { "alias": "classSeleccionado"; "required": false; }; "classAnulado": { "alias": "classAnulado"; "required": false; }; "campoAnulado": { "alias": "campoAnulado"; "required": false; }; "campoAnuladoMensaje": { "alias": "campoAnuladoMensaje"; "required": false; }; "selectionModel": { "alias": "selectionModel"; "required": false; }; "filaExtraTemplate": { "alias": "filaExtraTemplate"; "required": false; }; "exportarExcel": { "alias": "exportarExcel"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "derechosActuales": { "alias": "derechosActuales"; "required": false; }; "ctrlBusqueda": { "alias": "ctrlBusqueda"; "required": false; }; "leyenda": { "alias": "leyenda"; "required": false; }; "idTabla": { "alias": "idTabla"; "required": true; }; "columnasTabla": { "alias": "columnasTabla"; "required": false; }; "botonesMenu": { "alias": "botonesMenu"; "required": false; }; "condicionesClaseFila": { "alias": "condicionesClaseFila"; "required": false; }; "rowTooltip": { "alias": "rowTooltip"; "required": false; }; "soloIconos": { "alias": "soloIconos"; "required": false; }; }, { "dblclickItem": "dblclickItem"; "opcionSelecionada": "opcionSelecionada"; "opcBusqueda": "opcBusqueda"; "accionRecargar": "accionRecargar"; "selectionModelChange": "selectionModelChange"; "dataSourceChange": "dataSourceChange"; "resultados": "resultados"; }, ["columnDefs"], ["[filtro]", "[objetosMenuPegado]", "[objetosMenu]", "[botonesFiltro]", "[cuerpo]", "[tableDefinitions]", "[appendTable]"], true, never>;
146
- }
147
- export {};
@@ -1,5 +0,0 @@
1
- export declare function buscarEnArray<T extends Record<string, any>>(coleccion: T[], idBuscar: string | string[], dato: any): T | null;
2
- export declare function formatearFecha(val: string, hora?: string): string | Date;
3
- export declare function esNumero(value: any): boolean;
4
- export declare function capitalizarTexto(texto: string): string;
5
- export declare function getBrowserName(): "edge" | "opera" | "chrome" | "ie" | "firefox" | "safari" | "other";
@@ -1,8 +0,0 @@
1
- import { BotonMantenimiento, ColumnaTabla } from './interfaces/global';
2
- import * as i0 from "@angular/core";
3
- export declare class TablaMantenimientoService {
4
- get templateBotonesComunes(): BotonMantenimiento[];
5
- get templateColumnasTabla(): ColumnaTabla<any>[];
6
- static ɵfac: i0.ɵɵFactoryDeclaration<TablaMantenimientoService, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<TablaMantenimientoService>;
8
- }