keevo-components 1.8.45 → 1.8.47

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/esm2022/keevo-components.mjs +5 -0
  2. package/esm2022/lib/api/base-components/base-component-button.mjs +36 -0
  3. package/esm2022/lib/api/base-components/base-component-chart.mjs +92 -0
  4. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +298 -0
  5. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +78 -0
  6. package/esm2022/lib/api/base-components/base-component-crud.mjs +65 -0
  7. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +31 -0
  8. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +169 -0
  9. package/esm2022/lib/api/base-components/base-component-input.mjs +94 -0
  10. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +130 -0
  11. package/esm2022/lib/api/base-components/base-component.mjs +51 -0
  12. package/esm2022/lib/api/components/chart/chart.config.mjs +2 -0
  13. package/esm2022/lib/api/components/chart/chart.model.mjs +2 -0
  14. package/esm2022/lib/api/components/chart/orchart.config.mjs +2 -0
  15. package/esm2022/lib/api/components/chart/orchart.item.mjs +2 -0
  16. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +2 -0
  17. package/esm2022/lib/api/components/table/action-item.mjs +2 -0
  18. package/esm2022/lib/api/components/table/kv-menuitem.mjs +3 -0
  19. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +2 -0
  20. package/esm2022/lib/api/components/table/table.config.column.mjs +2 -0
  21. package/esm2022/lib/api/components/table/table.config.mjs +2 -0
  22. package/esm2022/lib/api/components/table/table.paginate.mjs +9 -0
  23. package/esm2022/lib/api/components/table/tabledit.config.mjs +2 -0
  24. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +2 -0
  25. package/esm2022/lib/api/directives/template/template.directive.mjs +24 -0
  26. package/esm2022/lib/api/helpers/component-providers.mjs +16 -0
  27. package/esm2022/lib/api/helpers/keevo-validators.mjs +72 -0
  28. package/esm2022/lib/api/helpers/translate-primeng.mjs +23 -0
  29. package/esm2022/lib/api/modules/primeng.module.mjs +255 -0
  30. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +25 -0
  31. package/esm2022/lib/api/pipes/mask.pipe.mjs +29 -0
  32. package/esm2022/lib/api/pipes/pipes.module.mjs +34 -0
  33. package/esm2022/lib/api/pipes/telefone.pipe.mjs +45 -0
  34. package/esm2022/lib/api/services/base.api.service.mjs +74 -0
  35. package/esm2022/lib/api/services/breadcrumbs.service.mjs +57 -0
  36. package/esm2022/lib/api/services/component.service.mjs +27 -0
  37. package/esm2022/lib/api/services/form.service.mjs +85 -0
  38. package/esm2022/lib/api/services/imagens.service.mjs +28 -0
  39. package/esm2022/lib/api/services/notification.service.mjs +67 -0
  40. package/esm2022/lib/api/services/object.service.mjs +39 -0
  41. package/esm2022/lib/components/keevo-components.module.mjs +137 -0
  42. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +78 -0
  43. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +32 -0
  44. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +31 -0
  45. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +31 -0
  46. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +17 -0
  47. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +17 -0
  48. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +39 -0
  49. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +92 -0
  50. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +28 -0
  51. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +145 -0
  52. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +32 -0
  53. package/esm2022/lib/components/kv-error/kv-error.component.mjs +26 -0
  54. package/esm2022/lib/components/kv-error/kv-error.module.mjs +35 -0
  55. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +26 -0
  56. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +37 -0
  57. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +88 -0
  58. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +89 -0
  59. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +29 -0
  60. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +59 -0
  61. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +33 -0
  62. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +25 -0
  63. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +42 -0
  64. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +43 -0
  65. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +24 -0
  66. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +108 -0
  67. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +44 -0
  68. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +53 -0
  69. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +34 -0
  70. package/esm2022/lib/components/kv-label/kv-label.component.mjs +15 -0
  71. package/esm2022/lib/components/kv-label/kv-label.module.mjs +24 -0
  72. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +17 -0
  73. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +28 -0
  74. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +29 -0
  75. package/esm2022/lib/components/kv-login/kv-login.component.mjs +52 -0
  76. package/esm2022/lib/components/kv-login/kv-login.module.mjs +47 -0
  77. package/esm2022/lib/components/kv-menu/kv-menu.component.mjs +190 -0
  78. package/esm2022/lib/components/kv-menu/kv-menu.module.mjs +47 -0
  79. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +67 -0
  80. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +31 -0
  81. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +100 -0
  82. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +24 -0
  83. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +147 -0
  84. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +38 -0
  85. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +48 -0
  86. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +32 -0
  87. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +58 -0
  88. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +28 -0
  89. package/esm2022/lib/components/kv-table/kv-table.component.mjs +553 -0
  90. package/esm2022/lib/components/kv-table/kv-table.module.mjs +36 -0
  91. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +564 -0
  92. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +34 -0
  93. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +220 -0
  94. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +28 -0
  95. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +30 -0
  96. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +28 -0
  97. package/esm2022/lib/components/kv-workspace/kv-workspace.component.mjs +178 -0
  98. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +51 -0
  99. package/esm2022/public-api.mjs +166 -0
  100. package/fesm2022/keevo-components.mjs +5680 -0
  101. package/fesm2022/keevo-components.mjs.map +1 -0
  102. package/index.d.ts +5 -0
  103. package/lib/api/base-components/base-component-button.d.ts +14 -0
  104. package/lib/api/base-components/base-component-chart.d.ts +40 -0
  105. package/lib/api/base-components/base-component-crud-form.d.ts +145 -0
  106. package/lib/api/base-components/base-component-crud-list.d.ts +63 -0
  107. package/lib/api/base-components/base-component-crud.d.ts +36 -0
  108. package/lib/api/base-components/base-component-dropdown-external.d.ts +15 -0
  109. package/lib/api/base-components/base-component-dropdown.d.ts +44 -0
  110. package/lib/api/base-components/base-component-input.d.ts +31 -0
  111. package/lib/api/base-components/base-component-multi-select.d.ts +35 -0
  112. package/lib/api/base-components/base-component.d.ts +22 -0
  113. package/lib/api/components/chart/chart.config.d.ts +11 -0
  114. package/lib/api/components/chart/chart.model.d.ts +9 -0
  115. package/lib/api/components/chart/orchart.config.d.ts +35 -0
  116. package/lib/api/components/chart/orchart.item.d.ts +26 -0
  117. package/lib/api/components/dropdown/filtro.combo.d.ts +4 -0
  118. package/lib/api/components/table/action-item.d.ts +11 -0
  119. package/lib/api/components/table/kv-menuitem.d.ts +10 -0
  120. package/lib/api/components/table/table-dropdown-control.d.ts +6 -0
  121. package/lib/api/components/table/table.config.column.d.ts +25 -0
  122. package/lib/api/components/table/table.config.d.ts +19 -0
  123. package/lib/api/components/table/table.paginate.d.ts +6 -0
  124. package/lib/api/components/table/tabledit.config.d.ts +8 -0
  125. package/lib/api/components/table/tableedit.config.column.d.ts +10 -0
  126. package/lib/api/directives/template/template.directive.d.ts +11 -0
  127. package/lib/api/helpers/component-providers.d.ts +2 -0
  128. package/lib/api/helpers/keevo-validators.d.ts +11 -0
  129. package/lib/api/helpers/translate-primeng.d.ts +4 -0
  130. package/lib/api/modules/primeng.module.d.ts +62 -0
  131. package/lib/api/pipes/cpfcnpj.pipe.d.ts +7 -0
  132. package/lib/api/pipes/mask.pipe.d.ts +7 -0
  133. package/lib/api/pipes/pipes.module.d.ts +10 -0
  134. package/lib/api/pipes/telefone.pipe.d.ts +7 -0
  135. package/lib/api/services/base.api.service.d.ts +25 -0
  136. package/lib/api/services/breadcrumbs.service.d.ts +15 -0
  137. package/lib/api/services/component.service.d.ts +11 -0
  138. package/lib/api/services/form.service.d.ts +28 -0
  139. package/lib/api/services/imagens.service.d.ts +10 -0
  140. package/lib/api/services/notification.service.d.ts +25 -0
  141. package/lib/api/services/object.service.d.ts +9 -0
  142. package/lib/components/keevo-components.module.d.ts +24 -0
  143. package/lib/components/kv-avatar/kv-avatar.component.d.ts +22 -0
  144. package/lib/components/kv-avatar/kv-avatar.module.d.ts +10 -0
  145. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +13 -0
  146. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +13 -0
  147. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +7 -0
  148. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +7 -0
  149. package/lib/components/kv-buttons/kv-button.module.d.ts +11 -0
  150. package/lib/components/kv-carousel/kv-carousel.component.d.ts +16 -0
  151. package/lib/components/kv-carousel/kv-carousel.module.d.ts +9 -0
  152. package/lib/components/kv-chart/kv-chart.component.d.ts +56 -0
  153. package/lib/components/kv-chart/kv-chart.module.d.ts +10 -0
  154. package/lib/components/kv-error/kv-error.component.d.ts +12 -0
  155. package/lib/components/kv-error/kv-error.module.d.ts +10 -0
  156. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +11 -0
  157. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +14 -0
  158. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +36 -0
  159. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +27 -0
  160. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +12 -0
  161. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +19 -0
  162. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +13 -0
  163. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +10 -0
  164. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +16 -0
  165. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +16 -0
  166. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +10 -0
  167. package/lib/components/kv-inputs/kv-inputs.module.d.ts +25 -0
  168. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +15 -0
  169. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +18 -0
  170. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +14 -0
  171. package/lib/components/kv-label/kv-label.component.d.ts +7 -0
  172. package/lib/components/kv-label/kv-label.module.d.ts +8 -0
  173. package/lib/components/kv-loader/kv-loader.component.d.ts +8 -0
  174. package/lib/components/kv-loader/kv-loader.module.d.ts +9 -0
  175. package/lib/components/kv-loader/kv-loader.service.d.ts +10 -0
  176. package/lib/components/kv-login/kv-login.component.d.ts +30 -0
  177. package/lib/components/kv-login/kv-login.module.d.ts +13 -0
  178. package/lib/components/kv-menu/kv-menu.component.d.ts +58 -0
  179. package/lib/components/kv-menu/kv-menu.module.d.ts +13 -0
  180. package/lib/components/kv-modal/kv-modal.component.d.ts +20 -0
  181. package/lib/components/kv-modal/kv-modal.module.d.ts +10 -0
  182. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +27 -0
  183. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +9 -0
  184. package/lib/components/kv-page-form/kv-page-form.component.d.ts +70 -0
  185. package/lib/components/kv-page-form/kv-page-form.module.d.ts +11 -0
  186. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +20 -0
  187. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +10 -0
  188. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +67 -0
  189. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +9 -0
  190. package/lib/components/kv-table/kv-table.component.d.ts +112 -0
  191. package/lib/components/kv-table/kv-table.module.d.ts +11 -0
  192. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +115 -0
  193. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +12 -0
  194. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +43 -0
  195. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +9 -0
  196. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +14 -0
  197. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +9 -0
  198. package/lib/components/kv-workspace/kv-workspace.component.d.ts +46 -0
  199. package/lib/components/kv-workspace/kv-workspace.module.d.ts +14 -0
  200. package/package.json +16 -3
  201. package/{src/public-api.ts → public-api.d.ts} +14 -41
  202. package/ng-package.json +0 -7
  203. package/src/assets/.gitkeep +0 -0
  204. package/src/assets/images/LogoEvo.png +0 -0
  205. package/src/assets/images/LogoPequenaEvo.png +0 -0
  206. package/src/assets/images/background.png +0 -0
  207. package/src/assets/images/keepass-logo.png +0 -0
  208. package/src/assets/images/keepass-logo.svg +0 -74
  209. package/src/assets/images/keevo-logo.png +0 -0
  210. package/src/assets/images/logokeevo_2.png +0 -0
  211. package/src/index.ts +0 -1
  212. package/src/lib/api/base-components/base-component-button.ts +0 -27
  213. package/src/lib/api/base-components/base-component-chart.ts +0 -105
  214. package/src/lib/api/base-components/base-component-crud-form.ts +0 -361
  215. package/src/lib/api/base-components/base-component-crud-list.ts +0 -121
  216. package/src/lib/api/base-components/base-component-crud.ts +0 -70
  217. package/src/lib/api/base-components/base-component-dropdown-external.ts +0 -29
  218. package/src/lib/api/base-components/base-component-dropdown-new.ts +0 -112
  219. package/src/lib/api/base-components/base-component-dropdown.ts +0 -170
  220. package/src/lib/api/base-components/base-component-input.ts +0 -107
  221. package/src/lib/api/base-components/base-component-multi-select.ts +0 -136
  222. package/src/lib/api/base-components/base-component.ts +0 -47
  223. package/src/lib/api/components/chart/chart.config.ts +0 -12
  224. package/src/lib/api/components/chart/chart.model.ts +0 -9
  225. package/src/lib/api/components/chart/orchart.config.ts +0 -41
  226. package/src/lib/api/components/chart/orchart.item.ts +0 -33
  227. package/src/lib/api/components/dropdown/filtro.combo.ts +0 -4
  228. package/src/lib/api/components/table/action-item.ts +0 -11
  229. package/src/lib/api/components/table/kv-menuitem.ts +0 -11
  230. package/src/lib/api/components/table/table-dropdown-control.ts +0 -6
  231. package/src/lib/api/components/table/table.config.column.ts +0 -27
  232. package/src/lib/api/components/table/table.config.ts +0 -22
  233. package/src/lib/api/components/table/table.paginate.ts +0 -6
  234. package/src/lib/api/components/table/tabledit.config.ts +0 -10
  235. package/src/lib/api/components/table/tableedit.config.column.ts +0 -12
  236. package/src/lib/api/directives/directives.module.ts +0 -16
  237. package/src/lib/api/directives/drag/drag.directive.ts +0 -40
  238. package/src/lib/api/directives/template/template.directive.ts +0 -15
  239. package/src/lib/api/helpers/component-providers.ts +0 -16
  240. package/src/lib/api/helpers/keevo-validators.ts +0 -86
  241. package/src/lib/api/helpers/translate-primeng.ts +0 -25
  242. package/src/lib/api/modules/primeng.module.ts +0 -130
  243. package/src/lib/api/pipes/cpfcnpj.pipe.ts +0 -21
  244. package/src/lib/api/pipes/mask.pipe.ts +0 -24
  245. package/src/lib/api/pipes/pipes.module.ts +0 -23
  246. package/src/lib/api/pipes/telefone.pipe.ts +0 -38
  247. package/src/lib/api/services/base.api.service.ts +0 -115
  248. package/src/lib/api/services/breadcrumbs.service.ts +0 -58
  249. package/src/lib/api/services/component.service.ts +0 -32
  250. package/src/lib/api/services/docs.service.ts +0 -129
  251. package/src/lib/api/services/form.service.ts +0 -115
  252. package/src/lib/api/services/imagens.service.ts +0 -28
  253. package/src/lib/api/services/notification.service.ts +0 -85
  254. package/src/lib/api/services/object.service.ts +0 -33
  255. package/src/lib/components/keevo-components-styles.scss +0 -11
  256. package/src/lib/components/keevo-components.module.ts +0 -65
  257. package/src/lib/components/kv-avatar/kv-avatar.component.html +0 -12
  258. package/src/lib/components/kv-avatar/kv-avatar.component.scss +0 -45
  259. package/src/lib/components/kv-avatar/kv-avatar.component.spec.ts +0 -23
  260. package/src/lib/components/kv-avatar/kv-avatar.component.ts +0 -72
  261. package/src/lib/components/kv-avatar/kv-avatar.module.ts +0 -21
  262. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.html +0 -15
  263. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.scss +0 -3
  264. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.ts +0 -34
  265. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.html +0 -12
  266. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.scss +0 -13
  267. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.ts +0 -35
  268. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.html +0 -12
  269. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.scss +0 -14
  270. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.ts +0 -14
  271. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.html +0 -11
  272. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.scss +0 -13
  273. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.ts +0 -14
  274. package/src/lib/components/kv-buttons/kv-button.module.ts +0 -26
  275. package/src/lib/components/kv-carousel/kv-carousel.component.html +0 -31
  276. package/src/lib/components/kv-carousel/kv-carousel.component.scss +0 -24
  277. package/src/lib/components/kv-carousel/kv-carousel.component.spec.ts +0 -23
  278. package/src/lib/components/kv-carousel/kv-carousel.component.ts +0 -104
  279. package/src/lib/components/kv-carousel/kv-carousel.module.ts +0 -19
  280. package/src/lib/components/kv-chart/kv-chart.component.html +0 -38
  281. package/src/lib/components/kv-chart/kv-chart.component.scss +0 -0
  282. package/src/lib/components/kv-chart/kv-chart.component.spec.ts +0 -28
  283. package/src/lib/components/kv-chart/kv-chart.component.ts +0 -153
  284. package/src/lib/components/kv-chart/kv-chart.module.ts +0 -21
  285. package/src/lib/components/kv-error/kv-error.component.html +0 -3
  286. package/src/lib/components/kv-error/kv-error.component.scss +0 -5
  287. package/src/lib/components/kv-error/kv-error.component.ts +0 -27
  288. package/src/lib/components/kv-error/kv-error.module.ts +0 -26
  289. package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +0 -11
  290. package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +0 -13
  291. package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +0 -32
  292. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +0 -91
  293. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.scss +0 -4
  294. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +0 -38
  295. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +0 -97
  296. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +0 -4
  297. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +0 -99
  298. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +0 -30
  299. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +0 -0
  300. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +0 -84
  301. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +0 -22
  302. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
  303. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +0 -35
  304. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +0 -23
  305. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
  306. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +0 -61
  307. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +0 -23
  308. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
  309. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +0 -26
  310. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +0 -22
  311. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +0 -18
  312. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +0 -27
  313. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +0 -35
  314. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +0 -0
  315. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +0 -23
  316. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +0 -43
  317. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +0 -22
  318. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
  319. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +0 -40
  320. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +0 -23
  321. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
  322. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +0 -27
  323. package/src/lib/components/kv-inputs/kv-inputs.module.ts +0 -70
  324. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +0 -45
  325. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +0 -8
  326. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +0 -44
  327. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +0 -19
  328. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +0 -15
  329. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +0 -59
  330. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +0 -13
  331. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +0 -3
  332. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +0 -41
  333. package/src/lib/components/kv-label/kv-label.component.html +0 -6
  334. package/src/lib/components/kv-label/kv-label.component.scss +0 -9
  335. package/src/lib/components/kv-label/kv-label.component.spec.ts +0 -23
  336. package/src/lib/components/kv-label/kv-label.component.ts +0 -14
  337. package/src/lib/components/kv-label/kv-label.module.ts +0 -17
  338. package/src/lib/components/kv-loader/kv-loader.component.html +0 -1
  339. package/src/lib/components/kv-loader/kv-loader.component.ts +0 -15
  340. package/src/lib/components/kv-loader/kv-loader.module.ts +0 -17
  341. package/src/lib/components/kv-loader/kv-loader.service.ts +0 -31
  342. package/src/lib/components/kv-login/kv-login.component.html +0 -108
  343. package/src/lib/components/kv-login/kv-login.component.scss +0 -48
  344. package/src/lib/components/kv-login/kv-login.component.spec.ts +0 -23
  345. package/src/lib/components/kv-login/kv-login.component.ts +0 -81
  346. package/src/lib/components/kv-login/kv-login.module.ts +0 -33
  347. package/src/lib/components/kv-menu/kv-menu.component.html +0 -259
  348. package/src/lib/components/kv-menu/kv-menu.component.scss +0 -210
  349. package/src/lib/components/kv-menu/kv-menu.component.spec.ts +0 -23
  350. package/src/lib/components/kv-menu/kv-menu.component.ts +0 -192
  351. package/src/lib/components/kv-menu/kv-menu.module.ts +0 -33
  352. package/src/lib/components/kv-modal/kv-modal.component.html +0 -19
  353. package/src/lib/components/kv-modal/kv-modal.component.scss +0 -13
  354. package/src/lib/components/kv-modal/kv-modal.component.spec.ts +0 -21
  355. package/src/lib/components/kv-modal/kv-modal.component.ts +0 -73
  356. package/src/lib/components/kv-modal/kv-modal.module.ts +0 -21
  357. package/src/lib/components/kv-orgchart/kv-orgchart.component.html +0 -58
  358. package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +0 -21
  359. package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +0 -110
  360. package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +0 -14
  361. package/src/lib/components/kv-page-form/kv-page-form.component.html +0 -59
  362. package/src/lib/components/kv-page-form/kv-page-form.component.scss +0 -76
  363. package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +0 -28
  364. package/src/lib/components/kv-page-form/kv-page-form.component.ts +0 -134
  365. package/src/lib/components/kv-page-form/kv-page-form.module.ts +0 -31
  366. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +0 -17
  367. package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +0 -0
  368. package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +0 -26
  369. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +0 -34
  370. package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +0 -21
  371. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +0 -38
  372. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +0 -110
  373. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +0 -21
  374. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +0 -79
  375. package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +0 -19
  376. package/src/lib/components/kv-table/kv-table.component.html +0 -530
  377. package/src/lib/components/kv-table/kv-table.component.scss +0 -265
  378. package/src/lib/components/kv-table/kv-table.component.spec.ts +0 -28
  379. package/src/lib/components/kv-table/kv-table.component.ts +0 -599
  380. package/src/lib/components/kv-table/kv-table.module.ts +0 -23
  381. package/src/lib/components/kv-table-edit/kv-table-edit.component.html +0 -630
  382. package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +0 -365
  383. package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +0 -602
  384. package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +0 -24
  385. package/src/lib/components/kv-tree-table/kv-tree-table.component.html +0 -316
  386. package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +0 -130
  387. package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +0 -21
  388. package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +0 -231
  389. package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +0 -18
  390. package/src/lib/components/kv-tree-view/kv-tree-view.component.html +0 -9
  391. package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +0 -0
  392. package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +0 -23
  393. package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +0 -31
  394. package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +0 -19
  395. package/src/lib/components/kv-workspace/kv-workspace.component.html +0 -57
  396. package/src/lib/components/kv-workspace/kv-workspace.component.scss +0 -117
  397. package/src/lib/components/kv-workspace/kv-workspace.component.ts +0 -196
  398. package/src/lib/components/kv-workspace/kv-workspace.module.ts +0 -35
  399. package/tsconfig.lib.json +0 -14
  400. package/tsconfig.lib.prod.json +0 -10
  401. package/tsconfig.spec.json +0 -14
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,112 @@
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
+ tableCaptalized: boolean;
54
+ rowTrackBy: Function;
55
+ responsiveLayout: boolean;
56
+ onActiveItem: EventEmitter<any>;
57
+ onActiveItemLote: EventEmitter<any>;
58
+ onPaginate: EventEmitter<any>;
59
+ onSelectionChange: EventEmitter<any>;
60
+ doubleClickEvent: EventEmitter<any>;
61
+ filterField: EventEmitter<any>;
62
+ filtrosAvancadosEmit: EventEmitter<boolean>;
63
+ onSwitchTableChange: EventEmitter<any>;
64
+ menuFiltroDiv: ElementRef;
65
+ botaoFiltro: ElementRef;
66
+ constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
67
+ ngOnInit(): void;
68
+ onWindowResize(): void;
69
+ activeItem(rowData: any): void;
70
+ activeItemLote(rowData: any): void;
71
+ isBooleanField(rowData: any, col: TableConfigColumn): boolean;
72
+ isChipField(col: TableConfigColumn): boolean;
73
+ isImageField(col: TableConfigColumn): boolean;
74
+ isSwitchField(col: TableConfigColumn): boolean;
75
+ isRowSelectable(event: any): boolean;
76
+ isDisabledCheckbox(rowData: any): boolean;
77
+ loadImage(rowData: any, col: TableConfigColumn): string;
78
+ onGlobalFilter(table: Table, event: Event): void;
79
+ paginate(event: any): void;
80
+ selectionChange(value?: never[]): void;
81
+ returnRowClass(rowData: any, col: TableConfigColumn): string;
82
+ expiredFile(rowData: any, col: TableConfigColumn): boolean;
83
+ transformValue(rowData: any, col: TableConfigColumn): any;
84
+ formatarValor(valor: number): string;
85
+ adjustTableSize(): void;
86
+ doubleClick(e: any, rowData: any): void;
87
+ centralizarColunas(col: any): string;
88
+ alignColunas(col: any): string;
89
+ alignColunasHeader(col: any): string;
90
+ retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
91
+ retornarRow(rowData: any, col: any, field: string): string;
92
+ exibirCampo(field: any, rowData: any): any;
93
+ criarMenusModal(data: any): void;
94
+ returnClassChip(rowData: any, col: any): string;
95
+ returnClassIcon(rowData: any, col: any): string;
96
+ returnTooltipIcon(rowData: any, col: any): string;
97
+ returnTooltipRow(rowData: any, col: any): any;
98
+ deleteColumn(field: string): void;
99
+ addColumn(field: string): void;
100
+ dinamicColumnSet(e: any, col: any): void;
101
+ checkMenuFiltro(col: any): void;
102
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
103
+ callDisabled(action: KvMenuItem, data: any): boolean;
104
+ dinamicDisableColumn(col: TableConfigColumn): boolean;
105
+ checkHideColumns(): void;
106
+ getCustomTemplate(templatename: string): TemplateRef<any>;
107
+ filtrosAvancadosEvent(e: any): void;
108
+ isButtonDisable(action: any, rowData: any, commandEvent: any): any;
109
+ onSwitchChange(estado: any, rowData: boolean, col: any): void;
110
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
111
+ 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; }; "tableCaptalized": { "alias": "tableCaptalized"; "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>;
112
+ }
@@ -0,0 +1,11 @@
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
+ }
@@ -0,0 +1,115 @@
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
+ }
@@ -0,0 +1,12 @@
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
+ }
@@ -0,0 +1,43 @@
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
+ commandEvent: MenuItemCommandEvent;
10
+ config: any;
11
+ dataSource: any;
12
+ gridLines: boolean;
13
+ acoesLinhaTabela: boolean;
14
+ tableCaptalized: boolean;
15
+ selectedItems: any;
16
+ onFilter: EventEmitter<any>;
17
+ onPaginate: EventEmitter<any>;
18
+ onActiveItem: EventEmitter<any>;
19
+ onActiveItemLote: EventEmitter<any>;
20
+ doubleClickEvent: EventEmitter<any>;
21
+ ngOnInit(): void;
22
+ templates: QueryList<any>;
23
+ _templates: any;
24
+ onWindowResize(): void;
25
+ activeItem(rowData: any): void;
26
+ activeItemLote(rowData: any): void;
27
+ onGlobalFilter(table: TreeTable, event: Event): void;
28
+ paginate($event: any): void;
29
+ returnStyleRow(col: any, rowNode: any): string;
30
+ alignColunasHeader(col: any): string;
31
+ centralizarColunas(col: any): string;
32
+ alignColunas(col: any): string;
33
+ criarMenusModal(data: any): void;
34
+ retornarCampo(action: KvMenuItem, rowData: any, field: string): string;
35
+ exibirCampo(field: any, rowData: any): any;
36
+ validateActionPosition(rowNode: any): boolean;
37
+ doubleClick(e: any, rowData: any): void;
38
+ isDisabledCheckbox(rowData: any, rowNode: any): boolean;
39
+ getCustomTemplate(templatename: string): TemplateRef<any>;
40
+ validateShowTemplate(rowNode: any, col: any): boolean;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvTreetableComponent, never>;
42
+ 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; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; }, { "onFilter": "onFilter"; "onPaginate": "onPaginate"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; }, ["templates"], never, false, never>;
43
+ }
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,14 @@
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
+ }
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,46 @@
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
+ }
@@ -0,0 +1,14 @@
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.45",
3
+ "version": "1.8.47",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.12",
6
6
  "@angular/core": "^16.2.12",
@@ -24,5 +24,18 @@
24
24
  },
25
25
  "keywords": [
26
26
  "keevo components library"
27
- ]
28
- }
27
+ ],
28
+ "module": "fesm2022/keevo-components.mjs",
29
+ "typings": "index.d.ts",
30
+ "exports": {
31
+ "./package.json": {
32
+ "default": "./package.json"
33
+ },
34
+ ".": {
35
+ "types": "./index.d.ts",
36
+ "esm2022": "./esm2022/keevo-components.mjs",
37
+ "esm": "./esm2022/keevo-components.mjs",
38
+ "default": "./fesm2022/keevo-components.mjs"
39
+ }
40
+ }
41
+ }
@@ -1,7 +1,3 @@
1
- /*
2
- * Public API Surface of keevo-components
3
- */
4
-
5
1
  /**
6
2
  * Classes base de componentes
7
3
  */
@@ -15,38 +11,33 @@ export * from './lib/api/base-components/base-component-dropdown';
15
11
  export * from './lib/api/base-components/base-component-input';
16
12
  export * from './lib/api/base-components/base-component-multi-select';
17
13
  export * from './lib/api/base-components/base-component';
18
-
19
14
  /**
20
15
  * Helpers
21
16
  */
22
17
  export * from './lib/api/helpers/component-providers';
23
- export * from './lib/api/helpers/keevo-validators'
18
+ export * from './lib/api/helpers/keevo-validators';
24
19
  export * from './lib/api/helpers/translate-primeng';
25
-
26
20
  /**
27
21
  * Pipes
28
22
  */
29
- export * from './lib/api/pipes/cpfcnpj.pipe'
30
- export * from './lib/api/pipes/mask.pipe'
31
- export * from './lib/api/pipes/pipes.module'
32
- export * from './lib/api/pipes/telefone.pipe'
33
-
23
+ export * from './lib/api/pipes/cpfcnpj.pipe';
24
+ export * from './lib/api/pipes/mask.pipe';
25
+ export * from './lib/api/pipes/pipes.module';
26
+ export * from './lib/api/pipes/telefone.pipe';
34
27
  /**
35
28
  * Services
36
29
  */
37
- export * from './lib/api/services/base.api.service'
30
+ export * from './lib/api/services/base.api.service';
38
31
  export * from './lib/api/services/breadcrumbs.service';
39
32
  export * from './lib/api/services/component.service';
40
- export * from './lib/api/services/form.service'
33
+ export * from './lib/api/services/form.service';
41
34
  export * from './lib/api/services/notification.service';
42
35
  export * from './lib/api/services/object.service';
43
-
44
36
  /**
45
37
  * PrimeNG
46
38
  */
47
39
  export * from './lib/api/modules/primeng.module';
48
40
  export * from './lib/components/keevo-components.module';
49
-
50
41
  /**
51
42
  * Charts
52
43
  */
@@ -54,13 +45,11 @@ export * from './lib/api/components/chart/chart.config';
54
45
  export * from './lib/api/components/chart/chart.model';
55
46
  export * from './lib/components/kv-chart/kv-chart.component';
56
47
  export * from './lib/components/kv-chart/kv-chart.module';
57
-
58
48
  /**
59
49
  * Error
60
50
  */
61
51
  export * from './lib/components/kv-error/kv-error.component';
62
52
  export * from './lib/components/kv-error/kv-error.module';
63
-
64
53
  /**
65
54
  * Buttons
66
55
  */
@@ -69,7 +58,6 @@ export * from './lib/components/kv-buttons/kv-button-popup/kv-button-popup.compo
69
58
  export * from './lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component';
70
59
  export * from './lib/components/kv-buttons/kv-button-success/kv-button-success.component';
71
60
  export * from './lib/components/kv-buttons/kv-button.module';
72
-
73
61
  /**
74
62
  * Inputs
75
63
  */
@@ -89,19 +77,16 @@ export * from './lib/components/kv-inputs/kv-inputs.module';
89
77
  export * from './lib/components/kv-inputs/kv-multi-select/kv-multi-select.component';
90
78
  export * from './lib/components/kv-inputs/kv-radio-group/kv-radio-group.component';
91
79
  export * from './lib/components/kv-inputs/kv-switch/kv-switch.component';
92
-
93
80
  /**
94
81
  * Orgchart
95
82
  */
96
- export * from './lib/components/kv-orgchart/kv-orgchart.component'
97
- export * from './lib/components/kv-orgchart/kv-orgchart.module'
98
-
83
+ export * from './lib/components/kv-orgchart/kv-orgchart.component';
84
+ export * from './lib/components/kv-orgchart/kv-orgchart.module';
99
85
  /**
100
86
  * Picklist
101
87
  */
102
88
  export * from './lib/components/kv-pick-list/kv-pick-list.component';
103
89
  export * from './lib/components/kv-pick-list/kv-pick-list.module';
104
-
105
90
  /**
106
91
  * Table edit
107
92
  */
@@ -109,7 +94,6 @@ export * from './lib/api/components/table/tabledit.config';
109
94
  export * from './lib/api/components/table/tableedit.config.column';
110
95
  export * from './lib/components/kv-table-edit/kv-table-edit.component';
111
96
  export * from './lib/components/kv-table-edit/kv-table-edit.module';
112
-
113
97
  /**
114
98
  * Table
115
99
  */
@@ -120,70 +104,59 @@ export * from './lib/api/components/table/table.config';
120
104
  export * from './lib/api/components/table/table.paginate';
121
105
  export * from './lib/components/kv-table/kv-table.component';
122
106
  export * from './lib/components/kv-table/kv-table.module';
123
-
124
107
  /**
125
108
  * TreeTable
126
109
  */
127
- export * from './lib/components/kv-tree-table/kv-tree-table.component'
128
- export * from './lib/components/kv-tree-table/kv-tree-table.module'
129
-
110
+ export * from './lib/components/kv-tree-table/kv-tree-table.component';
111
+ export * from './lib/components/kv-tree-table/kv-tree-table.module';
130
112
  /**
131
113
  * Treeview
132
114
  */
133
115
  export * from './lib/components/kv-tree-view/kv-tree-view.component';
134
116
  export * from './lib/components/kv-tree-view/kv-tree-view.module';
135
-
136
117
  /**
137
118
  * Componente de menu + layout
138
119
  */
139
120
  export * from './lib/components/kv-menu/kv-menu.component';
140
121
  export * from './lib/components/kv-menu/kv-menu.module';
141
-
142
122
  /**
143
123
  * Componente de login
144
124
  */
145
125
  export * from './lib/components/kv-login/kv-login.component';
146
126
  export * from './lib/components/kv-login/kv-login.module';
147
-
148
127
  /**
149
128
  * Componente de workspaces
150
129
  */
151
130
  export * from './lib/components/kv-workspace/kv-workspace.module';
152
131
  export * from './lib/components/kv-workspace/kv-workspace.component';
153
-
154
132
  /**
155
133
  * Formulário base
156
134
  */
157
- export * from './lib/components/kv-page-form/kv-page-form.component'
158
- export * from './lib/components/kv-page-form/kv-page-form.module'
159
-
135
+ export * from './lib/components/kv-page-form/kv-page-form.component';
136
+ export * from './lib/components/kv-page-form/kv-page-form.module';
160
137
  /**
161
138
  * Loader
162
139
  */
163
140
  export * from './lib/components/kv-loader/kv-loader.component';
164
141
  export * from './lib/components/kv-loader/kv-loader.module';
165
142
  export * from './lib/components/kv-loader/kv-loader.service';
166
-
167
143
  /**
168
144
  * Avatar
169
145
  */
170
146
  export * from './lib/components/kv-avatar/kv-avatar.component';
171
147
  export * from './lib/components/kv-avatar/kv-avatar.module';
172
-
173
148
  /**
174
149
  * Carousel
175
150
  */
176
151
  export * from './lib/components/kv-carousel/kv-carousel.component';
177
152
  export * from './lib/components/kv-carousel/kv-carousel.module';
178
-
179
153
  /**
180
154
  * Progress Bar
181
155
  */
182
156
  export * from './lib/components/kv-progress-bar/kv-progress-bar.component';
183
157
  export * from './lib/components/kv-progress-bar/kv-progress-bar.module';
184
-
185
158
  /**
186
159
  * Modal
187
160
  */
188
161
  export * from './lib/components/kv-modal/kv-modal.component';
189
- export * from './lib/components/kv-modal/kv-modal.module';
162
+ export * from './lib/components/kv-modal/kv-modal.module';
package/ng-package.json DELETED
@@ -1,7 +0,0 @@
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
- }
File without changes
Binary file
Binary file
Binary file