keevo-components 1.5.142 → 1.5.143

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 (168) hide show
  1. package/README.md +24 -24
  2. package/esm2020/keevo-components.mjs +4 -4
  3. package/esm2020/lib/api/base-components/base-component-button.mjs +36 -36
  4. package/esm2020/lib/api/base-components/base-component-chart.mjs +92 -92
  5. package/esm2020/lib/api/base-components/base-component-crud-form.mjs +278 -278
  6. package/esm2020/lib/api/base-components/base-component-crud-list.mjs +67 -67
  7. package/esm2020/lib/api/base-components/base-component-crud.mjs +65 -65
  8. package/esm2020/lib/api/base-components/base-component-dropdown.mjs +161 -161
  9. package/esm2020/lib/api/base-components/base-component-input.mjs +93 -93
  10. package/esm2020/lib/api/base-components/base-component-multi-select.mjs +128 -128
  11. package/esm2020/lib/api/base-components/base-component.mjs +49 -49
  12. package/esm2020/lib/api/components/chart/chart.config.mjs +2 -2
  13. package/esm2020/lib/api/components/chart/chart.model.mjs +2 -2
  14. package/esm2020/lib/api/components/chart/orchart.config.mjs +2 -2
  15. package/esm2020/lib/api/components/chart/orchart.item.mjs +2 -2
  16. package/esm2020/lib/api/components/dropdown/filtro.combo.mjs +2 -2
  17. package/esm2020/lib/api/components/error/error.component.mjs +26 -26
  18. package/esm2020/lib/api/components/error/kverror.module.mjs +35 -35
  19. package/esm2020/lib/api/components/table/action-item.mjs +2 -2
  20. package/esm2020/lib/api/components/table/kv-menuitem.mjs +3 -3
  21. package/esm2020/lib/api/components/table/table.config.column.mjs +2 -2
  22. package/esm2020/lib/api/components/table/table.config.mjs +2 -2
  23. package/esm2020/lib/api/components/table/table.paginate.mjs +9 -9
  24. package/esm2020/lib/api/helpers/component-providers.mjs +16 -16
  25. package/esm2020/lib/api/helpers/translate-primeng.mjs +23 -23
  26. package/esm2020/lib/api/models/menu/master.model.mjs +2 -2
  27. package/esm2020/lib/api/models/menu/menu.model.mjs +2 -2
  28. package/esm2020/lib/api/models/menu/menucompleto.model.mjs +2 -2
  29. package/esm2020/lib/api/models/menu/sistemamenu.model.mjs +2 -2
  30. package/esm2020/lib/api/modules/primeng.module.mjs +247 -247
  31. package/esm2020/lib/api/services/base.api.service.mjs +74 -74
  32. package/esm2020/lib/api/services/component.service.mjs +27 -27
  33. package/esm2020/lib/api/services/form.service.mjs +102 -102
  34. package/esm2020/lib/api/services/imagens.service.mjs +22 -22
  35. package/esm2020/lib/api/services/notification.service.mjs +67 -67
  36. package/esm2020/lib/api/services/object.service.mjs +26 -26
  37. package/esm2020/lib/buttons/button-personalize/button-personalize.component.mjs +17 -17
  38. package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +30 -30
  39. package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +17 -17
  40. package/esm2020/lib/buttons/button-success/button-success.component.mjs +17 -17
  41. package/esm2020/lib/buttons/kvbutton.module.mjs +39 -39
  42. package/esm2020/lib/chart/chart.component.mjs +145 -145
  43. package/esm2020/lib/chart/kvchart.module.mjs +32 -32
  44. package/esm2020/lib/directives/template.directive.mjs +24 -24
  45. package/esm2020/lib/inputs/check/check.component.mjs +26 -26
  46. package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +37 -36
  47. package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +89 -88
  48. package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +23 -22
  49. package/esm2020/lib/inputs/input-number/input-number.component.mjs +57 -56
  50. package/esm2020/lib/inputs/input-password/input-password.component.mjs +33 -32
  51. package/esm2020/lib/inputs/input-text/input-text.component.mjs +21 -20
  52. package/esm2020/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +38 -37
  53. package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +43 -42
  54. package/esm2020/lib/inputs/input-time/input-time.component.mjs +24 -23
  55. package/esm2020/lib/inputs/kvinputs.module.mjs +103 -99
  56. package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +38 -37
  57. package/esm2020/lib/inputs/radio-group/radio-group.component.mjs +49 -49
  58. package/esm2020/lib/inputs/switch/switch.component.mjs +32 -32
  59. package/esm2020/lib/keevo-components.module.mjs +91 -91
  60. package/esm2020/lib/label/label.component.mjs +15 -0
  61. package/esm2020/lib/label/label.module.mjs +24 -0
  62. package/esm2020/lib/login/kvlogin.module.mjs +47 -47
  63. package/esm2020/lib/login/login.component.mjs +38 -38
  64. package/esm2020/lib/menu/kvmenu.module.mjs +43 -43
  65. package/esm2020/lib/menu/menu.component.mjs +220 -212
  66. package/esm2020/lib/orgchart/orgchart.component.mjs +100 -100
  67. package/esm2020/lib/orgchart/orgchart.module.mjs +24 -24
  68. package/esm2020/lib/picklist/kvpicklist.module.mjs +32 -32
  69. package/esm2020/lib/picklist/picklist.component.mjs +48 -48
  70. package/esm2020/lib/pipes/codigofile.pipe.mjs +19 -19
  71. package/esm2020/lib/pipes/cpfcnpj.pipe.mjs +25 -25
  72. package/esm2020/lib/pipes/pipes.module.mjs +34 -34
  73. package/esm2020/lib/pipes/telefone.pipe.mjs +45 -45
  74. package/esm2020/lib/table/kvtable.module.mjs +32 -32
  75. package/esm2020/lib/table/table.component.mjs +476 -476
  76. package/esm2020/lib/tree-table/kv-treetable.component.mjs +290 -290
  77. package/esm2020/lib/tree-table/kv-treetable.module.mjs +32 -32
  78. package/esm2020/lib/tree-view/kvtree-view.module.mjs +28 -28
  79. package/esm2020/lib/tree-view/tree-view.component.mjs +29 -29
  80. package/esm2020/lib/workspace/kvworkspace.module.mjs +47 -47
  81. package/esm2020/lib/workspace/workspace.component.mjs +77 -77
  82. package/esm2020/public-api.mjs +124 -124
  83. package/fesm2015/keevo-components.mjs +3800 -3756
  84. package/fesm2015/keevo-components.mjs.map +1 -1
  85. package/fesm2020/keevo-components.mjs +3791 -3747
  86. package/fesm2020/keevo-components.mjs.map +1 -1
  87. package/index.d.ts +5 -5
  88. package/lib/api/base-components/base-component-button.d.ts +14 -14
  89. package/lib/api/base-components/base-component-chart.d.ts +40 -40
  90. package/lib/api/base-components/base-component-crud-form.d.ts +134 -134
  91. package/lib/api/base-components/base-component-crud-list.d.ts +63 -63
  92. package/lib/api/base-components/base-component-crud.d.ts +36 -36
  93. package/lib/api/base-components/base-component-dropdown.d.ts +42 -42
  94. package/lib/api/base-components/base-component-input.d.ts +31 -31
  95. package/lib/api/base-components/base-component-multi-select.d.ts +35 -35
  96. package/lib/api/base-components/base-component.d.ts +21 -21
  97. package/lib/api/components/chart/chart.config.d.ts +11 -11
  98. package/lib/api/components/chart/chart.model.d.ts +9 -9
  99. package/lib/api/components/chart/orchart.config.d.ts +35 -35
  100. package/lib/api/components/chart/orchart.item.d.ts +26 -26
  101. package/lib/api/components/dropdown/filtro.combo.d.ts +4 -4
  102. package/lib/api/components/error/error.component.d.ts +12 -12
  103. package/lib/api/components/error/kverror.module.d.ts +10 -10
  104. package/lib/api/components/table/action-item.d.ts +5 -5
  105. package/lib/api/components/table/kv-menuitem.d.ts +9 -9
  106. package/lib/api/components/table/table.config.column.d.ts +21 -21
  107. package/lib/api/components/table/table.config.d.ts +17 -17
  108. package/lib/api/components/table/table.paginate.d.ts +6 -6
  109. package/lib/api/helpers/component-providers.d.ts +2 -2
  110. package/lib/api/helpers/translate-primeng.d.ts +4 -4
  111. package/lib/api/models/menu/master.model.d.ts +6 -6
  112. package/lib/api/models/menu/menu.model.d.ts +10 -10
  113. package/lib/api/models/menu/menucompleto.model.d.ts +6 -6
  114. package/lib/api/models/menu/sistemamenu.model.d.ts +8 -8
  115. package/lib/api/modules/primeng.module.d.ts +60 -60
  116. package/lib/api/services/base.api.service.d.ts +25 -25
  117. package/lib/api/services/component.service.d.ts +11 -11
  118. package/lib/api/services/form.service.d.ts +27 -27
  119. package/lib/api/services/imagens.service.d.ts +8 -8
  120. package/lib/api/services/notification.service.d.ts +25 -25
  121. package/lib/api/services/object.service.d.ts +8 -8
  122. package/lib/buttons/button-personalize/button-personalize.component.d.ts +7 -7
  123. package/lib/buttons/button-popup/button-popup.component.d.ts +13 -13
  124. package/lib/buttons/button-secondary/button-secondary.component.d.ts +7 -7
  125. package/lib/buttons/button-success/button-success.component.d.ts +7 -7
  126. package/lib/buttons/kvbutton.module.d.ts +11 -11
  127. package/lib/chart/chart.component.d.ts +56 -56
  128. package/lib/chart/kvchart.module.d.ts +10 -10
  129. package/lib/directives/template.directive.d.ts +11 -11
  130. package/lib/inputs/check/check.component.d.ts +11 -11
  131. package/lib/inputs/dropdown/dropdown.component.d.ts +14 -14
  132. package/lib/inputs/input-calendar/input-calendar.component.d.ts +27 -27
  133. package/lib/inputs/input-mask/input-mask.component.d.ts +10 -10
  134. package/lib/inputs/input-number/input-number.component.d.ts +18 -18
  135. package/lib/inputs/input-password/input-password.component.d.ts +13 -13
  136. package/lib/inputs/input-text/input-text.component.d.ts +9 -9
  137. package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +15 -15
  138. package/lib/inputs/input-textarea/input-textarea.component.d.ts +16 -16
  139. package/lib/inputs/input-time/input-time.component.d.ts +10 -10
  140. package/lib/inputs/kvinputs.module.d.ts +24 -23
  141. package/lib/inputs/multi-select/multi-select.component.d.ts +12 -12
  142. package/lib/inputs/radio-group/radio-group.component.d.ts +17 -17
  143. package/lib/inputs/switch/switch.component.d.ts +13 -13
  144. package/lib/keevo-components.module.d.ts +17 -17
  145. package/lib/label/label.component.d.ts +7 -0
  146. package/lib/label/label.module.d.ts +8 -0
  147. package/lib/login/kvlogin.module.d.ts +13 -13
  148. package/lib/login/login.component.d.ts +17 -17
  149. package/lib/menu/kvmenu.module.d.ts +12 -12
  150. package/lib/menu/menu.component.d.ts +70 -67
  151. package/lib/orgchart/orgchart.component.d.ts +27 -27
  152. package/lib/orgchart/orgchart.module.d.ts +9 -9
  153. package/lib/picklist/kvpicklist.module.d.ts +10 -10
  154. package/lib/picklist/picklist.component.d.ts +20 -20
  155. package/lib/pipes/codigofile.pipe.d.ts +7 -7
  156. package/lib/pipes/cpfcnpj.pipe.d.ts +7 -7
  157. package/lib/pipes/pipes.module.d.ts +10 -10
  158. package/lib/pipes/telefone.pipe.d.ts +7 -7
  159. package/lib/table/kvtable.module.d.ts +10 -10
  160. package/lib/table/table.component.d.ts +103 -103
  161. package/lib/tree-table/kv-treetable.component.d.ts +69 -69
  162. package/lib/tree-table/kv-treetable.module.d.ts +11 -11
  163. package/lib/tree-view/kvtree-view.module.d.ts +9 -9
  164. package/lib/tree-view/tree-view.component.d.ts +14 -14
  165. package/lib/workspace/kvworkspace.module.d.ts +13 -13
  166. package/lib/workspace/workspace.component.d.ts +28 -28
  167. package/package.json +1 -1
  168. package/public-api.d.ts +120 -120
@@ -1,17 +1,17 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormGroup, FormBuilder } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class LoginComponent implements OnInit {
5
- private formBuilder;
6
- Background: any;
7
- SystemLogo: any;
8
- SystemColorPrimary: string;
9
- SystemColorSecondary: string;
10
- onLogin: EventEmitter<any>;
11
- loginForm: FormGroup;
12
- constructor(formBuilder: FormBuilder);
13
- ngOnInit(): void;
14
- login(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "kv-login", never, { "Background": "Background"; "SystemLogo": "SystemLogo"; "SystemColorPrimary": "SystemColorPrimary"; "SystemColorSecondary": "SystemColorSecondary"; }, { "onLogin": "onLogin"; }, never, never, false, never>;
17
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormGroup, FormBuilder } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoginComponent implements OnInit {
5
+ private formBuilder;
6
+ Background: any;
7
+ SystemLogo: any;
8
+ SystemColorPrimary: string;
9
+ SystemColorSecondary: string;
10
+ onLogin: EventEmitter<any>;
11
+ loginForm: FormGroup;
12
+ constructor(formBuilder: FormBuilder);
13
+ ngOnInit(): void;
14
+ login(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "kv-login", never, { "Background": "Background"; "SystemLogo": "SystemLogo"; "SystemColorPrimary": "SystemColorPrimary"; "SystemColorSecondary": "SystemColorSecondary"; }, { "onLogin": "onLogin"; }, never, never, false, never>;
17
+ }
@@ -1,12 +1,12 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./menu.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "../inputs/kvinputs.module";
7
- import * as i6 from "../buttons/kvbutton.module";
8
- export declare class KvMenuModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.MenuComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule], [typeof i1.MenuComponent]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
12
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./menu.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../api/modules/primeng.module";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../inputs/kvinputs.module";
7
+ import * as i6 from "../buttons/kvbutton.module";
8
+ export declare class KvMenuModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.MenuComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule], [typeof i1.MenuComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
12
+ }
@@ -1,67 +1,70 @@
1
- import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
2
- import { menuCompletoModel } from '../api/models/menu/menucompleto.model';
3
- import { Sidebar } from 'primeng/sidebar';
4
- import { menuModel } from '../api/models/menu/menu.model';
5
- import { masterModel } from '../api/models/menu/master.model';
6
- import { ActivatedRoute, Router } from '@angular/router';
7
- import { OverlayPanel } from 'primeng/overlaypanel';
8
- import * as i0 from "@angular/core";
9
- export declare class MenuComponent implements OnInit {
10
- private cdr;
11
- protected router: Router;
12
- private route;
13
- menuCompleto: menuCompletoModel[];
14
- licencas: masterModel[];
15
- licencaSelecionada: masterModel;
16
- logoImage: any;
17
- nomeUsuario: string;
18
- breadCrumbs: boolean;
19
- licencaChange: EventEmitter<any>;
20
- gerenciarKeePassEvent: EventEmitter<any>;
21
- sairEvent: EventEmitter<any>;
22
- expandMenuEmit: EventEmitter<boolean>;
23
- sidebarRef: Sidebar;
24
- sistemasPanel: OverlayPanel;
25
- meusDadosPanel: OverlayPanel;
26
- licencasOptions: {
27
- id: number;
28
- descricao: string;
29
- cnpj: string;
30
- }[];
31
- licencaSelected: {
32
- id: number;
33
- descricao: string;
34
- cnpj: string;
35
- };
36
- menusFiltrados: menuCompletoModel[];
37
- menus: menuModel[];
38
- breadCrumbItems: {
39
- label: string;
40
- routerLink: string;
41
- }[];
42
- heigthCard: number;
43
- widthCard: number;
44
- expandMenu: boolean;
45
- visibleDialogLicenca: boolean;
46
- onWindowResize(): void;
47
- constructor(cdr: ChangeDetectorRef, router: Router, route: ActivatedRoute);
48
- ngOnInit(): void;
49
- configurarLicencas(): void;
50
- configurarBreadCrumbs(): void;
51
- private getBreadcrumbs;
52
- closeCallback(e: Event): void;
53
- MascaraNomeLicenca(nomeLicenca: any): string;
54
- MascaraCnpj(cnpj: string): string;
55
- definirMenusPorSistema(idsistema: number): void;
56
- retornarMenuFilhos(idsistema: number, idmenu: number): menuModel[] | undefined;
57
- callRoute(e: any, expand?: boolean): void;
58
- toggleMenu(): void;
59
- setLicenca(): void;
60
- gerenciarKeePass(event: any): void;
61
- sair(event: any): void;
62
- expandMenuEvent(): void;
63
- ajustarHeigthCard(): number;
64
- verificarPaginaSelecionada(link: any): string;
65
- static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
66
- static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kv-menu", never, { "menuCompleto": "menuCompleto"; "licencas": "licencas"; "licencaSelecionada": "licencaSelecionada"; "logoImage": "logoImage"; "nomeUsuario": "nomeUsuario"; "breadCrumbs": "breadCrumbs"; }, { "licencaChange": "licencaChange"; "gerenciarKeePassEvent": "gerenciarKeePassEvent"; "sairEvent": "sairEvent"; "expandMenuEmit": "expandMenuEmit"; }, never, ["*"], false, never>;
67
- }
1
+ import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { menuCompletoModel } from '../api/models/menu/menucompleto.model';
3
+ import { Sidebar } from 'primeng/sidebar';
4
+ import { menuModel } from '../api/models/menu/menu.model';
5
+ import { masterModel } from '../api/models/menu/master.model';
6
+ import { ActivatedRoute, Router } from '@angular/router';
7
+ import { OverlayPanel } from 'primeng/overlaypanel';
8
+ import { SimpleChanges } from '@angular/core';
9
+ import * as i0 from "@angular/core";
10
+ export declare class MenuComponent implements OnInit {
11
+ private cdr;
12
+ protected router: Router;
13
+ private route;
14
+ menuCompleto: menuCompletoModel[];
15
+ licencas: masterModel[];
16
+ licencaSelecionada: masterModel;
17
+ logoImage: any;
18
+ nomeUsuario: string;
19
+ breadCrumbs: boolean;
20
+ rotaAtual: any;
21
+ licencaChange: EventEmitter<any>;
22
+ gerenciarKeePassEvent: EventEmitter<any>;
23
+ sairEvent: EventEmitter<any>;
24
+ expandMenuEmit: EventEmitter<boolean>;
25
+ sidebarRef: Sidebar;
26
+ sistemasPanel: OverlayPanel;
27
+ meusDadosPanel: OverlayPanel;
28
+ licencasOptions: {
29
+ id: number;
30
+ descricao: string;
31
+ cnpj: string;
32
+ }[];
33
+ licencaSelected: {
34
+ id: number;
35
+ descricao: string;
36
+ cnpj: string;
37
+ };
38
+ menusFiltrados: menuCompletoModel[];
39
+ menus: menuModel[];
40
+ breadCrumbItems: {
41
+ label: string;
42
+ routerLink: string;
43
+ }[];
44
+ heigthCard: number;
45
+ widthCard: number;
46
+ expandMenu: boolean;
47
+ visibleDialogLicenca: boolean;
48
+ onWindowResize(): void;
49
+ constructor(cdr: ChangeDetectorRef, router: Router, route: ActivatedRoute);
50
+ ngOnInit(): void;
51
+ configurarLicencas(): void;
52
+ ngOnChanges(changes: SimpleChanges): void;
53
+ configurarBreadCrumbs(): void;
54
+ private getBreadcrumbs;
55
+ closeCallback(e: Event): void;
56
+ MascaraNomeLicenca(nomeLicenca: any): string;
57
+ MascaraCnpj(cnpj: string): string;
58
+ definirMenusPorSistema(idsistema: number): void;
59
+ retornarMenuFilhos(idsistema: number, idmenu: number): menuModel[] | undefined;
60
+ callRoute(e: any, expand?: boolean): void;
61
+ toggleMenu(): void;
62
+ setLicenca(): void;
63
+ gerenciarKeePass(event: any): void;
64
+ sair(event: any): void;
65
+ expandMenuEvent(): void;
66
+ ajustarHeigthCard(): number;
67
+ verificarPaginaSelecionada(link: any): string;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kv-menu", never, { "menuCompleto": "menuCompleto"; "licencas": "licencas"; "licencaSelecionada": "licencaSelecionada"; "logoImage": "logoImage"; "nomeUsuario": "nomeUsuario"; "breadCrumbs": "breadCrumbs"; "rotaAtual": "rotaAtual"; }, { "licencaChange": "licencaChange"; "gerenciarKeePassEvent": "gerenciarKeePassEvent"; "sairEvent": "sairEvent"; "expandMenuEmit": "expandMenuEmit"; }, never, ["*"], false, never>;
70
+ }
@@ -1,27 +1,27 @@
1
- import { ElementRef, OnInit, Renderer2, TemplateRef } from '@angular/core';
2
- import OrgChartItem from '../api/components/chart/orchart.item';
3
- import OrgChartConfig from '../api/components/chart/orchart.config';
4
- import * as i0 from "@angular/core";
5
- export declare class OrgchartComponent implements OnInit {
6
- private renderer;
7
- chartContainer: ElementRef;
8
- chart: any;
9
- dataSource: OrgChartItem[];
10
- config: OrgChartConfig;
11
- template: string;
12
- nodeTemplate: TemplateRef<any>;
13
- generateTemplate: Function;
14
- templateFuncion: boolean;
15
- corDeFundo: string;
16
- compact: boolean;
17
- mostraMenu: boolean;
18
- constructor(renderer: Renderer2);
19
- ngOnInit(): void;
20
- ngAfterViewInit(): void;
21
- ngOnChanges(): void;
22
- updateChart(): void;
23
- stringToTemplateLiteral(string: string): string;
24
- compactSwap(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<OrgchartComponent, "kv-orgchart", never, { "dataSource": "dataSource"; "config": "config"; "template": "template"; "nodeTemplate": "nodeTemplate"; "generateTemplate": "generateTemplate"; "templateFuncion": "templateFuncion"; "corDeFundo": "corDeFundo"; }, {}, never, never, false, never>;
27
- }
1
+ import { ElementRef, OnInit, Renderer2, TemplateRef } from '@angular/core';
2
+ import OrgChartItem from '../api/components/chart/orchart.item';
3
+ import OrgChartConfig from '../api/components/chart/orchart.config';
4
+ import * as i0 from "@angular/core";
5
+ export declare class OrgchartComponent implements OnInit {
6
+ private renderer;
7
+ chartContainer: ElementRef;
8
+ chart: any;
9
+ dataSource: OrgChartItem[];
10
+ config: OrgChartConfig;
11
+ template: string;
12
+ nodeTemplate: TemplateRef<any>;
13
+ generateTemplate: Function;
14
+ templateFuncion: boolean;
15
+ corDeFundo: string;
16
+ compact: boolean;
17
+ mostraMenu: boolean;
18
+ constructor(renderer: Renderer2);
19
+ ngOnInit(): void;
20
+ ngAfterViewInit(): void;
21
+ ngOnChanges(): void;
22
+ updateChart(): void;
23
+ stringToTemplateLiteral(string: string): string;
24
+ compactSwap(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<OrgchartComponent, "kv-orgchart", never, { "dataSource": "dataSource"; "config": "config"; "template": "template"; "nodeTemplate": "nodeTemplate"; "generateTemplate": "generateTemplate"; "templateFuncion": "templateFuncion"; "corDeFundo": "corDeFundo"; }, {}, never, never, false, never>;
27
+ }
@@ -1,9 +1,9 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./orgchart.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../api/modules/primeng.module";
5
- export declare class OrgchartModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<OrgchartModule, [typeof i1.OrgchartComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.OrgchartComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<OrgchartModule>;
9
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./orgchart.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../api/modules/primeng.module";
5
+ export declare class OrgchartModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OrgchartModule, [typeof i1.OrgchartComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.OrgchartComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<OrgchartModule>;
9
+ }
@@ -1,10 +1,10 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./picklist.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- export declare class KvPickListModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<KvPickListModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvPickListModule, [typeof i1.PickListComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.PickListComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<KvPickListModule>;
10
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./picklist.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../api/modules/primeng.module";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class KvPickListModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvPickListModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvPickListModule, [typeof i1.PickListComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.PickListComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvPickListModule>;
10
+ }
@@ -1,20 +1,20 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PickListComponent implements OnInit {
4
- source: any[];
5
- sourceHeader: string;
6
- sourceStyle: any;
7
- target: any[];
8
- targetHeader: string;
9
- targetStyle: any;
10
- dragdrop: boolean;
11
- responsive: boolean;
12
- filterBy: string;
13
- breakpoint: string;
14
- stripedRows: boolean;
15
- itemTemplate: TemplateRef<any>;
16
- constructor();
17
- ngOnInit(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<PickListComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<PickListComponent, "kv-picklist", never, { "source": "source"; "sourceHeader": "sourceHeader"; "sourceStyle": "sourceStyle"; "target": "target"; "targetHeader": "targetHeader"; "targetStyle": "targetStyle"; "dragdrop": "dragdrop"; "responsive": "responsive"; "filterBy": "filterBy"; "breakpoint": "breakpoint"; "stripedRows": "stripedRows"; "itemTemplate": "itemTemplate"; }, {}, never, never, false, never>;
20
- }
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PickListComponent implements OnInit {
4
+ source: any[];
5
+ sourceHeader: string;
6
+ sourceStyle: any;
7
+ target: any[];
8
+ targetHeader: string;
9
+ targetStyle: any;
10
+ dragdrop: boolean;
11
+ responsive: boolean;
12
+ filterBy: string;
13
+ breakpoint: string;
14
+ stripedRows: boolean;
15
+ itemTemplate: TemplateRef<any>;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickListComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickListComponent, "kv-picklist", never, { "source": "source"; "sourceHeader": "sourceHeader"; "sourceStyle": "sourceStyle"; "target": "target"; "targetHeader": "targetHeader"; "targetStyle": "targetStyle"; "dragdrop": "dragdrop"; "responsive": "responsive"; "filterBy": "filterBy"; "breakpoint": "breakpoint"; "stripedRows": "stripedRows"; "itemTemplate": "itemTemplate"; }, {}, never, never, false, never>;
20
+ }
@@ -1,7 +1,7 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CodigoFipePipe implements PipeTransform {
4
- transform(value: string): string | null;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<CodigoFipePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<CodigoFipePipe, "codigoFipe", false>;
7
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CodigoFipePipe implements PipeTransform {
4
+ transform(value: string): string | null;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodigoFipePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CodigoFipePipe, "codigoFipe", false>;
7
+ }
@@ -1,7 +1,7 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CpfCnpjPipe implements PipeTransform {
4
- transform(value: string): string | null;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<CpfCnpjPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<CpfCnpjPipe, "cpfCnpj", false>;
7
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CpfCnpjPipe implements PipeTransform {
4
+ transform(value: string): string | null;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CpfCnpjPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CpfCnpjPipe, "cpfCnpj", false>;
7
+ }
@@ -1,10 +1,10 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./cpfcnpj.pipe";
3
- import * as i2 from "./telefone.pipe";
4
- import * as i3 from "./codigofile.pipe";
5
- import * as i4 from "@angular/common";
6
- export declare class PipesModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe], [typeof i4.CommonModule], [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
10
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cpfcnpj.pipe";
3
+ import * as i2 from "./telefone.pipe";
4
+ import * as i3 from "./codigofile.pipe";
5
+ import * as i4 from "@angular/common";
6
+ export declare class PipesModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe], [typeof i4.CommonModule], [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
10
+ }
@@ -1,7 +1,7 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TelefonePipe implements PipeTransform {
4
- transform(tel: string): string | null;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<TelefonePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<TelefonePipe, "Telefone", false>;
7
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TelefonePipe implements PipeTransform {
4
+ transform(tel: string): string | null;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TelefonePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TelefonePipe, "Telefone", false>;
7
+ }
@@ -1,10 +1,10 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./table.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- export declare class KvTableModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTableModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.TableComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<KvTableModule>;
10
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./table.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../api/modules/primeng.module";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class KvTableModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvTableModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.TableComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvTableModule>;
10
+ }