keevo-components 1.8.42 → 1.8.45

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 (401) hide show
  1. package/ng-package.json +7 -0
  2. package/package.json +3 -16
  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 +27 -0
  13. package/src/lib/api/base-components/base-component-chart.ts +105 -0
  14. package/src/lib/api/base-components/base-component-crud-form.ts +361 -0
  15. package/src/lib/api/base-components/base-component-crud-list.ts +121 -0
  16. package/src/lib/api/base-components/base-component-crud.ts +70 -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 +170 -0
  20. package/src/lib/api/base-components/base-component-input.ts +107 -0
  21. package/src/lib/api/base-components/base-component-multi-select.ts +136 -0
  22. package/src/lib/api/base-components/base-component.ts +47 -0
  23. package/src/lib/api/components/chart/chart.config.ts +12 -0
  24. package/src/lib/api/components/chart/chart.model.ts +9 -0
  25. package/src/lib/api/components/chart/orchart.config.ts +41 -0
  26. package/src/lib/api/components/chart/orchart.item.ts +33 -0
  27. package/src/lib/api/components/dropdown/filtro.combo.ts +4 -0
  28. package/src/lib/api/components/table/action-item.ts +11 -0
  29. package/src/lib/api/components/table/kv-menuitem.ts +11 -0
  30. package/src/lib/api/components/table/table-dropdown-control.ts +6 -0
  31. package/src/lib/api/components/table/table.config.column.ts +27 -0
  32. package/src/lib/api/components/table/table.config.ts +22 -0
  33. package/src/lib/api/components/table/table.paginate.ts +6 -0
  34. package/src/lib/api/components/table/tabledit.config.ts +10 -0
  35. package/src/lib/api/components/table/tableedit.config.column.ts +12 -0
  36. package/src/lib/api/directives/directives.module.ts +16 -0
  37. package/src/lib/api/directives/drag/drag.directive.ts +40 -0
  38. package/src/lib/api/directives/template/template.directive.ts +15 -0
  39. package/src/lib/api/helpers/component-providers.ts +16 -0
  40. package/src/lib/api/helpers/keevo-validators.ts +86 -0
  41. package/src/lib/api/helpers/translate-primeng.ts +25 -0
  42. package/src/lib/api/modules/primeng.module.ts +130 -0
  43. package/src/lib/api/pipes/cpfcnpj.pipe.ts +21 -0
  44. package/src/lib/api/pipes/mask.pipe.ts +24 -0
  45. package/src/lib/api/pipes/pipes.module.ts +23 -0
  46. package/src/lib/api/pipes/telefone.pipe.ts +38 -0
  47. package/src/lib/api/services/base.api.service.ts +115 -0
  48. package/src/lib/api/services/breadcrumbs.service.ts +58 -0
  49. package/src/lib/api/services/component.service.ts +32 -0
  50. package/src/lib/api/services/docs.service.ts +129 -0
  51. package/src/lib/api/services/form.service.ts +115 -0
  52. package/src/lib/api/services/imagens.service.ts +28 -0
  53. package/src/lib/api/services/notification.service.ts +85 -0
  54. package/src/lib/api/services/object.service.ts +33 -0
  55. package/src/lib/components/keevo-components-styles.scss +11 -0
  56. package/src/lib/components/keevo-components.module.ts +65 -0
  57. package/src/lib/components/kv-avatar/kv-avatar.component.html +12 -0
  58. package/src/lib/components/kv-avatar/kv-avatar.component.scss +45 -0
  59. package/src/lib/components/kv-avatar/kv-avatar.component.spec.ts +23 -0
  60. package/src/lib/components/kv-avatar/kv-avatar.component.ts +72 -0
  61. package/src/lib/components/kv-avatar/kv-avatar.module.ts +21 -0
  62. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.html +15 -0
  63. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.scss +3 -0
  64. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.ts +34 -0
  65. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.html +12 -0
  66. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.scss +13 -0
  67. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.ts +35 -0
  68. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.html +12 -0
  69. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.scss +14 -0
  70. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.ts +14 -0
  71. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.html +11 -0
  72. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.scss +13 -0
  73. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.ts +14 -0
  74. package/src/lib/components/kv-buttons/kv-button.module.ts +26 -0
  75. package/src/lib/components/kv-carousel/kv-carousel.component.html +31 -0
  76. package/src/lib/components/kv-carousel/kv-carousel.component.scss +24 -0
  77. package/src/lib/components/kv-carousel/kv-carousel.component.spec.ts +23 -0
  78. package/src/lib/components/kv-carousel/kv-carousel.component.ts +104 -0
  79. package/src/lib/components/kv-carousel/kv-carousel.module.ts +19 -0
  80. package/src/lib/components/kv-chart/kv-chart.component.html +38 -0
  81. package/src/lib/components/kv-chart/kv-chart.component.scss +0 -0
  82. package/src/lib/components/kv-chart/kv-chart.component.spec.ts +28 -0
  83. package/src/lib/components/kv-chart/kv-chart.component.ts +153 -0
  84. package/src/lib/components/kv-chart/kv-chart.module.ts +21 -0
  85. package/src/lib/components/kv-error/kv-error.component.html +3 -0
  86. package/src/lib/components/kv-error/kv-error.component.scss +5 -0
  87. package/src/lib/components/kv-error/kv-error.component.ts +27 -0
  88. package/src/lib/components/kv-error/kv-error.module.ts +26 -0
  89. package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +11 -0
  90. package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +13 -0
  91. package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +32 -0
  92. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +91 -0
  93. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.scss +4 -0
  94. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +38 -0
  95. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +97 -0
  96. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +4 -0
  97. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +99 -0
  98. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +30 -0
  99. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +0 -0
  100. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +84 -0
  101. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +22 -0
  102. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
  103. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +35 -0
  104. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +23 -0
  105. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
  106. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +61 -0
  107. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +23 -0
  108. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
  109. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +26 -0
  110. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +22 -0
  111. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +18 -0
  112. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +27 -0
  113. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +35 -0
  114. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +0 -0
  115. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +23 -0
  116. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +43 -0
  117. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +22 -0
  118. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
  119. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +40 -0
  120. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +23 -0
  121. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
  122. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +27 -0
  123. package/src/lib/components/kv-inputs/kv-inputs.module.ts +70 -0
  124. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +45 -0
  125. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +8 -0
  126. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +44 -0
  127. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +19 -0
  128. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +15 -0
  129. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +59 -0
  130. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +13 -0
  131. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +3 -0
  132. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +41 -0
  133. package/src/lib/components/kv-label/kv-label.component.html +6 -0
  134. package/src/lib/components/kv-label/kv-label.component.scss +9 -0
  135. package/src/lib/components/kv-label/kv-label.component.spec.ts +23 -0
  136. package/src/lib/components/kv-label/kv-label.component.ts +14 -0
  137. package/src/lib/components/kv-label/kv-label.module.ts +17 -0
  138. package/src/lib/components/kv-loader/kv-loader.component.html +1 -0
  139. package/src/lib/components/kv-loader/kv-loader.component.ts +15 -0
  140. package/src/lib/components/kv-loader/kv-loader.module.ts +17 -0
  141. package/src/lib/components/kv-loader/kv-loader.service.ts +31 -0
  142. package/src/lib/components/kv-login/kv-login.component.html +108 -0
  143. package/src/lib/components/kv-login/kv-login.component.scss +48 -0
  144. package/src/lib/components/kv-login/kv-login.component.spec.ts +23 -0
  145. package/src/lib/components/kv-login/kv-login.component.ts +81 -0
  146. package/src/lib/components/kv-login/kv-login.module.ts +33 -0
  147. package/src/lib/components/kv-menu/kv-menu.component.html +259 -0
  148. package/src/lib/components/kv-menu/kv-menu.component.scss +210 -0
  149. package/src/lib/components/kv-menu/kv-menu.component.spec.ts +23 -0
  150. package/src/lib/components/kv-menu/kv-menu.component.ts +192 -0
  151. package/src/lib/components/kv-menu/kv-menu.module.ts +33 -0
  152. package/src/lib/components/kv-modal/kv-modal.component.html +19 -0
  153. package/src/lib/components/kv-modal/kv-modal.component.scss +13 -0
  154. package/src/lib/components/kv-modal/kv-modal.component.spec.ts +21 -0
  155. package/src/lib/components/kv-modal/kv-modal.component.ts +73 -0
  156. package/src/lib/components/kv-modal/kv-modal.module.ts +21 -0
  157. package/src/lib/components/kv-orgchart/kv-orgchart.component.html +58 -0
  158. package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +21 -0
  159. package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +110 -0
  160. package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +14 -0
  161. package/src/lib/components/kv-page-form/kv-page-form.component.html +59 -0
  162. package/src/lib/components/kv-page-form/kv-page-form.component.scss +76 -0
  163. package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +28 -0
  164. package/src/lib/components/kv-page-form/kv-page-form.component.ts +134 -0
  165. package/src/lib/components/kv-page-form/kv-page-form.module.ts +31 -0
  166. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +17 -0
  167. package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +0 -0
  168. package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +26 -0
  169. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +34 -0
  170. package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +21 -0
  171. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +38 -0
  172. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +110 -0
  173. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +21 -0
  174. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +79 -0
  175. package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +19 -0
  176. package/src/lib/components/kv-table/kv-table.component.html +530 -0
  177. package/src/lib/components/kv-table/kv-table.component.scss +265 -0
  178. package/src/lib/components/kv-table/kv-table.component.spec.ts +28 -0
  179. package/src/lib/components/kv-table/kv-table.component.ts +599 -0
  180. package/src/lib/components/kv-table/kv-table.module.ts +23 -0
  181. package/src/lib/components/kv-table-edit/kv-table-edit.component.html +630 -0
  182. package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +365 -0
  183. package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +602 -0
  184. package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +24 -0
  185. package/src/lib/components/kv-tree-table/kv-tree-table.component.html +316 -0
  186. package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +130 -0
  187. package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +21 -0
  188. package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +231 -0
  189. package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +18 -0
  190. package/src/lib/components/kv-tree-view/kv-tree-view.component.html +9 -0
  191. package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +0 -0
  192. package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +23 -0
  193. package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +31 -0
  194. package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +19 -0
  195. package/src/lib/components/kv-workspace/kv-workspace.component.html +57 -0
  196. package/src/lib/components/kv-workspace/kv-workspace.component.scss +117 -0
  197. package/src/lib/components/kv-workspace/kv-workspace.component.ts +196 -0
  198. package/src/lib/components/kv-workspace/kv-workspace.module.ts +35 -0
  199. package/{public-api.d.ts → src/public-api.ts} +41 -14
  200. package/tsconfig.lib.json +14 -0
  201. package/tsconfig.lib.prod.json +10 -0
  202. package/tsconfig.spec.json +14 -0
  203. package/esm2022/keevo-components.mjs +0 -5
  204. package/esm2022/lib/api/base-components/base-component-button.mjs +0 -36
  205. package/esm2022/lib/api/base-components/base-component-chart.mjs +0 -92
  206. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +0 -298
  207. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +0 -78
  208. package/esm2022/lib/api/base-components/base-component-crud.mjs +0 -65
  209. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +0 -31
  210. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +0 -169
  211. package/esm2022/lib/api/base-components/base-component-input.mjs +0 -94
  212. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +0 -130
  213. package/esm2022/lib/api/base-components/base-component.mjs +0 -51
  214. package/esm2022/lib/api/components/chart/chart.config.mjs +0 -2
  215. package/esm2022/lib/api/components/chart/chart.model.mjs +0 -2
  216. package/esm2022/lib/api/components/chart/orchart.config.mjs +0 -2
  217. package/esm2022/lib/api/components/chart/orchart.item.mjs +0 -2
  218. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +0 -2
  219. package/esm2022/lib/api/components/table/action-item.mjs +0 -2
  220. package/esm2022/lib/api/components/table/kv-menuitem.mjs +0 -3
  221. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +0 -2
  222. package/esm2022/lib/api/components/table/table.config.column.mjs +0 -2
  223. package/esm2022/lib/api/components/table/table.config.mjs +0 -2
  224. package/esm2022/lib/api/components/table/table.paginate.mjs +0 -9
  225. package/esm2022/lib/api/components/table/tabledit.config.mjs +0 -2
  226. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +0 -2
  227. package/esm2022/lib/api/directives/template/template.directive.mjs +0 -24
  228. package/esm2022/lib/api/helpers/component-providers.mjs +0 -16
  229. package/esm2022/lib/api/helpers/keevo-validators.mjs +0 -72
  230. package/esm2022/lib/api/helpers/translate-primeng.mjs +0 -23
  231. package/esm2022/lib/api/modules/primeng.module.mjs +0 -255
  232. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +0 -25
  233. package/esm2022/lib/api/pipes/mask.pipe.mjs +0 -29
  234. package/esm2022/lib/api/pipes/pipes.module.mjs +0 -34
  235. package/esm2022/lib/api/pipes/telefone.pipe.mjs +0 -45
  236. package/esm2022/lib/api/services/base.api.service.mjs +0 -74
  237. package/esm2022/lib/api/services/breadcrumbs.service.mjs +0 -57
  238. package/esm2022/lib/api/services/component.service.mjs +0 -27
  239. package/esm2022/lib/api/services/form.service.mjs +0 -85
  240. package/esm2022/lib/api/services/imagens.service.mjs +0 -28
  241. package/esm2022/lib/api/services/notification.service.mjs +0 -67
  242. package/esm2022/lib/api/services/object.service.mjs +0 -39
  243. package/esm2022/lib/components/keevo-components.module.mjs +0 -137
  244. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +0 -78
  245. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +0 -32
  246. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +0 -31
  247. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +0 -31
  248. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +0 -17
  249. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +0 -17
  250. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +0 -39
  251. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +0 -92
  252. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +0 -28
  253. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +0 -145
  254. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +0 -32
  255. package/esm2022/lib/components/kv-error/kv-error.component.mjs +0 -26
  256. package/esm2022/lib/components/kv-error/kv-error.module.mjs +0 -35
  257. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +0 -26
  258. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +0 -37
  259. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +0 -88
  260. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +0 -89
  261. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +0 -29
  262. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +0 -59
  263. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +0 -33
  264. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +0 -21
  265. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +0 -42
  266. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +0 -43
  267. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +0 -24
  268. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +0 -108
  269. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +0 -44
  270. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +0 -53
  271. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +0 -34
  272. package/esm2022/lib/components/kv-label/kv-label.component.mjs +0 -15
  273. package/esm2022/lib/components/kv-label/kv-label.module.mjs +0 -24
  274. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +0 -17
  275. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +0 -28
  276. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +0 -29
  277. package/esm2022/lib/components/kv-login/kv-login.component.mjs +0 -52
  278. package/esm2022/lib/components/kv-login/kv-login.module.mjs +0 -47
  279. package/esm2022/lib/components/kv-menu/kv-menu.component.mjs +0 -188
  280. package/esm2022/lib/components/kv-menu/kv-menu.module.mjs +0 -47
  281. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +0 -67
  282. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +0 -31
  283. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +0 -100
  284. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +0 -24
  285. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +0 -147
  286. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +0 -38
  287. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +0 -48
  288. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +0 -32
  289. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +0 -58
  290. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +0 -28
  291. package/esm2022/lib/components/kv-table/kv-table.component.mjs +0 -550
  292. package/esm2022/lib/components/kv-table/kv-table.module.mjs +0 -36
  293. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +0 -564
  294. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +0 -34
  295. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +0 -215
  296. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +0 -28
  297. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +0 -30
  298. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +0 -28
  299. package/esm2022/lib/components/kv-workspace/kv-workspace.component.mjs +0 -178
  300. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +0 -51
  301. package/esm2022/public-api.mjs +0 -166
  302. package/fesm2022/keevo-components.mjs +0 -5667
  303. package/fesm2022/keevo-components.mjs.map +0 -1
  304. package/index.d.ts +0 -5
  305. package/lib/api/base-components/base-component-button.d.ts +0 -14
  306. package/lib/api/base-components/base-component-chart.d.ts +0 -40
  307. package/lib/api/base-components/base-component-crud-form.d.ts +0 -145
  308. package/lib/api/base-components/base-component-crud-list.d.ts +0 -63
  309. package/lib/api/base-components/base-component-crud.d.ts +0 -36
  310. package/lib/api/base-components/base-component-dropdown-external.d.ts +0 -15
  311. package/lib/api/base-components/base-component-dropdown.d.ts +0 -44
  312. package/lib/api/base-components/base-component-input.d.ts +0 -31
  313. package/lib/api/base-components/base-component-multi-select.d.ts +0 -35
  314. package/lib/api/base-components/base-component.d.ts +0 -22
  315. package/lib/api/components/chart/chart.config.d.ts +0 -11
  316. package/lib/api/components/chart/chart.model.d.ts +0 -9
  317. package/lib/api/components/chart/orchart.config.d.ts +0 -35
  318. package/lib/api/components/chart/orchart.item.d.ts +0 -26
  319. package/lib/api/components/dropdown/filtro.combo.d.ts +0 -4
  320. package/lib/api/components/table/action-item.d.ts +0 -11
  321. package/lib/api/components/table/kv-menuitem.d.ts +0 -10
  322. package/lib/api/components/table/table-dropdown-control.d.ts +0 -6
  323. package/lib/api/components/table/table.config.column.d.ts +0 -25
  324. package/lib/api/components/table/table.config.d.ts +0 -19
  325. package/lib/api/components/table/table.paginate.d.ts +0 -6
  326. package/lib/api/components/table/tabledit.config.d.ts +0 -8
  327. package/lib/api/components/table/tableedit.config.column.d.ts +0 -10
  328. package/lib/api/directives/template/template.directive.d.ts +0 -11
  329. package/lib/api/helpers/component-providers.d.ts +0 -2
  330. package/lib/api/helpers/keevo-validators.d.ts +0 -11
  331. package/lib/api/helpers/translate-primeng.d.ts +0 -4
  332. package/lib/api/modules/primeng.module.d.ts +0 -62
  333. package/lib/api/pipes/cpfcnpj.pipe.d.ts +0 -7
  334. package/lib/api/pipes/mask.pipe.d.ts +0 -7
  335. package/lib/api/pipes/pipes.module.d.ts +0 -10
  336. package/lib/api/pipes/telefone.pipe.d.ts +0 -7
  337. package/lib/api/services/base.api.service.d.ts +0 -25
  338. package/lib/api/services/breadcrumbs.service.d.ts +0 -15
  339. package/lib/api/services/component.service.d.ts +0 -11
  340. package/lib/api/services/form.service.d.ts +0 -28
  341. package/lib/api/services/imagens.service.d.ts +0 -10
  342. package/lib/api/services/notification.service.d.ts +0 -25
  343. package/lib/api/services/object.service.d.ts +0 -9
  344. package/lib/components/keevo-components.module.d.ts +0 -24
  345. package/lib/components/kv-avatar/kv-avatar.component.d.ts +0 -22
  346. package/lib/components/kv-avatar/kv-avatar.module.d.ts +0 -10
  347. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +0 -13
  348. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +0 -13
  349. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +0 -7
  350. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +0 -7
  351. package/lib/components/kv-buttons/kv-button.module.d.ts +0 -11
  352. package/lib/components/kv-carousel/kv-carousel.component.d.ts +0 -16
  353. package/lib/components/kv-carousel/kv-carousel.module.d.ts +0 -9
  354. package/lib/components/kv-chart/kv-chart.component.d.ts +0 -56
  355. package/lib/components/kv-chart/kv-chart.module.d.ts +0 -10
  356. package/lib/components/kv-error/kv-error.component.d.ts +0 -12
  357. package/lib/components/kv-error/kv-error.module.d.ts +0 -10
  358. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +0 -11
  359. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +0 -14
  360. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +0 -36
  361. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +0 -27
  362. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +0 -12
  363. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +0 -19
  364. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +0 -13
  365. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +0 -9
  366. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +0 -16
  367. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +0 -16
  368. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +0 -10
  369. package/lib/components/kv-inputs/kv-inputs.module.d.ts +0 -25
  370. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +0 -15
  371. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +0 -18
  372. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +0 -14
  373. package/lib/components/kv-label/kv-label.component.d.ts +0 -7
  374. package/lib/components/kv-label/kv-label.module.d.ts +0 -8
  375. package/lib/components/kv-loader/kv-loader.component.d.ts +0 -8
  376. package/lib/components/kv-loader/kv-loader.module.d.ts +0 -9
  377. package/lib/components/kv-loader/kv-loader.service.d.ts +0 -10
  378. package/lib/components/kv-login/kv-login.component.d.ts +0 -30
  379. package/lib/components/kv-login/kv-login.module.d.ts +0 -13
  380. package/lib/components/kv-menu/kv-menu.component.d.ts +0 -58
  381. package/lib/components/kv-menu/kv-menu.module.d.ts +0 -13
  382. package/lib/components/kv-modal/kv-modal.component.d.ts +0 -20
  383. package/lib/components/kv-modal/kv-modal.module.d.ts +0 -10
  384. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +0 -27
  385. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +0 -9
  386. package/lib/components/kv-page-form/kv-page-form.component.d.ts +0 -70
  387. package/lib/components/kv-page-form/kv-page-form.module.d.ts +0 -11
  388. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +0 -20
  389. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +0 -10
  390. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +0 -67
  391. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +0 -9
  392. package/lib/components/kv-table/kv-table.component.d.ts +0 -111
  393. package/lib/components/kv-table/kv-table.module.d.ts +0 -11
  394. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +0 -115
  395. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +0 -12
  396. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +0 -42
  397. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +0 -9
  398. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +0 -14
  399. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +0 -9
  400. package/lib/components/kv-workspace/kv-workspace.component.d.ts +0 -46
  401. package/lib/components/kv-workspace/kv-workspace.module.d.ts +0 -14
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-progress-bar.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- export declare class KvProgressBarModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KvProgressBarModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvProgressBarModule, [typeof i1.ProgressBarComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.ProgressBarComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<KvProgressBarModule>;
9
- }
@@ -1,111 +0,0 @@
1
- import { DatePipe, DecimalPipe } from '@angular/common';
2
- import { ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
3
- import { MenuItemCommandEvent } from 'primeng/api';
4
- import { Table } from 'primeng/table';
5
- import { CpfCnpjPipe } from '../../api/pipes/cpfcnpj.pipe';
6
- import { KvMenuItem } from '../../api/components/table/kv-menuitem';
7
- import { TableConfig } from '../../api/components/table/table.config';
8
- import { TableConfigColumn } from '../../api/components/table/table.config.column';
9
- import { TelefonePipe } from '../../api/pipes/telefone.pipe';
10
- import * as i0 from "@angular/core";
11
- export declare class KvTableComponent implements OnInit {
12
- private readonly datePipe;
13
- private readonly decimalPipe;
14
- private readonly cpfCnpjPipe;
15
- private readonly telefonePipe;
16
- config: TableConfig;
17
- pesquisaValue: string;
18
- globalFilterFields: string[];
19
- actionsTemplate: TemplateRef<any>;
20
- selectedSize: string;
21
- tamanhoTela: number;
22
- menuItems: KvMenuItem[];
23
- menuColumns: KvMenuItem[];
24
- checked: boolean;
25
- columns: TableConfigColumn[];
26
- deletedColuns: TableConfigColumn[];
27
- menuFiltro: boolean;
28
- checkboxClicked: boolean;
29
- showFiltrosAvancados: boolean;
30
- collapsed: boolean;
31
- commandEvent: MenuItemCommandEvent;
32
- templates: QueryList<any>;
33
- _templates: any;
34
- table: Table;
35
- deletedColumnsIndex: any[];
36
- set setConfig(value: TableConfig);
37
- defaultSortField: string;
38
- dataSource: any;
39
- selectedItems: any[];
40
- totalRecords: number;
41
- paginator: boolean;
42
- rowsPerPageOptions: number[];
43
- rows: number;
44
- pageLinksOptions: number;
45
- showFirstLastIcon: boolean;
46
- tableSize: number;
47
- applyStyle: Function;
48
- acoesLinhaTabela: boolean;
49
- filterColumnsBtn: boolean;
50
- filtrosAvancados: boolean;
51
- scrollHeight: string;
52
- isTableScrollable: boolean;
53
- rowTrackBy: Function;
54
- responsiveLayout: boolean;
55
- onActiveItem: EventEmitter<any>;
56
- onActiveItemLote: EventEmitter<any>;
57
- onPaginate: EventEmitter<any>;
58
- onSelectionChange: EventEmitter<any>;
59
- doubleClickEvent: EventEmitter<any>;
60
- filterField: EventEmitter<any>;
61
- filtrosAvancadosEmit: EventEmitter<boolean>;
62
- onSwitchTableChange: EventEmitter<any>;
63
- menuFiltroDiv: ElementRef;
64
- botaoFiltro: ElementRef;
65
- constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
66
- ngOnInit(): void;
67
- onWindowResize(): void;
68
- activeItem(rowData: any): void;
69
- activeItemLote(rowData: any): void;
70
- isBooleanField(rowData: any, col: TableConfigColumn): boolean;
71
- isChipField(col: TableConfigColumn): boolean;
72
- isImageField(col: TableConfigColumn): boolean;
73
- isSwitchField(col: TableConfigColumn): boolean;
74
- isRowSelectable(event: any): boolean;
75
- isDisabledCheckbox(rowData: any): boolean;
76
- loadImage(rowData: any, col: TableConfigColumn): string;
77
- onGlobalFilter(table: Table, event: Event): void;
78
- paginate(event: any): void;
79
- selectionChange(value?: never[]): void;
80
- returnRowClass(rowData: any, col: TableConfigColumn): string;
81
- expiredFile(rowData: any, col: TableConfigColumn): boolean;
82
- transformValue(rowData: any, col: TableConfigColumn): any;
83
- formatarValor(valor: number): string;
84
- adjustTableSize(): void;
85
- doubleClick(e: any, rowData: any): void;
86
- centralizarColunas(col: any): string;
87
- alignColunas(col: any): string;
88
- alignColunasHeader(col: any): string;
89
- retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
90
- retornarRow(rowData: any, col: any, field: string): string;
91
- exibirCampo(field: any, rowData: any): any;
92
- criarMenusModal(data: any): void;
93
- returnClassChip(rowData: any, col: any): string;
94
- returnClassIcon(rowData: any, col: any): string;
95
- returnTooltipIcon(rowData: any, col: any): string;
96
- returnTooltipRow(rowData: any, col: any): any;
97
- deleteColumn(field: string): void;
98
- addColumn(field: string): void;
99
- dinamicColumnSet(e: any, col: any): void;
100
- checkMenuFiltro(col: any): void;
101
- sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
102
- callDisabled(action: KvMenuItem, data: any): boolean;
103
- dinamicDisableColumn(col: TableConfigColumn): boolean;
104
- checkHideColumns(): void;
105
- getCustomTemplate(templatename: string): TemplateRef<any>;
106
- filtrosAvancadosEvent(e: any): void;
107
- isButtonDisable(action: any, rowData: any, commandEvent: any): any;
108
- onSwitchChange(estado: any, rowData: boolean, col: any): void;
109
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "defaultSortField": { "alias": "defaultSortField"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "filtrosAvancadosEmit": "filtrosAvancadosEmit"; "onSwitchTableChange": "onSwitchTableChange"; }, ["templates"], ["*"], false, never>;
111
- }
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-table.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "../kv-inputs/kv-inputs.module";
7
- export declare class KvTableModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTableModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableModule, [typeof i1.KvTableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvInputsModule], [typeof i1.KvTableComponent]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<KvTableModule>;
11
- }
@@ -1,115 +0,0 @@
1
- import { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
2
- import { DatePipe, DecimalPipe } from '@angular/common';
3
- import { MenuItem, MenuItemCommandEvent, SelectItem } from 'primeng/api';
4
- import { Table } from 'primeng/table';
5
- import { CpfCnpjPipe, KvMenuItem, NotificationService, TableConfigColumn, TelefonePipe } from '../../../public-api';
6
- import { TableEditConfigColumn } from '../../api/components/table/tableedit.config.column';
7
- import TableEditConfig from '../../api/components/table/tabledit.config';
8
- import * as i0 from "@angular/core";
9
- export declare class KvTableEditComponent implements OnInit, OnChanges {
10
- private readonly datePipe;
11
- private readonly decimalPipe;
12
- private readonly cpfCnpjPipe;
13
- private readonly telefonePipe;
14
- private readonly notificationService;
15
- collapsed: boolean;
16
- config: TableEditConfig;
17
- globalFilterFields: string[];
18
- set setConfig(value: TableEditConfig);
19
- dataSource: any[];
20
- editMode: 'row' | 'cell';
21
- selectedItems: any[];
22
- selectedItem: any;
23
- totalRecords: number;
24
- paginator: boolean;
25
- rowsPerPageOptions: number[];
26
- rows: number;
27
- pageLinksOptions: number;
28
- showFirstLastIcon: boolean;
29
- tableSize: number;
30
- applyStyle: Function;
31
- acoesLinhaTabela: boolean;
32
- filterColumnsBtn: boolean;
33
- filtrosAvancados: boolean;
34
- scrollHeight: string;
35
- isTableScrollable: boolean;
36
- rowTrackBy: Function;
37
- responsiveLayout: boolean;
38
- espacamentoPai: string;
39
- espacamentoLateral: boolean;
40
- tamanhoTotalTabela: number;
41
- rightCollapse: boolean;
42
- onFilter: EventEmitter<any>;
43
- _templates: any;
44
- tamanhoTela: number;
45
- selectedSize: string;
46
- selecteIems: any[];
47
- menuItems: KvMenuItem[];
48
- imgDefault: string;
49
- isExpanded: boolean;
50
- commandEvent: MenuItemCommandEvent;
51
- statuses: SelectItem[];
52
- clonedDataSource: {
53
- [s: string]: any;
54
- };
55
- /** Emite evento de salvamento da linha */
56
- onRowSave: EventEmitter<any>;
57
- onActiveItem: EventEmitter<any>;
58
- onActiveItemLote: EventEmitter<any>;
59
- onPaginate: EventEmitter<any>;
60
- onSelectionChange: EventEmitter<any>;
61
- doubleClickEvent: EventEmitter<any>;
62
- filterField: EventEmitter<any>;
63
- onSwitchTableChange: EventEmitter<any>;
64
- constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe, notificationService: NotificationService);
65
- selectedProduct: any;
66
- items: MenuItem[];
67
- ngOnInit(): void;
68
- ngDoCheck(): void;
69
- dbClickEdit(): void;
70
- isRowSelectable(event: any): boolean;
71
- ngOnChanges(changes: SimpleChanges): void;
72
- onRowEditInit(rowData: any): void;
73
- onRowEditSave(rowData: any, index: any): void;
74
- onRowEditCancel(product: any, index: number): void;
75
- listarDrop(service: any, col: any, indtodos?: boolean): Promise<any>;
76
- retornaDescricaoDrop(rowData: any[], col: TableEditConfigColumn): any;
77
- onGlobalFilter(table: Table, event: Event): void;
78
- onWindowResize(): void;
79
- adjustTableSize(): void;
80
- paginate($event: any): void;
81
- isBooleanField(rowData: any, col: TableConfigColumn): boolean;
82
- isChipField(col: TableConfigColumn): boolean;
83
- isImageField(col: TableConfigColumn): boolean;
84
- returnRowClass(rowData: any, col: TableConfigColumn): string;
85
- transformValue(rowData: any, col: TableConfigColumn): any;
86
- alignColunasHeader(col: any): string;
87
- centralizarColunas(col: any): string;
88
- alignColunas(col: any): string;
89
- returnClassIcon(rowData: any, col: any): string;
90
- returnTooltipIcon(rowData: any, col: any): string;
91
- returnClassChip(rowData: any, col: any): string;
92
- retornarRow(rowData: any, col: any, field: string): string;
93
- selectionChange(value?: never[]): void;
94
- formatarValor(valor: number): string;
95
- loadImage(rowData: any, col: TableConfigColumn): string;
96
- getCustomTemplate(templatename: string): TemplateRef<any>;
97
- exibirCampo(field: any, rowData: any): any;
98
- activeItem(rowData: any): void;
99
- activeItemLote(rowData: any): void;
100
- retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
101
- callDisabled(action: KvMenuItem, data: any): boolean;
102
- criarMenusModal(data: any): void;
103
- validaLinhaAcaoVazia(rowData: any): boolean;
104
- doubleClick(e: any, rowData: any): void;
105
- isDisabledCheckbox(rowData: any): boolean;
106
- returnTooltipRow(rowData: any, col: any): any;
107
- isSwitchField(col: TableConfigColumn): boolean;
108
- onSwitchChange(estado: any, rowData: boolean, col: any): void;
109
- isButtonDisable(action: any, rowData: any, commandEvent: any): any;
110
- isDisableEditRowFunction(rowData: any): boolean;
111
- isDisableEditRowCellFunction(rowData: any, col: any): boolean;
112
- isEditableTable(): boolean | null;
113
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditComponent, never>;
114
- static ɵcmp: i0.ɵɵComponentDeclaration<KvTableEditComponent, "kv-table-edit", never, { "setConfig": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; "espacamentoPai": { "alias": "espacamentoPai"; "required": false; }; "espacamentoLateral": { "alias": "espacamentoLateral"; "required": false; }; "tamanhoTotalTabela": { "alias": "tamanhoTotalTabela"; "required": false; }; "rightCollapse": { "alias": "rightCollapse"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onRowSave": "onRowSave"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; }, never, ["*"], false, never>;
115
- }
@@ -1,12 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-table-edit.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "../kv-inputs/kv-inputs.module";
7
- import * as i6 from "../../api/pipes/pipes.module";
8
- export declare class KvTableEditModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTableEditModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvTableEditModule, [typeof i1.KvTableEditComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i5.KvInputsModule, typeof i6.PipesModule], [typeof i1.KvTableEditComponent]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<KvTableEditModule>;
12
- }
@@ -1,42 +0,0 @@
1
- import { EventEmitter, QueryList, TemplateRef } from '@angular/core';
2
- import { MenuItemCommandEvent } from 'primeng/api';
3
- import { TreeTable } from 'primeng/treetable';
4
- import { KvMenuItem } from '../../api/components/table/kv-menuitem';
5
- import * as i0 from "@angular/core";
6
- export declare class KvTreetableComponent {
7
- menuItems: KvMenuItem[];
8
- tamanhoTela: number;
9
- selectedItems: any;
10
- commandEvent: MenuItemCommandEvent;
11
- config: any;
12
- dataSource: any;
13
- gridLines: boolean;
14
- acoesLinhaTabela: boolean;
15
- onFilter: EventEmitter<any>;
16
- onPaginate: EventEmitter<any>;
17
- onActiveItem: EventEmitter<any>;
18
- onActiveItemLote: EventEmitter<any>;
19
- doubleClickEvent: EventEmitter<any>;
20
- ngOnInit(): void;
21
- templates: QueryList<any>;
22
- _templates: any;
23
- onWindowResize(): void;
24
- activeItem(rowData: any): void;
25
- activeItemLote(rowData: any): void;
26
- onGlobalFilter(table: TreeTable, event: Event): void;
27
- paginate($event: any): void;
28
- returnStyleRow(col: any, rowNode: any): string;
29
- alignColunasHeader(col: any): string;
30
- centralizarColunas(col: any): string;
31
- alignColunas(col: any): string;
32
- criarMenusModal(data: any): void;
33
- retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
34
- exibirCampo(field: any, rowData: any): any;
35
- validateActionPosition(rowNode: any): boolean;
36
- doubleClick(e: any, rowData: any): void;
37
- isDisabledCheckbox(rowData: any, rowNode: any): boolean;
38
- getCustomTemplate(templatename: string): TemplateRef<any>;
39
- validateShowTemplate(rowNode: any, col: any): boolean;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<KvTreetableComponent, "kv-tree-table", never, { "config": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "gridLines": { "alias": "gridLines"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; }, ["templates"], never, false, never>;
42
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-tree-table.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- export declare class KvTreetableModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvTreetableModule, [typeof i1.KvTreetableComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvTreetableComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<KvTreetableModule>;
9
- }
@@ -1,14 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { TreeNode } from 'primeng/api';
3
- import * as i0 from "@angular/core";
4
- export declare class KvTreeViewComponent implements OnInit {
5
- selectedFiles: any;
6
- selectionMode: any;
7
- treeViewData: TreeNode[];
8
- selectedItems: EventEmitter<any>;
9
- constructor();
10
- ngOnInit(): void;
11
- onSelectionChange(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<KvTreeViewComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<KvTreeViewComponent, "kv-tree-view", never, { "selectedFiles": { "alias": "selectedFiles"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "treeViewData": { "alias": "treeViewData"; "required": false; }; }, { "selectedItems": "selectedItems"; }, never, never, false, never>;
14
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-tree-view.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- export declare class KvtreeViewModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KvtreeViewModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvtreeViewModule, [typeof i1.KvTreeViewComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvTreeViewComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<KvtreeViewModule>;
9
- }
@@ -1,46 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { TableConfig } from '../../api/components/table/table.config';
3
- import * as i0 from "@angular/core";
4
- export declare class WorkspaceComponent implements OnInit {
5
- nomeSistema: string;
6
- nomeUsuario: string;
7
- masters: any[];
8
- somenteMaster: boolean;
9
- onGetMasterSelecionada: EventEmitter<any>;
10
- onGetEmpresaSelecionada: EventEmitter<any>;
11
- empresas: any[];
12
- masterSelecionada: any;
13
- empresaSelecionada: any;
14
- visivel: boolean;
15
- txtPesquisa: string;
16
- imgPersonagens: string;
17
- imgLogoKeevo: string;
18
- styleBackground: string;
19
- imgLogoKeevoCenter: string;
20
- selectedItemMaster: any;
21
- selectedItemsLoteMaster: any;
22
- tableSizeMaster: number;
23
- tableConfigMaster: TableConfig;
24
- dataSourceMaster: any;
25
- selectedItemEmpresa: any;
26
- selectedItemsLoteEmpresa: any;
27
- tableSizeEmpresa: number;
28
- tableConfigEmpresa: TableConfig;
29
- dataSourceEmpresa: any;
30
- constructor();
31
- ngOnInit(): void;
32
- verificaMasterUnica(): void;
33
- selecionarMaster(master: any): void;
34
- verificaEmpresaUnica(): void;
35
- selecionarEmpresa(empresa: any): void;
36
- voltar(): void;
37
- filtrarEmpresa(event: any): void;
38
- columnConfigTableMaster(): void;
39
- activeItemMaster(e: any): void;
40
- doubleClickMaster(e: any): void;
41
- columnConfigTableEmpresa(): void;
42
- activeItemEmpresa(e: any): void;
43
- doubleClickEmpresa(e: any): void;
44
- static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceComponent, "kv-workspace", never, { "nomeSistema": { "alias": "nomeSistema"; "required": false; }; "nomeUsuario": { "alias": "nomeUsuario"; "required": false; }; "masters": { "alias": "masters"; "required": false; }; "somenteMaster": { "alias": "somenteMaster"; "required": false; }; }, { "onGetMasterSelecionada": "onGetMasterSelecionada"; "onGetEmpresaSelecionada": "onGetEmpresaSelecionada"; }, never, never, false, never>;
46
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-workspace.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../api/modules/primeng.module";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "primeng/progressspinner";
7
- import * as i6 from "primeng/autocomplete";
8
- import * as i7 from "../kv-buttons/kv-button.module";
9
- import * as i8 from "../kv-table/kv-table.module";
10
- export declare class KvWorkspaceModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<KvWorkspaceModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvWorkspaceModule, [typeof i1.WorkspaceComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i5.ProgressSpinnerModule, typeof i6.AutoCompleteModule, typeof i4.FormsModule, typeof i7.KvButtonsModule, typeof i8.KvTableModule], [typeof i1.WorkspaceComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<KvWorkspaceModule>;
14
- }