keevo-components 1.8.540 → 1.8.541

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.
Files changed (613) hide show
  1. package/ng-package.json +12 -0
  2. package/package.json +27 -40
  3. package/src/assets/.gitkeep +0 -0
  4. package/src/assets/images/LogoEvo.png +0 -0
  5. package/src/assets/images/LogoPequenaEvo.png +0 -0
  6. package/src/assets/images/background.png +0 -0
  7. package/src/assets/images/keepass-logo.png +0 -0
  8. package/src/assets/images/keepass-logo.svg +74 -0
  9. package/src/assets/images/keevo-logo.png +0 -0
  10. package/src/assets/images/logokeevo_2.png +0 -0
  11. package/src/index.ts +1 -0
  12. package/src/lib/api/base-components/base-component-button.ts +29 -0
  13. package/src/lib/api/base-components/base-component-chart.ts +118 -0
  14. package/src/lib/api/base-components/base-component-crud-form.ts +367 -0
  15. package/src/lib/api/base-components/base-component-crud-list.ts +129 -0
  16. package/src/lib/api/base-components/base-component-crud.ts +92 -0
  17. package/src/lib/api/base-components/base-component-dropdown-external.ts +29 -0
  18. package/src/lib/api/base-components/base-component-dropdown-new.ts +112 -0
  19. package/src/lib/api/base-components/base-component-dropdown.ts +257 -0
  20. package/src/lib/api/base-components/base-component-input.ts +121 -0
  21. package/src/lib/api/base-components/base-component-multi-select.ts +187 -0
  22. package/src/lib/api/base-components/base-component-table.ts +366 -0
  23. package/src/lib/api/base-components/base-component.ts +47 -0
  24. package/src/lib/api/components/chart/chart.config.ts +15 -0
  25. package/src/lib/api/components/chart/chart.model.ts +12 -0
  26. package/src/lib/api/components/chart/orchart.config.ts +51 -0
  27. package/src/lib/api/components/chart/orchartnode.ts +44 -0
  28. package/src/lib/api/components/dropdown/filtro.combo.ts +4 -0
  29. package/src/lib/api/components/stepper/kv-stepperpanel.ts +10 -0
  30. package/src/lib/api/components/table/action-item.ts +13 -0
  31. package/src/lib/api/components/table/kv-menuitem.ts +198 -0
  32. package/src/lib/api/components/table/table-dropdown-control.ts +6 -0
  33. package/src/lib/api/components/table/table.config.column.ts +38 -0
  34. package/src/lib/api/components/table/table.config.ts +36 -0
  35. package/src/lib/api/components/table/table.paginate.ts +7 -0
  36. package/{lib/api/components/table/tabledit.config.d.ts → src/lib/api/components/table/tabledit.config.ts} +9 -8
  37. package/src/lib/api/components/table/tableedit.config.column.ts +11 -0
  38. package/src/lib/api/components/tree-table/tree-table-keys.ts +12 -0
  39. package/src/lib/api/components/tree-table/tree-table.config.ts +34 -0
  40. package/src/lib/api/directives/directives.module.ts +19 -0
  41. package/src/lib/api/directives/drag/drag.directive.ts +40 -0
  42. package/src/lib/api/directives/stepper/dynamicinput.directive.ts +23 -0
  43. package/src/lib/api/directives/template/template.directive.ts +15 -0
  44. package/src/lib/api/helpers/component-providers.ts +16 -0
  45. package/src/lib/api/helpers/keevo-validators.ts +157 -0
  46. package/src/lib/api/helpers/severity-color.ts +77 -0
  47. package/src/lib/api/helpers/translate-primeng.ts +25 -0
  48. package/src/lib/api/modules/primeng.module.ts +139 -0
  49. package/src/lib/api/pipes/capitalize.pipe.ts +47 -0
  50. package/src/lib/api/pipes/cpfcnpj.pipe.ts +21 -0
  51. package/src/lib/api/pipes/mask.pipe.ts +24 -0
  52. package/src/lib/api/pipes/pipes.module.ts +26 -0
  53. package/src/lib/api/pipes/telefone.pipe.ts +38 -0
  54. package/src/lib/api/services/base.api.service.ts +115 -0
  55. package/src/lib/api/services/breadcrumbs.service.ts +71 -0
  56. package/src/lib/api/services/chat.service.ts +39 -0
  57. package/src/lib/api/services/component.service.ts +44 -0
  58. package/src/lib/api/services/docs.service.ts +129 -0
  59. package/src/lib/api/services/form.service.ts +139 -0
  60. package/src/lib/api/services/image.cutter.service.ts +290 -0
  61. package/src/lib/api/services/imagens.service.ts +28 -0
  62. package/src/lib/api/services/notification.service.ts +88 -0
  63. package/src/lib/api/services/object.service.ts +33 -0
  64. package/src/lib/api/services/orgchart.service.ts +77 -0
  65. package/src/lib/api/types/breadcrumb.model.ts +5 -0
  66. package/src/lib/api/types/severity.ts +3 -0
  67. package/src/lib/api/types/stimulsoft.reports.d.ts +67463 -0
  68. package/src/lib/components/keevo-components.module.ts +94 -0
  69. package/src/lib/components/kv-avatar/kv-avatar.component.html +34 -0
  70. package/src/lib/components/kv-avatar/kv-avatar.component.scss +114 -0
  71. package/src/lib/components/kv-avatar/kv-avatar.component.spec.ts +23 -0
  72. package/src/lib/components/kv-avatar/kv-avatar.component.ts +154 -0
  73. package/src/lib/components/kv-avatar/kv-avatar.module.ts +32 -0
  74. package/src/lib/components/kv-button/kv-button.component.html +20 -0
  75. package/src/lib/components/kv-button/kv-button.component.spec.ts +23 -0
  76. package/src/lib/components/kv-button/kv-button.component.ts +21 -0
  77. package/src/lib/components/kv-button/kv-button.module.ts +20 -0
  78. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.html +14 -0
  79. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.scss +6 -0
  80. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.ts +25 -0
  81. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.html +12 -0
  82. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.scss +28 -0
  83. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.ts +38 -0
  84. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.html +12 -0
  85. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.scss +18 -0
  86. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.ts +14 -0
  87. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.html +11 -0
  88. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.scss +17 -0
  89. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.ts +14 -0
  90. package/src/lib/components/kv-buttons/kv-button.module.ts +26 -0
  91. package/src/lib/components/kv-card-selection/kv-card-selection.component.html +72 -0
  92. package/src/lib/components/kv-card-selection/kv-card-selection.component.scss +54 -0
  93. package/src/lib/components/kv-card-selection/kv-card-selection.component.spec.ts +23 -0
  94. package/src/lib/components/kv-card-selection/kv-card-selection.component.ts +73 -0
  95. package/src/lib/components/kv-card-selection/kv-card-selection.module.ts +19 -0
  96. package/src/lib/components/kv-carousel/kv-carousel.component.html +26 -0
  97. package/src/lib/components/kv-carousel/kv-carousel.component.scss +32 -0
  98. package/src/lib/components/kv-carousel/kv-carousel.component.spec.ts +23 -0
  99. package/src/lib/components/kv-carousel/kv-carousel.component.ts +40 -0
  100. package/src/lib/components/kv-carousel/kv-carousel.module.ts +19 -0
  101. package/src/lib/components/kv-chart/kv-chart.component.html +38 -0
  102. package/src/lib/components/kv-chart/kv-chart.component.scss +0 -0
  103. package/src/lib/components/kv-chart/kv-chart.component.spec.ts +28 -0
  104. package/src/lib/components/kv-chart/kv-chart.component.ts +174 -0
  105. package/src/lib/components/kv-chart/kv-chart.module.ts +21 -0
  106. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.html +151 -0
  107. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.scss +159 -0
  108. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.spec.ts +23 -0
  109. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.ts +133 -0
  110. package/src/lib/components/kv-content-viewer/kv-content-viewer.module.ts +21 -0
  111. package/src/lib/components/kv-error/kv-error.component.html +3 -0
  112. package/src/lib/components/kv-error/kv-error.component.scss +5 -0
  113. package/src/lib/components/kv-error/kv-error.component.ts +27 -0
  114. package/src/lib/components/kv-error/kv-error.module.ts +26 -0
  115. package/src/lib/components/kv-file-upload/kv-file-upload.component.html +56 -0
  116. package/src/lib/components/kv-file-upload/kv-file-upload.component.scss +9 -0
  117. package/src/lib/components/kv-file-upload/kv-file-upload.component.spec.ts +23 -0
  118. package/src/lib/components/kv-file-upload/kv-file-upload.component.ts +163 -0
  119. package/src/lib/components/kv-file-upload/kv-file-upload.module.ts +10 -0
  120. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.html +16 -0
  121. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.scss +18 -0
  122. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.ts +42 -0
  123. package/src/lib/components/kv-file-viewer/kv-file-viewer.module.ts +14 -0
  124. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.html +34 -0
  125. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.scss +17 -0
  126. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.ts +80 -0
  127. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.ts +15 -0
  128. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.html +103 -0
  129. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.scss +153 -0
  130. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.spec.ts +23 -0
  131. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.ts +73 -0
  132. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.module.ts +18 -0
  133. package/src/lib/components/kv-filter-card/kv-filter-card.component.html +18 -0
  134. package/src/lib/components/kv-filter-card/kv-filter-card.component.scss +74 -0
  135. package/src/lib/components/kv-filter-card/kv-filter-card.component.spec.ts +23 -0
  136. package/src/lib/components/kv-filter-card/kv-filter-card.component.ts +18 -0
  137. package/src/lib/components/kv-filter-card/kv-filter-card.module.ts +23 -0
  138. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.html +25 -0
  139. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.scss +22 -0
  140. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.spec.ts +23 -0
  141. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.ts +20 -0
  142. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.ts +20 -0
  143. package/src/lib/components/kv-g-icon/kv-g-icon.component.html +1 -0
  144. package/src/lib/components/kv-g-icon/kv-g-icon.component.scss +0 -0
  145. package/src/lib/components/kv-g-icon/kv-g-icon.component.spec.ts +23 -0
  146. package/src/lib/components/kv-g-icon/kv-g-icon.component.ts +10 -0
  147. package/src/lib/components/kv-g-icon/kv-g-icon.module.ts +11 -0
  148. package/src/lib/components/kv-home-card/kv-home-card.component.html +35 -0
  149. package/src/lib/components/kv-home-card/kv-home-card.component.scss +5 -0
  150. package/src/lib/components/kv-home-card/kv-home-card.component.spec.ts +23 -0
  151. package/src/lib/components/kv-home-card/kv-home-card.component.ts +33 -0
  152. package/src/lib/components/kv-home-card/kv-home-card.module.ts +18 -0
  153. package/src/lib/components/kv-image-upload/kv-image-upload.component.html +64 -0
  154. package/src/lib/components/kv-image-upload/kv-image-upload.component.scss +0 -0
  155. package/src/lib/components/kv-image-upload/kv-image-upload.component.ts +154 -0
  156. package/src/lib/components/kv-image-upload/kv-image-upload.module.ts +10 -0
  157. package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +12 -0
  158. package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +38 -0
  159. package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +32 -0
  160. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +87 -0
  161. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.scss +56 -0
  162. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +119 -0
  163. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +102 -0
  164. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +45 -0
  165. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +177 -0
  166. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +37 -0
  167. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +23 -0
  168. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +197 -0
  169. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +24 -0
  170. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
  171. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +35 -0
  172. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +23 -0
  173. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
  174. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +61 -0
  175. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +24 -0
  176. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
  177. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +26 -0
  178. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +23 -0
  179. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +18 -0
  180. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +40 -0
  181. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +53 -0
  182. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +41 -0
  183. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +23 -0
  184. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +46 -0
  185. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +23 -0
  186. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
  187. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +40 -0
  188. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +24 -0
  189. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
  190. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +27 -0
  191. package/src/lib/components/kv-inputs/kv-inputs.module.ts +83 -0
  192. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +85 -0
  193. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +44 -0
  194. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +53 -0
  195. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +19 -0
  196. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +22 -0
  197. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +63 -0
  198. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.html +26 -0
  199. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.scss +5 -0
  200. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.spec.ts +21 -0
  201. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.ts +30 -0
  202. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.html +26 -0
  203. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.scss +41 -0
  204. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.spec.ts +23 -0
  205. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.ts +41 -0
  206. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +23 -0
  207. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +35 -0
  208. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +54 -0
  209. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.html +68 -0
  210. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.scss +86 -0
  211. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.ts +59 -0
  212. package/src/lib/components/kv-label/kv-label.component.html +6 -0
  213. package/src/lib/components/kv-label/kv-label.component.scss +9 -0
  214. package/src/lib/components/kv-label/kv-label.component.spec.ts +23 -0
  215. package/src/lib/components/kv-label/kv-label.component.ts +14 -0
  216. package/src/lib/components/kv-label/kv-label.module.ts +17 -0
  217. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.html +15 -0
  218. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.scss +0 -0
  219. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.spec.ts +28 -0
  220. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.ts +34 -0
  221. package/src/lib/components/kv-layout/kv-layout.module.ts +35 -0
  222. package/src/lib/components/kv-layout/layout/kv-layout.component.html +507 -0
  223. package/src/lib/components/kv-layout/layout/kv-layout.component.scss +290 -0
  224. package/src/lib/components/kv-layout/layout/kv-layout.component.spec.ts +23 -0
  225. package/src/lib/components/kv-layout/layout/kv-layout.component.ts +344 -0
  226. package/src/lib/components/kv-loader/kv-loader.component.html +1 -0
  227. package/src/lib/components/kv-loader/kv-loader.component.ts +11 -0
  228. package/src/lib/components/kv-loader/kv-loader.module.ts +17 -0
  229. package/src/lib/components/kv-loader/kv-loader.service.ts +29 -0
  230. package/src/lib/components/kv-login/kv-login.component.html +101 -0
  231. package/src/lib/components/kv-login/kv-login.component.scss +99 -0
  232. package/src/lib/components/kv-login/kv-login.component.spec.ts +23 -0
  233. package/src/lib/components/kv-login/kv-login.component.ts +97 -0
  234. package/src/lib/components/kv-login/kv-login.module.ts +33 -0
  235. package/src/lib/components/kv-modal/kv-modal.component.html +20 -0
  236. package/src/lib/components/kv-modal/kv-modal.component.scss +37 -0
  237. package/src/lib/components/kv-modal/kv-modal.component.spec.ts +21 -0
  238. package/src/lib/components/kv-modal/kv-modal.component.ts +111 -0
  239. package/src/lib/components/kv-modal/kv-modal.module.ts +12 -0
  240. package/src/lib/components/kv-orgchart/kv-orgchart.component.html +125 -0
  241. package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +73 -0
  242. package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +283 -0
  243. package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +31 -0
  244. package/src/lib/components/kv-page-form/kv-page-form.component.html +116 -0
  245. package/src/lib/components/kv-page-form/kv-page-form.component.scss +74 -0
  246. package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +28 -0
  247. package/src/lib/components/kv-page-form/kv-page-form.component.ts +206 -0
  248. package/src/lib/components/kv-page-form/kv-page-form.module.ts +33 -0
  249. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.html +251 -0
  250. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.scss +129 -0
  251. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.spec.ts +23 -0
  252. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.ts +223 -0
  253. package/src/lib/components/kv-page-stepper/kv-page-stepper.module.ts +34 -0
  254. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +31 -0
  255. package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +19 -0
  256. package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +26 -0
  257. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +130 -0
  258. package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +24 -0
  259. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +38 -0
  260. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +128 -0
  261. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +21 -0
  262. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +75 -0
  263. package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +19 -0
  264. package/src/lib/components/kv-report/kv-report.component.html +3 -0
  265. package/src/lib/components/kv-report/kv-report.component.scss +14 -0
  266. package/src/lib/components/kv-report/kv-report.component.spec.ts +28 -0
  267. package/src/lib/components/kv-report/kv-report.component.ts +44 -0
  268. package/src/lib/components/kv-report/kv-report.module.ts +18 -0
  269. package/src/lib/components/kv-stepper/kv-stepper.component.html +63 -0
  270. package/src/lib/components/kv-stepper/kv-stepper.component.scss +41 -0
  271. package/src/lib/components/kv-stepper/kv-stepper.component.spec.ts +23 -0
  272. package/src/lib/components/kv-stepper/kv-stepper.component.ts +73 -0
  273. package/src/lib/components/kv-stepper/kv-stepper.module.ts +24 -0
  274. package/src/lib/components/kv-table/kv-table.component.html +637 -0
  275. package/src/lib/components/kv-table/kv-table.component.spec.ts +28 -0
  276. package/src/lib/components/kv-table/kv-table.component.ts +792 -0
  277. package/src/lib/components/kv-table/kv-table.module.ts +25 -0
  278. package/src/lib/components/kv-table-edit/kv-table-edit.component.html +775 -0
  279. package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +727 -0
  280. package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +388 -0
  281. package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +31 -0
  282. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.html +634 -0
  283. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.scss +387 -0
  284. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.ts +546 -0
  285. package/src/lib/components/kv-table-expandable/kv-table-expandable.module.ts +22 -0
  286. package/src/lib/components/kv-tree-table/kv-tree-table.component.html +492 -0
  287. package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +187 -0
  288. package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +21 -0
  289. package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +355 -0
  290. package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +23 -0
  291. package/src/lib/components/kv-tree-view/kv-tree-view.component.html +16 -0
  292. package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +19 -0
  293. package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +23 -0
  294. package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +73 -0
  295. package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +19 -0
  296. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.html +14 -0
  297. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.scss +0 -0
  298. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.spec.ts +28 -0
  299. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.ts +77 -0
  300. package/src/lib/components/kv-workspace/kv-workspace.module.ts +43 -0
  301. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.html +20 -0
  302. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.scss +0 -0
  303. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.spec.ts +28 -0
  304. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.ts +18 -0
  305. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.html +12 -0
  306. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.scss +0 -0
  307. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.spec.ts +28 -0
  308. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.ts +72 -0
  309. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.html +50 -0
  310. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.scss +17 -0
  311. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.ts +60 -0
  312. package/{public-api.d.ts → src/public-api.ts} +298 -251
  313. package/tsconfig.lib.json +14 -0
  314. package/tsconfig.lib.prod.json +10 -0
  315. package/tsconfig.spec.json +14 -0
  316. package/esm2022/keevo-components.mjs +0 -5
  317. package/esm2022/lib/api/base-components/base-component-button.mjs +0 -39
  318. package/esm2022/lib/api/base-components/base-component-chart.mjs +0 -104
  319. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +0 -302
  320. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +0 -91
  321. package/esm2022/lib/api/base-components/base-component-crud.mjs +0 -80
  322. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +0 -31
  323. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +0 -238
  324. package/esm2022/lib/api/base-components/base-component-input.mjs +0 -101
  325. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +0 -174
  326. package/esm2022/lib/api/base-components/base-component-table.mjs +0 -354
  327. package/esm2022/lib/api/base-components/base-component.mjs +0 -51
  328. package/esm2022/lib/api/components/chart/chart.config.mjs +0 -2
  329. package/esm2022/lib/api/components/chart/chart.model.mjs +0 -2
  330. package/esm2022/lib/api/components/chart/orchart.config.mjs +0 -2
  331. package/esm2022/lib/api/components/chart/orchartnode.mjs +0 -2
  332. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +0 -2
  333. package/esm2022/lib/api/components/stepper/kv-stepperpanel.mjs +0 -2
  334. package/esm2022/lib/api/components/table/action-item.mjs +0 -2
  335. package/esm2022/lib/api/components/table/kv-menuitem.mjs +0 -46
  336. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +0 -2
  337. package/esm2022/lib/api/components/table/table.config.column.mjs +0 -2
  338. package/esm2022/lib/api/components/table/table.config.mjs +0 -2
  339. package/esm2022/lib/api/components/table/table.paginate.mjs +0 -10
  340. package/esm2022/lib/api/components/table/tabledit.config.mjs +0 -2
  341. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +0 -2
  342. package/esm2022/lib/api/components/tree-table/tree-table-keys.mjs +0 -2
  343. package/esm2022/lib/api/components/tree-table/tree-table.config.mjs +0 -3
  344. package/esm2022/lib/api/directives/directives.module.mjs +0 -30
  345. package/esm2022/lib/api/directives/drag/drag.directive.mjs +0 -52
  346. package/esm2022/lib/api/directives/stepper/dynamicinput.directive.mjs +0 -31
  347. package/esm2022/lib/api/directives/template/template.directive.mjs +0 -24
  348. package/esm2022/lib/api/helpers/component-providers.mjs +0 -16
  349. package/esm2022/lib/api/helpers/keevo-validators.mjs +0 -131
  350. package/esm2022/lib/api/helpers/translate-primeng.mjs +0 -23
  351. package/esm2022/lib/api/modules/primeng.module.mjs +0 -275
  352. package/esm2022/lib/api/pipes/capitalize.pipe.mjs +0 -47
  353. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +0 -25
  354. package/esm2022/lib/api/pipes/mask.pipe.mjs +0 -29
  355. package/esm2022/lib/api/pipes/pipes.module.mjs +0 -39
  356. package/esm2022/lib/api/pipes/telefone.pipe.mjs +0 -45
  357. package/esm2022/lib/api/services/base.api.service.mjs +0 -74
  358. package/esm2022/lib/api/services/breadcrumbs.service.mjs +0 -62
  359. package/esm2022/lib/api/services/chat.service.mjs +0 -37
  360. package/esm2022/lib/api/services/component.service.mjs +0 -37
  361. package/esm2022/lib/api/services/docs.service.mjs +0 -129
  362. package/esm2022/lib/api/services/form.service.mjs +0 -95
  363. package/esm2022/lib/api/services/image.cutter.service.mjs +0 -191
  364. package/esm2022/lib/api/services/imagens.service.mjs +0 -28
  365. package/esm2022/lib/api/services/notification.service.mjs +0 -69
  366. package/esm2022/lib/api/services/object.service.mjs +0 -39
  367. package/esm2022/lib/api/services/orgchart.service.mjs +0 -64
  368. package/esm2022/lib/api/types/breadcrumb.model.mjs +0 -2
  369. package/esm2022/lib/components/keevo-components.module.mjs +0 -207
  370. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +0 -133
  371. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +0 -55
  372. package/esm2022/lib/components/kv-button/kv-button.component.mjs +0 -23
  373. package/esm2022/lib/components/kv-button/kv-button.module.mjs +0 -28
  374. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +0 -25
  375. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +0 -35
  376. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +0 -17
  377. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +0 -17
  378. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +0 -39
  379. package/esm2022/lib/components/kv-card-selection/kv-card-selection.component.mjs +0 -60
  380. package/esm2022/lib/components/kv-card-selection/kv-card-selection.module.mjs +0 -31
  381. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +0 -34
  382. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +0 -28
  383. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +0 -166
  384. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +0 -32
  385. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.component.mjs +0 -143
  386. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.module.mjs +0 -36
  387. package/esm2022/lib/components/kv-error/kv-error.component.mjs +0 -26
  388. package/esm2022/lib/components/kv-error/kv-error.module.mjs +0 -35
  389. package/esm2022/lib/components/kv-file-upload/kv-file-upload.component.mjs +0 -160
  390. package/esm2022/lib/components/kv-file-upload/kv-file-upload.module.mjs +0 -18
  391. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.component.mjs +0 -46
  392. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.module.mjs +0 -20
  393. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.mjs +0 -68
  394. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.mjs +0 -24
  395. package/esm2022/lib/components/kv-filter-card/kv-filter-card.component.mjs +0 -29
  396. package/esm2022/lib/components/kv-filter-card/kv-filter-card.module.mjs +0 -34
  397. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.mjs +0 -26
  398. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.mjs +0 -28
  399. package/esm2022/lib/components/kv-g-icon/kv-g-icon.component.mjs +0 -11
  400. package/esm2022/lib/components/kv-g-icon/kv-g-icon.module.mjs +0 -19
  401. package/esm2022/lib/components/kv-home-card/kv-home-card.component.mjs +0 -27
  402. package/esm2022/lib/components/kv-home-card/kv-home-card.module.mjs +0 -32
  403. package/esm2022/lib/components/kv-image-upload/kv-image-upload.component.mjs +0 -136
  404. package/esm2022/lib/components/kv-image-upload/kv-image-upload.module.mjs +0 -18
  405. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +0 -29
  406. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +0 -102
  407. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +0 -148
  408. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +0 -168
  409. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +0 -30
  410. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +0 -59
  411. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +0 -33
  412. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +0 -38
  413. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +0 -47
  414. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +0 -43
  415. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +0 -24
  416. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +0 -131
  417. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +0 -48
  418. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +0 -60
  419. package/esm2022/lib/components/kv-inputs/kv-select-button/kv-select-button.component.mjs +0 -46
  420. package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +0 -36
  421. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +0 -42
  422. package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +0 -58
  423. package/esm2022/lib/components/kv-label/kv-label.component.mjs +0 -15
  424. package/esm2022/lib/components/kv-label/kv-label.module.mjs +0 -24
  425. package/esm2022/lib/components/kv-layout/dropdown-master/dropdown-master.component.mjs +0 -28
  426. package/esm2022/lib/components/kv-layout/kv-layout.module.mjs +0 -50
  427. package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +0 -285
  428. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +0 -16
  429. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +0 -28
  430. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +0 -29
  431. package/esm2022/lib/components/kv-login/kv-login.component.mjs +0 -62
  432. package/esm2022/lib/components/kv-login/kv-login.module.mjs +0 -47
  433. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +0 -97
  434. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +0 -20
  435. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +0 -225
  436. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +0 -59
  437. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +0 -217
  438. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +0 -41
  439. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +0 -207
  440. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.module.mjs +0 -47
  441. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +0 -144
  442. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +0 -39
  443. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +0 -58
  444. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +0 -28
  445. package/esm2022/lib/components/kv-report/kv-report.component.mjs +0 -44
  446. package/esm2022/lib/components/kv-report/kv-report.module.mjs +0 -24
  447. package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +0 -76
  448. package/esm2022/lib/components/kv-stepper/kv-stepper.module.mjs +0 -40
  449. package/esm2022/lib/components/kv-table/kv-table.component.mjs +0 -673
  450. package/esm2022/lib/components/kv-table/kv-table.module.mjs +0 -40
  451. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +0 -323
  452. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +0 -45
  453. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.component.mjs +0 -516
  454. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.module.mjs +0 -40
  455. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +0 -331
  456. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +0 -39
  457. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +0 -70
  458. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +0 -28
  459. package/esm2022/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.mjs +0 -72
  460. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +0 -64
  461. package/esm2022/lib/components/kv-workspace/logo/kv-workspace-logo.component.mjs +0 -22
  462. package/esm2022/lib/components/kv-workspace/master/kv-workspace-master.component.mjs +0 -63
  463. package/esm2022/lib/components/kv-workspace/workspace/kv-workspace.component.mjs +0 -74
  464. package/esm2022/public-api.mjs +0 -256
  465. package/fesm2022/keevo-components.mjs +0 -9765
  466. package/fesm2022/keevo-components.mjs.map +0 -1
  467. package/index.d.ts +0 -5
  468. package/lib/api/base-components/base-component-button.d.ts +0 -15
  469. package/lib/api/base-components/base-component-chart.d.ts +0 -40
  470. package/lib/api/base-components/base-component-crud-form.d.ts +0 -149
  471. package/lib/api/base-components/base-component-crud-list.d.ts +0 -70
  472. package/lib/api/base-components/base-component-crud.d.ts +0 -36
  473. package/lib/api/base-components/base-component-dropdown-external.d.ts +0 -15
  474. package/lib/api/base-components/base-component-dropdown.d.ts +0 -57
  475. package/lib/api/base-components/base-component-input.d.ts +0 -33
  476. package/lib/api/base-components/base-component-multi-select.d.ts +0 -40
  477. package/lib/api/base-components/base-component-table.d.ts +0 -88
  478. package/lib/api/base-components/base-component.d.ts +0 -22
  479. package/lib/api/components/chart/chart.config.d.ts +0 -14
  480. package/lib/api/components/chart/chart.model.d.ts +0 -12
  481. package/lib/api/components/chart/orchart.config.d.ts +0 -41
  482. package/lib/api/components/chart/orchartnode.d.ts +0 -34
  483. package/lib/api/components/dropdown/filtro.combo.d.ts +0 -4
  484. package/lib/api/components/stepper/kv-stepperpanel.d.ts +0 -9
  485. package/lib/api/components/table/action-item.d.ts +0 -13
  486. package/lib/api/components/table/kv-menuitem.d.ts +0 -152
  487. package/lib/api/components/table/table-dropdown-control.d.ts +0 -6
  488. package/lib/api/components/table/table.config.column.d.ts +0 -38
  489. package/lib/api/components/table/table.config.d.ts +0 -33
  490. package/lib/api/components/table/table.paginate.d.ts +0 -10
  491. package/lib/api/components/table/tableedit.config.column.d.ts +0 -10
  492. package/lib/api/components/tree-table/tree-table-keys.d.ts +0 -12
  493. package/lib/api/components/tree-table/tree-table.config.d.ts +0 -31
  494. package/lib/api/directives/directives.module.d.ts +0 -9
  495. package/lib/api/directives/drag/drag.directive.d.ts +0 -11
  496. package/lib/api/directives/stepper/dynamicinput.directive.d.ts +0 -15
  497. package/lib/api/directives/template/template.directive.d.ts +0 -11
  498. package/lib/api/helpers/component-providers.d.ts +0 -2
  499. package/lib/api/helpers/keevo-validators.d.ts +0 -17
  500. package/lib/api/helpers/translate-primeng.d.ts +0 -4
  501. package/lib/api/modules/primeng.module.d.ts +0 -67
  502. package/lib/api/pipes/capitalize.pipe.d.ts +0 -10
  503. package/lib/api/pipes/cpfcnpj.pipe.d.ts +0 -7
  504. package/lib/api/pipes/mask.pipe.d.ts +0 -7
  505. package/lib/api/pipes/pipes.module.d.ts +0 -11
  506. package/lib/api/pipes/telefone.pipe.d.ts +0 -7
  507. package/lib/api/services/base.api.service.d.ts +0 -25
  508. package/lib/api/services/breadcrumbs.service.d.ts +0 -16
  509. package/lib/api/services/chat.service.d.ts +0 -17
  510. package/lib/api/services/component.service.d.ts +0 -11
  511. package/lib/api/services/docs.service.d.ts +0 -12
  512. package/lib/api/services/form.service.d.ts +0 -31
  513. package/lib/api/services/image.cutter.service.d.ts +0 -15
  514. package/lib/api/services/imagens.service.d.ts +0 -10
  515. package/lib/api/services/notification.service.d.ts +0 -26
  516. package/lib/api/services/object.service.d.ts +0 -9
  517. package/lib/api/services/orgchart.service.d.ts +0 -20
  518. package/lib/api/types/breadcrumb.model.d.ts +0 -5
  519. package/lib/components/keevo-components.module.d.ts +0 -34
  520. package/lib/components/kv-avatar/kv-avatar.component.d.ts +0 -35
  521. package/lib/components/kv-avatar/kv-avatar.module.d.ts +0 -15
  522. package/lib/components/kv-button/kv-button.component.d.ts +0 -14
  523. package/lib/components/kv-button/kv-button.module.d.ts +0 -9
  524. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +0 -11
  525. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +0 -15
  526. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +0 -7
  527. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +0 -7
  528. package/lib/components/kv-buttons/kv-button.module.d.ts +0 -11
  529. package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +0 -25
  530. package/lib/components/kv-card-selection/kv-card-selection.module.d.ts +0 -10
  531. package/lib/components/kv-carousel/kv-carousel.component.d.ts +0 -17
  532. package/lib/components/kv-carousel/kv-carousel.module.d.ts +0 -9
  533. package/lib/components/kv-chart/kv-chart.component.d.ts +0 -57
  534. package/lib/components/kv-chart/kv-chart.module.d.ts +0 -10
  535. package/lib/components/kv-content-viewer/kv-content-viewer.component.d.ts +0 -44
  536. package/lib/components/kv-content-viewer/kv-content-viewer.module.d.ts +0 -12
  537. package/lib/components/kv-error/kv-error.component.d.ts +0 -12
  538. package/lib/components/kv-error/kv-error.module.d.ts +0 -10
  539. package/lib/components/kv-file-upload/kv-file-upload.component.d.ts +0 -32
  540. package/lib/components/kv-file-upload/kv-file-upload.module.d.ts +0 -8
  541. package/lib/components/kv-file-viewer/kv-file-viewer.component.d.ts +0 -21
  542. package/lib/components/kv-file-viewer/kv-file-viewer.module.d.ts +0 -8
  543. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.d.ts +0 -24
  544. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.d.ts +0 -9
  545. package/lib/components/kv-filter-card/kv-filter-card.component.d.ts +0 -13
  546. package/lib/components/kv-filter-card/kv-filter-card.module.d.ts +0 -10
  547. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.d.ts +0 -10
  548. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.d.ts +0 -9
  549. package/lib/components/kv-g-icon/kv-g-icon.component.d.ts +0 -5
  550. package/lib/components/kv-g-icon/kv-g-icon.module.d.ts +0 -9
  551. package/lib/components/kv-home-card/kv-home-card.component.d.ts +0 -24
  552. package/lib/components/kv-home-card/kv-home-card.module.d.ts +0 -11
  553. package/lib/components/kv-image-upload/kv-image-upload.component.d.ts +0 -33
  554. package/lib/components/kv-image-upload/kv-image-upload.module.d.ts +0 -8
  555. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +0 -12
  556. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +0 -33
  557. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +0 -30
  558. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +0 -34
  559. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +0 -12
  560. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +0 -19
  561. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +0 -13
  562. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +0 -11
  563. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +0 -17
  564. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +0 -16
  565. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +0 -10
  566. package/lib/components/kv-inputs/kv-inputs.module.d.ts +0 -30
  567. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +0 -16
  568. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +0 -20
  569. package/lib/components/kv-inputs/kv-select-button/kv-select-button.component.d.ts +0 -19
  570. package/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.d.ts +0 -24
  571. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +0 -16
  572. package/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.d.ts +0 -25
  573. package/lib/components/kv-label/kv-label.component.d.ts +0 -7
  574. package/lib/components/kv-label/kv-label.module.d.ts +0 -8
  575. package/lib/components/kv-layout/dropdown-master/dropdown-master.component.d.ts +0 -12
  576. package/lib/components/kv-layout/kv-layout.module.d.ts +0 -14
  577. package/lib/components/kv-layout/layout/kv-layout.component.d.ts +0 -123
  578. package/lib/components/kv-loader/kv-loader.component.d.ts +0 -7
  579. package/lib/components/kv-loader/kv-loader.module.d.ts +0 -9
  580. package/lib/components/kv-loader/kv-loader.service.d.ts +0 -10
  581. package/lib/components/kv-login/kv-login.component.d.ts +0 -32
  582. package/lib/components/kv-login/kv-login.module.d.ts +0 -13
  583. package/lib/components/kv-modal/kv-modal.component.d.ts +0 -27
  584. package/lib/components/kv-modal/kv-modal.module.d.ts +0 -10
  585. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +0 -45
  586. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +0 -17
  587. package/lib/components/kv-page-form/kv-page-form.component.d.ts +0 -104
  588. package/lib/components/kv-page-form/kv-page-form.module.d.ts +0 -12
  589. package/lib/components/kv-page-stepper/kv-page-stepper.component.d.ts +0 -84
  590. package/lib/components/kv-page-stepper/kv-page-stepper.module.d.ts +0 -13
  591. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +0 -50
  592. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +0 -11
  593. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +0 -67
  594. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +0 -9
  595. package/lib/components/kv-report/kv-report.component.d.ts +0 -18
  596. package/lib/components/kv-report/kv-report.module.d.ts +0 -8
  597. package/lib/components/kv-stepper/kv-stepper.component.d.ts +0 -32
  598. package/lib/components/kv-stepper/kv-stepper.module.d.ts +0 -12
  599. package/lib/components/kv-table/kv-table.component.d.ts +0 -154
  600. package/lib/components/kv-table/kv-table.module.d.ts +0 -12
  601. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +0 -61
  602. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +0 -15
  603. package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +0 -119
  604. package/lib/components/kv-table-expandable/kv-table-expandable.module.d.ts +0 -13
  605. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +0 -86
  606. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +0 -11
  607. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +0 -21
  608. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +0 -9
  609. package/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.d.ts +0 -20
  610. package/lib/components/kv-workspace/kv-workspace.module.d.ts +0 -18
  611. package/lib/components/kv-workspace/logo/kv-workspace-logo.component.d.ts +0 -11
  612. package/lib/components/kv-workspace/master/kv-workspace-master.component.d.ts +0 -18
  613. package/lib/components/kv-workspace/workspace/kv-workspace.component.d.ts +0 -29
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/keevo-components",
4
+ "lib": {
5
+ "entryFile": "./src/public-api.ts"
6
+ },
7
+ "assets": [
8
+ "./src/lib/components/keevo-components-styles.scss",
9
+ "./src/lib/components/kv-button/kv-button.component.scss",
10
+ "./src/lib/components/kv-table/kv-table.component.scss"
11
+ ]
12
+ }
package/package.json CHANGED
@@ -1,40 +1,27 @@
1
- {
2
- "name": "keevo-components",
3
- "version": "1.8.540",
4
- "peerDependencies": {
5
- "@angular/common": "^17.3.8",
6
- "@angular/core": "^17.3.8",
7
- "@types/d3": "^7.4.3",
8
- "@types/d3-org-chart": "^3.1.2",
9
- "@types/vkbeautify": "^0.99.4",
10
- "chart.js": "^4.4.2",
11
- "d3": "^7.9.0",
12
- "d3-org-chart": "^3.1.1",
13
- "ngx-loading": "^17.0.0",
14
- "primeflex": "^3.3.1",
15
- "primeicons": "^7.0.0",
16
- "primeng": "17.17.0",
17
- "quill": "^2.0.2",
18
- "vkbeautify": "^0.99.3",
19
- "ng2-pdf-viewer": "^10.2.2",
20
- "ngx-image-cropper": "^8.1.0"
21
- },
22
- "dependencies": {
23
- "tslib": "^2.3.0"
24
- },
25
- "sideEffects": false,
26
- "description": "Componentes utilizados no frontend dos sistemas da Keevo Software.",
27
- "module": "fesm2022/keevo-components.mjs",
28
- "typings": "index.d.ts",
29
- "exports": {
30
- "./package.json": {
31
- "default": "./package.json"
32
- },
33
- ".": {
34
- "types": "./index.d.ts",
35
- "esm2022": "./esm2022/keevo-components.mjs",
36
- "esm": "./esm2022/keevo-components.mjs",
37
- "default": "./fesm2022/keevo-components.mjs"
38
- }
39
- }
40
- }
1
+ {
2
+ "name": "keevo-components",
3
+ "version": "1.8.541",
4
+ "peerDependencies": {
5
+ "@angular/common": "^17.3.8",
6
+ "@angular/core": "^17.3.8",
7
+ "@types/d3": "^7.4.3",
8
+ "@types/d3-org-chart": "^3.1.2",
9
+ "@types/vkbeautify": "^0.99.4",
10
+ "chart.js": "^4.4.2",
11
+ "d3": "^7.9.0",
12
+ "d3-org-chart": "^3.1.1",
13
+ "ngx-loading": "^17.0.0",
14
+ "primeflex": "^3.3.1",
15
+ "primeicons": "^7.0.0",
16
+ "primeng": "17.17.0",
17
+ "quill": "^2.0.2",
18
+ "vkbeautify": "^0.99.3",
19
+ "ng2-pdf-viewer": "^10.2.2",
20
+ "ngx-image-cropper": "^8.1.0"
21
+ },
22
+ "dependencies": {
23
+ "tslib": "^2.3.0"
24
+ },
25
+ "sideEffects": false,
26
+ "description": "Componentes utilizados no frontend dos sistemas da Keevo Software."
27
+ }
File without changes
Binary file
Binary file
@@ -0,0 +1,74 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1073.000000pt" height="626.000000pt" viewBox="0 0 1073.000000 626.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+
8
+ <g transform="translate(0.000000,626.000000) scale(0.100000,-0.100000)"
9
+ fill="#000000" stroke="none">
10
+ <path d="M1871 6249 c-514 -58 -965 -329 -1246 -749 -172 -257 -267 -541 -290
11
+ -862 l-7 -98 -115 0 c-126 0 -157 -10 -187 -60 -15 -26 -16 -182 -16 -1865 0
12
+ -1683 1 -1839 16 -1865 37 -62 17 -60 633 -60 l561 0 2 1658 3 1657 21 45 c26
13
+ 54 84 114 139 142 56 29 149 35 213 14 68 -23 143 -91 173 -158 l24 -53 5
14
+ -1266 5 -1266 991 876 c603 534 1008 884 1033 895 l41 19 -1 586 c0 427 -3
15
+ 595 -12 621 -7 19 -27 44 -46 57 l-34 23 -1558 0 c-857 0 -1560 3 -1562 8 -10
16
+ 19 16 232 42 333 134 527 562 932 1088 1028 154 28 244 33 374 21 472 -43 884
17
+ -312 1111 -725 53 -98 89 -125 163 -125 85 0 153 59 162 141 11 93 -148 341
18
+ -342 534 -263 262 -563 417 -929 480 -113 19 -346 27 -455 14z m1571 -2025
19
+ c51 -17 109 -67 134 -116 25 -49 30 -131 9 -184 -38 -99 -115 -153 -218 -154
20
+ -136 0 -236 97 -237 230 0 166 155 278 312 224z"/>
21
+ <path d="M5188 3641 l-33 -29 -3 -1070 -2 -1069 23 -34 c30 -45 83 -60 133
22
+ -36 60 29 64 52 64 344 l0 258 84 73 c47 41 88 73 93 72 4 -1 226 -167 493
23
+ -369 267 -202 495 -373 507 -379 47 -25 112 -3 138 48 20 38 19 69 -3 103 -9
24
+ 15 -229 188 -488 385 -258 196 -471 361 -473 365 -1 5 179 169 401 365 221
25
+ 197 409 370 416 385 18 38 8 88 -25 121 -20 21 -35 26 -73 26 l-47 0 -509
26
+ -450 -509 -450 -5 647 c-4 495 -8 653 -18 670 -34 60 -111 71 -164 24z"/>
27
+ <path d="M7593 3204 c-208 -45 -406 -173 -532 -343 -63 -85 -133 -231 -157
28
+ -331 -28 -112 -27 -346 3 -455 133 -488 619 -777 1101 -654 85 21 217 81 288
29
+ 130 70 48 180 155 194 189 29 71 -24 150 -101 150 -35 0 -48 -8 -121 -76 -95
30
+ -87 -178 -136 -286 -171 -276 -88 -584 19 -758 263 -54 75 -101 183 -110 248
31
+ l-7 46 758 0 757 0 35 35 36 36 -6 97 c-25 397 -300 730 -681 827 -81 21 -121
32
+ 25 -225 24 -69 -1 -154 -7 -188 -15z m352 -220 c33 -8 98 -33 145 -56 69 -33
33
+ 102 -58 176 -132 76 -76 98 -105 132 -176 39 -83 71 -185 60 -195 -2 -3 -309
34
+ -4 -680 -3 l-675 3 14 55 c35 141 139 297 252 383 169 127 371 169 576 121z"/>
35
+ <path d="M9696 3199 c-87 -12 -233 -60 -313 -105 -215 -120 -385 -345 -444
36
+ -589 -31 -125 -31 -305 -1 -429 84 -342 354 -608 693 -682 97 -21 281 -21 378
37
+ 0 186 41 370 149 484 284 30 36 37 52 37 87 0 74 -63 123 -133 104 -15 -4 -64
38
+ -42 -108 -83 -135 -127 -290 -190 -469 -190 -116 0 -196 20 -310 76 -69 33
39
+ -102 58 -170 127 -105 105 -166 215 -195 349 l-7 32 754 0 c729 0 754 1 785
40
+ 20 45 27 55 72 43 185 -14 117 -34 191 -81 293 -130 283 -403 484 -709 522
41
+ -96 11 -136 11 -234 -1z m294 -234 c30 -8 93 -33 140 -56 109 -54 236 -177
42
+ 292 -284 31 -61 78 -190 78 -216 0 -5 -287 -9 -680 -9 -374 0 -680 3 -680 6 0
43
+ 31 40 144 73 209 57 111 181 235 292 292 73 38 153 64 230 77 50 7 196 -3 255
44
+ -19z"/>
45
+ <path d="M3205 1930 c-363 -321 -661 -584 -663 -586 -2 -1 189 -149 425 -328
46
+ l428 -325 197 -1 197 0 34 33 c26 24 37 44 41 77 4 25 6 420 4 879 l-3 834
47
+ -660 -583z"/>
48
+ <path d="M8015 987 c-123 -41 -210 -142 -234 -272 -14 -77 -15 -659 -1 -686
49
+ 12 -22 68 -27 88 -7 8 8 12 67 12 201 l0 189 37 -32 c66 -58 127 -80 224 -80
50
+ 76 0 93 4 147 30 137 69 207 215 181 378 -18 115 -86 210 -185 258 -66 32
51
+ -203 43 -269 21z m210 -106 c23 -10 59 -39 82 -64 150 -172 13 -450 -209 -424
52
+ -123 15 -205 104 -216 234 -8 107 51 212 143 254 53 24 147 24 200 0z"/>
53
+ <path d="M8873 986 c-96 -31 -189 -120 -220 -209 -28 -82 -24 -207 9 -279 33
54
+ -72 93 -137 155 -168 42 -22 61 -25 153 -25 116 0 154 13 219 74 18 17 35 31
55
+ 37 31 2 0 4 -20 4 -45 0 -39 4 -47 25 -57 19 -8 31 -8 51 0 l25 12 -3 218 c-3
56
+ 201 -5 220 -26 263 -34 70 -84 122 -153 159 -53 28 -74 33 -148 36 -55 3 -101
57
+ -1 -128 -10z m205 -102 c187 -78 202 -357 25 -461 -41 -24 -59 -28 -118 -28
58
+ -146 1 -244 102 -245 253 0 104 46 183 133 227 60 30 147 34 205 9z"/>
59
+ <path d="M9673 991 c-120 -31 -190 -139 -152 -238 25 -66 99 -112 222 -137
60
+ 139 -29 197 -65 197 -123 0 -52 -84 -103 -171 -103 -56 0 -136 28 -173 60 -53
61
+ 47 -106 37 -106 -20 0 -33 40 -72 105 -101 70 -32 235 -39 302 -14 90 35 143
62
+ 103 143 186 0 92 -61 152 -188 184 -210 53 -232 66 -232 131 0 54 57 88 146
63
+ 87 63 0 106 -17 157 -59 46 -38 97 -30 97 16 0 70 -106 132 -234 136 -45 2
64
+ -95 -1 -113 -5z"/>
65
+ <path d="M10342 986 c-54 -18 -108 -58 -127 -96 -22 -43 -19 -126 6 -166 35
66
+ -56 97 -86 252 -119 140 -30 189 -106 113 -173 -73 -64 -217 -52 -309 24 -33
67
+ 28 -69 31 -91 8 -47 -47 15 -113 138 -149 84 -25 225 -18 289 14 111 54 147
68
+ 185 76 275 -31 39 -108 74 -209 96 -100 21 -142 40 -164 72 -38 53 -1 109 85
69
+ 127 69 15 138 -1 190 -45 57 -47 119 -44 119 7 0 28 -49 78 -104 106 -63 32
70
+ -195 41 -264 19z"/>
71
+ <path d="M1952 821 l-144 -126 156 -3 c86 -1 226 -1 312 0 l157 3 -159 121
72
+ c-87 66 -163 123 -169 126 -5 3 -75 -51 -153 -121z"/>
73
+ </g>
74
+ </svg>
Binary file
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './public-api';
@@ -0,0 +1,29 @@
1
+ import {
2
+ Component,
3
+ EventEmitter,
4
+ Input,
5
+ Output
6
+ } from '@angular/core';
7
+
8
+ @Component({
9
+ template: '',
10
+ })
11
+ export class BaseComponentButton {
12
+
13
+ @Input() icon: string = '';
14
+ @Input() label: string = '';
15
+ @Input() loading: boolean = false;
16
+ @Input() disabled: boolean = false;
17
+ @Input() text: boolean = false;
18
+ @Input() color: string = 'bg-blue-100';
19
+
20
+
21
+
22
+ @Output() onClick: EventEmitter<any> = new EventEmitter();
23
+
24
+ constructor() { }
25
+
26
+ click(event: any): void {
27
+ this.onClick.emit();
28
+ }
29
+ }
@@ -0,0 +1,118 @@
1
+ import { Component, EventEmitter, OnInit, Output, ViewChild } from "@angular/core";
2
+ import { Observable } from "rxjs";
3
+
4
+ import { chartModel } from "../components/chart/chart.model";
5
+ import { ChartConfig, ChartDatasetConfig } from "../components/chart/chart.config";
6
+ import { KvChartComponent, PeriodosChart } from "../../components/kv-chart/kv-chart.component";
7
+
8
+ @Component({
9
+ template: ''
10
+ })
11
+ export abstract class BaseChartComponent implements OnInit {
12
+
13
+ chartConfig!: ChartConfig;
14
+ selectedData: number = 0;
15
+ enablePeriodos: number[] = [];
16
+ periodos = PeriodosChart;
17
+
18
+ @ViewChild(KvChartComponent) chartComponent?: KvChartComponent;
19
+
20
+ @Output() onPrintReport: EventEmitter<any> = new EventEmitter();
21
+
22
+ constructor() { }
23
+
24
+ protected changeData(event: any) {
25
+ if (event) {
26
+ this.selectedData = event?.value;
27
+ this.loadData();
28
+ }
29
+ }
30
+
31
+ ngOnInit(): void {
32
+ this.loadData()
33
+ }
34
+
35
+ abstract loadData(): void;
36
+
37
+ protected loadGraphic(obs: Observable<any>) {
38
+ obs
39
+ .subscribe({
40
+ next: (data: any) => {
41
+ this.chartConfig = this.assembleGraphic(data as chartModel[]);
42
+ this.chartComponent?.reInit(this.chartConfig);
43
+ },
44
+ error: (error: any) => { },
45
+ });
46
+ }
47
+
48
+ protected assembleGraphic(data: chartModel[]) {
49
+ let labels: string[] = [];
50
+ let datasets: ChartDatasetConfig[] = [];
51
+
52
+ // Tratando legendas
53
+ data.map((element: any) => {
54
+ if (element.labels && !labels.includes(element.labels)) {
55
+ labels.push(element.labels);
56
+ }
57
+ });
58
+
59
+ //Descobrindo quantas dimensões tem o gráfico
60
+ let numDatasets = Math.max(...data.map(o => o.numDatasets));
61
+
62
+ //Populando datasets
63
+ for (let i = 0; i <= numDatasets; i++) {
64
+ let backgroundColor: string[] = [];
65
+ let hoverBackgroundColor: string[] = [];
66
+ let borderColor: string[] = [];
67
+ let values: number[] = [];
68
+ let labelDataset: string = '';
69
+ let borderRadius: number = 10;
70
+ let hoverOffset: number = 0;
71
+ let borderWidth: number = 0;
72
+
73
+
74
+ data.filter((obj) => {
75
+ return obj.numDatasets === i;
76
+ }).map((obj) => {
77
+ if (obj.backgroundColor && !backgroundColor.includes(obj.backgroundColor)) {
78
+ backgroundColor.push(obj.backgroundColor);
79
+ }
80
+ if (obj.borderColor && !borderColor.includes(obj.borderColor)) {
81
+ borderColor.push(obj.borderColor);
82
+ }
83
+ if (obj.hoverBackgroundColor && !hoverBackgroundColor.includes(obj.hoverBackgroundColor)) {
84
+ hoverBackgroundColor.push(obj.hoverBackgroundColor);
85
+ }
86
+ if (obj.labelDataset) labelDataset = obj.labelDataset;
87
+
88
+ if(obj.borderRadius) borderRadius = obj.borderRadius;
89
+
90
+ if(obj.hoverOffset) hoverOffset = obj.hoverOffset;
91
+
92
+ if(obj.borderWidth) borderWidth = obj.borderWidth;
93
+
94
+ values.push(obj.datasets);
95
+ });
96
+
97
+ datasets.push(
98
+ {
99
+ label: labelDataset,
100
+ backgroundColor: backgroundColor,
101
+ hoverBackgroundColor: hoverBackgroundColor,
102
+ borderColor: borderColor?.length === 0 ? undefined : borderColor,
103
+ data: values,
104
+ borderRadius: borderRadius,
105
+ hoverOffset: hoverOffset,
106
+ borderWidth: borderWidth
107
+ }
108
+ );
109
+ }
110
+
111
+ let dados: ChartConfig = {
112
+ labels: labels,
113
+ datasets: datasets
114
+ };
115
+
116
+ return dados;
117
+ }
118
+ }
@@ -0,0 +1,367 @@
1
+ import { ActivatedRoute, Router } from '@angular/router';
2
+ import { Component, inject, OnDestroy, OnInit } from '@angular/core';
3
+ import {
4
+ DialogService,
5
+ DynamicDialogConfig,
6
+ DynamicDialogRef,
7
+ } from 'primeng/dynamicdialog';
8
+ import { FormGroup, ValidatorFn } from '@angular/forms';
9
+ import { Observable, combineLatest, filter, finalize } from 'rxjs';
10
+
11
+ import { ActionItem } from '../components/table/action-item';
12
+ import { BaseComponentCrud } from './base-component-crud';
13
+ import { FormService } from '../services/form.service';
14
+ import { NotificationService } from '../services/notification.service';
15
+ import { loading } from '../../components/kv-loader/kv-loader.service';
16
+
17
+ export interface DadosTela {
18
+ subTituloForm: string | undefined;
19
+ tituloForm: string | undefined;
20
+ rotaListar: string;
21
+ mensagemValidacao: boolean;
22
+ }
23
+
24
+ @Component({
25
+ template: '',
26
+ })
27
+ export abstract class BaseComponentCrudForm
28
+ extends BaseComponentCrud
29
+ implements OnInit, OnDestroy
30
+ {
31
+ protected isAccordionExpanded = false;
32
+ protected isNewRegistry = false;
33
+ protected isSaveLoading = false;
34
+ protected isView = false;
35
+
36
+ protected formGroup: FormGroup = new FormGroup({});
37
+ protected actions: ActionItem[] = [];
38
+
39
+ protected dadosTela: DadosTela | undefined;
40
+ protected popup: boolean = false;
41
+ protected registry: any = null;
42
+
43
+ private onSetFormValues: boolean = false;
44
+
45
+ constructor(
46
+ dialogService: DialogService,
47
+ notificationService: NotificationService,
48
+ protected activatedRoute: ActivatedRoute,
49
+ protected dynamicDialogRef: DynamicDialogRef,
50
+ protected dynamicDialogConfig: DynamicDialogConfig,
51
+ protected router: Router
52
+ ) {
53
+ super(dialogService, notificationService);
54
+ }
55
+
56
+ /**
57
+ * Método disparado para configuração do form
58
+ */
59
+ abstract configureForm(): void;
60
+
61
+ /**
62
+ * Método disparado para o carregamento do form
63
+ * @param id
64
+ */
65
+ abstract loadForm(id: any): void;
66
+
67
+ /**
68
+ * Método disparado para salvamento dos dados
69
+ */
70
+ abstract save(): void;
71
+
72
+ /**
73
+ * Método disparado para tratamento das notificações do backend
74
+ * @param err - Notificação
75
+ */
76
+ protected backendError(err: any): void {
77
+ if (err) {
78
+ if (err.status == 404) {
79
+ this.notificationService.toastError(err.error.item2[0].message);
80
+ return;
81
+ } else if (err.status == 400) {
82
+ // Erros de validação de domínio do backend
83
+ if (Array.isArray(err.error)) {
84
+ if (err.error?.length) {
85
+ if (err.error.length == 1 && err.error[0].key == '') {
86
+ this.notificationService.toastError(err.error[0].message);
87
+ return;
88
+ }
89
+
90
+ this.invalidForm(err.error);
91
+ return;
92
+ }
93
+ } else if (Array.isArray(err.error.item2)) {
94
+ if (err.error.item2?.length) {
95
+ if (err.error.item2.length == 1) {
96
+ this.notificationService.toastError(err.error.item2[0].message);
97
+ return;
98
+ }
99
+
100
+ this.invalidForm(err.error.item2);
101
+ return;
102
+ }
103
+ } else if (err.error?.title) {
104
+ // Erro de json no backend
105
+ this.notificationService.toastError(err.error.title);
106
+ return;
107
+ }
108
+ } else if (err.status == 415) {
109
+ if (err.error?.title) {
110
+ // Erro de json no backend
111
+ this.notificationService.toastError(err.error.title);
112
+ return;
113
+ }
114
+ }
115
+
116
+ // Qualquer outro tipo de erro que tenha mensagem
117
+ if (err.message) {
118
+ this.notificationService.toastError(err.message);
119
+ }
120
+ }
121
+ }
122
+
123
+ /**
124
+ * Método disparado ao clicar no botão de cancelamento
125
+ */
126
+ protected cancel() {
127
+ this.notificationService.question({
128
+ type: 'question',
129
+ message: 'Deseja cancelar a operação?',
130
+ accept: () => {
131
+ this.navigateList();
132
+ },
133
+ });
134
+ }
135
+
136
+ /**
137
+ * Verifica se houveram alterações nos componentes do formControl
138
+ * @param controls - Nomes do controles no formGroup
139
+ * @returns Observable
140
+ */
141
+ protected detectFormControlChanges(controls: Array<string>): Observable<any> {
142
+ const controlList: Observable<any>[] = [];
143
+ controls.forEach((controlName) =>
144
+ controlList.push(this.formGroup.controls[controlName].valueChanges)
145
+ );
146
+ return combineLatest(controlList).pipe(filter(() => !this.onSetFormValues));
147
+ }
148
+
149
+ /**
150
+ * Método responsável por desabilitar um componente
151
+ * @param controlName - Nome do controle no formGroup
152
+ */
153
+ protected disableComponent(controlName: string) {
154
+ FormService.disableControl(this.formGroup, controlName);
155
+ }
156
+
157
+ /**
158
+ * Método responsável por limpar e desabilitar um componente
159
+ * @param controlName - Nome do controle no formGroup
160
+ * @param value - Valor default
161
+ */
162
+ protected disableAndClearComponent(controlName: string, value?: any) {
163
+ FormService.disableAndClearControl(this.formGroup, controlName, value);
164
+ }
165
+
166
+ /**
167
+ * Método responsável por habilitar um componente
168
+ * @param controlName - Nome do controle no formGroup
169
+ */
170
+ protected enableComponent(controName: string) {
171
+ FormService.enableControl(this.formGroup, controName);
172
+ }
173
+
174
+ /**
175
+ * Método que retorna o valor de um componente
176
+ * @param controlName - Nome do controle no formGroup
177
+ * @returns - Valor
178
+ */
179
+ protected getFormValue<T>(controlName: string): T {
180
+ return FormService.getFormValue<T>(this.formGroup, controlName);
181
+ }
182
+
183
+ /**
184
+ * Verifica se o componente possui erro
185
+ * @param controlName - Nome do controle no formGroup
186
+ */
187
+ protected hasControlError(controlName: string, errorCode?: string): boolean {
188
+ return FormService.hasControlError(this.formGroup, controlName, errorCode);
189
+ }
190
+
191
+ /**
192
+ * Seta inconsistências para o fomulário
193
+ * @param notification - Lista de notificações
194
+ */
195
+ protected invalidForm(notification?: any) {
196
+ FormService.invalidForm(this.formGroup, notification);
197
+ }
198
+
199
+ /**
200
+ * Tratamento de inconsistências do formulário
201
+ */
202
+ protected invalidateForm() {
203
+ this.isAccordionExpanded = true;
204
+ this.invalidForm();
205
+
206
+ if (this.dadosTela?.mensagemValidacao) {
207
+ this.notificationService.dialog({
208
+ type: 'alert',
209
+ message: 'Verifique os campos obrigatórios.',
210
+ });
211
+ }
212
+ }
213
+
214
+ /**
215
+ * Método responsável pelo carregamento da tela
216
+ * @param obs - Observable responsável pelo salvamento dos dados
217
+ */
218
+ public loadData<T>(obs: Observable<any>) {
219
+ obs.pipe(loading()).subscribe((data: any) => {
220
+ this.isNewRegistry = false;
221
+ this.registry = data as T;
222
+ this.setFormValues(this.registry);
223
+ this.loadGrids();
224
+ this.setTitlePopup();
225
+ });
226
+ }
227
+
228
+ async loadDataAsync<T>(obs: Observable<any>) {
229
+ await obs.pipe(loading()).toPromise();
230
+ const data: any = await obs.toPromise();
231
+
232
+ this.isNewRegistry = false;
233
+ this.registry = data as T;
234
+ this.setFormValues(this.registry);
235
+ this.loadGrids();
236
+ this.setTitlePopup();
237
+ }
238
+
239
+ /**
240
+ * Método disparado para carregamento de grids (Disparado após o loadData)
241
+ */
242
+ public loadGrids() {}
243
+
244
+ /**
245
+ * Método disparado para retornar a lista
246
+ */
247
+ protected navigateList(id: any = null) {
248
+ if (this.popup) {
249
+ this.dynamicDialogRef.close(id);
250
+ } else if (this.dadosTela?.rotaListar) {
251
+ this.router.navigate([this.dadosTela.rotaListar]);
252
+ }
253
+ }
254
+
255
+ public ngOnDestroy() {
256
+ if (this.dynamicDialogRef) {
257
+ this.dynamicDialogRef.close();
258
+ }
259
+ }
260
+
261
+ public ngOnInit() {
262
+ this.configureForm();
263
+
264
+ this.popup = this.dynamicDialogConfig?.data?.popup || false;
265
+
266
+ this.activatedRoute.params.subscribe((params: any) => {
267
+ if (params['id']) {
268
+ this.loadForm(params['id']);
269
+ } else if (this.dynamicDialogConfig?.data?.id) {
270
+ this.loadForm(this.dynamicDialogConfig.data.id);
271
+ } else {
272
+ this.isNewRegistry = true;
273
+ this.loadGrids();
274
+ this.setTitlePopup();
275
+ }
276
+ });
277
+ }
278
+
279
+ /**
280
+ * Método disparado para salvar dados
281
+ * @param obs - Observable responsável pelo salvamento dos dados
282
+ */
283
+ protected saveData(obs: Observable<any>) {
284
+ obs
285
+ .pipe((src: Observable<any>) => {
286
+ this.isSaveLoading = true;
287
+ return src.pipe(
288
+ finalize(() => {
289
+ this.isSaveLoading = false;
290
+ })
291
+ );
292
+ })
293
+ .subscribe({
294
+ next: (res: any) => {
295
+ this.notificationService.toastSuccess(res.item2[0].message);
296
+ this.navigateList(res.item1);
297
+ },
298
+ error: (e) => {
299
+ this.backendError(e);
300
+ },
301
+ });
302
+ }
303
+
304
+ /**
305
+ * Método se atualiza o valor de um componente do formGroup
306
+ * @param controName - Nome do controle
307
+ * @param value - Valor para atualização
308
+ */
309
+ protected setControlValue(controName: string, value: any) {
310
+ FormService.setControlValue(this.formGroup, controName, value);
311
+ }
312
+
313
+ /**
314
+ * Atualiza valores dos componentes do formGroup
315
+ * @param values - Valores para atualização
316
+ */
317
+ protected setFormValues(values: any) {
318
+ this.onSetFormValues = true;
319
+ this.formGroup.patchValue(values, { emitEvent: false });
320
+ this.onSetFormValues = false;
321
+ }
322
+
323
+ /**
324
+ * Seta o título do popup
325
+ */
326
+ private setTitlePopup() {
327
+ if (this.popup) {
328
+ if (this.dynamicDialogConfig)
329
+ this.dynamicDialogConfig.header = this.dadosTela?.tituloForm;
330
+ }
331
+ }
332
+
333
+ /**
334
+ * Atualiza o validador de um componente do formGroup
335
+ * @param controName - Nome do controle
336
+ * @param validators - Regra de validação
337
+ */
338
+ protected setValidators(
339
+ controName: string,
340
+ validators: ValidatorFn | ValidatorFn[] | null
341
+ ) {
342
+ FormService.setValidators(this.formGroup, controName, validators);
343
+ }
344
+
345
+ /**
346
+ * Dispara os métodos de validações do formulário
347
+ * @returns - True/False
348
+ */
349
+ protected validateForm(): boolean {
350
+ let valid: boolean = false;
351
+
352
+ if (this.formGroup && this.formGroup.valid) {
353
+ valid = true;
354
+ } else {
355
+ this.invalidateForm();
356
+ }
357
+
358
+ return valid;
359
+ }
360
+
361
+ /**
362
+ * Método que dispara a atualização da página inteira
363
+ */
364
+ protected refresh() {
365
+ window.location.reload();
366
+ }
367
+ }