keevo-components 2.0.106 → 2.0.107

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 (746) 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 +257 -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 +144 -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 +71 -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 +5 -0
  61. package/src/lib/api/types/severity.ts +3 -0
  62. package/src/lib/api/types/stimulsoft.reports.d.ts +67463 -0
  63. package/src/lib/components/keevo-components-styles.scss +5 -0
  64. package/src/lib/components/keevo-components.module.ts +105 -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 +55 -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 +229 -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 +171 -0
  111. package/src/lib/components/kv-content-viewer/kv-content-viewer.module.ts +25 -0
  112. package/src/lib/components/kv-error/kv-error.component.html +3 -0
  113. package/src/lib/components/kv-error/kv-error.component.scss +5 -0
  114. package/src/lib/components/kv-error/kv-error.component.ts +27 -0
  115. package/src/lib/components/kv-error/kv-error.module.ts +26 -0
  116. package/src/lib/components/kv-file-upload/kv-file-upload.component.html +134 -0
  117. package/src/lib/components/kv-file-upload/kv-file-upload.component.scss +13 -0
  118. package/src/lib/components/kv-file-upload/kv-file-upload.component.spec.ts +23 -0
  119. package/src/lib/components/kv-file-upload/kv-file-upload.component.ts +200 -0
  120. package/src/lib/components/kv-file-upload/kv-file-upload.module.ts +13 -0
  121. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.html +16 -0
  122. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.scss +18 -0
  123. package/src/lib/components/kv-file-viewer/kv-file-viewer.component.ts +42 -0
  124. package/src/lib/components/kv-file-viewer/kv-file-viewer.module.ts +14 -0
  125. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.html +34 -0
  126. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.scss +17 -0
  127. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.ts +80 -0
  128. package/src/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.ts +15 -0
  129. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.html +103 -0
  130. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.scss +153 -0
  131. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.spec.ts +23 -0
  132. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.component.ts +73 -0
  133. package/src/lib/components/kv-file-viewer-preview/kv-file-viewer-preview.module.ts +18 -0
  134. package/src/lib/components/kv-filter-card/kv-filter-card.component.html +12 -0
  135. package/src/lib/components/kv-filter-card/kv-filter-card.component.scss +76 -0
  136. package/src/lib/components/kv-filter-card/kv-filter-card.component.spec.ts +23 -0
  137. package/src/lib/components/kv-filter-card/kv-filter-card.component.ts +18 -0
  138. package/src/lib/components/kv-filter-card/kv-filter-card.module.ts +23 -0
  139. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.html +81 -0
  140. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.scss +197 -0
  141. package/src/lib/components/kv-filter-cards/kv-filter-cards.component.ts +150 -0
  142. package/src/lib/components/kv-filter-cards/kv-filter-cards.module.ts +20 -0
  143. package/src/lib/components/kv-filter-cards/kv-filter-cards.pipe.ts +24 -0
  144. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.html +25 -0
  145. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.scss +22 -0
  146. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.spec.ts +23 -0
  147. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.ts +20 -0
  148. package/src/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.ts +20 -0
  149. package/src/lib/components/kv-g-icon/kv-g-icon.component.html +1 -0
  150. package/src/lib/components/kv-g-icon/kv-g-icon.component.scss +0 -0
  151. package/src/lib/components/kv-g-icon/kv-g-icon.component.spec.ts +23 -0
  152. package/src/lib/components/kv-g-icon/kv-g-icon.component.ts +10 -0
  153. package/src/lib/components/kv-g-icon/kv-g-icon.module.ts +11 -0
  154. package/src/lib/components/kv-home-card/kv-home-card.component.html +35 -0
  155. package/src/lib/components/kv-home-card/kv-home-card.component.scss +5 -0
  156. package/src/lib/components/kv-home-card/kv-home-card.component.spec.ts +23 -0
  157. package/src/lib/components/kv-home-card/kv-home-card.component.ts +33 -0
  158. package/src/lib/components/kv-home-card/kv-home-card.module.ts +18 -0
  159. package/src/lib/components/kv-icon/kv-icon.component.html +13 -0
  160. package/src/lib/components/kv-icon/kv-icon.component.scss +69 -0
  161. package/src/lib/components/kv-icon/kv-icon.component.spec.ts +28 -0
  162. package/src/lib/components/kv-icon/kv-icon.component.ts +30 -0
  163. package/src/lib/components/kv-icon/kv-icon.model.ts +3 -0
  164. package/src/lib/components/kv-icon/kv-icon.module.ts +16 -0
  165. package/src/lib/components/kv-image-upload/kv-image-upload.component.html +64 -0
  166. package/src/lib/components/kv-image-upload/kv-image-upload.component.scss +0 -0
  167. package/src/lib/components/kv-image-upload/kv-image-upload.component.ts +153 -0
  168. package/src/lib/components/kv-image-upload/kv-image-upload.module.ts +10 -0
  169. package/src/lib/components/kv-inputs/kv-check/kv-check.component.html +12 -0
  170. package/src/lib/components/kv-inputs/kv-check/kv-check.component.scss +38 -0
  171. package/src/lib/components/kv-inputs/kv-check/kv-check.component.ts +32 -0
  172. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.html +87 -0
  173. package/src/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.ts +119 -0
  174. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.html +13 -0
  175. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.scss +0 -0
  176. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.spec.ts +23 -0
  177. package/src/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.ts +16 -0
  178. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.html +18 -0
  179. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.scss +0 -0
  180. package/src/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.ts +41 -0
  181. package/src/lib/components/kv-inputs/kv-editor/config/kv-editor.config.ts +120 -0
  182. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.html +285 -0
  183. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.scss +182 -0
  184. package/src/lib/components/kv-inputs/kv-editor/kv-editor.component.ts +311 -0
  185. package/{lib/components/kv-inputs/kv-editor/kv-editor.d.ts → src/lib/components/kv-inputs/kv-editor/kv-editor.ts} +6 -6
  186. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.ts +156 -0
  187. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.ts +190 -0
  188. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.spec.ts +126 -0
  189. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.ts +84 -0
  190. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.spec.ts +176 -0
  191. package/src/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.ts +101 -0
  192. package/src/lib/components/kv-inputs/kv-editor/types/kv-editor.types.ts +36 -0
  193. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.html +37 -0
  194. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.scss +23 -0
  195. package/src/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.ts +197 -0
  196. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.html +24 -0
  197. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.scss +0 -0
  198. package/src/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.ts +35 -0
  199. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.html +23 -0
  200. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.scss +0 -0
  201. package/src/lib/components/kv-inputs/kv-input-number/kv-input-number.component.ts +61 -0
  202. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.html +33 -0
  203. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.scss +5 -0
  204. package/src/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.ts +63 -0
  205. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.html +24 -0
  206. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.scss +0 -0
  207. package/src/lib/components/kv-inputs/kv-input-password/kv-input-password.component.ts +26 -0
  208. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.html +23 -0
  209. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.scss +18 -0
  210. package/src/lib/components/kv-inputs/kv-input-text/kv-input-text.component.ts +40 -0
  211. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.html +30 -0
  212. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.scss +26 -0
  213. package/src/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.ts +38 -0
  214. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.html +53 -0
  215. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.scss +41 -0
  216. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.spec.ts +23 -0
  217. package/src/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.ts +48 -0
  218. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.html +23 -0
  219. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.scss +0 -0
  220. package/src/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.ts +40 -0
  221. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.html +24 -0
  222. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.scss +0 -0
  223. package/src/lib/components/kv-inputs/kv-input-time/kv-input-time.component.ts +27 -0
  224. package/src/lib/components/kv-inputs/kv-inputs.module.ts +100 -0
  225. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.html +87 -0
  226. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.scss +62 -0
  227. package/src/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.ts +54 -0
  228. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.html +19 -0
  229. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.scss +22 -0
  230. package/src/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.ts +63 -0
  231. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.html +26 -0
  232. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.scss +5 -0
  233. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.spec.ts +21 -0
  234. package/src/lib/components/kv-inputs/kv-select-button/kv-select-button.component.ts +30 -0
  235. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.html +28 -0
  236. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.scss +61 -0
  237. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.spec.ts +23 -0
  238. package/src/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.ts +43 -0
  239. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.html +23 -0
  240. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.scss +35 -0
  241. package/src/lib/components/kv-inputs/kv-switch/kv-switch.component.ts +54 -0
  242. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.html +68 -0
  243. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.scss +86 -0
  244. package/src/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.ts +59 -0
  245. package/src/lib/components/kv-label/kv-label.component.html +3 -0
  246. package/src/lib/components/kv-label/kv-label.component.scss +15 -0
  247. package/src/lib/components/kv-label/kv-label.component.spec.ts +23 -0
  248. package/src/lib/components/kv-label/kv-label.component.ts +14 -0
  249. package/src/lib/components/kv-label/kv-label.module.ts +17 -0
  250. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.html +25 -0
  251. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.scss +19 -0
  252. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.spec.ts +28 -0
  253. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.ts +34 -0
  254. package/src/lib/components/kv-layout/kv-layout.module.ts +44 -0
  255. package/src/lib/components/kv-layout/layout/kv-layout.component.html +535 -0
  256. package/src/lib/components/kv-layout/layout/kv-layout.component.scss +267 -0
  257. package/src/lib/components/kv-layout/layout/kv-layout.component.spec.ts +23 -0
  258. package/src/lib/components/kv-layout/layout/kv-layout.component.ts +502 -0
  259. package/src/lib/components/kv-layout/top-icons/top-icons.component.html +26 -0
  260. package/src/lib/components/kv-layout/top-icons/top-icons.component.scss +71 -0
  261. package/src/lib/components/kv-layout/top-icons/top-icons.component.spec.ts +23 -0
  262. package/src/lib/components/kv-layout/top-icons/top-icons.component.ts +26 -0
  263. package/src/lib/components/kv-loader/kv-loader.component.html +1 -0
  264. package/src/lib/components/kv-loader/kv-loader.component.ts +11 -0
  265. package/src/lib/components/kv-loader/kv-loader.module.ts +17 -0
  266. package/src/lib/components/kv-loader/kv-loader.service.ts +29 -0
  267. package/src/lib/components/kv-login/kv-login.component.html +101 -0
  268. package/src/lib/components/kv-login/kv-login.component.scss +99 -0
  269. package/src/lib/components/kv-login/kv-login.component.spec.ts +23 -0
  270. package/src/lib/components/kv-login/kv-login.component.ts +97 -0
  271. package/src/lib/components/kv-login/kv-login.module.ts +33 -0
  272. package/src/lib/components/kv-modal/kv-modal.component.html +20 -0
  273. package/src/lib/components/kv-modal/kv-modal.component.scss +37 -0
  274. package/src/lib/components/kv-modal/kv-modal.component.spec.ts +21 -0
  275. package/src/lib/components/kv-modal/kv-modal.component.ts +111 -0
  276. package/src/lib/components/kv-modal/kv-modal.module.ts +12 -0
  277. package/src/lib/components/kv-orgchart/kv-orgchart.component.html +125 -0
  278. package/src/lib/components/kv-orgchart/kv-orgchart.component.scss +73 -0
  279. package/src/lib/components/kv-orgchart/kv-orgchart.component.ts +283 -0
  280. package/src/lib/components/kv-orgchart/kv-orgchart.module.ts +31 -0
  281. package/src/lib/components/kv-page-form/kv-page-form.component.html +91 -0
  282. package/src/lib/components/kv-page-form/kv-page-form.component.scss +100 -0
  283. package/src/lib/components/kv-page-form/kv-page-form.component.spec.ts +28 -0
  284. package/src/lib/components/kv-page-form/kv-page-form.component.ts +206 -0
  285. package/src/lib/components/kv-page-form/kv-page-form.module.ts +33 -0
  286. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.html +276 -0
  287. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.scss +85 -0
  288. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.spec.ts +23 -0
  289. package/src/lib/components/kv-page-stepper/kv-page-stepper.component.ts +223 -0
  290. package/src/lib/components/kv-page-stepper/kv-page-stepper.module.ts +36 -0
  291. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +32 -0
  292. package/src/lib/components/kv-pick-list/kv-pick-list.component.scss +57 -0
  293. package/src/lib/components/kv-pick-list/kv-pick-list.component.spec.ts +26 -0
  294. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +461 -0
  295. package/src/lib/components/kv-pick-list/kv-pick-list.module.ts +24 -0
  296. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.html +38 -0
  297. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.scss +128 -0
  298. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.spec.ts +21 -0
  299. package/src/lib/components/kv-progress-bar/kv-progress-bar.component.ts +75 -0
  300. package/src/lib/components/kv-progress-bar/kv-progress-bar.module.ts +19 -0
  301. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.html +43 -0
  302. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.scss +130 -0
  303. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.spec.ts +23 -0
  304. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.ts +82 -0
  305. package/src/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.ts +18 -0
  306. package/src/lib/components/kv-report/kv-report.component.html +3 -0
  307. package/src/lib/components/kv-report/kv-report.component.scss +14 -0
  308. package/src/lib/components/kv-report/kv-report.component.spec.ts +28 -0
  309. package/src/lib/components/kv-report/kv-report.component.ts +44 -0
  310. package/src/lib/components/kv-report/kv-report.module.ts +18 -0
  311. package/src/lib/components/kv-stepper/kv-stepper.component.html +94 -0
  312. package/src/lib/components/kv-stepper/kv-stepper.component.scss +43 -0
  313. package/src/lib/components/kv-stepper/kv-stepper.component.spec.ts +23 -0
  314. package/src/lib/components/kv-stepper/kv-stepper.component.ts +73 -0
  315. package/src/lib/components/kv-stepper/kv-stepper.module.ts +27 -0
  316. package/src/lib/components/kv-steps/kv-steps.component.html +53 -0
  317. package/src/lib/components/kv-steps/kv-steps.component.scss +120 -0
  318. package/src/lib/components/kv-steps/kv-steps.component.ts +122 -0
  319. package/src/lib/components/kv-table/kv-table.component.html +655 -0
  320. package/src/lib/components/kv-table/kv-table.component.spec.ts +28 -0
  321. package/src/lib/components/kv-table/kv-table.component.ts +792 -0
  322. package/src/lib/components/kv-table/kv-table.module.ts +25 -0
  323. package/src/lib/components/kv-table-edit/kv-table-edit.component.html +913 -0
  324. package/src/lib/components/kv-table-edit/kv-table-edit.component.scss +829 -0
  325. package/src/lib/components/kv-table-edit/kv-table-edit.component.ts +425 -0
  326. package/src/lib/components/kv-table-edit/kv-table-edit.module.ts +31 -0
  327. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.html +634 -0
  328. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.scss +387 -0
  329. package/src/lib/components/kv-table-expandable/kv-table-expandable.component.ts +546 -0
  330. package/src/lib/components/kv-table-expandable/kv-table-expandable.module.ts +22 -0
  331. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.html +25 -0
  332. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.scss +0 -0
  333. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.spec.ts +23 -0
  334. package/src/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.ts +17 -0
  335. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.html +20 -0
  336. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.scss +0 -0
  337. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.spec.ts +23 -0
  338. package/src/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.ts +14 -0
  339. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.html +164 -0
  340. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.scss +80 -0
  341. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.spec.ts +23 -0
  342. package/src/lib/components/kv-table-viewer/kv-table-viewer.component.ts +183 -0
  343. package/src/lib/components/kv-tag/kv-tag.component.html +3 -0
  344. package/src/lib/components/kv-tag/kv-tag.component.scss +65 -0
  345. package/src/lib/components/kv-tag/kv-tag.component.spec.ts +23 -0
  346. package/src/lib/components/kv-tag/kv-tag.component.ts +16 -0
  347. package/src/lib/components/kv-tag/kv-tag.module.ts +18 -0
  348. package/src/lib/components/kv-tags/kv-tags.component.html +19 -0
  349. package/src/lib/components/kv-tags/kv-tags.component.scss +28 -0
  350. package/src/lib/components/kv-tags/kv-tags.component.ts +64 -0
  351. package/src/lib/components/kv-tags/kv-tags.module.ts +18 -0
  352. package/src/lib/components/kv-timeline/kv-timeline.component.html +28 -0
  353. package/src/lib/components/kv-timeline/kv-timeline.component.scss +6 -0
  354. package/src/lib/components/kv-timeline/kv-timeline.component.spec.ts +23 -0
  355. package/src/lib/components/kv-timeline/kv-timeline.component.ts +77 -0
  356. package/src/lib/components/kv-tree-table/kv-tree-table.component.html +492 -0
  357. package/src/lib/components/kv-tree-table/kv-tree-table.component.scss +187 -0
  358. package/src/lib/components/kv-tree-table/kv-tree-table.component.spec.ts +21 -0
  359. package/src/lib/components/kv-tree-table/kv-tree-table.component.ts +355 -0
  360. package/src/lib/components/kv-tree-table/kv-tree-table.module.ts +23 -0
  361. package/src/lib/components/kv-tree-view/kv-tree-view.component.html +16 -0
  362. package/src/lib/components/kv-tree-view/kv-tree-view.component.scss +19 -0
  363. package/src/lib/components/kv-tree-view/kv-tree-view.component.spec.ts +23 -0
  364. package/src/lib/components/kv-tree-view/kv-tree-view.component.ts +73 -0
  365. package/src/lib/components/kv-tree-view/kv-tree-view.module.ts +19 -0
  366. package/src/lib/components/kv-widget-card/kv-widget-card.component.html +71 -0
  367. package/src/lib/components/kv-widget-card/kv-widget-card.component.scss +27 -0
  368. package/src/lib/components/kv-widget-card/kv-widget-card.component.spec.ts +28 -0
  369. package/src/lib/components/kv-widget-card/kv-widget-card.component.ts +107 -0
  370. package/src/lib/components/kv-widget-card/kv-widget-card.module.ts +20 -0
  371. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.html +22 -0
  372. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.scss +36 -0
  373. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.spec.ts +28 -0
  374. package/src/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.ts +41 -0
  375. package/src/lib/components/kv-workspace/kv-workspace.module.ts +45 -0
  376. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.html +20 -0
  377. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.scss +0 -0
  378. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.spec.ts +28 -0
  379. package/src/lib/components/kv-workspace/logo/kv-workspace-logo.component.ts +18 -0
  380. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.html +35 -0
  381. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.scss +29 -0
  382. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.spec.ts +28 -0
  383. package/src/lib/components/kv-workspace/master/kv-workspace-master.component.ts +98 -0
  384. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.html +63 -0
  385. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.scss +62 -0
  386. package/src/lib/components/kv-workspace/workspace/kv-workspace.component.ts +91 -0
  387. package/{public-api.d.ts → src/public-api.ts} +361 -288
  388. package/tsconfig.lib.json +14 -0
  389. package/tsconfig.lib.prod.json +10 -0
  390. package/tsconfig.spec.json +14 -0
  391. package/esm2022/keevo-components.mjs +0 -5
  392. package/esm2022/lib/api/base-components/base-component-button.mjs +0 -39
  393. package/esm2022/lib/api/base-components/base-component-chart.mjs +0 -104
  394. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +0 -308
  395. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +0 -91
  396. package/esm2022/lib/api/base-components/base-component-crud.mjs +0 -80
  397. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +0 -31
  398. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +0 -238
  399. package/esm2022/lib/api/base-components/base-component-input.mjs +0 -101
  400. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +0 -174
  401. package/esm2022/lib/api/base-components/base-component-table.mjs +0 -354
  402. package/esm2022/lib/api/base-components/base-component.mjs +0 -51
  403. package/esm2022/lib/api/components/chart/chart.config.mjs +0 -2
  404. package/esm2022/lib/api/components/chart/chart.model.mjs +0 -2
  405. package/esm2022/lib/api/components/chart/orchart.config.mjs +0 -2
  406. package/esm2022/lib/api/components/chart/orchartnode.mjs +0 -2
  407. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +0 -2
  408. package/esm2022/lib/api/components/step/step.model.mjs +0 -2
  409. package/esm2022/lib/api/components/stepper/kv-stepperpanel.mjs +0 -2
  410. package/esm2022/lib/api/components/table/action-item.mjs +0 -2
  411. package/esm2022/lib/api/components/table/kv-menuitem.mjs +0 -46
  412. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +0 -2
  413. package/esm2022/lib/api/components/table/table.config.column.mjs +0 -2
  414. package/esm2022/lib/api/components/table/table.config.mjs +0 -2
  415. package/esm2022/lib/api/components/table/table.paginate.mjs +0 -10
  416. package/esm2022/lib/api/components/table/tabledit.config.mjs +0 -2
  417. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +0 -2
  418. package/esm2022/lib/api/components/tree-table/tree-table-keys.mjs +0 -2
  419. package/esm2022/lib/api/components/tree-table/tree-table.config.mjs +0 -3
  420. package/esm2022/lib/api/directives/directives.module.mjs +0 -30
  421. package/esm2022/lib/api/directives/drag/drag.directive.mjs +0 -52
  422. package/esm2022/lib/api/directives/stepper/dynamicinput.directive.mjs +0 -31
  423. package/esm2022/lib/api/directives/template/template.directive.mjs +0 -24
  424. package/esm2022/lib/api/helpers/component-providers.mjs +0 -16
  425. package/esm2022/lib/api/helpers/keevo-validators.mjs +0 -144
  426. package/esm2022/lib/api/helpers/translate-primeng.mjs +0 -23
  427. package/esm2022/lib/api/modules/primeng.module.mjs +0 -283
  428. package/esm2022/lib/api/pipes/capitalize.pipe.mjs +0 -47
  429. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +0 -25
  430. package/esm2022/lib/api/pipes/mask.pipe.mjs +0 -29
  431. package/esm2022/lib/api/pipes/pipes.module.mjs +0 -39
  432. package/esm2022/lib/api/pipes/telefone.pipe.mjs +0 -45
  433. package/esm2022/lib/api/services/base.api.service.mjs +0 -74
  434. package/esm2022/lib/api/services/breadcrumbs.service.mjs +0 -62
  435. package/esm2022/lib/api/services/chat.service.mjs +0 -37
  436. package/esm2022/lib/api/services/component.service.mjs +0 -37
  437. package/esm2022/lib/api/services/docs.service.mjs +0 -129
  438. package/esm2022/lib/api/services/form.service.mjs +0 -95
  439. package/esm2022/lib/api/services/image.cutter.service.mjs +0 -193
  440. package/esm2022/lib/api/services/imagens.service.mjs +0 -28
  441. package/esm2022/lib/api/services/notification.service.mjs +0 -69
  442. package/esm2022/lib/api/services/object.service.mjs +0 -39
  443. package/esm2022/lib/api/services/orgchart.service.mjs +0 -64
  444. package/esm2022/lib/api/services/pdf.service.mjs +0 -48
  445. package/esm2022/lib/api/types/breadcrumb.model.mjs +0 -2
  446. package/esm2022/lib/components/keevo-components.module.mjs +0 -232
  447. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +0 -142
  448. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +0 -55
  449. package/esm2022/lib/components/kv-button/kv-button.component.mjs +0 -51
  450. package/esm2022/lib/components/kv-button/kv-button.module.mjs +0 -28
  451. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +0 -25
  452. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +0 -39
  453. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +0 -17
  454. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +0 -17
  455. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +0 -39
  456. package/esm2022/lib/components/kv-card-selection/kv-card-selection.component.mjs +0 -60
  457. package/esm2022/lib/components/kv-card-selection/kv-card-selection.module.mjs +0 -31
  458. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +0 -34
  459. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +0 -28
  460. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +0 -166
  461. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +0 -32
  462. package/esm2022/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.mjs +0 -32
  463. package/esm2022/lib/components/kv-confirmation-modal/kv-confirmation-modal.module.mjs +0 -22
  464. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.component.mjs +0 -185
  465. package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.module.mjs +0 -44
  466. package/esm2022/lib/components/kv-error/kv-error.component.mjs +0 -26
  467. package/esm2022/lib/components/kv-error/kv-error.module.mjs +0 -35
  468. package/esm2022/lib/components/kv-file-upload/kv-file-upload.component.mjs +0 -191
  469. package/esm2022/lib/components/kv-file-upload/kv-file-upload.module.mjs +0 -23
  470. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.component.mjs +0 -46
  471. package/esm2022/lib/components/kv-file-viewer/kv-file-viewer.module.mjs +0 -20
  472. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.mjs +0 -68
  473. package/esm2022/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.mjs +0 -24
  474. package/esm2022/lib/components/kv-filter-card/kv-filter-card.component.mjs +0 -29
  475. package/esm2022/lib/components/kv-filter-card/kv-filter-card.module.mjs +0 -34
  476. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.component.mjs +0 -103
  477. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.module.mjs +0 -31
  478. package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.pipe.mjs +0 -30
  479. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.mjs +0 -26
  480. package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.mjs +0 -28
  481. package/esm2022/lib/components/kv-g-icon/kv-g-icon.component.mjs +0 -11
  482. package/esm2022/lib/components/kv-g-icon/kv-g-icon.module.mjs +0 -19
  483. package/esm2022/lib/components/kv-home-card/kv-home-card.component.mjs +0 -27
  484. package/esm2022/lib/components/kv-home-card/kv-home-card.module.mjs +0 -32
  485. package/esm2022/lib/components/kv-image-upload/kv-image-upload.component.mjs +0 -136
  486. package/esm2022/lib/components/kv-image-upload/kv-image-upload.module.mjs +0 -18
  487. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +0 -29
  488. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +0 -102
  489. package/esm2022/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.mjs +0 -18
  490. package/esm2022/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.mjs +0 -40
  491. package/esm2022/lib/components/kv-inputs/kv-editor/config/kv-editor.config.mjs +0 -110
  492. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +0 -266
  493. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.mjs +0 -7
  494. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.mjs +0 -135
  495. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.mjs +0 -168
  496. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.mjs +0 -78
  497. package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.mjs +0 -95
  498. package/esm2022/lib/components/kv-inputs/kv-editor/types/kv-editor.types.mjs +0 -2
  499. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +0 -168
  500. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +0 -30
  501. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +0 -59
  502. package/esm2022/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.mjs +0 -66
  503. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +0 -33
  504. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +0 -38
  505. package/esm2022/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.mjs +0 -42
  506. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +0 -50
  507. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +0 -43
  508. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +0 -24
  509. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +0 -165
  510. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +0 -60
  511. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +0 -60
  512. package/esm2022/lib/components/kv-inputs/kv-select-button/kv-select-button.component.mjs +0 -46
  513. package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +0 -37
  514. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +0 -42
  515. package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +0 -58
  516. package/esm2022/lib/components/kv-label/kv-label.component.mjs +0 -15
  517. package/esm2022/lib/components/kv-label/kv-label.module.mjs +0 -24
  518. package/esm2022/lib/components/kv-layout/dropdown-master/dropdown-master.component.mjs +0 -28
  519. package/esm2022/lib/components/kv-layout/kv-layout.module.mjs +0 -72
  520. package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +0 -433
  521. package/esm2022/lib/components/kv-layout/top-icons/top-icons.component.mjs +0 -15
  522. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +0 -16
  523. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +0 -28
  524. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +0 -29
  525. package/esm2022/lib/components/kv-login/kv-login.component.mjs +0 -62
  526. package/esm2022/lib/components/kv-login/kv-login.module.mjs +0 -47
  527. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +0 -98
  528. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +0 -20
  529. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +0 -225
  530. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +0 -59
  531. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +0 -190
  532. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +0 -41
  533. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +0 -205
  534. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.module.mjs +0 -51
  535. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +0 -386
  536. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +0 -39
  537. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +0 -58
  538. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +0 -28
  539. package/esm2022/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.mjs +0 -62
  540. package/esm2022/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.mjs +0 -28
  541. package/esm2022/lib/components/kv-report/kv-report.component.mjs +0 -44
  542. package/esm2022/lib/components/kv-report/kv-report.module.mjs +0 -24
  543. package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +0 -74
  544. package/esm2022/lib/components/kv-stepper/kv-stepper.module.mjs +0 -47
  545. package/esm2022/lib/components/kv-steps/kv-steps.component.mjs +0 -105
  546. package/esm2022/lib/components/kv-table/kv-table.component.mjs +0 -673
  547. package/esm2022/lib/components/kv-table/kv-table.module.mjs +0 -40
  548. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +0 -341
  549. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +0 -45
  550. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.component.mjs +0 -516
  551. package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.module.mjs +0 -40
  552. package/esm2022/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.mjs +0 -17
  553. package/esm2022/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.mjs +0 -18
  554. package/esm2022/lib/components/kv-table-viewer/kv-table-viewer.component.mjs +0 -184
  555. package/esm2022/lib/components/kv-tag/kv-tag.component.mjs +0 -18
  556. package/esm2022/lib/components/kv-tag/kv-tag.module.mjs +0 -24
  557. package/esm2022/lib/components/kv-tags/kv-tags.component.mjs +0 -35
  558. package/esm2022/lib/components/kv-tags/kv-tags.module.mjs +0 -27
  559. package/esm2022/lib/components/kv-timeline/kv-timeline.component.mjs +0 -71
  560. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +0 -331
  561. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +0 -39
  562. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +0 -70
  563. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +0 -28
  564. package/esm2022/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.mjs +0 -40
  565. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +0 -68
  566. package/esm2022/lib/components/kv-workspace/logo/kv-workspace-logo.component.mjs +0 -22
  567. package/esm2022/lib/components/kv-workspace/master/kv-workspace-master.component.mjs +0 -78
  568. package/esm2022/lib/components/kv-workspace/workspace/kv-workspace.component.mjs +0 -87
  569. package/esm2022/public-api.mjs +0 -293
  570. package/fesm2022/keevo-components.mjs +0 -11977
  571. package/fesm2022/keevo-components.mjs.map +0 -1
  572. package/index.d.ts +0 -5
  573. package/lib/api/base-components/base-component-button.d.ts +0 -15
  574. package/lib/api/base-components/base-component-chart.d.ts +0 -40
  575. package/lib/api/base-components/base-component-crud-form.d.ts +0 -149
  576. package/lib/api/base-components/base-component-crud-list.d.ts +0 -70
  577. package/lib/api/base-components/base-component-crud.d.ts +0 -36
  578. package/lib/api/base-components/base-component-dropdown-external.d.ts +0 -15
  579. package/lib/api/base-components/base-component-dropdown.d.ts +0 -57
  580. package/lib/api/base-components/base-component-input.d.ts +0 -33
  581. package/lib/api/base-components/base-component-multi-select.d.ts +0 -40
  582. package/lib/api/base-components/base-component-table.d.ts +0 -88
  583. package/lib/api/base-components/base-component.d.ts +0 -22
  584. package/lib/api/components/chart/chart.config.d.ts +0 -14
  585. package/lib/api/components/chart/chart.model.d.ts +0 -12
  586. package/lib/api/components/chart/orchart.config.d.ts +0 -41
  587. package/lib/api/components/chart/orchartnode.d.ts +0 -34
  588. package/lib/api/components/dropdown/filtro.combo.d.ts +0 -4
  589. package/lib/api/components/stepper/kv-stepperpanel.d.ts +0 -9
  590. package/lib/api/components/table/action-item.d.ts +0 -13
  591. package/lib/api/components/table/kv-menuitem.d.ts +0 -152
  592. package/lib/api/components/table/table-dropdown-control.d.ts +0 -6
  593. package/lib/api/components/table/table.config.column.d.ts +0 -38
  594. package/lib/api/components/table/table.config.d.ts +0 -36
  595. package/lib/api/components/table/table.paginate.d.ts +0 -10
  596. package/lib/api/components/table/tableedit.config.column.d.ts +0 -11
  597. package/lib/api/components/tree-table/tree-table-keys.d.ts +0 -12
  598. package/lib/api/components/tree-table/tree-table.config.d.ts +0 -31
  599. package/lib/api/directives/directives.module.d.ts +0 -9
  600. package/lib/api/directives/drag/drag.directive.d.ts +0 -11
  601. package/lib/api/directives/stepper/dynamicinput.directive.d.ts +0 -15
  602. package/lib/api/directives/template/template.directive.d.ts +0 -11
  603. package/lib/api/helpers/component-providers.d.ts +0 -2
  604. package/lib/api/helpers/keevo-validators.d.ts +0 -18
  605. package/lib/api/helpers/translate-primeng.d.ts +0 -4
  606. package/lib/api/modules/primeng.module.d.ts +0 -69
  607. package/lib/api/pipes/capitalize.pipe.d.ts +0 -10
  608. package/lib/api/pipes/cpfcnpj.pipe.d.ts +0 -7
  609. package/lib/api/pipes/mask.pipe.d.ts +0 -7
  610. package/lib/api/pipes/pipes.module.d.ts +0 -11
  611. package/lib/api/pipes/telefone.pipe.d.ts +0 -7
  612. package/lib/api/services/base.api.service.d.ts +0 -25
  613. package/lib/api/services/breadcrumbs.service.d.ts +0 -16
  614. package/lib/api/services/chat.service.d.ts +0 -17
  615. package/lib/api/services/component.service.d.ts +0 -11
  616. package/lib/api/services/docs.service.d.ts +0 -12
  617. package/lib/api/services/form.service.d.ts +0 -31
  618. package/lib/api/services/image.cutter.service.d.ts +0 -16
  619. package/lib/api/services/imagens.service.d.ts +0 -10
  620. package/lib/api/services/notification.service.d.ts +0 -26
  621. package/lib/api/services/object.service.d.ts +0 -9
  622. package/lib/api/services/orgchart.service.d.ts +0 -20
  623. package/lib/api/services/pdf.service.d.ts +0 -7
  624. package/lib/api/types/breadcrumb.model.d.ts +0 -5
  625. package/lib/components/keevo-components.module.d.ts +0 -38
  626. package/lib/components/kv-avatar/kv-avatar.component.d.ts +0 -36
  627. package/lib/components/kv-avatar/kv-avatar.module.d.ts +0 -15
  628. package/lib/components/kv-button/kv-button.component.d.ts +0 -24
  629. package/lib/components/kv-button/kv-button.module.d.ts +0 -9
  630. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +0 -11
  631. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +0 -19
  632. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +0 -7
  633. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +0 -7
  634. package/lib/components/kv-buttons/kv-button.module.d.ts +0 -11
  635. package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +0 -25
  636. package/lib/components/kv-card-selection/kv-card-selection.module.d.ts +0 -10
  637. package/lib/components/kv-carousel/kv-carousel.component.d.ts +0 -17
  638. package/lib/components/kv-carousel/kv-carousel.module.d.ts +0 -9
  639. package/lib/components/kv-chart/kv-chart.component.d.ts +0 -57
  640. package/lib/components/kv-chart/kv-chart.module.d.ts +0 -10
  641. package/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.d.ts +0 -12
  642. package/lib/components/kv-confirmation-modal/kv-confirmation-modal.module.d.ts +0 -10
  643. package/lib/components/kv-content-viewer/kv-content-viewer.component.d.ts +0 -56
  644. package/lib/components/kv-content-viewer/kv-content-viewer.module.d.ts +0 -14
  645. package/lib/components/kv-error/kv-error.component.d.ts +0 -12
  646. package/lib/components/kv-error/kv-error.module.d.ts +0 -10
  647. package/lib/components/kv-file-upload/kv-file-upload.component.d.ts +0 -35
  648. package/lib/components/kv-file-upload/kv-file-upload.module.d.ts +0 -10
  649. package/lib/components/kv-file-viewer/kv-file-viewer.component.d.ts +0 -21
  650. package/lib/components/kv-file-viewer/kv-file-viewer.module.d.ts +0 -8
  651. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component.d.ts +0 -24
  652. package/lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module.d.ts +0 -9
  653. package/lib/components/kv-filter-card/kv-filter-card.component.d.ts +0 -13
  654. package/lib/components/kv-filter-card/kv-filter-card.module.d.ts +0 -10
  655. package/lib/components/kv-filter-cards/kv-filter-cards.component.d.ts +0 -32
  656. package/lib/components/kv-filter-cards/kv-filter-cards.module.d.ts +0 -9
  657. package/lib/components/kv-filter-cards/kv-filter-cards.pipe.d.ts +0 -7
  658. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.d.ts +0 -10
  659. package/lib/components/kv-filter-fieldset/kv-filter-fieldset.module.d.ts +0 -9
  660. package/lib/components/kv-g-icon/kv-g-icon.component.d.ts +0 -5
  661. package/lib/components/kv-g-icon/kv-g-icon.module.d.ts +0 -9
  662. package/lib/components/kv-home-card/kv-home-card.component.d.ts +0 -24
  663. package/lib/components/kv-home-card/kv-home-card.module.d.ts +0 -11
  664. package/lib/components/kv-image-upload/kv-image-upload.component.d.ts +0 -34
  665. package/lib/components/kv-image-upload/kv-image-upload.module.d.ts +0 -8
  666. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +0 -12
  667. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +0 -33
  668. package/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.d.ts +0 -8
  669. package/lib/components/kv-inputs/kv-editor/components/kv-report-modal/kv-report-modal.component.d.ts +0 -14
  670. package/lib/components/kv-inputs/kv-editor/config/kv-editor.config.d.ts +0 -55
  671. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +0 -69
  672. package/lib/components/kv-inputs/kv-editor/services/kv-editor-mention.service.d.ts +0 -41
  673. package/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.d.ts +0 -41
  674. package/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.d.ts +0 -28
  675. package/lib/components/kv-inputs/kv-editor/services/kv-editor-relatorio.service.d.ts +0 -45
  676. package/lib/components/kv-inputs/kv-editor/types/kv-editor.types.d.ts +0 -32
  677. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +0 -34
  678. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +0 -12
  679. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +0 -19
  680. package/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.d.ts +0 -21
  681. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +0 -13
  682. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +0 -11
  683. package/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.d.ts +0 -13
  684. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +0 -18
  685. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +0 -16
  686. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +0 -10
  687. package/lib/components/kv-inputs/kv-inputs.module.d.ts +0 -38
  688. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +0 -20
  689. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +0 -20
  690. package/lib/components/kv-inputs/kv-select-button/kv-select-button.component.d.ts +0 -19
  691. package/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.d.ts +0 -26
  692. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +0 -16
  693. package/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.d.ts +0 -25
  694. package/lib/components/kv-label/kv-label.component.d.ts +0 -7
  695. package/lib/components/kv-label/kv-label.module.d.ts +0 -8
  696. package/lib/components/kv-layout/dropdown-master/dropdown-master.component.d.ts +0 -12
  697. package/lib/components/kv-layout/kv-layout.module.d.ts +0 -18
  698. package/lib/components/kv-layout/layout/kv-layout.component.d.ts +0 -156
  699. package/lib/components/kv-layout/top-icons/top-icons.component.d.ts +0 -16
  700. package/lib/components/kv-loader/kv-loader.component.d.ts +0 -7
  701. package/lib/components/kv-loader/kv-loader.module.d.ts +0 -9
  702. package/lib/components/kv-loader/kv-loader.service.d.ts +0 -10
  703. package/lib/components/kv-login/kv-login.component.d.ts +0 -32
  704. package/lib/components/kv-login/kv-login.module.d.ts +0 -13
  705. package/lib/components/kv-modal/kv-modal.component.d.ts +0 -27
  706. package/lib/components/kv-modal/kv-modal.module.d.ts +0 -10
  707. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +0 -45
  708. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +0 -17
  709. package/lib/components/kv-page-form/kv-page-form.component.d.ts +0 -98
  710. package/lib/components/kv-page-form/kv-page-form.module.d.ts +0 -12
  711. package/lib/components/kv-page-stepper/kv-page-stepper.component.d.ts +0 -84
  712. package/lib/components/kv-page-stepper/kv-page-stepper.module.d.ts +0 -14
  713. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +0 -70
  714. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +0 -11
  715. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +0 -67
  716. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +0 -9
  717. package/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.component.d.ts +0 -71
  718. package/lib/components/kv-progress-bar-alternative/kv-progress-bar-alternative.module.d.ts +0 -9
  719. package/lib/components/kv-report/kv-report.component.d.ts +0 -18
  720. package/lib/components/kv-report/kv-report.module.d.ts +0 -8
  721. package/lib/components/kv-stepper/kv-stepper.component.d.ts +0 -32
  722. package/lib/components/kv-stepper/kv-stepper.module.d.ts +0 -13
  723. package/lib/components/kv-steps/kv-steps.component.d.ts +0 -21
  724. package/lib/components/kv-table/kv-table.component.d.ts +0 -154
  725. package/lib/components/kv-table/kv-table.module.d.ts +0 -12
  726. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +0 -66
  727. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +0 -15
  728. package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +0 -119
  729. package/lib/components/kv-table-expandable/kv-table-expandable.module.d.ts +0 -13
  730. package/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.d.ts +0 -8
  731. package/lib/components/kv-table-viewer/components/actions-row-menu/actions-row-menu.component.d.ts +0 -7
  732. package/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +0 -72
  733. package/lib/components/kv-tag/kv-tag.component.d.ts +0 -7
  734. package/lib/components/kv-tag/kv-tag.module.d.ts +0 -8
  735. package/lib/components/kv-tags/kv-tags.component.d.ts +0 -31
  736. package/lib/components/kv-tags/kv-tags.module.d.ts +0 -8
  737. package/lib/components/kv-timeline/kv-timeline.component.d.ts +0 -18
  738. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +0 -86
  739. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +0 -11
  740. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +0 -21
  741. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +0 -9
  742. package/lib/components/kv-workspace/empresa/kv-workspace-empresa.component.d.ts +0 -14
  743. package/lib/components/kv-workspace/kv-workspace.module.d.ts +0 -19
  744. package/lib/components/kv-workspace/logo/kv-workspace-logo.component.d.ts +0 -11
  745. package/lib/components/kv-workspace/master/kv-workspace-master.component.d.ts +0 -25
  746. package/lib/components/kv-workspace/workspace/kv-workspace.component.d.ts +0 -37
@@ -1,50 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentProviders } from '../../../api/helpers/component-providers';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "../../../api/services/component.service";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../../kv-error/kv-error.component";
8
- import * as i4 from "../../kv-label/kv-label.component";
9
- import * as i5 from "primeng/tooltip";
10
- import * as i6 from "primeng/checkbox";
11
- import * as i7 from "primeng/inputmask";
12
- import * as i8 from "primeng/inputtext";
13
- export class KvInputTextCheckboxComponent extends BaseComponentInput {
14
- constructor(componentService) {
15
- super(componentService);
16
- this.checkBoxEmit = new EventEmitter();
17
- this.disabledCheckbox = false;
18
- this.type = 'text';
19
- this._checkBoxValue = false;
20
- }
21
- set checkBoxValueInput(value) {
22
- this._checkBoxValue = value;
23
- }
24
- set checkBoxValue(value) {
25
- this._checkBoxValue = value;
26
- this.checkBoxEmit.emit(this._checkBoxValue);
27
- }
28
- get checkBoxValue() {
29
- return this._checkBoxValue;
30
- }
31
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTextCheckboxComponent, deps: [{ token: i1.ComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
32
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvInputTextCheckboxComponent, selector: "kv-input-text-checkbox", inputs: { tooltipCheckbox: "tooltipCheckbox", disabledCheckbox: "disabledCheckbox", mask: "mask", type: "type", checkBoxValueInput: "checkBoxValueInput" }, outputs: { checkBoxEmit: "checkBoxEmit" }, providers: ComponentProviders(KvInputTextCheckboxComponent), usesInheritance: true, ngImport: i0, template: "<kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && label + (showAsterisk ? '*' : '')\"\r\n/>\r\n<div class=\"p-inputgroup\">\r\n <span\r\n class=\"p-inputgroup-addon flex align-items-center justify-content-center\"\r\n ><p-checkbox\r\n [(ngModel)]=\"checkBoxValue\"\r\n [binary]=\"true\"\r\n [pTooltip]=\"tooltipCheckbox\"\r\n [disabled]=\"disabledCheckbox\"\r\n ></p-checkbox>\r\n </span>\r\n@if(mask){\r\n <p-inputMask\r\n [class]=\"baseInputClass\"\r\n styleClass=\"inputs w-full\"\r\n class=\"w-full mask\"\r\n [inputId]=\"componentId\"\r\n [disabled]=\"disabled\"\r\n [placeholder]=\"placeholder\"\r\n [(ngModel)]=\"value\"\r\n [mask]=\"mask\"\r\n (onBlur)=\"onInputBlur($event)\"\r\n (onInput)=\"onInputInput($event)\"\r\n [autocomplete]=\"autocomplete\"\r\n [unmask]=\"true\"\r\n >\r\n </p-inputMask>\r\n}\r\n@else {\r\n <span class=\"p-float-label\">\r\n <input\r\n [type]=\"type\"\r\n pInputText\r\n [class]=\"baseInputClass\"\r\n [disabled]=\"disabled\"\r\n [placeholder]=\"placeholder\"\r\n [id]=\"componentId\"\r\n [(ngModel)]=\"value\"\r\n (blur)=\"onInputBlur($event)\"\r\n class=\"w-full\"\r\n style=\"height: 1.875rem\"\r\n [maxlength]=\"maxLength\"\r\n />\r\n </span>\r\n}\r\n</div>\r\n\r\n\r\n\r\n<kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n", styles: [".p-inputgroup-addon{height:1.875rem;width:1.875rem;min-width:1.875rem}::ng-deep .p-checkbox{width:1.125rem;height:1.125rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}::ng-deep .mask .p-inputmask{border-top-left-radius:0!important;border-bottom-left-radius:0!important}\n", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"], dependencies: [{ kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.KvErrorComponent, selector: "kv-error", inputs: ["formControl", "hasError"] }, { kind: "component", type: i4.KvLabelComponent, selector: "kv-label", inputs: ["componentId", "label"] }, { kind: "directive", type: i5.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "component", type: i6.Checkbox, selector: "p-checkbox", inputs: ["value", "name", "disabled", "binary", "label", "ariaLabelledBy", "ariaLabel", "tabindex", "inputId", "style", "styleClass", "labelStyleClass", "formControl", "checkboxIcon", "readonly", "required", "autofocus", "trueValue", "falseValue", "variant"], outputs: ["onChange", "onFocus", "onBlur"] }, { kind: "component", type: i7.InputMask, selector: "p-inputMask", inputs: ["type", "slotChar", "autoClear", "showClear", "style", "inputId", "styleClass", "placeholder", "size", "maxlength", "tabindex", "title", "variant", "ariaLabel", "ariaLabelledBy", "ariaRequired", "disabled", "readonly", "unmask", "name", "required", "characterPattern", "autofocus", "autoFocus", "autocomplete", "keepBuffer", "mask"], outputs: ["onComplete", "onFocus", "onBlur", "onInput", "onKeydown", "onClear"] }, { kind: "directive", type: i8.InputText, selector: "[pInputText]", inputs: ["variant"] }] }); }
33
- }
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTextCheckboxComponent, decorators: [{
35
- type: Component,
36
- args: [{ selector: 'kv-input-text-checkbox', providers: ComponentProviders(KvInputTextCheckboxComponent), template: "<kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && label + (showAsterisk ? '*' : '')\"\r\n/>\r\n<div class=\"p-inputgroup\">\r\n <span\r\n class=\"p-inputgroup-addon flex align-items-center justify-content-center\"\r\n ><p-checkbox\r\n [(ngModel)]=\"checkBoxValue\"\r\n [binary]=\"true\"\r\n [pTooltip]=\"tooltipCheckbox\"\r\n [disabled]=\"disabledCheckbox\"\r\n ></p-checkbox>\r\n </span>\r\n@if(mask){\r\n <p-inputMask\r\n [class]=\"baseInputClass\"\r\n styleClass=\"inputs w-full\"\r\n class=\"w-full mask\"\r\n [inputId]=\"componentId\"\r\n [disabled]=\"disabled\"\r\n [placeholder]=\"placeholder\"\r\n [(ngModel)]=\"value\"\r\n [mask]=\"mask\"\r\n (onBlur)=\"onInputBlur($event)\"\r\n (onInput)=\"onInputInput($event)\"\r\n [autocomplete]=\"autocomplete\"\r\n [unmask]=\"true\"\r\n >\r\n </p-inputMask>\r\n}\r\n@else {\r\n <span class=\"p-float-label\">\r\n <input\r\n [type]=\"type\"\r\n pInputText\r\n [class]=\"baseInputClass\"\r\n [disabled]=\"disabled\"\r\n [placeholder]=\"placeholder\"\r\n [id]=\"componentId\"\r\n [(ngModel)]=\"value\"\r\n (blur)=\"onInputBlur($event)\"\r\n class=\"w-full\"\r\n style=\"height: 1.875rem\"\r\n [maxlength]=\"maxLength\"\r\n />\r\n </span>\r\n}\r\n</div>\r\n\r\n\r\n\r\n<kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n", styles: [".p-inputgroup-addon{height:1.875rem;width:1.875rem;min-width:1.875rem}::ng-deep .p-checkbox{width:1.125rem;height:1.125rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}::ng-deep .mask .p-inputmask{border-top-left-radius:0!important;border-bottom-left-radius:0!important}\n", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"] }]
37
- }], ctorParameters: () => [{ type: i1.ComponentService }], propDecorators: { checkBoxEmit: [{
38
- type: Output
39
- }], tooltipCheckbox: [{
40
- type: Input
41
- }], disabledCheckbox: [{
42
- type: Input
43
- }], mask: [{
44
- type: Input
45
- }], type: [{
46
- type: Input
47
- }], checkBoxValueInput: [{
48
- type: Input
49
- }] } });
50
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtaW5wdXQtdGV4dC1jaGVja2JveC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZWV2by1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9rdi1pbnB1dHMva3YtaW5wdXQtdGV4dC1jaGVja2JveC9rdi1pbnB1dC10ZXh0LWNoZWNrYm94LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1pbnB1dC10ZXh0LWNoZWNrYm94L2t2LWlucHV0LXRleHQtY2hlY2tib3guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUVMLE1BQU0sRUFDUCxNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUN2RixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQzs7Ozs7Ozs7OztBQVM5RSxNQUFNLE9BQU8sNEJBQTZCLFNBQVEsa0JBQTBCO0lBQzFFLFlBQVksZ0JBQWtDO1FBQzVDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBR1AsaUJBQVksR0FBMEIsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUc1RSxxQkFBZ0IsR0FBWSxLQUFLLENBQUM7UUFJbEMsU0FBSSxHQUFXLE1BQU0sQ0FBQztRQUV2QixtQkFBYyxHQUFZLEtBQUssQ0FBQztJQVh4QyxDQUFDO0lBYUQsSUFBYSxrQkFBa0IsQ0FBQyxLQUFjO1FBQzVDLElBQUksQ0FBQyxjQUFjLEdBQUcsS0FBSyxDQUFDO0lBQzlCLENBQUM7SUFFRCxJQUFJLGFBQWEsQ0FBQyxLQUFjO1FBQzlCLElBQUksQ0FBQyxjQUFjLEdBQUcsS0FBSyxDQUFDO1FBQzVCLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQztJQUM5QyxDQUFDO0lBRUQsSUFBSSxhQUFhO1FBQ2YsT0FBTyxJQUFJLENBQUMsY0FBYyxDQUFDO0lBQzdCLENBQUM7OEdBM0JVLDRCQUE0QjtrR0FBNUIsNEJBQTRCLHdQQUY1QixrQkFBa0IsQ0FBQyw0QkFBNEIsQ0FBQyxpRENoQjdELDY0Q0FxREE7OzJGRG5DYSw0QkFBNEI7a0JBTnhDLFNBQVM7K0JBQ0Usd0JBQXdCLGFBR3ZCLGtCQUFrQiw4QkFBOEI7cUZBT3hDLFlBQVk7c0JBQTlCLE1BQU07Z0JBRUUsZUFBZTtzQkFBdkIsS0FBSztnQkFDRyxnQkFBZ0I7c0JBQXhCLEtBQUs7Z0JBRUcsSUFBSTtzQkFBWixLQUFLO2dCQUVHLElBQUk7c0JBQVosS0FBSztnQkFJTyxrQkFBa0I7c0JBQTlCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG4gIENvbXBvbmVudCxcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgSW5wdXQsXHJcbiAgT25Jbml0LFxyXG4gIE91dHB1dFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHsgQmFzZUNvbXBvbmVudElucHV0IH0gZnJvbSAnLi4vLi4vLi4vYXBpL2Jhc2UtY29tcG9uZW50cy9iYXNlLWNvbXBvbmVudC1pbnB1dCc7XHJcbmltcG9ydCB7IENvbXBvbmVudFByb3ZpZGVycyB9IGZyb20gJy4uLy4uLy4uL2FwaS9oZWxwZXJzL2NvbXBvbmVudC1wcm92aWRlcnMnO1xyXG5pbXBvcnQgeyBDb21wb25lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vYXBpL3NlcnZpY2VzL2NvbXBvbmVudC5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAna3YtaW5wdXQtdGV4dC1jaGVja2JveCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2t2LWlucHV0LXRleHQtY2hlY2tib3guY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2t2LWlucHV0LXRleHQtY2hlY2tib3guY29tcG9uZW50LnNjc3MnLCAnLi4vLi4va2Vldm8tY29tcG9uZW50cy1zdHlsZXMuc2NzcyddLFxyXG4gIHByb3ZpZGVyczogQ29tcG9uZW50UHJvdmlkZXJzKEt2SW5wdXRUZXh0Q2hlY2tib3hDb21wb25lbnQpLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgS3ZJbnB1dFRleHRDaGVja2JveENvbXBvbmVudCBleHRlbmRzIEJhc2VDb21wb25lbnRJbnB1dDxzdHJpbmc+IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBjb25zdHJ1Y3Rvcihjb21wb25lbnRTZXJ2aWNlOiBDb21wb25lbnRTZXJ2aWNlKSB7XHJcbiAgICBzdXBlcihjb21wb25lbnRTZXJ2aWNlKTtcclxuICB9XHJcblxyXG4gIEBPdXRwdXQoKSByZWFkb25seSBjaGVja0JveEVtaXQ6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcclxuXHJcbiAgQElucHV0KCkgdG9vbHRpcENoZWNrYm94ITogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGRpc2FibGVkQ2hlY2tib3g6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQElucHV0KCkgbWFzayE6IHN0cmluZztcclxuXHJcbiAgQElucHV0KCkgdHlwZTogc3RyaW5nID0gJ3RleHQnO1xyXG5cclxuICBwcml2YXRlIF9jaGVja0JveFZhbHVlOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIHNldCBjaGVja0JveFZhbHVlSW5wdXQodmFsdWU6IGJvb2xlYW4pIHtcclxuICAgIHRoaXMuX2NoZWNrQm94VmFsdWUgPSB2YWx1ZTtcclxuICB9XHJcblxyXG4gIHNldCBjaGVja0JveFZhbHVlKHZhbHVlOiBib29sZWFuKSB7XHJcbiAgICB0aGlzLl9jaGVja0JveFZhbHVlID0gdmFsdWU7XHJcbiAgICB0aGlzLmNoZWNrQm94RW1pdC5lbWl0KHRoaXMuX2NoZWNrQm94VmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgZ2V0IGNoZWNrQm94VmFsdWUoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy5fY2hlY2tCb3hWYWx1ZTtcclxuICB9XHJcblxyXG59IiwiPGt2LWxhYmVsXHJcbiAgW2NvbXBvbmVudElkXT1cImNvbXBvbmVudElkXCJcclxuICBbbGFiZWxdPVwibGFiZWwgJiYgbGFiZWwgKyAoc2hvd0FzdGVyaXNrID8gJyonIDogJycpXCJcclxuLz5cclxuPGRpdiBjbGFzcz1cInAtaW5wdXRncm91cFwiPlxyXG4gIDxzcGFuXHJcbiAgICBjbGFzcz1cInAtaW5wdXRncm91cC1hZGRvbiBmbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcclxuICAgID48cC1jaGVja2JveFxyXG4gICAgICBbKG5nTW9kZWwpXT1cImNoZWNrQm94VmFsdWVcIlxyXG4gICAgICBbYmluYXJ5XT1cInRydWVcIlxyXG4gICAgICBbcFRvb2x0aXBdPVwidG9vbHRpcENoZWNrYm94XCJcclxuICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkQ2hlY2tib3hcIlxyXG4gICAgPjwvcC1jaGVja2JveD5cclxuICA8L3NwYW4+XHJcbkBpZihtYXNrKXtcclxuICA8cC1pbnB1dE1hc2tcclxuICBbY2xhc3NdPVwiYmFzZUlucHV0Q2xhc3NcIlxyXG4gIHN0eWxlQ2xhc3M9XCJpbnB1dHMgdy1mdWxsXCJcclxuICBjbGFzcz1cInctZnVsbCBtYXNrXCJcclxuICBbaW5wdXRJZF09XCJjb21wb25lbnRJZFwiXHJcbiAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcclxuICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxyXG4gIFsobmdNb2RlbCldPVwidmFsdWVcIlxyXG4gIFttYXNrXT1cIm1hc2tcIlxyXG4gIChvbkJsdXIpPVwib25JbnB1dEJsdXIoJGV2ZW50KVwiXHJcbiAgKG9uSW5wdXQpPVwib25JbnB1dElucHV0KCRldmVudClcIlxyXG4gIFthdXRvY29tcGxldGVdPVwiYXV0b2NvbXBsZXRlXCJcclxuICBbdW5tYXNrXT1cInRydWVcIlxyXG4gID5cclxuICA8L3AtaW5wdXRNYXNrPlxyXG59XHJcbkBlbHNlIHtcclxuICA8c3BhbiBjbGFzcz1cInAtZmxvYXQtbGFiZWxcIj5cclxuICAgIDxpbnB1dFxyXG4gICAgICBbdHlwZV09XCJ0eXBlXCJcclxuICAgICAgcElucHV0VGV4dFxyXG4gICAgICBbY2xhc3NdPVwiYmFzZUlucHV0Q2xhc3NcIlxyXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxyXG4gICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxyXG4gICAgICBbaWRdPVwiY29tcG9uZW50SWRcIlxyXG4gICAgICBbKG5nTW9kZWwpXT1cInZhbHVlXCJcclxuICAgICAgKGJsdXIpPVwib25JbnB1dEJsdXIoJGV2ZW50KVwiXHJcbiAgICAgIGNsYXNzPVwidy1mdWxsXCJcclxuICAgICAgc3R5bGU9XCJoZWlnaHQ6IDEuODc1cmVtXCJcclxuICAgICAgW21heGxlbmd0aF09XCJtYXhMZW5ndGhcIlxyXG4gICAgLz5cclxuICA8L3NwYW4+XHJcbn1cclxuPC9kaXY+XHJcblxyXG5cclxuXHJcbjxrdi1lcnJvciBbaGFzRXJyb3JdPVwiaGFzQ29udHJvbEVycm9yKClcIj57eyBlcnJvTWVzc2FnZSgpIH19PC9rdi1lcnJvcj5cclxuIl19
@@ -1,43 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentProviders } from '../../../api/helpers/component-providers';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "../../../api/services/component.service";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../../kv-error/kv-error.component";
8
- import * as i4 from "../../kv-label/kv-label.component";
9
- import * as i5 from "primeng/inputtextarea";
10
- export class KvInputTextareaComponent extends BaseComponentInput {
11
- constructor(componentService) {
12
- super(componentService);
13
- this.multiline = false;
14
- this.rows = 2;
15
- this.cols = 20;
16
- this.autoResize = false;
17
- this.maxValueLength = 0;
18
- this.counterValueLength = 0;
19
- }
20
- ngOnInit() {
21
- super.ngOnInit();
22
- this.formControl?.valueChanges.subscribe((value) => {
23
- this.counterValueLength = value?.length;
24
- });
25
- }
26
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTextareaComponent, deps: [{ token: i1.ComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
27
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: KvInputTextareaComponent, selector: "kv-input-textarea", inputs: { multiline: "multiline", rows: "rows", cols: "cols", autoResize: "autoResize", maxValueLength: "maxValueLength" }, providers: ComponentProviders(KvInputTextareaComponent), usesInheritance: true, ngImport: i0, template: "<span>\r\n\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n <textarea\r\n pInputTextarea\r\n [autoResize]=\"autoResize\"\r\n [class]=\"baseInputClass\"\r\n [cols]=\"cols\"\r\n [disabled]=\"disabled\"\r\n [id]=\"componentId\"\r\n [rows]=\"rows\"\r\n [(ngModel)]=\"value\"\r\n (blur)=\"onInputBlur($event)\"\r\n >\r\n </textarea>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>", styles: ["", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"], dependencies: [{ kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.KvErrorComponent, selector: "kv-error", inputs: ["formControl", "hasError"] }, { kind: "component", type: i4.KvLabelComponent, selector: "kv-label", inputs: ["componentId", "label"] }, { kind: "directive", type: i5.InputTextarea, selector: "[pInputTextarea]", inputs: ["autoResize", "variant"], outputs: ["onResize"] }] }); }
28
- }
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTextareaComponent, decorators: [{
30
- type: Component,
31
- args: [{ selector: 'kv-input-textarea', providers: ComponentProviders(KvInputTextareaComponent), template: "<span>\r\n\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n <textarea\r\n pInputTextarea\r\n [autoResize]=\"autoResize\"\r\n [class]=\"baseInputClass\"\r\n [cols]=\"cols\"\r\n [disabled]=\"disabled\"\r\n [id]=\"componentId\"\r\n [rows]=\"rows\"\r\n [(ngModel)]=\"value\"\r\n (blur)=\"onInputBlur($event)\"\r\n >\r\n </textarea>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"] }]
32
- }], ctorParameters: () => [{ type: i1.ComponentService }], propDecorators: { multiline: [{
33
- type: Input
34
- }], rows: [{
35
- type: Input
36
- }], cols: [{
37
- type: Input
38
- }], autoResize: [{
39
- type: Input
40
- }], maxValueLength: [{
41
- type: Input
42
- }] } });
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtaW5wdXQtdGV4dGFyZWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtaW5wdXRzL2t2LWlucHV0LXRleHRhcmVhL2t2LWlucHV0LXRleHRhcmVhLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1pbnB1dC10ZXh0YXJlYS9rdi1pbnB1dC10ZXh0YXJlYS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFFTixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUN2RixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQzs7Ozs7OztBQVk5RSxNQUFNLE9BQU8sd0JBQXlCLFNBQVEsa0JBQTBCO0lBU3RFLFlBQVksZ0JBQWtDO1FBQzVDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBVGpCLGNBQVMsR0FBWSxLQUFLLENBQUM7UUFDM0IsU0FBSSxHQUFXLENBQUMsQ0FBQztRQUNqQixTQUFJLEdBQVcsRUFBRSxDQUFDO1FBQ2xCLGVBQVUsR0FBWSxLQUFLLENBQUM7UUFDNUIsbUJBQWMsR0FBVyxDQUFDLENBQUM7UUFFcEMsdUJBQWtCLEdBQVcsQ0FBQyxDQUFDO0lBSS9CLENBQUM7SUFFUSxRQUFRO1FBQ2YsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBRWpCLElBQUksQ0FBQyxXQUFXLEVBQUUsWUFBWSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQVUsRUFBRSxFQUFFO1lBQ3RELElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLEVBQUUsTUFBTSxDQUFDO1FBQzFDLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs4R0FuQlUsd0JBQXdCO2tHQUF4Qix3QkFBd0Isd0tBRnhCLGtCQUFrQixDQUFDLHdCQUF3QixDQUFDLGlEQ2pCekQsMGtCQXNCeUI7OzJGREhaLHdCQUF3QjtrQkFUcEMsU0FBUzsrQkFDRSxtQkFBbUIsYUFNbEIsa0JBQWtCLDBCQUEwQjtxRkFHOUMsU0FBUztzQkFBakIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csY0FBYztzQkFBdEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XHJcbiAgQ29tcG9uZW50LFxyXG4gIElucHV0LFxyXG4gIE9uSW5pdFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHsgQmFzZUNvbXBvbmVudElucHV0IH0gZnJvbSAnLi4vLi4vLi4vYXBpL2Jhc2UtY29tcG9uZW50cy9iYXNlLWNvbXBvbmVudC1pbnB1dCc7XHJcbmltcG9ydCB7IENvbXBvbmVudFByb3ZpZGVycyB9IGZyb20gJy4uLy4uLy4uL2FwaS9oZWxwZXJzL2NvbXBvbmVudC1wcm92aWRlcnMnO1xyXG5pbXBvcnQgeyBDb21wb25lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vYXBpL3NlcnZpY2VzL2NvbXBvbmVudC5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAna3YtaW5wdXQtdGV4dGFyZWEnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9rdi1pbnB1dC10ZXh0YXJlYS5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbXHJcbiAgICAnLi9rdi1pbnB1dC10ZXh0YXJlYS5jb21wb25lbnQuc2NzcycsXHJcbiAgICAnLi4vLi4va2Vldm8tY29tcG9uZW50cy1zdHlsZXMuc2NzcydcclxuICBdLFxyXG4gIHByb3ZpZGVyczogQ29tcG9uZW50UHJvdmlkZXJzKEt2SW5wdXRUZXh0YXJlYUNvbXBvbmVudCksXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBLdklucHV0VGV4dGFyZWFDb21wb25lbnQgZXh0ZW5kcyBCYXNlQ29tcG9uZW50SW5wdXQ8c3RyaW5nPiBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgbXVsdGlsaW5lOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgcm93czogbnVtYmVyID0gMjtcclxuICBASW5wdXQoKSBjb2xzOiBudW1iZXIgPSAyMDtcclxuICBASW5wdXQoKSBhdXRvUmVzaXplOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgbWF4VmFsdWVMZW5ndGg6IG51bWJlciA9IDA7XHJcblxyXG4gIGNvdW50ZXJWYWx1ZUxlbmd0aDogbnVtYmVyID0gMDtcclxuXHJcbiAgY29uc3RydWN0b3IoY29tcG9uZW50U2VydmljZTogQ29tcG9uZW50U2VydmljZSkge1xyXG4gICAgc3VwZXIoY29tcG9uZW50U2VydmljZSk7XHJcbiAgfVxyXG5cclxuICBvdmVycmlkZSBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHN1cGVyLm5nT25Jbml0KCk7XHJcblxyXG4gICAgdGhpcy5mb3JtQ29udHJvbD8udmFsdWVDaGFuZ2VzLnN1YnNjcmliZSgodmFsdWU6IGFueSkgPT4ge1xyXG4gICAgICB0aGlzLmNvdW50ZXJWYWx1ZUxlbmd0aCA9IHZhbHVlPy5sZW5ndGg7XHJcbiAgICB9KTtcclxuICB9XHJcbn1cclxuIiwiPHNwYW4+XHJcblxyXG4gIDxrdi1sYWJlbFxyXG4gICAgW2NvbXBvbmVudElkXT1cImNvbXBvbmVudElkXCJcclxuICAgIFtsYWJlbF09XCJsYWJlbFwiXHJcbiAgICBbbGFiZWxdPVwibGFiZWwgJiYgKGxhYmVsICsgKHNob3dBc3RlcmlzayA/ICcqJyA6ICcnKSlcIlxyXG4gIC8+XHJcbiAgPHRleHRhcmVhXHJcbiAgICBwSW5wdXRUZXh0YXJlYVxyXG4gICAgW2F1dG9SZXNpemVdPVwiYXV0b1Jlc2l6ZVwiXHJcbiAgICBbY2xhc3NdPVwiYmFzZUlucHV0Q2xhc3NcIlxyXG4gICAgW2NvbHNdPVwiY29sc1wiXHJcbiAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxyXG4gICAgW2lkXT1cImNvbXBvbmVudElkXCJcclxuICAgIFtyb3dzXT1cInJvd3NcIlxyXG4gICAgWyhuZ01vZGVsKV09XCJ2YWx1ZVwiXHJcbiAgICAoYmx1cik9XCJvbklucHV0Qmx1cigkZXZlbnQpXCJcclxuICA+XHJcbiAgPC90ZXh0YXJlYT5cclxuXHJcbiAgPGt2LWVycm9yIFtoYXNFcnJvcl09XCJoYXNDb250cm9sRXJyb3IoKVwiPnt7IGVycm9NZXNzYWdlKCkgfX08L2t2LWVycm9yPlxyXG48L3NwYW4+XHJcbjxuZy1jb250ZW50PjwvbmctY29udGVudD4iXX0=
@@ -1,24 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentProviders } from '../../../api/helpers/component-providers';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "../../../api/services/component.service";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../../kv-error/kv-error.component";
8
- import * as i4 from "../../kv-label/kv-label.component";
9
- import * as i5 from "primeng/calendar";
10
- export class KvInputTimeComponent extends BaseComponentInput {
11
- constructor(componentService) {
12
- super(componentService);
13
- this.showIcon = true;
14
- }
15
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTimeComponent, deps: [{ token: i1.ComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
16
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: KvInputTimeComponent, selector: "kv-input-time", inputs: { showIcon: "showIcon" }, providers: ComponentProviders(KvInputTimeComponent), usesInheritance: true, ngImport: i0, template: "<span>\r\n\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n <p-calendar\r\n appendTo=\"body\"\r\n [class]=\"baseInputClass\"\r\n [id]=\"componentId\"\r\n [(ngModel)]=\"value\"\r\n [disabled]=\"disabled\"\r\n [showIcon]=\"showIcon\"\r\n [icon]=\"'pi pi-clock'\"\r\n styleClass=\"inputs\"\r\n [showTime]=\"true\"\r\n [timeOnly]=\"true\"\r\n (onBlur)=\"onInputBlur($event)\"\r\n >\r\n </p-calendar>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>", styles: ["", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"], dependencies: [{ kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.KvErrorComponent, selector: "kv-error", inputs: ["formControl", "hasError"] }, { kind: "component", type: i4.KvLabelComponent, selector: "kv-label", inputs: ["componentId", "label"] }, { kind: "component", type: i5.Calendar, selector: "p-calendar", inputs: ["iconDisplay", "style", "styleClass", "inputStyle", "inputId", "name", "inputStyleClass", "placeholder", "ariaLabelledBy", "ariaLabel", "iconAriaLabel", "disabled", "dateFormat", "multipleSeparator", "rangeSeparator", "inline", "showOtherMonths", "selectOtherMonths", "showIcon", "icon", "appendTo", "readonlyInput", "shortYearCutoff", "monthNavigator", "yearNavigator", "hourFormat", "timeOnly", "stepHour", "stepMinute", "stepSecond", "showSeconds", "required", "showOnFocus", "showWeek", "startWeekFromFirstDayOfYear", "showClear", "dataType", "selectionMode", "maxDateCount", "showButtonBar", "todayButtonStyleClass", "clearButtonStyleClass", "autofocus", "autoZIndex", "baseZIndex", "panelStyleClass", "panelStyle", "keepInvalid", "hideOnDateTimeSelect", "touchUI", "timeSeparator", "focusTrap", "showTransitionOptions", "hideTransitionOptions", "tabindex", "variant", "minDate", "maxDate", "disabledDates", "disabledDays", "yearRange", "showTime", "responsiveOptions", "numberOfMonths", "firstDayOfWeek", "locale", "view", "defaultDate"], outputs: ["onFocus", "onBlur", "onClose", "onSelect", "onClear", "onInput", "onTodayClick", "onClearClick", "onMonthChange", "onYearChange", "onClickOutside", "onShow"] }] }); }
17
- }
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputTimeComponent, decorators: [{
19
- type: Component,
20
- args: [{ selector: 'kv-input-time', providers: ComponentProviders(KvInputTimeComponent), template: "<span>\r\n\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n <p-calendar\r\n appendTo=\"body\"\r\n [class]=\"baseInputClass\"\r\n [id]=\"componentId\"\r\n [(ngModel)]=\"value\"\r\n [disabled]=\"disabled\"\r\n [showIcon]=\"showIcon\"\r\n [icon]=\"'pi pi-clock'\"\r\n styleClass=\"inputs\"\r\n [showTime]=\"true\"\r\n [timeOnly]=\"true\"\r\n (onBlur)=\"onInputBlur($event)\"\r\n >\r\n </p-calendar>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"] }]
21
- }], ctorParameters: () => [{ type: i1.ComponentService }], propDecorators: { showIcon: [{
22
- type: Input
23
- }] } });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtaW5wdXQtdGltZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZWV2by1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9rdi1pbnB1dHMva3YtaW5wdXQtdGltZS9rdi1pbnB1dC10aW1lLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1pbnB1dC10aW1lL2t2LWlucHV0LXRpbWUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVCxLQUFLLEVBRU4sTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDdkYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sMENBQTBDLENBQUM7Ozs7Ozs7QUFZOUUsTUFBTSxPQUFPLG9CQUFxQixTQUFRLGtCQUEwQjtJQUlsRSxZQUFZLGdCQUFrQztRQUM1QyxLQUFLLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUhqQixhQUFRLEdBQVksSUFBSSxDQUFDO0lBSWxDLENBQUM7OEdBTlUsb0JBQW9CO2tHQUFwQixvQkFBb0IsMEVBRnBCLGtCQUFrQixDQUFDLG9CQUFvQixDQUFDLGlEQ2pCckQsMm5CQXVCeUI7OzJGREpaLG9CQUFvQjtrQkFUaEMsU0FBUzsrQkFDRSxlQUFlLGFBTWQsa0JBQWtCLHNCQUFzQjtxRkFJMUMsUUFBUTtzQkFBaEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XHJcbiAgQ29tcG9uZW50LFxyXG4gIElucHV0LFxyXG4gIE9uSW5pdFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHsgQmFzZUNvbXBvbmVudElucHV0IH0gZnJvbSAnLi4vLi4vLi4vYXBpL2Jhc2UtY29tcG9uZW50cy9iYXNlLWNvbXBvbmVudC1pbnB1dCc7XHJcbmltcG9ydCB7IENvbXBvbmVudFByb3ZpZGVycyB9IGZyb20gJy4uLy4uLy4uL2FwaS9oZWxwZXJzL2NvbXBvbmVudC1wcm92aWRlcnMnO1xyXG5pbXBvcnQgeyBDb21wb25lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vYXBpL3NlcnZpY2VzL2NvbXBvbmVudC5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAna3YtaW5wdXQtdGltZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2t2LWlucHV0LXRpbWUuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogW1xyXG4gICAgJy4va3YtaW5wdXQtdGltZS5jb21wb25lbnQuc2NzcycsXHJcbiAgICAnLi4vLi4va2Vldm8tY29tcG9uZW50cy1zdHlsZXMuc2NzcydcclxuICBdLFxyXG4gIHByb3ZpZGVyczogQ29tcG9uZW50UHJvdmlkZXJzKEt2SW5wdXRUaW1lQ29tcG9uZW50KSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEt2SW5wdXRUaW1lQ29tcG9uZW50IGV4dGVuZHMgQmFzZUNvbXBvbmVudElucHV0PHN0cmluZz4gaW1wbGVtZW50cyBPbkluaXQge1xyXG5cclxuICBASW5wdXQoKSBzaG93SWNvbjogYm9vbGVhbiA9IHRydWU7XHJcblxyXG4gIGNvbnN0cnVjdG9yKGNvbXBvbmVudFNlcnZpY2U6IENvbXBvbmVudFNlcnZpY2UpIHtcclxuICAgIHN1cGVyKGNvbXBvbmVudFNlcnZpY2UpO1xyXG4gIH1cclxufVxyXG4iLCI8c3Bhbj5cclxuXHJcbiAgPGt2LWxhYmVsXHJcbiAgICBbY29tcG9uZW50SWRdPVwiY29tcG9uZW50SWRcIlxyXG4gICAgW2xhYmVsXT1cImxhYmVsICYmIChsYWJlbCArIChzaG93QXN0ZXJpc2sgPyAnKicgOiAnJykpXCJcclxuICAvPlxyXG4gIDxwLWNhbGVuZGFyXHJcbiAgICBhcHBlbmRUbz1cImJvZHlcIlxyXG4gICAgW2NsYXNzXT1cImJhc2VJbnB1dENsYXNzXCJcclxuICAgIFtpZF09XCJjb21wb25lbnRJZFwiXHJcbiAgICBbKG5nTW9kZWwpXT1cInZhbHVlXCJcclxuICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXHJcbiAgICBbc2hvd0ljb25dPVwic2hvd0ljb25cIlxyXG4gICAgW2ljb25dPVwiJ3BpIHBpLWNsb2NrJ1wiXHJcbiAgICBzdHlsZUNsYXNzPVwiaW5wdXRzXCJcclxuICAgIFtzaG93VGltZV09XCJ0cnVlXCJcclxuICAgIFt0aW1lT25seV09XCJ0cnVlXCJcclxuICAgIChvbkJsdXIpPVwib25JbnB1dEJsdXIoJGV2ZW50KVwiXHJcbiAgPlxyXG4gIDwvcC1jYWxlbmRhcj5cclxuXHJcbiAgPGt2LWVycm9yIFtoYXNFcnJvcl09XCJoYXNDb250cm9sRXJyb3IoKVwiPnt7IGVycm9NZXNzYWdlKCkgfX08L2t2LWVycm9yPlxyXG48L3NwYW4+XHJcbjxuZy1jb250ZW50PjwvbmctY29udGVudD4iXX0=
@@ -1,165 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4
- import { PrimeNgModule } from '../../api/modules/primeng.module';
5
- import { KvCheckComponent } from './kv-check/kv-check.component';
6
- import { KvDropdownComponent } from './kv-dropdown/kv-dropdown.component';
7
- import { KvEditorComponent } from './kv-editor/kv-editor.component';
8
- import { kvErrorModule } from '../kv-error/kv-error.module';
9
- import { KvInputCalendarComponent } from './kv-input-calendar/kv-input-calendar.component';
10
- import { KvInputMaskComponent } from './kv-input-mask/kv-input-mask.component';
11
- import { KvInputNumberComponent } from './kv-input-number/kv-input-number.component';
12
- import { KvInputPasswordComponent } from './kv-input-password/kv-input-password.component';
13
- import { KvInputTextareaComponent } from './kv-input-textarea/kv-input-textarea.component';
14
- import { KvInputTextCheckboxComponent } from './kv-input-text-checkbox/kv-input-text-checkbox.component';
15
- import { KvInputTextComponent } from './kv-input-text/kv-input-text.component';
16
- import { KvInputTimeComponent } from './kv-input-time/kv-input-time.component';
17
- import { KvLabelModule } from '../kv-label/kv-label.module';
18
- import { KvMultiSelectComponent } from './kv-multi-select/kv-multi-select.component';
19
- import { KvRadioGroupComponent } from './kv-radio-group/kv-radio-group.component';
20
- import { KvSwitchComponent } from './kv-switch/kv-switch.component';
21
- import { KvSelectButtonComponent } from './kv-select-button/kv-select-button.component';
22
- import { SelectButtonModule } from 'primeng/selectbutton';
23
- import { KvSelectButtonsComponent } from './kv-select-buttons/kv-select-buttons.component';
24
- import { KvTreeMultiSelectComponent } from './kv-tree-multi-select/kv-tree-multi-select.component';
25
- import { TimesCircleIcon } from 'primeng/icons/timescircle';
26
- import { KvInputTextAddonComponent } from './kv-input-text-addon/kv-input-text-addon.component';
27
- import { KvInputNumberAddonComponent } from './kv-input-number-addon/kv-input-number-addon.component';
28
- import { KvButtonModule } from '../kv-button/kv-button.module';
29
- import { KvTagsModule } from '../kv-tags/kv-tags.module';
30
- import { ProgressSpinnerModule } from 'primeng/progressspinner';
31
- import { NgxLoadingModule } from 'ngx-loading';
32
- import { ProgressBarModule } from 'primeng/progressbar';
33
- import { ToastModule } from 'primeng/toast';
34
- import * as i0 from "@angular/core";
35
- export class KvInputsModule {
36
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
37
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.8", ngImport: i0, type: KvInputsModule, declarations: [KvCheckComponent,
38
- KvDropdownComponent,
39
- KvEditorComponent,
40
- KvInputCalendarComponent,
41
- KvInputMaskComponent,
42
- KvInputNumberComponent,
43
- KvInputPasswordComponent,
44
- KvInputTextareaComponent,
45
- KvInputTextCheckboxComponent,
46
- KvInputTextComponent,
47
- KvInputTimeComponent,
48
- KvMultiSelectComponent,
49
- KvRadioGroupComponent,
50
- KvSwitchComponent,
51
- KvSelectButtonComponent,
52
- KvSelectButtonsComponent,
53
- KvTreeMultiSelectComponent,
54
- KvInputTextAddonComponent,
55
- KvInputNumberAddonComponent], imports: [CommonModule,
56
- FormsModule,
57
- kvErrorModule,
58
- KvLabelModule,
59
- PrimeNgModule,
60
- ReactiveFormsModule,
61
- SelectButtonModule,
62
- TimesCircleIcon,
63
- KvButtonModule,
64
- KvTagsModule,
65
- ProgressSpinnerModule,
66
- NgxLoadingModule,
67
- ToastModule,
68
- ProgressBarModule], exports: [KvCheckComponent,
69
- KvDropdownComponent,
70
- KvEditorComponent,
71
- KvInputCalendarComponent,
72
- KvInputMaskComponent,
73
- KvInputNumberComponent,
74
- KvInputPasswordComponent,
75
- KvInputTextareaComponent,
76
- KvInputTextCheckboxComponent,
77
- KvInputTextComponent,
78
- KvInputTimeComponent,
79
- KvMultiSelectComponent,
80
- KvRadioGroupComponent,
81
- KvSwitchComponent,
82
- KvSelectButtonComponent,
83
- KvSelectButtonsComponent,
84
- KvTreeMultiSelectComponent,
85
- KvInputTextAddonComponent,
86
- KvInputNumberAddonComponent] }); }
87
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputsModule, imports: [CommonModule,
88
- FormsModule,
89
- kvErrorModule,
90
- KvLabelModule,
91
- PrimeNgModule,
92
- ReactiveFormsModule,
93
- SelectButtonModule,
94
- TimesCircleIcon,
95
- KvButtonModule,
96
- KvTagsModule,
97
- ProgressSpinnerModule,
98
- NgxLoadingModule,
99
- ToastModule,
100
- ProgressBarModule] }); }
101
- }
102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInputsModule, decorators: [{
103
- type: NgModule,
104
- args: [{
105
- declarations: [
106
- KvCheckComponent,
107
- KvDropdownComponent,
108
- KvEditorComponent,
109
- KvInputCalendarComponent,
110
- KvInputMaskComponent,
111
- KvInputNumberComponent,
112
- KvInputPasswordComponent,
113
- KvInputTextareaComponent,
114
- KvInputTextCheckboxComponent,
115
- KvInputTextComponent,
116
- KvInputTimeComponent,
117
- KvMultiSelectComponent,
118
- KvRadioGroupComponent,
119
- KvSwitchComponent,
120
- KvSelectButtonComponent,
121
- KvSelectButtonsComponent,
122
- KvTreeMultiSelectComponent,
123
- KvInputTextAddonComponent,
124
- KvInputNumberAddonComponent
125
- ],
126
- imports: [
127
- CommonModule,
128
- FormsModule,
129
- kvErrorModule,
130
- KvLabelModule,
131
- PrimeNgModule,
132
- ReactiveFormsModule,
133
- SelectButtonModule,
134
- TimesCircleIcon,
135
- KvButtonModule,
136
- KvTagsModule,
137
- ProgressSpinnerModule,
138
- NgxLoadingModule,
139
- ToastModule,
140
- ProgressBarModule
141
- ],
142
- exports: [
143
- KvCheckComponent,
144
- KvDropdownComponent,
145
- KvEditorComponent,
146
- KvInputCalendarComponent,
147
- KvInputMaskComponent,
148
- KvInputNumberComponent,
149
- KvInputPasswordComponent,
150
- KvInputTextareaComponent,
151
- KvInputTextCheckboxComponent,
152
- KvInputTextComponent,
153
- KvInputTimeComponent,
154
- KvMultiSelectComponent,
155
- KvRadioGroupComponent,
156
- KvSwitchComponent,
157
- KvSelectButtonComponent,
158
- KvSelectButtonsComponent,
159
- KvTreeMultiSelectComponent,
160
- KvInputTextAddonComponent,
161
- KvInputNumberAddonComponent
162
- ]
163
- }]
164
- }] });
165
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtaW5wdXRzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1pbnB1dHMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFDTCxXQUFXLEVBQ1gsbUJBQW1CLEVBQ3BCLE1BQU0sZ0JBQWdCLENBQUM7QUFFeEIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBRWpFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2pFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBQzFFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3BFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUMzRixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQUNyRixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUMzRixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUMzRixPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUN6RyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDckYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDcEUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDeEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDMUQsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDM0YsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDbkcsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzVELE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHFEQUFxRCxDQUFDO0FBQ2hHLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLHlEQUF5RCxDQUFDO0FBQ3RHLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDekQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sYUFBYSxDQUFDO0FBQy9DLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBNkQ1QyxNQUFNLE9BQU8sY0FBYzs4R0FBZCxjQUFjOytHQUFkLGNBQWMsaUJBMUR2QixnQkFBZ0I7WUFDaEIsbUJBQW1CO1lBQ25CLGlCQUFpQjtZQUNqQix3QkFBd0I7WUFDeEIsb0JBQW9CO1lBQ3BCLHNCQUFzQjtZQUN0Qix3QkFBd0I7WUFDeEIsd0JBQXdCO1lBQ3hCLDRCQUE0QjtZQUM1QixvQkFBb0I7WUFDcEIsb0JBQW9CO1lBQ3BCLHNCQUFzQjtZQUN0QixxQkFBcUI7WUFDckIsaUJBQWlCO1lBQ2pCLHVCQUF1QjtZQUN2Qix3QkFBd0I7WUFDeEIsMEJBQTBCO1lBQzFCLHlCQUF5QjtZQUN6QiwyQkFBMkIsYUFHM0IsWUFBWTtZQUNaLFdBQVc7WUFDWCxhQUFhO1lBQ2IsYUFBYTtZQUNiLGFBQWE7WUFDYixtQkFBbUI7WUFDbkIsa0JBQWtCO1lBQ2xCLGVBQWU7WUFDZixjQUFjO1lBQ2QsWUFBWTtZQUNaLHFCQUFxQjtZQUNyQixnQkFBZ0I7WUFDaEIsV0FBVztZQUNYLGlCQUFpQixhQUdqQixnQkFBZ0I7WUFDaEIsbUJBQW1CO1lBQ25CLGlCQUFpQjtZQUNqQix3QkFBd0I7WUFDeEIsb0JBQW9CO1lBQ3BCLHNCQUFzQjtZQUN0Qix3QkFBd0I7WUFDeEIsd0JBQXdCO1lBQ3hCLDRCQUE0QjtZQUM1QixvQkFBb0I7WUFDcEIsb0JBQW9CO1lBQ3BCLHNCQUFzQjtZQUN0QixxQkFBcUI7WUFDckIsaUJBQWlCO1lBQ2pCLHVCQUF1QjtZQUN2Qix3QkFBd0I7WUFDeEIsMEJBQTBCO1lBQzFCLHlCQUF5QjtZQUN6QiwyQkFBMkI7K0dBR2xCLGNBQWMsWUFyQ3ZCLFlBQVk7WUFDWixXQUFXO1lBQ1gsYUFBYTtZQUNiLGFBQWE7WUFDYixhQUFhO1lBQ2IsbUJBQW1CO1lBQ25CLGtCQUFrQjtZQUNsQixlQUFlO1lBQ2YsY0FBYztZQUNkLFlBQVk7WUFDWixxQkFBcUI7WUFDckIsZ0JBQWdCO1lBQ2hCLFdBQVc7WUFDWCxpQkFBaUI7OzJGQXdCUixjQUFjO2tCQTVEMUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osZ0JBQWdCO3dCQUNoQixtQkFBbUI7d0JBQ25CLGlCQUFpQjt3QkFDakIsd0JBQXdCO3dCQUN4QixvQkFBb0I7d0JBQ3BCLHNCQUFzQjt3QkFDdEIsd0JBQXdCO3dCQUN4Qix3QkFBd0I7d0JBQ3hCLDRCQUE0Qjt3QkFDNUIsb0JBQW9CO3dCQUNwQixvQkFBb0I7d0JBQ3BCLHNCQUFzQjt3QkFDdEIscUJBQXFCO3dCQUNyQixpQkFBaUI7d0JBQ2pCLHVCQUF1Qjt3QkFDdkIsd0JBQXdCO3dCQUN4QiwwQkFBMEI7d0JBQzFCLHlCQUF5Qjt3QkFDekIsMkJBQTJCO3FCQUM1QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGFBQWE7d0JBQ2IsYUFBYTt3QkFDYixhQUFhO3dCQUNiLG1CQUFtQjt3QkFDbkIsa0JBQWtCO3dCQUNsQixlQUFlO3dCQUNmLGNBQWM7d0JBQ2QsWUFBWTt3QkFDWixxQkFBcUI7d0JBQ3JCLGdCQUFnQjt3QkFDaEIsV0FBVzt3QkFDWCxpQkFBaUI7cUJBQ2xCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxnQkFBZ0I7d0JBQ2hCLG1CQUFtQjt3QkFDbkIsaUJBQWlCO3dCQUNqQix3QkFBd0I7d0JBQ3hCLG9CQUFvQjt3QkFDcEIsc0JBQXNCO3dCQUN0Qix3QkFBd0I7d0JBQ3hCLHdCQUF3Qjt3QkFDeEIsNEJBQTRCO3dCQUM1QixvQkFBb0I7d0JBQ3BCLG9CQUFvQjt3QkFDcEIsc0JBQXNCO3dCQUN0QixxQkFBcUI7d0JBQ3JCLGlCQUFpQjt3QkFDakIsdUJBQXVCO3dCQUN2Qix3QkFBd0I7d0JBQ3hCLDBCQUEwQjt3QkFDMUIseUJBQXlCO3dCQUN6QiwyQkFBMkI7cUJBQzVCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7XHJcbiAgRm9ybXNNb2R1bGUsXHJcbiAgUmVhY3RpdmVGb3Jtc01vZHVsZVxyXG59IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuXHJcbmltcG9ydCB7IFByaW1lTmdNb2R1bGUgfSBmcm9tICcuLi8uLi9hcGkvbW9kdWxlcy9wcmltZW5nLm1vZHVsZSc7XHJcblxyXG5pbXBvcnQgeyBLdkNoZWNrQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1jaGVjay9rdi1jaGVjay5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdkRyb3Bkb3duQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1kcm9wZG93bi9rdi1kcm9wZG93bi5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdkVkaXRvckNvbXBvbmVudCB9IGZyb20gJy4va3YtZWRpdG9yL2t2LWVkaXRvci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBrdkVycm9yTW9kdWxlIH0gZnJvbSAnLi4va3YtZXJyb3Iva3YtZXJyb3IubW9kdWxlJztcclxuaW1wb3J0IHsgS3ZJbnB1dENhbGVuZGFyQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1pbnB1dC1jYWxlbmRhci9rdi1pbnB1dC1jYWxlbmRhci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdklucHV0TWFza0NvbXBvbmVudCB9IGZyb20gJy4va3YtaW5wdXQtbWFzay9rdi1pbnB1dC1tYXNrLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEt2SW5wdXROdW1iZXJDb21wb25lbnQgfSBmcm9tICcuL2t2LWlucHV0LW51bWJlci9rdi1pbnB1dC1udW1iZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHsgS3ZJbnB1dFBhc3N3b3JkQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1pbnB1dC1wYXNzd29yZC9rdi1pbnB1dC1wYXNzd29yZC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdklucHV0VGV4dGFyZWFDb21wb25lbnQgfSBmcm9tICcuL2t2LWlucHV0LXRleHRhcmVhL2t2LWlucHV0LXRleHRhcmVhLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEt2SW5wdXRUZXh0Q2hlY2tib3hDb21wb25lbnQgfSBmcm9tICcuL2t2LWlucHV0LXRleHQtY2hlY2tib3gva3YtaW5wdXQtdGV4dC1jaGVja2JveC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdklucHV0VGV4dENvbXBvbmVudCB9IGZyb20gJy4va3YtaW5wdXQtdGV4dC9rdi1pbnB1dC10ZXh0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEt2SW5wdXRUaW1lQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1pbnB1dC10aW1lL2t2LWlucHV0LXRpbWUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgS3ZMYWJlbE1vZHVsZSB9IGZyb20gJy4uL2t2LWxhYmVsL2t2LWxhYmVsLm1vZHVsZSc7XHJcbmltcG9ydCB7IEt2TXVsdGlTZWxlY3RDb21wb25lbnQgfSBmcm9tICcuL2t2LW11bHRpLXNlbGVjdC9rdi1tdWx0aS1zZWxlY3QuY29tcG9uZW50JztcclxuaW1wb3J0IHsgS3ZSYWRpb0dyb3VwQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1yYWRpby1ncm91cC9rdi1yYWRpby1ncm91cC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdlN3aXRjaENvbXBvbmVudCB9IGZyb20gJy4va3Ytc3dpdGNoL2t2LXN3aXRjaC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdlNlbGVjdEJ1dHRvbkNvbXBvbmVudCB9IGZyb20gJy4va3Ytc2VsZWN0LWJ1dHRvbi9rdi1zZWxlY3QtYnV0dG9uLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFNlbGVjdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvc2VsZWN0YnV0dG9uJztcclxuaW1wb3J0IHsgS3ZTZWxlY3RCdXR0b25zQ29tcG9uZW50IH0gZnJvbSAnLi9rdi1zZWxlY3QtYnV0dG9ucy9rdi1zZWxlY3QtYnV0dG9ucy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdlRyZWVNdWx0aVNlbGVjdENvbXBvbmVudCB9IGZyb20gJy4va3YtdHJlZS1tdWx0aS1zZWxlY3Qva3YtdHJlZS1tdWx0aS1zZWxlY3QuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVGltZXNDaXJjbGVJY29uIH0gZnJvbSAncHJpbWVuZy9pY29ucy90aW1lc2NpcmNsZSc7XHJcbmltcG9ydCB7IEt2SW5wdXRUZXh0QWRkb25Db21wb25lbnQgfSBmcm9tICcuL2t2LWlucHV0LXRleHQtYWRkb24va3YtaW5wdXQtdGV4dC1hZGRvbi5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBLdklucHV0TnVtYmVyQWRkb25Db21wb25lbnQgfSBmcm9tICcuL2t2LWlucHV0LW51bWJlci1hZGRvbi9rdi1pbnB1dC1udW1iZXItYWRkb24uY29tcG9uZW50JztcclxuaW1wb3J0IHsgS3ZCdXR0b25Nb2R1bGUgfSBmcm9tICcuLi9rdi1idXR0b24va3YtYnV0dG9uLm1vZHVsZSc7XHJcbmltcG9ydCB7IEt2VGFnc01vZHVsZSB9IGZyb20gJy4uL2t2LXRhZ3Mva3YtdGFncy5tb2R1bGUnO1xyXG5pbXBvcnQgeyBQcm9ncmVzc1NwaW5uZXJNb2R1bGUgfSBmcm9tICdwcmltZW5nL3Byb2dyZXNzc3Bpbm5lcic7XHJcbmltcG9ydCB7IE5neExvYWRpbmdNb2R1bGUgfSBmcm9tICduZ3gtbG9hZGluZyc7XHJcbmltcG9ydCB7IFByb2dyZXNzQmFyTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9wcm9ncmVzc2Jhcic7XHJcbmltcG9ydCB7IFRvYXN0TW9kdWxlIH0gZnJvbSAncHJpbWVuZy90b2FzdCc7XHJcbkBOZ01vZHVsZSh7XHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBLdkNoZWNrQ29tcG9uZW50LFxyXG4gICAgS3ZEcm9wZG93bkNvbXBvbmVudCxcclxuICAgIEt2RWRpdG9yQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dENhbGVuZGFyQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dE1hc2tDb21wb25lbnQsXHJcbiAgICBLdklucHV0TnVtYmVyQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dFBhc3N3b3JkQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dFRleHRhcmVhQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dFRleHRDaGVja2JveENvbXBvbmVudCxcclxuICAgIEt2SW5wdXRUZXh0Q29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dFRpbWVDb21wb25lbnQsXHJcbiAgICBLdk11bHRpU2VsZWN0Q29tcG9uZW50LFxyXG4gICAgS3ZSYWRpb0dyb3VwQ29tcG9uZW50LFxyXG4gICAgS3ZTd2l0Y2hDb21wb25lbnQsXHJcbiAgICBLdlNlbGVjdEJ1dHRvbkNvbXBvbmVudCxcclxuICAgIEt2U2VsZWN0QnV0dG9uc0NvbXBvbmVudCxcclxuICAgIEt2VHJlZU11bHRpU2VsZWN0Q29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dFRleHRBZGRvbkNvbXBvbmVudCxcclxuICAgIEt2SW5wdXROdW1iZXJBZGRvbkNvbXBvbmVudFxyXG4gIF0sXHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGUsXHJcbiAgICBrdkVycm9yTW9kdWxlLFxyXG4gICAgS3ZMYWJlbE1vZHVsZSxcclxuICAgIFByaW1lTmdNb2R1bGUsXHJcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxyXG4gICAgU2VsZWN0QnV0dG9uTW9kdWxlLFxyXG4gICAgVGltZXNDaXJjbGVJY29uLFxyXG4gICAgS3ZCdXR0b25Nb2R1bGUsXHJcbiAgICBLdlRhZ3NNb2R1bGUsXHJcbiAgICBQcm9ncmVzc1NwaW5uZXJNb2R1bGUsXHJcbiAgICBOZ3hMb2FkaW5nTW9kdWxlLFxyXG4gICAgVG9hc3RNb2R1bGUsXHJcbiAgICBQcm9ncmVzc0Jhck1vZHVsZVxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgS3ZDaGVja0NvbXBvbmVudCxcclxuICAgIEt2RHJvcGRvd25Db21wb25lbnQsXHJcbiAgICBLdkVkaXRvckNvbXBvbmVudCxcclxuICAgIEt2SW5wdXRDYWxlbmRhckNvbXBvbmVudCxcclxuICAgIEt2SW5wdXRNYXNrQ29tcG9uZW50LFxyXG4gICAgS3ZJbnB1dE51bWJlckNvbXBvbmVudCxcclxuICAgIEt2SW5wdXRQYXNzd29yZENvbXBvbmVudCxcclxuICAgIEt2SW5wdXRUZXh0YXJlYUNvbXBvbmVudCxcclxuICAgIEt2SW5wdXRUZXh0Q2hlY2tib3hDb21wb25lbnQsXHJcbiAgICBLdklucHV0VGV4dENvbXBvbmVudCxcclxuICAgIEt2SW5wdXRUaW1lQ29tcG9uZW50LFxyXG4gICAgS3ZNdWx0aVNlbGVjdENvbXBvbmVudCxcclxuICAgIEt2UmFkaW9Hcm91cENvbXBvbmVudCxcclxuICAgIEt2U3dpdGNoQ29tcG9uZW50LFxyXG4gICAgS3ZTZWxlY3RCdXR0b25Db21wb25lbnQsXHJcbiAgICBLdlNlbGVjdEJ1dHRvbnNDb21wb25lbnQsXHJcbiAgICBLdlRyZWVNdWx0aVNlbGVjdENvbXBvbmVudCxcclxuICAgIEt2SW5wdXRUZXh0QWRkb25Db21wb25lbnQsXHJcbiAgICBLdklucHV0TnVtYmVyQWRkb25Db21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBLdklucHV0c01vZHVsZSB7IH1cclxuIl19
@@ -1,60 +0,0 @@
1
- import { Component, Input, ViewChild } from '@angular/core';
2
- import { BaseComponentMultiSelect } from '../../../api/base-components/base-component-multi-select';
3
- import { ComponentProviders } from '../../../api/helpers/component-providers';
4
- import { MultiSelect } from 'primeng/multiselect';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../../../api/services/component.service";
7
- import * as i2 from "@angular/common";
8
- import * as i3 from "@angular/forms";
9
- import * as i4 from "../../kv-error/kv-error.component";
10
- import * as i5 from "../../kv-label/kv-label.component";
11
- import * as i6 from "primeng/api";
12
- import * as i7 from "primeng/tooltip";
13
- import * as i8 from "primeng/multiselect";
14
- import * as i9 from "primeng/icons/timescircle";
15
- export class KvMultiSelectComponent extends BaseComponentMultiSelect {
16
- ngOnInit() {
17
- super.ngOnInit();
18
- this.capitalizeOptions(this.options);
19
- if (this.optionInactive == true) {
20
- this.inactiveOptions = 'inactive';
21
- this.options.map((element, index) => {
22
- Object.defineProperty(element, 'inactive', {
23
- value: true,
24
- });
25
- });
26
- }
27
- }
28
- constructor(componentService) {
29
- super(componentService);
30
- this.group = false;
31
- this.maxSelectedLabels = 3;
32
- this.appendTo = 'body';
33
- this.toolTipSelectedItems = false;
34
- this.loading = false;
35
- }
36
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvMultiSelectComponent, deps: [{ token: i1.ComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
37
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvMultiSelectComponent, selector: "kv-multi-select", inputs: { group: "group", itemTemplate: "itemTemplate", maxSelectedLabels: "maxSelectedLabels", optionInactive: "optionInactive", appendTo: "appendTo", toolTipSelectedItems: "toolTipSelectedItems", loading: "loading" }, providers: ComponentProviders(KvMultiSelectComponent), viewQueries: [{ propertyName: "multiSelect", first: true, predicate: MultiSelect, descendants: true }], usesInheritance: true, ngImport: i0, template: "<span [ngClass]=\"{'disable': optionInactive === true}\">\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n\r\n <p-multiSelect\r\n #multiSelect\r\n display=\"chip\"\r\n inputId=\"multiselect\"\r\n styleClass=\"inputs\"\r\n [class]=\"baseInputClass\"\r\n [group]=\"group\"\r\n [disabled]=\"disabled || loading\"\r\n [options]=\"options\"\r\n [optionDisabled]=\" inactiveOptions\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [filter]=\"filter\"\r\n [showClear]=\"showClear\"\r\n [(ngModel)]=\"value\"\r\n (onChange)=\"selectionChange($event)\"\r\n (onPanelHide)=\"panelHide($event)\"\r\n [maxSelectedLabels]=\"maxSelectedLabels\"\r\n [appendTo]=\"appendTo\"\r\n [placeholder]=\"placeholder\"\r\n [loading]=\"loading\"\r\n >\r\n \r\n @if (itemTemplate) {\r\n <ng-template let-item pTemplate=\"item\">\r\n <ng-container\r\n [ngTemplateOutlet]=\"itemTemplate\"\r\n [ngTemplateOutletContext]=\"{ $implicit: item }\"\r\n ></ng-container>\r\n </ng-template>\r\n } \r\n\r\n @if (multiSelect && toolTipSelectedItems) {\r\n <ng-template let-value pTemplate=\"selectedItems\">\r\n @for (item of multiSelect.chipSelectedItems(); track $index) {\r\n <div #token class=\"p-multiselect-token\">\r\n <span\r\n class=\"p-multiselect-token-label\"\r\n [pTooltip]=\"multiSelect.getLabelByValue(item) \"\r\n tooltipPosition=\"top\"\r\n >\r\n {{ multiSelect.getLabelByValue(item) }}\r\n </span>\r\n \r\n @if (!disabled) {\r\n <ng-container>\r\n @if (!multiSelect.removeTokenIconTemplate) {\r\n <TimesCircleIcon\r\n [ngClass]=\"{ 'p-disabled': multiSelect.isOptionDisabled(item) }\"\r\n [styleClass]=\"'p-multiselect-token-icon'\"\r\n (click)=\"multiSelect.removeOption(item, $event)\"\r\n [attr.tabindex]=\"0\"\r\n [attr.data-pc-section]=\"'clearicon'\"\r\n [attr.aria-hidden]=\"true\"\r\n />\r\n }\r\n @if (multiSelect.removeTokenIconTemplate) {\r\n <span\r\n class=\"p-multiselect-token-icon\"\r\n (click)=\"multiSelect.removeOption(item, $event)\"\r\n [attr.tabindex]=\"0\"\r\n [attr.data-pc-section]=\"'clearicon'\"\r\n [attr.aria-hidden]=\"true\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"multiSelect.removeTokenIconTemplate\"\r\n ></ng-container>\r\n </span>\r\n }\r\n </ng-container>\r\n }\r\n </div>\r\n }\r\n </ng-template>\r\n }\r\n\r\n </p-multiSelect>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>\r\n", styles: [":host ::ng-deep .disable .p-multiselect.p-multiselect-chip .p-multiselect-token .p-icon-wrapper{display:none!important}::ng-deep .p-multiselect-filter-icon{top:1.2rem}::ng-deep .p-multiselect-clear-icon{top:1.2em}::ng-deep .p-multiselect.p-multiselect-chip .p-multiselect-token{padding:.1rem .4rem}::ng-deep .p-multiselect-label{padding:.3rem;display:flex}::ng-deep .p-multiselect-item{font-size:.875rem;padding:.25rem;margin:0;text-overflow:ellipsis;width:100%;border-radius:.5rem}::ng-deep .p-multiselect-item .p-checkbox{margin:0;padding:0;justify-content:center}::ng-deep .p-multiselect{width:100%}::ng-deep p-multiselect p-overlay .p-overlay{max-width:100%}::ng-deep .p-multiselect-items-wrapper .p-multiselect-items{padding:.5rem}::ng-deep .p-multiselect-filter{height:1.875rem}::ng-deep .p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message{padding:.75rem;font-size:.875rem}::ng-deep .p-multiselect-panel .p-multiselect-header{margin:0!important;padding:.5rem!important}\n", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i4.KvErrorComponent, selector: "kv-error", inputs: ["formControl", "hasError"] }, { kind: "component", type: i5.KvLabelComponent, selector: "kv-label", inputs: ["componentId", "label"] }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: i7.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "component", type: i8.MultiSelect, selector: "p-multiSelect", inputs: ["id", "ariaLabel", "style", "styleClass", "panelStyle", "panelStyleClass", "inputId", "disabled", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "variant", "appendTo", "dataKey", "name", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "loading", "virtualScrollItemSize", "loadingIcon", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autofocus", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "defaultLabel", "placeholder", "options", "filterValue", "itemSize", "selectAll", "focusOnHover", "filterFields", "selectOnFocus", "autoOptionFocus"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove", "onSelectAllChange"] }, { kind: "component", type: i9.TimesCircleIcon, selector: "TimesCircleIcon" }] }); }
38
- }
39
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvMultiSelectComponent, decorators: [{
40
- type: Component,
41
- args: [{ selector: 'kv-multi-select', providers: ComponentProviders(KvMultiSelectComponent), template: "<span [ngClass]=\"{'disable': optionInactive === true}\">\r\n <kv-label\r\n [componentId]=\"componentId\"\r\n [label]=\"label && (label + (showAsterisk ? '*' : ''))\"\r\n />\r\n\r\n <p-multiSelect\r\n #multiSelect\r\n display=\"chip\"\r\n inputId=\"multiselect\"\r\n styleClass=\"inputs\"\r\n [class]=\"baseInputClass\"\r\n [group]=\"group\"\r\n [disabled]=\"disabled || loading\"\r\n [options]=\"options\"\r\n [optionDisabled]=\" inactiveOptions\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [filter]=\"filter\"\r\n [showClear]=\"showClear\"\r\n [(ngModel)]=\"value\"\r\n (onChange)=\"selectionChange($event)\"\r\n (onPanelHide)=\"panelHide($event)\"\r\n [maxSelectedLabels]=\"maxSelectedLabels\"\r\n [appendTo]=\"appendTo\"\r\n [placeholder]=\"placeholder\"\r\n [loading]=\"loading\"\r\n >\r\n \r\n @if (itemTemplate) {\r\n <ng-template let-item pTemplate=\"item\">\r\n <ng-container\r\n [ngTemplateOutlet]=\"itemTemplate\"\r\n [ngTemplateOutletContext]=\"{ $implicit: item }\"\r\n ></ng-container>\r\n </ng-template>\r\n } \r\n\r\n @if (multiSelect && toolTipSelectedItems) {\r\n <ng-template let-value pTemplate=\"selectedItems\">\r\n @for (item of multiSelect.chipSelectedItems(); track $index) {\r\n <div #token class=\"p-multiselect-token\">\r\n <span\r\n class=\"p-multiselect-token-label\"\r\n [pTooltip]=\"multiSelect.getLabelByValue(item) \"\r\n tooltipPosition=\"top\"\r\n >\r\n {{ multiSelect.getLabelByValue(item) }}\r\n </span>\r\n \r\n @if (!disabled) {\r\n <ng-container>\r\n @if (!multiSelect.removeTokenIconTemplate) {\r\n <TimesCircleIcon\r\n [ngClass]=\"{ 'p-disabled': multiSelect.isOptionDisabled(item) }\"\r\n [styleClass]=\"'p-multiselect-token-icon'\"\r\n (click)=\"multiSelect.removeOption(item, $event)\"\r\n [attr.tabindex]=\"0\"\r\n [attr.data-pc-section]=\"'clearicon'\"\r\n [attr.aria-hidden]=\"true\"\r\n />\r\n }\r\n @if (multiSelect.removeTokenIconTemplate) {\r\n <span\r\n class=\"p-multiselect-token-icon\"\r\n (click)=\"multiSelect.removeOption(item, $event)\"\r\n [attr.tabindex]=\"0\"\r\n [attr.data-pc-section]=\"'clearicon'\"\r\n [attr.aria-hidden]=\"true\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"multiSelect.removeTokenIconTemplate\"\r\n ></ng-container>\r\n </span>\r\n }\r\n </ng-container>\r\n }\r\n </div>\r\n }\r\n </ng-template>\r\n }\r\n\r\n </p-multiSelect>\r\n\r\n <kv-error [hasError]=\"hasControlError()\">{{ erroMessage() }}</kv-error>\r\n</span>\r\n<ng-content></ng-content>\r\n", styles: [":host ::ng-deep .disable .p-multiselect.p-multiselect-chip .p-multiselect-token .p-icon-wrapper{display:none!important}::ng-deep .p-multiselect-filter-icon{top:1.2rem}::ng-deep .p-multiselect-clear-icon{top:1.2em}::ng-deep .p-multiselect.p-multiselect-chip .p-multiselect-token{padding:.1rem .4rem}::ng-deep .p-multiselect-label{padding:.3rem;display:flex}::ng-deep .p-multiselect-item{font-size:.875rem;padding:.25rem;margin:0;text-overflow:ellipsis;width:100%;border-radius:.5rem}::ng-deep .p-multiselect-item .p-checkbox{margin:0;padding:0;justify-content:center}::ng-deep .p-multiselect{width:100%}::ng-deep p-multiselect p-overlay .p-overlay{max-width:100%}::ng-deep .p-multiselect-items-wrapper .p-multiselect-items{padding:.5rem}::ng-deep .p-multiselect-filter{height:1.875rem}::ng-deep .p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message{padding:.75rem;font-size:.875rem}::ng-deep .p-multiselect-panel .p-multiselect-header{margin:0!important;padding:.5rem!important}\n", "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\";@import\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0\";::ng-deep :root{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255;--kv-primary-color: 41, 185, 45;--kv-secondary-color: 0, 37, 66;--kv-tertiary-color: 165, 165, 165;--kv-danger-color: 220, 53, 69}::ng-deep .padrao{--kv-color-system: 10,58,120;--kv-color-system-cta: 76, 175, 80;--kv-color-text: 0, 0, 0;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-keevocenter{--kv-color-system: 88,25,153;--kv-color-system-cta: 0, 116, 217;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 248,250,253;--kv-background-card: 255,255,255}::ng-deep .theme-holos{--kv-color-system: 241,90,36;--kv-color-system-cta: 224, 168, 35;--kv-color-text: 0, 0, 0;--kv-color-text-inv: 255, 255, 165;--kv-background-system: 240,240,240;--kv-background-card: 2255,255,255}.system-color{color:rgb(var(--kv-color-system),1)}.bg-system-100{background:rgb(var(--kv-color-system),1)}.bg-system-75{background:rgb(var(--kv-color-system),.75)}.bg-system-50{background:rgb(var(--kv-color-system),.5)}.bg-system-25{background:rgb(var(--kv-color-system),.25)}.material-symbols-outlined{font-family:Material Symbols Outlined!important}*{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-accordion,::ng-deep .p-accordion-header,::ng-deep .p-accordion-content,::ng-deep .p-badge,::ng-deep .p-overlay-badge,::ng-deep .p-breadcrumb,::ng-deep .p-breadcrumb-item,::ng-deep .p-breadcrumb-link,::ng-deep .p-button,::ng-deep .p-calendar,::ng-deep .p-card,::ng-deep .p-card-title,::ng-deep .p-card-subtitle,::ng-deep .p-card-content,::ng-deep .p-checkbox,::ng-deep .p-chip,::ng-deep .p-confirm-dialog,::ng-deep .p-confirm-dialog-message,::ng-deep .p-contextmenu,::ng-deep .p-contextmenu-item,::ng-deep .p-dataview,::ng-deep .p-dataview-content,::ng-deep .p-dialog,::ng-deep .p-dialog-title,::ng-deep .p-dialog-content,::ng-deep .p-dropdown,::ng-deep .p-dropdown-label,::ng-deep .p-dropdown-item,::ng-deep .p-dynamic-dialog,::ng-deep .p-dynamic-dialog-title,::ng-deep .p-dynamic-dialog-content,::ng-deep .p-editor,::ng-deep .p-fieldset,::ng-deep .p-fieldset-legend,::ng-deep .p-fieldset-content,::ng-deep .p-fileupload,::ng-deep .p-inputmask,::ng-deep .p-inputnumber,::ng-deep .p-inputtextarea,::ng-deep .p-inputtext,::ng-deep .p-menu,::ng-deep .p-menuitem,::ng-deep .p-menuitem-text,::ng-deep .p-message,::ng-deep .p-messages,::ng-deep .p-multiselect,::ng-deep .p-multiselect-label,::ng-deep .p-multiselect-item,::ng-deep .p-panelmenu,::ng-deep .p-panelmenu-header,::ng-deep .p-panelmenu-content,::ng-deep .p-panel,::ng-deep .p-panel-header,::ng-deep .p-panel-content,::ng-deep .p-password,::ng-deep .p-picklist,::ng-deep .p-progressbar,::ng-deep .p-radiobutton,::ng-deep .p-rating,::ng-deep .p-sidebar,::ng-deep .p-splitbutton,::ng-deep .p-steps,::ng-deep .p-step,::ng-deep .p-table,::ng-deep .p-datatable,::ng-deep .p-tabview,::ng-deep .p-tabpanel,::ng-deep .p-tag,::ng-deep .p-toast,::ng-deep .p-toolbar,::ng-deep .p-tooltip,::ng-deep .p-tree,::ng-deep .p-treetable,::ng-deep .p-selectbutton,::ng-deep .p-stepper,::ng-deep .p-inputgroup,::ng-deep .p-inputgroup-addon,::ng-deep .p-text{font-family:Inter,Inter var,sans-serif!important}::ng-deep .p-icon,svg{height:.6rem}:host ::ng-deep .inputs{height:1.875rem}:host ::ng-deep .inputs,.p-inputtext,.p-inputtextarea{font-size:.875rem}::ng-deep .p-dialog .p-dialog-header{color:rgb(var(--kv-color-text))!important;background:linear-gradient(0deg,#00000005 .44%,#0000 49.5%),#fff!important;display:flex!important;flex-wrap:wrap;word-wrap:break-word;border-bottom:1px solid rgb(var(--kv-color-text),.15)}::ng-deep .p-dialog{min-width:320px}::ng-deep .p-dialog-content{overflow-x:hidden}::ng-deep .p-dialog-content::-webkit-scrollbar{width:8px}::ng-deep .p-dialog-content::-webkit-scrollbar:hover{background-color:#dededebf}::ng-deep .p-dialog-content::-webkit-scrollbar-thumb{border-radius:4px;background-color:transparent}::ng-deep .p-dialog-content:hover::-webkit-scrollbar-thumb{border-left:2px solid white;background-color:#00000080}::ng-deep .p-dialog-content::-webkit-scrollbar-track{border-left:2px solid white;background-color:#dededebf}::ng-deep .p-dialog-footer{display:flex;justify-content:flex-end;padding:10px;gap:10px}::ng-deep .p-dialog .p-dialog-header .p-dialog-header-icon{display:none}::ng-deep .p-tooltip{font-size:.825rem!important}::ng-deep svg.p-icon{width:.65rem;height:.65rem}::ng-deep .p-checkbox .p-checkbox-box.p-highlight{border-color:#004172;background:#004172}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:hover{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:active{background-color:#002542}::ng-deep .p-checkbox .p-checkbox-box.p-highlight:disabled{background-color:#002542;opacity:.4;cursor:auto}input{height:1.75rem}::ng-deep .p-checkbox .p-checkbox-box{width:1.125rem;height:1.125rem;border:1.5px solid #d1d5db}::ng-deep p-tablecheckbox p-tableheadercheckbox .p-checkbox{display:flex!important;align-items:center!important;justify-content:right}::ng-deep .p-checkbox{display:flex!important;align-items:center!important;justify-content:center}::ng-deep .p-checkbox-label{font-size:.875rem}\n"] }]
42
- }], ctorParameters: () => [{ type: i1.ComponentService }], propDecorators: { group: [{
43
- type: Input
44
- }], itemTemplate: [{
45
- type: Input
46
- }], maxSelectedLabels: [{
47
- type: Input
48
- }], optionInactive: [{
49
- type: Input
50
- }], appendTo: [{
51
- type: Input
52
- }], toolTipSelectedItems: [{
53
- type: Input
54
- }], loading: [{
55
- type: Input
56
- }], multiSelect: [{
57
- type: ViewChild,
58
- args: [MultiSelect]
59
- }] } });
60
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtbXVsdGktc2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1tdWx0aS1zZWxlY3Qva3YtbXVsdGktc2VsZWN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWlucHV0cy9rdi1tdWx0aS1zZWxlY3Qva3YtbXVsdGktc2VsZWN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxTQUFTLEVBQ1QsS0FBSyxFQUVMLFNBQVMsRUFDVixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwwREFBMEQsQ0FBQztBQUNwRyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUU5RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7Ozs7Ozs7O0FBV2xELE1BQU0sT0FBTyxzQkFBdUIsU0FBUSx3QkFBd0I7SUFjekQsUUFBUTtRQUNmLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNqQixJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRXJDLElBQUksSUFBSSxDQUFDLGNBQWMsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUNoQyxJQUFJLENBQUMsZUFBZSxHQUFHLFVBQVUsQ0FBQztZQUNsQyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLE9BQWUsRUFBRSxLQUFhLEVBQUUsRUFBRTtnQkFDbEQsTUFBTSxDQUFDLGNBQWMsQ0FBQyxPQUFPLEVBQUUsVUFBVSxFQUFFO29CQUN6QyxLQUFLLEVBQUUsSUFBSTtpQkFDWixDQUFDLENBQUM7WUFDTCxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7SUFFSCxDQUFDO0lBRUQsWUFBWSxnQkFBa0M7UUFDNUMsS0FBSyxDQUFDLGdCQUFnQixDQUFDLENBQUM7UUE1QmpCLFVBQUssR0FBWSxLQUFLLENBQUM7UUFFdkIsc0JBQWlCLEdBQVcsQ0FBQyxDQUFDO1FBRTlCLGFBQVEsR0FBVyxNQUFNLENBQUM7UUFDMUIseUJBQW9CLEdBQVksS0FBSyxDQUFDO1FBQ3RDLFlBQU8sR0FBWSxLQUFLLENBQUM7SUF1QmxDLENBQUM7OEdBL0JVLHNCQUFzQjtrR0FBdEIsc0JBQXNCLHNRQUZ0QixrQkFBa0IsQ0FBQyxzQkFBc0IsQ0FBQyx1RUFZMUMsV0FBVyx1RUMvQnhCLDBuR0F1RkE7OzJGRGxFYSxzQkFBc0I7a0JBVGxDLFNBQVM7K0JBQ0UsaUJBQWlCLGFBTWhCLGtCQUFrQix3QkFBd0I7cUZBSTVDLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLGlCQUFpQjtzQkFBekIsS0FBSztnQkFDRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csb0JBQW9CO3NCQUE1QixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFFa0IsV0FBVztzQkFBbEMsU0FBUzt1QkFBQyxXQUFXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcclxuICBDb21wb25lbnQsXHJcbiAgSW5wdXQsXHJcbiAgVGVtcGxhdGVSZWYsXHJcbiAgVmlld0NoaWxkXHJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQgeyBCYXNlQ29tcG9uZW50TXVsdGlTZWxlY3QgfSBmcm9tICcuLi8uLi8uLi9hcGkvYmFzZS1jb21wb25lbnRzL2Jhc2UtY29tcG9uZW50LW11bHRpLXNlbGVjdCc7XHJcbmltcG9ydCB7IENvbXBvbmVudFByb3ZpZGVycyB9IGZyb20gJy4uLy4uLy4uL2FwaS9oZWxwZXJzL2NvbXBvbmVudC1wcm92aWRlcnMnO1xyXG5pbXBvcnQgeyBDb21wb25lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vYXBpL3NlcnZpY2VzL2NvbXBvbmVudC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTXVsdGlTZWxlY3QgfSBmcm9tICdwcmltZW5nL211bHRpc2VsZWN0JztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAna3YtbXVsdGktc2VsZWN0JyxcclxuICB0ZW1wbGF0ZVVybDogJy4va3YtbXVsdGktc2VsZWN0LmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFtcclxuICAgICcuL2t2LW11bHRpLXNlbGVjdC5jb21wb25lbnQuc2NzcycsXHJcbiAgICAnLi4vLi4va2Vldm8tY29tcG9uZW50cy1zdHlsZXMuc2NzcydcclxuICBdLFxyXG4gIHByb3ZpZGVyczogQ29tcG9uZW50UHJvdmlkZXJzKEt2TXVsdGlTZWxlY3RDb21wb25lbnQpLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgS3ZNdWx0aVNlbGVjdENvbXBvbmVudCBleHRlbmRzIEJhc2VDb21wb25lbnRNdWx0aVNlbGVjdCB7XHJcblxyXG4gIEBJbnB1dCgpIGdyb3VwOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgaXRlbVRlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55PjtcclxuICBASW5wdXQoKSBtYXhTZWxlY3RlZExhYmVsczogbnVtYmVyID0gMztcclxuICBASW5wdXQoKSBvcHRpb25JbmFjdGl2ZSE6IGJvb2xlYW47XHJcbiAgQElucHV0KCkgYXBwZW5kVG86IHN0cmluZyA9ICdib2R5JztcclxuICBASW5wdXQoKSB0b29sVGlwU2VsZWN0ZWRJdGVtczogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIGxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQFZpZXdDaGlsZChNdWx0aVNlbGVjdCkgbXVsdGlTZWxlY3QhOiBNdWx0aVNlbGVjdDtcclxuXHJcbiAgaW5hY3RpdmVPcHRpb25zITogc3RyaW5nO1xyXG5cclxuICBvdmVycmlkZSBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHN1cGVyLm5nT25Jbml0KCk7XHJcbiAgICB0aGlzLmNhcGl0YWxpemVPcHRpb25zKHRoaXMub3B0aW9ucyk7XHJcbiAgICBcclxuICAgIGlmICh0aGlzLm9wdGlvbkluYWN0aXZlID09IHRydWUpIHtcclxuICAgICAgdGhpcy5pbmFjdGl2ZU9wdGlvbnMgPSAnaW5hY3RpdmUnO1xyXG4gICAgICB0aGlzLm9wdGlvbnMubWFwKChlbGVtZW50OiBPYmplY3QsIGluZGV4OiBudW1iZXIpID0+IHtcclxuICAgICAgICBPYmplY3QuZGVmaW5lUHJvcGVydHkoZWxlbWVudCwgJ2luYWN0aXZlJywge1xyXG4gICAgICAgICAgdmFsdWU6IHRydWUsXHJcbiAgICAgICAgfSk7XHJcbiAgICAgIH0pO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgfSAgXHJcblxyXG4gIGNvbnN0cnVjdG9yKGNvbXBvbmVudFNlcnZpY2U6IENvbXBvbmVudFNlcnZpY2UpIHtcclxuICAgIHN1cGVyKGNvbXBvbmVudFNlcnZpY2UpO1xyXG4gIH1cclxufSIsIjxzcGFuIFtuZ0NsYXNzXT1cInsnZGlzYWJsZSc6ICBvcHRpb25JbmFjdGl2ZSA9PT0gdHJ1ZX1cIj5cclxuICA8a3YtbGFiZWxcclxuICAgIFtjb21wb25lbnRJZF09XCJjb21wb25lbnRJZFwiXHJcbiAgICBbbGFiZWxdPVwibGFiZWwgJiYgKGxhYmVsICsgKHNob3dBc3RlcmlzayA/ICcqJyA6ICcnKSlcIlxyXG4gIC8+XHJcblxyXG4gIDxwLW11bHRpU2VsZWN0XHJcbiAgICAjbXVsdGlTZWxlY3RcclxuICAgIGRpc3BsYXk9XCJjaGlwXCJcclxuICAgIGlucHV0SWQ9XCJtdWx0aXNlbGVjdFwiXHJcbiAgICBzdHlsZUNsYXNzPVwiaW5wdXRzXCJcclxuICAgIFtjbGFzc109XCJiYXNlSW5wdXRDbGFzc1wiXHJcbiAgICBbZ3JvdXBdPVwiZ3JvdXBcIlxyXG4gICAgW2Rpc2FibGVkXT1cImRpc2FibGVkIHx8IGxvYWRpbmdcIlxyXG4gICAgW29wdGlvbnNdPVwib3B0aW9uc1wiXHJcbiAgICBbb3B0aW9uRGlzYWJsZWRdPVwiIGluYWN0aXZlT3B0aW9uc1wiXHJcbiAgICBbb3B0aW9uTGFiZWxdPVwib3B0aW9uTGFiZWxcIlxyXG4gICAgW29wdGlvblZhbHVlXT1cIm9wdGlvblZhbHVlXCJcclxuICAgIFtmaWx0ZXJdPVwiZmlsdGVyXCJcclxuICAgIFtzaG93Q2xlYXJdPVwic2hvd0NsZWFyXCJcclxuICAgIFsobmdNb2RlbCldPVwidmFsdWVcIlxyXG4gICAgKG9uQ2hhbmdlKT1cInNlbGVjdGlvbkNoYW5nZSgkZXZlbnQpXCJcclxuICAgIChvblBhbmVsSGlkZSk9XCJwYW5lbEhpZGUoJGV2ZW50KVwiXHJcbiAgICBbbWF4U2VsZWN0ZWRMYWJlbHNdPVwibWF4U2VsZWN0ZWRMYWJlbHNcIlxyXG4gICAgW2FwcGVuZFRvXT1cImFwcGVuZFRvXCJcclxuICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXHJcbiAgICBbbG9hZGluZ109XCJsb2FkaW5nXCJcclxuICA+XHJcbiAgICBcclxuICAgIEBpZiAoaXRlbVRlbXBsYXRlKSB7XHJcbiAgICAgIDxuZy10ZW1wbGF0ZSBsZXQtaXRlbSBwVGVtcGxhdGU9XCJpdGVtXCI+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lclxyXG4gICAgICAgICAgW25nVGVtcGxhdGVPdXRsZXRdPVwiaXRlbVRlbXBsYXRlXCJcclxuICAgICAgICAgIFtuZ1RlbXBsYXRlT3V0bGV0Q29udGV4dF09XCJ7ICRpbXBsaWNpdDogaXRlbSB9XCJcclxuICAgICAgICA+PC9uZy1jb250YWluZXI+XHJcbiAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICB9IFxyXG5cclxuICAgIEBpZiAobXVsdGlTZWxlY3QgJiYgdG9vbFRpcFNlbGVjdGVkSXRlbXMpIHtcclxuICAgICAgPG5nLXRlbXBsYXRlIGxldC12YWx1ZSBwVGVtcGxhdGU9XCJzZWxlY3RlZEl0ZW1zXCI+XHJcbiAgICAgICAgQGZvciAoaXRlbSBvZiBtdWx0aVNlbGVjdC5jaGlwU2VsZWN0ZWRJdGVtcygpOyB0cmFjayAkaW5kZXgpIHtcclxuICAgICAgICAgIDxkaXYgI3Rva2VuIGNsYXNzPVwicC1tdWx0aXNlbGVjdC10b2tlblwiPlxyXG4gICAgICAgICAgICA8c3BhblxyXG4gICAgICAgICAgICAgIGNsYXNzPVwicC1tdWx0aXNlbGVjdC10b2tlbi1sYWJlbFwiXHJcbiAgICAgICAgICAgICAgW3BUb29sdGlwXT1cIm11bHRpU2VsZWN0LmdldExhYmVsQnlWYWx1ZShpdGVtKSBcIlxyXG4gICAgICAgICAgICAgIHRvb2x0aXBQb3NpdGlvbj1cInRvcFwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICB7eyBtdWx0aVNlbGVjdC5nZXRMYWJlbEJ5VmFsdWUoaXRlbSkgfX1cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgXHJcbiAgICAgICAgICAgIEBpZiAoIWRpc2FibGVkKSB7XHJcbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgICAgIEBpZiAoIW11bHRpU2VsZWN0LnJlbW92ZVRva2VuSWNvblRlbXBsYXRlKSB7XHJcbiAgICAgICAgICAgICAgICAgIDxUaW1lc0NpcmNsZUljb25cclxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdwLWRpc2FibGVkJzogbXVsdGlTZWxlY3QuaXNPcHRpb25EaXNhYmxlZChpdGVtKSB9XCJcclxuICAgICAgICAgICAgICAgICAgICBbc3R5bGVDbGFzc109XCIncC1tdWx0aXNlbGVjdC10b2tlbi1pY29uJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIm11bHRpU2VsZWN0LnJlbW92ZU9wdGlvbihpdGVtLCAkZXZlbnQpXCJcclxuICAgICAgICAgICAgICAgICAgICBbYXR0ci50YWJpbmRleF09XCIwXCJcclxuICAgICAgICAgICAgICAgICAgICBbYXR0ci5kYXRhLXBjLXNlY3Rpb25dPVwiJ2NsZWFyaWNvbidcIlxyXG4gICAgICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtaGlkZGVuXT1cInRydWVcIlxyXG4gICAgICAgICAgICAgICAgICAvPlxyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgQGlmIChtdWx0aVNlbGVjdC5yZW1vdmVUb2tlbkljb25UZW1wbGF0ZSkge1xyXG4gICAgICAgICAgICAgICAgICA8c3BhblxyXG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicC1tdWx0aXNlbGVjdC10b2tlbi1pY29uXCJcclxuICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwibXVsdGlTZWxlY3QucmVtb3ZlT3B0aW9uKGl0ZW0sICRldmVudClcIlxyXG4gICAgICAgICAgICAgICAgICAgIFthdHRyLnRhYmluZGV4XT1cIjBcIlxyXG4gICAgICAgICAgICAgICAgICAgIFthdHRyLmRhdGEtcGMtc2VjdGlvbl09XCInY2xlYXJpY29uJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1oaWRkZW5dPVwidHJ1ZVwiXHJcbiAgICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyXHJcbiAgICAgICAgICAgICAgICAgICAgICAqbmdUZW1wbGF0ZU91dGxldD1cIm11bHRpU2VsZWN0LnJlbW92ZVRva2VuSWNvblRlbXBsYXRlXCJcclxuICAgICAgICAgICAgICAgICAgICA+PC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgfVxyXG4gICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgfVxyXG5cclxuICA8L3AtbXVsdGlTZWxlY3Q+XHJcblxyXG4gIDxrdi1lcnJvciBbaGFzRXJyb3JdPVwiaGFzQ29udHJvbEVycm9yKClcIj57eyBlcnJvTWVzc2FnZSgpIH19PC9rdi1lcnJvcj5cclxuPC9zcGFuPlxyXG48bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbiJdfQ==