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,60 +0,0 @@
|
|
|
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/button";
|
|
6
|
-
import * as i5 from "primeng/calendar";
|
|
7
|
-
import * as i6 from "primeng/card";
|
|
8
|
-
import * as i7 from "primeng/carousel";
|
|
9
|
-
import * as i8 from "primeng/chart";
|
|
10
|
-
import * as i9 from "primeng/checkbox";
|
|
11
|
-
import * as i10 from "primeng/chip";
|
|
12
|
-
import * as i11 from "primeng/confirmdialog";
|
|
13
|
-
import * as i12 from "primeng/contextmenu";
|
|
14
|
-
import * as i13 from "primeng/dataview";
|
|
15
|
-
import * as i14 from "primeng/dialog";
|
|
16
|
-
import * as i15 from "primeng/divider";
|
|
17
|
-
import * as i16 from "primeng/dropdown";
|
|
18
|
-
import * as i17 from "primeng/dynamicdialog";
|
|
19
|
-
import * as i18 from "primeng/editor";
|
|
20
|
-
import * as i19 from "primeng/fieldset";
|
|
21
|
-
import * as i20 from "primeng/fileupload";
|
|
22
|
-
import * as i21 from "primeng/inputmask";
|
|
23
|
-
import * as i22 from "primeng/inputnumber";
|
|
24
|
-
import * as i23 from "primeng/inputswitch";
|
|
25
|
-
import * as i24 from "primeng/inputtext";
|
|
26
|
-
import * as i25 from "primeng/inputtextarea";
|
|
27
|
-
import * as i26 from "primeng/knob";
|
|
28
|
-
import * as i27 from "primeng/menu";
|
|
29
|
-
import * as i28 from "primeng/message";
|
|
30
|
-
import * as i29 from "primeng/messages";
|
|
31
|
-
import * as i30 from "primeng/multiselect";
|
|
32
|
-
import * as i31 from "primeng/overlay";
|
|
33
|
-
import * as i32 from "primeng/overlaypanel";
|
|
34
|
-
import * as i33 from "primeng/panel";
|
|
35
|
-
import * as i34 from "primeng/panelmenu";
|
|
36
|
-
import * as i35 from "primeng/password";
|
|
37
|
-
import * as i36 from "primeng/picklist";
|
|
38
|
-
import * as i37 from "primeng/progressbar";
|
|
39
|
-
import * as i38 from "primeng/radiobutton";
|
|
40
|
-
import * as i39 from "primeng/rating";
|
|
41
|
-
import * as i40 from "primeng/ripple";
|
|
42
|
-
import * as i41 from "primeng/sidebar";
|
|
43
|
-
import * as i42 from "primeng/skeleton";
|
|
44
|
-
import * as i43 from "primeng/speeddial";
|
|
45
|
-
import * as i44 from "primeng/splitbutton";
|
|
46
|
-
import * as i45 from "primeng/steps";
|
|
47
|
-
import * as i46 from "primeng/tabview";
|
|
48
|
-
import * as i47 from "primeng/table";
|
|
49
|
-
import * as i48 from "primeng/toast";
|
|
50
|
-
import * as i49 from "primeng/toolbar";
|
|
51
|
-
import * as i50 from "primeng/tooltip";
|
|
52
|
-
import * as i51 from "primeng/tree";
|
|
53
|
-
import * as i52 from "primeng/styleclass";
|
|
54
|
-
import * as i53 from "primeng/breadcrumb";
|
|
55
|
-
import * as i54 from "primeng/treetable";
|
|
56
|
-
export declare class PrimeNgModule {
|
|
57
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PrimeNgModule, never>;
|
|
58
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimeNgModule, never, never, [typeof i1.AccordionModule, typeof i2.AutoFocusModule, typeof i3.BadgeModule, typeof i4.ButtonModule, typeof i5.CalendarModule, typeof i6.CardModule, typeof i7.CarouselModule, typeof i8.ChartModule, typeof i9.CheckboxModule, typeof i10.ChipModule, typeof i11.ConfirmDialogModule, typeof i12.ContextMenuModule, typeof i13.DataViewModule, typeof i14.DialogModule, typeof i15.DividerModule, typeof i16.DropdownModule, typeof i17.DynamicDialogModule, typeof i18.EditorModule, typeof i19.FieldsetModule, typeof i20.FileUploadModule, typeof i21.InputMaskModule, typeof i22.InputNumberModule, typeof i23.InputSwitchModule, typeof i24.InputTextModule, typeof i25.InputTextareaModule, typeof i26.KnobModule, typeof i27.MenuModule, typeof i28.MessageModule, typeof i29.MessagesModule, typeof i30.MultiSelectModule, typeof i31.OverlayModule, typeof i32.OverlayPanelModule, typeof i32.OverlayPanelModule, typeof i33.PanelModule, typeof i34.PanelMenuModule, typeof i35.PasswordModule, typeof i36.PickListModule, typeof i37.ProgressBarModule, typeof i38.RadioButtonModule, typeof i39.RatingModule, typeof i40.RippleModule, typeof i41.SidebarModule, typeof i42.SkeletonModule, typeof i43.SpeedDialModule, typeof i44.SplitButtonModule, typeof i45.StepsModule, typeof i46.TabViewModule, typeof i47.TableModule, typeof i48.ToastModule, typeof i49.ToolbarModule, typeof i50.TooltipModule, typeof i51.TreeModule, typeof i52.StyleClassModule, typeof i53.BreadcrumbModule, typeof i54.TreeTableModule]>;
|
|
59
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PrimeNgModule>;
|
|
60
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
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
|
-
}
|
|
14
|
-
export declare class FormService {
|
|
15
|
-
static disableControl(formGroup: FormGroup, controName: string): void;
|
|
16
|
-
static disableAndClearControl(formGroup: FormGroup, controName: string, value?: any): void;
|
|
17
|
-
static enableControl(formGroup: FormGroup, controName: string): void;
|
|
18
|
-
static getFormValue<T>(formGroup: FormGroup, controName: string): T;
|
|
19
|
-
static hasControlError(formGroup: FormGroup, control: string, errorCode?: string): boolean;
|
|
20
|
-
static invalidForm(formGroup: FormGroup, notification?: any): void;
|
|
21
|
-
static openDialog(dialogService: DialogService, componentType: Type<any>, callBackFunction: Function, paramsDialog?: paramsDialog): void;
|
|
22
|
-
static setControlValue(formGroup: FormGroup, controName: string, value: any): void;
|
|
23
|
-
static setValidators(formGroup: FormGroup, controName: string, validators: ValidatorFn | ValidatorFn[] | null): void;
|
|
24
|
-
static clearValidators(formGroup: FormGroup, controName: string): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormService, never>;
|
|
26
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FormService>;
|
|
27
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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 ɵfac: i0.ɵɵFactoryDeclaration<ImagensService, never>;
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ImagensService>;
|
|
8
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
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): void;
|
|
20
|
-
toastInfo(message: string): void;
|
|
21
|
-
toastWarn(message: string): void;
|
|
22
|
-
toastError(message: string): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
25
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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 ɵfac: i0.ɵɵFactoryDeclaration<ObjectService, never>;
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectService>;
|
|
8
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BaseComponentButton } from '../../api/base-components/base-component-button';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonPersonalizeComponent extends BaseComponentButton {
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonPersonalizeComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonPersonalizeComponent, "kv-button-personalize", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { BaseComponentButton } from '../../api/base-components/base-component-button';
|
|
2
|
-
import { MenuItem } from 'primeng/api';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ButtonPopupComponent extends BaseComponentButton {
|
|
5
|
-
items: MenuItem[];
|
|
6
|
-
icon: string;
|
|
7
|
-
constructor();
|
|
8
|
-
handleShow(): void;
|
|
9
|
-
handleHide(): void;
|
|
10
|
-
rotate(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonPopupComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonPopupComponent, "kv-button-popup", never, { "items": "items"; }, {}, never, never, false, never>;
|
|
13
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BaseComponentButton } from '../../api/base-components/base-component-button';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonSecondaryComponent extends BaseComponentButton {
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonSecondaryComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonSecondaryComponent, "kv-button-secondary", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BaseComponentButton } from '../../api/base-components/base-component-button';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonSuccessComponent extends BaseComponentButton {
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonSuccessComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonSuccessComponent, "kv-button-success", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./button-secondary/button-secondary.component";
|
|
3
|
-
import * as i2 from "./button-success/button-success.component";
|
|
4
|
-
import * as i3 from "./button-personalize/button-personalize.component";
|
|
5
|
-
import * as i4 from "./button-popup/button-popup.component";
|
|
6
|
-
import * as i5 from "../api/modules/primeng.module";
|
|
7
|
-
export declare class KvButtonsModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvButtonsModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvButtonsModule, [typeof i1.ButtonSecondaryComponent, typeof i2.ButtonSuccessComponent, typeof i3.ButtonPersonalizeComponent, typeof i4.ButtonPopupComponent], [typeof i5.PrimeNgModule], [typeof i1.ButtonSecondaryComponent, typeof i2.ButtonSuccessComponent, typeof i3.ButtonPersonalizeComponent, typeof i4.ButtonPopupComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvButtonsModule>;
|
|
11
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ChartConfig } from '../api/components/chart/chart.config';
|
|
3
|
-
import { MenuItem } from 'primeng/api';
|
|
4
|
-
import { UIChart } from 'primeng/chart';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare const PeriodosChart: {
|
|
7
|
-
Ultimos180Dias: number;
|
|
8
|
-
Ultimos120Dias: number;
|
|
9
|
-
Ultimos90Dias: number;
|
|
10
|
-
Ultimos60Dias: number;
|
|
11
|
-
Ultimos45Dias: number;
|
|
12
|
-
Ultimos30Dias: number;
|
|
13
|
-
Ultimos15Dias: number;
|
|
14
|
-
Ultimos7Dias: number;
|
|
15
|
-
DataAtual: number;
|
|
16
|
-
Proximos7Dias: number;
|
|
17
|
-
Proximos15Dias: number;
|
|
18
|
-
Proximos30Dias: number;
|
|
19
|
-
Proximos45Dias: number;
|
|
20
|
-
Proximos60Dias: number;
|
|
21
|
-
Proximos90Dias: number;
|
|
22
|
-
Proximos120Dias: number;
|
|
23
|
-
Proximos180Dias: number;
|
|
24
|
-
};
|
|
25
|
-
export declare class ChartComponent implements OnInit {
|
|
26
|
-
chartConfig: ChartConfig;
|
|
27
|
-
periodosDisponiveis: {
|
|
28
|
-
label: string;
|
|
29
|
-
value: number;
|
|
30
|
-
}[];
|
|
31
|
-
title: string;
|
|
32
|
-
type: 'doughnut' | 'pie' | 'bar' | 'line';
|
|
33
|
-
indexAxis: 'y' | 'x';
|
|
34
|
-
displayLegend: boolean;
|
|
35
|
-
showDatas: boolean;
|
|
36
|
-
showMenu: boolean;
|
|
37
|
-
selectedData: number;
|
|
38
|
-
enablePeriodos: number[];
|
|
39
|
-
data: any;
|
|
40
|
-
options: any;
|
|
41
|
-
periodos: any[];
|
|
42
|
-
menuItems: MenuItem[];
|
|
43
|
-
onPrintReport: EventEmitter<any>;
|
|
44
|
-
onSelectionValue: EventEmitter<any>;
|
|
45
|
-
chart?: UIChart;
|
|
46
|
-
constructor();
|
|
47
|
-
configureGraphic(): void;
|
|
48
|
-
private configOptions;
|
|
49
|
-
private initDatas;
|
|
50
|
-
ngOnInit(): void;
|
|
51
|
-
printReport(): void;
|
|
52
|
-
reInit(config: any): void;
|
|
53
|
-
protected selectionValue(event: any): void;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kv-chart", never, { "title": "title"; "type": "type"; "indexAxis": "indexAxis"; "displayLegend": "displayLegend"; "showDatas": "showDatas"; "showMenu": "showMenu"; "selectedData": "selectedData"; "enablePeriodos": "enablePeriodos"; }, { "onPrintReport": "onPrintReport"; "onSelectionValue": "onSelectionValue"; }, never, never, false, never>;
|
|
56
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./chart.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 KvChartModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvChartModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvChartModule, [typeof i1.ChartComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule], [typeof i1.ChartComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvChartModule>;
|
|
10
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
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": "type"; "name": "cTemplate"; }, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CheckComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
-
onCheckChange: EventEmitter<any>;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
emitOnCheckChange(event: any): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckComponent, "kv-check", never, {}, { "onCheckChange": "onCheckChange"; }, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { DialogService } from 'primeng/dynamicdialog';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import { BaseComponentDropDown } from '../../api/base-components/base-component-dropdown';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class DropdownComponent extends BaseComponentDropDown implements OnInit {
|
|
7
|
-
constructor(componentService: ComponentService, dialogService: DialogService);
|
|
8
|
-
dropDowValue: any;
|
|
9
|
-
itemTemplate: TemplateRef<any>;
|
|
10
|
-
selectedItemTemplate: TemplateRef<any>;
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kv-dropdown", never, { "dropDowValue": "dropDowValue"; "itemTemplate": "itemTemplate"; "selectedItemTemplate": "selectedItemTemplate"; }, {}, never, ["*"], false, never>;
|
|
14
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class EditorComponent extends BaseComponentInput<string> {
|
|
6
|
-
constructor(componentService: ComponentService);
|
|
7
|
-
/**
|
|
8
|
-
* @type {boolean}
|
|
9
|
-
* @description
|
|
10
|
-
* Esse item define se o editor e somente para leitura
|
|
11
|
-
*/
|
|
12
|
-
readonly: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* @type {boolean}
|
|
15
|
-
* @description
|
|
16
|
-
* Esse item define o tamanho do canva
|
|
17
|
-
*/
|
|
18
|
-
canvaHeigth: string;
|
|
19
|
-
debug: boolean;
|
|
20
|
-
modules: object;
|
|
21
|
-
/**
|
|
22
|
-
* @type {TemplateRef}
|
|
23
|
-
* @description
|
|
24
|
-
* Esse item e opcional, mas caso precise de definir um template personalizado com base em clases css do quill poderar passar sua toolbar por aqui
|
|
25
|
-
*/
|
|
26
|
-
tollbartemplate: TemplateRef<any>;
|
|
27
|
-
/**
|
|
28
|
-
* @description Executado a cada iteração
|
|
29
|
-
*/
|
|
30
|
-
onTextChange: EventEmitter<any>;
|
|
31
|
-
/**
|
|
32
|
-
* @description Executado a cada seleção
|
|
33
|
-
*/
|
|
34
|
-
onSelectionChange: EventEmitter<any>;
|
|
35
|
-
textChange($event: any): void;
|
|
36
|
-
selectionChange($event: any): void;
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "kv-editor", never, { "readonly": "readonly"; "canvaHeigth": "canvaHeigth"; "debug": "debug"; "modules": "modules"; "tollbartemplate": "tollbartemplate"; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; }, never, never, false, never>;
|
|
39
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { CalendarTypeView } from 'primeng/calendar';
|
|
3
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InputCalendarComponent extends BaseComponentInput<Date> implements OnInit {
|
|
7
|
-
isYear: boolean;
|
|
8
|
-
isMonthYear: boolean;
|
|
9
|
-
minDate: Date;
|
|
10
|
-
maxDate: Date;
|
|
11
|
-
showButtonBar: boolean;
|
|
12
|
-
showIcon: boolean;
|
|
13
|
-
showTime: boolean;
|
|
14
|
-
selectionMode: 'single' | 'multiple' | 'range';
|
|
15
|
-
onSelectionChange: EventEmitter<any>;
|
|
16
|
-
onSelectionValue: EventEmitter<any>;
|
|
17
|
-
private dateFilter;
|
|
18
|
-
typeView: CalendarTypeView;
|
|
19
|
-
dateFormat: string;
|
|
20
|
-
constructor(componentService: ComponentService);
|
|
21
|
-
writeValue(value: Date): void;
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
protected onInputChange(event: any): void;
|
|
24
|
-
hideOnRangeMode(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputCalendarComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCalendarComponent, "kv-input-calendar", never, { "isYear": "isYear"; "isMonthYear": "isMonthYear"; "minDate": "minDate"; "maxDate": "maxDate"; "showButtonBar": "showButtonBar"; "showIcon": "showIcon"; "showTime": "showTime"; "selectionMode": "selectionMode"; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
|
|
27
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputMaskComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
mask: string;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputMaskComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent, "kv-input-mask", never, { "mask": "mask"; }, {}, never, ["*"], false, never>;
|
|
10
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { InputNumber } from 'primeng/inputnumber';
|
|
3
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InputNumberComponent extends BaseComponentInput<string> implements OnInit {
|
|
7
|
-
mode: 'currency' | 'decimal';
|
|
8
|
-
digits: number;
|
|
9
|
-
min: number;
|
|
10
|
-
max: number;
|
|
11
|
-
suffix: string;
|
|
12
|
-
inputNumber: InputNumber;
|
|
13
|
-
constructor(componentService: ComponentService);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
private configDecimal;
|
|
16
|
-
private configCurrency;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "kv-input-number", never, { "mode": "mode"; "digits": "digits"; "min": "min"; "max": "max"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
|
|
19
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputPasswordComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
feedback: boolean;
|
|
7
|
-
mediumRegex: string;
|
|
8
|
-
strongRegex: string;
|
|
9
|
-
toggleMask: boolean;
|
|
10
|
-
constructor(componentService: ComponentService);
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "kv-input-password", never, { "feedback": "feedback"; "mediumRegex": "mediumRegex"; "strongRegex": "strongRegex"; "toggleMask": "toggleMask"; }, {}, never, ["*"], false, never>;
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
constructor(componentService: ComponentService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kv-input-text", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextCheckboxComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
constructor(componentService: ComponentService);
|
|
7
|
-
checkBoxEmit: EventEmitter<boolean>;
|
|
8
|
-
tooltipCheckbox: string;
|
|
9
|
-
private _checkBoxValue;
|
|
10
|
-
set checkBoxValue(value: boolean);
|
|
11
|
-
get checkBoxValue(): boolean;
|
|
12
|
-
emitCheckBoxValue(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextCheckboxComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": "tooltipCheckbox"; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
|
|
15
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextareaComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
multiline: boolean;
|
|
7
|
-
rows: number;
|
|
8
|
-
cols: number;
|
|
9
|
-
autoResize: boolean;
|
|
10
|
-
maxValueLength: number;
|
|
11
|
-
counterValueLength: number;
|
|
12
|
-
constructor(componentService: ComponentService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "kv-input-textarea", never, { "multiline": "multiline"; "rows": "rows"; "cols": "cols"; "autoResize": "autoResize"; "maxValueLength": "maxValueLength"; }, {}, never, ["*"], false, never>;
|
|
16
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTimeComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
showIcon: boolean;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTimeComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTimeComponent, "kv-input-time", never, { "showIcon": "showIcon"; }, {}, never, ["*"], false, never>;
|
|
10
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./check/check.component";
|
|
3
|
-
import * as i2 from "./dropdown/dropdown.component";
|
|
4
|
-
import * as i3 from "./input-calendar/input-calendar.component";
|
|
5
|
-
import * as i4 from "./input-mask/input-mask.component";
|
|
6
|
-
import * as i5 from "./input-number/input-number.component";
|
|
7
|
-
import * as i6 from "./input-password/input-password.component";
|
|
8
|
-
import * as i7 from "./input-text/input-text.component";
|
|
9
|
-
import * as i8 from "./input-textarea/input-textarea.component";
|
|
10
|
-
import * as i9 from "./input-time/input-time.component";
|
|
11
|
-
import * as i10 from "./multi-select/multi-select.component";
|
|
12
|
-
import * as i11 from "./switch/switch.component";
|
|
13
|
-
import * as i12 from "./radio-group/radio-group.component";
|
|
14
|
-
import * as i13 from "./input-text-checkbox/input-text-checkbox.component";
|
|
15
|
-
import * as i14 from "./editor/editor.component";
|
|
16
|
-
import * as i15 from "@angular/common";
|
|
17
|
-
import * as i16 from "@angular/forms";
|
|
18
|
-
import * as i17 from "../api/components/error/kverror.module";
|
|
19
|
-
import * as i18 from "../api/modules/primeng.module";
|
|
20
|
-
import * as i19 from "../label/label.module";
|
|
21
|
-
export declare class KvInputsModule {
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
|
|
23
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent, typeof i14.EditorComponent], [typeof i15.CommonModule, typeof i16.FormsModule, typeof i17.kvErrorModule, typeof i18.PrimeNgModule, typeof i16.ReactiveFormsModule, typeof i19.LabelModule], [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent, typeof i14.EditorComponent]>;
|
|
24
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
|
|
25
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
2
|
-
import { BaseComponentMultiSelect } from '../../api/base-components/base-component-multi-select';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MultiSelectComponent extends BaseComponentMultiSelect {
|
|
5
|
-
optionInactive: boolean;
|
|
6
|
-
group: boolean;
|
|
7
|
-
inactiveOptions: string;
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
constructor(componentService: ComponentService);
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "optionInactive": "optionInactive"; "group": "group"; }, {}, never, ["*"], false, never>;
|
|
12
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { DoCheck, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class RadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
|
|
6
|
-
options: any[];
|
|
7
|
-
optionValueDefault: any;
|
|
8
|
-
onSelectedOption: EventEmitter<any>;
|
|
9
|
-
vertical: boolean;
|
|
10
|
-
selectedOpt: any;
|
|
11
|
-
constructor(componentService: ComponentService);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
ngDoCheck(): void;
|
|
14
|
-
selectedDefault(): void;
|
|
15
|
-
selectedOption(event: any): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "kv-radio-group", never, { "options": "options"; "optionValueDefault": "optionValueDefault"; "vertical": "vertical"; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
|
|
18
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SwitchComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
-
switchValue: boolean;
|
|
7
|
-
onSwitchChange: EventEmitter<any>;
|
|
8
|
-
constructor(componentService: ComponentService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
emitOnSwitchChange(event: any): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kv-switch", never, { "switchValue": "switchValue"; }, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
|
|
13
|
-
}
|