keevo-components 1.5.191 → 1.5.192
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/esm2020/keevo-components.mjs +5 -0
- package/esm2020/lib/api/base-components/base-component-button.mjs +36 -0
- package/esm2020/lib/api/base-components/base-component-chart.mjs +92 -0
- package/esm2020/lib/api/base-components/base-component-crud-form.mjs +270 -0
- package/esm2020/lib/api/base-components/base-component-crud-list.mjs +68 -0
- package/esm2020/lib/api/base-components/base-component-crud.mjs +65 -0
- package/esm2020/lib/api/base-components/base-component-dropdown-new.mjs +211 -0
- package/esm2020/lib/api/base-components/base-component-dropdown.mjs +161 -0
- package/esm2020/lib/api/base-components/base-component-input.mjs +94 -0
- package/esm2020/lib/api/base-components/base-component-multi-select.mjs +128 -0
- package/esm2020/lib/api/base-components/base-component.mjs +49 -0
- package/esm2020/lib/api/components/chart/chart.config.mjs +2 -0
- package/esm2020/lib/api/components/chart/chart.model.mjs +2 -0
- package/esm2020/lib/api/components/chart/orchart.config.mjs +2 -0
- package/esm2020/lib/api/components/chart/orchart.item.mjs +2 -0
- package/esm2020/lib/api/components/dropdown/filtro.combo.mjs +2 -0
- package/esm2020/lib/api/components/error/error.component.mjs +26 -0
- package/esm2020/lib/api/components/error/kverror.module.mjs +35 -0
- package/esm2020/lib/api/components/table/action-item.mjs +2 -0
- package/esm2020/lib/api/components/table/kv-menuitem.mjs +3 -0
- package/esm2020/lib/api/components/table/table.config.column.mjs +2 -0
- package/esm2020/lib/api/components/table/table.config.mjs +2 -0
- package/esm2020/lib/api/components/table/table.paginate.mjs +9 -0
- package/esm2020/lib/api/helpers/component-providers.mjs +16 -0
- package/esm2020/lib/api/helpers/keevo-validators.mjs +64 -0
- package/esm2020/lib/api/helpers/translate-primeng.mjs +23 -0
- package/esm2020/lib/api/models/menu/menu.model.mjs +2 -0
- package/esm2020/lib/api/models/menu/menucompleto.model.mjs +2 -0
- package/esm2020/lib/api/models/menu/sistemamenu.model.mjs +2 -0
- package/esm2020/lib/api/modules/primeng.module.mjs +247 -0
- package/esm2020/lib/api/services/base.api.service.mjs +74 -0
- package/esm2020/lib/api/services/component.service.mjs +27 -0
- package/esm2020/lib/api/services/form.service.mjs +84 -0
- package/esm2020/lib/api/services/imagens.service.mjs +22 -0
- package/esm2020/lib/api/services/notification.service.mjs +67 -0
- package/esm2020/lib/api/services/object.service.mjs +26 -0
- package/esm2020/lib/buttons/button-personalize/button-personalize.component.mjs +17 -0
- package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +31 -0
- package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +17 -0
- package/esm2020/lib/buttons/button-success/button-success.component.mjs +17 -0
- package/esm2020/lib/buttons/kvbutton.module.mjs +39 -0
- package/esm2020/lib/chart/chart.component.mjs +145 -0
- package/esm2020/lib/chart/kvchart.module.mjs +32 -0
- package/esm2020/lib/directives/template.directive.mjs +24 -0
- package/esm2020/lib/inputs/check/check.component.mjs +26 -0
- package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +37 -0
- package/esm2020/lib/inputs/editor/editor.component.mjs +70 -0
- package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +89 -0
- package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +23 -0
- package/esm2020/lib/inputs/input-number/input-number.component.mjs +59 -0
- package/esm2020/lib/inputs/input-password/input-password.component.mjs +33 -0
- package/esm2020/lib/inputs/input-text/input-text.component.mjs +21 -0
- package/esm2020/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +38 -0
- package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +43 -0
- package/esm2020/lib/inputs/input-time/input-time.component.mjs +24 -0
- package/esm2020/lib/inputs/kvinputs.module.mjs +108 -0
- package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +38 -0
- package/esm2020/lib/inputs/radio-group/radio-group.component.mjs +53 -0
- package/esm2020/lib/inputs/switch/switch.component.mjs +32 -0
- package/esm2020/lib/keevo-components.module.mjs +105 -0
- package/esm2020/lib/label/label.component.mjs +15 -0
- package/esm2020/lib/label/label.module.mjs +24 -0
- package/esm2020/lib/loader/kvloader.module.mjs +28 -0
- package/esm2020/lib/loader/loader.component.mjs +17 -0
- package/esm2020/lib/loader/loader.service.mjs +29 -0
- package/esm2020/lib/login/kvlogin.module.mjs +47 -0
- package/esm2020/lib/login/login.component.mjs +52 -0
- package/esm2020/lib/menu/kvmenu.module.mjs +43 -0
- package/esm2020/lib/menu/menu.component.mjs +237 -0
- package/esm2020/lib/orgchart/orgchart.component.mjs +100 -0
- package/esm2020/lib/orgchart/orgchart.module.mjs +24 -0
- package/esm2020/lib/page-form/kv-page-form.module.mjs +38 -0
- package/esm2020/lib/page-form/page-form.component.mjs +144 -0
- package/esm2020/lib/picklist/kvpicklist.module.mjs +32 -0
- package/esm2020/lib/picklist/picklist.component.mjs +48 -0
- package/esm2020/lib/pipes/codigofile.pipe.mjs +19 -0
- package/esm2020/lib/pipes/cpfcnpj.pipe.mjs +25 -0
- package/esm2020/lib/pipes/pipes.module.mjs +34 -0
- package/esm2020/lib/pipes/telefone.pipe.mjs +45 -0
- package/esm2020/lib/table/kvtable.module.mjs +32 -0
- package/esm2020/lib/table/table.component.mjs +499 -0
- package/esm2020/lib/tree-table/kv-treetable.component.mjs +371 -0
- package/esm2020/lib/tree-table/kv-treetable.module.mjs +32 -0
- package/esm2020/lib/tree-view/kvtree-view.module.mjs +28 -0
- package/esm2020/lib/tree-view/tree-view.component.mjs +29 -0
- package/esm2020/lib/workspace/kvworkspace.module.mjs +47 -0
- package/esm2020/lib/workspace/workspace.component.mjs +77 -0
- package/esm2020/public-api.mjs +138 -0
- package/fesm2015/keevo-components.mjs +4705 -0
- package/fesm2015/keevo-components.mjs.map +1 -0
- package/fesm2020/keevo-components.mjs +4696 -0
- package/fesm2020/keevo-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/api/base-components/base-component-button.d.ts +14 -0
- package/lib/api/base-components/base-component-chart.d.ts +40 -0
- package/lib/api/base-components/base-component-crud-form.d.ts +137 -0
- package/lib/api/base-components/base-component-crud-list.d.ts +63 -0
- package/lib/api/base-components/base-component-crud.d.ts +36 -0
- package/lib/api/base-components/base-component-dropdown-new.d.ts +14 -0
- package/lib/api/base-components/base-component-dropdown.d.ts +42 -0
- package/lib/api/base-components/base-component-input.d.ts +31 -0
- package/lib/api/base-components/base-component-multi-select.d.ts +35 -0
- package/lib/api/base-components/base-component.d.ts +21 -0
- package/lib/api/components/chart/chart.config.d.ts +11 -0
- package/lib/api/components/chart/chart.model.d.ts +9 -0
- package/lib/api/components/chart/orchart.config.d.ts +35 -0
- package/lib/api/components/chart/orchart.item.d.ts +26 -0
- package/lib/api/components/dropdown/filtro.combo.d.ts +4 -0
- package/lib/api/components/error/error.component.d.ts +12 -0
- package/lib/api/components/error/kverror.module.d.ts +10 -0
- package/lib/api/components/table/action-item.d.ts +5 -0
- package/lib/api/components/table/kv-menuitem.d.ts +9 -0
- package/lib/api/components/table/table.config.column.d.ts +21 -0
- package/lib/api/components/table/table.config.d.ts +17 -0
- package/lib/api/components/table/table.paginate.d.ts +6 -0
- package/lib/api/helpers/component-providers.d.ts +2 -0
- package/lib/api/helpers/keevo-validators.d.ts +10 -0
- package/lib/api/helpers/translate-primeng.d.ts +4 -0
- package/lib/api/models/menu/menu.model.d.ts +10 -0
- package/{src/lib/api/models/menu/menucompleto.model.ts → lib/api/models/menu/menucompleto.model.d.ts} +3 -4
- package/lib/api/models/menu/sistemamenu.model.d.ts +8 -0
- package/lib/api/modules/primeng.module.d.ts +60 -0
- package/lib/api/services/base.api.service.d.ts +25 -0
- package/lib/api/services/component.service.d.ts +11 -0
- package/lib/api/services/form.service.d.ts +27 -0
- package/lib/api/services/imagens.service.d.ts +8 -0
- package/lib/api/services/notification.service.d.ts +25 -0
- package/lib/api/services/object.service.d.ts +8 -0
- package/lib/buttons/button-personalize/button-personalize.component.d.ts +7 -0
- package/lib/buttons/button-popup/button-popup.component.d.ts +13 -0
- package/lib/buttons/button-secondary/button-secondary.component.d.ts +7 -0
- package/lib/buttons/button-success/button-success.component.d.ts +7 -0
- package/lib/buttons/kvbutton.module.d.ts +11 -0
- package/lib/chart/chart.component.d.ts +56 -0
- package/lib/chart/kvchart.module.d.ts +10 -0
- package/lib/directives/template.directive.d.ts +11 -0
- package/lib/inputs/check/check.component.d.ts +11 -0
- package/lib/inputs/dropdown/dropdown.component.d.ts +14 -0
- package/lib/inputs/editor/editor.component.d.ts +39 -0
- package/lib/inputs/input-calendar/input-calendar.component.d.ts +27 -0
- package/lib/inputs/input-mask/input-mask.component.d.ts +10 -0
- package/lib/inputs/input-number/input-number.component.d.ts +19 -0
- package/lib/inputs/input-password/input-password.component.d.ts +13 -0
- package/lib/inputs/input-text/input-text.component.d.ts +9 -0
- package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +15 -0
- package/lib/inputs/input-textarea/input-textarea.component.d.ts +16 -0
- package/lib/inputs/input-time/input-time.component.d.ts +10 -0
- package/lib/inputs/kvinputs.module.d.ts +25 -0
- package/lib/inputs/multi-select/multi-select.component.d.ts +12 -0
- package/lib/inputs/radio-group/radio-group.component.d.ts +18 -0
- package/lib/inputs/switch/switch.component.d.ts +13 -0
- package/lib/keevo-components.module.d.ts +19 -0
- package/lib/label/label.component.d.ts +7 -0
- package/lib/label/label.module.d.ts +8 -0
- package/lib/loader/kvloader.module.d.ts +9 -0
- package/lib/loader/loader.component.d.ts +8 -0
- package/lib/loader/loader.service.d.ts +10 -0
- package/lib/login/kvlogin.module.d.ts +13 -0
- package/lib/login/login.component.d.ts +30 -0
- package/lib/menu/kvmenu.module.d.ts +12 -0
- package/lib/menu/menu.component.d.ts +74 -0
- package/lib/orgchart/orgchart.component.d.ts +27 -0
- package/lib/orgchart/orgchart.module.d.ts +9 -0
- package/lib/page-form/kv-page-form.module.d.ts +11 -0
- package/lib/page-form/page-form.component.d.ts +69 -0
- package/lib/picklist/kvpicklist.module.d.ts +10 -0
- package/lib/picklist/picklist.component.d.ts +20 -0
- package/lib/pipes/codigofile.pipe.d.ts +7 -0
- package/lib/pipes/cpfcnpj.pipe.d.ts +7 -0
- package/lib/pipes/pipes.module.d.ts +10 -0
- package/lib/pipes/telefone.pipe.d.ts +7 -0
- package/lib/table/kvtable.module.d.ts +10 -0
- package/lib/table/table.component.d.ts +104 -0
- package/lib/tree-table/kv-treetable.component.d.ts +84 -0
- package/lib/tree-table/kv-treetable.module.d.ts +11 -0
- package/lib/tree-view/kvtree-view.module.d.ts +9 -0
- package/lib/tree-view/tree-view.component.d.ts +14 -0
- package/lib/workspace/kvworkspace.module.d.ts +13 -0
- package/lib/workspace/workspace.component.d.ts +28 -0
- package/package.json +22 -3
- package/{src/public-api.ts → public-api.d.ts} +14 -36
- package/ng-package.json +0 -7
- package/src/assets/.gitkeep +0 -0
- package/src/assets/images/LogoEvo.png +0 -0
- package/src/assets/images/LogoPequenaEvo.png +0 -0
- package/src/assets/images/background.png +0 -0
- package/src/assets/images/keepass-logo.png +0 -0
- package/src/assets/images/keepass-logo.svg +0 -74
- package/src/assets/images/keevo-logo.png +0 -0
- package/src/assets/images/logokeevo_2.png +0 -0
- package/src/index.ts +0 -1
- package/src/lib/api/base-components/base-component-button.ts +0 -27
- package/src/lib/api/base-components/base-component-chart.ts +0 -105
- package/src/lib/api/base-components/base-component-crud-form.ts +0 -328
- package/src/lib/api/base-components/base-component-crud-list.ts +0 -111
- package/src/lib/api/base-components/base-component-crud.ts +0 -70
- package/src/lib/api/base-components/base-component-dropdown-new.ts +0 -112
- package/src/lib/api/base-components/base-component-dropdown.ts +0 -164
- package/src/lib/api/base-components/base-component-input.ts +0 -107
- package/src/lib/api/base-components/base-component-multi-select.ts +0 -136
- package/src/lib/api/base-components/base-component.ts +0 -46
- package/src/lib/api/components/chart/chart.config.ts +0 -12
- package/src/lib/api/components/chart/chart.model.ts +0 -9
- package/src/lib/api/components/chart/orchart.config.ts +0 -41
- package/src/lib/api/components/chart/orchart.item.ts +0 -33
- package/src/lib/api/components/dropdown/filtro.combo.ts +0 -4
- package/src/lib/api/components/error/error.component.html +0 -3
- package/src/lib/api/components/error/error.component.scss +0 -5
- package/src/lib/api/components/error/error.component.ts +0 -22
- package/src/lib/api/components/error/kverror.module.ts +0 -23
- package/src/lib/api/components/table/action-item.ts +0 -5
- package/src/lib/api/components/table/kv-menuitem.ts +0 -10
- package/src/lib/api/components/table/table.config.column.ts +0 -21
- package/src/lib/api/components/table/table.config.ts +0 -20
- package/src/lib/api/components/table/table.paginate.ts +0 -6
- package/src/lib/api/helpers/component-providers.ts +0 -16
- package/src/lib/api/helpers/keevo-validators.ts +0 -77
- package/src/lib/api/helpers/translate-primeng.ts +0 -25
- package/src/lib/api/models/menu/menu.model.ts +0 -10
- package/src/lib/api/models/menu/sistemamenu.model.ts +0 -8
- package/src/lib/api/modules/primeng.module.ts +0 -125
- package/src/lib/api/services/base.api.service.ts +0 -115
- package/src/lib/api/services/component.service.ts +0 -22
- package/src/lib/api/services/form.service.ts +0 -105
- package/src/lib/api/services/imagens.service.ts +0 -20
- package/src/lib/api/services/notification.service.ts +0 -82
- package/src/lib/api/services/object.service.ts +0 -20
- package/src/lib/buttons/button-personalize/button-personalize.component.html +0 -11
- package/src/lib/buttons/button-personalize/button-personalize.component.scss +0 -3
- package/src/lib/buttons/button-personalize/button-personalize.component.ts +0 -13
- package/src/lib/buttons/button-popup/button-popup.component.html +0 -12
- package/src/lib/buttons/button-popup/button-popup.component.scss +0 -13
- package/src/lib/buttons/button-popup/button-popup.component.ts +0 -30
- package/src/lib/buttons/button-secondary/button-secondary.component.html +0 -12
- package/src/lib/buttons/button-secondary/button-secondary.component.scss +0 -14
- package/src/lib/buttons/button-secondary/button-secondary.component.ts +0 -13
- package/src/lib/buttons/button-success/button-success.component.html +0 -11
- package/src/lib/buttons/button-success/button-success.component.scss +0 -13
- package/src/lib/buttons/button-success/button-success.component.ts +0 -13
- package/src/lib/buttons/kvbutton.module.ts +0 -25
- package/src/lib/chart/chart.component.html +0 -38
- package/src/lib/chart/chart.component.scss +0 -0
- package/src/lib/chart/chart.component.spec.ts +0 -28
- package/src/lib/chart/chart.component.ts +0 -141
- package/src/lib/chart/kvchart.module.ts +0 -20
- package/src/lib/directives/template.directive.ts +0 -15
- package/src/lib/inputs/check/check.component.html +0 -11
- package/src/lib/inputs/check/check.component.scss +0 -13
- package/src/lib/inputs/check/check.component.ts +0 -24
- package/src/lib/inputs/dropdown/dropdown.component.html +0 -91
- package/src/lib/inputs/dropdown/dropdown.component.scss +0 -0
- package/src/lib/inputs/dropdown/dropdown.component.ts +0 -28
- package/src/lib/inputs/editor/editor.component.html +0 -90
- package/src/lib/inputs/editor/editor.component.scss +0 -4
- package/src/lib/inputs/editor/editor.component.ts +0 -80
- package/src/lib/inputs/input-calendar/input-calendar.component.html +0 -30
- package/src/lib/inputs/input-calendar/input-calendar.component.scss +0 -0
- package/src/lib/inputs/input-calendar/input-calendar.component.ts +0 -81
- package/src/lib/inputs/input-mask/input-mask.component.html +0 -20
- package/src/lib/inputs/input-mask/input-mask.component.scss +0 -0
- package/src/lib/inputs/input-mask/input-mask.component.ts +0 -20
- package/src/lib/inputs/input-number/input-number.component.html +0 -22
- package/src/lib/inputs/input-number/input-number.component.scss +0 -0
- package/src/lib/inputs/input-number/input-number.component.ts +0 -52
- package/src/lib/inputs/input-password/input-password.component.html +0 -23
- package/src/lib/inputs/input-password/input-password.component.scss +0 -0
- package/src/lib/inputs/input-password/input-password.component.ts +0 -23
- package/src/lib/inputs/input-text/input-text.component.html +0 -20
- package/src/lib/inputs/input-text/input-text.component.scss +0 -18
- package/src/lib/inputs/input-text/input-text.component.ts +0 -17
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.html +0 -32
- 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 +0 -23
- package/src/lib/inputs/input-text-checkbox/input-text-checkbox.component.ts +0 -36
- package/src/lib/inputs/input-textarea/input-textarea.component.html +0 -22
- package/src/lib/inputs/input-textarea/input-textarea.component.scss +0 -0
- package/src/lib/inputs/input-textarea/input-textarea.component.ts +0 -33
- package/src/lib/inputs/input-time/input-time.component.html +0 -23
- package/src/lib/inputs/input-time/input-time.component.scss +0 -0
- package/src/lib/inputs/input-time/input-time.component.ts +0 -20
- package/src/lib/inputs/kvinputs.module.ts +0 -64
- package/src/lib/inputs/multi-select/multi-select.component.html +0 -28
- package/src/lib/inputs/multi-select/multi-select.component.scss +0 -8
- package/src/lib/inputs/multi-select/multi-select.component.ts +0 -31
- package/src/lib/inputs/radio-group/radio-group.component.html +0 -19
- package/src/lib/inputs/radio-group/radio-group.component.scss +0 -15
- package/src/lib/inputs/radio-group/radio-group.component.ts +0 -50
- package/src/lib/inputs/switch/switch.component.html +0 -12
- package/src/lib/inputs/switch/switch.component.scss +0 -3
- package/src/lib/inputs/switch/switch.component.ts +0 -30
- package/src/lib/keevo-components.module.ts +0 -50
- package/src/lib/label/label.component.html +0 -6
- package/src/lib/label/label.component.scss +0 -9
- package/src/lib/label/label.component.spec.ts +0 -23
- package/src/lib/label/label.component.ts +0 -13
- package/src/lib/label/label.module.ts +0 -18
- package/src/lib/loader/kvloader.module.ts +0 -17
- package/src/lib/loader/loader.component.html +0 -1
- package/src/lib/loader/loader.component.ts +0 -14
- package/src/lib/loader/loader.service.ts +0 -26
- package/src/lib/login/kvlogin.module.ts +0 -28
- package/src/lib/login/login.component.html +0 -108
- package/src/lib/login/login.component.scss +0 -48
- package/src/lib/login/login.component.spec.ts +0 -23
- package/src/lib/login/login.component.ts +0 -65
- package/src/lib/menu/kvmenu.module.ts +0 -27
- package/src/lib/menu/menu.component.html +0 -342
- package/src/lib/menu/menu.component.scss +0 -210
- package/src/lib/menu/menu.component.spec.ts +0 -23
- package/src/lib/menu/menu.component.ts +0 -246
- package/src/lib/orgchart/orgchart.component.html +0 -58
- package/src/lib/orgchart/orgchart.component.scss +0 -21
- package/src/lib/orgchart/orgchart.component.ts +0 -118
- package/src/lib/orgchart/orgchart.module.ts +0 -14
- package/src/lib/page-form/kv-page-form.module.ts +0 -22
- package/src/lib/page-form/page-form.component.html +0 -57
- package/src/lib/page-form/page-form.component.scss +0 -72
- package/src/lib/page-form/page-form.component.spec.ts +0 -28
- package/src/lib/page-form/page-form.component.ts +0 -121
- package/src/lib/picklist/kvpicklist.module.ts +0 -20
- package/src/lib/picklist/picklist.component.html +0 -17
- package/src/lib/picklist/picklist.component.scss +0 -0
- package/src/lib/picklist/picklist.component.spec.ts +0 -26
- package/src/lib/picklist/picklist.component.ts +0 -27
- package/src/lib/pipes/codigofile.pipe.ts +0 -15
- package/src/lib/pipes/cpfcnpj.pipe.ts +0 -21
- package/src/lib/pipes/pipes.module.ts +0 -22
- package/src/lib/pipes/telefone.pipe.ts +0 -38
- package/src/lib/styles-components.scss +0 -11
- package/src/lib/table/kvtable.module.ts +0 -22
- package/src/lib/table/table.component.html +0 -473
- package/src/lib/table/table.component.scss +0 -240
- package/src/lib/table/table.component.spec.ts +0 -28
- package/src/lib/table/table.component.ts +0 -546
- package/src/lib/tree-table/kv-treetable.component.html +0 -649
- package/src/lib/tree-table/kv-treetable.component.scss +0 -315
- package/src/lib/tree-table/kv-treetable.component.ts +0 -390
- package/src/lib/tree-table/kv-treetable.module.ts +0 -18
- package/src/lib/tree-view/kvtree-view.module.ts +0 -19
- package/src/lib/tree-view/tree-view.component.html +0 -9
- package/src/lib/tree-view/tree-view.component.scss +0 -0
- package/src/lib/tree-view/tree-view.component.spec.ts +0 -23
- package/src/lib/tree-view/tree-view.component.ts +0 -29
- package/src/lib/workspace/kvworkspace.module.ts +0 -29
- package/src/lib/workspace/workspace.component.html +0 -108
- package/src/lib/workspace/workspace.component.scss +0 -83
- package/src/lib/workspace/workspace.component.ts +0 -75
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -14
|
@@ -1,473 +0,0 @@
|
|
|
1
|
-
<div>
|
|
2
|
-
|
|
3
|
-
<p-panel
|
|
4
|
-
*ngIf="filtrosAvancados"
|
|
5
|
-
header="Filtros avançados"
|
|
6
|
-
[toggleable]="true"
|
|
7
|
-
[collapsed]="true"
|
|
8
|
-
collapsedIcon="pi pi-filter"
|
|
9
|
-
styleClass="bg-gray-200"
|
|
10
|
-
[style]="{'margin-bottom': '2px'}"
|
|
11
|
-
>
|
|
12
|
-
<ng-content></ng-content>
|
|
13
|
-
</p-panel>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<p-table
|
|
17
|
-
*ngIf="config"
|
|
18
|
-
#dt
|
|
19
|
-
styleClass="p-datatable-sm"
|
|
20
|
-
[value]="dataSource"
|
|
21
|
-
[(selection)]="selectedItems"
|
|
22
|
-
[rowSelectable]="isRowSelectable"
|
|
23
|
-
[columns]="config.columns"
|
|
24
|
-
[globalFilterFields]="globalFilterFields"
|
|
25
|
-
[rows]="rows"
|
|
26
|
-
[paginator]="paginator"
|
|
27
|
-
[rowsPerPageOptions]="rowsPerPageOptions"
|
|
28
|
-
[showCurrentPageReport]="true"
|
|
29
|
-
currentPageReportTemplate="{first} - {last} de {{totalRecords}}"
|
|
30
|
-
[rowHover]="true"
|
|
31
|
-
[totalRecords]="totalRecords"
|
|
32
|
-
[lazy]="config.lazy"
|
|
33
|
-
(onLazyLoad)="paginate($event)"
|
|
34
|
-
(selectionChange)="selectionChange($event)"
|
|
35
|
-
rowGroupMode="rowspan"
|
|
36
|
-
[groupRowsBy]="config.fieldGroup"
|
|
37
|
-
[showFirstLastIcon]="showFirstLastIcon"
|
|
38
|
-
[pageLinks]="pageLinksOptions"
|
|
39
|
-
[responsive]="true"
|
|
40
|
-
responsiveLayout="stack"
|
|
41
|
-
>
|
|
42
|
-
<ng-template
|
|
43
|
-
pTemplate="caption"
|
|
44
|
-
*ngIf="config.enableCation"
|
|
45
|
-
>
|
|
46
|
-
<div class="flex flex-row flex-wrap justify-content-between align-items-center grid formgrid p-fluid col-12">
|
|
47
|
-
|
|
48
|
-
<div class="col-12 flex flex-column">
|
|
49
|
-
<div
|
|
50
|
-
*ngIf="config.title"
|
|
51
|
-
class="text-md font-bold my-3"
|
|
52
|
-
>
|
|
53
|
-
{{ config.title }}
|
|
54
|
-
</div>
|
|
55
|
-
<div
|
|
56
|
-
*ngIf="config.subtitle"
|
|
57
|
-
class="text-sm mb-4 font-medium"
|
|
58
|
-
>
|
|
59
|
-
{{ config.subtitle }}
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
62
|
-
|
|
63
|
-
<div [class]="
|
|
64
|
-
tamanhoTela < 768
|
|
65
|
-
? 'flex flex-row align-items-center col-10 md:col-6 lg:col-4'
|
|
66
|
-
: 'flex flex-row align-items-center col-12 md:col-6 lg:col-4 input-search'
|
|
67
|
-
">
|
|
68
|
-
<span
|
|
69
|
-
*ngIf="config.enableFilter"
|
|
70
|
-
class="block mt-2 md:mt-0 p-input-icon-left text-align-center"
|
|
71
|
-
>
|
|
72
|
-
<i
|
|
73
|
-
class="material-symbols-outlined icon-search"
|
|
74
|
-
style="display: inline-block"
|
|
75
|
-
>
|
|
76
|
-
search
|
|
77
|
-
</i>
|
|
78
|
-
|
|
79
|
-
<input
|
|
80
|
-
pInputText
|
|
81
|
-
pAutoFocus
|
|
82
|
-
[autofocus]="true"
|
|
83
|
-
type="text"
|
|
84
|
-
(input)="onGlobalFilter(dt, $event)"
|
|
85
|
-
placeholder="Pesquisar..."
|
|
86
|
-
class="w-full mb-1"
|
|
87
|
-
style="height: 40px"
|
|
88
|
-
/>
|
|
89
|
-
</span>
|
|
90
|
-
|
|
91
|
-
<!-- <button
|
|
92
|
-
pButton
|
|
93
|
-
#botaoFiltro
|
|
94
|
-
*ngIf="filtrosAvancados"
|
|
95
|
-
class="p-button-raised p-button-text actionLoteBtns"
|
|
96
|
-
(click)="filtrosAvancadosEvent(showFiltrosAvancados)"
|
|
97
|
-
[pTooltip]="'Filtros avançados'"
|
|
98
|
-
>
|
|
99
|
-
<span class="material-symbols-outlined md-22"> filter_alt </span>
|
|
100
|
-
</button> -->
|
|
101
|
-
|
|
102
|
-
<!-- <div
|
|
103
|
-
#menuFiltroDiv
|
|
104
|
-
id = "menuFiltroDiv"
|
|
105
|
-
[style.visibility]="'hidden'"
|
|
106
|
-
class="absolute z-4 bg-gray-200"
|
|
107
|
-
(click)="onClickEvent($event)"
|
|
108
|
-
> -->
|
|
109
|
-
|
|
110
|
-
<div
|
|
111
|
-
#menuFiltroDiv
|
|
112
|
-
id="menuFiltroDiv"
|
|
113
|
-
[style.visibility]="'hidden'"
|
|
114
|
-
class="absolute z-4 bg-gray-200 menu-columns-filtro"
|
|
115
|
-
>
|
|
116
|
-
<p-card>
|
|
117
|
-
<div
|
|
118
|
-
class="flex flex-column text-medium w-15rem"
|
|
119
|
-
*ngFor="let col of columns"
|
|
120
|
-
>
|
|
121
|
-
{{ checkMenuFiltro(col) }}
|
|
122
|
-
<p-checkbox
|
|
123
|
-
#filterColumns
|
|
124
|
-
[label]="col.header"
|
|
125
|
-
[binary]="true"
|
|
126
|
-
class="checkbox-container"
|
|
127
|
-
(onChange)="dinamicColumnSet($event, col)"
|
|
128
|
-
[(ngModel)]="col.checked"
|
|
129
|
-
*ngIf="!dinamicDisableColumn(col)"
|
|
130
|
-
></p-checkbox>
|
|
131
|
-
</div>
|
|
132
|
-
</p-card>
|
|
133
|
-
</div>
|
|
134
|
-
</div>
|
|
135
|
-
|
|
136
|
-
<div class="flex flex-row col-1 justify-content-end">
|
|
137
|
-
<div
|
|
138
|
-
*ngFor="let action of config.actionsLote"
|
|
139
|
-
class="btns-options"
|
|
140
|
-
>
|
|
141
|
-
<button
|
|
142
|
-
id="actionLoteBtns"
|
|
143
|
-
pButton
|
|
144
|
-
*ngIf="(selectedItems.length > 0 || action.showAcoesLote) && exibirCampo(action, this.action)"
|
|
145
|
-
class="actionLoteBtns p-button-raised p-button-text"
|
|
146
|
-
(click)="action?.command(); activeItemLote(selectedItems)"
|
|
147
|
-
[pTooltip]="retornarCampo(action, selectedItems, 'tooltip')"
|
|
148
|
-
[tooltipPosition]="'bottom'"
|
|
149
|
-
[style.backgroundColor]="retornarCampo(action, selectedItems, 'btnColor')"
|
|
150
|
-
[disabled]="retornarCampo(action, selectedItems, 'disabled')"
|
|
151
|
-
>
|
|
152
|
-
<span
|
|
153
|
-
class="material-symbols-outlined md-22"
|
|
154
|
-
[style.color]="
|
|
155
|
-
retornarCampo(action, selectedItems, 'iconBtnColor')
|
|
156
|
-
"
|
|
157
|
-
>
|
|
158
|
-
{{ retornarCampo(action, selectedItems, "icon") }}
|
|
159
|
-
</span>
|
|
160
|
-
</button>
|
|
161
|
-
</div>
|
|
162
|
-
</div>
|
|
163
|
-
|
|
164
|
-
</div>
|
|
165
|
-
</ng-template>
|
|
166
|
-
|
|
167
|
-
<ng-template
|
|
168
|
-
pTemplate="header"
|
|
169
|
-
let-columns
|
|
170
|
-
>
|
|
171
|
-
<tr>
|
|
172
|
-
<th
|
|
173
|
-
style="width: 4rem; border-left: solid 4px transparent"
|
|
174
|
-
*ngIf="config.enableSelect"
|
|
175
|
-
>
|
|
176
|
-
<p-tableHeaderCheckbox (click)="activeItemLote(selectedItems)"></p-tableHeaderCheckbox>
|
|
177
|
-
</th>
|
|
178
|
-
|
|
179
|
-
<th
|
|
180
|
-
*ngFor="let col of columns"
|
|
181
|
-
[pSortableColumn]="col.field"
|
|
182
|
-
[pSortableColumnDisabled]="col.sortable === false"
|
|
183
|
-
[style.width]="col.width"
|
|
184
|
-
class="text-sm"
|
|
185
|
-
>
|
|
186
|
-
<div
|
|
187
|
-
[class]="
|
|
188
|
-
centralizarColunas(col) && alignColunasHeader(col) == ''
|
|
189
|
-
? 'flex flex-row justify-content-center'
|
|
190
|
-
: 'flex flex-row'
|
|
191
|
-
"
|
|
192
|
-
[style]="alignColunasHeader(col)"
|
|
193
|
-
>
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
<span>{{ col.header }}</span>
|
|
197
|
-
<p-sortIcon
|
|
198
|
-
*ngIf="col.sortable === true"
|
|
199
|
-
[field]="col.field"
|
|
200
|
-
style="font-size: 10px"
|
|
201
|
-
></p-sortIcon>
|
|
202
|
-
|
|
203
|
-
<span
|
|
204
|
-
*ngIf="col.headerTooltip"
|
|
205
|
-
class="material-symbols-outlined flex align-items-center"
|
|
206
|
-
[pTooltip]="col.headerTooltip"
|
|
207
|
-
>info</span>
|
|
208
|
-
|
|
209
|
-
</div>
|
|
210
|
-
</th>
|
|
211
|
-
<th *ngIf="config.actions && config.actions.length > 0"></th>
|
|
212
|
-
</tr>
|
|
213
|
-
</ng-template>
|
|
214
|
-
|
|
215
|
-
<ng-template
|
|
216
|
-
pTemplate="body"
|
|
217
|
-
let-rowData
|
|
218
|
-
let-columns="columns"
|
|
219
|
-
let-rowgroup="rowgroup"
|
|
220
|
-
let-rowspan="rowspan"
|
|
221
|
-
>
|
|
222
|
-
<tr (dblclick)="doubleClick($event, rowData)">
|
|
223
|
-
<td
|
|
224
|
-
*ngIf="config.enableSelect"
|
|
225
|
-
[style]="applyStyle(rowData, { field: 'check-box', header: '' })"
|
|
226
|
-
>
|
|
227
|
-
<!--<p-tableCheckbox *ngIf="isVisibleCheckbox(rowData)"-->
|
|
228
|
-
<p-tableCheckbox
|
|
229
|
-
[value]="rowData"
|
|
230
|
-
[disabled]="isDisabledCheckbox(rowData)"
|
|
231
|
-
(click)="activeItemLote(selectedItems)"
|
|
232
|
-
></p-tableCheckbox>
|
|
233
|
-
</td>
|
|
234
|
-
|
|
235
|
-
<ng-container *ngFor="let col of columns">
|
|
236
|
-
<td
|
|
237
|
-
*ngIf="rowgroup && !col.template"
|
|
238
|
-
[attr.rowspan]="rowgroup && col.grouped ? rowspan : null"
|
|
239
|
-
class="rowTable"
|
|
240
|
-
[style]="
|
|
241
|
-
applyStyle(rowData, col) +
|
|
242
|
-
centralizarColunas(col) +
|
|
243
|
-
alignColunas(col)
|
|
244
|
-
"
|
|
245
|
-
>
|
|
246
|
-
<span class="p-column-title">{{ col.header }}:</span>
|
|
247
|
-
|
|
248
|
-
<span
|
|
249
|
-
*ngIf="!isBooleanField(rowData, col); else booleanField"
|
|
250
|
-
[class]="returnRowClass(rowData, col)"
|
|
251
|
-
>
|
|
252
|
-
<span *ngIf="!isChipField(col) && !col.iconField && !isImageField(col)">
|
|
253
|
-
<i
|
|
254
|
-
*ngIf="col.icon"
|
|
255
|
-
[class]="col.icon + ' mr-2'"
|
|
256
|
-
></i>
|
|
257
|
-
{{ transformValue(rowData, col) }}
|
|
258
|
-
</span>
|
|
259
|
-
|
|
260
|
-
<div *ngIf="isChipField(col) && !col.iconField">
|
|
261
|
-
<span
|
|
262
|
-
[class]="returnClassChip(rowData, col)"
|
|
263
|
-
[pTooltip]="returnTooltipIcon(rowData, col)"
|
|
264
|
-
>{{
|
|
265
|
-
transformValue(rowData, col)
|
|
266
|
-
}}</span>
|
|
267
|
-
</div>
|
|
268
|
-
</span>
|
|
269
|
-
|
|
270
|
-
<span *ngIf="isImageField(col)">
|
|
271
|
-
<span>
|
|
272
|
-
<img
|
|
273
|
-
class="image"
|
|
274
|
-
[src]="loadImage(rowData, col)"
|
|
275
|
-
/>
|
|
276
|
-
</span>
|
|
277
|
-
</span>
|
|
278
|
-
|
|
279
|
-
<i
|
|
280
|
-
*ngIf="col.iconField"
|
|
281
|
-
[ngClass]="{
|
|
282
|
-
'material-icons': col.indIconMaterial,
|
|
283
|
-
'material-symbols-outlined mr-2': !col.indIconMaterial
|
|
284
|
-
}"
|
|
285
|
-
[pTooltip]="returnTooltipIcon(rowData, col)"
|
|
286
|
-
>
|
|
287
|
-
{{ returnClassIcon(rowData, col) }}
|
|
288
|
-
</i>
|
|
289
|
-
|
|
290
|
-
<ng-template #booleanField>
|
|
291
|
-
<i
|
|
292
|
-
*ngIf="!col.iconField"
|
|
293
|
-
[ngClass]="
|
|
294
|
-
rowData[col.field] ? 'text-green-500' : 'text-red-500'
|
|
295
|
-
"
|
|
296
|
-
><span class="material-symbols-outlined">
|
|
297
|
-
{{ rowData[col.field] ? "check" : "close" }}
|
|
298
|
-
</span>
|
|
299
|
-
</i>
|
|
300
|
-
</ng-template>
|
|
301
|
-
</td>
|
|
302
|
-
|
|
303
|
-
<td
|
|
304
|
-
*ngIf="!rowgroup && !col.grouped && !col.template"
|
|
305
|
-
[style]="
|
|
306
|
-
applyStyle(rowData, col) +
|
|
307
|
-
centralizarColunas(col) +
|
|
308
|
-
alignColunas(col)
|
|
309
|
-
"
|
|
310
|
-
class="rowTable"
|
|
311
|
-
>
|
|
312
|
-
<span class="p-column-title">{{ col.header }}:</span>
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
<span
|
|
316
|
-
*ngIf="!isBooleanField(rowData, col); else booleanField"
|
|
317
|
-
[class]="returnRowClass(rowData, col)"
|
|
318
|
-
>
|
|
319
|
-
<span *ngIf="!isChipField(col) && !col.iconField && !isImageField(col)">
|
|
320
|
-
<i
|
|
321
|
-
*ngIf="col.icon"
|
|
322
|
-
[class]="col.icon + ' mr-2'"
|
|
323
|
-
></i>
|
|
324
|
-
{{ transformValue(rowData, col) }}
|
|
325
|
-
</span>
|
|
326
|
-
|
|
327
|
-
<div *ngIf="isChipField(col) && !col.iconField">
|
|
328
|
-
<span
|
|
329
|
-
[class]="returnClassChip(rowData, col)"
|
|
330
|
-
[pTooltip]="returnTooltipIcon(rowData, col)"
|
|
331
|
-
>
|
|
332
|
-
{{ transformValue(rowData, col) }}</span>
|
|
333
|
-
</div>
|
|
334
|
-
</span>
|
|
335
|
-
|
|
336
|
-
<span *ngIf="isImageField(col)">
|
|
337
|
-
<span>
|
|
338
|
-
<img
|
|
339
|
-
class="image"
|
|
340
|
-
[src]="loadImage(rowData, col)"
|
|
341
|
-
/>
|
|
342
|
-
</span>
|
|
343
|
-
</span>
|
|
344
|
-
|
|
345
|
-
<i
|
|
346
|
-
*ngIf="col.iconField"
|
|
347
|
-
[ngClass]="{
|
|
348
|
-
'material-icons': col.indIconMaterial,
|
|
349
|
-
'material-symbols-outlined mr-2': !col.indIconMaterial
|
|
350
|
-
}"
|
|
351
|
-
[pTooltip]="returnTooltipIcon(rowData, col)"
|
|
352
|
-
>
|
|
353
|
-
{{ returnClassIcon(rowData, col) }}
|
|
354
|
-
</i>
|
|
355
|
-
|
|
356
|
-
<ng-template #booleanField>
|
|
357
|
-
<i
|
|
358
|
-
*ngIf="!col.iconField"
|
|
359
|
-
[ngClass]="
|
|
360
|
-
rowData[col.field] ? 'text-green-500' : 'text-red-500'
|
|
361
|
-
"
|
|
362
|
-
><span class="material-symbols-outlined">
|
|
363
|
-
{{ rowData[col.field] ? "check" : "close" }}
|
|
364
|
-
</span>
|
|
365
|
-
</i>
|
|
366
|
-
</ng-template>
|
|
367
|
-
</td>
|
|
368
|
-
|
|
369
|
-
<td
|
|
370
|
-
*ngIf="col.template"
|
|
371
|
-
[style]="
|
|
372
|
-
applyStyle(rowData, col) +
|
|
373
|
-
centralizarColunas(col) +
|
|
374
|
-
alignColunas(col)
|
|
375
|
-
"
|
|
376
|
-
class="rowTable"
|
|
377
|
-
>
|
|
378
|
-
<span class="p-column-title">{{ col.header }}:</span>
|
|
379
|
-
<ng-container
|
|
380
|
-
*ngIf="getCustomTemplate(col.template.name)"
|
|
381
|
-
[ngTemplateOutlet]="getCustomTemplate(col.template.name)"
|
|
382
|
-
[ngTemplateOutletContext]="{ $implicit: rowData }"
|
|
383
|
-
>
|
|
384
|
-
</ng-container>
|
|
385
|
-
</td>
|
|
386
|
-
</ng-container>
|
|
387
|
-
|
|
388
|
-
<td
|
|
389
|
-
*ngIf="config.actions && config.actions.length > 0"
|
|
390
|
-
[style]="applyStyle(rowData, { field: 'btns-options', header: '' })"
|
|
391
|
-
>
|
|
392
|
-
<div
|
|
393
|
-
class="flex flex-row justify-content-end w-full gap-1"
|
|
394
|
-
*ngIf="acoesLinhaTabela"
|
|
395
|
-
>
|
|
396
|
-
<div *ngFor="let action of config.actions">
|
|
397
|
-
<button
|
|
398
|
-
id="actionBtns"
|
|
399
|
-
pButton
|
|
400
|
-
*ngIf="exibirCampo(action, rowData)"
|
|
401
|
-
class="actionBtns p-button-text p-button-raised"
|
|
402
|
-
(click)="activeItem(rowData); action?.command()"
|
|
403
|
-
[pTooltip]="retornarCampo(action, rowData, 'tooltip')"
|
|
404
|
-
[tooltipPosition]="action.tooltipPosition ? action.tooltipPosition : 'bottom'"
|
|
405
|
-
[disabled]="callDisabled(action, rowData)"
|
|
406
|
-
>
|
|
407
|
-
<span class="material-symbols-outlined md-19">
|
|
408
|
-
{{ retornarCampo(action, rowData, "icon") }}</span>
|
|
409
|
-
</button>
|
|
410
|
-
</div>
|
|
411
|
-
</div>
|
|
412
|
-
<div
|
|
413
|
-
class="flex flex-row justify-content-end w-full"
|
|
414
|
-
*ngIf="!acoesLinhaTabela"
|
|
415
|
-
>
|
|
416
|
-
<button
|
|
417
|
-
id="moreVertBtn"
|
|
418
|
-
pButton
|
|
419
|
-
class="actionBtns p-button-text p-button-raised"
|
|
420
|
-
(click)="menu.toggle($event); activeItem(rowData)"
|
|
421
|
-
>
|
|
422
|
-
<span
|
|
423
|
-
class="material-symbols-outlined"
|
|
424
|
-
style="font-size: 20px"
|
|
425
|
-
>
|
|
426
|
-
more_horiz
|
|
427
|
-
</span>
|
|
428
|
-
</button>
|
|
429
|
-
|
|
430
|
-
<div *ngFor="let action of config.actions">
|
|
431
|
-
{{ criarMenusModal(rowData) }}
|
|
432
|
-
</div>
|
|
433
|
-
|
|
434
|
-
<!-- <div *ngFor="let action of config.actions">
|
|
435
|
-
{{ criarMenusModal(rowData) }}
|
|
436
|
-
</div> -->
|
|
437
|
-
|
|
438
|
-
<p-menu
|
|
439
|
-
#menu
|
|
440
|
-
[popup]="true"
|
|
441
|
-
[model]="menuItems"
|
|
442
|
-
appendTo="body"
|
|
443
|
-
></p-menu>
|
|
444
|
-
</div>
|
|
445
|
-
</td>
|
|
446
|
-
</tr>
|
|
447
|
-
</ng-template>
|
|
448
|
-
|
|
449
|
-
<ng-template
|
|
450
|
-
pTemplate="emptymessage"
|
|
451
|
-
let-columns
|
|
452
|
-
>
|
|
453
|
-
<tr>
|
|
454
|
-
<td
|
|
455
|
-
[attr.colspan]="columns.length + 2"
|
|
456
|
-
style="text-align: center"
|
|
457
|
-
>
|
|
458
|
-
Nenhum registro encontrado
|
|
459
|
-
</td>
|
|
460
|
-
</tr>
|
|
461
|
-
</ng-template>
|
|
462
|
-
</p-table>
|
|
463
|
-
</div>
|
|
464
|
-
|
|
465
|
-
<link
|
|
466
|
-
rel="stylesheet"
|
|
467
|
-
href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
|
468
|
-
/>
|
|
469
|
-
|
|
470
|
-
<link
|
|
471
|
-
rel="stylesheet"
|
|
472
|
-
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
|
|
473
|
-
/>
|
|
@@ -1,240 +0,0 @@
|
|
|
1
|
-
// ::ng-deep .p-datatable>.p-datatable-wrapper::-webkit-scrollbar {
|
|
2
|
-
// height: 8px;
|
|
3
|
-
// width: 8px;
|
|
4
|
-
// background-color: rgba(222, 222, 222, 0.75);
|
|
5
|
-
// }
|
|
6
|
-
|
|
7
|
-
// ::ng-deep .p-datatable>.p-datatable-wrapper::-webkit-scrollbar-thumb {
|
|
8
|
-
// border-radius: 6px;
|
|
9
|
-
// background-color: rgba(0, 0, 0, 0.5);
|
|
10
|
-
// }
|
|
11
|
-
|
|
12
|
-
.error-show {
|
|
13
|
-
background-color: red;
|
|
14
|
-
width: 5px;
|
|
15
|
-
height: 10px
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.input-search {
|
|
19
|
-
position: relative;
|
|
20
|
-
right: 8px;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.btns-options {
|
|
24
|
-
position: relative;
|
|
25
|
-
left: 20px;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.chip-style {
|
|
29
|
-
border: solid 1px;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
:host::ng-deep .p-card .p-card-content {
|
|
33
|
-
padding: 0;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
.material-symbols-outlined.md-19 {
|
|
38
|
-
font-size: 19px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.material-symbols-outlined.md-22 {
|
|
42
|
-
font-size: 22px;
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.checkbox-container {
|
|
47
|
-
display: flex;
|
|
48
|
-
align-items: center;
|
|
49
|
-
|
|
50
|
-
gap: 2px;
|
|
51
|
-
margin-top: 5px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
#botaoFiltro:hover {
|
|
55
|
-
color: darkgray;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
;
|
|
59
|
-
|
|
60
|
-
.actionLoteBtns {
|
|
61
|
-
align-items: center;
|
|
62
|
-
background-color: transparent;
|
|
63
|
-
color: darkgray;
|
|
64
|
-
display: flex;
|
|
65
|
-
font-size: 16px;
|
|
66
|
-
width: 2rem;
|
|
67
|
-
height: 2rem;
|
|
68
|
-
top: 2px;
|
|
69
|
-
margin-left: 0.5rem;
|
|
70
|
-
justify-content: center;
|
|
71
|
-
text-decoration: none;
|
|
72
|
-
text-align: justify;
|
|
73
|
-
padding: 12px 12px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
#actionLoteBtns:hover {
|
|
77
|
-
background-color: #29B92D !important;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.actionLoteBtns:hover {
|
|
81
|
-
background-color: #29B92D !important;
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.actionBtns {
|
|
86
|
-
align-items: center;
|
|
87
|
-
background-color: transparent;
|
|
88
|
-
color: darkgray;
|
|
89
|
-
display: flex;
|
|
90
|
-
width: .8rem;
|
|
91
|
-
height: .8rem;
|
|
92
|
-
margin-left: 0.22rem;
|
|
93
|
-
justify-content: center;
|
|
94
|
-
text-decoration: none;
|
|
95
|
-
text-align: justify;
|
|
96
|
-
padding: 11px 11px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
:host::ng-deep .material-symbols-outlined {
|
|
100
|
-
font-family: 'Material Symbols Outlined';
|
|
101
|
-
font-weight: normal;
|
|
102
|
-
font-style: normal;
|
|
103
|
-
// font-size: 17px;
|
|
104
|
-
line-height: 1;
|
|
105
|
-
letter-spacing: normal;
|
|
106
|
-
text-transform: none;
|
|
107
|
-
display: inline-block;
|
|
108
|
-
white-space: nowrap;
|
|
109
|
-
word-wrap: normal;
|
|
110
|
-
direction: ltr;
|
|
111
|
-
// -webkit-font-feature-settings: 'liga';
|
|
112
|
-
-webkit-font-smoothing: antialiased;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
#actionBtns:hover {
|
|
116
|
-
color: darkgray;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
#moreVertBtn:hover {
|
|
120
|
-
color: darkgray;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.icon-search {
|
|
124
|
-
top: 20px;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.image {
|
|
128
|
-
border-style: solid;
|
|
129
|
-
border-width: 3.5px;
|
|
130
|
-
border-color: rgb(82, 137, 180);
|
|
131
|
-
border-radius: 100%;
|
|
132
|
-
height: 55px;
|
|
133
|
-
width: 55px;
|
|
134
|
-
padding: 0;
|
|
135
|
-
margin: 0;
|
|
136
|
-
vertical-align: middle;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
/* Início: Estilização padrão da tabela */
|
|
141
|
-
:host ::ng-deep .p-datatable-table {
|
|
142
|
-
border-spacing: 0px 2px;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
:host ::ng-deep .p-datatable-header {
|
|
146
|
-
// background-color: #f2f2f2;
|
|
147
|
-
background-color: #eaeaea !important;
|
|
148
|
-
padding: 2px 13px 0 13px !important;
|
|
149
|
-
border-radius: 5px !important;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-thead > tr > th {
|
|
153
|
-
// background-color: #f2f2f2;
|
|
154
|
-
background-color: #eaeaea !important;
|
|
155
|
-
}
|
|
156
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-thead > tr > th:first-of-type {
|
|
157
|
-
border-radius: 5px 0 0px 5px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-thead > tr > th:last-child {
|
|
161
|
-
border-radius: 0 5px 5px 0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
165
|
-
border-bottom: 1px solid #ddd !important;
|
|
166
|
-
border-top: 1px solid #ddd !important;
|
|
167
|
-
}
|
|
168
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:first-of-type {
|
|
169
|
-
border-left: solid 4px #5289B4 !important;
|
|
170
|
-
border-radius: 10px 0 0 10px !important;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:last-child {
|
|
174
|
-
border-radius: 0 10px 10px 0 !important;
|
|
175
|
-
border-right: 1px solid #ddd !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
:host ::ng-deep .actionBtns, :host ::ng-deep .actionLoteBtns {
|
|
179
|
-
border-radius: 50%;
|
|
180
|
-
width: 2.5rem !important;
|
|
181
|
-
height: 2.5rem !important;
|
|
182
|
-
box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
|
|
183
|
-
}
|
|
184
|
-
/* Final: Estilização padrão da tabela */
|
|
185
|
-
|
|
186
|
-
@media only screen and (min-width: 768px) {
|
|
187
|
-
.actionLoteBtns {
|
|
188
|
-
top: -1px;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
@media only screen and (max-width: 960px) {
|
|
194
|
-
.rowTable {
|
|
195
|
-
text-align: right !important;
|
|
196
|
-
}
|
|
197
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
198
|
-
|
|
199
|
-
border-right: 1px solid #ddd !important;
|
|
200
|
-
border-bottom: 1px solid hsl(0, 0%, 91%) !important;
|
|
201
|
-
border-top: 0px solid !important;
|
|
202
|
-
line-height: 30px !important;
|
|
203
|
-
gap: 5px;
|
|
204
|
-
}
|
|
205
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:has(p-tablecheckbox) {
|
|
206
|
-
border-bottom: 0px !important;
|
|
207
|
-
}
|
|
208
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:has(img) {
|
|
209
|
-
justify-content: center !important;
|
|
210
|
-
align-items: center !important;
|
|
211
|
-
}
|
|
212
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:has(img) .p-column-title {
|
|
213
|
-
display: none !important;
|
|
214
|
-
}
|
|
215
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:first-of-type {
|
|
216
|
-
border-left: solid 4px #5289B4 !important;
|
|
217
|
-
border-radius: 10px 10px 0 0px !important;
|
|
218
|
-
border-top: 1px solid #ddd !important;
|
|
219
|
-
line-height: 0px !important;
|
|
220
|
-
}
|
|
221
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:last-child {
|
|
222
|
-
border-radius: 0 0px 10px 10px !important;
|
|
223
|
-
border-bottom: 1px solid #ddd !important;
|
|
224
|
-
}
|
|
225
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td:last-child div {
|
|
226
|
-
justify-content: center !important;
|
|
227
|
-
align-items: center !important;
|
|
228
|
-
}
|
|
229
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
230
|
-
border-left: solid 4px #5289B4 !important;
|
|
231
|
-
}
|
|
232
|
-
:host ::ng-deep .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td .p-column-title {
|
|
233
|
-
font-weight: 600;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
::ng-deep .p-panel.p-panel-toggleable .p-panel-header {
|
|
239
|
-
background-color: #EAEAEA !important;
|
|
240
|
-
}
|