sf-crud 13.0.2 → 13.0.3
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.
|
@@ -35,6 +35,7 @@ export declare class RegistroComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
35
35
|
buttonsFooterTemplate: TemplateRef<any>;
|
|
36
36
|
sendData: EventEmitter<any>;
|
|
37
37
|
onSubmit: EventEmitter<any>;
|
|
38
|
+
onLoaded: EventEmitter<any>;
|
|
38
39
|
btnSubmit: any;
|
|
39
40
|
notificationSubscription: any;
|
|
40
41
|
subsToKillOnDestroy: Subscription[];
|
|
@@ -95,7 +96,7 @@ export declare class RegistroComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
95
96
|
back(): void;
|
|
96
97
|
private cargarMascarasDirecciones;
|
|
97
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<RegistroComponent, never>;
|
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RegistroComponent, "sf-registro", never, { "idKatios": { "alias": "idKatios"; "required": false; }; "trx": { "alias": "trx"; "required": false; }; "id": { "alias": "id"; "required": false; }; "user": { "alias": "user"; "required": false; }; "dataExt": { "alias": "dataExt"; "required": false; }; "ids": { "alias": "ids"; "required": false; }; "environment": { "alias": "environment"; "required": false; }; "buttonsFooterTemplate": { "alias": "buttonsFooterTemplate"; "required": false; }; "idEntidad": { "alias": "idEntidad"; "required": false; }; }, { "sendData": "sendData"; "onSubmit": "onSubmit"; }, never, never, false, never>;
|
|
99
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RegistroComponent, "sf-registro", never, { "idKatios": { "alias": "idKatios"; "required": false; }; "trx": { "alias": "trx"; "required": false; }; "id": { "alias": "id"; "required": false; }; "user": { "alias": "user"; "required": false; }; "dataExt": { "alias": "dataExt"; "required": false; }; "ids": { "alias": "ids"; "required": false; }; "environment": { "alias": "environment"; "required": false; }; "buttonsFooterTemplate": { "alias": "buttonsFooterTemplate"; "required": false; }; "idEntidad": { "alias": "idEntidad"; "required": false; }; }, { "sendData": "sendData"; "onSubmit": "onSubmit"; "onLoaded": "onLoaded"; }, never, never, false, never>;
|
|
99
100
|
}
|
|
100
101
|
interface DialogElement {
|
|
101
102
|
data: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { CrudConfig } from '../../shared/models/crud-config.model';
|
|
3
3
|
import { GeneralService } from '../../shared/services/general.service';
|
|
4
4
|
import { MenuItem } from 'primeng/api';
|
|
@@ -6,7 +6,7 @@ import { Router } from '@angular/router';
|
|
|
6
6
|
import { SfCrudService } from '../../sf-crud.service';
|
|
7
7
|
import { StepService } from '../../shared/services/step.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TableroComponent implements OnInit {
|
|
9
|
+
export declare class TableroComponent implements OnInit, OnChanges {
|
|
10
10
|
private generalService;
|
|
11
11
|
private router;
|
|
12
12
|
private sfCrudService;
|
|
@@ -34,6 +34,7 @@ export declare class TableroComponent implements OnInit {
|
|
|
34
34
|
private loading;
|
|
35
35
|
constructor(generalService: GeneralService, router: Router, sfCrudService: SfCrudService, stepService: StepService);
|
|
36
36
|
ngOnInit(): void;
|
|
37
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
37
38
|
loadConfigCrud(): void;
|
|
38
39
|
customizeCompany(uiEsquemas: any[]): void;
|
|
39
40
|
getInfoTablero(): void;
|