keevo-components 1.5.189 → 1.5.191
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -24
- package/ng-package.json +7 -0
- package/package.json +3 -22
- 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 +74 -0
- package/src/assets/images/keevo-logo.png +0 -0
- package/src/assets/images/logokeevo_2.png +0 -0
- package/src/index.ts +1 -0
- package/src/lib/api/base-components/base-component-button.ts +27 -0
- package/src/lib/api/base-components/base-component-chart.ts +105 -0
- package/src/lib/api/base-components/base-component-crud-form.ts +328 -0
- package/src/lib/api/base-components/base-component-crud-list.ts +111 -0
- package/src/lib/api/base-components/base-component-crud.ts +70 -0
- package/src/lib/api/base-components/base-component-dropdown-new.ts +112 -0
- package/src/lib/api/base-components/base-component-dropdown.ts +164 -0
- package/src/lib/api/base-components/base-component-input.ts +107 -0
- package/src/lib/api/base-components/base-component-multi-select.ts +136 -0
- package/src/lib/api/base-components/base-component.ts +46 -0
- package/src/lib/api/components/chart/chart.config.ts +12 -0
- package/src/lib/api/components/chart/chart.model.ts +9 -0
- package/src/lib/api/components/chart/orchart.config.ts +41 -0
- package/src/lib/api/components/chart/orchart.item.ts +33 -0
- package/src/lib/api/components/dropdown/filtro.combo.ts +4 -0
- package/src/lib/api/components/error/error.component.html +3 -0
- package/src/lib/api/components/error/error.component.scss +5 -0
- package/src/lib/api/components/error/error.component.ts +22 -0
- package/src/lib/api/components/error/kverror.module.ts +23 -0
- package/src/lib/api/components/table/action-item.ts +5 -0
- package/src/lib/api/components/table/kv-menuitem.ts +10 -0
- package/src/lib/api/components/table/table.config.column.ts +21 -0
- package/src/lib/api/components/table/table.config.ts +20 -0
- package/src/lib/api/components/table/table.paginate.ts +6 -0
- package/src/lib/api/helpers/component-providers.ts +16 -0
- package/src/lib/api/helpers/keevo-validators.ts +77 -0
- package/src/lib/api/helpers/translate-primeng.ts +25 -0
- package/src/lib/api/models/menu/menu.model.ts +10 -0
- package/{lib/api/models/menu/menucompleto.model.d.ts → src/lib/api/models/menu/menucompleto.model.ts} +7 -6
- package/src/lib/api/models/menu/sistemamenu.model.ts +8 -0
- package/src/lib/api/modules/primeng.module.ts +125 -0
- package/src/lib/api/services/base.api.service.ts +115 -0
- package/src/lib/api/services/component.service.ts +22 -0
- package/src/lib/api/services/form.service.ts +105 -0
- package/src/lib/api/services/imagens.service.ts +20 -0
- package/src/lib/api/services/notification.service.ts +82 -0
- package/src/lib/api/services/object.service.ts +20 -0
- package/src/lib/buttons/button-personalize/button-personalize.component.html +11 -0
- package/src/lib/buttons/button-personalize/button-personalize.component.scss +3 -0
- package/src/lib/buttons/button-personalize/button-personalize.component.ts +13 -0
- package/src/lib/buttons/button-popup/button-popup.component.html +12 -0
- package/src/lib/buttons/button-popup/button-popup.component.scss +13 -0
- package/src/lib/buttons/button-popup/button-popup.component.ts +30 -0
- package/src/lib/buttons/button-secondary/button-secondary.component.html +12 -0
- package/src/lib/buttons/button-secondary/button-secondary.component.scss +14 -0
- package/src/lib/buttons/button-secondary/button-secondary.component.ts +13 -0
- package/src/lib/buttons/button-success/button-success.component.html +11 -0
- package/src/lib/buttons/button-success/button-success.component.scss +13 -0
- package/src/lib/buttons/button-success/button-success.component.ts +13 -0
- package/src/lib/buttons/kvbutton.module.ts +25 -0
- package/src/lib/chart/chart.component.html +38 -0
- package/src/lib/chart/chart.component.scss +0 -0
- package/src/lib/chart/chart.component.spec.ts +28 -0
- package/src/lib/chart/chart.component.ts +141 -0
- package/src/lib/chart/kvchart.module.ts +20 -0
- package/src/lib/directives/template.directive.ts +15 -0
- package/src/lib/inputs/check/check.component.html +11 -0
- package/src/lib/inputs/check/check.component.scss +13 -0
- package/src/lib/inputs/check/check.component.ts +24 -0
- package/src/lib/inputs/dropdown/dropdown.component.html +91 -0
- package/src/lib/inputs/dropdown/dropdown.component.scss +0 -0
- package/src/lib/inputs/dropdown/dropdown.component.ts +28 -0
- package/src/lib/inputs/editor/editor.component.html +90 -0
- package/src/lib/inputs/editor/editor.component.scss +4 -0
- package/src/lib/inputs/editor/editor.component.ts +80 -0
- package/src/lib/inputs/input-calendar/input-calendar.component.html +30 -0
- package/src/lib/inputs/input-calendar/input-calendar.component.scss +0 -0
- package/src/lib/inputs/input-calendar/input-calendar.component.ts +81 -0
- package/src/lib/inputs/input-mask/input-mask.component.html +20 -0
- package/src/lib/inputs/input-mask/input-mask.component.scss +0 -0
- package/src/lib/inputs/input-mask/input-mask.component.ts +20 -0
- package/src/lib/inputs/input-number/input-number.component.html +22 -0
- package/src/lib/inputs/input-number/input-number.component.scss +0 -0
- package/src/lib/inputs/input-number/input-number.component.ts +52 -0
- package/src/lib/inputs/input-password/input-password.component.html +23 -0
- package/src/lib/inputs/input-password/input-password.component.scss +0 -0
- package/src/lib/inputs/input-password/input-password.component.ts +23 -0
- package/src/lib/inputs/input-text/input-text.component.html +20 -0
- package/src/lib/inputs/input-text/input-text.component.scss +18 -0
- package/src/lib/inputs/input-text/input-text.component.ts +17 -0
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.html +32 -0
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.scss +0 -0
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.spec.ts +23 -0
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.ts +36 -0
- package/src/lib/inputs/input-textarea/input-textarea.component.html +22 -0
- package/src/lib/inputs/input-textarea/input-textarea.component.scss +0 -0
- package/src/lib/inputs/input-textarea/input-textarea.component.ts +33 -0
- package/src/lib/inputs/input-time/input-time.component.html +23 -0
- package/src/lib/inputs/input-time/input-time.component.scss +0 -0
- package/src/lib/inputs/input-time/input-time.component.ts +20 -0
- package/src/lib/inputs/kvinputs.module.ts +64 -0
- package/src/lib/inputs/multi-select/multi-select.component.html +28 -0
- package/src/lib/inputs/multi-select/multi-select.component.scss +8 -0
- package/src/lib/inputs/multi-select/multi-select.component.ts +31 -0
- package/src/lib/inputs/radio-group/radio-group.component.html +19 -0
- package/src/lib/inputs/radio-group/radio-group.component.scss +15 -0
- package/src/lib/inputs/radio-group/radio-group.component.ts +50 -0
- package/src/lib/inputs/switch/switch.component.html +12 -0
- package/src/lib/inputs/switch/switch.component.scss +3 -0
- package/src/lib/inputs/switch/switch.component.ts +30 -0
- package/src/lib/keevo-components.module.ts +50 -0
- package/src/lib/label/label.component.html +6 -0
- package/src/lib/label/label.component.scss +9 -0
- package/src/lib/label/label.component.spec.ts +23 -0
- package/src/lib/label/label.component.ts +13 -0
- package/src/lib/label/label.module.ts +18 -0
- package/src/lib/loader/kvloader.module.ts +17 -0
- package/src/lib/loader/loader.component.html +1 -0
- package/src/lib/loader/loader.component.ts +14 -0
- package/src/lib/loader/loader.service.ts +26 -0
- package/src/lib/login/kvlogin.module.ts +28 -0
- package/src/lib/login/login.component.html +108 -0
- package/src/lib/login/login.component.scss +48 -0
- package/src/lib/login/login.component.spec.ts +23 -0
- package/src/lib/login/login.component.ts +65 -0
- package/src/lib/menu/kvmenu.module.ts +27 -0
- package/src/lib/menu/menu.component.html +342 -0
- package/src/lib/menu/menu.component.scss +210 -0
- package/src/lib/menu/menu.component.spec.ts +23 -0
- package/src/lib/menu/menu.component.ts +246 -0
- package/src/lib/orgchart/orgchart.component.html +58 -0
- package/src/lib/orgchart/orgchart.component.scss +21 -0
- package/src/lib/orgchart/orgchart.component.ts +118 -0
- package/src/lib/orgchart/orgchart.module.ts +14 -0
- package/src/lib/page-form/kv-page-form.module.ts +22 -0
- package/src/lib/page-form/page-form.component.html +57 -0
- package/src/lib/page-form/page-form.component.scss +72 -0
- package/src/lib/page-form/page-form.component.spec.ts +28 -0
- package/src/lib/page-form/page-form.component.ts +121 -0
- package/src/lib/picklist/kvpicklist.module.ts +20 -0
- package/src/lib/picklist/picklist.component.html +17 -0
- package/src/lib/picklist/picklist.component.scss +0 -0
- package/src/lib/picklist/picklist.component.spec.ts +26 -0
- package/src/lib/picklist/picklist.component.ts +27 -0
- package/src/lib/pipes/codigofile.pipe.ts +15 -0
- package/src/lib/pipes/cpfcnpj.pipe.ts +21 -0
- package/src/lib/pipes/pipes.module.ts +22 -0
- package/src/lib/pipes/telefone.pipe.ts +38 -0
- package/src/lib/styles-components.scss +11 -0
- package/src/lib/table/kvtable.module.ts +22 -0
- package/src/lib/table/table.component.html +473 -0
- package/src/lib/table/table.component.scss +240 -0
- package/src/lib/table/table.component.spec.ts +28 -0
- package/src/lib/table/table.component.ts +546 -0
- package/src/lib/tree-table/kv-treetable.component.html +649 -0
- package/src/lib/tree-table/kv-treetable.component.scss +315 -0
- package/src/lib/tree-table/kv-treetable.component.ts +390 -0
- package/src/lib/tree-table/kv-treetable.module.ts +18 -0
- package/src/lib/tree-view/kvtree-view.module.ts +19 -0
- package/src/lib/tree-view/tree-view.component.html +9 -0
- package/src/lib/tree-view/tree-view.component.scss +0 -0
- package/src/lib/tree-view/tree-view.component.spec.ts +23 -0
- package/src/lib/tree-view/tree-view.component.ts +29 -0
- package/src/lib/workspace/kvworkspace.module.ts +29 -0
- package/src/lib/workspace/workspace.component.html +108 -0
- package/src/lib/workspace/workspace.component.scss +83 -0
- package/src/lib/workspace/workspace.component.ts +75 -0
- package/{public-api.d.ts → src/public-api.ts} +156 -133
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2020/keevo-components.mjs +0 -5
- package/esm2020/lib/api/base-components/base-component-button.mjs +0 -36
- package/esm2020/lib/api/base-components/base-component-chart.mjs +0 -92
- package/esm2020/lib/api/base-components/base-component-crud-form.mjs +0 -269
- package/esm2020/lib/api/base-components/base-component-crud-list.mjs +0 -67
- package/esm2020/lib/api/base-components/base-component-crud.mjs +0 -65
- package/esm2020/lib/api/base-components/base-component-dropdown-new.mjs +0 -211
- package/esm2020/lib/api/base-components/base-component-dropdown.mjs +0 -161
- package/esm2020/lib/api/base-components/base-component-input.mjs +0 -94
- package/esm2020/lib/api/base-components/base-component-multi-select.mjs +0 -128
- package/esm2020/lib/api/base-components/base-component.mjs +0 -49
- package/esm2020/lib/api/components/chart/chart.config.mjs +0 -2
- package/esm2020/lib/api/components/chart/chart.model.mjs +0 -2
- package/esm2020/lib/api/components/chart/orchart.config.mjs +0 -2
- package/esm2020/lib/api/components/chart/orchart.item.mjs +0 -2
- package/esm2020/lib/api/components/dropdown/filtro.combo.mjs +0 -2
- package/esm2020/lib/api/components/error/error.component.mjs +0 -26
- package/esm2020/lib/api/components/error/kverror.module.mjs +0 -35
- package/esm2020/lib/api/components/table/action-item.mjs +0 -2
- package/esm2020/lib/api/components/table/kv-menuitem.mjs +0 -3
- package/esm2020/lib/api/components/table/table.config.column.mjs +0 -2
- package/esm2020/lib/api/components/table/table.config.mjs +0 -2
- package/esm2020/lib/api/components/table/table.paginate.mjs +0 -9
- package/esm2020/lib/api/helpers/component-providers.mjs +0 -16
- package/esm2020/lib/api/helpers/keevo-validators.mjs +0 -64
- package/esm2020/lib/api/helpers/translate-primeng.mjs +0 -23
- package/esm2020/lib/api/models/menu/menu.model.mjs +0 -2
- package/esm2020/lib/api/models/menu/menucompleto.model.mjs +0 -2
- package/esm2020/lib/api/models/menu/sistemamenu.model.mjs +0 -2
- package/esm2020/lib/api/modules/primeng.module.mjs +0 -247
- package/esm2020/lib/api/services/base.api.service.mjs +0 -74
- package/esm2020/lib/api/services/component.service.mjs +0 -27
- package/esm2020/lib/api/services/form.service.mjs +0 -84
- package/esm2020/lib/api/services/imagens.service.mjs +0 -22
- package/esm2020/lib/api/services/notification.service.mjs +0 -67
- package/esm2020/lib/api/services/object.service.mjs +0 -26
- package/esm2020/lib/buttons/button-personalize/button-personalize.component.mjs +0 -17
- package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +0 -31
- package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +0 -17
- package/esm2020/lib/buttons/button-success/button-success.component.mjs +0 -17
- package/esm2020/lib/buttons/kvbutton.module.mjs +0 -39
- package/esm2020/lib/chart/chart.component.mjs +0 -145
- package/esm2020/lib/chart/kvchart.module.mjs +0 -32
- package/esm2020/lib/directives/template.directive.mjs +0 -24
- package/esm2020/lib/inputs/check/check.component.mjs +0 -26
- package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +0 -37
- package/esm2020/lib/inputs/editor/editor.component.mjs +0 -70
- package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +0 -89
- package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +0 -23
- package/esm2020/lib/inputs/input-number/input-number.component.mjs +0 -59
- package/esm2020/lib/inputs/input-password/input-password.component.mjs +0 -33
- package/esm2020/lib/inputs/input-text/input-text.component.mjs +0 -21
- package/esm2020/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +0 -38
- package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +0 -43
- package/esm2020/lib/inputs/input-time/input-time.component.mjs +0 -24
- package/esm2020/lib/inputs/kvinputs.module.mjs +0 -108
- package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +0 -38
- package/esm2020/lib/inputs/radio-group/radio-group.component.mjs +0 -53
- package/esm2020/lib/inputs/switch/switch.component.mjs +0 -32
- package/esm2020/lib/keevo-components.module.mjs +0 -105
- package/esm2020/lib/label/label.component.mjs +0 -15
- package/esm2020/lib/label/label.module.mjs +0 -24
- package/esm2020/lib/loader/loader.component.mjs +0 -18
- package/esm2020/lib/loader/loader.module.mjs +0 -28
- package/esm2020/lib/loader/loader.service.mjs +0 -29
- package/esm2020/lib/login/kvlogin.module.mjs +0 -47
- package/esm2020/lib/login/login.component.mjs +0 -52
- package/esm2020/lib/menu/kvmenu.module.mjs +0 -43
- package/esm2020/lib/menu/menu.component.mjs +0 -237
- package/esm2020/lib/orgchart/orgchart.component.mjs +0 -100
- package/esm2020/lib/orgchart/orgchart.module.mjs +0 -24
- package/esm2020/lib/page-form/kv-page-form.module.mjs +0 -38
- package/esm2020/lib/page-form/page-form.component.mjs +0 -144
- package/esm2020/lib/picklist/kvpicklist.module.mjs +0 -32
- package/esm2020/lib/picklist/picklist.component.mjs +0 -48
- package/esm2020/lib/pipes/codigofile.pipe.mjs +0 -19
- package/esm2020/lib/pipes/cpfcnpj.pipe.mjs +0 -25
- package/esm2020/lib/pipes/pipes.module.mjs +0 -34
- package/esm2020/lib/pipes/telefone.pipe.mjs +0 -45
- package/esm2020/lib/table/kvtable.module.mjs +0 -32
- package/esm2020/lib/table/table.component.mjs +0 -499
- package/esm2020/lib/tree-table/kv-treetable.component.mjs +0 -371
- package/esm2020/lib/tree-table/kv-treetable.module.mjs +0 -32
- package/esm2020/lib/tree-view/kvtree-view.module.mjs +0 -28
- package/esm2020/lib/tree-view/tree-view.component.mjs +0 -29
- package/esm2020/lib/workspace/kvworkspace.module.mjs +0 -47
- package/esm2020/lib/workspace/workspace.component.mjs +0 -77
- package/esm2020/public-api.mjs +0 -137
- package/fesm2015/keevo-components.mjs +0 -4706
- package/fesm2015/keevo-components.mjs.map +0 -1
- package/fesm2020/keevo-components.mjs +0 -4697
- package/fesm2020/keevo-components.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/api/base-components/base-component-button.d.ts +0 -14
- package/lib/api/base-components/base-component-chart.d.ts +0 -40
- package/lib/api/base-components/base-component-crud-form.d.ts +0 -137
- package/lib/api/base-components/base-component-crud-list.d.ts +0 -63
- package/lib/api/base-components/base-component-crud.d.ts +0 -36
- package/lib/api/base-components/base-component-dropdown-new.d.ts +0 -14
- package/lib/api/base-components/base-component-dropdown.d.ts +0 -42
- package/lib/api/base-components/base-component-input.d.ts +0 -31
- package/lib/api/base-components/base-component-multi-select.d.ts +0 -35
- package/lib/api/base-components/base-component.d.ts +0 -21
- package/lib/api/components/chart/chart.config.d.ts +0 -11
- package/lib/api/components/chart/chart.model.d.ts +0 -9
- package/lib/api/components/chart/orchart.config.d.ts +0 -35
- package/lib/api/components/chart/orchart.item.d.ts +0 -26
- package/lib/api/components/dropdown/filtro.combo.d.ts +0 -4
- package/lib/api/components/error/error.component.d.ts +0 -12
- package/lib/api/components/error/kverror.module.d.ts +0 -10
- package/lib/api/components/table/action-item.d.ts +0 -5
- package/lib/api/components/table/kv-menuitem.d.ts +0 -9
- package/lib/api/components/table/table.config.column.d.ts +0 -21
- package/lib/api/components/table/table.config.d.ts +0 -17
- package/lib/api/components/table/table.paginate.d.ts +0 -6
- package/lib/api/helpers/component-providers.d.ts +0 -2
- package/lib/api/helpers/keevo-validators.d.ts +0 -10
- package/lib/api/helpers/translate-primeng.d.ts +0 -4
- package/lib/api/models/menu/menu.model.d.ts +0 -10
- package/lib/api/models/menu/sistemamenu.model.d.ts +0 -8
- package/lib/api/modules/primeng.module.d.ts +0 -60
- package/lib/api/services/base.api.service.d.ts +0 -25
- package/lib/api/services/component.service.d.ts +0 -11
- package/lib/api/services/form.service.d.ts +0 -27
- package/lib/api/services/imagens.service.d.ts +0 -8
- package/lib/api/services/notification.service.d.ts +0 -25
- package/lib/api/services/object.service.d.ts +0 -8
- package/lib/buttons/button-personalize/button-personalize.component.d.ts +0 -7
- package/lib/buttons/button-popup/button-popup.component.d.ts +0 -13
- package/lib/buttons/button-secondary/button-secondary.component.d.ts +0 -7
- package/lib/buttons/button-success/button-success.component.d.ts +0 -7
- package/lib/buttons/kvbutton.module.d.ts +0 -11
- package/lib/chart/chart.component.d.ts +0 -56
- package/lib/chart/kvchart.module.d.ts +0 -10
- package/lib/directives/template.directive.d.ts +0 -11
- package/lib/inputs/check/check.component.d.ts +0 -11
- package/lib/inputs/dropdown/dropdown.component.d.ts +0 -14
- package/lib/inputs/editor/editor.component.d.ts +0 -39
- package/lib/inputs/input-calendar/input-calendar.component.d.ts +0 -27
- package/lib/inputs/input-mask/input-mask.component.d.ts +0 -10
- package/lib/inputs/input-number/input-number.component.d.ts +0 -19
- package/lib/inputs/input-password/input-password.component.d.ts +0 -13
- package/lib/inputs/input-text/input-text.component.d.ts +0 -9
- package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +0 -15
- package/lib/inputs/input-textarea/input-textarea.component.d.ts +0 -16
- package/lib/inputs/input-time/input-time.component.d.ts +0 -10
- package/lib/inputs/kvinputs.module.d.ts +0 -25
- package/lib/inputs/multi-select/multi-select.component.d.ts +0 -12
- package/lib/inputs/radio-group/radio-group.component.d.ts +0 -18
- package/lib/inputs/switch/switch.component.d.ts +0 -13
- package/lib/keevo-components.module.d.ts +0 -19
- package/lib/label/label.component.d.ts +0 -7
- package/lib/label/label.module.d.ts +0 -8
- package/lib/loader/loader.component.d.ts +0 -10
- package/lib/loader/loader.module.d.ts +0 -9
- package/lib/loader/loader.service.d.ts +0 -10
- package/lib/login/kvlogin.module.d.ts +0 -13
- package/lib/login/login.component.d.ts +0 -30
- package/lib/menu/kvmenu.module.d.ts +0 -12
- package/lib/menu/menu.component.d.ts +0 -74
- package/lib/orgchart/orgchart.component.d.ts +0 -27
- package/lib/orgchart/orgchart.module.d.ts +0 -9
- package/lib/page-form/kv-page-form.module.d.ts +0 -11
- package/lib/page-form/page-form.component.d.ts +0 -69
- package/lib/picklist/kvpicklist.module.d.ts +0 -10
- package/lib/picklist/picklist.component.d.ts +0 -20
- package/lib/pipes/codigofile.pipe.d.ts +0 -7
- package/lib/pipes/cpfcnpj.pipe.d.ts +0 -7
- package/lib/pipes/pipes.module.d.ts +0 -10
- package/lib/pipes/telefone.pipe.d.ts +0 -7
- package/lib/table/kvtable.module.d.ts +0 -10
- package/lib/table/table.component.d.ts +0 -104
- package/lib/tree-table/kv-treetable.component.d.ts +0 -84
- package/lib/tree-table/kv-treetable.module.d.ts +0 -11
- package/lib/tree-view/kvtree-view.module.d.ts +0 -9
- package/lib/tree-view/tree-view.component.d.ts +0 -14
- package/lib/workspace/kvworkspace.module.d.ts +0 -13
- package/lib/workspace/workspace.component.d.ts +0 -28
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./inputs/kvinputs.module";
|
|
3
|
-
import * as i2 from "./buttons/kvbutton.module";
|
|
4
|
-
import * as i3 from "./table/kvtable.module";
|
|
5
|
-
import * as i4 from "./tree-view/kvtree-view.module";
|
|
6
|
-
import * as i5 from "./chart/kvchart.module";
|
|
7
|
-
import * as i6 from "./menu/kvmenu.module";
|
|
8
|
-
import * as i7 from "./picklist/kvpicklist.module";
|
|
9
|
-
import * as i8 from "./tree-table/kv-treetable.module";
|
|
10
|
-
import * as i9 from "./workspace/kvworkspace.module";
|
|
11
|
-
import * as i10 from "./orgchart/orgchart.module";
|
|
12
|
-
import * as i11 from "./login/kvlogin.module";
|
|
13
|
-
import * as i12 from "./page-form/kv-page-form.module";
|
|
14
|
-
import * as i13 from "./loader/loader.module";
|
|
15
|
-
export declare class KeevoComponentsModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.LoaderModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.LoaderModule]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
19
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class LabelComponent {
|
|
3
|
-
componentId: string;
|
|
4
|
-
label: string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "kv-label", never, { "componentId": "componentId"; "label": "label"; }, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./label.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class LabelModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LabelModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LabelModule, [typeof i1.LabelComponent], [typeof i2.CommonModule], [typeof i1.LabelComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LabelModule>;
|
|
8
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Subject } from 'rxjs';
|
|
2
|
-
import { LoaderService } from './loader.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class LoaderComponent {
|
|
5
|
-
private loaderService;
|
|
6
|
-
loading: Subject<boolean>;
|
|
7
|
-
constructor(loaderService: LoaderService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, {}, {}, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./loader.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "ngx-loading";
|
|
5
|
-
export declare class LoaderModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, [typeof i1.LoaderComponent], [typeof i2.CommonModule, typeof i3.NgxLoadingModule], [typeof i1.LoaderComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LoaderModule>;
|
|
9
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Observable, Subject } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LoaderService {
|
|
4
|
-
isLoading: Subject<boolean>;
|
|
5
|
-
show(): void;
|
|
6
|
-
hide(): void;
|
|
7
|
-
loading(src: Observable<any>): Observable<any>;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
|
|
10
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./login.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "../inputs/kvinputs.module";
|
|
7
|
-
import * as i6 from "../buttons/kvbutton.module";
|
|
8
|
-
import * as i7 from "primeng/progressspinner";
|
|
9
|
-
export declare class KvLoginModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoginModule, [typeof i1.LoginComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule, typeof i7.ProgressSpinnerModule], [typeof i1.LoginComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvLoginModule>;
|
|
13
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { BaseComponentCrudForm } from '../api/base-components/base-component-crud-form';
|
|
4
|
-
import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
5
|
-
import { NotificationService } from '../api/services/notification.service';
|
|
6
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Componente de login personalizado.
|
|
10
|
-
* Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
|
|
11
|
-
*/
|
|
12
|
-
export declare class LoginComponent extends BaseComponentCrudForm {
|
|
13
|
-
private formBuilder;
|
|
14
|
-
/** URL da imagem de fundo do componente. */
|
|
15
|
-
Background: any;
|
|
16
|
-
/** URL do logo do sistema. */
|
|
17
|
-
SystemLogo: any;
|
|
18
|
-
/** Cor primária do sistema. */
|
|
19
|
-
SystemColorPrimary: string;
|
|
20
|
-
/** Cor secundária do sistema. */
|
|
21
|
-
SystemColorSecondary: string;
|
|
22
|
-
/** Evento emitido quando o usuário faz login. */
|
|
23
|
-
onLogin: EventEmitter<any>;
|
|
24
|
-
constructor(dialogService: DialogService, notificationService: NotificationService, activatedRoute: ActivatedRoute, dynamicDialogRef: DynamicDialogRef, dynamicDialogConfig: DynamicDialogConfig, router: Router, formBuilder: FormBuilder);
|
|
25
|
-
configureForm(): void;
|
|
26
|
-
loadForm(id: any): void;
|
|
27
|
-
save(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "kv-login", never, { "Background": "Background"; "SystemLogo": "SystemLogo"; "SystemColorPrimary": "SystemColorPrimary"; "SystemColorSecondary": "SystemColorSecondary"; }, { "onLogin": "onLogin"; }, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./menu.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "../inputs/kvinputs.module";
|
|
7
|
-
import * as i6 from "../buttons/kvbutton.module";
|
|
8
|
-
export declare class KvMenuModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.MenuComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule], [typeof i1.MenuComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
|
|
12
|
-
}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
|
-
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
3
|
-
import { Sidebar } from 'primeng/sidebar';
|
|
4
|
-
import { OverlayPanel } from 'primeng/overlaypanel';
|
|
5
|
-
import { MasterComboModel } from 'keevo-api-services-keevocenter';
|
|
6
|
-
import { menuCompletoModel } from '../api/models/menu/menucompleto.model';
|
|
7
|
-
import { menuModel } from '../api/models/menu/menu.model';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class MenuComponent implements OnInit {
|
|
10
|
-
private cdr;
|
|
11
|
-
protected router: Router;
|
|
12
|
-
private route;
|
|
13
|
-
menuCompleto: menuCompletoModel[];
|
|
14
|
-
licencas: MasterComboModel[];
|
|
15
|
-
licencaSelecionada: MasterComboModel;
|
|
16
|
-
logoImage: any;
|
|
17
|
-
nomeUsuario: string;
|
|
18
|
-
breadCrumbs: boolean;
|
|
19
|
-
licencaChange: EventEmitter<any>;
|
|
20
|
-
gerenciarKeePassEvent: EventEmitter<any>;
|
|
21
|
-
sairEvent: EventEmitter<any>;
|
|
22
|
-
expandMenuEmit: EventEmitter<boolean>;
|
|
23
|
-
trocarLicencaEmit: EventEmitter<boolean>;
|
|
24
|
-
sidebarRef: Sidebar;
|
|
25
|
-
sistemasPanel: OverlayPanel;
|
|
26
|
-
meusDadosPanel: OverlayPanel;
|
|
27
|
-
licencasOptions: {
|
|
28
|
-
id: number;
|
|
29
|
-
descricao: string;
|
|
30
|
-
cpfcnpj: string;
|
|
31
|
-
}[];
|
|
32
|
-
licencaSelected: {
|
|
33
|
-
id: number;
|
|
34
|
-
descricao: string;
|
|
35
|
-
cpfcnpj: string;
|
|
36
|
-
};
|
|
37
|
-
menusFiltrados: menuCompletoModel[];
|
|
38
|
-
menus: menuModel[];
|
|
39
|
-
breadCrumbItems: {
|
|
40
|
-
label: string;
|
|
41
|
-
routerLink: string;
|
|
42
|
-
}[];
|
|
43
|
-
heigthCard: number;
|
|
44
|
-
widthCard: number;
|
|
45
|
-
expandMenu: boolean;
|
|
46
|
-
visibleDialogLicenca: boolean;
|
|
47
|
-
mouseOverIndex: any;
|
|
48
|
-
mouseOverFilhoIndex: any;
|
|
49
|
-
onWindowResize(): void;
|
|
50
|
-
constructor(cdr: ChangeDetectorRef, router: Router, route: ActivatedRoute);
|
|
51
|
-
ngOnInit(): void;
|
|
52
|
-
configurarLicencas(): void;
|
|
53
|
-
private getBreadcrumbs;
|
|
54
|
-
closeCallback(e: Event): void;
|
|
55
|
-
MascaraNomeLicenca(nomeLicenca: any): string;
|
|
56
|
-
MascaraCnpj(cpfcnpj: string): string;
|
|
57
|
-
definirMenusPorSistema(idsistema: number): void;
|
|
58
|
-
retornarMenuFilhos(idsistema: number, idmenu: number): menuModel[] | undefined;
|
|
59
|
-
callRoute(e: any, expand?: boolean): void;
|
|
60
|
-
toggleMenu(): void;
|
|
61
|
-
trocarLicenca(): void;
|
|
62
|
-
setLicenca(): void;
|
|
63
|
-
gerenciarKeePass(event: any): void;
|
|
64
|
-
sair(event: any): void;
|
|
65
|
-
expandMenuEvent(): void;
|
|
66
|
-
ajustarHeigthCard(): number;
|
|
67
|
-
verificarPaginaSelecionada(link: any): boolean;
|
|
68
|
-
retornarTituloBreadCrumbs(str: string): string;
|
|
69
|
-
onMouseEnter(index: number): void;
|
|
70
|
-
onMouseFilhoEnter(index: number): void;
|
|
71
|
-
onMouseLeave(): void;
|
|
72
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kv-menu", never, { "menuCompleto": "menuCompleto"; "licencas": "licencas"; "licencaSelecionada": "licencaSelecionada"; "logoImage": "logoImage"; "nomeUsuario": "nomeUsuario"; "breadCrumbs": "breadCrumbs"; }, { "licencaChange": "licencaChange"; "gerenciarKeePassEvent": "gerenciarKeePassEvent"; "sairEvent": "sairEvent"; "expandMenuEmit": "expandMenuEmit"; "trocarLicencaEmit": "trocarLicencaEmit"; }, never, ["*"], false, never>;
|
|
74
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnInit, Renderer2, TemplateRef } from '@angular/core';
|
|
2
|
-
import OrgChartItem from '../api/components/chart/orchart.item';
|
|
3
|
-
import OrgChartConfig from '../api/components/chart/orchart.config';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class OrgchartComponent implements OnInit {
|
|
6
|
-
private renderer;
|
|
7
|
-
chartContainer: ElementRef;
|
|
8
|
-
chart: any;
|
|
9
|
-
dataSource: OrgChartItem[];
|
|
10
|
-
config: OrgChartConfig;
|
|
11
|
-
template: string;
|
|
12
|
-
nodeTemplate: TemplateRef<any>;
|
|
13
|
-
generateTemplate: Function;
|
|
14
|
-
templateFuncion: boolean;
|
|
15
|
-
corDeFundo: string;
|
|
16
|
-
compact: boolean;
|
|
17
|
-
mostraMenu: boolean;
|
|
18
|
-
constructor(renderer: Renderer2);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
ngAfterViewInit(): void;
|
|
21
|
-
ngOnChanges(): void;
|
|
22
|
-
updateChart(): void;
|
|
23
|
-
stringToTemplateLiteral(string: string): string;
|
|
24
|
-
compactSwap(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OrgchartComponent, "kv-orgchart", never, { "dataSource": "dataSource"; "config": "config"; "template": "template"; "nodeTemplate": "nodeTemplate"; "generateTemplate": "generateTemplate"; "templateFuncion": "templateFuncion"; "corDeFundo": "corDeFundo"; }, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./orgchart.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
export declare class OrgchartModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OrgchartModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OrgchartModule, [typeof i1.OrgchartComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.OrgchartComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<OrgchartModule>;
|
|
9
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./page-form.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "../api/modules/primeng.module";
|
|
6
|
-
import * as i5 from "../buttons/kvbutton.module";
|
|
7
|
-
export declare class KvPageFormModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvPageFormModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPageFormModule, [typeof i1.PageFormComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PrimeNgModule, typeof i5.KvButtonsModule, typeof i3.ReactiveFormsModule], [typeof i1.PageFormComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvPageFormModule>;
|
|
11
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { ActionItem } from '../api/components/table/action-item';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class PageFormComponent implements OnInit {
|
|
6
|
-
private fb;
|
|
7
|
-
/**
|
|
8
|
-
* Configurações do formulário
|
|
9
|
-
*/
|
|
10
|
-
formGroup: FormGroup;
|
|
11
|
-
TituloForm: string | undefined;
|
|
12
|
-
SubTituloForm: string | undefined;
|
|
13
|
-
isSaveLoading: boolean;
|
|
14
|
-
popup: boolean;
|
|
15
|
-
locationUseComponent: 'page' | 'dialog';
|
|
16
|
-
/**
|
|
17
|
-
* Botão cancelar
|
|
18
|
-
*/
|
|
19
|
-
iconBtnCancel: string;
|
|
20
|
-
showBtnCancel: boolean;
|
|
21
|
-
txtBtnCancel: string;
|
|
22
|
-
/**
|
|
23
|
-
* Botão salvar
|
|
24
|
-
*/
|
|
25
|
-
iconBtnSave: string;
|
|
26
|
-
showBtnSave: boolean;
|
|
27
|
-
txtBtnSave: string;
|
|
28
|
-
/**
|
|
29
|
-
* Botão de opções
|
|
30
|
-
*/
|
|
31
|
-
actions: ActionItem[];
|
|
32
|
-
iconBtnSaveToogle: string;
|
|
33
|
-
showBtnSaveToogle: boolean;
|
|
34
|
-
txtBtnSaveToogle: string;
|
|
35
|
-
/**
|
|
36
|
-
* Botão fechar
|
|
37
|
-
*/
|
|
38
|
-
disableBtnSair: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* Salvar dados
|
|
41
|
-
*/
|
|
42
|
-
onSave: EventEmitter<any>;
|
|
43
|
-
/**
|
|
44
|
-
* Cancelar
|
|
45
|
-
*/
|
|
46
|
-
onCancel: EventEmitter<any>;
|
|
47
|
-
constructor(fb: FormBuilder);
|
|
48
|
-
/**
|
|
49
|
-
* Adiciona sub-título à tela
|
|
50
|
-
*/
|
|
51
|
-
addSubTitle(): void;
|
|
52
|
-
ngOnInit(): void;
|
|
53
|
-
/**
|
|
54
|
-
* Dispara o método de cancelamento da tela
|
|
55
|
-
* @param event evento
|
|
56
|
-
*/
|
|
57
|
-
cancel(event: Event): void;
|
|
58
|
-
/**
|
|
59
|
-
* Dispara o método de salvar da tela
|
|
60
|
-
* @param event evento
|
|
61
|
-
*/
|
|
62
|
-
save(event: Event): void;
|
|
63
|
-
/**
|
|
64
|
-
* Ajusta o tamanho da tela considerando o menu lateral
|
|
65
|
-
*/
|
|
66
|
-
setPageFormContainerAttributes(): void;
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PageFormComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageFormComponent, "kv-page-form", never, { "formGroup": "formGroup"; "TituloForm": "TituloForm"; "SubTituloForm": "SubTituloForm"; "isSaveLoading": "isSaveLoading"; "popup": "popup"; "locationUseComponent": "locationUseComponent"; "iconBtnCancel": "iconBtnCancel"; "showBtnCancel": "showBtnCancel"; "txtBtnCancel": "txtBtnCancel"; "iconBtnSave": "iconBtnSave"; "showBtnSave": "showBtnSave"; "txtBtnSave": "txtBtnSave"; "actions": "actions"; "iconBtnSaveToogle": "iconBtnSaveToogle"; "showBtnSaveToogle": "showBtnSaveToogle"; "txtBtnSaveToogle": "txtBtnSaveToogle"; "disableBtnSair": "disableBtnSair"; }, { "onSave": "onSave"; "onCancel": "onCancel"; }, never, ["*"], false, never>;
|
|
69
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./picklist.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
export declare class KvPickListModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvPickListModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPickListModule, [typeof i1.PickListComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.PickListComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvPickListModule>;
|
|
10
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PickListComponent implements OnInit {
|
|
4
|
-
source: any[];
|
|
5
|
-
sourceHeader: string;
|
|
6
|
-
sourceStyle: any;
|
|
7
|
-
target: any[];
|
|
8
|
-
targetHeader: string;
|
|
9
|
-
targetStyle: any;
|
|
10
|
-
dragdrop: boolean;
|
|
11
|
-
responsive: boolean;
|
|
12
|
-
filterBy: string;
|
|
13
|
-
breakpoint: string;
|
|
14
|
-
stripedRows: boolean;
|
|
15
|
-
itemTemplate: TemplateRef<any>;
|
|
16
|
-
constructor();
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PickListComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PickListComponent, "kv-picklist", never, { "source": "source"; "sourceHeader": "sourceHeader"; "sourceStyle": "sourceStyle"; "target": "target"; "targetHeader": "targetHeader"; "targetStyle": "targetStyle"; "dragdrop": "dragdrop"; "responsive": "responsive"; "filterBy": "filterBy"; "breakpoint": "breakpoint"; "stripedRows": "stripedRows"; "itemTemplate": "itemTemplate"; }, {}, never, never, false, never>;
|
|
20
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CodigoFipePipe implements PipeTransform {
|
|
4
|
-
transform(value: string): string | null;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CodigoFipePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CodigoFipePipe, "codigoFipe", false>;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CpfCnpjPipe implements PipeTransform {
|
|
4
|
-
transform(value: string): string | null;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CpfCnpjPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CpfCnpjPipe, "cpfCnpj", false>;
|
|
7
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./cpfcnpj.pipe";
|
|
3
|
-
import * as i2 from "./telefone.pipe";
|
|
4
|
-
import * as i3 from "./codigofile.pipe";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
export declare class PipesModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe], [typeof i4.CommonModule], [typeof i1.CpfCnpjPipe, typeof i2.TelefonePipe, typeof i3.CodigoFipePipe]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
10
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TelefonePipe implements PipeTransform {
|
|
4
|
-
transform(tel: string): string | null;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TelefonePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TelefonePipe, "Telefone", false>;
|
|
7
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./table.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
export declare class KvTableModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.TableComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvTableModule>;
|
|
10
|
-
}
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
2
|
-
import { ElementRef, EventEmitter, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
|
|
3
|
-
import { Table } from 'primeng/table';
|
|
4
|
-
import { TableConfig } from '../api/components/table/table.config';
|
|
5
|
-
import { TableConfigColumn } from '../api/components/table/table.config.column';
|
|
6
|
-
import { CodigoFipePipe } from '../pipes/codigofile.pipe';
|
|
7
|
-
import { CpfCnpjPipe } from '../pipes/cpfcnpj.pipe';
|
|
8
|
-
import { TelefonePipe } from '../pipes/telefone.pipe';
|
|
9
|
-
import { KvMenuItem } from '../api/components/table/kv-menuitem';
|
|
10
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class TableComponent implements OnInit {
|
|
13
|
-
private readonly datePipe;
|
|
14
|
-
private readonly decimalPipe;
|
|
15
|
-
private readonly codigoFipePipe;
|
|
16
|
-
private readonly cpfCnpjPipe;
|
|
17
|
-
private readonly telefonePipe;
|
|
18
|
-
private renderer;
|
|
19
|
-
private elementRef;
|
|
20
|
-
private sanitizer;
|
|
21
|
-
config: TableConfig;
|
|
22
|
-
pesquisaValue: string;
|
|
23
|
-
globalFilterFields: string[];
|
|
24
|
-
actionsTemplate: TemplateRef<any>;
|
|
25
|
-
selectedSize: string;
|
|
26
|
-
tamanhoTela: number;
|
|
27
|
-
menuItems: KvMenuItem[];
|
|
28
|
-
menuColumns: KvMenuItem[];
|
|
29
|
-
checked: boolean;
|
|
30
|
-
columns: TableConfigColumn[];
|
|
31
|
-
deletedColuns: TableConfigColumn[];
|
|
32
|
-
menuFiltro: boolean;
|
|
33
|
-
checkboxClicked: boolean;
|
|
34
|
-
showFiltrosAvancados: boolean;
|
|
35
|
-
templates: QueryList<any>;
|
|
36
|
-
_templates: any;
|
|
37
|
-
table: Table;
|
|
38
|
-
deletedColumnsIndex: any[];
|
|
39
|
-
set setConfig(value: TableConfig);
|
|
40
|
-
dataSource: any;
|
|
41
|
-
selectedItems: any[];
|
|
42
|
-
totalRecords: number;
|
|
43
|
-
paginator: boolean;
|
|
44
|
-
rowsPerPageOptions: number[];
|
|
45
|
-
rows: number;
|
|
46
|
-
pageLinksOptions: number;
|
|
47
|
-
showFirstLastIcon: boolean;
|
|
48
|
-
tableSize: number;
|
|
49
|
-
applyStyle: Function;
|
|
50
|
-
acoesLinhaTabela: boolean;
|
|
51
|
-
filterColumnsBtn: boolean;
|
|
52
|
-
filtrosAvancados: boolean;
|
|
53
|
-
onActiveItem: EventEmitter<any>;
|
|
54
|
-
onActiveItemLote: EventEmitter<any>;
|
|
55
|
-
onPaginate: EventEmitter<any>;
|
|
56
|
-
onSelectionChange: EventEmitter<any>;
|
|
57
|
-
doubleClickEvent: EventEmitter<any>;
|
|
58
|
-
filterField: EventEmitter<any>;
|
|
59
|
-
filtrosAvancadosEmit: EventEmitter<boolean>;
|
|
60
|
-
menuFiltroDiv: ElementRef;
|
|
61
|
-
botaoFiltro: ElementRef;
|
|
62
|
-
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe, renderer: Renderer2, elementRef: ElementRef, sanitizer: DomSanitizer);
|
|
63
|
-
ngOnInit(): void;
|
|
64
|
-
onWindowResize(): void;
|
|
65
|
-
activeItem(rowData: any): void;
|
|
66
|
-
activeItemLote(rowData: any): void;
|
|
67
|
-
isBooleanField(rowData: any, col: TableConfigColumn): boolean;
|
|
68
|
-
isChipField(col: TableConfigColumn): boolean;
|
|
69
|
-
isImageField(col: TableConfigColumn): boolean;
|
|
70
|
-
isRowSelectable(event: any): boolean;
|
|
71
|
-
isDisabledCheckbox(rowData: any): boolean;
|
|
72
|
-
loadImage(rowData: any, col: TableConfigColumn): string;
|
|
73
|
-
onGlobalFilter(table: Table, event: Event): void;
|
|
74
|
-
paginate(event: any): void;
|
|
75
|
-
selectionChange(value?: never[]): void;
|
|
76
|
-
returnRowClass(rowData: any, col: TableConfigColumn): string;
|
|
77
|
-
expiredFile(rowData: any, col: TableConfigColumn): boolean;
|
|
78
|
-
transformValue(rowData: any, col: TableConfigColumn): any;
|
|
79
|
-
formatarValor(valor: number): string;
|
|
80
|
-
adjustTableSize(): void;
|
|
81
|
-
doubleClick(e: any, rowData: any): void;
|
|
82
|
-
centralizarColunas(col: any): string;
|
|
83
|
-
alignColunas(col: any): string;
|
|
84
|
-
alignColunasHeader(col: any): string;
|
|
85
|
-
retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
|
|
86
|
-
retornarRow(rowData: any, col: any, field: string): string;
|
|
87
|
-
exibirCampo(field: any, rowData: any): any;
|
|
88
|
-
criarMenusModal(data: any): void;
|
|
89
|
-
returnClassChip(rowData: any, col: any): string;
|
|
90
|
-
returnClassIcon(rowData: any, col: any): string;
|
|
91
|
-
returnTooltipIcon(rowData: any, col: any): string;
|
|
92
|
-
deleteColumn(field: string): void;
|
|
93
|
-
addColumn(field: string): void;
|
|
94
|
-
dinamicColumnSet(e: any, col: any): void;
|
|
95
|
-
checkMenuFiltro(col: any): void;
|
|
96
|
-
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
97
|
-
callDisabled(action: KvMenuItem, data: any): boolean;
|
|
98
|
-
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
99
|
-
checkHideColumns(): void;
|
|
100
|
-
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
101
|
-
filtrosAvancadosEvent(e: any): void;
|
|
102
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
103
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "kv-table", never, { "_templates": "templates"; "setConfig": "config"; "dataSource": "dataSource"; "selectedItems": "selectedItems"; "totalRecords": "totalRecords"; "paginator": "paginator"; "rowsPerPageOptions": "rowsPerPageOptions"; "rows": "rows"; "pageLinksOptions": "pageLinksOptions"; "showFirstLastIcon": "showFirstLastIcon"; "tableSize": "tableSize"; "applyStyle": "applyStyle"; "acoesLinhaTabela": "acoesLinhaTabela"; "filterColumnsBtn": "filterColumnsBtn"; "filtrosAvancados": "filtrosAvancados"; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "filtrosAvancadosEmit": "filtrosAvancadosEmit"; }, ["templates"], ["*"], false, never>;
|
|
104
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
-
import { TreeNode } from 'primeng/api';
|
|
3
|
-
import { CodigoFipePipe, CpfCnpjPipe, KvMenuItem, TableConfig, TableConfigColumn, TelefonePipe } from '../../public-api';
|
|
4
|
-
import { Table } from 'primeng/table';
|
|
5
|
-
import { TreeTable } from 'primeng/treetable';
|
|
6
|
-
import { DatePipe, DecimalPipe } from '@angular/common';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class TreeTableComponent implements OnInit {
|
|
9
|
-
private readonly datePipe;
|
|
10
|
-
private readonly decimalPipe;
|
|
11
|
-
private readonly codigoFipePipe;
|
|
12
|
-
private readonly cpfCnpjPipe;
|
|
13
|
-
private readonly telefonePipe;
|
|
14
|
-
config: TableConfig;
|
|
15
|
-
dataSource: TreeNode[];
|
|
16
|
-
selectedItems: any[];
|
|
17
|
-
acoesLinhaTabela: boolean;
|
|
18
|
-
espacamentoPai: string;
|
|
19
|
-
espacamentoLateral: boolean;
|
|
20
|
-
tamanhoTotalTree: number;
|
|
21
|
-
rowsPerPageOptions: number[];
|
|
22
|
-
rows: number;
|
|
23
|
-
tableSize: number;
|
|
24
|
-
paginator: boolean;
|
|
25
|
-
showFirstLastIcon: boolean;
|
|
26
|
-
rightCollapse: boolean;
|
|
27
|
-
applyStyle: Function;
|
|
28
|
-
_templates: any;
|
|
29
|
-
colorButtonToggleNodes: string;
|
|
30
|
-
templates: QueryList<any>;
|
|
31
|
-
table: Table;
|
|
32
|
-
onFilter: EventEmitter<any>;
|
|
33
|
-
onPaginate: EventEmitter<any>;
|
|
34
|
-
onActiveItem: EventEmitter<any>;
|
|
35
|
-
onActiveItemLote: EventEmitter<any>;
|
|
36
|
-
doubleClickEvent: EventEmitter<any>;
|
|
37
|
-
tamanhoTela: number;
|
|
38
|
-
selectedSize: string;
|
|
39
|
-
nodeContext: {
|
|
40
|
-
$implicit: string;
|
|
41
|
-
rowNode: string;
|
|
42
|
-
};
|
|
43
|
-
selectedNodes: TreeNode[];
|
|
44
|
-
menuItems: KvMenuItem[];
|
|
45
|
-
imgDefault: string;
|
|
46
|
-
isExpanded: boolean;
|
|
47
|
-
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
|
|
48
|
-
ngOnInit(): void;
|
|
49
|
-
onGlobalFilter(table: TreeTable, event: Event): void;
|
|
50
|
-
onWindowResize(): void;
|
|
51
|
-
adjustTableSize(): void;
|
|
52
|
-
paginate($event: any): void;
|
|
53
|
-
isBooleanField(rowData: any, col: TableConfigColumn): boolean;
|
|
54
|
-
isChipField(col: TableConfigColumn): boolean;
|
|
55
|
-
isImageField(col: TableConfigColumn): boolean;
|
|
56
|
-
returnRowClass(rowData: any, col: TableConfigColumn): string;
|
|
57
|
-
transformValue(rowData: any, col: TableConfigColumn): any;
|
|
58
|
-
alignColunasHeader(col: any): string;
|
|
59
|
-
centralizarColunas(col: any): string;
|
|
60
|
-
alignColunas(col: any): string;
|
|
61
|
-
returnClassIcon(rowData: any, col: any): string;
|
|
62
|
-
returnTooltipIcon(rowData: any, col: any): string;
|
|
63
|
-
returnClassChip(rowData: any, col: any): string;
|
|
64
|
-
retornarRow(rowData: any, col: any, field: string): string;
|
|
65
|
-
formatarValor(valor: number): string;
|
|
66
|
-
loadImage(rowData: any, col: TableConfigColumn): string;
|
|
67
|
-
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
68
|
-
exibirCampo(field: any, rowData: any): any;
|
|
69
|
-
activeItem(rowData: any, rowNode: any): void;
|
|
70
|
-
activeItemLote(rowData: any): void;
|
|
71
|
-
retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
|
|
72
|
-
callDisabled(action: KvMenuItem, data: any): boolean;
|
|
73
|
-
criarMenusModal(data: any, rowNode: any): void;
|
|
74
|
-
recuperarRowNode(rowNode: any): any;
|
|
75
|
-
validaLinhaAcaoVazia(rowData: any, rowNode: any): boolean;
|
|
76
|
-
toggleNodes(): void;
|
|
77
|
-
expandAll(): void;
|
|
78
|
-
collapseAll(): void;
|
|
79
|
-
private expandCollapseRecursive;
|
|
80
|
-
doubleClick(e: any, rowData: any, rowNode: any): void;
|
|
81
|
-
isDisabledCheckbox(rowData: any, rowNode: any): boolean;
|
|
82
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "kv-treetable", never, { "config": "config"; "dataSource": "dataSource"; "selectedItems": "selectedItems"; "acoesLinhaTabela": "acoesLinhaTabela"; "espacamentoPai": "espacamentoPai"; "espacamentoLateral": "espacamentoLateral"; "tamanhoTotalTree": "tamanhoTotalTree"; "rowsPerPageOptions": "rowsPerPageOptions"; "rows": "rows"; "tableSize": "tableSize"; "paginator": "paginator"; "showFirstLastIcon": "showFirstLastIcon"; "rightCollapse": "rightCollapse"; "applyStyle": "applyStyle"; "_templates": "templates"; "colorButtonToggleNodes": "colorButtonToggleNodes"; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; }, ["templates"], never, false, never>;
|
|
84
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./kv-treetable.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "../buttons/kvbutton.module";
|
|
7
|
-
export declare class KVTreeTableModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KVTreeTableModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KVTreeTableModule, [typeof i1.TreeTableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvButtonsModule], [typeof i1.TreeTableComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KVTreeTableModule>;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./tree-view.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
-
export declare class KvtreeViewModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvtreeViewModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.TreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.TreeViewComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { TreeNode } from 'primeng/api';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TreeViewComponent implements OnInit {
|
|
5
|
-
selectedFiles: TreeNode[] | undefined;
|
|
6
|
-
selectionMode: string;
|
|
7
|
-
treeViewData: TreeNode[];
|
|
8
|
-
selectedItems: EventEmitter<any>;
|
|
9
|
-
constructor();
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
onSelectionChange(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewComponent, "kv-tree-view", never, { "selectedFiles": "selectedFiles"; "selectionMode": "selectionMode"; "treeViewData": "treeViewData"; }, { "selectedItems": "selectedItems"; }, never, never, false, never>;
|
|
14
|
-
}
|