keevo-components 1.8.127 → 1.8.130
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 +494 -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 +6273 -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 +111 -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,152 @@
|
|
|
1
|
+
import { MenuItem, MenuItemCommandEvent } from "primeng/api/menuitem";
|
|
2
|
+
import { QueryParamsHandling } from "@angular/router";
|
|
3
|
+
import { TooltipOptions } from "primeng/api";
|
|
4
|
+
export interface KvMenuItem {
|
|
5
|
+
/**
|
|
6
|
+
* Texto do item.
|
|
7
|
+
*/
|
|
8
|
+
label?: ValueOrFn<string | undefined>;
|
|
9
|
+
/**
|
|
10
|
+
* Ícone do item.
|
|
11
|
+
*/
|
|
12
|
+
icon?: ValueOrFn<string | undefined>;
|
|
13
|
+
/**
|
|
14
|
+
* Callback a ser executada quando o item é clicado.
|
|
15
|
+
*/
|
|
16
|
+
command?: (event: MenuItemCommandEvent) => void;
|
|
17
|
+
/**
|
|
18
|
+
* Link externo para navegar quando o item é clicado.
|
|
19
|
+
*/
|
|
20
|
+
url?: ValueOrFn<string | undefined>;
|
|
21
|
+
/**
|
|
22
|
+
* Array de filhos do item.
|
|
23
|
+
*/
|
|
24
|
+
items?: ValueOrFn<KvMenuItem[] | undefined>;
|
|
25
|
+
/**
|
|
26
|
+
* Visibilidade do submenu.
|
|
27
|
+
*/
|
|
28
|
+
expanded?: ValueOrFn<boolean | undefined>;
|
|
29
|
+
/**
|
|
30
|
+
* Quando verdadeiro, desabilita o item.
|
|
31
|
+
*/
|
|
32
|
+
disabled?: ValueOrFn<boolean | undefined>;
|
|
33
|
+
/**
|
|
34
|
+
* Define se o elemento da dom do item é ou não criado.
|
|
35
|
+
*/
|
|
36
|
+
visible?: ValueOrFn<boolean | undefined>;
|
|
37
|
+
/**
|
|
38
|
+
* Specifies where to open the linked document.
|
|
39
|
+
*/
|
|
40
|
+
target?: ValueOrFn<string | undefined>;
|
|
41
|
+
/**
|
|
42
|
+
* Whether to escape the label or not. Set to false to display html content.
|
|
43
|
+
*/
|
|
44
|
+
escape?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Configuration for active router link.
|
|
47
|
+
*/
|
|
48
|
+
routerLinkActiveOptions?: ValueOrFn<any | undefined>;
|
|
49
|
+
/**
|
|
50
|
+
* Defines the item as a separator.
|
|
51
|
+
*/
|
|
52
|
+
separator?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Value of the badge.
|
|
55
|
+
*/
|
|
56
|
+
badge?: ValueOrFn<string | undefined>;
|
|
57
|
+
/**
|
|
58
|
+
* Tooltip of the item.
|
|
59
|
+
*/
|
|
60
|
+
tooltip?: ValueOrFn<string | undefined>;
|
|
61
|
+
/**
|
|
62
|
+
* Position of the tooltip item.
|
|
63
|
+
*/
|
|
64
|
+
tooltipPosition?: ValueOrFn<string | undefined>;
|
|
65
|
+
/**
|
|
66
|
+
* Style class of the badge.
|
|
67
|
+
*/
|
|
68
|
+
badgeStyleClass?: ValueOrFn<string | undefined>;
|
|
69
|
+
/**
|
|
70
|
+
* Inline style of the menuitem.
|
|
71
|
+
*/
|
|
72
|
+
style?: ValueOrFn<{
|
|
73
|
+
[klass: string]: any;
|
|
74
|
+
} | null | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* Style class of the menuitem.
|
|
77
|
+
*/
|
|
78
|
+
styleClass?: ValueOrFn<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* Tooltip text of the item.
|
|
81
|
+
*/
|
|
82
|
+
title?: ValueOrFn<string | undefined>;
|
|
83
|
+
/**
|
|
84
|
+
* Identifier of the element.
|
|
85
|
+
*/
|
|
86
|
+
id?: ValueOrFn<string | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* Value of HTML data-* attribute.
|
|
89
|
+
*/
|
|
90
|
+
automationId?: ValueOrFn<any | undefined>;
|
|
91
|
+
/**
|
|
92
|
+
* Specifies tab order of the item.
|
|
93
|
+
*/
|
|
94
|
+
tabindex?: ValueOrFn<string | undefined>;
|
|
95
|
+
/**
|
|
96
|
+
* RouterLink definition for internal navigation.
|
|
97
|
+
*/
|
|
98
|
+
routerLink?: ValueOrFn<any | undefined>;
|
|
99
|
+
/**
|
|
100
|
+
* Query parameters for internal navigation via routerLink.
|
|
101
|
+
*/
|
|
102
|
+
queryParams?: ValueOrFn<{
|
|
103
|
+
[k: string]: any;
|
|
104
|
+
} | undefined>;
|
|
105
|
+
/**
|
|
106
|
+
* Sets the hash fragment for the URL.
|
|
107
|
+
*/
|
|
108
|
+
fragment?: ValueOrFn<string | undefined>;
|
|
109
|
+
/**
|
|
110
|
+
* How to handle query parameters in the router link for the next navigation. One of:
|
|
111
|
+
merge : Merge new with current parameters.
|
|
112
|
+
preserve : Preserve current parameters.k.
|
|
113
|
+
*/
|
|
114
|
+
queryParamsHandling?: ValueOrFn<QueryParamsHandling | undefined>;
|
|
115
|
+
/**
|
|
116
|
+
* When true, preserves the URL fragment for the next navigation.
|
|
117
|
+
*/
|
|
118
|
+
preserveFragment?: ValueOrFn<boolean | undefined>;
|
|
119
|
+
/**
|
|
120
|
+
* When true, navigates without pushing a new state into history.
|
|
121
|
+
*/
|
|
122
|
+
skipLocationChange?: ValueOrFn<boolean | undefined>;
|
|
123
|
+
/**
|
|
124
|
+
* When true, navigates while replacing the current state in history.
|
|
125
|
+
*/
|
|
126
|
+
replaceUrl?: ValueOrFn<boolean | undefined>;
|
|
127
|
+
/**
|
|
128
|
+
* Inline style of the item's icon.
|
|
129
|
+
*/
|
|
130
|
+
iconStyle?: ValueOrFn<{
|
|
131
|
+
[klass: string]: any;
|
|
132
|
+
} | null | undefined>;
|
|
133
|
+
/**
|
|
134
|
+
* Class of the item's icon.
|
|
135
|
+
*/
|
|
136
|
+
iconClass?: ValueOrFn<string | undefined>;
|
|
137
|
+
/**
|
|
138
|
+
* Developer-defined state that can be passed to any navigation.
|
|
139
|
+
* @see {MenuItemState}
|
|
140
|
+
*/
|
|
141
|
+
state?: ValueOrFn<{
|
|
142
|
+
[k: string]: any;
|
|
143
|
+
} | undefined>;
|
|
144
|
+
/**
|
|
145
|
+
* Options of the item's tooltip.
|
|
146
|
+
* @see {TooltipOptions}
|
|
147
|
+
*/
|
|
148
|
+
tooltipOptions?: ValueOrFn<TooltipOptions | undefined>;
|
|
149
|
+
}
|
|
150
|
+
export type ValueOrFn<T> = T | ((data: any) => T);
|
|
151
|
+
export declare function getOrExecute<T>(vof: ValueOrFn<T>, data: any): T;
|
|
152
|
+
export declare function mapToMenuItem(kvMenuItem: KvMenuItem, data: any): MenuItem;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface TableConfigColumn {
|
|
2
|
+
position?: number;
|
|
3
|
+
field: string;
|
|
4
|
+
header: string;
|
|
5
|
+
headerTooltip?: string;
|
|
6
|
+
fieldType?: string;
|
|
7
|
+
onlyReadField?: boolean;
|
|
8
|
+
width?: string;
|
|
9
|
+
pipe?: 'date' | 'dateMonthYear' | 'decimal' | 'cpfcnpj' | 'telefone' | 'codigofipe' | 'money' | 'percentage' | 'capitalize';
|
|
10
|
+
sortable: boolean;
|
|
11
|
+
grouped?: boolean;
|
|
12
|
+
centralize?: boolean;
|
|
13
|
+
expiredDate?: boolean;
|
|
14
|
+
icon?: string;
|
|
15
|
+
iconField?: boolean;
|
|
16
|
+
indIconMaterial?: boolean;
|
|
17
|
+
checked?: boolean;
|
|
18
|
+
hideColumn?: boolean;
|
|
19
|
+
fixedColumn?: boolean;
|
|
20
|
+
template?: any;
|
|
21
|
+
align?: string;
|
|
22
|
+
subtitle?: string;
|
|
23
|
+
boolean?: boolean;
|
|
24
|
+
templateOnly?: 'pai' | 'filho';
|
|
25
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { TableConfigColumn } from './table.config.column';
|
|
2
|
+
import { KvMenuItem, ValueOrFn } from './kv-menuitem';
|
|
3
|
+
import Severity from '../../types/severity';
|
|
4
|
+
export interface TableConfig {
|
|
5
|
+
actions?: KvMenuItem[];
|
|
6
|
+
actionsLote?: ActionsLoteItem[];
|
|
7
|
+
columns: TableConfigColumn[];
|
|
8
|
+
dataKey?: string;
|
|
9
|
+
rows?: any;
|
|
10
|
+
title?: string;
|
|
11
|
+
subtitle?: string;
|
|
12
|
+
lazy: boolean;
|
|
13
|
+
fieldGroup?: string;
|
|
14
|
+
enableCation?: boolean;
|
|
15
|
+
enableFilter?: boolean;
|
|
16
|
+
enableSelect?: boolean;
|
|
17
|
+
enableToggleNodes?: boolean;
|
|
18
|
+
disableControlCheckboxFunction?: (rowData: any, rowNode?: any) => boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface ActionsLoteItem {
|
|
21
|
+
/**
|
|
22
|
+
* Ignorado por enquanto
|
|
23
|
+
*/
|
|
24
|
+
severity?: Severity;
|
|
25
|
+
icon: string;
|
|
26
|
+
showAcoesLote?: boolean;
|
|
27
|
+
tooltip?: ValueOrFn<string | undefined>;
|
|
28
|
+
disabled?: ValueOrFn<boolean | undefined>;
|
|
29
|
+
visible?: ValueOrFn<boolean | undefined>;
|
|
30
|
+
command?: () => void;
|
|
31
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TableConfig } from "./table.config";
|
|
2
|
+
import { TableEditConfigColumn } from "./tableedit.config.column";
|
|
3
|
+
export default interface TableEditConfig extends TableConfig {
|
|
4
|
+
columns: TableEditConfigColumn[];
|
|
5
|
+
dataKey: string;
|
|
6
|
+
reorderableColumns?: boolean;
|
|
7
|
+
disableEditRowFunction?: (rowData: any, rowNode?: any) => boolean;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import FieldDropDownControl from "./table-dropdown-control";
|
|
2
|
+
import { TableConfigColumn } from "./table.config.column";
|
|
3
|
+
export interface TableEditConfigColumn extends TableConfigColumn {
|
|
4
|
+
required?: boolean;
|
|
5
|
+
validator?: any;
|
|
6
|
+
mask?: string;
|
|
7
|
+
fieldControlType?: 'text' | 'switch' | 'dropdown' | 'multiselect' | 'number' | 'calendar' | 'mask';
|
|
8
|
+
fieldDropDownControl?: FieldDropDownControl;
|
|
9
|
+
disableEditRowCellFunction?: (rowData: any, rowNode?: any) => boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { TableConfigColumn } from '../table/table.config.column';
|
|
2
|
+
import { KvMenuItem, ValueOrFn } from '../table/kv-menuitem';
|
|
3
|
+
import Severity from '../../types/severity';
|
|
4
|
+
import { ActionsLoteItem } from '../table/table.config';
|
|
5
|
+
export interface TreeTableConfig {
|
|
6
|
+
actions?: KvMenuItem[];
|
|
7
|
+
actionsLote?: ActionsLoteItem[];
|
|
8
|
+
actionsPai?: ActionsPaiItem[];
|
|
9
|
+
columns: TableConfigColumn[];
|
|
10
|
+
dataKey?: string;
|
|
11
|
+
rows?: any;
|
|
12
|
+
title?: string;
|
|
13
|
+
subtitle?: string;
|
|
14
|
+
lazy: boolean;
|
|
15
|
+
fieldGroup?: string;
|
|
16
|
+
enableCation?: boolean;
|
|
17
|
+
enableFilter?: boolean;
|
|
18
|
+
enableSelect?: boolean;
|
|
19
|
+
enableToggleNodes?: boolean;
|
|
20
|
+
disableControlCheckboxFunction?: (rowData: any, rowNode?: any) => boolean;
|
|
21
|
+
}
|
|
22
|
+
interface ActionsPaiItem {
|
|
23
|
+
severity?: Severity;
|
|
24
|
+
visible?: ValueOrFn<boolean | undefined>;
|
|
25
|
+
command: (event: MouseEvent) => void;
|
|
26
|
+
icon: string;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TemplateDirective {
|
|
4
|
+
template: TemplateRef<any>;
|
|
5
|
+
type: string;
|
|
6
|
+
name: string;
|
|
7
|
+
constructor(template: TemplateRef<any>);
|
|
8
|
+
getType(): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateDirective, "[cTemplate]", never, { "type": { "alias": "type"; "required": false; }; "name": { "alias": "cTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ValidatorFn } from '@angular/forms';
|
|
2
|
+
export declare class KeevoValidators {
|
|
3
|
+
static required(erroMessage?: string): ValidatorFn;
|
|
4
|
+
static dateGreaterThan(startControlName: string, erroMessage?: string): ValidatorFn;
|
|
5
|
+
static min(min: number, erroMessage?: string): ValidatorFn;
|
|
6
|
+
static max(min: number, erroMessage?: string): ValidatorFn;
|
|
7
|
+
static email(erroMessage?: string): ValidatorFn;
|
|
8
|
+
static maxLengthArray(max: number): ValidatorFn;
|
|
9
|
+
static maxLength(max: number, erroMessage?: string): ValidatorFn;
|
|
10
|
+
static nome(): ValidatorFn;
|
|
11
|
+
static cpfCnpjValido(erroMessage?: string): ValidatorFn;
|
|
12
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "primeng/accordion";
|
|
3
|
+
import * as i2 from "primeng/autofocus";
|
|
4
|
+
import * as i3 from "primeng/badge";
|
|
5
|
+
import * as i4 from "primeng/breadcrumb";
|
|
6
|
+
import * as i5 from "primeng/button";
|
|
7
|
+
import * as i6 from "primeng/calendar";
|
|
8
|
+
import * as i7 from "primeng/card";
|
|
9
|
+
import * as i8 from "primeng/carousel";
|
|
10
|
+
import * as i9 from "primeng/chart";
|
|
11
|
+
import * as i10 from "primeng/checkbox";
|
|
12
|
+
import * as i11 from "primeng/chip";
|
|
13
|
+
import * as i12 from "primeng/confirmdialog";
|
|
14
|
+
import * as i13 from "primeng/contextmenu";
|
|
15
|
+
import * as i14 from "primeng/dataview";
|
|
16
|
+
import * as i15 from "primeng/dialog";
|
|
17
|
+
import * as i16 from "primeng/divider";
|
|
18
|
+
import * as i17 from "primeng/dropdown";
|
|
19
|
+
import * as i18 from "primeng/dynamicdialog";
|
|
20
|
+
import * as i19 from "primeng/editor";
|
|
21
|
+
import * as i20 from "primeng/fieldset";
|
|
22
|
+
import * as i21 from "primeng/fileupload";
|
|
23
|
+
import * as i22 from "primeng/image";
|
|
24
|
+
import * as i23 from "primeng/inputmask";
|
|
25
|
+
import * as i24 from "primeng/inputnumber";
|
|
26
|
+
import * as i25 from "primeng/inputswitch";
|
|
27
|
+
import * as i26 from "primeng/inputtextarea";
|
|
28
|
+
import * as i27 from "primeng/inputtext";
|
|
29
|
+
import * as i28 from "primeng/knob";
|
|
30
|
+
import * as i29 from "primeng/menu";
|
|
31
|
+
import * as i30 from "primeng/message";
|
|
32
|
+
import * as i31 from "primeng/messages";
|
|
33
|
+
import * as i32 from "primeng/multiselect";
|
|
34
|
+
import * as i33 from "primeng/overlay";
|
|
35
|
+
import * as i34 from "primeng/overlaypanel";
|
|
36
|
+
import * as i35 from "primeng/panelmenu";
|
|
37
|
+
import * as i36 from "primeng/panel";
|
|
38
|
+
import * as i37 from "primeng/password";
|
|
39
|
+
import * as i38 from "primeng/picklist";
|
|
40
|
+
import * as i39 from "primeng/progressbar";
|
|
41
|
+
import * as i40 from "primeng/radiobutton";
|
|
42
|
+
import * as i41 from "primeng/rating";
|
|
43
|
+
import * as i42 from "primeng/ripple";
|
|
44
|
+
import * as i43 from "primeng/sidebar";
|
|
45
|
+
import * as i44 from "primeng/skeleton";
|
|
46
|
+
import * as i45 from "primeng/speeddial";
|
|
47
|
+
import * as i46 from "primeng/splitbutton";
|
|
48
|
+
import * as i47 from "primeng/steps";
|
|
49
|
+
import * as i48 from "primeng/styleclass";
|
|
50
|
+
import * as i49 from "primeng/table";
|
|
51
|
+
import * as i50 from "primeng/tabview";
|
|
52
|
+
import * as i51 from "primeng/tag";
|
|
53
|
+
import * as i52 from "primeng/toast";
|
|
54
|
+
import * as i53 from "primeng/toolbar";
|
|
55
|
+
import * as i54 from "primeng/tooltip";
|
|
56
|
+
import * as i55 from "primeng/tree";
|
|
57
|
+
import * as i56 from "primeng/treetable";
|
|
58
|
+
import * as i57 from "primeng/selectbutton";
|
|
59
|
+
import * as i58 from "primeng/stepper";
|
|
60
|
+
export declare class PrimeNgModule {
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimeNgModule, never>;
|
|
62
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimeNgModule, never, never, [typeof i1.AccordionModule, typeof i2.AutoFocusModule, typeof i3.BadgeModule, typeof i4.BreadcrumbModule, typeof i5.ButtonModule, typeof i6.CalendarModule, typeof i7.CardModule, typeof i8.CarouselModule, typeof i9.ChartModule, typeof i10.CheckboxModule, typeof i11.ChipModule, typeof i12.ConfirmDialogModule, typeof i13.ContextMenuModule, typeof i14.DataViewModule, typeof i15.DialogModule, typeof i16.DividerModule, typeof i17.DropdownModule, typeof i18.DynamicDialogModule, typeof i19.EditorModule, typeof i20.FieldsetModule, typeof i21.FileUploadModule, typeof i22.ImageModule, typeof i23.InputMaskModule, typeof i24.InputNumberModule, typeof i25.InputSwitchModule, typeof i26.InputTextareaModule, typeof i27.InputTextModule, typeof i28.KnobModule, typeof i29.MenuModule, typeof i30.MessageModule, typeof i31.MessagesModule, typeof i32.MultiSelectModule, typeof i33.OverlayModule, typeof i34.OverlayPanelModule, typeof i34.OverlayPanelModule, typeof i35.PanelMenuModule, typeof i36.PanelModule, typeof i37.PasswordModule, typeof i38.PickListModule, typeof i39.ProgressBarModule, typeof i40.RadioButtonModule, typeof i41.RatingModule, typeof i42.RippleModule, typeof i43.SidebarModule, typeof i44.SkeletonModule, typeof i45.SpeedDialModule, typeof i46.SplitButtonModule, typeof i47.StepsModule, typeof i48.StyleClassModule, typeof i49.TableModule, typeof i50.TabViewModule, typeof i51.TagModule, typeof i52.ToastModule, typeof i53.ToolbarModule, typeof i54.TooltipModule, typeof i55.TreeModule, typeof i56.TreeTableModule, typeof i57.SelectButtonModule, typeof i58.StepperModule]>;
|
|
63
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PrimeNgModule>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CapitalizePipe implements PipeTransform {
|
|
4
|
+
private prepositions;
|
|
5
|
+
transform(value: string): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "capitalize", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CpfCnpjPipe implements PipeTransform {
|
|
4
|
+
transform(value: string): string | null;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CpfCnpjPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CpfCnpjPipe, "cpfCnpj", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MaskPipe implements PipeTransform {
|
|
4
|
+
transform(value: string, mask: string): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MaskPipe, "mask", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./cpfcnpj.pipe";
|
|
3
|
+
import * as i2 from "./mask.pipe";
|
|
4
|
+
import * as i3 from "./telefone.pipe";
|
|
5
|
+
import * as i4 from "./capitalize.pipe";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
export declare class PipesModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.CpfCnpjPipe, typeof i2.MaskPipe, typeof i3.TelefonePipe, typeof i4.CapitalizePipe], [typeof i5.CommonModule], [typeof i1.CpfCnpjPipe, typeof i2.MaskPipe, typeof i3.TelefonePipe, typeof i4.CapitalizePipe]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TelefonePipe implements PipeTransform {
|
|
4
|
+
transform(tel: string): string | null;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelefonePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TelefonePipe, "Telefone", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BaseApiService {
|
|
5
|
+
private http;
|
|
6
|
+
constructor(http: HttpClient);
|
|
7
|
+
delete(baseUrl: string, rota: string): Observable<Object>;
|
|
8
|
+
deleteAllBody<T>(baseUrl: string, rota: string, body: T): Observable<T[]>;
|
|
9
|
+
deleteAllHeaders<T>(baseUrl: string, rota: string, headers: HttpHeaders): Observable<T>;
|
|
10
|
+
get<T>(baseUrl: string, rota: string): Observable<T>;
|
|
11
|
+
getHeaders<T>(baseUrl: string, rota: string, headers: HttpHeaders): Observable<T>;
|
|
12
|
+
getAll<T>(baseUrl: string, rota: string): Observable<T[]>;
|
|
13
|
+
getAllHeaders<T>(baseUrl: string, rota: string, headers: HttpHeaders): Observable<T[]>;
|
|
14
|
+
getAllParams<T>(baseUrl: string, rota: string, params?: HttpParams): Observable<T[]>;
|
|
15
|
+
getArquivo(baseUrl: string, rota: string, id?: string, paramCabecalho?: {
|
|
16
|
+
headers: HttpHeaders;
|
|
17
|
+
}): Observable<any>;
|
|
18
|
+
getArquivos(baseUrl: string, rota: string, paramCabecalho?: {
|
|
19
|
+
headers: HttpHeaders;
|
|
20
|
+
}): Observable<any>;
|
|
21
|
+
post<T>(baseUrl: string, rota: string, data?: T): Observable<T>;
|
|
22
|
+
put<T>(baseUrl: string, rota: string, data: T): Observable<T>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseApiService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseApiService>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbsService {
|
|
4
|
+
private router;
|
|
5
|
+
private activatedRoute;
|
|
6
|
+
private breadcrumbsSubject;
|
|
7
|
+
breadcrumbs$: import("rxjs").Observable<{
|
|
8
|
+
label: string;
|
|
9
|
+
routerLink: string;
|
|
10
|
+
}[]>;
|
|
11
|
+
constructor(router: Router, activatedRoute: ActivatedRoute);
|
|
12
|
+
private parseRoute;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbsService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Injector } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ComponentService {
|
|
5
|
+
readonly injector: Injector;
|
|
6
|
+
changeDetectorRef: ChangeDetectorRef;
|
|
7
|
+
constructor(injector: Injector, changeDetectorRef: ChangeDetectorRef);
|
|
8
|
+
getFormControl(): FormControl<any> | undefined;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FormControl } from "@angular/forms";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DocsService {
|
|
4
|
+
static validaCpfCnpj(cpfcnpj: string): boolean;
|
|
5
|
+
static validaCpf(cpf: string): boolean;
|
|
6
|
+
static validaCnpj(cnpj: string): boolean;
|
|
7
|
+
static validatorCpfCnpj(fc: FormControl): false | {
|
|
8
|
+
cpfCnpj: boolean;
|
|
9
|
+
};
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocsService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DocsService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { FormGroup, ValidatorFn } from '@angular/forms';
|
|
3
|
+
import { DialogService } from 'primeng/dynamicdialog';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface paramsDialog {
|
|
6
|
+
id?: any;
|
|
7
|
+
closable?: boolean;
|
|
8
|
+
maximizable?: boolean;
|
|
9
|
+
popup?: boolean;
|
|
10
|
+
height?: string;
|
|
11
|
+
width?: string;
|
|
12
|
+
styleClass?: string;
|
|
13
|
+
header?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class FormService {
|
|
16
|
+
static disableControl(formGroup: FormGroup, controName: string): void;
|
|
17
|
+
static disableAndClearControl(formGroup: FormGroup, controName: string, value?: any): void;
|
|
18
|
+
static enableControl(formGroup: FormGroup, controName: string): void;
|
|
19
|
+
static getFormValue<T>(formGroup: FormGroup, controName: string): T;
|
|
20
|
+
static hasControlError(formGroup: FormGroup, control: string, errorCode?: string): boolean;
|
|
21
|
+
static invalidForm(formGroup: FormGroup, notification?: any): void;
|
|
22
|
+
static openDialog(dialogService: DialogService, componentType: Type<any>, callBackFunction: Function, paramsDialog?: paramsDialog): void;
|
|
23
|
+
static setControlValue(formGroup: FormGroup, controName: string, value: any): void;
|
|
24
|
+
static setValidators(formGroup: FormGroup, controName: string, validators: ValidatorFn | ValidatorFn[] | null): void;
|
|
25
|
+
static clearValidators(formGroup: FormGroup, controName: string): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormService>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ImagensService {
|
|
3
|
+
static getPersonagensWorkSpace(): string;
|
|
4
|
+
static getLogoKeevo(): string;
|
|
5
|
+
static getBackgroundWorkSpace(): string;
|
|
6
|
+
static getLogoKeevoCenter(): string;
|
|
7
|
+
userDefaultImage(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImagensService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ImagensService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ConfirmationService, MessageService } from "primeng/api";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface QuestionConfig {
|
|
4
|
+
type?: 'question' | 'alert';
|
|
5
|
+
message: string;
|
|
6
|
+
accept?: Function;
|
|
7
|
+
reject?: Function;
|
|
8
|
+
}
|
|
9
|
+
export interface DialogConfig {
|
|
10
|
+
type: 'info' | 'alert' | 'error';
|
|
11
|
+
message: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class NotificationService {
|
|
14
|
+
private readonly confirmationService;
|
|
15
|
+
private readonly messageService;
|
|
16
|
+
constructor(confirmationService: ConfirmationService, messageService: MessageService);
|
|
17
|
+
question(config: QuestionConfig): void;
|
|
18
|
+
dialog(config: DialogConfig): void;
|
|
19
|
+
toastSuccess(message: string, time?: number): void;
|
|
20
|
+
toastInfo(message: string, time?: number): void;
|
|
21
|
+
toastWarn(message: string, time?: number): void;
|
|
22
|
+
toastError(message: string, time?: number): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ObjectService {
|
|
3
|
+
static filterObject(array: any, propertyName: string, value: any): any;
|
|
4
|
+
static findObject(array: any, propertyName: string, value: any): any;
|
|
5
|
+
static getProperty<T>(obj: T, propertyName: string): T[keyof T];
|
|
6
|
+
static objCompare(obj1: any, obj2: any): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectService>;
|
|
9
|
+
}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
type Severity = "primary" | "secondary" | "success" | "info" | "warning" | "help" | "danger";
|
|
2
|
-
|
|
3
|
-
export default Severity;
|
|
1
|
+
type Severity = "primary" | "secondary" | "success" | "info" | "warning" | "help" | "danger";
|
|
2
|
+
export default Severity;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-avatar/kv-avatar.module";
|
|
3
|
+
import * as i2 from "./kv-buttons/kv-button.module";
|
|
4
|
+
import * as i3 from "./kv-carousel/kv-carousel.module";
|
|
5
|
+
import * as i4 from "./kv-chart/kv-chart.module";
|
|
6
|
+
import * as i5 from "./kv-inputs/kv-inputs.module";
|
|
7
|
+
import * as i6 from "./kv-loader/kv-loader.module";
|
|
8
|
+
import * as i7 from "./kv-login/kv-login.module";
|
|
9
|
+
import * as i8 from "./kv-menu/kv-menu.module";
|
|
10
|
+
import * as i9 from "./kv-modal/kv-modal.module";
|
|
11
|
+
import * as i10 from "./kv-orgchart/kv-orgchart.module";
|
|
12
|
+
import * as i11 from "./kv-page-form/kv-page-form.module";
|
|
13
|
+
import * as i12 from "./kv-pick-list/kv-pick-list.module";
|
|
14
|
+
import * as i13 from "./kv-progress-bar/kv-progress-bar.module";
|
|
15
|
+
import * as i14 from "./kv-table/kv-table.module";
|
|
16
|
+
import * as i15 from "./kv-tree-table/kv-tree-table.module";
|
|
17
|
+
import * as i16 from "./kv-tree-view/kv-tree-view.module";
|
|
18
|
+
import * as i17 from "./kv-workspace/kv-workspace.module";
|
|
19
|
+
import * as i18 from "./kv-stepper/kv-stepper.module";
|
|
20
|
+
import * as i19 from "./kv-image-upload/kv-image-upload.module";
|
|
21
|
+
import * as i20 from "./kv-table-edit/kv-table-edit.module";
|
|
22
|
+
export declare class KeevoComponentsModule {
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvCarouselModule, typeof i4.KvChartModule, typeof i5.KvInputsModule, typeof i6.KvLoaderModule, typeof i7.KvLoginModule, typeof i8.KvMenuModule, typeof i9.KvModalModule, typeof i10.KvOrgchartModule, typeof i11.KvPageFormModule, typeof i12.KvPickListModule, typeof i13.KvProgressBarModule, typeof i14.KvTableModule, typeof i15.KvTreetableModule, typeof i16.KvtreeViewModule, typeof i17.KvWorkspaceModule, typeof i18.KvStepperModule, typeof i19.KvImageUploadModule], [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvCarouselModule, typeof i4.KvChartModule, typeof i5.KvInputsModule, typeof i6.KvLoaderModule, typeof i7.KvLoginModule, typeof i8.KvMenuModule, typeof i9.KvModalModule, typeof i10.KvOrgchartModule, typeof i11.KvPageFormModule, typeof i12.KvPickListModule, typeof i13.KvProgressBarModule, typeof i20.KvTableEditModule, typeof i14.KvTableModule, typeof i15.KvTreetableModule, typeof i16.KvtreeViewModule, typeof i17.KvWorkspaceModule, typeof i18.KvStepperModule, typeof i19.KvImageUploadModule]>;
|
|
25
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ImagensService } from '../../api/services/imagens.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KvAvatarComponent {
|
|
5
|
+
imageService: ImagensService;
|
|
6
|
+
imageUrl: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
width: number;
|
|
9
|
+
height: number;
|
|
10
|
+
imageUrlChange: EventEmitter<string>;
|
|
11
|
+
removerFotoEvent: EventEmitter<void>;
|
|
12
|
+
existeLogo: boolean;
|
|
13
|
+
btnAlterarFoto: boolean;
|
|
14
|
+
constructor(imageService: ImagensService);
|
|
15
|
+
getImageSrc(): string;
|
|
16
|
+
openFile(): void;
|
|
17
|
+
selectFotoSelecionada(event: any): void;
|
|
18
|
+
removerFoto(): void;
|
|
19
|
+
handleImageError(event: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvAvatarComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvAvatarComponent, "kv-avatar", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "btnAlterarFoto": { "alias": "btnAlterarFoto"; "required": false; }; }, { "imageUrlChange": "imageUrlChange"; "removerFotoEvent": "removerFotoEvent"; }, never, never, false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-avatar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "primeng/button";
|
|
5
|
+
import * as i4 from "primeng/fileupload";
|
|
6
|
+
export declare class KvAvatarModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvAvatarModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvAvatarModule, [typeof i1.KvAvatarComponent], [typeof i2.CommonModule, typeof i3.ButtonModule, typeof i4.FileUploadModule], [typeof i1.KvAvatarComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvAvatarModule>;
|
|
10
|
+
}
|