sf-crud 13.0.16 → 13.0.17

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.
@@ -36,18 +36,22 @@ export declare class TableroComponent implements OnInit, OnChanges {
36
36
  itemSelected: any;
37
37
  loading: Loading;
38
38
  optionsMap: Map<string, any>;
39
+ customFilters: boolean;
39
40
  currentPage: number;
40
41
  rowsPerPage: number;
41
42
  totalRecords: number;
42
- private initialLoadDone;
43
+ initialLoadDone: boolean;
43
44
  searchValue: string;
44
45
  private searchTimeout;
46
+ get skeletonRows(): number[];
47
+ get isLoadingData(): boolean;
48
+ get displayData(): any[];
45
49
  constructor(generalService: GeneralService, router: Router, sfCrudService: SfCrudService, stepService: StepService, dialogService: CrudDialogService);
46
50
  ngOnInit(): void;
47
51
  ngOnChanges(changes: SimpleChanges): void;
48
52
  loadConfigCrud(): void;
49
53
  customizeCompany(uiEsquemas: any[]): void;
50
- getInfoTablero(): void;
54
+ getInfoTablero(typeLoad?: string): void;
51
55
  generateData(data: any[]): void;
52
56
  initFilterOptions(): void;
53
57
  verifyCreateButton(): void;
@@ -67,5 +71,5 @@ export declare class TableroComponent implements OnInit, OnChanges {
67
71
  pageChange(event: any): void;
68
72
  onGlobalSearch(event: Event): void;
69
73
  static ɵfac: i0.ɵɵFactoryDeclaration<TableroComponent, never>;
70
- static ɵcmp: i0.ɵɵComponentDeclaration<TableroComponent, "sf-crudtablero", never, { "opciones": { "alias": "opciones"; "required": false; }; "idEntidad": { "alias": "idEntidad"; "required": false; }; "idKatios": { "alias": "idKatios"; "required": false; }; "environment": { "alias": "environment"; "required": false; }; "user": { "alias": "user"; "required": false; }; "dataExt": { "alias": "dataExt"; "required": false; }; "showCreateButton": { "alias": "showCreateButton"; "required": false; }; }, { "onSelectAction": "onSelectAction"; }, never, never, true, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableroComponent, "sf-crudtablero", never, { "opciones": { "alias": "opciones"; "required": false; }; "idEntidad": { "alias": "idEntidad"; "required": false; }; "idKatios": { "alias": "idKatios"; "required": false; }; "environment": { "alias": "environment"; "required": false; }; "user": { "alias": "user"; "required": false; }; "dataExt": { "alias": "dataExt"; "required": false; }; "showCreateButton": { "alias": "showCreateButton"; "required": false; }; "optionsMap": { "alias": "optionsMap"; "required": false; }; "customFilters": { "alias": "customFilters"; "required": false; }; }, { "onSelectAction": "onSelectAction"; }, never, never, true, never>;
71
75
  }
@@ -136,7 +136,7 @@ export declare class ChangeData {
136
136
  constructor(value: string, scope: string, index: number);
137
137
  }
138
138
  export interface Loading {
139
- target: HTMLElement | undefined;
139
+ target: HTMLElement | undefined | string;
140
140
  inProgress: boolean;
141
141
  }
142
142
  export interface Mascara {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sf-crud",
3
- "version": "13.0.16",
3
+ "version": "13.0.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0",