keevo-components 2.0.184 → 2.0.185

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 (791) hide show
  1. package/ng-package.json +14 -0
  2. package/package.json +32 -42
  3. package/src/assets/.gitkeep +0 -0
  4. package/src/index.ts +1 -0
  5. package/src/lib/api/base-components/base-component-button.ts +29 -0
  6. package/src/lib/api/base-components/base-component-chart.ts +118 -0
  7. package/src/lib/api/base-components/base-component-crud-form.ts +377 -0
  8. package/src/lib/api/base-components/base-component-crud-list.ts +129 -0
  9. package/src/lib/api/base-components/base-component-crud.ts +92 -0
  10. package/src/lib/api/base-components/base-component-dropdown-external.ts +29 -0
  11. package/src/lib/api/base-components/base-component-dropdown-new.ts +112 -0
  12. package/src/lib/api/base-components/base-component-dropdown.ts +265 -0
  13. package/src/lib/api/base-components/base-component-input.ts +121 -0
  14. package/src/lib/api/base-components/base-component-multi-select.ts +187 -0
  15. package/src/lib/api/base-components/base-component-table.ts +366 -0
  16. package/src/lib/api/base-components/base-component.ts +47 -0
  17. package/src/lib/api/components/chart/chart.config.ts +15 -0
  18. package/src/lib/api/components/chart/chart.model.ts +12 -0
  19. package/src/lib/api/components/chart/orchart.config.ts +51 -0
  20. package/src/lib/api/components/chart/orchartnode.ts +44 -0
  21. package/src/lib/api/components/dropdown/filtro.combo.ts +4 -0
  22. package/{lib/api/components/step/step.model.d.ts → src/lib/api/components/step/step.model.ts} +15 -13
  23. package/src/lib/api/components/stepper/kv-stepperpanel.ts +10 -0
  24. package/src/lib/api/components/table/action-item.ts +13 -0
  25. package/src/lib/api/components/table/kv-menuitem.ts +198 -0
  26. package/src/lib/api/components/table/table-dropdown-control.ts +6 -0
  27. package/src/lib/api/components/table/table.config.column.ts +38 -0
  28. package/src/lib/api/components/table/table.config.ts +39 -0
  29. package/src/lib/api/components/table/table.paginate.ts +7 -0
  30. package/{lib/api/components/table/tabledit.config.d.ts → src/lib/api/components/table/tabledit.config.ts} +9 -8
  31. package/src/lib/api/components/table/tableedit.config.column.ts +12 -0
  32. package/src/lib/api/components/tree-table/tree-table-keys.ts +12 -0
  33. package/src/lib/api/components/tree-table/tree-table.config.ts +34 -0
  34. package/src/lib/api/directives/directives.module.ts +19 -0
  35. package/src/lib/api/directives/drag/drag.directive.ts +40 -0
  36. package/src/lib/api/directives/stepper/dynamicinput.directive.ts +23 -0
  37. package/src/lib/api/directives/template/template.directive.ts +15 -0
  38. package/src/lib/api/helpers/component-providers.ts +16 -0
  39. package/src/lib/api/helpers/keevo-validators.ts +174 -0
  40. package/src/lib/api/helpers/severity-color.ts +77 -0
  41. package/src/lib/api/helpers/translate-primeng.ts +25 -0
  42. package/src/lib/api/modules/primeng.module.ts +147 -0
  43. package/src/lib/api/pipes/capitalize.pipe.ts +47 -0
  44. package/src/lib/api/pipes/cpfcnpj.pipe.ts +21 -0
  45. package/src/lib/api/pipes/mask.pipe.ts +24 -0
  46. package/src/lib/api/pipes/pipes.module.ts +26 -0
  47. package/src/lib/api/pipes/telefone.pipe.ts +38 -0
  48. package/src/lib/api/services/base.api.service.ts +115 -0
  49. package/src/lib/api/services/breadcrumbs.service.ts +73 -0
  50. package/src/lib/api/services/chat.service.ts +39 -0
  51. package/src/lib/api/services/component.service.ts +44 -0
  52. package/src/lib/api/services/docs.service.ts +129 -0
  53. package/src/lib/api/services/form.service.ts +139 -0
  54. package/src/lib/api/services/image.cutter.service.ts +290 -0
  55. package/src/lib/api/services/imagens.service.ts +28 -0
  56. package/src/lib/api/services/notification.service.ts +88 -0
  57. package/src/lib/api/services/object.service.ts +33 -0
  58. package/src/lib/api/services/orgchart.service.ts +77 -0
  59. package/src/lib/api/services/pdf.service.ts +54 -0
  60. package/src/lib/api/types/breadcrumb.model.ts +6 -0
  61. package/{lib/api/types/severity.d.ts → src/lib/api/types/severity.ts} +3 -2
  62. package/src/lib/api/types/stimulsoft.reports.d.ts +67463 -0
  63. package/src/lib/api/webpack/mfe-shared.ts +14 -0
  64. package/src/lib/components/keevo-components.module.ts +108 -0
  65. package/src/lib/components/kv-avatar/kv-avatar.component.html +75 -0
  66. package/src/lib/components/kv-avatar/kv-avatar.component.scss +162 -0
  67. package/src/lib/components/kv-avatar/kv-avatar.component.spec.ts +23 -0
  68. package/src/lib/components/kv-avatar/kv-avatar.component.ts +165 -0
  69. package/src/lib/components/kv-avatar/kv-avatar.module.ts +32 -0
  70. package/src/lib/components/kv-button/kv-button.component.html +26 -0
  71. package/src/lib/components/kv-button/kv-button.component.spec.ts +23 -0
  72. package/src/lib/components/kv-button/kv-button.component.ts +57 -0
  73. package/src/lib/components/kv-button/kv-button.module.ts +20 -0
  74. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.html +14 -0
  75. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.scss +6 -0
  76. package/src/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.ts +25 -0
  77. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.html +13 -0
  78. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.scss +33 -0
  79. package/src/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.ts +41 -0
  80. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.html +12 -0
  81. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.scss +18 -0
  82. package/src/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.ts +14 -0
  83. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.html +11 -0
  84. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.scss +17 -0
  85. package/src/lib/components/kv-buttons/kv-button-success/kv-button-success.component.ts +14 -0
  86. package/src/lib/components/kv-buttons/kv-button.module.ts +26 -0
  87. package/src/lib/components/kv-card-selection/kv-card-selection.component.html +63 -0
  88. package/src/lib/components/kv-card-selection/kv-card-selection.component.scss +54 -0
  89. package/src/lib/components/kv-card-selection/kv-card-selection.component.spec.ts +23 -0
  90. package/src/lib/components/kv-card-selection/kv-card-selection.component.ts +73 -0
  91. package/src/lib/components/kv-card-selection/kv-card-selection.module.ts +19 -0
  92. package/src/lib/components/kv-carousel/kv-carousel.component.html +26 -0
  93. package/src/lib/components/kv-carousel/kv-carousel.component.scss +47 -0
  94. package/src/lib/components/kv-carousel/kv-carousel.component.spec.ts +23 -0
  95. package/src/lib/components/kv-carousel/kv-carousel.component.ts +40 -0
  96. package/src/lib/components/kv-carousel/kv-carousel.module.ts +19 -0
  97. package/src/lib/components/kv-chart/kv-chart.component.html +38 -0
  98. package/src/lib/components/kv-chart/kv-chart.component.scss +0 -0
  99. package/src/lib/components/kv-chart/kv-chart.component.spec.ts +28 -0
  100. package/src/lib/components/kv-chart/kv-chart.component.ts +174 -0
  101. package/src/lib/components/kv-chart/kv-chart.module.ts +21 -0
  102. package/src/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.html +9 -0
  103. package/src/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.scss +7 -0
  104. package/src/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.spec.ts +23 -0
  105. package/src/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.ts +32 -0
  106. package/src/lib/components/kv-confirmation-modal/kv-confirmation-modal.module.ts +14 -0
  107. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.html +231 -0
  108. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.scss +185 -0
  109. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.spec.ts +23 -0
  110. package/src/lib/components/kv-content-viewer/kv-content-viewer.component.ts +172 -0
  111. package/src/lib/components/kv-content-viewer/kv-content-viewer.module.ts +25 -0
  112. package/src/lib/components/kv-detailed-list/kv-detailed-list.component.html +253 -0
  113. package/src/lib/components/kv-detailed-list/kv-detailed-list.component.scss +185 -0
  114. package/src/lib/components/kv-detailed-list/kv-detailed-list.component.spec.ts +23 -0
  115. package/src/lib/components/kv-detailed-list/kv-detailed-list.component.ts +154 -0
  116. package/src/lib/components/kv-error/kv-error.component.html +3 -0
  117. package/src/lib/components/kv-error/kv-error.component.scss +5 -0
  118. package/src/lib/components/kv-error/kv-error.component.ts +27 -0
  119. package/src/lib/components/kv-error/kv-error.module.ts +26 -0
  120. package/src/lib/components/kv-file-upload/kv-file-upload.component.html +134 -0
  121. package/src/lib/components/kv-file-upload/kv-file-upload.component.scss +13 -0
  122. package/src/lib/components/kv-file-upload/kv-file-upload.component.spec.ts +23 -0
  123. package/src/lib/components/kv-file-upload/kv-file-upload.component.ts +200 -0
  124. package/src/lib/components/kv-file-upload/kv-file-upload.module.ts +13 -0
  125. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.html +16 -0
  126. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.scss +18 -0
  127. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.ts +42 -0
  128. package/src/lib/components/kv-file-viewer/kv-file-viewer.module.ts +14 -0
  129. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.html +34 -0
  130. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.scss +17 -0
  131. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.ts +80 -0
  132. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.ts +15 -0
  133. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.html +103 -0
  134. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.scss +153 -0
  135. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.spec.ts +23 -0
  136. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.ts +73 -0
  137. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.module.ts +18 -0
  138. package/src/lib/components/kv-filter-card/kv-filter-card.component.html +12 -0
  139. package/src/lib/components/kv-filter-card/kv-filter-card.component.scss +76 -0
  140. package/src/lib/components/kv-filter-card/kv-filter-card.component.spec.ts +23 -0
  141. package/src/lib/components/kv-filter-card/kv-filter-card.component.ts +18 -0
  142. package/src/lib/components/kv-filter-card/kv-filter-card.module.ts +23 -0
  143. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.html +94 -0
  144. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.scss +189 -0
  145. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.ts +150 -0
  146. package/src/lib/components/kv-filter-cards/kv-filter-cards.module.ts +20 -0
  147. package/src/lib/components/kv-filter-cards/kv-filter-cards.pipe.ts +24 -0
  148. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.html +25 -0
  149. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.scss +22 -0
  150. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.spec.ts +23 -0
  151. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.ts +21 -0
  152. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.ts +20 -0
  153. package/src/lib/components/kv-g-icon/kv-g-icon.component.html +1 -0
  154. package/src/lib/components/kv-g-icon/kv-g-icon.component.scss +0 -0
  155. package/src/lib/components/kv-g-icon/kv-g-icon.component.spec.ts +23 -0
  156. package/src/lib/components/kv-g-icon/kv-g-icon.component.ts +10 -0
  157. package/src/lib/components/kv-g-icon/kv-g-icon.module.ts +11 -0
  158. package/src/lib/components/kv-home-card/kv-home-card.component.html +35 -0
  159. package/src/lib/components/kv-home-card/kv-home-card.component.scss +5 -0
  160. package/src/lib/components/kv-home-card/kv-home-card.component.spec.ts +23 -0
  161. package/src/lib/components/kv-home-card/kv-home-card.component.ts +33 -0
  162. package/src/lib/components/kv-home-card/kv-home-card.module.ts +18 -0
  163. package/src/lib/components/kv-icon/kv-icon.component.html +13 -0
  164. package/src/lib/components/kv-icon/kv-icon.component.scss +82 -0
  165. package/src/lib/components/kv-icon/kv-icon.component.spec.ts +28 -0
  166. package/src/lib/components/kv-icon/kv-icon.component.ts +31 -0
  167. package/{lib/components/kv-icon/kv-icon.model.d.ts → src/lib/components/kv-icon/kv-icon.model.ts} +3 -3
  168. package/src/lib/components/kv-icon/kv-icon.module.ts +16 -0
  169. package/src/lib/components/kv-image-upload/kv-image-upload.component.html +64 -0
  170. package/src/lib/components/kv-image-upload/kv-image-upload.component.scss +0 -0
  171. package/src/lib/components/kv-image-upload/kv-image-upload.component.ts +153 -0
  172. package/src/lib/components/kv-image-upload/kv-image-upload.module.ts +10 -0
  173. package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +12 -0
  174. package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +42 -0
  175. package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +32 -0
  176. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +104 -0
  177. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +122 -0
  178. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.html +13 -0
  179. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.scss +0 -0
  180. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.spec.ts +23 -0
  181. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.ts +16 -0
  182. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.html +18 -0
  183. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.scss +0 -0
  184. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.ts +41 -0
  185. package/src/lib/components/kv-inputs/kv-editor/config/kv-editor.config.ts +120 -0
  186. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +283 -0
  187. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +182 -0
  188. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +319 -0
  189. package/{lib/components/kv-inputs/kv-editor/kv-editor.d.ts → src/lib/components/kv-inputs/kv-editor/kv-editor.ts} +6 -6
  190. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.ts +156 -0
  191. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.ts +190 -0
  192. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.spec.ts +126 -0
  193. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.ts +84 -0
  194. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.spec.ts +176 -0
  195. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.ts +101 -0
  196. package/src/lib/components/kv-inputs/kv-editor/types/kv-editor.types.ts +36 -0
  197. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +37 -0
  198. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +23 -0
  199. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +167 -0
  200. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +24 -0
  201. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
  202. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +35 -0
  203. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +23 -0
  204. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
  205. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +61 -0
  206. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.html +33 -0
  207. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.scss +5 -0
  208. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.ts +63 -0
  209. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +24 -0
  210. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
  211. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +26 -0
  212. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +23 -0
  213. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +18 -0
  214. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +40 -0
  215. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.html +30 -0
  216. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.scss +26 -0
  217. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.ts +38 -0
  218. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +53 -0
  219. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +41 -0
  220. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +23 -0
  221. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +48 -0
  222. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +23 -0
  223. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
  224. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +40 -0
  225. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +24 -0
  226. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
  227. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +27 -0
  228. package/src/lib/components/kv-inputs/kv-inputs.module.ts +100 -0
  229. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +87 -0
  230. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +62 -0
  231. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +54 -0
  232. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +19 -0
  233. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +22 -0
  234. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +63 -0
  235. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.html +26 -0
  236. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.scss +5 -0
  237. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.spec.ts +21 -0
  238. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.ts +30 -0
  239. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.html +31 -0
  240. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.scss +92 -0
  241. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.spec.ts +23 -0
  242. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.ts +92 -0
  243. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +23 -0
  244. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +35 -0
  245. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +54 -0
  246. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.html +68 -0
  247. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.scss +86 -0
  248. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.ts +59 -0
  249. package/src/lib/components/kv-label/kv-label.component.html +3 -0
  250. package/src/lib/components/kv-label/kv-label.component.scss +15 -0
  251. package/src/lib/components/kv-label/kv-label.component.spec.ts +23 -0
  252. package/src/lib/components/kv-label/kv-label.component.ts +14 -0
  253. package/src/lib/components/kv-label/kv-label.module.ts +17 -0
  254. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.html +25 -0
  255. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.scss +19 -0
  256. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.spec.ts +28 -0
  257. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.ts +34 -0
  258. package/src/lib/components/kv-layout/kv-layout.module.ts +44 -0
  259. package/src/lib/components/kv-layout/layout/kv-layout.component.html +591 -0
  260. package/src/lib/components/kv-layout/layout/kv-layout.component.scss +268 -0
  261. package/src/lib/components/kv-layout/layout/kv-layout.component.spec.ts +23 -0
  262. package/src/lib/components/kv-layout/layout/kv-layout.component.ts +531 -0
  263. package/src/lib/components/kv-layout/top-icons/top-icons.component.html +26 -0
  264. package/src/lib/components/kv-layout/top-icons/top-icons.component.scss +71 -0
  265. package/src/lib/components/kv-layout/top-icons/top-icons.component.spec.ts +23 -0
  266. package/src/lib/components/kv-layout/top-icons/top-icons.component.ts +26 -0
  267. package/src/lib/components/kv-loader/kv-loader.component.html +1 -0
  268. package/src/lib/components/kv-loader/kv-loader.component.ts +11 -0
  269. package/src/lib/components/kv-loader/kv-loader.module.ts +17 -0
  270. package/src/lib/components/kv-loader/kv-loader.service.ts +29 -0
  271. package/src/lib/components/kv-login/kv-login.component.html +101 -0
  272. package/src/lib/components/kv-login/kv-login.component.scss +99 -0
  273. package/src/lib/components/kv-login/kv-login.component.spec.ts +23 -0
  274. package/src/lib/components/kv-login/kv-login.component.ts +97 -0
  275. package/src/lib/components/kv-login/kv-login.module.ts +33 -0
  276. package/src/lib/components/kv-modal/kv-modal.component.html +20 -0
  277. package/src/lib/components/kv-modal/kv-modal.component.scss +37 -0
  278. package/src/lib/components/kv-modal/kv-modal.component.spec.ts +21 -0
  279. package/src/lib/components/kv-modal/kv-modal.component.ts +111 -0
  280. package/src/lib/components/kv-modal/kv-modal.module.ts +12 -0
  281. package/src/lib/components/kv-orgchart/kv-orgchart.component.html +125 -0
  282. package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +73 -0
  283. package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +283 -0
  284. package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +31 -0
  285. package/src/lib/components/kv-page-form/kv-page-form.component.html +91 -0
  286. package/src/lib/components/kv-page-form/kv-page-form.component.scss +100 -0
  287. package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +28 -0
  288. package/src/lib/components/kv-page-form/kv-page-form.component.ts +206 -0
  289. package/src/lib/components/kv-page-form/kv-page-form.module.ts +33 -0
  290. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.html +276 -0
  291. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.scss +85 -0
  292. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.spec.ts +23 -0
  293. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.ts +223 -0
  294. package/src/lib/components/kv-page-stepper/kv-page-stepper.module.ts +36 -0
  295. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +32 -0
  296. package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +57 -0
  297. package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +26 -0
  298. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +461 -0
  299. package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +24 -0
  300. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +38 -0
  301. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +128 -0
  302. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +21 -0
  303. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +75 -0
  304. package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +19 -0
  305. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.html +43 -0
  306. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.scss +130 -0
  307. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.spec.ts +23 -0
  308. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.ts +82 -0
  309. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.ts +18 -0
  310. package/src/lib/components/kv-report/kv-report.component.html +3 -0
  311. package/src/lib/components/kv-report/kv-report.component.scss +14 -0
  312. package/src/lib/components/kv-report/kv-report.component.spec.ts +28 -0
  313. package/src/lib/components/kv-report/kv-report.component.ts +44 -0
  314. package/src/lib/components/kv-report/kv-report.module.ts +18 -0
  315. package/src/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.html +23 -0
  316. package/src/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.scss +48 -0
  317. package/src/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.spec.ts +28 -0
  318. package/src/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.ts +68 -0
  319. package/src/lib/components/kv-stepper/kv-stepper.component.html +94 -0
  320. package/src/lib/components/kv-stepper/kv-stepper.component.scss +43 -0
  321. package/src/lib/components/kv-stepper/kv-stepper.component.spec.ts +23 -0
  322. package/src/lib/components/kv-stepper/kv-stepper.component.ts +73 -0
  323. package/src/lib/components/kv-stepper/kv-stepper.module.ts +27 -0
  324. package/src/lib/components/kv-steps/kv-steps.component.html +53 -0
  325. package/src/lib/components/kv-steps/kv-steps.component.scss +120 -0
  326. package/src/lib/components/kv-steps/kv-steps.component.ts +122 -0
  327. package/src/lib/components/kv-table/kv-table.component.html +683 -0
  328. package/src/lib/components/kv-table/kv-table.component.spec.ts +28 -0
  329. package/src/lib/components/kv-table/kv-table.component.ts +795 -0
  330. package/src/lib/components/kv-table/kv-table.module.ts +25 -0
  331. package/src/lib/components/kv-table-draggable/kv-table-draggable.component.html +673 -0
  332. package/src/lib/components/kv-table-draggable/kv-table-draggable.component.scss +201 -0
  333. package/src/lib/components/kv-table-draggable/kv-table-draggable.component.spec.ts +28 -0
  334. package/src/lib/components/kv-table-draggable/kv-table-draggable.component.ts +982 -0
  335. package/src/lib/components/kv-table-draggable/kv-table-draggable.module.ts +28 -0
  336. package/src/lib/components/kv-table-edit/kv-table-edit.component.html +913 -0
  337. package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +757 -0
  338. package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +425 -0
  339. package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +31 -0
  340. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.html +635 -0
  341. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.scss +395 -0
  342. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.ts +546 -0
  343. package/src/lib/components/kv-table-expandable/kv-table-expandable.module.ts +22 -0
  344. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.html +25 -0
  345. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.scss +0 -0
  346. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.spec.ts +23 -0
  347. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.ts +17 -0
  348. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.html +20 -0
  349. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.scss +0 -0
  350. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.spec.ts +23 -0
  351. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.ts +14 -0
  352. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.html +198 -0
  353. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.scss +106 -0
  354. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.spec.ts +23 -0
  355. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.ts +317 -0
  356. package/src/lib/components/kv-tag/kv-tag.component.html +7 -0
  357. package/src/lib/components/kv-tag/kv-tag.component.scss +65 -0
  358. package/src/lib/components/kv-tag/kv-tag.component.spec.ts +23 -0
  359. package/src/lib/components/kv-tag/kv-tag.component.ts +17 -0
  360. package/src/lib/components/kv-tag/kv-tag.module.ts +18 -0
  361. package/src/lib/components/kv-tags/kv-tags.component.html +26 -0
  362. package/src/lib/components/kv-tags/kv-tags.component.scss +34 -0
  363. package/src/lib/components/kv-tags/kv-tags.component.ts +67 -0
  364. package/src/lib/components/kv-tags/kv-tags.module.ts +18 -0
  365. package/src/lib/components/kv-timeline/kv-timeline.component.html +38 -0
  366. package/src/lib/components/kv-timeline/kv-timeline.component.scss +31 -0
  367. package/src/lib/components/kv-timeline/kv-timeline.component.spec.ts +23 -0
  368. package/src/lib/components/kv-timeline/kv-timeline.component.ts +83 -0
  369. package/src/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.html +57 -0
  370. package/src/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.scss +11 -0
  371. package/src/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.spec.ts +28 -0
  372. package/src/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.ts +342 -0
  373. package/src/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.html +73 -0
  374. package/src/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.scss +179 -0
  375. package/src/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.spec.ts +28 -0
  376. package/src/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.ts +103 -0
  377. package/src/lib/components/kv-tree-environment/models/no-arvore.model.ts +63 -0
  378. package/src/lib/components/kv-tree-table/kv-tree-table.component.html +452 -0
  379. package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +219 -0
  380. package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +21 -0
  381. package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +355 -0
  382. package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +23 -0
  383. package/src/lib/components/kv-tree-view/kv-tree-view.component.html +16 -0
  384. package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +19 -0
  385. package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +23 -0
  386. package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +73 -0
  387. package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +19 -0
  388. package/src/lib/components/kv-widget-card/kv-widget-card.component.html +65 -0
  389. package/src/lib/components/kv-widget-card/kv-widget-card.component.scss +50 -0
  390. package/src/lib/components/kv-widget-card/kv-widget-card.component.spec.ts +28 -0
  391. package/src/lib/components/kv-widget-card/kv-widget-card.component.ts +116 -0
  392. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.html +22 -0
  393. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.scss +36 -0
  394. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.spec.ts +28 -0
  395. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.ts +41 -0
  396. package/src/lib/components/kv-workspace/kv-workspace.module.ts +45 -0
  397. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.html +20 -0
  398. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.scss +0 -0
  399. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.spec.ts +28 -0
  400. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.ts +18 -0
  401. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.html +35 -0
  402. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.scss +29 -0
  403. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.spec.ts +28 -0
  404. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.ts +98 -0
  405. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.html +63 -0
  406. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.scss +62 -0
  407. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.ts +91 -0
  408. package/{public-api.d.ts → src/public-api.ts} +384 -317
  409. package/tsconfig.lib.json +14 -0
  410. package/tsconfig.lib.prod.json +10 -0
  411. package/tsconfig.spec.json +14 -0
  412. package/esm2022/keevo-components.mjs +0 -5
  413. package/esm2022/lib/api/base-components/base-component-button.mjs +0 -39
  414. package/esm2022/lib/api/base-components/base-component-chart.mjs +0 -104
  415. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +0 -308
  416. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +0 -91
  417. package/esm2022/lib/api/base-components/base-component-crud.mjs +0 -80
  418. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +0 -31
  419. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +0 -242
  420. package/esm2022/lib/api/base-components/base-component-input.mjs +0 -101
  421. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +0 -174
  422. package/esm2022/lib/api/base-components/base-component-table.mjs +0 -354
  423. package/esm2022/lib/api/base-components/base-component.mjs +0 -51
  424. package/esm2022/lib/api/components/chart/chart.config.mjs +0 -2
  425. package/esm2022/lib/api/components/chart/chart.model.mjs +0 -2
  426. package/esm2022/lib/api/components/chart/orchart.config.mjs +0 -2
  427. package/esm2022/lib/api/components/chart/orchartnode.mjs +0 -2
  428. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +0 -2
  429. package/esm2022/lib/api/components/step/step.model.mjs +0 -2
  430. package/esm2022/lib/api/components/stepper/kv-stepperpanel.mjs +0 -2
  431. package/esm2022/lib/api/components/table/action-item.mjs +0 -2
  432. package/esm2022/lib/api/components/table/kv-menuitem.mjs +0 -46
  433. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +0 -2
  434. package/esm2022/lib/api/components/table/table.config.column.mjs +0 -2
  435. package/esm2022/lib/api/components/table/table.config.mjs +0 -2
  436. package/esm2022/lib/api/components/table/table.paginate.mjs +0 -10
  437. package/esm2022/lib/api/components/table/tabledit.config.mjs +0 -2
  438. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +0 -2
  439. package/esm2022/lib/api/components/tree-table/tree-table-keys.mjs +0 -2
  440. package/esm2022/lib/api/components/tree-table/tree-table.config.mjs +0 -3
  441. package/esm2022/lib/api/directives/directives.module.mjs +0 -30
  442. package/esm2022/lib/api/directives/drag/drag.directive.mjs +0 -52
  443. package/esm2022/lib/api/directives/stepper/dynamicinput.directive.mjs +0 -31
  444. package/esm2022/lib/api/directives/template/template.directive.mjs +0 -24
  445. package/esm2022/lib/api/helpers/component-providers.mjs +0 -16
  446. package/esm2022/lib/api/helpers/keevo-validators.mjs +0 -144
  447. package/esm2022/lib/api/helpers/severity-color.mjs +0 -73
  448. package/esm2022/lib/api/helpers/translate-primeng.mjs +0 -23
  449. package/esm2022/lib/api/modules/primeng.module.mjs +0 -287
  450. package/esm2022/lib/api/pipes/capitalize.pipe.mjs +0 -47
  451. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +0 -25
  452. package/esm2022/lib/api/pipes/mask.pipe.mjs +0 -29
  453. package/esm2022/lib/api/pipes/pipes.module.mjs +0 -39
  454. package/esm2022/lib/api/pipes/telefone.pipe.mjs +0 -45
  455. package/esm2022/lib/api/services/base.api.service.mjs +0 -74
  456. package/esm2022/lib/api/services/breadcrumbs.service.mjs +0 -64
  457. package/esm2022/lib/api/services/chat.service.mjs +0 -37
  458. package/esm2022/lib/api/services/component.service.mjs +0 -37
  459. package/esm2022/lib/api/services/docs.service.mjs +0 -129
  460. package/esm2022/lib/api/services/form.service.mjs +0 -95
  461. package/esm2022/lib/api/services/image.cutter.service.mjs +0 -193
  462. package/esm2022/lib/api/services/imagens.service.mjs +0 -28
  463. package/esm2022/lib/api/services/notification.service.mjs +0 -69
  464. package/esm2022/lib/api/services/object.service.mjs +0 -39
  465. package/esm2022/lib/api/services/orgchart.service.mjs +0 -64
  466. package/esm2022/lib/api/services/pdf.service.mjs +0 -48
  467. package/esm2022/lib/api/types/breadcrumb.model.mjs +0 -2
  468. package/esm2022/lib/api/types/severity.mjs +0 -2
  469. package/esm2022/lib/components/keevo-components.module.mjs +0 -239
  470. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +0 -142
  471. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +0 -55
  472. package/esm2022/lib/components/kv-button/kv-button.component.mjs +0 -54
  473. package/esm2022/lib/components/kv-button/kv-button.module.mjs +0 -28
  474. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +0 -25
  475. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +0 -39
  476. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +0 -17
  477. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +0 -17
  478. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +0 -39
  479. package/esm2022/lib/components/kv-card-selection/kv-card-selection.component.mjs +0 -60
  480. package/esm2022/lib/components/kv-card-selection/kv-card-selection.module.mjs +0 -31
  481. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +0 -34
  482. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +0 -28
  483. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +0 -166
  484. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +0 -32
  485. package/esm2022/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.mjs +0 -32
  486. package/esm2022/lib/components/kv-confirmation-modal/kv-confirmation-modal.module.mjs +0 -22
  487. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.component.mjs +0 -186
  488. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.module.mjs +0 -44
  489. package/esm2022/lib/components/kv-detailed-list/kv-detailed-list.component.mjs +0 -171
  490. package/esm2022/lib/components/kv-error/kv-error.component.mjs +0 -26
  491. package/esm2022/lib/components/kv-error/kv-error.module.mjs +0 -35
  492. package/esm2022/lib/components/kv-file-upload/kv-file-upload.component.mjs +0 -191
  493. package/esm2022/lib/components/kv-file-upload/kv-file-upload.module.mjs +0 -23
  494. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.component.mjs +0 -46
  495. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.module.mjs +0 -20
  496. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.mjs +0 -68
  497. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.mjs +0 -24
  498. package/esm2022/lib/components/kv-filter-card/kv-filter-card.component.mjs +0 -29
  499. package/esm2022/lib/components/kv-filter-card/kv-filter-card.module.mjs +0 -34
  500. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.component.mjs +0 -92
  501. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.module.mjs +0 -31
  502. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.pipe.mjs +0 -30
  503. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.mjs +0 -29
  504. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.mjs +0 -28
  505. package/esm2022/lib/components/kv-g-icon/kv-g-icon.component.mjs +0 -11
  506. package/esm2022/lib/components/kv-g-icon/kv-g-icon.module.mjs +0 -19
  507. package/esm2022/lib/components/kv-home-card/kv-home-card.component.mjs +0 -27
  508. package/esm2022/lib/components/kv-home-card/kv-home-card.module.mjs +0 -32
  509. package/esm2022/lib/components/kv-icon/kv-icon.component.mjs +0 -31
  510. package/esm2022/lib/components/kv-icon/kv-icon.model.mjs +0 -2
  511. package/esm2022/lib/components/kv-icon/kv-icon.module.mjs +0 -24
  512. package/esm2022/lib/components/kv-image-upload/kv-image-upload.component.mjs +0 -136
  513. package/esm2022/lib/components/kv-image-upload/kv-image-upload.module.mjs +0 -18
  514. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +0 -29
  515. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +0 -105
  516. package/esm2022/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.mjs +0 -18
  517. package/esm2022/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.mjs +0 -40
  518. package/esm2022/lib/components/kv-inputs/kv-editor/config/kv-editor.config.mjs +0 -110
  519. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +0 -271
  520. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.mjs +0 -7
  521. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.mjs +0 -135
  522. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.mjs +0 -168
  523. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.mjs +0 -78
  524. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.mjs +0 -95
  525. package/esm2022/lib/components/kv-inputs/kv-editor/types/kv-editor.types.mjs +0 -2
  526. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +0 -163
  527. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +0 -30
  528. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +0 -59
  529. package/esm2022/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.mjs +0 -66
  530. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +0 -33
  531. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +0 -38
  532. package/esm2022/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.mjs +0 -42
  533. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +0 -50
  534. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +0 -43
  535. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +0 -24
  536. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +0 -165
  537. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +0 -60
  538. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +0 -60
  539. package/esm2022/lib/components/kv-inputs/kv-select-button/kv-select-button.component.mjs +0 -46
  540. package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +0 -53
  541. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +0 -42
  542. package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +0 -58
  543. package/esm2022/lib/components/kv-label/kv-label.component.mjs +0 -15
  544. package/esm2022/lib/components/kv-label/kv-label.module.mjs +0 -24
  545. package/esm2022/lib/components/kv-layout/dropdown-master/dropdown-master.component.mjs +0 -28
  546. package/esm2022/lib/components/kv-layout/kv-layout.module.mjs +0 -72
  547. package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +0 -454
  548. package/esm2022/lib/components/kv-layout/top-icons/top-icons.component.mjs +0 -15
  549. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +0 -16
  550. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +0 -28
  551. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +0 -29
  552. package/esm2022/lib/components/kv-login/kv-login.component.mjs +0 -62
  553. package/esm2022/lib/components/kv-login/kv-login.module.mjs +0 -47
  554. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +0 -98
  555. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +0 -20
  556. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +0 -225
  557. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +0 -59
  558. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +0 -190
  559. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +0 -41
  560. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +0 -205
  561. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.module.mjs +0 -51
  562. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +0 -386
  563. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +0 -39
  564. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +0 -58
  565. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +0 -28
  566. package/esm2022/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.mjs +0 -62
  567. package/esm2022/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.mjs +0 -28
  568. package/esm2022/lib/components/kv-report/kv-report.component.mjs +0 -44
  569. package/esm2022/lib/components/kv-report/kv-report.module.mjs +0 -24
  570. package/esm2022/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.mjs +0 -57
  571. package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +0 -74
  572. package/esm2022/lib/components/kv-stepper/kv-stepper.module.mjs +0 -47
  573. package/esm2022/lib/components/kv-steps/kv-steps.component.mjs +0 -105
  574. package/esm2022/lib/components/kv-table/kv-table.component.mjs +0 -680
  575. package/esm2022/lib/components/kv-table/kv-table.module.mjs +0 -40
  576. package/esm2022/lib/components/kv-table-draggable/kv-table-draggable.component.mjs +0 -852
  577. package/esm2022/lib/components/kv-table-draggable/kv-table-draggable.module.mjs +0 -44
  578. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +0 -341
  579. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +0 -45
  580. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.component.mjs +0 -516
  581. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.module.mjs +0 -40
  582. package/esm2022/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.mjs +0 -17
  583. package/esm2022/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.mjs +0 -18
  584. package/esm2022/lib/components/kv-table-viewer/kv-table-viewer.component.mjs +0 -242
  585. package/esm2022/lib/components/kv-tag/kv-tag.component.mjs +0 -19
  586. package/esm2022/lib/components/kv-tag/kv-tag.module.mjs +0 -24
  587. package/esm2022/lib/components/kv-tags/kv-tags.component.mjs +0 -36
  588. package/esm2022/lib/components/kv-tags/kv-tags.module.mjs +0 -27
  589. package/esm2022/lib/components/kv-timeline/kv-timeline.component.mjs +0 -77
  590. package/esm2022/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.mjs +0 -290
  591. package/esm2022/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.mjs +0 -94
  592. package/esm2022/lib/components/kv-tree-environment/models/no-arvore.model.mjs +0 -2
  593. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +0 -334
  594. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +0 -39
  595. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +0 -70
  596. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +0 -28
  597. package/esm2022/lib/components/kv-widget-card/kv-widget-card.component.mjs +0 -102
  598. package/esm2022/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.mjs +0 -40
  599. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +0 -68
  600. package/esm2022/lib/components/kv-workspace/logo/kv-workspace-logo.component.mjs +0 -22
  601. package/esm2022/lib/components/kv-workspace/master/kv-workspace-master.component.mjs +0 -78
  602. package/esm2022/lib/components/kv-workspace/workspace/kv-workspace.component.mjs +0 -87
  603. package/esm2022/public-api.mjs +0 -322
  604. package/fesm2022/keevo-components.mjs +0 -13679
  605. package/fesm2022/keevo-components.mjs.map +0 -1
  606. package/index.d.ts +0 -5
  607. package/lib/api/base-components/base-component-button.d.ts +0 -15
  608. package/lib/api/base-components/base-component-chart.d.ts +0 -40
  609. package/lib/api/base-components/base-component-crud-form.d.ts +0 -149
  610. package/lib/api/base-components/base-component-crud-list.d.ts +0 -70
  611. package/lib/api/base-components/base-component-crud.d.ts +0 -36
  612. package/lib/api/base-components/base-component-dropdown-external.d.ts +0 -15
  613. package/lib/api/base-components/base-component-dropdown.d.ts +0 -60
  614. package/lib/api/base-components/base-component-input.d.ts +0 -33
  615. package/lib/api/base-components/base-component-multi-select.d.ts +0 -40
  616. package/lib/api/base-components/base-component-table.d.ts +0 -88
  617. package/lib/api/base-components/base-component.d.ts +0 -22
  618. package/lib/api/components/chart/chart.config.d.ts +0 -14
  619. package/lib/api/components/chart/chart.model.d.ts +0 -12
  620. package/lib/api/components/chart/orchart.config.d.ts +0 -41
  621. package/lib/api/components/chart/orchartnode.d.ts +0 -34
  622. package/lib/api/components/dropdown/filtro.combo.d.ts +0 -4
  623. package/lib/api/components/stepper/kv-stepperpanel.d.ts +0 -9
  624. package/lib/api/components/table/action-item.d.ts +0 -13
  625. package/lib/api/components/table/kv-menuitem.d.ts +0 -152
  626. package/lib/api/components/table/table-dropdown-control.d.ts +0 -6
  627. package/lib/api/components/table/table.config.column.d.ts +0 -38
  628. package/lib/api/components/table/table.config.d.ts +0 -36
  629. package/lib/api/components/table/table.paginate.d.ts +0 -10
  630. package/lib/api/components/table/tableedit.config.column.d.ts +0 -11
  631. package/lib/api/components/tree-table/tree-table-keys.d.ts +0 -12
  632. package/lib/api/components/tree-table/tree-table.config.d.ts +0 -31
  633. package/lib/api/directives/directives.module.d.ts +0 -9
  634. package/lib/api/directives/drag/drag.directive.d.ts +0 -11
  635. package/lib/api/directives/stepper/dynamicinput.directive.d.ts +0 -15
  636. package/lib/api/directives/template/template.directive.d.ts +0 -11
  637. package/lib/api/helpers/component-providers.d.ts +0 -2
  638. package/lib/api/helpers/keevo-validators.d.ts +0 -18
  639. package/lib/api/helpers/severity-color.d.ts +0 -5
  640. package/lib/api/helpers/translate-primeng.d.ts +0 -4
  641. package/lib/api/modules/primeng.module.d.ts +0 -70
  642. package/lib/api/pipes/capitalize.pipe.d.ts +0 -10
  643. package/lib/api/pipes/cpfcnpj.pipe.d.ts +0 -7
  644. package/lib/api/pipes/mask.pipe.d.ts +0 -7
  645. package/lib/api/pipes/pipes.module.d.ts +0 -11
  646. package/lib/api/pipes/telefone.pipe.d.ts +0 -7
  647. package/lib/api/services/base.api.service.d.ts +0 -25
  648. package/lib/api/services/breadcrumbs.service.d.ts +0 -16
  649. package/lib/api/services/chat.service.d.ts +0 -17
  650. package/lib/api/services/component.service.d.ts +0 -11
  651. package/lib/api/services/docs.service.d.ts +0 -12
  652. package/lib/api/services/form.service.d.ts +0 -31
  653. package/lib/api/services/image.cutter.service.d.ts +0 -16
  654. package/lib/api/services/imagens.service.d.ts +0 -10
  655. package/lib/api/services/notification.service.d.ts +0 -26
  656. package/lib/api/services/object.service.d.ts +0 -9
  657. package/lib/api/services/orgchart.service.d.ts +0 -20
  658. package/lib/api/services/pdf.service.d.ts +0 -7
  659. package/lib/api/types/breadcrumb.model.d.ts +0 -6
  660. package/lib/components/keevo-components.module.d.ts +0 -39
  661. package/lib/components/kv-avatar/kv-avatar.component.d.ts +0 -36
  662. package/lib/components/kv-avatar/kv-avatar.module.d.ts +0 -15
  663. package/lib/components/kv-button/kv-button.component.d.ts +0 -25
  664. package/lib/components/kv-button/kv-button.module.d.ts +0 -9
  665. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +0 -11
  666. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +0 -19
  667. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +0 -7
  668. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +0 -7
  669. package/lib/components/kv-buttons/kv-button.module.d.ts +0 -11
  670. package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +0 -25
  671. package/lib/components/kv-card-selection/kv-card-selection.module.d.ts +0 -10
  672. package/lib/components/kv-carousel/kv-carousel.component.d.ts +0 -17
  673. package/lib/components/kv-carousel/kv-carousel.module.d.ts +0 -9
  674. package/lib/components/kv-chart/kv-chart.component.d.ts +0 -57
  675. package/lib/components/kv-chart/kv-chart.module.d.ts +0 -10
  676. package/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.d.ts +0 -12
  677. package/lib/components/kv-confirmation-modal/kv-confirmation-modal.module.d.ts +0 -10
  678. package/lib/components/kv-content-viewer/kv-content-viewer.component.d.ts +0 -57
  679. package/lib/components/kv-content-viewer/kv-content-viewer.module.d.ts +0 -14
  680. package/lib/components/kv-detailed-list/kv-detailed-list.component.d.ts +0 -62
  681. package/lib/components/kv-error/kv-error.component.d.ts +0 -12
  682. package/lib/components/kv-error/kv-error.module.d.ts +0 -10
  683. package/lib/components/kv-file-upload/kv-file-upload.component.d.ts +0 -35
  684. package/lib/components/kv-file-upload/kv-file-upload.module.d.ts +0 -10
  685. package/lib/components/kv-file-viewer/kv-file-viewer.component.d.ts +0 -21
  686. package/lib/components/kv-file-viewer/kv-file-viewer.module.d.ts +0 -8
  687. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.d.ts +0 -24
  688. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.d.ts +0 -9
  689. package/lib/components/kv-filter-card/kv-filter-card.component.d.ts +0 -13
  690. package/lib/components/kv-filter-card/kv-filter-card.module.d.ts +0 -10
  691. package/lib/components/kv-filter-cards/kv-filter-cards.component.d.ts +0 -31
  692. package/lib/components/kv-filter-cards/kv-filter-cards.module.d.ts +0 -9
  693. package/lib/components/kv-filter-cards/kv-filter-cards.pipe.d.ts +0 -7
  694. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.d.ts +0 -11
  695. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.d.ts +0 -9
  696. package/lib/components/kv-g-icon/kv-g-icon.component.d.ts +0 -5
  697. package/lib/components/kv-g-icon/kv-g-icon.module.d.ts +0 -9
  698. package/lib/components/kv-home-card/kv-home-card.component.d.ts +0 -24
  699. package/lib/components/kv-home-card/kv-home-card.module.d.ts +0 -11
  700. package/lib/components/kv-icon/kv-icon.component.d.ts +0 -23
  701. package/lib/components/kv-icon/kv-icon.module.d.ts +0 -8
  702. package/lib/components/kv-image-upload/kv-image-upload.component.d.ts +0 -34
  703. package/lib/components/kv-image-upload/kv-image-upload.module.d.ts +0 -8
  704. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +0 -12
  705. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +0 -34
  706. package/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.d.ts +0 -8
  707. package/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.d.ts +0 -14
  708. package/lib/components/kv-inputs/kv-editor/config/kv-editor.config.d.ts +0 -55
  709. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +0 -70
  710. package/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.d.ts +0 -41
  711. package/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.d.ts +0 -41
  712. package/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.d.ts +0 -28
  713. package/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.d.ts +0 -45
  714. package/lib/components/kv-inputs/kv-editor/types/kv-editor.types.d.ts +0 -32
  715. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +0 -34
  716. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +0 -12
  717. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +0 -19
  718. package/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.d.ts +0 -21
  719. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +0 -13
  720. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +0 -11
  721. package/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.d.ts +0 -13
  722. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +0 -18
  723. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +0 -16
  724. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +0 -10
  725. package/lib/components/kv-inputs/kv-inputs.module.d.ts +0 -38
  726. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +0 -20
  727. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +0 -20
  728. package/lib/components/kv-inputs/kv-select-button/kv-select-button.component.d.ts +0 -19
  729. package/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.d.ts +0 -36
  730. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +0 -16
  731. package/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.d.ts +0 -25
  732. package/lib/components/kv-label/kv-label.component.d.ts +0 -7
  733. package/lib/components/kv-label/kv-label.module.d.ts +0 -8
  734. package/lib/components/kv-layout/dropdown-master/dropdown-master.component.d.ts +0 -12
  735. package/lib/components/kv-layout/kv-layout.module.d.ts +0 -18
  736. package/lib/components/kv-layout/layout/kv-layout.component.d.ts +0 -159
  737. package/lib/components/kv-layout/top-icons/top-icons.component.d.ts +0 -16
  738. package/lib/components/kv-loader/kv-loader.component.d.ts +0 -7
  739. package/lib/components/kv-loader/kv-loader.module.d.ts +0 -9
  740. package/lib/components/kv-loader/kv-loader.service.d.ts +0 -10
  741. package/lib/components/kv-login/kv-login.component.d.ts +0 -32
  742. package/lib/components/kv-login/kv-login.module.d.ts +0 -13
  743. package/lib/components/kv-modal/kv-modal.component.d.ts +0 -27
  744. package/lib/components/kv-modal/kv-modal.module.d.ts +0 -10
  745. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +0 -45
  746. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +0 -17
  747. package/lib/components/kv-page-form/kv-page-form.component.d.ts +0 -98
  748. package/lib/components/kv-page-form/kv-page-form.module.d.ts +0 -12
  749. package/lib/components/kv-page-stepper/kv-page-stepper.component.d.ts +0 -84
  750. package/lib/components/kv-page-stepper/kv-page-stepper.module.d.ts +0 -14
  751. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +0 -70
  752. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +0 -11
  753. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +0 -67
  754. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +0 -9
  755. package/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.d.ts +0 -71
  756. package/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.d.ts +0 -9
  757. package/lib/components/kv-report/kv-report.component.d.ts +0 -18
  758. package/lib/components/kv-report/kv-report.module.d.ts +0 -8
  759. package/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.d.ts +0 -40
  760. package/lib/components/kv-stepper/kv-stepper.component.d.ts +0 -32
  761. package/lib/components/kv-stepper/kv-stepper.module.d.ts +0 -13
  762. package/lib/components/kv-steps/kv-steps.component.d.ts +0 -21
  763. package/lib/components/kv-table/kv-table.component.d.ts +0 -157
  764. package/lib/components/kv-table/kv-table.module.d.ts +0 -12
  765. package/lib/components/kv-table-draggable/kv-table-draggable.component.d.ts +0 -161
  766. package/lib/components/kv-table-draggable/kv-table-draggable.module.d.ts +0 -13
  767. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +0 -66
  768. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +0 -15
  769. package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +0 -119
  770. package/lib/components/kv-table-expandable/kv-table-expandable.module.d.ts +0 -13
  771. package/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.d.ts +0 -8
  772. package/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.d.ts +0 -7
  773. package/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +0 -95
  774. package/lib/components/kv-tag/kv-tag.component.d.ts +0 -8
  775. package/lib/components/kv-tag/kv-tag.module.d.ts +0 -8
  776. package/lib/components/kv-tags/kv-tags.component.d.ts +0 -33
  777. package/lib/components/kv-tags/kv-tags.module.d.ts +0 -8
  778. package/lib/components/kv-timeline/kv-timeline.component.d.ts +0 -20
  779. package/lib/components/kv-tree-environment/components/kv-tree-environment/kv-tree-environment.component.d.ts +0 -49
  780. package/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.d.ts +0 -24
  781. package/lib/components/kv-tree-environment/models/no-arvore.model.d.ts +0 -57
  782. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +0 -87
  783. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +0 -11
  784. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +0 -21
  785. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +0 -9
  786. package/lib/components/kv-widget-card/kv-widget-card.component.d.ts +0 -60
  787. package/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.d.ts +0 -14
  788. package/lib/components/kv-workspace/kv-workspace.module.d.ts +0 -19
  789. package/lib/components/kv-workspace/logo/kv-workspace-logo.component.d.ts +0 -11
  790. package/lib/components/kv-workspace/master/kv-workspace-master.component.d.ts +0 -25
  791. package/lib/components/kv-workspace/workspace/kv-workspace.component.d.ts +0 -37
@@ -1,94 +0,0 @@
1
- import { Component, computed, EventEmitter, Output, input } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { TieredMenuModule } from 'primeng/tieredmenu';
4
- import { TooltipModule } from 'primeng/tooltip';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/common";
7
- import * as i2 from "primeng/tieredmenu";
8
- import * as i3 from "primeng/tooltip";
9
- import * as i4 from "primeng/api";
10
- export class NoArvoreComponent {
11
- constructor() {
12
- this.noPlano = input.required();
13
- this.enableSidebar = input(false);
14
- this.noAlternado = new EventEmitter();
15
- this.actionExecuted = new EventEmitter();
16
- this.sidebarClick = new EventEmitter();
17
- this.items = computed(() => {
18
- const actionsOriginais = this.noPlano().dadosOriginais.actions || [];
19
- return actionsOriginais.map(action => ({
20
- ...action,
21
- command: undefined
22
- }));
23
- });
24
- this.ehNoPai = computed(() => {
25
- const no = this.noPlano().dadosOriginais;
26
- return !!(no.filhos && no.filhos.length > 0);
27
- });
28
- this.estilosIcone = computed(() => {
29
- const no = this.noPlano().dadosOriginais;
30
- return this.calcularEstilosIcone(no);
31
- });
32
- }
33
- getOriginalCommand(actionLabel) {
34
- const actionsOriginais = this.noPlano().dadosOriginais.actions || [];
35
- const action = actionsOriginais.find(a => a.label === actionLabel);
36
- return action?.command;
37
- }
38
- alternarExpansao() {
39
- this.noAlternado.emit(this.noPlano());
40
- }
41
- onActionClick(item, event) {
42
- this.actionExecuted.emit(this.noPlano());
43
- const originalCommand = this.getOriginalCommand(item.label);
44
- if (originalCommand) {
45
- originalCommand(event);
46
- }
47
- event.stopPropagation();
48
- event.preventDefault();
49
- }
50
- abrirSidebar(event) {
51
- event.stopPropagation();
52
- this.sidebarClick.emit(this.noPlano().dadosOriginais);
53
- }
54
- toggleMenu(event, menu) {
55
- event.stopPropagation();
56
- menu.toggle(event);
57
- }
58
- calcularEstilosIcone(no) {
59
- const pai = !!(no.filhos && no.filhos.length > 0);
60
- const corPadrao = 'transparent';
61
- const corBackgroundIcon = no.backgroundIconColor || corPadrao;
62
- const corIcon = no.iconColor || '#64748B';
63
- if (!no.ativo) {
64
- return pai ? {
65
- 'background-color': '#f2f2f2',
66
- 'color': '#bdbdbd'
67
- } : {
68
- 'background-color': 'transparent',
69
- 'color': '#bdbdbd'
70
- };
71
- }
72
- return {
73
- 'background-color': corBackgroundIcon,
74
- 'color': corIcon
75
- };
76
- }
77
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NoArvoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
78
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: NoArvoreComponent, isStandalone: true, selector: "no-arvore", inputs: { noPlano: { classPropertyName: "noPlano", publicName: "noPlano", isSignal: true, isRequired: true, transformFunction: null }, enableSidebar: { classPropertyName: "enableSidebar", publicName: "enableSidebar", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { noAlternado: "noAlternado", actionExecuted: "actionExecuted", sidebarClick: "sidebarClick" }, ngImport: i0, template: "<li \r\n class=\"no-container\"\r\n [class.inativo]=\"noPlano().dadosOriginais.ativo === false\">\r\n\r\n <div class=\"linhas-guia\">\r\n @for(i of [].constructor(noPlano().nivel); track i) {\r\n <div class=\"linha-vertical\"></div>\r\n }\r\n </div>\r\n\r\n <div \r\n class=\"no-conteudo\" \r\n [class.is-last-child]=\"noPlano().isLast\"\r\n (click)=\"alternarExpansao()\">\r\n\r\n <div class=\"container-icone\" [ngStyle]=\"estilosIcone()\">\r\n <span class=\"material-symbols-outlined text-lg no-icone\">\r\n {{ noPlano().dadosOriginais.icone }}\r\n </span>\r\n </div>\r\n\r\n <span \r\n class=\"no-rotulo\"\r\n [class.text-black-alpha-80]=\"!ehNoPai()\">\r\n {{ noPlano().dadosOriginais.rotulo }}\r\n </span>\r\n\r\n @if (noPlano().dadosOriginais.showSidebarAction) {\r\n <span\r\n class=\"material-symbols-outlined flex text-base ml-2 cursor-pointer icone-arrow text-600\"\r\n style=\"transform: translate(0px, 2px); padding: 2px;\"\r\n (click)=\"abrirSidebar($event)\"\r\n >\r\n menu\r\n </span>\r\n }\r\n\r\n @if (items().length > 0) {\r\n\r\n <span\r\n class=\"material-symbols-outlined flex text-lg ml-2 cursor-pointer icone-arrow text-600\"\r\n style=\"transform: translate(0px, 2px);\"\r\n (click)=\"toggleMenu($event, menu)\"\r\n >\r\n more_horiz\r\n </span>\r\n\r\n <p-tieredMenu\r\n #menu\r\n [popup]=\"true\"\r\n [model]=\"items()\"\r\n appendTo=\"body\"\r\n >\r\n <ng-template let-item pTemplate=\"item\">\r\n <div\r\n [pTooltip]=\"item.tooltip\"\r\n tooltipPosition=\"left\"\r\n class=\"cursor-pointer\"\r\n (click)=\"onActionClick(item, $event)\"\r\n >\r\n <span class=\"text-xs\">\r\n {{ item.label }}\r\n </span>\r\n </div>\r\n </ng-template>\r\n </p-tieredMenu>\r\n }\r\n \r\n </div>\r\n \r\n \r\n</li>\r\n\r\n", styles: [":host{--ident-size: 2rem;--line-color: #e0e0e0;--line-width: 1px}.no-container{display:flex;align-items:stretch;position:relative}.linhas-guia{display:flex;flex-shrink:0;position:relative}.linha-vertical{width:var(--ident-size);position:relative}.linha-vertical:before{content:\"\";position:absolute;top:0;bottom:0;left:50%;transform:translate(-50%);width:var(--line-width);background-color:var(--line-color)}.no-conteudo{display:flex;align-items:center;cursor:pointer;position:relative;padding:4px 6px 6px 0}.no-conteudo:before{content:\"\";position:absolute;left:calc(var(--ident-size) / -2);top:50%;width:calc(var(--ident-size) / 2);height:var(--line-width);background-color:var(--line-color)}.no-conteudo:hover{box-shadow:#3c40434d 0 1px 2px,#3c404326 0 2px 6px 2px;background-color:#fff;transition:color .3s,transform .3s;transform:scale(1);border-radius:4px}.is-last-child~.linhas-guia .linha-vertical:last-child:before,.is-last-child .linhas-guia .linha-vertical:last-child:before{height:50%}:host:first-child .no-conteudo:before,:host:first-child .linhas-guia{display:none}.no-seta{transition:transform .25s ease-in-out;color:#555;width:24px;height:24px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:24px}.no-seta.rotacionado{transform:rotate(0)}.no-seta:not(.rotacionado){transform:rotate(-90deg)}.container-icone{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:3px;margin:0 8px;flex-shrink:0;transform:translateY(1px)}.container-icone .no-icone{font-size:18px}.no-rotulo{font-family:system-ui,sans-serif;color:#000}.inativo .no-rotulo,.inativo .no-seta{color:#bdbdbd}.icone-arrow{font-weight:500;transition:all .4s;opacity:1;transition:opacity .2s ease,transform .2s ease}.icone-arrow:hover{background-color:#eaeaea;transition:color .3s,transform .3s;border-radius:50%}.no-conteudo:hover .icone-arrow{opacity:1}::ng-deep .p-tieredmenu{padding:.5rem!important}::ng-deep .p-tieredmenu .p-tieredmenu-root-list{font-size:.75rem!important}::ng-deep .p-tieredmenu .p-menuitem>.p-menuitem-content{padding:.5rem}::ng-deep p-tieredmenusub .p-disabled *:active{pointer-events:none!important;font-size:.75rem!important;padding:.5rem!important}::ng-deep .p-disabled *{pointer-events:auto!important}.icon-more{font-weight:500;font-size:1.4rem!important;color:rgb(var(--kv-color-system),.75);transition:all .4s}.icon-more:hover,.icon-more:focus{color:#5e5e5e;transition:color .3s,transform .3s;background-color:#eaeaea;border-radius:50%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: TieredMenuModule }, { kind: "component", type: i2.TieredMenu, selector: "p-tieredMenu", inputs: ["model", "popup", "style", "styleClass", "appendTo", "autoZIndex", "baseZIndex", "autoDisplay", "showTransitionOptions", "hideTransitionOptions", "id", "ariaLabel", "ariaLabelledBy", "disabled", "tabindex"], outputs: ["onShow", "onHide"] }, { kind: "directive", type: i3.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "directive", type: i4.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "ngmodule", type: TooltipModule }] }); }
79
- }
80
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NoArvoreComponent, decorators: [{
81
- type: Component,
82
- args: [{ standalone: true, selector: 'no-arvore', imports: [
83
- CommonModule,
84
- TieredMenuModule,
85
- TooltipModule
86
- ], template: "<li \r\n class=\"no-container\"\r\n [class.inativo]=\"noPlano().dadosOriginais.ativo === false\">\r\n\r\n <div class=\"linhas-guia\">\r\n @for(i of [].constructor(noPlano().nivel); track i) {\r\n <div class=\"linha-vertical\"></div>\r\n }\r\n </div>\r\n\r\n <div \r\n class=\"no-conteudo\" \r\n [class.is-last-child]=\"noPlano().isLast\"\r\n (click)=\"alternarExpansao()\">\r\n\r\n <div class=\"container-icone\" [ngStyle]=\"estilosIcone()\">\r\n <span class=\"material-symbols-outlined text-lg no-icone\">\r\n {{ noPlano().dadosOriginais.icone }}\r\n </span>\r\n </div>\r\n\r\n <span \r\n class=\"no-rotulo\"\r\n [class.text-black-alpha-80]=\"!ehNoPai()\">\r\n {{ noPlano().dadosOriginais.rotulo }}\r\n </span>\r\n\r\n @if (noPlano().dadosOriginais.showSidebarAction) {\r\n <span\r\n class=\"material-symbols-outlined flex text-base ml-2 cursor-pointer icone-arrow text-600\"\r\n style=\"transform: translate(0px, 2px); padding: 2px;\"\r\n (click)=\"abrirSidebar($event)\"\r\n >\r\n menu\r\n </span>\r\n }\r\n\r\n @if (items().length > 0) {\r\n\r\n <span\r\n class=\"material-symbols-outlined flex text-lg ml-2 cursor-pointer icone-arrow text-600\"\r\n style=\"transform: translate(0px, 2px);\"\r\n (click)=\"toggleMenu($event, menu)\"\r\n >\r\n more_horiz\r\n </span>\r\n\r\n <p-tieredMenu\r\n #menu\r\n [popup]=\"true\"\r\n [model]=\"items()\"\r\n appendTo=\"body\"\r\n >\r\n <ng-template let-item pTemplate=\"item\">\r\n <div\r\n [pTooltip]=\"item.tooltip\"\r\n tooltipPosition=\"left\"\r\n class=\"cursor-pointer\"\r\n (click)=\"onActionClick(item, $event)\"\r\n >\r\n <span class=\"text-xs\">\r\n {{ item.label }}\r\n </span>\r\n </div>\r\n </ng-template>\r\n </p-tieredMenu>\r\n }\r\n \r\n </div>\r\n \r\n \r\n</li>\r\n\r\n", styles: [":host{--ident-size: 2rem;--line-color: #e0e0e0;--line-width: 1px}.no-container{display:flex;align-items:stretch;position:relative}.linhas-guia{display:flex;flex-shrink:0;position:relative}.linha-vertical{width:var(--ident-size);position:relative}.linha-vertical:before{content:\"\";position:absolute;top:0;bottom:0;left:50%;transform:translate(-50%);width:var(--line-width);background-color:var(--line-color)}.no-conteudo{display:flex;align-items:center;cursor:pointer;position:relative;padding:4px 6px 6px 0}.no-conteudo:before{content:\"\";position:absolute;left:calc(var(--ident-size) / -2);top:50%;width:calc(var(--ident-size) / 2);height:var(--line-width);background-color:var(--line-color)}.no-conteudo:hover{box-shadow:#3c40434d 0 1px 2px,#3c404326 0 2px 6px 2px;background-color:#fff;transition:color .3s,transform .3s;transform:scale(1);border-radius:4px}.is-last-child~.linhas-guia .linha-vertical:last-child:before,.is-last-child .linhas-guia .linha-vertical:last-child:before{height:50%}:host:first-child .no-conteudo:before,:host:first-child .linhas-guia{display:none}.no-seta{transition:transform .25s ease-in-out;color:#555;width:24px;height:24px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:24px}.no-seta.rotacionado{transform:rotate(0)}.no-seta:not(.rotacionado){transform:rotate(-90deg)}.container-icone{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:3px;margin:0 8px;flex-shrink:0;transform:translateY(1px)}.container-icone .no-icone{font-size:18px}.no-rotulo{font-family:system-ui,sans-serif;color:#000}.inativo .no-rotulo,.inativo .no-seta{color:#bdbdbd}.icone-arrow{font-weight:500;transition:all .4s;opacity:1;transition:opacity .2s ease,transform .2s ease}.icone-arrow:hover{background-color:#eaeaea;transition:color .3s,transform .3s;border-radius:50%}.no-conteudo:hover .icone-arrow{opacity:1}::ng-deep .p-tieredmenu{padding:.5rem!important}::ng-deep .p-tieredmenu .p-tieredmenu-root-list{font-size:.75rem!important}::ng-deep .p-tieredmenu .p-menuitem>.p-menuitem-content{padding:.5rem}::ng-deep p-tieredmenusub .p-disabled *:active{pointer-events:none!important;font-size:.75rem!important;padding:.5rem!important}::ng-deep .p-disabled *{pointer-events:auto!important}.icon-more{font-weight:500;font-size:1.4rem!important;color:rgb(var(--kv-color-system),.75);transition:all .4s}.icon-more:hover,.icon-more:focus{color:#5e5e5e;transition:color .3s,transform .3s;background-color:#eaeaea;border-radius:50%}\n"] }]
87
- }], propDecorators: { noAlternado: [{
88
- type: Output
89
- }], actionExecuted: [{
90
- type: Output
91
- }], sidebarClick: [{
92
- type: Output
93
- }] } });
94
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tYXJ2b3JlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LXRyZWUtZW52aXJvbm1lbnQvY29tcG9uZW50cy9uby1hcnZvcmUvbm8tYXJ2b3JlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LXRyZWUtZW52aXJvbm1lbnQvY29tcG9uZW50cy9uby1hcnZvcmUvbm8tYXJ2b3JlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBMkIsU0FBUyxFQUFFLFFBQVEsRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUxRyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDdEQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7Ozs7QUFjaEQsTUFBTSxPQUFPLGlCQUFpQjtJQVo5QjtRQWNFLFlBQU8sR0FBRyxLQUFLLENBQUMsUUFBUSxFQUFXLENBQUM7UUFDcEMsa0JBQWEsR0FBRyxLQUFLLENBQVUsS0FBSyxDQUFDLENBQUM7UUFFNUIsZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBQzFDLG1CQUFjLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUM3QyxpQkFBWSxHQUFHLElBQUksWUFBWSxFQUFZLENBQUM7UUFFdEQsVUFBSyxHQUFHLFFBQVEsQ0FBYSxHQUFHLEVBQUU7WUFDaEMsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDLE9BQU8sSUFBSSxFQUFFLENBQUM7WUFDckUsT0FBTyxnQkFBZ0IsQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2dCQUNyQyxHQUFHLE1BQU07Z0JBQ1QsT0FBTyxFQUFFLFNBQVM7YUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDTixDQUFDLENBQUMsQ0FBQztRQUVILFlBQU8sR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFO1lBQy9CLE1BQU0sRUFBRSxHQUFHLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxjQUFjLENBQUM7WUFDekMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxNQUFNLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDO1FBQy9DLENBQUMsQ0FBQyxDQUFDO1FBRUgsaUJBQVksR0FBRyxRQUFRLENBQTRCLEdBQUcsRUFBRTtZQUN0RCxNQUFNLEVBQUUsR0FBRyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDO1lBQ3pDLE9BQU8sSUFBSSxDQUFDLG9CQUFvQixDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZDLENBQUMsQ0FBQyxDQUFDO0tBMERKO0lBeERTLGtCQUFrQixDQUFDLFdBQW1CO1FBQzVDLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLGNBQWMsQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDO1FBQ3JFLE1BQU0sTUFBTSxHQUFHLGdCQUFnQixDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLEtBQUssV0FBVyxDQUFDLENBQUM7UUFDbkUsT0FBTyxNQUFNLEVBQUUsT0FBTyxDQUFDO0lBQ3pCLENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRUQsYUFBYSxDQUFDLElBQWMsRUFBRSxLQUFZO1FBQ3hDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQUFDO1FBRXpDLE1BQU0sZUFBZSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsS0FBZSxDQUFDLENBQUM7UUFFdEUsSUFBSSxlQUFlLEVBQUUsQ0FBQztZQUNwQixlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsQ0FBQztRQUVELEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUN4QixLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVELFlBQVksQ0FBQyxLQUFZO1FBQ3ZCLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUN4QixJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDLENBQUM7SUFDeEQsQ0FBQztJQUVELFVBQVUsQ0FBQyxLQUFZLEVBQUUsSUFBUztRQUNoQyxLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFDeEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNyQixDQUFDO0lBRU8sb0JBQW9CLENBQUMsRUFBWTtRQUN2QyxNQUFNLEdBQUcsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxNQUFNLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDO1FBRWxELE1BQU0sU0FBUyxHQUFHLGFBQWEsQ0FBQztRQUNoQyxNQUFNLGlCQUFpQixHQUFHLEVBQUUsQ0FBQyxtQkFBbUIsSUFBSSxTQUFTLENBQUM7UUFDOUQsTUFBTSxPQUFPLEdBQUcsRUFBRSxDQUFDLFNBQVMsSUFBSSxTQUFTLENBQUM7UUFFMUMsSUFBRyxDQUFDLEVBQUUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNiLE9BQU8sR0FBRyxDQUFDLENBQUMsQ0FBQztnQkFDWCxrQkFBa0IsRUFBRSxTQUFTO2dCQUM3QixPQUFPLEVBQUUsU0FBUzthQUNuQixDQUFDLENBQUMsQ0FBQztnQkFDRixrQkFBa0IsRUFBRSxhQUFhO2dCQUNqQyxPQUFPLEVBQUUsU0FBUzthQUNuQixDQUFDO1FBQ0osQ0FBQztRQUVELE9BQU87WUFDTCxrQkFBa0IsRUFBRSxpQkFBaUI7WUFDckMsT0FBTyxFQUFFLE9BQU87U0FDakIsQ0FBQTtJQUNILENBQUM7OEdBakZVLGlCQUFpQjtrR0FBakIsaUJBQWlCLHVjQ25COUIsb2hFQXlFQSx5Z0ZEM0RJLFlBQVksbUhBQ1osZ0JBQWdCLDB4QkFDaEIsYUFBYTs7MkZBR0osaUJBQWlCO2tCQVo3QixTQUFTO2lDQUNJLElBQUksWUFDTixXQUFXLFdBSVo7d0JBQ1AsWUFBWTt3QkFDWixnQkFBZ0I7d0JBQ2hCLGFBQWE7cUJBQ2Q7OEJBT1MsV0FBVztzQkFBcEIsTUFBTTtnQkFDRyxjQUFjO3NCQUF2QixNQUFNO2dCQUNHLFlBQVk7c0JBQXJCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCwgRXZlbnRFbWl0dGVyLCBPdXRwdXQsIGlucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE5vQXJ2b3JlLCBOb1BsYW5vIH0gZnJvbSAnLi4vLi4vbW9kZWxzL25vLWFydm9yZS5tb2RlbCc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IE1lbnVJdGVtIH0gZnJvbSAncHJpbWVuZy9hcGknO1xyXG5pbXBvcnQgeyBUaWVyZWRNZW51TW9kdWxlIH0gZnJvbSAncHJpbWVuZy90aWVyZWRtZW51JztcclxuaW1wb3J0IHsgVG9vbHRpcE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvdG9vbHRpcCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIHNlbGVjdG9yOiAnbm8tYXJ2b3JlJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vbm8tYXJ2b3JlLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9uby1hcnZvcmUuY29tcG9uZW50LnNjc3MnXSxcclxuICAvLyBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBUaWVyZWRNZW51TW9kdWxlLFxyXG4gICAgVG9vbHRpcE1vZHVsZVxyXG4gIF0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBOb0Fydm9yZUNvbXBvbmVudCB7XHJcblxyXG4gIG5vUGxhbm8gPSBpbnB1dC5yZXF1aXJlZDxOb1BsYW5vPigpO1xyXG4gIGVuYWJsZVNpZGViYXIgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XHJcblxyXG4gIEBPdXRwdXQoKSBub0FsdGVybmFkbyA9IG5ldyBFdmVudEVtaXR0ZXI8Tm9QbGFubz4oKTtcclxuICBAT3V0cHV0KCkgYWN0aW9uRXhlY3V0ZWQgPSBuZXcgRXZlbnRFbWl0dGVyPE5vUGxhbm8+KCk7XHJcbiAgQE91dHB1dCgpIHNpZGViYXJDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8Tm9BcnZvcmU+KCk7XHJcblxyXG4gIGl0ZW1zID0gY29tcHV0ZWQ8TWVudUl0ZW1bXT4oKCkgPT4ge1xyXG4gICAgY29uc3QgYWN0aW9uc09yaWdpbmFpcyA9IHRoaXMubm9QbGFubygpLmRhZG9zT3JpZ2luYWlzLmFjdGlvbnMgfHwgW107XHJcbiAgICByZXR1cm4gYWN0aW9uc09yaWdpbmFpcy5tYXAoYWN0aW9uID0+ICh7XHJcbiAgICAgIC4uLmFjdGlvbixcclxuICAgICAgY29tbWFuZDogdW5kZWZpbmVkXHJcbiAgICB9KSk7XHJcbiAgfSk7XHJcblxyXG4gIGVoTm9QYWkgPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiB7XHJcbiAgICBjb25zdCBubyA9IHRoaXMubm9QbGFubygpLmRhZG9zT3JpZ2luYWlzO1xyXG4gICAgcmV0dXJuICEhKG5vLmZpbGhvcyAmJiBuby5maWxob3MubGVuZ3RoID4gMCk7XHJcbiAgfSk7XHJcblxyXG4gIGVzdGlsb3NJY29uZSA9IGNvbXB1dGVkPHsgW2tleTogc3RyaW5nXTogc3RyaW5nIH0+KCgpID0+IHtcclxuICAgIGNvbnN0IG5vID0gdGhpcy5ub1BsYW5vKCkuZGFkb3NPcmlnaW5haXM7XHJcbiAgICByZXR1cm4gdGhpcy5jYWxjdWxhckVzdGlsb3NJY29uZShubyk7XHJcbiAgfSk7XHJcblxyXG4gIHByaXZhdGUgZ2V0T3JpZ2luYWxDb21tYW5kKGFjdGlvbkxhYmVsOiBzdHJpbmcpOiBGdW5jdGlvbiB8IHVuZGVmaW5lZCB7XHJcbiAgICBjb25zdCBhY3Rpb25zT3JpZ2luYWlzID0gdGhpcy5ub1BsYW5vKCkuZGFkb3NPcmlnaW5haXMuYWN0aW9ucyB8fCBbXTtcclxuICAgIGNvbnN0IGFjdGlvbiA9IGFjdGlvbnNPcmlnaW5haXMuZmluZChhID0+IGEubGFiZWwgPT09IGFjdGlvbkxhYmVsKTtcclxuICAgIHJldHVybiBhY3Rpb24/LmNvbW1hbmQ7XHJcbiAgfVxyXG5cclxuICBhbHRlcm5hckV4cGFuc2FvKCk6IHZvaWQge1xyXG4gICAgdGhpcy5ub0FsdGVybmFkby5lbWl0KHRoaXMubm9QbGFubygpKTtcclxuICB9XHJcblxyXG4gIG9uQWN0aW9uQ2xpY2soaXRlbTogTWVudUl0ZW0sIGV2ZW50OiBFdmVudCk6IHZvaWQge1xyXG4gICAgdGhpcy5hY3Rpb25FeGVjdXRlZC5lbWl0KHRoaXMubm9QbGFubygpKTtcclxuICAgIFxyXG4gICAgY29uc3Qgb3JpZ2luYWxDb21tYW5kID0gdGhpcy5nZXRPcmlnaW5hbENvbW1hbmQoaXRlbS5sYWJlbCBhcyBzdHJpbmcpO1xyXG4gICAgXHJcbiAgICBpZiAob3JpZ2luYWxDb21tYW5kKSB7XHJcbiAgICAgIG9yaWdpbmFsQ29tbWFuZChldmVudCk7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xyXG4gICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcclxuICB9XHJcblxyXG4gIGFicmlyU2lkZWJhcihldmVudDogRXZlbnQpOiB2b2lkIHtcclxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xyXG4gICAgdGhpcy5zaWRlYmFyQ2xpY2suZW1pdCh0aGlzLm5vUGxhbm8oKS5kYWRvc09yaWdpbmFpcyk7XHJcbiAgfVxyXG5cclxuICB0b2dnbGVNZW51KGV2ZW50OiBFdmVudCwgbWVudTogYW55KTogdm9pZCB7XHJcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcclxuICAgIG1lbnUudG9nZ2xlKGV2ZW50KTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgY2FsY3VsYXJFc3RpbG9zSWNvbmUobm86IE5vQXJ2b3JlKTogeyBba2V5OiBzdHJpbmddOiBzdHJpbmcgfSB7XHJcbiAgICBjb25zdCBwYWkgPSAhIShuby5maWxob3MgJiYgbm8uZmlsaG9zLmxlbmd0aCA+IDApO1xyXG5cclxuICAgIGNvbnN0IGNvclBhZHJhbyA9ICd0cmFuc3BhcmVudCc7XHJcbiAgICBjb25zdCBjb3JCYWNrZ3JvdW5kSWNvbiA9IG5vLmJhY2tncm91bmRJY29uQ29sb3IgfHwgY29yUGFkcmFvO1xyXG4gICAgY29uc3QgY29ySWNvbiA9IG5vLmljb25Db2xvciB8fCAnIzY0NzQ4Qic7XHJcblxyXG4gICAgaWYoIW5vLmF0aXZvKSB7XHJcbiAgICAgIHJldHVybiBwYWkgPyB7XHJcbiAgICAgICAgJ2JhY2tncm91bmQtY29sb3InOiAnI2YyZjJmMicsXHJcbiAgICAgICAgJ2NvbG9yJzogJyNiZGJkYmQnXHJcbiAgICAgIH0gOiB7XHJcbiAgICAgICAgJ2JhY2tncm91bmQtY29sb3InOiAndHJhbnNwYXJlbnQnLFxyXG4gICAgICAgICdjb2xvcic6ICcjYmRiZGJkJ1xyXG4gICAgICB9O1xyXG4gICAgfVxyXG5cclxuICAgIHJldHVybiB7XHJcbiAgICAgICdiYWNrZ3JvdW5kLWNvbG9yJzogY29yQmFja2dyb3VuZEljb24sXHJcbiAgICAgICdjb2xvcic6IGNvckljb25cclxuICAgIH1cclxuICB9XHJcblxyXG59XHJcbiIsIjxsaSBcclxuICBjbGFzcz1cIm5vLWNvbnRhaW5lclwiXHJcbiAgW2NsYXNzLmluYXRpdm9dPVwibm9QbGFubygpLmRhZG9zT3JpZ2luYWlzLmF0aXZvID09PSBmYWxzZVwiPlxyXG5cclxuICA8ZGl2IGNsYXNzPVwibGluaGFzLWd1aWFcIj5cclxuICAgIEBmb3IoaSBvZiBbXS5jb25zdHJ1Y3Rvcihub1BsYW5vKCkubml2ZWwpOyB0cmFjayBpKSB7XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsaW5oYS12ZXJ0aWNhbFwiPjwvZGl2PlxyXG4gICAgfVxyXG4gIDwvZGl2PlxyXG5cclxuICA8ZGl2IFxyXG4gICAgY2xhc3M9XCJuby1jb250ZXVkb1wiIFxyXG4gICAgW2NsYXNzLmlzLWxhc3QtY2hpbGRdPVwibm9QbGFubygpLmlzTGFzdFwiXHJcbiAgICAoY2xpY2spPVwiYWx0ZXJuYXJFeHBhbnNhbygpXCI+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1pY29uZVwiIFtuZ1N0eWxlXT1cImVzdGlsb3NJY29uZSgpXCI+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCB0ZXh0LWxnIG5vLWljb25lXCI+XHJcbiAgICAgICAge3sgbm9QbGFubygpLmRhZG9zT3JpZ2luYWlzLmljb25lIH19XHJcbiAgICAgIDwvc3Bhbj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxzcGFuIFxyXG4gICAgICBjbGFzcz1cIm5vLXJvdHVsb1wiXHJcbiAgICAgIFtjbGFzcy50ZXh0LWJsYWNrLWFscGhhLTgwXT1cIiFlaE5vUGFpKClcIj5cclxuICAgICAge3sgbm9QbGFubygpLmRhZG9zT3JpZ2luYWlzLnJvdHVsbyB9fVxyXG4gICAgPC9zcGFuPlxyXG5cclxuICAgIEBpZiAobm9QbGFubygpLmRhZG9zT3JpZ2luYWlzLnNob3dTaWRlYmFyQWN0aW9uKSB7XHJcbiAgICAgIDxzcGFuXHJcbiAgICAgICAgY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGZsZXggdGV4dC1iYXNlIG1sLTIgY3Vyc29yLXBvaW50ZXIgaWNvbmUtYXJyb3cgdGV4dC02MDBcIlxyXG4gICAgICAgIHN0eWxlPVwidHJhbnNmb3JtOiB0cmFuc2xhdGUoMHB4LCAycHgpOyBwYWRkaW5nOiAycHg7XCJcclxuICAgICAgICAoY2xpY2spPVwiYWJyaXJTaWRlYmFyKCRldmVudClcIlxyXG4gICAgICA+XHJcbiAgICAgICAgbWVudVxyXG4gICAgICA8L3NwYW4+XHJcbiAgICB9XHJcblxyXG4gICAgQGlmIChpdGVtcygpLmxlbmd0aCA+IDApIHtcclxuXHJcbiAgICAgIDxzcGFuXHJcbiAgICAgICAgY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGZsZXggdGV4dC1sZyBtbC0yIGN1cnNvci1wb2ludGVyIGljb25lLWFycm93IHRleHQtNjAwXCJcclxuICAgICAgICBzdHlsZT1cInRyYW5zZm9ybTogdHJhbnNsYXRlKDBweCwgMnB4KTtcIlxyXG4gICAgICAgIChjbGljayk9XCJ0b2dnbGVNZW51KCRldmVudCwgbWVudSlcIlxyXG4gICAgICA+XHJcbiAgICAgICAgbW9yZV9ob3JpelxyXG4gICAgICA8L3NwYW4+XHJcblxyXG4gICAgICA8cC10aWVyZWRNZW51XHJcbiAgICAgICAgI21lbnVcclxuICAgICAgICBbcG9wdXBdPVwidHJ1ZVwiXHJcbiAgICAgICAgW21vZGVsXT1cIml0ZW1zKClcIlxyXG4gICAgICAgIGFwcGVuZFRvPVwiYm9keVwiXHJcbiAgICAgID5cclxuICAgICAgICA8bmctdGVtcGxhdGUgbGV0LWl0ZW0gcFRlbXBsYXRlPVwiaXRlbVwiPlxyXG4gICAgICAgICAgPGRpdlxyXG4gICAgICAgICAgICBbcFRvb2x0aXBdPVwiaXRlbS50b29sdGlwXCJcclxuICAgICAgICAgICAgdG9vbHRpcFBvc2l0aW9uPVwibGVmdFwiXHJcbiAgICAgICAgICAgIGNsYXNzPVwiY3Vyc29yLXBvaW50ZXJcIlxyXG4gICAgICAgICAgICAoY2xpY2spPVwib25BY3Rpb25DbGljayhpdGVtLCAkZXZlbnQpXCJcclxuICAgICAgICAgID5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ0ZXh0LXhzXCI+XHJcbiAgICAgICAgICAgICAge3sgaXRlbS5sYWJlbCB9fVxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICA8L3AtdGllcmVkTWVudT5cclxuICAgIH1cclxuICAgIFxyXG4gIDwvZGl2PlxyXG4gIFxyXG4gIFxyXG48L2xpPlxyXG5cclxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tYXJ2b3JlLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtdHJlZS1lbnZpcm9ubWVudC9tb2RlbHMvbm8tYXJ2b3JlLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNZW51SXRlbSB9IGZyb20gJ3ByaW1lbmcvYXBpJztcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgTm9QbGFubyB7XHJcbiAgaWQ6IHN0cmluZztcclxuICBuaXZlbDogbnVtYmVyO1xyXG4gIGV4cGFuc2l2ZWw6IGJvb2xlYW47XHJcbiAgZXhwYW5kZWQ6IGJvb2xlYW47XHJcbiAgaXNMYXN0OiBib29sZWFuO1xyXG4gIGRhZG9zT3JpZ2luYWlzOiBOb0Fydm9yZTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBOb0Fydm9yZSB7XHJcbiAgcm90dWxvOiBzdHJpbmc7XHJcbiAgaWNvbmU6IHN0cmluZztcclxuICBiYWNrZ3JvdW5kSWNvbkNvbG9yPzogc3RyaW5nO1xyXG4gIGljb25Db2xvcj86IHN0cmluZztcclxuICBhdGl2bz86IGJvb2xlYW47XHJcbiAgZXhwYW5kZWQ/OiBib29sZWFuO1xyXG4gIGZpbGhvcz86IE5vQXJ2b3JlW107XHJcbiAgYWN0aW9ucz86IE1lbnVJdGVtW107XHJcbiAgZGF0YT86IGFueTtcclxuICBzaG93U2lkZWJhckFjdGlvbj86IGJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgTm9BcnZvcmVTaW1wbGVzIHtcclxuICBrZXk6IHN0cmluZztcclxuICByb3R1bG86IHN0cmluZztcclxuICBpY29uZTogc3RyaW5nO1xyXG4gIGJhY2tncm91bmRJY29uQ29sb3I/OiBzdHJpbmc7XHJcbiAgaWNvbkNvbG9yPzogc3RyaW5nO1xyXG4gIGF0aXZvPzogYm9vbGVhbjtcclxuICBleHBhbmRlZD86IGJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ29uZmlnQXJ2b3JlU2ltcGxlcyB7XHJcbiAgYWx0dXJhPzogc3RyaW5nO1xyXG4gIG1hcmdlbUl0ZW0/OiBudW1iZXI7XHJcbiAgbW9zdHJhckJvdGFvQ29sYXBzYXI/OiBib29sZWFuO1xyXG4gIG1vc3RyYXJCb3Rhb0FkaWNpb25hcj86IGJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRXN0cnV0dXJhQXJ2b3JlIHtcclxuICBpZDogbnVtYmVyO1xyXG4gIHBhcmVudElkPzogbnVtYmVyO1xyXG4gIGxhYmVsOiBzdHJpbmc7XHJcbiAgdGlwbzogJ3Bhc3RhJyB8ICdpdGVtJztcclxuICBpY29uZTogc3RyaW5nO1xyXG4gIGJhY2tncm91bmRJY29uQ29sb3I/OiBzdHJpbmc7XHJcbiAgaWNvbkNvbG9yPzogc3RyaW5nOyBcclxuICBleHBhbmRlZD86IGJvb2xlYW47XHJcbiAgb3JkZW0/OiBudW1iZXI7XHJcbiAgYWN0aW9ucz86IE1lbnVJdGVtW107XHJcbiAgZGF0YT86IGFueTtcclxuICBzaG93U2lkZWJhckFjdGlvbj86IGJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGFkb3NBcnZvcmUge1xyXG4gIGlkOiBudW1iZXI7XHJcbiAgcm90dWxvPzogc3RyaW5nO1xyXG4gIGF0aXZvPzogYm9vbGVhbjtcclxuICBwcm9wcmllZGFkZXM/OiBhbnk7XHJcbiAgbWV0YWRhZG9zPzogYW55O1xyXG59Il19