keevo-components 1.8.36 → 1.8.37
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/esm2022/lib/api/base-components/base-component-chart.mjs +4 -4
- package/esm2022/lib/api/base-components/base-component-crud-form.mjs +2 -2
- package/esm2022/lib/api/base-components/base-component-crud-list.mjs +2 -2
- package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +4 -4
- package/esm2022/lib/api/base-components/base-component-input.mjs +5 -5
- package/esm2022/lib/api/components/table/tableedit.config.column.mjs +1 -1
- package/esm2022/lib/{directives → api/directives}/template/template.directive.mjs +1 -1
- package/esm2022/lib/api/pipes/codigofile.pipe.mjs +19 -0
- package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +25 -0
- package/esm2022/lib/api/pipes/mask.pipe.mjs +29 -0
- package/esm2022/lib/api/pipes/pipes.module.mjs +39 -0
- package/esm2022/lib/api/pipes/telefone.pipe.mjs +45 -0
- package/esm2022/lib/components/keevo-components.module.mjs +144 -0
- package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +78 -0
- package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +32 -0
- package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +17 -0
- package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +31 -0
- package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +17 -0
- package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +17 -0
- package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +39 -0
- package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +92 -0
- package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +28 -0
- package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +145 -0
- package/esm2022/lib/components/kv-chart/kvchart.module.mjs +32 -0
- package/esm2022/lib/components/kv-error/kv-error.component.mjs +26 -0
- package/esm2022/lib/components/kv-error/kv-error.module.mjs +35 -0
- package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +26 -0
- package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +37 -0
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +88 -0
- package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +89 -0
- package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +29 -0
- package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +59 -0
- package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +33 -0
- package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +21 -0
- package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +42 -0
- package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +43 -0
- package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +24 -0
- package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +108 -0
- package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +44 -0
- package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +53 -0
- package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +34 -0
- package/esm2022/lib/components/kv-label/kv-label.component.mjs +15 -0
- package/esm2022/lib/components/kv-label/kv-label.module.mjs +24 -0
- package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +17 -0
- package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +28 -0
- package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +29 -0
- package/esm2022/lib/components/kv-login/kv-login.component.mjs +52 -0
- package/esm2022/lib/components/kv-login/kv-login.module.mjs +47 -0
- package/esm2022/lib/components/kv-menu/kv-menu.component.mjs +188 -0
- package/esm2022/lib/components/kv-menu/kv-menu.module.mjs +47 -0
- package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +67 -0
- package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +31 -0
- package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +100 -0
- package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +24 -0
- package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +147 -0
- package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +38 -0
- package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +48 -0
- package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +32 -0
- package/esm2022/lib/{progress-bar/progress-bar.component.mjs → components/kv-progress-bar/kv-progress-bar.component.mjs} +1 -1
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +28 -0
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +554 -0
- package/esm2022/lib/components/kv-table/kv-table.module.mjs +36 -0
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +567 -0
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +34 -0
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +215 -0
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +28 -0
- package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +30 -0
- package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +28 -0
- package/esm2022/lib/components/kv-treetable/kv-treetable.component.mjs +371 -0
- package/esm2022/lib/components/kv-treetable/kv-treetable.module.mjs +32 -0
- package/esm2022/lib/components/kv-workspace/kv-workspace.component.mjs +178 -0
- package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +51 -0
- package/esm2022/public-api.mjs +75 -71
- package/fesm2022/keevo-components.mjs +2771 -2735
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-chart.d.ts +2 -2
- package/lib/api/base-components/base-component-dropdown-external.d.ts +2 -2
- package/lib/api/base-components/base-component-input.d.ts +3 -3
- package/lib/api/components/table/tableedit.config.column.d.ts +1 -0
- package/lib/{pipes → api/pipes}/codigofile.pipe.d.ts +1 -1
- package/lib/api/pipes/mask.pipe.d.ts +7 -0
- package/lib/api/pipes/pipes.module.d.ts +11 -0
- package/lib/components/keevo-components.module.d.ts +25 -0
- package/lib/components/kv-avatar/kv-avatar.component.d.ts +22 -0
- package/lib/{avatar → components/kv-avatar}/kv-avatar.module.d.ts +2 -2
- package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +7 -0
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +13 -0
- package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +7 -0
- package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +7 -0
- package/lib/components/kv-buttons/kv-button.module.d.ts +11 -0
- package/lib/components/kv-carousel/kv-carousel.component.d.ts +16 -0
- package/lib/{carousel → components/kv-carousel}/kv-carousel.module.d.ts +3 -3
- package/lib/{chart/chart.component.d.ts → components/kv-chart/kv-chart.component.d.ts} +4 -4
- package/lib/{chart → components/kv-chart}/kvchart.module.d.ts +3 -3
- package/lib/components/kv-error/kv-error.component.d.ts +12 -0
- package/lib/{api/components/error/kverror.module.d.ts → components/kv-error/kv-error.module.d.ts} +3 -3
- package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +11 -0
- package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +14 -0
- package/lib/{inputs/editor/editor.component.d.ts → components/kv-inputs/kv-editor/kv-editor.component.d.ts} +5 -5
- package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +27 -0
- package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +12 -0
- package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +19 -0
- package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +13 -0
- package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +9 -0
- package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +16 -0
- package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +16 -0
- package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +10 -0
- package/lib/components/kv-inputs/kv-inputs.module.d.ts +25 -0
- package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +15 -0
- package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +18 -0
- package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +14 -0
- package/lib/components/kv-label/kv-label.component.d.ts +7 -0
- package/lib/components/kv-label/kv-label.module.d.ts +8 -0
- package/lib/components/kv-loader/kv-loader.component.d.ts +8 -0
- package/lib/{loader/kvloader.module.d.ts → components/kv-loader/kv-loader.module.d.ts} +2 -2
- package/lib/{loader/loader.service.d.ts → components/kv-loader/kv-loader.service.d.ts} +3 -3
- package/lib/{login/login.component.d.ts → components/kv-login/kv-login.component.d.ts} +7 -7
- package/lib/components/kv-login/kv-login.module.d.ts +13 -0
- package/lib/{menu/menu.component.d.ts → components/kv-menu/kv-menu.component.d.ts} +7 -7
- package/lib/components/kv-menu/kv-menu.module.d.ts +13 -0
- package/lib/{modal/modal.component.d.ts → components/kv-modal/kv-modal.component.d.ts} +4 -4
- package/lib/{modal → components/kv-modal}/kv-modal.module.d.ts +4 -4
- package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +27 -0
- package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +9 -0
- package/lib/components/kv-page-form/kv-page-form.component.d.ts +70 -0
- package/lib/components/kv-page-form/kv-page-form.module.d.ts +11 -0
- package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +20 -0
- package/lib/{picklist/kvpicklist.module.d.ts → components/kv-pick-list/kv-pick-list.module.d.ts} +3 -3
- package/lib/{progress-bar → components/kv-progress-bar}/kv-progress-bar.module.d.ts +2 -2
- package/lib/{table/table.component.d.ts → components/kv-table/kv-table.component.d.ts} +11 -11
- package/lib/{table/kvtable.module.d.ts → components/kv-table/kv-table.module.d.ts} +4 -4
- package/lib/{table-edit/table-edit.component.d.ts → components/kv-table-edit/kv-table-edit.component.d.ts} +10 -10
- package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +12 -0
- package/lib/{treetable/treetable.component.d.ts → components/kv-tree-table/kv-tree-table.component.d.ts} +5 -5
- package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +9 -0
- package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +14 -0
- package/lib/{tree-view/kvtree-view.module.d.ts → components/kv-tree-view/kv-tree-view.module.d.ts} +3 -3
- package/lib/{tree-table → components/kv-treetable}/kv-treetable.component.d.ts +5 -5
- package/lib/{tree-table → components/kv-treetable}/kv-treetable.module.d.ts +3 -3
- package/lib/{workspace/workspace.component.d.ts → components/kv-workspace/kv-workspace.component.d.ts} +1 -1
- package/lib/{workspace/kvworkspace.module.d.ts → components/kv-workspace/kv-workspace.module.d.ts} +4 -4
- package/package.json +1 -1
- package/public-api.d.ts +74 -70
- package/esm2022/lib/api/components/error/error.component.mjs +0 -26
- package/esm2022/lib/api/components/error/kverror.module.mjs +0 -35
- package/esm2022/lib/avatar/avatar.component.mjs +0 -78
- package/esm2022/lib/avatar/kv-avatar.module.mjs +0 -32
- package/esm2022/lib/buttons/button-personalize/button-personalize.component.mjs +0 -17
- package/esm2022/lib/buttons/button-popup/button-popup.component.mjs +0 -31
- package/esm2022/lib/buttons/button-secondary/button-secondary.component.mjs +0 -17
- package/esm2022/lib/buttons/button-success/button-success.component.mjs +0 -17
- package/esm2022/lib/buttons/kvbutton.module.mjs +0 -39
- package/esm2022/lib/carousel/carousel.component.mjs +0 -92
- package/esm2022/lib/carousel/kv-carousel.module.mjs +0 -28
- package/esm2022/lib/chart/chart.component.mjs +0 -145
- package/esm2022/lib/chart/kvchart.module.mjs +0 -32
- package/esm2022/lib/inputs/check/check.component.mjs +0 -26
- package/esm2022/lib/inputs/dropdown/dropdown.component.mjs +0 -37
- package/esm2022/lib/inputs/editor/editor.component.mjs +0 -88
- package/esm2022/lib/inputs/input-calendar/input-calendar.component.mjs +0 -89
- package/esm2022/lib/inputs/input-mask/input-mask.component.mjs +0 -29
- package/esm2022/lib/inputs/input-number/input-number.component.mjs +0 -59
- package/esm2022/lib/inputs/input-password/input-password.component.mjs +0 -33
- package/esm2022/lib/inputs/input-text/input-text.component.mjs +0 -21
- package/esm2022/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +0 -42
- package/esm2022/lib/inputs/input-textarea/input-textarea.component.mjs +0 -43
- package/esm2022/lib/inputs/input-time/input-time.component.mjs +0 -24
- package/esm2022/lib/inputs/kvinputs.module.mjs +0 -108
- package/esm2022/lib/inputs/multi-select/multi-select.component.mjs +0 -44
- package/esm2022/lib/inputs/radio-group/radio-group.component.mjs +0 -53
- package/esm2022/lib/inputs/switch/switch.component.mjs +0 -34
- package/esm2022/lib/keevo-components.module.mjs +0 -144
- package/esm2022/lib/label/label.component.mjs +0 -15
- package/esm2022/lib/label/label.module.mjs +0 -24
- package/esm2022/lib/loader/kvloader.module.mjs +0 -28
- package/esm2022/lib/loader/loader.component.mjs +0 -17
- package/esm2022/lib/loader/loader.service.mjs +0 -29
- package/esm2022/lib/login/kvlogin.module.mjs +0 -47
- package/esm2022/lib/login/login.component.mjs +0 -52
- package/esm2022/lib/menu/kvmenu.module.mjs +0 -47
- package/esm2022/lib/menu/menu.component.mjs +0 -188
- package/esm2022/lib/modal/kv-modal.module.mjs +0 -31
- package/esm2022/lib/modal/modal.component.mjs +0 -67
- package/esm2022/lib/orgchart/orgchart.component.mjs +0 -100
- package/esm2022/lib/orgchart/orgchart.module.mjs +0 -24
- package/esm2022/lib/page-form/kv-page-form.module.mjs +0 -38
- package/esm2022/lib/page-form/page-form.component.mjs +0 -147
- package/esm2022/lib/picklist/kvpicklist.module.mjs +0 -32
- package/esm2022/lib/picklist/picklist.component.mjs +0 -48
- package/esm2022/lib/pipes/codigofile.pipe.mjs +0 -19
- package/esm2022/lib/pipes/cpfcnpj.pipe.mjs +0 -25
- package/esm2022/lib/pipes/pipes.module.mjs +0 -34
- package/esm2022/lib/pipes/telefone.pipe.mjs +0 -45
- package/esm2022/lib/progress-bar/kv-progress-bar.module.mjs +0 -28
- package/esm2022/lib/table/kvtable.module.mjs +0 -36
- package/esm2022/lib/table/table.component.mjs +0 -554
- package/esm2022/lib/table-edit/table-edit.component.mjs +0 -564
- package/esm2022/lib/table-edit/table-edit.module.mjs +0 -31
- package/esm2022/lib/tree-table/kv-treetable.component.mjs +0 -371
- package/esm2022/lib/tree-table/kv-treetable.module.mjs +0 -32
- package/esm2022/lib/tree-view/kvtree-view.module.mjs +0 -28
- package/esm2022/lib/tree-view/tree-view.component.mjs +0 -30
- package/esm2022/lib/treetable/treetable.component.mjs +0 -215
- package/esm2022/lib/treetable/treetable.module.mjs +0 -28
- package/esm2022/lib/workspace/kvworkspace.module.mjs +0 -51
- package/esm2022/lib/workspace/workspace.component.mjs +0 -178
- package/lib/api/components/error/error.component.d.ts +0 -12
- package/lib/avatar/avatar.component.d.ts +0 -22
- package/lib/buttons/button-personalize/button-personalize.component.d.ts +0 -7
- package/lib/buttons/button-popup/button-popup.component.d.ts +0 -13
- package/lib/buttons/button-secondary/button-secondary.component.d.ts +0 -7
- package/lib/buttons/button-success/button-success.component.d.ts +0 -7
- package/lib/buttons/kvbutton.module.d.ts +0 -11
- package/lib/carousel/carousel.component.d.ts +0 -16
- package/lib/inputs/check/check.component.d.ts +0 -11
- package/lib/inputs/dropdown/dropdown.component.d.ts +0 -14
- package/lib/inputs/input-calendar/input-calendar.component.d.ts +0 -27
- package/lib/inputs/input-mask/input-mask.component.d.ts +0 -12
- package/lib/inputs/input-number/input-number.component.d.ts +0 -19
- package/lib/inputs/input-password/input-password.component.d.ts +0 -13
- package/lib/inputs/input-text/input-text.component.d.ts +0 -9
- package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +0 -16
- package/lib/inputs/input-textarea/input-textarea.component.d.ts +0 -16
- package/lib/inputs/input-time/input-time.component.d.ts +0 -10
- package/lib/inputs/kvinputs.module.d.ts +0 -25
- package/lib/inputs/multi-select/multi-select.component.d.ts +0 -15
- package/lib/inputs/radio-group/radio-group.component.d.ts +0 -18
- package/lib/inputs/switch/switch.component.d.ts +0 -14
- package/lib/keevo-components.module.d.ts +0 -25
- package/lib/label/label.component.d.ts +0 -7
- package/lib/label/label.module.d.ts +0 -8
- package/lib/loader/loader.component.d.ts +0 -8
- package/lib/login/kvlogin.module.d.ts +0 -13
- package/lib/menu/kvmenu.module.d.ts +0 -13
- package/lib/orgchart/orgchart.component.d.ts +0 -27
- package/lib/orgchart/orgchart.module.d.ts +0 -9
- package/lib/page-form/kv-page-form.module.d.ts +0 -11
- package/lib/page-form/page-form.component.d.ts +0 -70
- package/lib/picklist/picklist.component.d.ts +0 -20
- package/lib/pipes/pipes.module.d.ts +0 -10
- package/lib/table-edit/table-edit.module.d.ts +0 -11
- package/lib/tree-view/tree-view.component.d.ts +0 -14
- package/lib/treetable/treetable.module.d.ts +0 -9
- /package/lib/{directives → api/directives}/template/template.directive.d.ts +0 -0
- /package/lib/{pipes → api/pipes}/cpfcnpj.pipe.d.ts +0 -0
- /package/lib/{pipes → api/pipes}/telefone.pipe.d.ts +0 -0
- /package/lib/{progress-bar/progress-bar.component.d.ts → components/kv-progress-bar/kv-progress-bar.component.d.ts} +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-label.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class KvLabelModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvLabelModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvLabelModule, [typeof i1.KvLabelComponent], [typeof i2.CommonModule], [typeof i1.KvLabelComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvLabelModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class KvLoaderComponent {
|
|
4
|
+
loading: Subject<boolean>;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvLoaderComponent, "kv-loader", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./loader.component";
|
|
2
|
+
import * as i1 from "./kv-loader.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "ngx-loading";
|
|
5
5
|
export declare class KvLoaderModule {
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoaderModule, [typeof i1.
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoaderModule, [typeof i1.KvLoaderComponent], [typeof i2.CommonModule, typeof i3.NgxLoadingModule], [typeof i1.KvLoaderComponent]>;
|
|
8
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvLoaderModule>;
|
|
9
9
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Subject } from 'rxjs';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class KvLoaderService {
|
|
4
4
|
static isLoading: Subject<boolean>;
|
|
5
5
|
static show(): void;
|
|
6
6
|
static hide(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KvLoaderService>;
|
|
9
9
|
}
|
|
10
10
|
export declare const loading: () => any;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
1
2
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { BaseComponentCrudForm } from '../api/base-components/base-component-crud-form';
|
|
4
3
|
import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { FormBuilder } from '@angular/forms';
|
|
5
|
+
import { BaseComponentCrudForm } from '../../api/base-components/base-component-crud-form';
|
|
6
|
+
import { NotificationService } from '../../api/services/notification.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Componente de login personalizado.
|
|
10
10
|
* Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
|
|
11
11
|
*/
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class KvLoginComponent extends BaseComponentCrudForm {
|
|
13
13
|
private formBuilder;
|
|
14
14
|
/** URL da imagem de fundo do componente. */
|
|
15
15
|
Background: any;
|
|
@@ -25,6 +25,6 @@ export declare class LoginComponent extends BaseComponentCrudForm {
|
|
|
25
25
|
configureForm(): void;
|
|
26
26
|
loadForm(id: any): void;
|
|
27
27
|
save(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvLoginComponent, "kv-login", never, { "Background": { "alias": "Background"; "required": false; }; "SystemLogo": { "alias": "SystemLogo"; "required": false; }; "SystemColorPrimary": { "alias": "SystemColorPrimary"; "required": false; }; "SystemColorSecondary": { "alias": "SystemColorSecondary"; "required": false; }; }, { "onLogin": "onLogin"; }, never, never, false, never>;
|
|
30
30
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-login.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 "../kv-inputs/kv-inputs.module";
|
|
7
|
+
import * as i6 from "../kv-buttons/kv-button.module";
|
|
8
|
+
import * as i7 from "primeng/progressspinner";
|
|
9
|
+
export declare class KvLoginModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoginModule, [typeof i1.KvLoginComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule, typeof i7.ProgressSpinnerModule], [typeof i1.KvLoginComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvLoginModule>;
|
|
13
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { MasterComboModel } from 'keevo-api-services-keevocenter';
|
|
2
1
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
2
|
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
4
|
-
import {
|
|
3
|
+
import { MasterComboModel } from 'keevo-api-services-keevocenter';
|
|
5
4
|
import { OverlayPanel } from 'primeng/overlaypanel';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
5
|
+
import { Sidebar } from 'primeng/sidebar';
|
|
6
|
+
import { menuCompletoModel } from '../../api/models/menu/menucompleto.model';
|
|
7
|
+
import { menuModel } from '../../api/models/menu/menu.model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class KvMenuComponent implements OnInit {
|
|
10
10
|
private cdr;
|
|
11
11
|
protected router: Router;
|
|
12
12
|
private route;
|
|
@@ -56,6 +56,6 @@ export declare class MenuComponent implements OnInit {
|
|
|
56
56
|
toggleMenu(): void;
|
|
57
57
|
trocarLicenca(): void;
|
|
58
58
|
verificarPaginaSelecionada(link: any): boolean;
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvMenuComponent, "kv-menu", never, { "breadCrumbItems": { "alias": "breadCrumbItems"; "required": false; }; "licencas": { "alias": "licencas"; "required": false; }; "licencaSelecionada": { "alias": "licencaSelecionada"; "required": false; }; "logoImage": { "alias": "logoImage"; "required": false; }; "menuCompleto": { "alias": "menuCompleto"; "required": false; }; "nomeUsuario": { "alias": "nomeUsuario"; "required": false; }; }, { "expandMenuEmit": "expandMenuEmit"; "gerenciarKeePassEvent": "gerenciarKeePassEvent"; "licencaChange": "licencaChange"; "sairEvent": "sairEvent"; "trocarLicencaEmit": "trocarLicencaEmit"; }, never, ["*"], false, never>;
|
|
61
61
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-menu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../kv-buttons/kv-button.module";
|
|
6
|
+
import * as i5 from "../kv-inputs/kv-inputs.module";
|
|
7
|
+
import * as i6 from "../../api/pipes/pipes.module";
|
|
8
|
+
import * as i7 from "../../api/modules/primeng.module";
|
|
9
|
+
export declare class KvMenuModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.KvMenuComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.KvButtonsModule, typeof i5.KvInputsModule, typeof i6.PipesModule, typeof i7.PrimeNgModule, typeof i3.ReactiveFormsModule], [typeof i1.KvMenuComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
|
|
13
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ActionItem } from '../../public-api';
|
|
2
1
|
import { DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
2
|
+
import { ActionItem } from '../../../public-api';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class KvModalComponent {
|
|
5
5
|
protected dynamicDialogRef: DynamicDialogRef;
|
|
6
6
|
constructor(dynamicDialogRef: DynamicDialogRef);
|
|
7
7
|
ngOnInit(): void;
|
|
@@ -15,6 +15,6 @@ export declare class ModalComponent {
|
|
|
15
15
|
defPositionButtons(): void;
|
|
16
16
|
setMarginBottom(): void;
|
|
17
17
|
clickExecute(action: ActionItem): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvModalComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvModalComponent, "kv-modal", never, { "actions": { "alias": "actions"; "required": false; }; "actionsPosition": { "alias": "actionsPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
20
20
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./modal.component";
|
|
2
|
+
import * as i1 from "./kv-modal.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "../buttons/
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
|
+
import * as i4 from "../kv-buttons/kv-button.module";
|
|
6
6
|
export declare class KvModalModule {
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvModalModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvModalModule, [typeof i1.
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvModalModule, [typeof i1.KvModalComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.KvButtonsModule], [typeof i1.KvModalComponent]>;
|
|
9
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvModalModule>;
|
|
10
10
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ElementRef, OnInit, Renderer2, TemplateRef } from '@angular/core';
|
|
2
|
+
import OrgChartConfig from '../../api/components/chart/orchart.config';
|
|
3
|
+
import OrgChartItem from '../../api/components/chart/orchart.item';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class KvOrgchartComponent 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<KvOrgchartComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvOrgchartComponent, "kv-orgchart", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "config": { "alias": "config"; "required": false; }; "template": { "alias": "template"; "required": false; }; "nodeTemplate": { "alias": "nodeTemplate"; "required": false; }; "generateTemplate": { "alias": "generateTemplate"; "required": false; }; "templateFuncion": { "alias": "templateFuncion"; "required": false; }; "corDeFundo": { "alias": "corDeFundo"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-orgchart.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
|
+
export declare class KvOrgchartModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvOrgchartModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvOrgchartModule, [typeof i1.KvOrgchartComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvOrgchartComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvOrgchartModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActionItem } from '../../api/components/table/action-item';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class KvPageFormComponent implements OnInit {
|
|
6
|
+
private fb;
|
|
7
|
+
/**
|
|
8
|
+
* Configurações do formulário
|
|
9
|
+
*/
|
|
10
|
+
formGroup: FormGroup;
|
|
11
|
+
TituloForm: string | undefined;
|
|
12
|
+
SubTituloForm: string | undefined;
|
|
13
|
+
isSaveLoading: boolean;
|
|
14
|
+
popup: boolean;
|
|
15
|
+
locationUseComponent: 'page' | 'dialog';
|
|
16
|
+
/**
|
|
17
|
+
* Botão cancelar
|
|
18
|
+
*/
|
|
19
|
+
iconBtnCancel: string;
|
|
20
|
+
showBtnCancel: boolean;
|
|
21
|
+
txtBtnCancel: string;
|
|
22
|
+
/**
|
|
23
|
+
* Botão salvar
|
|
24
|
+
*/
|
|
25
|
+
iconBtnSave: string;
|
|
26
|
+
showBtnSave: boolean;
|
|
27
|
+
txtBtnSave: string;
|
|
28
|
+
disableBtnSave: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Botão de opções
|
|
31
|
+
*/
|
|
32
|
+
actions: ActionItem[];
|
|
33
|
+
iconBtnSaveToogle: string;
|
|
34
|
+
showBtnSaveToogle: boolean;
|
|
35
|
+
txtBtnSaveToogle: string;
|
|
36
|
+
/**
|
|
37
|
+
* Botão fechar
|
|
38
|
+
*/
|
|
39
|
+
disableBtnSair: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Salvar dados
|
|
42
|
+
*/
|
|
43
|
+
onSave: EventEmitter<any>;
|
|
44
|
+
/**
|
|
45
|
+
* Cancelar
|
|
46
|
+
*/
|
|
47
|
+
onCancel: EventEmitter<any>;
|
|
48
|
+
constructor(fb: FormBuilder);
|
|
49
|
+
/**
|
|
50
|
+
* Adiciona sub-título à tela
|
|
51
|
+
*/
|
|
52
|
+
addSubTitle(): void;
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
/**
|
|
55
|
+
* Dispara o método de cancelamento da tela
|
|
56
|
+
* @param event evento
|
|
57
|
+
*/
|
|
58
|
+
cancel(event: Event): void;
|
|
59
|
+
/**
|
|
60
|
+
* Dispara o método de salvar da tela
|
|
61
|
+
* @param event evento
|
|
62
|
+
*/
|
|
63
|
+
save(event: Event): void;
|
|
64
|
+
/**
|
|
65
|
+
* Ajusta o tamanho da tela considerando o menu lateral
|
|
66
|
+
*/
|
|
67
|
+
setPageFormContainerAttributes(): void;
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvPageFormComponent, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvPageFormComponent, "kv-page-form", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "TituloForm": { "alias": "TituloForm"; "required": false; }; "SubTituloForm": { "alias": "SubTituloForm"; "required": false; }; "isSaveLoading": { "alias": "isSaveLoading"; "required": false; }; "popup": { "alias": "popup"; "required": false; }; "locationUseComponent": { "alias": "locationUseComponent"; "required": false; }; "iconBtnCancel": { "alias": "iconBtnCancel"; "required": false; }; "showBtnCancel": { "alias": "showBtnCancel"; "required": false; }; "txtBtnCancel": { "alias": "txtBtnCancel"; "required": false; }; "iconBtnSave": { "alias": "iconBtnSave"; "required": false; }; "showBtnSave": { "alias": "showBtnSave"; "required": false; }; "txtBtnSave": { "alias": "txtBtnSave"; "required": false; }; "disableBtnSave": { "alias": "disableBtnSave"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "iconBtnSaveToogle": { "alias": "iconBtnSaveToogle"; "required": false; }; "showBtnSaveToogle": { "alias": "showBtnSaveToogle"; "required": false; }; "txtBtnSaveToogle": { "alias": "txtBtnSaveToogle"; "required": false; }; "disableBtnSair": { "alias": "disableBtnSair"; "required": false; }; }, { "onSave": "onSave"; "onCancel": "onCancel"; }, never, ["*"], false, never>;
|
|
70
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-page-form.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../../api/modules/primeng.module";
|
|
6
|
+
import * as i5 from "../kv-buttons/kv-button.module";
|
|
7
|
+
export declare class KvPageFormModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvPageFormModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPageFormModule, [typeof i1.KvPageFormComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PrimeNgModule, typeof i5.KvButtonsModule, typeof i3.ReactiveFormsModule], [typeof i1.KvPageFormComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvPageFormModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class KvPickListComponent implements OnInit {
|
|
4
|
+
breakpoint: string;
|
|
5
|
+
dragdrop: boolean;
|
|
6
|
+
filterBy: string;
|
|
7
|
+
itemTemplate: TemplateRef<any>;
|
|
8
|
+
responsive: boolean;
|
|
9
|
+
source: any[];
|
|
10
|
+
sourceHeader: string;
|
|
11
|
+
sourceStyle: any;
|
|
12
|
+
stripedRows: boolean;
|
|
13
|
+
target: any[];
|
|
14
|
+
targetHeader: string;
|
|
15
|
+
targetStyle: any;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvPickListComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvPickListComponent, "kv-picklist", never, { "breakpoint": { "alias": "breakpoint"; "required": false; }; "dragdrop": { "alias": "dragdrop"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "responsive": { "alias": "responsive"; "required": false; }; "source": { "alias": "source"; "required": false; }; "sourceHeader": { "alias": "sourceHeader"; "required": false; }; "sourceStyle": { "alias": "sourceStyle"; "required": false; }; "stripedRows": { "alias": "stripedRows"; "required": false; }; "target": { "alias": "target"; "required": false; }; "targetHeader": { "alias": "targetHeader"; "required": false; }; "targetStyle": { "alias": "targetStyle"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
package/lib/{picklist/kvpicklist.module.d.ts → components/kv-pick-list/kv-pick-list.module.d.ts}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
2
|
+
import * as i1 from "./kv-pick-list.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
export declare class KvPickListModule {
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvPickListModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPickListModule, [typeof i1.
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPickListModule, [typeof i1.KvPickListComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.KvPickListComponent]>;
|
|
9
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvPickListModule>;
|
|
10
10
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./progress-bar.component";
|
|
2
|
+
import * as i1 from "./kv-progress-bar.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
5
|
export declare class KvProgressBarModule {
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvProgressBarModule, never>;
|
|
7
7
|
static ɵmod: i0.ɵɵNgModuleDeclaration<KvProgressBarModule, [typeof i1.ProgressBarComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.ProgressBarComponent]>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
2
2
|
import { ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
3
|
-
import { Table } from 'primeng/table';
|
|
4
|
-
import { TableConfig } from '../api/components/table/table.config';
|
|
5
|
-
import { TableConfigColumn } from '../api/components/table/table.config.column';
|
|
6
|
-
import { CodigoFipePipe } from '../pipes/codigofile.pipe';
|
|
7
|
-
import { CpfCnpjPipe } from '../pipes/cpfcnpj.pipe';
|
|
8
|
-
import { TelefonePipe } from '../pipes/telefone.pipe';
|
|
9
|
-
import { KvMenuItem } from '../api/components/table/kv-menuitem';
|
|
10
3
|
import { MenuItemCommandEvent } from 'primeng/api';
|
|
4
|
+
import { Table } from 'primeng/table';
|
|
5
|
+
import { CodigoFipePipe } from '../../api/pipes/codigofile.pipe';
|
|
6
|
+
import { CpfCnpjPipe } from '../../api/pipes/cpfcnpj.pipe';
|
|
7
|
+
import { KvMenuItem } from '../../api/components/table/kv-menuitem';
|
|
8
|
+
import { TableConfig } from '../../api/components/table/table.config';
|
|
9
|
+
import { TableConfigColumn } from '../../api/components/table/table.config.column';
|
|
10
|
+
import { TelefonePipe } from '../../api/pipes/telefone.pipe';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class KvTableComponent implements OnInit {
|
|
13
13
|
private readonly datePipe;
|
|
14
14
|
private readonly decimalPipe;
|
|
15
15
|
private readonly codigoFipePipe;
|
|
@@ -100,7 +100,7 @@ export declare class TableComponent implements OnInit {
|
|
|
100
100
|
addColumn(field: string): void;
|
|
101
101
|
dinamicColumnSet(e: any, col: any): void;
|
|
102
102
|
checkMenuFiltro(col: any): void;
|
|
103
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
103
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
104
104
|
callDisabled(action: KvMenuItem, data: any): boolean;
|
|
105
105
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
106
106
|
checkHideColumns(): void;
|
|
@@ -108,6 +108,6 @@ export declare class TableComponent implements OnInit {
|
|
|
108
108
|
filtrosAvancadosEvent(e: any): void;
|
|
109
109
|
isButtonDisable(action: any, rowData: any, commandEvent: any): any;
|
|
110
110
|
onSwitchChange(estado: any, rowData: boolean, col: any): void;
|
|
111
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
112
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
111
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
112
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "defaultSortField": { "alias": "defaultSortField"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "filtrosAvancadosEmit": "filtrosAvancadosEmit"; "onSwitchTableChange": "onSwitchTableChange"; }, ["templates"], ["*"], false, never>;
|
|
113
113
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./table.component";
|
|
2
|
+
import * as i1 from "./kv-table.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "../inputs/
|
|
6
|
+
import * as i5 from "../kv-inputs/kv-inputs.module";
|
|
7
7
|
export declare class KvTableModule {
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.KvTableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvInputsModule], [typeof i1.KvTableComponent]>;
|
|
10
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvTableModule>;
|
|
11
11
|
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
-
import { MenuItem, MenuItemCommandEvent, SelectItem } from 'primeng/api';
|
|
3
|
-
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, NotificationService, TableConfigColumn, TelefonePipe } from '../../public-api';
|
|
4
2
|
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
3
|
+
import { MenuItem, MenuItemCommandEvent, SelectItem } from 'primeng/api';
|
|
5
4
|
import { Table } from 'primeng/table';
|
|
6
|
-
import
|
|
7
|
-
import { TableEditConfigColumn } from '
|
|
5
|
+
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, NotificationService, TableConfigColumn, TelefonePipe } from '../../../public-api';
|
|
6
|
+
import { TableEditConfigColumn } from '../../api/components/table/tableedit.config.column';
|
|
7
|
+
import TableEditConfig from '../../api/components/table/tabledit.config';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class KvTableEditComponent implements OnInit, OnChanges {
|
|
10
10
|
private readonly datePipe;
|
|
11
11
|
private readonly decimalPipe;
|
|
12
12
|
private readonly codigoFipePipe;
|
|
13
13
|
private readonly cpfCnpjPipe;
|
|
14
14
|
private readonly telefonePipe;
|
|
15
15
|
private readonly notificationService;
|
|
16
|
+
collapsed: boolean;
|
|
16
17
|
config: TableEditConfig;
|
|
17
18
|
globalFilterFields: string[];
|
|
18
|
-
collapsed: boolean;
|
|
19
19
|
set setConfig(value: TableEditConfig);
|
|
20
20
|
dataSource: any[];
|
|
21
21
|
editMode: 'row' | 'cell';
|
|
@@ -68,7 +68,6 @@ export declare class TableEditComponent implements OnInit, OnChanges {
|
|
|
68
68
|
ngOnInit(): void;
|
|
69
69
|
ngDoCheck(): void;
|
|
70
70
|
dbClickEdit(): void;
|
|
71
|
-
activateEdit(): void;
|
|
72
71
|
isRowSelectable(event: any): boolean;
|
|
73
72
|
ngOnChanges(changes: SimpleChanges): void;
|
|
74
73
|
onRowEditInit(rowData: any): void;
|
|
@@ -109,8 +108,9 @@ export declare class TableEditComponent implements OnInit, OnChanges {
|
|
|
109
108
|
isSwitchField(col: TableConfigColumn): boolean;
|
|
110
109
|
onSwitchChange(estado: any, rowData: boolean, col: any): void;
|
|
111
110
|
isButtonDisable(action: any, rowData: any, commandEvent: any): any;
|
|
112
|
-
isDisableEditRowFunction(rowData: any): boolean
|
|
111
|
+
isDisableEditRowFunction(rowData: any): boolean;
|
|
112
|
+
isDisableEditRowCellFunction(rowData: any, col: any): boolean;
|
|
113
113
|
isEditableTable(): boolean | null;
|
|
114
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
115
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditComponent, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableEditComponent, "kv-table-edit", never, { "setConfig": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; "espacamentoPai": { "alias": "espacamentoPai"; "required": false; }; "espacamentoLateral": { "alias": "espacamentoLateral"; "required": false; }; "tamanhoTotalTabela": { "alias": "tamanhoTotalTabela"; "required": false; }; "rightCollapse": { "alias": "rightCollapse"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onRowSave": "onRowSave"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; }, never, ["*"], false, never>;
|
|
116
116
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-table-edit.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 "../kv-inputs/kv-inputs.module";
|
|
7
|
+
import * as i6 from "../../api/pipes/pipes.module";
|
|
8
|
+
export declare class KvTableEditModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableEditModule, [typeof i1.KvTableEditComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvInputsModule, typeof i6.PipesModule], [typeof i1.KvTableEditComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvTableEditModule>;
|
|
12
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
-
import { KvMenuItem } from '../api/components/table/kv-menuitem';
|
|
3
|
-
import { TreeTable } from 'primeng/treetable';
|
|
4
2
|
import { MenuItemCommandEvent } from 'primeng/api';
|
|
3
|
+
import { TreeTable } from 'primeng/treetable';
|
|
4
|
+
import { KvMenuItem } from '../../api/components/table/kv-menuitem';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class KvTreetableComponent {
|
|
7
7
|
menuItems: KvMenuItem[];
|
|
8
8
|
tamanhoTela: number;
|
|
9
9
|
selectedItems: any;
|
|
@@ -37,6 +37,6 @@ export declare class TreetableComponent {
|
|
|
37
37
|
isDisabledCheckbox(rowData: any, rowNode: any): boolean;
|
|
38
38
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
39
39
|
validateShowTemplate(rowNode: any, col: any): boolean;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTreetableComponent, "kv-tree-table", never, { "config": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "gridLines": { "alias": "gridLines"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; }, ["templates"], never, false, never>;
|
|
42
42
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-tree-table.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
|
+
export declare class KvTreetableModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTreetableModule, [typeof i1.KvTreetableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvTreetableComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvTreetableModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +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 KvTreeViewComponent implements OnInit {
|
|
5
|
+
selectedFiles: any;
|
|
6
|
+
selectionMode: any;
|
|
7
|
+
treeViewData: TreeNode[];
|
|
8
|
+
selectedItems: EventEmitter<any>;
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
onSelectionChange(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTreeViewComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTreeViewComponent, "kv-tree-view", never, { "selectedFiles": { "alias": "selectedFiles"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "treeViewData": { "alias": "treeViewData"; "required": false; }; }, { "selectedItems": "selectedItems"; }, never, never, false, never>;
|
|
14
|
+
}
|
package/lib/{tree-view/kvtree-view.module.d.ts → components/kv-tree-view/kv-tree-view.module.d.ts}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./tree-view.component";
|
|
2
|
+
import * as i1 from "./kv-tree-view.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
5
|
export declare class KvtreeViewModule {
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvtreeViewModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.KvTreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvTreeViewComponent]>;
|
|
8
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
|
|
9
9
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
2
|
import { MenuItemCommandEvent, TreeNode } from 'primeng/api';
|
|
3
|
-
import {
|
|
3
|
+
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
4
4
|
import { Table } from 'primeng/table';
|
|
5
5
|
import { TreeTable } from 'primeng/treetable';
|
|
6
|
-
import {
|
|
6
|
+
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, TableConfig, TableConfigColumn, TelefonePipe } from '../../../public-api';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class KvTreeTableComponent implements OnInit {
|
|
9
9
|
private readonly datePipe;
|
|
10
10
|
private readonly decimalPipe;
|
|
11
11
|
private readonly codigoFipePipe;
|
|
@@ -80,6 +80,6 @@ export declare class TreeTableComponent implements OnInit {
|
|
|
80
80
|
private expandCollapseRecursive;
|
|
81
81
|
doubleClick(e: any, rowData: any, rowNode: any): void;
|
|
82
82
|
isDisabledCheckbox(rowData: any, rowNode: any): boolean;
|
|
83
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTreeTableComponent, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTreeTableComponent, "kv-treetable", never, { "config": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "espacamentoPai": { "alias": "espacamentoPai"; "required": false; }; "espacamentoLateral": { "alias": "espacamentoLateral"; "required": false; }; "tamanhoTotalTree": { "alias": "tamanhoTotalTree"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "rightCollapse": { "alias": "rightCollapse"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; "colorButtonToggleNodes": { "alias": "colorButtonToggleNodes"; "required": false; }; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; }, ["templates"], never, false, never>;
|
|
85
85
|
}
|