keevo-components 1.8.127 → 1.8.129
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/keevo-components.mjs +5 -0
- package/esm2022/lib/api/base-components/base-component-button.mjs +39 -0
- package/esm2022/lib/api/base-components/base-component-chart.mjs +92 -0
- package/esm2022/lib/api/base-components/base-component-crud-form.mjs +298 -0
- package/esm2022/lib/api/base-components/base-component-crud-list.mjs +79 -0
- package/esm2022/lib/api/base-components/base-component-crud.mjs +65 -0
- package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +31 -0
- package/esm2022/lib/api/base-components/base-component-dropdown.mjs +169 -0
- package/esm2022/lib/api/base-components/base-component-input.mjs +94 -0
- package/esm2022/lib/api/base-components/base-component-multi-select.mjs +130 -0
- package/esm2022/lib/api/base-components/base-component.mjs +51 -0
- package/esm2022/lib/api/components/chart/chart.config.mjs +2 -0
- package/esm2022/lib/api/components/chart/chart.model.mjs +2 -0
- package/esm2022/lib/api/components/chart/orchart.config.mjs +2 -0
- package/esm2022/lib/api/components/chart/orchart.item.mjs +2 -0
- package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +2 -0
- package/esm2022/lib/api/components/table/action-item.mjs +2 -0
- package/esm2022/lib/api/components/table/kv-menuitem.mjs +46 -0
- package/esm2022/lib/api/components/table/table-dropdown-control.mjs +2 -0
- package/esm2022/lib/api/components/table/table.config.column.mjs +2 -0
- package/esm2022/lib/api/components/table/table.config.mjs +2 -0
- package/esm2022/lib/api/components/table/table.paginate.mjs +9 -0
- package/esm2022/lib/api/components/table/tabledit.config.mjs +2 -0
- package/esm2022/lib/api/components/table/tableedit.config.column.mjs +2 -0
- package/esm2022/lib/api/components/tree-table/tree-table.config.mjs +3 -0
- package/esm2022/lib/api/directives/template/template.directive.mjs +24 -0
- package/esm2022/lib/api/helpers/component-providers.mjs +16 -0
- package/esm2022/lib/api/helpers/keevo-validators.mjs +82 -0
- package/esm2022/lib/api/helpers/translate-primeng.mjs +23 -0
- package/esm2022/lib/api/modules/primeng.module.mjs +263 -0
- package/esm2022/lib/api/pipes/capitalize.pipe.mjs +28 -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/api/services/base.api.service.mjs +74 -0
- package/esm2022/lib/api/services/breadcrumbs.service.mjs +57 -0
- package/esm2022/lib/api/services/component.service.mjs +27 -0
- package/esm2022/lib/api/services/docs.service.mjs +129 -0
- package/esm2022/lib/api/services/form.service.mjs +85 -0
- package/esm2022/lib/api/services/imagens.service.mjs +28 -0
- package/esm2022/lib/api/services/notification.service.mjs +67 -0
- package/esm2022/lib/api/services/object.service.mjs +39 -0
- package/esm2022/lib/api/types/severity.mjs +2 -0
- package/esm2022/lib/components/keevo-components.module.mjs +151 -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 +31 -0
- package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +37 -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 +32 -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/kv-chart.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-image-upload/kv-image-upload.component.mjs +83 -0
- package/esm2022/lib/components/kv-image-upload/kv-image-upload.module.mjs +18 -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 +92 -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 +25 -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 +117 -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-select-button/kv-select-button.component.mjs +46 -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 +198 -0
- package/esm2022/lib/components/kv-menu/kv-menu.module.mjs +47 -0
- package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +98 -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 +176 -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 +54 -0
- package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +32 -0
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +58 -0
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +28 -0
- package/esm2022/lib/components/kv-report/kv-report.component.mjs +53 -0
- package/esm2022/lib/components/kv-report/kv-report.module.mjs +24 -0
- package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +49 -0
- package/esm2022/lib/components/kv-stepper/kv-stepper.module.mjs +32 -0
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +498 -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 +614 -0
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +41 -0
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +291 -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-workspace/kv-workspace.component.mjs +167 -0
- package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +51 -0
- package/esm2022/public-api.mjs +183 -0
- package/fesm2022/keevo-components.mjs +6276 -0
- package/fesm2022/keevo-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/api/base-components/base-component-button.d.ts +15 -0
- package/lib/api/base-components/base-component-chart.d.ts +40 -0
- package/lib/api/base-components/base-component-crud-form.d.ts +145 -0
- package/lib/api/base-components/base-component-crud-list.d.ts +64 -0
- package/lib/api/base-components/base-component-crud.d.ts +36 -0
- package/lib/api/base-components/base-component-dropdown-external.d.ts +15 -0
- package/lib/api/base-components/base-component-dropdown.d.ts +44 -0
- package/lib/api/base-components/base-component-input.d.ts +31 -0
- package/lib/api/base-components/base-component-multi-select.d.ts +35 -0
- package/lib/api/base-components/base-component.d.ts +22 -0
- package/lib/api/components/chart/chart.config.d.ts +11 -0
- package/lib/api/components/chart/chart.model.d.ts +9 -0
- package/lib/api/components/chart/orchart.config.d.ts +35 -0
- package/lib/api/components/chart/orchart.item.d.ts +26 -0
- package/lib/api/components/dropdown/filtro.combo.d.ts +4 -0
- package/lib/api/components/table/action-item.d.ts +11 -0
- package/lib/api/components/table/kv-menuitem.d.ts +152 -0
- package/lib/api/components/table/table-dropdown-control.d.ts +6 -0
- package/lib/api/components/table/table.config.column.d.ts +25 -0
- package/lib/api/components/table/table.config.d.ts +31 -0
- package/lib/api/components/table/table.paginate.d.ts +6 -0
- package/lib/api/components/table/tabledit.config.d.ts +8 -0
- package/lib/api/components/table/tableedit.config.column.d.ts +10 -0
- package/lib/api/components/tree-table/tree-table.config.d.ts +28 -0
- package/lib/api/directives/template/template.directive.d.ts +11 -0
- package/lib/api/helpers/component-providers.d.ts +2 -0
- package/lib/api/helpers/keevo-validators.d.ts +12 -0
- package/lib/api/helpers/translate-primeng.d.ts +4 -0
- package/lib/api/modules/primeng.module.d.ts +64 -0
- package/lib/api/pipes/capitalize.pipe.d.ts +8 -0
- package/lib/api/pipes/cpfcnpj.pipe.d.ts +7 -0
- package/lib/api/pipes/mask.pipe.d.ts +7 -0
- package/lib/api/pipes/pipes.module.d.ts +11 -0
- package/lib/api/pipes/telefone.pipe.d.ts +7 -0
- package/lib/api/services/base.api.service.d.ts +25 -0
- package/lib/api/services/breadcrumbs.service.d.ts +15 -0
- package/lib/api/services/component.service.d.ts +11 -0
- package/lib/api/services/docs.service.d.ts +12 -0
- package/lib/api/services/form.service.d.ts +28 -0
- package/lib/api/services/imagens.service.d.ts +10 -0
- package/lib/api/services/notification.service.d.ts +25 -0
- package/lib/api/services/object.service.d.ts +9 -0
- package/{src/lib/api/types/severity.ts → lib/api/types/severity.d.ts} +2 -3
- package/lib/components/keevo-components.module.d.ts +26 -0
- package/lib/components/kv-avatar/kv-avatar.component.d.ts +22 -0
- package/lib/components/kv-avatar/kv-avatar.module.d.ts +10 -0
- package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +13 -0
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +15 -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 +14 -0
- package/lib/components/kv-carousel/kv-carousel.module.d.ts +9 -0
- package/lib/components/kv-chart/kv-chart.component.d.ts +56 -0
- package/lib/components/kv-chart/kv-chart.module.d.ts +10 -0
- package/lib/components/kv-error/kv-error.component.d.ts +12 -0
- package/lib/components/kv-error/kv-error.module.d.ts +10 -0
- package/lib/components/kv-image-upload/kv-image-upload.component.d.ts +24 -0
- package/lib/components/kv-image-upload/kv-image-upload.module.d.ts +8 -0
- 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/components/kv-inputs/kv-editor/kv-editor.component.d.ts +21 -0
- 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 +10 -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 +27 -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-select-button/kv-select-button.component.d.ts +19 -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/components/kv-loader/kv-loader.module.d.ts +9 -0
- package/lib/components/kv-loader/kv-loader.service.d.ts +10 -0
- package/lib/components/kv-login/kv-login.component.d.ts +30 -0
- package/lib/components/kv-login/kv-login.module.d.ts +13 -0
- package/lib/components/kv-menu/kv-menu.component.d.ts +59 -0
- package/lib/components/kv-menu/kv-menu.module.d.ts +13 -0
- package/lib/components/kv-modal/kv-modal.component.d.ts +28 -0
- package/lib/components/kv-modal/kv-modal.module.d.ts +10 -0
- 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 +87 -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 +22 -0
- package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +10 -0
- package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +67 -0
- package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +9 -0
- package/lib/components/kv-report/kv-report.component.d.ts +20 -0
- package/lib/components/kv-report/kv-report.module.d.ts +8 -0
- package/lib/components/kv-stepper/kv-stepper.component.d.ts +21 -0
- package/lib/components/kv-stepper/kv-stepper.module.d.ts +10 -0
- package/lib/components/kv-table/kv-table.component.d.ts +113 -0
- package/lib/components/kv-table/kv-table.module.d.ts +11 -0
- package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +127 -0
- package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +14 -0
- package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +61 -0
- 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/components/kv-tree-view/kv-tree-view.module.d.ts +9 -0
- package/lib/components/kv-workspace/kv-workspace.component.d.ts +65 -0
- package/lib/components/kv-workspace/kv-workspace.module.d.ts +14 -0
- package/package.json +43 -30
- package/{src/public-api.ts → public-api.d.ts} +179 -209
- package/ng-package.json +0 -7
- package/src/assets/.gitkeep +0 -0
- package/src/assets/images/LogoEvo.png +0 -0
- package/src/assets/images/LogoPequenaEvo.png +0 -0
- package/src/assets/images/background.png +0 -0
- package/src/assets/images/keepass-logo.png +0 -0
- package/src/assets/images/keepass-logo.svg +0 -74
- package/src/assets/images/keevo-logo.png +0 -0
- package/src/assets/images/logokeevo_2.png +0 -0
- package/src/index.ts +0 -1
- package/src/lib/api/base-components/base-component-button.ts +0 -29
- package/src/lib/api/base-components/base-component-chart.ts +0 -105
- package/src/lib/api/base-components/base-component-crud-form.ts +0 -361
- package/src/lib/api/base-components/base-component-crud-list.ts +0 -122
- package/src/lib/api/base-components/base-component-crud.ts +0 -70
- package/src/lib/api/base-components/base-component-dropdown-external.ts +0 -29
- package/src/lib/api/base-components/base-component-dropdown-new.ts +0 -112
- package/src/lib/api/base-components/base-component-dropdown.ts +0 -170
- package/src/lib/api/base-components/base-component-input.ts +0 -107
- package/src/lib/api/base-components/base-component-multi-select.ts +0 -136
- package/src/lib/api/base-components/base-component.ts +0 -47
- package/src/lib/api/components/chart/chart.config.ts +0 -12
- package/src/lib/api/components/chart/chart.model.ts +0 -9
- package/src/lib/api/components/chart/orchart.config.ts +0 -41
- package/src/lib/api/components/chart/orchart.item.ts +0 -33
- package/src/lib/api/components/dropdown/filtro.combo.ts +0 -4
- package/src/lib/api/components/table/action-item.ts +0 -11
- package/src/lib/api/components/table/kv-menuitem.ts +0 -198
- package/src/lib/api/components/table/table-dropdown-control.ts +0 -6
- package/src/lib/api/components/table/table.config.column.ts +0 -27
- package/src/lib/api/components/table/table.config.ts +0 -34
- package/src/lib/api/components/table/table.paginate.ts +0 -6
- package/src/lib/api/components/table/tabledit.config.ts +0 -10
- package/src/lib/api/components/table/tableedit.config.column.ts +0 -12
- package/src/lib/api/components/tree-table/tree-table.config.ts +0 -30
- package/src/lib/api/directives/directives.module.ts +0 -16
- package/src/lib/api/directives/drag/drag.directive.ts +0 -40
- package/src/lib/api/directives/template/template.directive.ts +0 -15
- package/src/lib/api/helpers/component-providers.ts +0 -16
- package/src/lib/api/helpers/keevo-validators.ts +0 -97
- package/src/lib/api/helpers/severity-color.ts +0 -77
- package/src/lib/api/helpers/translate-primeng.ts +0 -25
- package/src/lib/api/modules/primeng.module.ts +0 -134
- package/src/lib/api/pipes/capitalize.pipe.ts +0 -23
- package/src/lib/api/pipes/cpfcnpj.pipe.ts +0 -21
- package/src/lib/api/pipes/mask.pipe.ts +0 -24
- package/src/lib/api/pipes/pipes.module.ts +0 -26
- package/src/lib/api/pipes/telefone.pipe.ts +0 -38
- package/src/lib/api/services/base.api.service.ts +0 -115
- package/src/lib/api/services/breadcrumbs.service.ts +0 -58
- package/src/lib/api/services/component.service.ts +0 -32
- package/src/lib/api/services/docs.service.ts +0 -129
- package/src/lib/api/services/form.service.ts +0 -115
- package/src/lib/api/services/imagens.service.ts +0 -28
- package/src/lib/api/services/notification.service.ts +0 -85
- package/src/lib/api/services/object.service.ts +0 -33
- package/src/lib/api/types/stimulsoft.reports.d.ts +0 -67463
- package/src/lib/components/keevo-components-styles.scss +0 -11
- package/src/lib/components/keevo-components.module.ts +0 -72
- package/src/lib/components/kv-avatar/kv-avatar.component.html +0 -12
- package/src/lib/components/kv-avatar/kv-avatar.component.scss +0 -45
- package/src/lib/components/kv-avatar/kv-avatar.component.spec.ts +0 -23
- package/src/lib/components/kv-avatar/kv-avatar.component.ts +0 -72
- package/src/lib/components/kv-avatar/kv-avatar.module.ts +0 -21
- package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.html +0 -16
- package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.scss +0 -3
- package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.ts +0 -34
- package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.html +0 -12
- package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.scss +0 -31
- package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.ts +0 -40
- package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.html +0 -12
- package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.scss +0 -14
- package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.ts +0 -14
- package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.html +0 -11
- package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.scss +0 -13
- package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.ts +0 -14
- package/src/lib/components/kv-buttons/kv-button.module.ts +0 -26
- package/src/lib/components/kv-carousel/kv-carousel.component.html +0 -8
- package/src/lib/components/kv-carousel/kv-carousel.component.scss +0 -32
- package/src/lib/components/kv-carousel/kv-carousel.component.spec.ts +0 -23
- package/src/lib/components/kv-carousel/kv-carousel.component.ts +0 -31
- package/src/lib/components/kv-carousel/kv-carousel.module.ts +0 -19
- package/src/lib/components/kv-chart/kv-chart.component.html +0 -38
- package/src/lib/components/kv-chart/kv-chart.component.scss +0 -0
- package/src/lib/components/kv-chart/kv-chart.component.spec.ts +0 -28
- package/src/lib/components/kv-chart/kv-chart.component.ts +0 -153
- package/src/lib/components/kv-chart/kv-chart.module.ts +0 -21
- package/src/lib/components/kv-error/kv-error.component.html +0 -3
- package/src/lib/components/kv-error/kv-error.component.scss +0 -5
- package/src/lib/components/kv-error/kv-error.component.ts +0 -27
- package/src/lib/components/kv-error/kv-error.module.ts +0 -26
- package/src/lib/components/kv-image-upload/kv-image-upload.component.html +0 -62
- package/src/lib/components/kv-image-upload/kv-image-upload.component.scss +0 -0
- package/src/lib/components/kv-image-upload/kv-image-upload.component.ts +0 -82
- package/src/lib/components/kv-image-upload/kv-image-upload.module.ts +0 -10
- package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +0 -12
- package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +0 -13
- package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +0 -32
- package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +0 -91
- package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.scss +0 -21
- package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +0 -40
- package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +0 -100
- package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +0 -8
- package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +0 -113
- package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +0 -30
- package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +0 -84
- package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +0 -22
- package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +0 -35
- package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +0 -23
- package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +0 -61
- package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +0 -23
- package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +0 -26
- package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +0 -22
- package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +0 -18
- package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +0 -27
- package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +0 -35
- package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +0 -23
- package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +0 -43
- package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +0 -22
- package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +0 -40
- package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +0 -23
- package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
- package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +0 -27
- package/src/lib/components/kv-inputs/kv-inputs.module.ts +0 -75
- package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +0 -45
- package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +0 -13
- package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +0 -44
- package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +0 -19
- package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +0 -15
- package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +0 -59
- package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.html +0 -26
- package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.scss +0 -5
- package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.spec.ts +0 -21
- package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.ts +0 -30
- package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +0 -13
- package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +0 -3
- package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +0 -41
- package/src/lib/components/kv-label/kv-label.component.html +0 -6
- package/src/lib/components/kv-label/kv-label.component.scss +0 -9
- package/src/lib/components/kv-label/kv-label.component.spec.ts +0 -23
- package/src/lib/components/kv-label/kv-label.component.ts +0 -14
- package/src/lib/components/kv-label/kv-label.module.ts +0 -17
- package/src/lib/components/kv-loader/kv-loader.component.html +0 -1
- package/src/lib/components/kv-loader/kv-loader.component.ts +0 -15
- package/src/lib/components/kv-loader/kv-loader.module.ts +0 -17
- package/src/lib/components/kv-loader/kv-loader.service.ts +0 -31
- package/src/lib/components/kv-login/kv-login.component.html +0 -108
- package/src/lib/components/kv-login/kv-login.component.scss +0 -76
- package/src/lib/components/kv-login/kv-login.component.spec.ts +0 -23
- package/src/lib/components/kv-login/kv-login.component.ts +0 -81
- package/src/lib/components/kv-login/kv-login.module.ts +0 -33
- package/src/lib/components/kv-menu/kv-menu.component.html +0 -292
- package/src/lib/components/kv-menu/kv-menu.component.scss +0 -214
- package/src/lib/components/kv-menu/kv-menu.component.spec.ts +0 -23
- package/src/lib/components/kv-menu/kv-menu.component.ts +0 -195
- package/src/lib/components/kv-menu/kv-menu.module.ts +0 -33
- package/src/lib/components/kv-modal/kv-modal.component.html +0 -20
- package/src/lib/components/kv-modal/kv-modal.component.scss +0 -84
- package/src/lib/components/kv-modal/kv-modal.component.spec.ts +0 -21
- package/src/lib/components/kv-modal/kv-modal.component.ts +0 -114
- package/src/lib/components/kv-modal/kv-modal.module.ts +0 -21
- package/src/lib/components/kv-orgchart/kv-orgchart.component.html +0 -58
- package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +0 -21
- package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +0 -110
- package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +0 -14
- package/src/lib/components/kv-page-form/kv-page-form.component.html +0 -117
- package/src/lib/components/kv-page-form/kv-page-form.component.scss +0 -76
- package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +0 -28
- package/src/lib/components/kv-page-form/kv-page-form.component.ts +0 -152
- package/src/lib/components/kv-page-form/kv-page-form.module.ts +0 -31
- package/src/lib/components/kv-pick-list/kv-pick-list.component.html +0 -19
- package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +0 -0
- package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +0 -26
- package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +0 -37
- package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +0 -21
- package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +0 -38
- package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +0 -110
- package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +0 -21
- package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +0 -79
- package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +0 -19
- package/src/lib/components/kv-report/kv-report.component.html +0 -12
- package/src/lib/components/kv-report/kv-report.component.scss +0 -21
- package/src/lib/components/kv-report/kv-report.component.spec.ts +0 -28
- package/src/lib/components/kv-report/kv-report.component.ts +0 -50
- package/src/lib/components/kv-report/kv-report.module.ts +0 -18
- package/src/lib/components/kv-stepper/kv-stepper.component.html +0 -44
- package/src/lib/components/kv-stepper/kv-stepper.component.scss +0 -41
- package/src/lib/components/kv-stepper/kv-stepper.component.spec.ts +0 -23
- package/src/lib/components/kv-stepper/kv-stepper.component.ts +0 -41
- package/src/lib/components/kv-stepper/kv-stepper.module.ts +0 -20
- package/src/lib/components/kv-table/kv-table.component.html +0 -482
- package/src/lib/components/kv-table/kv-table.component.scss +0 -265
- package/src/lib/components/kv-table/kv-table.component.spec.ts +0 -28
- package/src/lib/components/kv-table/kv-table.component.ts +0 -535
- package/src/lib/components/kv-table/kv-table.module.ts +0 -23
- package/src/lib/components/kv-table-edit/kv-table-edit.component.html +0 -659
- package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +0 -701
- package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +0 -700
- package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +0 -28
- package/src/lib/components/kv-tree-table/kv-tree-table.component.html +0 -556
- package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +0 -145
- package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +0 -21
- package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +0 -294
- package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +0 -18
- package/src/lib/components/kv-tree-view/kv-tree-view.component.html +0 -9
- package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +0 -0
- package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +0 -23
- package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +0 -31
- package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +0 -19
- package/src/lib/components/kv-workspace/kv-workspace.component.html +0 -53
- package/src/lib/components/kv-workspace/kv-workspace.component.scss +0 -117
- package/src/lib/components/kv-workspace/kv-workspace.component.ts +0 -201
- package/src/lib/components/kv-workspace/kv-workspace.module.ts +0 -35
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -14
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
3
|
+
import { MenuItem, SelectItem } from 'primeng/api';
|
|
4
|
+
import { Table } from 'primeng/table';
|
|
5
|
+
import { CapitalizePipe, CpfCnpjPipe, NotificationService, TableConfigColumn, TelefonePipe, ValueOrFn } from '../../../public-api';
|
|
6
|
+
import { TableEditConfigColumn } from '../../api/components/table/tableedit.config.column';
|
|
7
|
+
import TableEditConfig from '../../api/components/table/tabledit.config';
|
|
8
|
+
import { Subject, Subscription } from 'rxjs';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class KvTableEditComponent implements OnInit, OnChanges {
|
|
11
|
+
private readonly datePipe;
|
|
12
|
+
private readonly decimalPipe;
|
|
13
|
+
private readonly cpfCnpjPipe;
|
|
14
|
+
private readonly telefonePipe;
|
|
15
|
+
private readonly capitalizePipe;
|
|
16
|
+
private readonly notificationService;
|
|
17
|
+
collapsed: boolean;
|
|
18
|
+
config: TableEditConfig;
|
|
19
|
+
globalFilterFields: string[];
|
|
20
|
+
set setConfig(value: TableEditConfig);
|
|
21
|
+
dataSource: any[];
|
|
22
|
+
selectedItems: any[];
|
|
23
|
+
selectedItem: any;
|
|
24
|
+
totalRecords: number;
|
|
25
|
+
paginator: boolean;
|
|
26
|
+
rowsPerPageOptions: number[];
|
|
27
|
+
rows: number;
|
|
28
|
+
pageLinksOptions: number;
|
|
29
|
+
showFirstLastIcon: boolean;
|
|
30
|
+
tableSize: number;
|
|
31
|
+
applyStyle: Function;
|
|
32
|
+
filterColumnsBtn: boolean;
|
|
33
|
+
filtrosAvancados: boolean;
|
|
34
|
+
scrollHeight: string;
|
|
35
|
+
isTableScrollable: boolean;
|
|
36
|
+
rowTrackBy: Function;
|
|
37
|
+
responsiveLayout: boolean;
|
|
38
|
+
tamanhoTotalTabela: number;
|
|
39
|
+
editMode: 'row' | 'cell';
|
|
40
|
+
isEditing: boolean;
|
|
41
|
+
isShowSizes: boolean;
|
|
42
|
+
private itemsParaSalvamento;
|
|
43
|
+
protected itemInitialState: any;
|
|
44
|
+
enableSizes: boolean;
|
|
45
|
+
_templates: any;
|
|
46
|
+
tamanhoTela: number;
|
|
47
|
+
selecteIems: any[];
|
|
48
|
+
menuItems: MenuItem[];
|
|
49
|
+
imgDefault: string;
|
|
50
|
+
isExpanded: boolean;
|
|
51
|
+
statuses: SelectItem[];
|
|
52
|
+
clonedDataSource: {
|
|
53
|
+
[s: string]: any;
|
|
54
|
+
};
|
|
55
|
+
/** Emite evento de salvamento da linha */
|
|
56
|
+
onSave: EventEmitter<any>;
|
|
57
|
+
onActiveItem: EventEmitter<any>;
|
|
58
|
+
onActiveItemLote: EventEmitter<any>;
|
|
59
|
+
onPaginate: EventEmitter<any>;
|
|
60
|
+
onSelectionChange: EventEmitter<any>;
|
|
61
|
+
doubleClickEvent: EventEmitter<any>;
|
|
62
|
+
filterField: EventEmitter<any>;
|
|
63
|
+
onSwitchTableChange: EventEmitter<any>;
|
|
64
|
+
onFilter: EventEmitter<any>;
|
|
65
|
+
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe, capitalizePipe: CapitalizePipe, notificationService: NotificationService);
|
|
66
|
+
selectedProduct: any;
|
|
67
|
+
getOrExecute<T>(action: ValueOrFn<T>, data: any): T;
|
|
68
|
+
items: MenuItem[];
|
|
69
|
+
sizes: {
|
|
70
|
+
label: string;
|
|
71
|
+
class: string;
|
|
72
|
+
size: number;
|
|
73
|
+
command: (x: any) => void;
|
|
74
|
+
}[];
|
|
75
|
+
selectedSize: any;
|
|
76
|
+
timerSubscription: Subscription;
|
|
77
|
+
onSaveTimer$: Subject<void>;
|
|
78
|
+
private onDestroy$;
|
|
79
|
+
ngOnInit(): void;
|
|
80
|
+
ngOnDestroy(): void;
|
|
81
|
+
ngDoCheck(): void;
|
|
82
|
+
dbClickEdit(): void;
|
|
83
|
+
isRowSelectable(event: any): boolean;
|
|
84
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
85
|
+
onRowEditInit(rowData: any): void;
|
|
86
|
+
onEditInit(event1: any): void;
|
|
87
|
+
onEditComplete(event: any): void;
|
|
88
|
+
adicionarCelulaParaSalvar(item: any): void;
|
|
89
|
+
onRowEditSave(): void;
|
|
90
|
+
onRowEditCancel(product: any, index: number): void;
|
|
91
|
+
listarDrop(service: any, col: any, indtodos?: boolean): Promise<any>;
|
|
92
|
+
retornaDescricaoDrop(rowData: any[], col: TableEditConfigColumn): any;
|
|
93
|
+
onGlobalFilter(table: Table, event: Event): void;
|
|
94
|
+
onWindowResize(): void;
|
|
95
|
+
adjustTableSize(): void;
|
|
96
|
+
paginate($event: any): void;
|
|
97
|
+
isBooleanField(rowData: any, col: TableConfigColumn): boolean;
|
|
98
|
+
isChipField(col: TableConfigColumn): boolean;
|
|
99
|
+
isImageField(col: TableConfigColumn): boolean;
|
|
100
|
+
returnRowClass(rowData: any, col: TableConfigColumn): string;
|
|
101
|
+
transformValue(rowData: any, col: TableConfigColumn): any;
|
|
102
|
+
alignColunasHeader(col: any): string;
|
|
103
|
+
centralizarColunas(col: any): string;
|
|
104
|
+
alignColunas(col: any): string;
|
|
105
|
+
returnClassIcon(rowData: any, col: any): string;
|
|
106
|
+
returnTooltipIcon(rowData: any, col: any): string;
|
|
107
|
+
returnClassChip(rowData: any, col: any): string;
|
|
108
|
+
retornarRow(rowData: any, col: any, field: string): string;
|
|
109
|
+
selectionChange(value?: never[]): void;
|
|
110
|
+
formatarValor(valor: number): string;
|
|
111
|
+
loadImage(rowData: any, col: TableConfigColumn): string;
|
|
112
|
+
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
113
|
+
exibirCampo(field: any, rowData: any): any;
|
|
114
|
+
activeItem(rowData: any): void;
|
|
115
|
+
activeItemLote(rowData: any): void;
|
|
116
|
+
criarMenusModal(data: any): void;
|
|
117
|
+
doubleClick(e: any, rowData: any): void;
|
|
118
|
+
isDisabledCheckbox(rowData: any): boolean;
|
|
119
|
+
returnTooltipRow(rowData: any, col: any): any;
|
|
120
|
+
isSwitchField(col: TableConfigColumn): boolean;
|
|
121
|
+
onSwitchChange(estado: any, rowData: boolean, col: any): void;
|
|
122
|
+
isDisableEditRowFunction(rowData: any): boolean;
|
|
123
|
+
isDisableEditRowCellFunction(rowData: any, col: any): boolean;
|
|
124
|
+
isEditableTable(): boolean | null;
|
|
125
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditComponent, never>;
|
|
126
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableEditComponent, "kv-table-edit", never, { "setConfig": { "alias": "config"; "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; }; "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; }; "tamanhoTotalTabela": { "alias": "tamanhoTotalTabela"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "enableSizes": { "alias": "enableSizes"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onSave": "onSave"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; "onFilter": "onFilter"; }, never, ["*"], false, never>;
|
|
127
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 "../kv-buttons/kv-button.module";
|
|
8
|
+
import * as i7 from "../../api/pipes/pipes.module";
|
|
9
|
+
import * as i8 from "primeng/selectbutton";
|
|
10
|
+
export declare class KvTableEditModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableEditModule, [typeof i1.KvTableEditComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule, typeof i7.PipesModule, typeof i8.SelectButtonModule], [typeof i1.KvTableEditComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvTableEditModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { MenuItem, TreeNode } from 'primeng/api';
|
|
3
|
+
import { TreeTable } from 'primeng/treetable';
|
|
4
|
+
import { ValueOrFn } from '../../api/components/table/kv-menuitem';
|
|
5
|
+
import { TreeTableConfig } from '../../api/components/tree-table/tree-table.config';
|
|
6
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class KvTreetableComponent {
|
|
9
|
+
menuItems: MenuItem[];
|
|
10
|
+
tamanhoTela: number;
|
|
11
|
+
config: TreeTableConfig;
|
|
12
|
+
dataSource: any;
|
|
13
|
+
gridLines: boolean;
|
|
14
|
+
tableCaptalized: boolean;
|
|
15
|
+
selectedItems: any;
|
|
16
|
+
paginator: boolean;
|
|
17
|
+
rows: number;
|
|
18
|
+
pageLinks: number;
|
|
19
|
+
showFirstLastIcon: boolean;
|
|
20
|
+
treeTableDraggable: boolean;
|
|
21
|
+
transferArrayItem: boolean;
|
|
22
|
+
ordenacao: string;
|
|
23
|
+
totalRecords: number;
|
|
24
|
+
textoEmptyMessage: string;
|
|
25
|
+
onFilter: EventEmitter<any>;
|
|
26
|
+
onPaginate: EventEmitter<any>;
|
|
27
|
+
onActiveItem: EventEmitter<any>;
|
|
28
|
+
onActiveItemLote: EventEmitter<any>;
|
|
29
|
+
doubleClickEvent: EventEmitter<any>;
|
|
30
|
+
onNodeSelect: EventEmitter<any>;
|
|
31
|
+
onNodeUnselect: EventEmitter<any>;
|
|
32
|
+
onDropItem: EventEmitter<any>;
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
templates: QueryList<any>;
|
|
35
|
+
_templates: any;
|
|
36
|
+
onWindowResize(): void;
|
|
37
|
+
activeItem(rowData: any): void;
|
|
38
|
+
activeItemLote(rowData: any): void;
|
|
39
|
+
getOrExecute<T>(action: ValueOrFn<T>, data: any): T;
|
|
40
|
+
onGlobalFilter(table: TreeTable, event: Event): void;
|
|
41
|
+
paginate($event: any): void;
|
|
42
|
+
drop(event: CdkDragDrop<any>): void;
|
|
43
|
+
sortTreeNodes(nodes: TreeNode[]): TreeNode[];
|
|
44
|
+
calculateTargetChildIndex(event: CdkDragDrop<any>, parentChildren: any[], previousChildIndex: number): number;
|
|
45
|
+
returnStyleRow(col: any, rowNode: any): string;
|
|
46
|
+
alignColunasHeader(col: any): string;
|
|
47
|
+
centralizarColunas(col: any): string;
|
|
48
|
+
alignColunas(col: any): string;
|
|
49
|
+
criarMenusModal(data: any): void;
|
|
50
|
+
exibirCampo(field: any, rowData: any): any;
|
|
51
|
+
validateActionPosition(rowNode: any): boolean;
|
|
52
|
+
doubleClick(e: any, rowData: any): void;
|
|
53
|
+
isDisabledCheckbox(rowData: any, rowNode: any): boolean;
|
|
54
|
+
onNodeSelected(event: any): void;
|
|
55
|
+
onNodeUnselected(event: any): void;
|
|
56
|
+
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
57
|
+
validateShowTemplate(rowNode: any, col: any): boolean;
|
|
58
|
+
getIcon(icon: string): string;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTreetableComponent, "kv-tree-table", never, { "config": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "gridLines": { "alias": "gridLines"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinks": { "alias": "pageLinks"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "treeTableDraggable": { "alias": "treeTableDraggable"; "required": false; }; "transferArrayItem": { "alias": "transferArrayItem"; "required": false; }; "ordenacao": { "alias": "ordenacao"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "textoEmptyMessage": { "alias": "textoEmptyMessage"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; "onNodeSelect": "onNodeSelect"; "onNodeUnselect": "onNodeUnselect"; "onDropItem": "onDropItem"; }, ["templates"], never, false, never>;
|
|
61
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-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.KvTreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvTreeViewComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TableConfig } from '../../api/components/table/table.config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WorkspaceComponent implements OnInit {
|
|
5
|
+
/**
|
|
6
|
+
* Nome do usuário logado
|
|
7
|
+
*/
|
|
8
|
+
nomeUsuario: string;
|
|
9
|
+
/**
|
|
10
|
+
* Lista de masters que o usuário tem acesso
|
|
11
|
+
*/
|
|
12
|
+
masters: any[];
|
|
13
|
+
/**
|
|
14
|
+
* Master selecionada pelo usuário
|
|
15
|
+
*/
|
|
16
|
+
masterSelecionada: any;
|
|
17
|
+
/**
|
|
18
|
+
* Selecionar apenas master
|
|
19
|
+
*/
|
|
20
|
+
somenteMaster: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Evento de master selecionada
|
|
23
|
+
*/
|
|
24
|
+
onGetMasterSelecionada: EventEmitter<any>;
|
|
25
|
+
/**
|
|
26
|
+
* Evento de empresa selecionada
|
|
27
|
+
*/
|
|
28
|
+
onGetEmpresaSelecionada: EventEmitter<any>;
|
|
29
|
+
empresas: any[];
|
|
30
|
+
empresaSelecionada: any;
|
|
31
|
+
totalRecordsEmpresa: number;
|
|
32
|
+
showPaginatorEmpresa: boolean;
|
|
33
|
+
visivel: boolean;
|
|
34
|
+
txtPesquisa: string;
|
|
35
|
+
imgPersonagens: string;
|
|
36
|
+
imgLogoKeevo: string;
|
|
37
|
+
styleBackground: string;
|
|
38
|
+
imgLogoKeevoCenter: string;
|
|
39
|
+
dataSourceMaster: any;
|
|
40
|
+
selectedItemMaster: any;
|
|
41
|
+
selectedItemsLoteMaster: any;
|
|
42
|
+
tableConfigMaster: TableConfig;
|
|
43
|
+
tableSizeMaster: number;
|
|
44
|
+
dataSourceEmpresa: any;
|
|
45
|
+
selectedItemEmpresa: any;
|
|
46
|
+
selectedItemsLoteEmpresa: any;
|
|
47
|
+
tableConfigEmpresa: TableConfig;
|
|
48
|
+
tableSizeEmpresa: number;
|
|
49
|
+
constructor();
|
|
50
|
+
activeItemEmpresa(e: any): void;
|
|
51
|
+
activeItemMaster(e: any): void;
|
|
52
|
+
columnConfigTableMaster(): void;
|
|
53
|
+
columnConfigTableEmpresa(): void;
|
|
54
|
+
doubleClickEmpresa(e: any): void;
|
|
55
|
+
doubleClickMaster(e: any): void;
|
|
56
|
+
filtrarEmpresa(event: any): void;
|
|
57
|
+
ngOnInit(): void;
|
|
58
|
+
selecionarEmpresa(empresa: any): void;
|
|
59
|
+
selecionarMaster(master: any): void;
|
|
60
|
+
verificaEmpresaUnica(): void;
|
|
61
|
+
verificaMasterUnica(): void;
|
|
62
|
+
voltar(): void;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceComponent, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceComponent, "kv-workspace", never, { "nomeUsuario": { "alias": "nomeUsuario"; "required": false; }; "masters": { "alias": "masters"; "required": false; }; "masterSelecionada": { "alias": "masterSelecionada"; "required": false; }; "somenteMaster": { "alias": "somenteMaster"; "required": false; }; }, { "onGetMasterSelecionada": "onGetMasterSelecionada"; "onGetEmpresaSelecionada": "onGetEmpresaSelecionada"; }, never, never, false, never>;
|
|
65
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-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 "../kv-buttons/kv-button.module";
|
|
9
|
+
import * as i8 from "../kv-table/kv-table.module";
|
|
10
|
+
export declare class KvWorkspaceModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvWorkspaceModule, never>;
|
|
12
|
+
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 i8.KvTableModule], [typeof i1.WorkspaceComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvWorkspaceModule>;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,30 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "keevo-components",
|
|
3
|
-
"version": "1.8.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^17.3.8",
|
|
6
|
-
"@angular/core": "^17.3.8",
|
|
7
|
-
"@types/d3": "^7.4.3",
|
|
8
|
-
"@types/d3-org-chart": "^3.1.2",
|
|
9
|
-
"chart.js": "^4.4.2",
|
|
10
|
-
"d3": "^7.9.0",
|
|
11
|
-
"d3-org-chart": "^3.1.1",
|
|
12
|
-
"ngx-loading": "^17.0.0",
|
|
13
|
-
"primeflex": "^3.3.1",
|
|
14
|
-
"primeicons": "^7.0.0",
|
|
15
|
-
"primeng": "^17.17.0",
|
|
16
|
-
"quill": "^2.0.2"
|
|
17
|
-
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"tslib": "^2.3.0"
|
|
20
|
-
},
|
|
21
|
-
"sideEffects": false,
|
|
22
|
-
"description": "Componentes utilizados no frontend dos sistemas da Keevo Software.",
|
|
23
|
-
"author": {
|
|
24
|
-
"name": "Rafael",
|
|
25
|
-
"url": "https://github.com/rafaelalvesmds"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"keevo components library"
|
|
29
|
-
]
|
|
30
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "keevo-components",
|
|
3
|
+
"version": "1.8.129",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^17.3.8",
|
|
6
|
+
"@angular/core": "^17.3.8",
|
|
7
|
+
"@types/d3": "^7.4.3",
|
|
8
|
+
"@types/d3-org-chart": "^3.1.2",
|
|
9
|
+
"chart.js": "^4.4.2",
|
|
10
|
+
"d3": "^7.9.0",
|
|
11
|
+
"d3-org-chart": "^3.1.1",
|
|
12
|
+
"ngx-loading": "^17.0.0",
|
|
13
|
+
"primeflex": "^3.3.1",
|
|
14
|
+
"primeicons": "^7.0.0",
|
|
15
|
+
"primeng": "^17.17.0",
|
|
16
|
+
"quill": "^2.0.2"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"tslib": "^2.3.0"
|
|
20
|
+
},
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"description": "Componentes utilizados no frontend dos sistemas da Keevo Software.",
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Rafael",
|
|
25
|
+
"url": "https://github.com/rafaelalvesmds"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"keevo components library"
|
|
29
|
+
],
|
|
30
|
+
"module": "fesm2022/keevo-components.mjs",
|
|
31
|
+
"typings": "index.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
"./package.json": {
|
|
34
|
+
"default": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./index.d.ts",
|
|
38
|
+
"esm2022": "./esm2022/keevo-components.mjs",
|
|
39
|
+
"esm": "./esm2022/keevo-components.mjs",
|
|
40
|
+
"default": "./fesm2022/keevo-components.mjs"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|