keevo-components 1.5.140 → 1.5.142
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/README.md +24 -24
- package/esm2020/keevo-components.mjs +4 -4
- package/esm2020/lib/api/base-components/base-component-button.mjs +36 -36
- package/esm2020/lib/api/base-components/base-component-chart.mjs +92 -92
- package/esm2020/lib/api/base-components/base-component-crud-form.mjs +278 -278
- package/esm2020/lib/api/base-components/base-component-crud-list.mjs +67 -67
- package/esm2020/lib/api/base-components/base-component-crud.mjs +65 -65
- package/esm2020/lib/api/base-components/base-component-dropdown.mjs +161 -161
- package/esm2020/lib/api/base-components/base-component-input.mjs +93 -93
- package/esm2020/lib/api/base-components/base-component-multi-select.mjs +128 -128
- package/esm2020/lib/api/base-components/base-component.mjs +49 -49
- package/esm2020/lib/api/components/chart/chart.config.mjs +2 -2
- package/esm2020/lib/api/components/chart/chart.model.mjs +2 -2
- package/esm2020/lib/api/components/chart/orchart.config.mjs +2 -2
- package/esm2020/lib/api/components/chart/orchart.item.mjs +2 -2
- package/esm2020/lib/api/components/dropdown/filtro.combo.mjs +2 -2
- package/esm2020/lib/api/components/error/error.component.mjs +26 -26
- package/esm2020/lib/api/components/error/kverror.module.mjs +35 -35
- package/esm2020/lib/api/components/table/action-item.mjs +2 -2
- package/esm2020/lib/api/components/table/kv-menuitem.mjs +3 -3
- package/esm2020/lib/api/components/table/table.config.column.mjs +2 -2
- package/esm2020/lib/api/components/table/table.config.mjs +2 -2
- package/esm2020/lib/api/components/table/table.paginate.mjs +9 -9
- package/esm2020/lib/api/helpers/component-providers.mjs +16 -16
- package/esm2020/lib/api/helpers/translate-primeng.mjs +23 -23
- package/esm2020/lib/api/models/menu/master.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/menu.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/menucompleto.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/sistemamenu.model.mjs +2 -2
- package/esm2020/lib/api/modules/primeng.module.mjs +247 -247
- package/esm2020/lib/api/services/base.api.service.mjs +74 -0
- package/esm2020/lib/api/services/component.service.mjs +27 -27
- package/esm2020/lib/api/services/form.service.mjs +102 -102
- package/esm2020/lib/api/services/imagens.service.mjs +22 -22
- package/esm2020/lib/api/services/notification.service.mjs +67 -67
- package/esm2020/lib/api/services/object.service.mjs +26 -26
- package/esm2020/lib/buttons/button-personalize/button-personalize.component.mjs +17 -17
- package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +30 -0
- package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +17 -17
- package/esm2020/lib/buttons/button-success/button-success.component.mjs +17 -17
- package/esm2020/lib/buttons/kvbutton.module.mjs +39 -34
- package/esm2020/lib/chart/chart.component.mjs +145 -145
- package/esm2020/lib/chart/kvchart.module.mjs +32 -32
- package/esm2020/lib/directives/template.directive.mjs +24 -24
- package/esm2020/lib/inputs/check/check.component.mjs +26 -26
- package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +36 -36
- package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +88 -88
- package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +22 -22
- package/esm2020/lib/inputs/input-number/input-number.component.mjs +56 -56
- package/esm2020/lib/inputs/input-password/input-password.component.mjs +32 -32
- package/esm2020/lib/inputs/input-text/input-text.component.mjs +20 -20
- package/esm2020/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +37 -37
- package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +42 -42
- package/esm2020/lib/inputs/input-time/input-time.component.mjs +23 -23
- package/esm2020/lib/inputs/kvinputs.module.mjs +99 -99
- package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +37 -37
- package/esm2020/lib/inputs/radio-group/radio-group.component.mjs +49 -49
- package/esm2020/lib/inputs/switch/switch.component.mjs +32 -32
- package/esm2020/lib/keevo-components.module.mjs +91 -91
- package/esm2020/lib/login/kvlogin.module.mjs +47 -47
- package/esm2020/lib/login/login.component.mjs +38 -38
- package/esm2020/lib/menu/kvmenu.module.mjs +43 -43
- package/esm2020/lib/menu/menu.component.mjs +212 -212
- package/esm2020/lib/orgchart/orgchart.component.mjs +100 -100
- package/esm2020/lib/orgchart/orgchart.module.mjs +24 -24
- package/esm2020/lib/picklist/kvpicklist.module.mjs +32 -32
- package/esm2020/lib/picklist/picklist.component.mjs +48 -48
- package/esm2020/lib/pipes/codigofile.pipe.mjs +19 -19
- package/esm2020/lib/pipes/cpfcnpj.pipe.mjs +25 -25
- package/esm2020/lib/pipes/pipes.module.mjs +34 -34
- package/esm2020/lib/pipes/telefone.pipe.mjs +45 -45
- package/esm2020/lib/table/kvtable.module.mjs +32 -32
- package/esm2020/lib/table/table.component.mjs +476 -476
- package/esm2020/lib/tree-table/kv-treetable.component.mjs +290 -290
- package/esm2020/lib/tree-table/kv-treetable.module.mjs +32 -32
- package/esm2020/lib/tree-view/kvtree-view.module.mjs +28 -28
- package/esm2020/lib/tree-view/tree-view.component.mjs +29 -29
- package/esm2020/lib/workspace/kvworkspace.module.mjs +47 -47
- package/esm2020/lib/workspace/workspace.component.mjs +77 -77
- package/esm2020/public-api.mjs +124 -70
- package/fesm2015/keevo-components.mjs +3838 -3737
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +3829 -3728
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/api/base-components/base-component-button.d.ts +14 -14
- package/lib/api/base-components/base-component-chart.d.ts +40 -40
- package/lib/api/base-components/base-component-crud-form.d.ts +134 -134
- package/lib/api/base-components/base-component-crud-list.d.ts +63 -63
- package/lib/api/base-components/base-component-crud.d.ts +36 -36
- package/lib/api/base-components/base-component-dropdown.d.ts +42 -42
- package/lib/api/base-components/base-component-input.d.ts +31 -31
- package/lib/api/base-components/base-component-multi-select.d.ts +35 -35
- package/lib/api/base-components/base-component.d.ts +21 -21
- package/lib/api/components/chart/chart.config.d.ts +11 -11
- package/lib/api/components/chart/chart.model.d.ts +9 -9
- package/lib/api/components/chart/orchart.config.d.ts +35 -35
- package/lib/api/components/chart/orchart.item.d.ts +26 -26
- package/lib/api/components/dropdown/filtro.combo.d.ts +4 -4
- package/lib/api/components/error/error.component.d.ts +12 -12
- package/lib/api/components/error/kverror.module.d.ts +10 -10
- package/lib/api/components/table/action-item.d.ts +5 -5
- package/lib/api/components/table/kv-menuitem.d.ts +9 -9
- package/lib/api/components/table/table.config.column.d.ts +21 -21
- package/lib/api/components/table/table.config.d.ts +17 -17
- package/lib/api/components/table/table.paginate.d.ts +6 -6
- package/lib/api/helpers/component-providers.d.ts +2 -2
- package/lib/api/helpers/translate-primeng.d.ts +4 -4
- package/lib/api/models/menu/master.model.d.ts +6 -6
- package/lib/api/models/menu/menu.model.d.ts +10 -10
- package/lib/api/models/menu/menucompleto.model.d.ts +6 -6
- package/lib/api/models/menu/sistemamenu.model.d.ts +8 -8
- package/lib/api/modules/primeng.module.d.ts +60 -60
- package/lib/api/services/base.api.service.d.ts +25 -0
- package/lib/api/services/component.service.d.ts +11 -11
- package/lib/api/services/form.service.d.ts +27 -27
- package/lib/api/services/imagens.service.d.ts +8 -8
- package/lib/api/services/notification.service.d.ts +25 -25
- package/lib/api/services/object.service.d.ts +8 -8
- package/lib/buttons/button-personalize/button-personalize.component.d.ts +7 -7
- package/lib/buttons/button-popup/button-popup.component.d.ts +13 -0
- package/lib/buttons/button-secondary/button-secondary.component.d.ts +7 -7
- package/lib/buttons/button-success/button-success.component.d.ts +7 -7
- package/lib/buttons/kvbutton.module.d.ts +11 -10
- package/lib/chart/chart.component.d.ts +56 -56
- package/lib/chart/kvchart.module.d.ts +10 -10
- package/lib/directives/template.directive.d.ts +11 -11
- package/lib/inputs/check/check.component.d.ts +11 -11
- package/lib/inputs/dropdown/dropdown.component.d.ts +14 -14
- package/lib/inputs/input-calendar/input-calendar.component.d.ts +27 -27
- package/lib/inputs/input-mask/input-mask.component.d.ts +10 -10
- package/lib/inputs/input-number/input-number.component.d.ts +18 -18
- package/lib/inputs/input-password/input-password.component.d.ts +13 -13
- package/lib/inputs/input-text/input-text.component.d.ts +9 -9
- package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +15 -15
- package/lib/inputs/input-textarea/input-textarea.component.d.ts +16 -16
- package/lib/inputs/input-time/input-time.component.d.ts +10 -10
- package/lib/inputs/kvinputs.module.d.ts +23 -23
- package/lib/inputs/multi-select/multi-select.component.d.ts +12 -12
- package/lib/inputs/radio-group/radio-group.component.d.ts +17 -17
- package/lib/inputs/switch/switch.component.d.ts +13 -13
- package/lib/keevo-components.module.d.ts +17 -17
- package/lib/login/kvlogin.module.d.ts +13 -13
- package/lib/login/login.component.d.ts +17 -17
- package/lib/menu/kvmenu.module.d.ts +12 -12
- package/lib/menu/menu.component.d.ts +67 -67
- package/lib/orgchart/orgchart.component.d.ts +27 -27
- package/lib/orgchart/orgchart.module.d.ts +9 -9
- package/lib/picklist/kvpicklist.module.d.ts +10 -10
- package/lib/picklist/picklist.component.d.ts +20 -20
- package/lib/pipes/codigofile.pipe.d.ts +7 -7
- package/lib/pipes/cpfcnpj.pipe.d.ts +7 -7
- package/lib/pipes/pipes.module.d.ts +10 -10
- package/lib/pipes/telefone.pipe.d.ts +7 -7
- package/lib/table/kvtable.module.d.ts +10 -10
- package/lib/table/table.component.d.ts +103 -103
- package/lib/tree-table/kv-treetable.component.d.ts +69 -69
- package/lib/tree-table/kv-treetable.module.d.ts +11 -11
- package/lib/tree-view/kvtree-view.module.d.ts +9 -9
- package/lib/tree-view/tree-view.component.d.ts +14 -14
- package/lib/workspace/kvworkspace.module.d.ts +13 -13
- package/lib/workspace/workspace.component.d.ts +28 -28
- package/package.json +1 -1
- package/public-api.d.ts +120 -66
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
-
import { TreeNode } from 'primeng/api';
|
|
3
|
-
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, TableConfig, TableConfigColumn, TelefonePipe } from '../../public-api';
|
|
4
|
-
import { Table } from 'primeng/table';
|
|
5
|
-
import { TreeTable } from 'primeng/treetable';
|
|
6
|
-
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class TreeTableComponent implements OnInit {
|
|
9
|
-
private readonly datePipe;
|
|
10
|
-
private readonly decimalPipe;
|
|
11
|
-
private readonly codigoFipePipe;
|
|
12
|
-
private readonly cpfCnpjPipe;
|
|
13
|
-
private readonly telefonePipe;
|
|
14
|
-
config: TableConfig;
|
|
15
|
-
dataSource: TreeNode[];
|
|
16
|
-
selectedItems: any[];
|
|
17
|
-
acoesLinhaTabela: boolean;
|
|
18
|
-
espacamentoPai: string;
|
|
19
|
-
espacamentoLateral: boolean;
|
|
20
|
-
tamanhoTotalTree: number;
|
|
21
|
-
rowsPerPageOptions: number[];
|
|
22
|
-
rows: number;
|
|
23
|
-
tableSize: number;
|
|
24
|
-
paginator: boolean;
|
|
25
|
-
rightCollapse: boolean;
|
|
26
|
-
applyStyle: Function;
|
|
27
|
-
_templates: any;
|
|
28
|
-
colorButtonToggleNodes: string;
|
|
29
|
-
templates: QueryList<any>;
|
|
30
|
-
table: Table;
|
|
31
|
-
onFilter: EventEmitter<any>;
|
|
32
|
-
onPaginate: EventEmitter<any>;
|
|
33
|
-
onActiveItem: EventEmitter<any>;
|
|
34
|
-
onActiveItemLote: EventEmitter<any>;
|
|
35
|
-
nodeContext: {
|
|
36
|
-
$implicit: string;
|
|
37
|
-
rowNode: string;
|
|
38
|
-
};
|
|
39
|
-
selectedNodes: TreeNode[];
|
|
40
|
-
menuItems: KvMenuItem[];
|
|
41
|
-
imgDefault: string;
|
|
42
|
-
isExpanded: boolean;
|
|
43
|
-
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
|
|
44
|
-
ngOnInit(): void;
|
|
45
|
-
onGlobalFilter(table: TreeTable, event: Event): void;
|
|
46
|
-
paginate($event: any): void;
|
|
47
|
-
isBooleanField(rowData: any, col: TableConfigColumn): boolean;
|
|
48
|
-
isChipField(col: TableConfigColumn): boolean;
|
|
49
|
-
isImageField(col: TableConfigColumn): boolean;
|
|
50
|
-
returnRowClass(rowData: any, col: TableConfigColumn): string;
|
|
51
|
-
transformValue(rowData: any, col: TableConfigColumn): any;
|
|
52
|
-
formatarValor(valor: number): string;
|
|
53
|
-
loadImage(rowData: any, col: TableConfigColumn): string;
|
|
54
|
-
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
55
|
-
exibirCampo(field: any, rowData: any): any;
|
|
56
|
-
activeItem(rowNode: any, rowData: any): void;
|
|
57
|
-
activeItemLote(rowData: any): void;
|
|
58
|
-
retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
|
|
59
|
-
callDisabled(action: KvMenuItem, data: any): boolean;
|
|
60
|
-
criarMenusModal(data: any, rowNode: any): void;
|
|
61
|
-
recuperarRowNode(rowNode: any): any;
|
|
62
|
-
validaLinhaAcaoVazia(rowData: any, rowNode: any): boolean;
|
|
63
|
-
toggleNodes(): void;
|
|
64
|
-
expandAll(): void;
|
|
65
|
-
collapseAll(): void;
|
|
66
|
-
private expandCollapseRecursive;
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "kv-treetable", never, { "config": "config"; "dataSource": "dataSource"; "selectedItems": "selectedItems"; "acoesLinhaTabela": "acoesLinhaTabela"; "espacamentoPai": "espacamentoPai"; "espacamentoLateral": "espacamentoLateral"; "tamanhoTotalTree": "tamanhoTotalTree"; "rowsPerPageOptions": "rowsPerPageOptions"; "rows": "rows"; "tableSize": "tableSize"; "paginator": "paginator"; "rightCollapse": "rightCollapse"; "applyStyle": "applyStyle"; "_templates": "templates"; "colorButtonToggleNodes": "colorButtonToggleNodes"; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; }, ["templates"], never, false, never>;
|
|
69
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TreeNode } from 'primeng/api';
|
|
3
|
+
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, TableConfig, TableConfigColumn, TelefonePipe } from '../../public-api';
|
|
4
|
+
import { Table } from 'primeng/table';
|
|
5
|
+
import { TreeTable } from 'primeng/treetable';
|
|
6
|
+
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TreeTableComponent implements OnInit {
|
|
9
|
+
private readonly datePipe;
|
|
10
|
+
private readonly decimalPipe;
|
|
11
|
+
private readonly codigoFipePipe;
|
|
12
|
+
private readonly cpfCnpjPipe;
|
|
13
|
+
private readonly telefonePipe;
|
|
14
|
+
config: TableConfig;
|
|
15
|
+
dataSource: TreeNode[];
|
|
16
|
+
selectedItems: any[];
|
|
17
|
+
acoesLinhaTabela: boolean;
|
|
18
|
+
espacamentoPai: string;
|
|
19
|
+
espacamentoLateral: boolean;
|
|
20
|
+
tamanhoTotalTree: number;
|
|
21
|
+
rowsPerPageOptions: number[];
|
|
22
|
+
rows: number;
|
|
23
|
+
tableSize: number;
|
|
24
|
+
paginator: boolean;
|
|
25
|
+
rightCollapse: boolean;
|
|
26
|
+
applyStyle: Function;
|
|
27
|
+
_templates: any;
|
|
28
|
+
colorButtonToggleNodes: string;
|
|
29
|
+
templates: QueryList<any>;
|
|
30
|
+
table: Table;
|
|
31
|
+
onFilter: EventEmitter<any>;
|
|
32
|
+
onPaginate: EventEmitter<any>;
|
|
33
|
+
onActiveItem: EventEmitter<any>;
|
|
34
|
+
onActiveItemLote: EventEmitter<any>;
|
|
35
|
+
nodeContext: {
|
|
36
|
+
$implicit: string;
|
|
37
|
+
rowNode: string;
|
|
38
|
+
};
|
|
39
|
+
selectedNodes: TreeNode[];
|
|
40
|
+
menuItems: KvMenuItem[];
|
|
41
|
+
imgDefault: string;
|
|
42
|
+
isExpanded: boolean;
|
|
43
|
+
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
|
|
44
|
+
ngOnInit(): void;
|
|
45
|
+
onGlobalFilter(table: TreeTable, event: Event): void;
|
|
46
|
+
paginate($event: any): void;
|
|
47
|
+
isBooleanField(rowData: any, col: TableConfigColumn): boolean;
|
|
48
|
+
isChipField(col: TableConfigColumn): boolean;
|
|
49
|
+
isImageField(col: TableConfigColumn): boolean;
|
|
50
|
+
returnRowClass(rowData: any, col: TableConfigColumn): string;
|
|
51
|
+
transformValue(rowData: any, col: TableConfigColumn): any;
|
|
52
|
+
formatarValor(valor: number): string;
|
|
53
|
+
loadImage(rowData: any, col: TableConfigColumn): string;
|
|
54
|
+
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
55
|
+
exibirCampo(field: any, rowData: any): any;
|
|
56
|
+
activeItem(rowNode: any, rowData: any): void;
|
|
57
|
+
activeItemLote(rowData: any): void;
|
|
58
|
+
retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
|
|
59
|
+
callDisabled(action: KvMenuItem, data: any): boolean;
|
|
60
|
+
criarMenusModal(data: any, rowNode: any): void;
|
|
61
|
+
recuperarRowNode(rowNode: any): any;
|
|
62
|
+
validaLinhaAcaoVazia(rowData: any, rowNode: any): boolean;
|
|
63
|
+
toggleNodes(): void;
|
|
64
|
+
expandAll(): void;
|
|
65
|
+
collapseAll(): void;
|
|
66
|
+
private expandCollapseRecursive;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "kv-treetable", never, { "config": "config"; "dataSource": "dataSource"; "selectedItems": "selectedItems"; "acoesLinhaTabela": "acoesLinhaTabela"; "espacamentoPai": "espacamentoPai"; "espacamentoLateral": "espacamentoLateral"; "tamanhoTotalTree": "tamanhoTotalTree"; "rowsPerPageOptions": "rowsPerPageOptions"; "rows": "rows"; "tableSize": "tableSize"; "paginator": "paginator"; "rightCollapse": "rightCollapse"; "applyStyle": "applyStyle"; "_templates": "templates"; "colorButtonToggleNodes": "colorButtonToggleNodes"; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; }, ["templates"], never, false, never>;
|
|
69
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./kv-treetable.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 "../buttons/kvbutton.module";
|
|
7
|
-
export declare class KVTreeTableModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KVTreeTableModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KVTreeTableModule, [typeof i1.TreeTableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvButtonsModule], [typeof i1.TreeTableComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KVTreeTableModule>;
|
|
11
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-treetable.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 "../buttons/kvbutton.module";
|
|
7
|
+
export declare class KVTreeTableModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KVTreeTableModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KVTreeTableModule, [typeof i1.TreeTableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvButtonsModule], [typeof i1.TreeTableComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KVTreeTableModule>;
|
|
11
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./tree-view.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
export declare class KvtreeViewModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvtreeViewModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.TreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.TreeViewComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tree-view.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
+
export declare class KvtreeViewModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvtreeViewModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.TreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.TreeViewComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
|
|
9
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { TreeNode } from 'primeng/api';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TreeViewComponent implements OnInit {
|
|
5
|
-
selectedFiles: TreeNode[] | undefined;
|
|
6
|
-
selectionMode: string;
|
|
7
|
-
treeViewData: TreeNode[];
|
|
8
|
-
selectedItems: EventEmitter<any>;
|
|
9
|
-
constructor();
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
onSelectionChange(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewComponent, "kv-tree-view", never, { "selectedFiles": "selectedFiles"; "selectionMode": "selectionMode"; "treeViewData": "treeViewData"; }, { "selectedItems": "selectedItems"; }, never, never, false, never>;
|
|
14
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TreeNode } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TreeViewComponent implements OnInit {
|
|
5
|
+
selectedFiles: TreeNode[] | undefined;
|
|
6
|
+
selectionMode: string;
|
|
7
|
+
treeViewData: TreeNode[];
|
|
8
|
+
selectedItems: EventEmitter<any>;
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
onSelectionChange(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewComponent, "kv-tree-view", never, { "selectedFiles": "selectedFiles"; "selectionMode": "selectionMode"; "treeViewData": "treeViewData"; }, { "selectedItems": "selectedItems"; }, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./workspace.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 "primeng/progressspinner";
|
|
7
|
-
import * as i6 from "primeng/autocomplete";
|
|
8
|
-
import * as i7 from "../buttons/kvbutton.module";
|
|
9
|
-
export declare class KvWorkspaceModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvWorkspaceModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvWorkspaceModule, [typeof i1.WorkspaceComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i5.ProgressSpinnerModule, typeof i6.AutoCompleteModule, typeof i4.FormsModule, typeof i7.KvButtonsModule], [typeof i1.WorkspaceComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvWorkspaceModule>;
|
|
13
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./workspace.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 "primeng/progressspinner";
|
|
7
|
+
import * as i6 from "primeng/autocomplete";
|
|
8
|
+
import * as i7 from "../buttons/kvbutton.module";
|
|
9
|
+
export declare class KvWorkspaceModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvWorkspaceModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvWorkspaceModule, [typeof i1.WorkspaceComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i5.ProgressSpinnerModule, typeof i6.AutoCompleteModule, typeof i4.FormsModule, typeof i7.KvButtonsModule], [typeof i1.WorkspaceComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvWorkspaceModule>;
|
|
13
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class WorkspaceComponent implements OnInit {
|
|
4
|
-
nomeSistema: string;
|
|
5
|
-
nomeUsuario: string;
|
|
6
|
-
masters: any[];
|
|
7
|
-
somenteMaster: boolean;
|
|
8
|
-
onGetMasterSelecionada: EventEmitter<any>;
|
|
9
|
-
onGetEmpresaSelecionada: EventEmitter<any>;
|
|
10
|
-
empresas: any[];
|
|
11
|
-
masterSelecionada: any;
|
|
12
|
-
empresaSelecionada: any;
|
|
13
|
-
visivel: boolean;
|
|
14
|
-
txtPesquisa: string;
|
|
15
|
-
imgPersonagens: string;
|
|
16
|
-
imgLogoKeevo: string;
|
|
17
|
-
styleBackground: string;
|
|
18
|
-
constructor();
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
verificaMasterUnica(): void;
|
|
21
|
-
selecionarMaster(master: any): void;
|
|
22
|
-
verificaEmpresaUnica(): void;
|
|
23
|
-
selecionarEmpresa(empresa: any): void;
|
|
24
|
-
voltar(): void;
|
|
25
|
-
filtrarEmpresa(event: any): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceComponent, "kv-workspace", never, { "nomeSistema": "nomeSistema"; "nomeUsuario": "nomeUsuario"; "masters": "masters"; "somenteMaster": "somenteMaster"; }, { "onGetMasterSelecionada": "onGetMasterSelecionada"; "onGetEmpresaSelecionada": "onGetEmpresaSelecionada"; }, never, never, false, never>;
|
|
28
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class WorkspaceComponent implements OnInit {
|
|
4
|
+
nomeSistema: string;
|
|
5
|
+
nomeUsuario: string;
|
|
6
|
+
masters: any[];
|
|
7
|
+
somenteMaster: boolean;
|
|
8
|
+
onGetMasterSelecionada: EventEmitter<any>;
|
|
9
|
+
onGetEmpresaSelecionada: EventEmitter<any>;
|
|
10
|
+
empresas: any[];
|
|
11
|
+
masterSelecionada: any;
|
|
12
|
+
empresaSelecionada: any;
|
|
13
|
+
visivel: boolean;
|
|
14
|
+
txtPesquisa: string;
|
|
15
|
+
imgPersonagens: string;
|
|
16
|
+
imgLogoKeevo: string;
|
|
17
|
+
styleBackground: string;
|
|
18
|
+
constructor();
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
verificaMasterUnica(): void;
|
|
21
|
+
selecionarMaster(master: any): void;
|
|
22
|
+
verificaEmpresaUnica(): void;
|
|
23
|
+
selecionarEmpresa(empresa: any): void;
|
|
24
|
+
voltar(): void;
|
|
25
|
+
filtrarEmpresa(event: any): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceComponent, "kv-workspace", never, { "nomeSistema": "nomeSistema"; "nomeUsuario": "nomeUsuario"; "masters": "masters"; "somenteMaster": "somenteMaster"; }, { "onGetMasterSelecionada": "onGetMasterSelecionada"; "onGetEmpresaSelecionada": "onGetEmpresaSelecionada"; }, never, never, false, never>;
|
|
28
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,66 +1,120 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export * from './lib/
|
|
5
|
-
export * from './lib/
|
|
6
|
-
export * from './lib/
|
|
7
|
-
export * from './lib/
|
|
8
|
-
export * from './lib/
|
|
9
|
-
export * from './lib/
|
|
10
|
-
export * from './lib/
|
|
11
|
-
export * from './lib/
|
|
12
|
-
export * from './lib/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export * from './lib/
|
|
17
|
-
export * from './lib/api/
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export * from './lib/
|
|
22
|
-
export * from './lib/
|
|
23
|
-
export * from './lib/
|
|
24
|
-
export * from './lib/
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export * from './lib/
|
|
29
|
-
export * from './lib/
|
|
30
|
-
export * from './lib/
|
|
31
|
-
export * from './lib/
|
|
32
|
-
export * from './lib/
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
export * from './lib/api/
|
|
37
|
-
export * from './lib/
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export * from './lib/chart/
|
|
42
|
-
export * from './lib/
|
|
43
|
-
export * from './lib/
|
|
44
|
-
export * from './lib/
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
export * from './lib/
|
|
49
|
-
export * from './lib/api/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export * from './lib/
|
|
54
|
-
export * from './lib/
|
|
55
|
-
export * from './lib/
|
|
56
|
-
export * from './lib/
|
|
57
|
-
export * from './lib/
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
export * from './lib/
|
|
62
|
-
export * from './lib/
|
|
63
|
-
export * from './lib/
|
|
64
|
-
export * from './lib/
|
|
65
|
-
export * from './lib/
|
|
66
|
-
export * from './lib/
|
|
1
|
+
/**
|
|
2
|
+
* Classes base de componentes
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/api/base-components/base-component';
|
|
5
|
+
export * from './lib/api/base-components/base-component-button';
|
|
6
|
+
export * from './lib/api/base-components/base-component-chart';
|
|
7
|
+
export * from './lib/api/base-components/base-component-crud';
|
|
8
|
+
export * from './lib/api/base-components/base-component-crud-form';
|
|
9
|
+
export * from './lib/api/base-components/base-component-crud-list';
|
|
10
|
+
export * from './lib/api/base-components/base-component-dropdown';
|
|
11
|
+
export * from './lib/api/base-components/base-component-input';
|
|
12
|
+
export * from './lib/api/base-components/base-component-multi-select';
|
|
13
|
+
/**
|
|
14
|
+
* Helpers
|
|
15
|
+
*/
|
|
16
|
+
export * from './lib/api/helpers/component-providers';
|
|
17
|
+
export * from './lib/api/helpers/translate-primeng';
|
|
18
|
+
/**
|
|
19
|
+
* Pipes
|
|
20
|
+
*/
|
|
21
|
+
export * from './lib/pipes/codigofile.pipe';
|
|
22
|
+
export * from './lib/pipes/cpfcnpj.pipe';
|
|
23
|
+
export * from './lib/pipes/telefone.pipe';
|
|
24
|
+
export * from './lib/pipes/pipes.module';
|
|
25
|
+
/**
|
|
26
|
+
* Services
|
|
27
|
+
*/
|
|
28
|
+
export * from './lib/api/services/base.api.service';
|
|
29
|
+
export * from './lib/api/services/component.service';
|
|
30
|
+
export * from './lib/api/services/form.service';
|
|
31
|
+
export * from './lib/api/services/notification.service';
|
|
32
|
+
export * from './lib/api/services/object.service';
|
|
33
|
+
/**
|
|
34
|
+
* PrimeNG
|
|
35
|
+
*/
|
|
36
|
+
export * from './lib/api/modules/primeng.module';
|
|
37
|
+
export * from './lib/keevo-components.module';
|
|
38
|
+
/**
|
|
39
|
+
* Charts
|
|
40
|
+
*/
|
|
41
|
+
export * from './lib/api/components/chart/chart.config';
|
|
42
|
+
export * from './lib/api/components/chart/chart.model';
|
|
43
|
+
export * from './lib/chart/chart.component';
|
|
44
|
+
export * from './lib/chart/kvchart.module';
|
|
45
|
+
/**
|
|
46
|
+
* Error
|
|
47
|
+
*/
|
|
48
|
+
export * from './lib/api/components/error/error.component';
|
|
49
|
+
export * from './lib/api/components/error/kverror.module';
|
|
50
|
+
/**
|
|
51
|
+
* Buttons
|
|
52
|
+
*/
|
|
53
|
+
export * from './lib/buttons/button-personalize/button-personalize.component';
|
|
54
|
+
export * from './lib/buttons/button-secondary/button-secondary.component';
|
|
55
|
+
export * from './lib/buttons/button-success/button-success.component';
|
|
56
|
+
export * from './lib/buttons//button-popup/button-popup.component';
|
|
57
|
+
export * from './lib/buttons/kvbutton.module';
|
|
58
|
+
/**
|
|
59
|
+
* Inputs
|
|
60
|
+
*/
|
|
61
|
+
export * from './lib/inputs/check/check.component';
|
|
62
|
+
export * from './lib/inputs/dropdown/dropdown.component';
|
|
63
|
+
export * from './lib/inputs/input-calendar/input-calendar.component';
|
|
64
|
+
export * from './lib/inputs/input-mask/input-mask.component';
|
|
65
|
+
export * from './lib/inputs/input-number/input-number.component';
|
|
66
|
+
export * from './lib/inputs/input-password/input-password.component';
|
|
67
|
+
export * from './lib/inputs/input-text-checkbox/input-text-checkbox.component';
|
|
68
|
+
export * from './lib/inputs/input-text/input-text.component';
|
|
69
|
+
export * from './lib/inputs/input-textarea/input-textarea.component';
|
|
70
|
+
export * from './lib/inputs/input-time/input-time.component';
|
|
71
|
+
export * from './lib/inputs/kvinputs.module';
|
|
72
|
+
export * from './lib/inputs/multi-select/multi-select.component';
|
|
73
|
+
export * from './lib/inputs/radio-group/radio-group.component';
|
|
74
|
+
export * from './lib/inputs/switch/switch.component';
|
|
75
|
+
export * from './lib/api/components/dropdown/filtro.combo';
|
|
76
|
+
/**
|
|
77
|
+
* Orgchart
|
|
78
|
+
*/
|
|
79
|
+
export * from './lib/orgchart/orgchart.component';
|
|
80
|
+
export * from './lib/orgchart/orgchart.module';
|
|
81
|
+
/**
|
|
82
|
+
* Picklist
|
|
83
|
+
*/
|
|
84
|
+
export * from './lib/picklist/kvpicklist.module';
|
|
85
|
+
export * from './lib/picklist/picklist.component';
|
|
86
|
+
/**
|
|
87
|
+
* Table
|
|
88
|
+
*/
|
|
89
|
+
export * from './lib/table/kvtable.module';
|
|
90
|
+
export * from './lib/table/table.component';
|
|
91
|
+
export * from './lib/api/components/table/action-item';
|
|
92
|
+
export * from './lib/api/components/table/kv-menuitem';
|
|
93
|
+
export * from './lib/api/components/table/table.config';
|
|
94
|
+
export * from './lib/api/components/table/table.config.column';
|
|
95
|
+
export * from './lib/api/components/table/table.paginate';
|
|
96
|
+
/**
|
|
97
|
+
* TreeTable
|
|
98
|
+
*/
|
|
99
|
+
export * from './lib/tree-table/kv-treetable.component';
|
|
100
|
+
export * from './lib/tree-table/kv-treetable.module';
|
|
101
|
+
/**
|
|
102
|
+
* Treeview
|
|
103
|
+
*/
|
|
104
|
+
export * from './lib/tree-view/kvtree-view.module';
|
|
105
|
+
export * from './lib/tree-view/tree-view.component';
|
|
106
|
+
/**
|
|
107
|
+
* Componente de menu + layout
|
|
108
|
+
*/
|
|
109
|
+
export * from './lib/menu/kvmenu.module';
|
|
110
|
+
export * from './lib/menu/menu.component';
|
|
111
|
+
/**
|
|
112
|
+
* Componente de login
|
|
113
|
+
*/
|
|
114
|
+
export * from './lib/login/kvlogin.module';
|
|
115
|
+
export * from './lib/login/login.component';
|
|
116
|
+
/**
|
|
117
|
+
* Componente de workspaces
|
|
118
|
+
*/
|
|
119
|
+
export * from './lib/workspace/kvworkspace.module';
|
|
120
|
+
export * from './lib/workspace/workspace.component';
|