@sankhyalabs/ezui 7.1.0-dev.21 → 7.1.0-dev.23

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 (274) hide show
  1. package/dist/cjs/{ApplicationUtils-4fb87a9e.js → ApplicationUtils-006ca96f.js} +1 -1
  2. package/dist/cjs/FormLayout-fe8da83c.js +9 -0
  3. package/dist/cjs/{app-globals-cb31a206.js → app-globals-5cb12916.js} +1 -1
  4. package/dist/cjs/{ez-combo-box-list_5.cjs.entry.js → classic-search-list_7.cjs.entry.js} +212 -5
  5. package/dist/cjs/ez-actions-button.cjs.entry.js +4 -3
  6. package/dist/cjs/ez-alert-list.cjs.entry.js +1 -1
  7. package/dist/cjs/ez-avatar.cjs.entry.js +1 -1
  8. package/dist/cjs/ez-calendar.cjs.entry.js +1 -1
  9. package/dist/cjs/ez-classic-combo-box.cjs.entry.js +36 -15
  10. package/dist/cjs/ez-classic-date-input.cjs.entry.js +201 -0
  11. package/dist/cjs/ez-classic-date-time-input.cjs.entry.js +246 -0
  12. package/dist/cjs/ez-classic-input.cjs.entry.js +99 -18
  13. package/dist/cjs/ez-classic-number-input.cjs.entry.js +205 -0
  14. package/dist/cjs/ez-classic-search-plus.cjs.entry.js +407 -0
  15. package/dist/cjs/ez-classic-search.cjs.entry.js +683 -0
  16. package/dist/cjs/ez-classic-text-area.cjs.entry.js +1 -1
  17. package/dist/cjs/ez-classic-time-input.cjs.entry.js +197 -0
  18. package/dist/cjs/ez-collapsible-box.cjs.entry.js +4 -3
  19. package/dist/cjs/ez-combo-box.cjs.entry.js +4 -3
  20. package/dist/cjs/ez-date-input.cjs.entry.js +1 -1
  21. package/dist/cjs/ez-date-time-input.cjs.entry.js +1 -1
  22. package/dist/cjs/ez-dialog.cjs.entry.js +1 -1
  23. package/dist/cjs/ez-double-list.cjs.entry.js +1 -1
  24. package/dist/cjs/ez-file-item.cjs.entry.js +1 -1
  25. package/dist/cjs/ez-form-view.cjs.entry.js +121 -35
  26. package/dist/cjs/ez-form.cjs.entry.js +11 -7
  27. package/dist/cjs/ez-grid.cjs.entry.js +7 -6
  28. package/dist/cjs/ez-guide-navigator.cjs.entry.js +1 -1
  29. package/dist/cjs/ez-icon.cjs.entry.js +1 -1
  30. package/dist/cjs/ez-link-builder_6.cjs.entry.js +1 -1
  31. package/dist/cjs/ez-list.cjs.entry.js +1 -1
  32. package/dist/cjs/ez-modal-container.cjs.entry.js +1 -1
  33. package/dist/cjs/ez-modal.cjs.entry.js +1 -1
  34. package/dist/cjs/ez-multi-selection-list.cjs.entry.js +1 -1
  35. package/dist/cjs/ez-number-input.cjs.entry.js +1 -1
  36. package/dist/cjs/ez-pagination.cjs.entry.js +1 -1
  37. package/dist/cjs/ez-popup.cjs.entry.js +1 -1
  38. package/dist/cjs/ez-search-plus.cjs.entry.js +7 -6
  39. package/dist/cjs/ez-search-result-list.cjs.entry.js +1 -1
  40. package/dist/cjs/ez-search.cjs.entry.js +10 -9
  41. package/dist/cjs/ez-sidebar-navigator.cjs.entry.js +1 -1
  42. package/dist/cjs/ez-skeleton.cjs.entry.js +1 -1
  43. package/dist/cjs/ez-sortable-list.cjs.entry.js +1 -1
  44. package/dist/cjs/ez-spinner.cjs.entry.js +1 -1
  45. package/dist/cjs/ez-split-button.cjs.entry.js +13 -14
  46. package/dist/cjs/ez-split-item.cjs.entry.js +4 -3
  47. package/dist/cjs/ez-text-input.cjs.entry.js +37 -0
  48. package/dist/cjs/ez-time-input.cjs.entry.js +1 -1
  49. package/dist/cjs/ez-tree.cjs.entry.js +1 -1
  50. package/dist/cjs/ez-upload.cjs.entry.js +2 -2
  51. package/dist/cjs/ezui.cjs.js +3 -3
  52. package/dist/cjs/filter-column.cjs.entry.js +1 -1
  53. package/dist/cjs/{index-e61642ff.js → index-350d0fa0.js} +30 -0
  54. package/dist/cjs/index-a7b0c73d.js +42 -18
  55. package/dist/cjs/loader.cjs.js +3 -3
  56. package/dist/cjs/{search-column-51e50b59.js → search-column-fbf680d7.js} +10 -5
  57. package/dist/cjs/searchFormatters-051f8677.js +23 -0
  58. package/dist/cjs/{FormLayout-18853e70.js → types-6a5df0c7.js} +0 -6
  59. package/dist/collection/collection-manifest.json +58 -5
  60. package/dist/collection/components/ez-classic-combo-box/ez-classic-combo-box.css +5 -0
  61. package/dist/collection/components/ez-classic-combo-box/ez-classic-combo-box.js +77 -18
  62. package/dist/collection/components/ez-classic-date-input/ez-classic-date-input.css +44 -0
  63. package/dist/collection/components/ez-classic-date-input/ez-classic-date-input.js +541 -0
  64. package/dist/collection/components/ez-classic-date-time-input/ez-classic-date-time-input.css +44 -0
  65. package/dist/collection/components/ez-classic-date-time-input/ez-classic-date-time-input.js +586 -0
  66. package/dist/collection/components/ez-classic-input/ez-classic-input.css +33 -5
  67. package/dist/collection/components/ez-classic-input/ez-classic-input.js +155 -19
  68. package/dist/collection/components/ez-classic-number-input/ez-classic-number-input.css +16 -0
  69. package/dist/collection/components/ez-classic-number-input/ez-classic-number-input.js +583 -0
  70. package/dist/collection/components/ez-classic-search/ez-classic-search.css +126 -0
  71. package/dist/collection/components/ez-classic-search/ez-classic-search.js +1330 -0
  72. package/dist/collection/components/ez-classic-search/subcomponent/classic-search-list/classic-search-list.css +227 -0
  73. package/dist/collection/components/ez-classic-search/subcomponent/classic-search-list/classic-search-list.js +316 -0
  74. package/dist/collection/components/ez-classic-search/utils/searchFormatters.js +18 -0
  75. package/dist/collection/components/ez-classic-search-plus/ez-classic-search-plus.css +406 -0
  76. package/dist/collection/components/ez-classic-search-plus/ez-classic-search-plus.js +988 -0
  77. package/dist/collection/components/ez-classic-search-plus/subcomponent/ez-search-result-list/ez-classic-search-result-list.css +221 -0
  78. package/dist/collection/components/ez-classic-search-plus/subcomponent/ez-search-result-list/ez-classic-search-result-list.js +298 -0
  79. package/dist/collection/components/ez-classic-text-area/ez-classic-text-area.css +1 -0
  80. package/dist/collection/components/ez-classic-time-input/ez-classic-time-input.css +14 -0
  81. package/dist/collection/components/ez-classic-time-input/ez-classic-time-input.js +511 -0
  82. package/dist/collection/components/ez-form/ez-form.js +9 -5
  83. package/dist/collection/components/ez-form-view/ez-form-view.css +8 -3
  84. package/dist/collection/components/ez-form-view/ez-form-view.js +40 -4
  85. package/dist/collection/components/ez-form-view/fieldbuilder/FieldBuilder.js +6 -3
  86. package/dist/collection/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.js +9 -6
  87. package/dist/collection/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.js +8 -1
  88. package/dist/collection/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.js +30 -6
  89. package/dist/collection/components/ez-form-view/fieldbuilder/templates/FileInput.tpl.js +1 -1
  90. package/dist/collection/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.js +12 -5
  91. package/dist/collection/components/ez-form-view/fieldbuilder/templates/RichText.tpl.js +1 -1
  92. package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.js +9 -3
  93. package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInputPlus.tpl.js +8 -1
  94. package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextArea.tpl.js +7 -1
  95. package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.js +8 -1
  96. package/dist/collection/components/ez-form-view/structure/index.js +1 -1
  97. package/dist/collection/components/ez-icon/ez-icon.css +1 -0
  98. package/dist/collection/components/ez-rich-text/ez-rich-text.js +2 -3
  99. package/dist/collection/components/ez-split-button/ez-split-button.js +18 -13
  100. package/dist/collection/components/ez-text-input/ez-text-input.js +38 -1
  101. package/dist/collection/utils/form/DataBinder.js +2 -2
  102. package/dist/collection/utils/form/interfaces/FormLayout.js +3 -1
  103. package/dist/collection/utils/i18n/locales/en-us.js +10 -0
  104. package/dist/collection/utils/i18n/locales/es-es.js +10 -0
  105. package/dist/collection/utils/i18n/locales/pt-br.js +10 -0
  106. package/dist/collection/utils/searchColumn/search-column.js +6 -1
  107. package/dist/custom-elements/index.d.ts +48 -0
  108. package/dist/custom-elements/index.js +2722 -337
  109. package/dist/esm/{ApplicationUtils-985c24ae.js → ApplicationUtils-0c5cb207.js} +1 -1
  110. package/dist/esm/FormLayout-bda67973.js +9 -0
  111. package/dist/esm/{app-globals-75f8a758.js → app-globals-1db10325.js} +1 -1
  112. package/dist/esm/{ez-combo-box-list_5.entry.js → classic-search-list_7.entry.js} +212 -7
  113. package/dist/esm/ez-actions-button.entry.js +4 -3
  114. package/dist/esm/ez-alert-list.entry.js +1 -1
  115. package/dist/esm/ez-avatar.entry.js +1 -1
  116. package/dist/esm/ez-calendar.entry.js +1 -1
  117. package/dist/esm/ez-classic-combo-box.entry.js +36 -15
  118. package/dist/esm/ez-classic-date-input.entry.js +197 -0
  119. package/dist/esm/ez-classic-date-time-input.entry.js +242 -0
  120. package/dist/esm/ez-classic-input.entry.js +100 -19
  121. package/dist/esm/ez-classic-number-input.entry.js +201 -0
  122. package/dist/esm/ez-classic-search-plus.entry.js +403 -0
  123. package/dist/esm/ez-classic-search.entry.js +679 -0
  124. package/dist/esm/ez-classic-text-area.entry.js +1 -1
  125. package/dist/esm/ez-classic-time-input.entry.js +193 -0
  126. package/dist/esm/ez-collapsible-box.entry.js +4 -3
  127. package/dist/esm/ez-combo-box.entry.js +4 -3
  128. package/dist/esm/ez-date-input.entry.js +1 -1
  129. package/dist/esm/ez-date-time-input.entry.js +1 -1
  130. package/dist/esm/ez-dialog.entry.js +1 -1
  131. package/dist/esm/ez-double-list.entry.js +1 -1
  132. package/dist/esm/ez-file-item.entry.js +1 -1
  133. package/dist/esm/ez-form-view.entry.js +121 -35
  134. package/dist/esm/ez-form.entry.js +11 -7
  135. package/dist/esm/ez-grid.entry.js +5 -4
  136. package/dist/esm/ez-guide-navigator.entry.js +1 -1
  137. package/dist/esm/ez-icon.entry.js +1 -1
  138. package/dist/esm/ez-link-builder_6.entry.js +1 -1
  139. package/dist/esm/ez-list.entry.js +1 -1
  140. package/dist/esm/ez-modal-container.entry.js +1 -1
  141. package/dist/esm/ez-modal.entry.js +1 -1
  142. package/dist/esm/ez-multi-selection-list.entry.js +1 -1
  143. package/dist/esm/ez-number-input.entry.js +1 -1
  144. package/dist/esm/ez-pagination.entry.js +1 -1
  145. package/dist/esm/ez-popup.entry.js +1 -1
  146. package/dist/esm/ez-search-plus.entry.js +4 -3
  147. package/dist/esm/ez-search-result-list.entry.js +1 -1
  148. package/dist/esm/ez-search.entry.js +4 -3
  149. package/dist/esm/ez-sidebar-navigator.entry.js +1 -1
  150. package/dist/esm/ez-skeleton.entry.js +1 -1
  151. package/dist/esm/ez-sortable-list.entry.js +1 -1
  152. package/dist/esm/ez-spinner.entry.js +1 -1
  153. package/dist/esm/ez-split-button.entry.js +13 -14
  154. package/dist/esm/ez-split-item.entry.js +4 -3
  155. package/dist/esm/ez-text-input.entry.js +37 -0
  156. package/dist/esm/ez-time-input.entry.js +1 -1
  157. package/dist/esm/ez-tree.entry.js +1 -1
  158. package/dist/esm/ez-upload.entry.js +2 -2
  159. package/dist/esm/ezui.js +3 -3
  160. package/dist/esm/filter-column.entry.js +1 -1
  161. package/dist/esm/{index-a3b24b5d.js → index-225aa0c3.js} +30 -0
  162. package/dist/esm/index-baa5e267.js +42 -18
  163. package/dist/esm/loader.js +3 -3
  164. package/dist/esm/{search-column-0c42248b.js → search-column-40a78cac.js} +10 -5
  165. package/dist/esm/searchFormatters-6d9b06e4.js +20 -0
  166. package/dist/esm/{FormLayout-071d324c.js → types-6f6b2650.js} +1 -7
  167. package/dist/ezui/ezui.esm.js +1 -1
  168. package/dist/ezui/{p-1c3f43e8.entry.js → p-0248846f.entry.js} +1 -1
  169. package/dist/ezui/p-0625743b.entry.js +1 -0
  170. package/dist/ezui/p-07fb22c3.entry.js +1 -0
  171. package/dist/ezui/p-26cd4c2e.entry.js +1 -0
  172. package/dist/ezui/{p-2fd16ff2.entry.js → p-2da9faf1.entry.js} +1 -1
  173. package/dist/ezui/{p-1bf40959.entry.js → p-34d459e4.entry.js} +1 -1
  174. package/dist/ezui/p-44183c39.entry.js +1 -0
  175. package/dist/ezui/p-47e4a8ce.js +1 -0
  176. package/dist/ezui/p-4af745e1.entry.js +1 -0
  177. package/dist/ezui/{p-6c484770.entry.js → p-4c2a4435.entry.js} +1 -1
  178. package/dist/ezui/{p-782fe2e3.entry.js → p-4c76b365.entry.js} +1 -1
  179. package/dist/ezui/p-4e576bb9.entry.js +1 -0
  180. package/dist/ezui/{p-5e6de2c1.entry.js → p-4e869617.entry.js} +1 -1
  181. package/dist/ezui/{p-0e325699.entry.js → p-4f7ad3ee.entry.js} +1 -1
  182. package/dist/ezui/{p-582c3f90.entry.js → p-544605c4.entry.js} +1 -1
  183. package/dist/ezui/p-556bf329.entry.js +1 -0
  184. package/dist/ezui/{p-2676e2a3.entry.js → p-56565777.entry.js} +1 -1
  185. package/dist/ezui/p-57b68d43.entry.js +1 -0
  186. package/dist/ezui/p-5895e687.js +1 -0
  187. package/dist/ezui/{p-714452c7.entry.js → p-5abb220b.entry.js} +1 -1
  188. package/dist/ezui/p-619225ce.entry.js +1 -0
  189. package/dist/ezui/p-679a2942.entry.js +1 -0
  190. package/dist/ezui/{p-474076b3.js → p-6a794336.js} +1 -1
  191. package/dist/ezui/{p-4ea5c8a7.entry.js → p-6ac056d7.entry.js} +1 -1
  192. package/dist/ezui/p-7134726a.entry.js +1 -0
  193. package/dist/ezui/{p-67f9fadb.entry.js → p-729bd1be.entry.js} +1 -1
  194. package/dist/ezui/p-7953ecb9.entry.js +1 -0
  195. package/dist/ezui/{p-e2e0dd76.entry.js → p-7edc3ef7.entry.js} +1 -1
  196. package/dist/ezui/p-88a115b3.js +1 -0
  197. package/dist/ezui/{p-f45ddc1f.entry.js → p-8e5f1c74.entry.js} +1 -1
  198. package/dist/ezui/p-951b32a1.entry.js +1 -0
  199. package/dist/ezui/{p-9568a93d.entry.js → p-97312709.entry.js} +1 -1
  200. package/dist/ezui/{p-0ec5c128.js → p-9825c1d2.js} +1 -1
  201. package/dist/ezui/p-987185c4.entry.js +1 -0
  202. package/dist/ezui/p-a0f51b99.entry.js +1 -0
  203. package/dist/ezui/p-a3bad8f8.entry.js +1 -0
  204. package/dist/ezui/{p-6570ca10.entry.js → p-a4351519.entry.js} +1 -1
  205. package/dist/ezui/{p-7624767b.entry.js → p-a872c642.entry.js} +1 -1
  206. package/dist/ezui/p-b0a716ef.entry.js +1 -0
  207. package/dist/ezui/p-b36475f9.entry.js +1 -0
  208. package/dist/ezui/{p-2b23906a.entry.js → p-b705b342.entry.js} +1 -1
  209. package/dist/ezui/{p-9771ea3c.entry.js → p-b8078832.entry.js} +1 -1
  210. package/dist/ezui/p-c0ae79fa.entry.js +1 -0
  211. package/dist/ezui/{p-98218fbc.js → p-c178730b.js} +1 -1
  212. package/dist/ezui/{p-a1a63294.entry.js → p-c56ee8c0.entry.js} +1 -1
  213. package/dist/ezui/{p-3d71e8e1.entry.js → p-cd8be0c7.entry.js} +1 -1
  214. package/dist/ezui/{p-a13e65a4.entry.js → p-ce0a0036.entry.js} +1 -1
  215. package/dist/ezui/{p-0aafbc30.entry.js → p-df802548.entry.js} +1 -1
  216. package/dist/ezui/p-e2689b33.entry.js +1 -0
  217. package/dist/ezui/{p-dc192d01.entry.js → p-e2972977.entry.js} +1 -1
  218. package/dist/ezui/{p-47d9256e.entry.js → p-e3a42f47.entry.js} +1 -1
  219. package/dist/ezui/p-e3cd5080.entry.js +1 -0
  220. package/dist/ezui/{p-28af6826.entry.js → p-e493ad57.entry.js} +1 -1
  221. package/dist/ezui/{p-3fcf79c7.entry.js → p-f5552540.entry.js} +1 -1
  222. package/dist/ezui/p-ff4312d5.js +1 -0
  223. package/dist/types/components/ez-classic-combo-box/ez-classic-combo-box.d.ts +9 -3
  224. package/dist/types/components/ez-classic-date-input/ez-classic-date-input.d.ts +91 -0
  225. package/dist/types/components/ez-classic-date-time-input/ez-classic-date-time-input.d.ts +95 -0
  226. package/dist/types/components/ez-classic-input/ez-classic-input.d.ts +18 -1
  227. package/dist/types/components/ez-classic-number-input/ez-classic-number-input.d.ts +101 -0
  228. package/dist/types/components/ez-classic-search/ez-classic-search.d.ts +219 -0
  229. package/dist/types/components/ez-classic-search/subcomponent/classic-search-list/classic-search-list.d.ts +29 -0
  230. package/dist/types/components/ez-classic-search/utils/searchFormatters.d.ts +2 -0
  231. package/dist/types/components/ez-classic-search-plus/ez-classic-search-plus.d.ts +186 -0
  232. package/dist/types/components/ez-classic-search-plus/subcomponent/ez-search-result-list/ez-classic-search-result-list.d.ts +29 -0
  233. package/dist/types/components/ez-form/ez-form.d.ts +1 -0
  234. package/dist/types/components/ez-form-view/ez-form-view.d.ts +7 -0
  235. package/dist/types/components/ez-form-view/fieldbuilder/FieldBuilder.d.ts +7 -2
  236. package/dist/types/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.d.ts +3 -2
  237. package/dist/types/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.d.ts +2 -1
  238. package/dist/types/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.d.ts +5 -4
  239. package/dist/types/components/ez-form-view/fieldbuilder/templates/FileInput.tpl.d.ts +2 -1
  240. package/dist/types/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.d.ts +3 -2
  241. package/dist/types/components/ez-form-view/fieldbuilder/templates/RichText.tpl.d.ts +2 -1
  242. package/dist/types/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.d.ts +2 -1
  243. package/dist/types/components/ez-form-view/fieldbuilder/templates/SearchInputPlus.tpl.d.ts +2 -1
  244. package/dist/types/components/ez-form-view/fieldbuilder/templates/TextArea.tpl.d.ts +2 -1
  245. package/dist/types/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.d.ts +2 -1
  246. package/dist/types/components/ez-split-button/ez-split-button.d.ts +1 -2
  247. package/dist/types/components/ez-text-input/ez-text-input.d.ts +4 -0
  248. package/dist/types/components.d.ts +2967 -1814
  249. package/dist/types/utils/form/interfaces/FormLayout.d.ts +3 -1
  250. package/dist/types/utils/i18n/locales/en-us.d.ts +10 -0
  251. package/dist/types/utils/i18n/locales/es-es.d.ts +10 -0
  252. package/dist/types/utils/i18n/locales/pt-br.d.ts +10 -0
  253. package/dist/types/utils/i18n/translations.d.ts +30 -0
  254. package/package.json +1 -1
  255. package/react/components.d.ts +8 -0
  256. package/react/components.js +8 -0
  257. package/react/components.js.map +1 -1
  258. package/dist/ezui/p-2e5de2a7.entry.js +0 -1
  259. package/dist/ezui/p-30ffb9ed.js +0 -1
  260. package/dist/ezui/p-48effc69.entry.js +0 -1
  261. package/dist/ezui/p-6a982147.js +0 -1
  262. package/dist/ezui/p-6d7f2fdc.entry.js +0 -1
  263. package/dist/ezui/p-6f466aec.entry.js +0 -1
  264. package/dist/ezui/p-7fe97ef5.entry.js +0 -1
  265. package/dist/ezui/p-8709c4f6.entry.js +0 -1
  266. package/dist/ezui/p-8a8006e6.entry.js +0 -1
  267. package/dist/ezui/p-8d626d2b.entry.js +0 -1
  268. package/dist/ezui/p-9b2e6438.entry.js +0 -1
  269. package/dist/ezui/p-9d004e22.entry.js +0 -1
  270. package/dist/ezui/p-c711900a.entry.js +0 -1
  271. package/dist/ezui/p-dee18824.entry.js +0 -1
  272. package/dist/ezui/p-e4a579f2.entry.js +0 -1
  273. package/dist/ezui/p-e82a12c6.entry.js +0 -1
  274. package/dist/ezui/p-f1bbf23f.entry.js +0 -1
@@ -1,6 +1,6 @@
1
- import { h, HTMLElement as HTMLElement$1, createEvent, Host, forceUpdate, Fragment, proxyCustomElement } from '@stencil/core/internal/client';
1
+ import { HTMLElement as HTMLElement$1, createEvent, h, Host, forceUpdate, Fragment, proxyCustomElement } from '@stencil/core/internal/client';
2
2
  export { setAssetPath, setPlatformOptions } from '@stencil/core/internal/client';
3
- import { ApplicationContext, LangUtils, UserInterface, DateUtils as DateUtils$1, Action, StringUtils as StringUtils$1, ObjectUtils as ObjectUtils$1, WaitingChangeException, DataUnitAction, FloatingManager, ElementIDUtils, JSUtils, KeyboardManager, HTMLBuilder, TimeFormatter, DataUnit, LockManager, LockManagerOperation, DataType, NumberUtils as NumberUtils$1, MaskFormatter as MaskFormatter$1, SortMode, ColumnFilterManager as ColumnFilterManager$1, ArrayUtils as ArrayUtils$1, FieldComparator, OverflowWatcher, OVERFLOWED_CLASS_NAME, RECORD_DATE_FORMAT, DataUnitInMemoryLoader } from '@sankhyalabs/core';
3
+ import { ApplicationContext, LangUtils, StringUtils as StringUtils$1, UserInterface, DateUtils as DateUtils$1, Action, ObjectUtils as ObjectUtils$1, WaitingChangeException, DataUnitAction, FloatingManager, ElementIDUtils, JSUtils, KeyboardManager, TimeFormatter, MaskFormatter as MaskFormatter$1, NumberUtils as NumberUtils$1, HTMLBuilder, DataUnit, LockManager, LockManagerOperation, DataType, SortMode, ColumnFilterManager as ColumnFilterManager$1, ArrayUtils as ArrayUtils$1, FieldComparator, OverflowWatcher, OVERFLOWED_CLASS_NAME, RECORD_DATE_FORMAT, DataUnitInMemoryLoader } from '@sankhyalabs/core';
4
4
  import { SelectionMode } from '@sankhyalabs/core/dist/dataunit/DataUnit';
5
5
 
6
6
  const isString = obj => typeof obj === 'string';
@@ -3050,6 +3050,16 @@ const ptBrTranslations = {
3050
3050
  optionLoaderNotDefined: "optionLoader não definido",
3051
3051
  defaultCodeLabel: "Cód.",
3052
3052
  },
3053
+ "ez-classic-search": {
3054
+ emptyList: "Nenhum resultado encontrado",
3055
+ emptySearch: "Nenhum resultado de {{field}} encontrado",
3056
+ showMore: "Mostrar mais"
3057
+ },
3058
+ "ez-classic-search-plus": {
3059
+ emptyList: "Nenhum resultado encontrado",
3060
+ optionLoaderNotDefined: "optionLoader não definido",
3061
+ defaultCodeLabel: "Cód.",
3062
+ },
3053
3063
  "ez-sortable-list": {
3054
3064
  emptyMessage: "Nenhum item na lista",
3055
3065
  entityLabel: "item",
@@ -3353,6 +3363,16 @@ const enUsTranslations = {
3353
3363
  optionLoaderNotDefined: "optionLoader not defined",
3354
3364
  defaultCodeLabel: "Code",
3355
3365
  },
3366
+ "ez-classic-search": {
3367
+ emptyList: "No results found",
3368
+ emptySearch: "No results for {{field}} found",
3369
+ showMore: "Show more"
3370
+ },
3371
+ "ez-classic-search-plus": {
3372
+ emptyList: "No results found",
3373
+ optionLoaderNotDefined: "optionLoader not defined",
3374
+ defaultCodeLabel: "Code",
3375
+ },
3356
3376
  "ez-sortable-list": {
3357
3377
  emptyMessage: "No items in the list",
3358
3378
  entityLabel: "item",
@@ -3656,6 +3676,16 @@ const esEsTranslations = {
3656
3676
  optionLoaderNotDefined: "optionLoader no definido",
3657
3677
  defaultCodeLabel: "Cód.",
3658
3678
  },
3679
+ "ez-classic-search": {
3680
+ emptyList: "No se encontraron resultados",
3681
+ emptySearch: "No se encontraron resultados de {{field}}",
3682
+ showMore: "Mostrar más"
3683
+ },
3684
+ "ez-classic-search-plus": {
3685
+ emptyList: "No se encontraron resultados",
3686
+ optionLoaderNotDefined: "optionLoader no definido",
3687
+ defaultCodeLabel: "Cód.",
3688
+ },
3659
3689
  "ez-sortable-list": {
3660
3690
  emptyMessage: "No hay elementos en la lista",
3661
3691
  entityLabel: "elemento",
@@ -3744,6 +3774,125 @@ async function initializeApp() {
3744
3774
 
3745
3775
  const globalScripts = initializeApp;
3746
3776
 
3777
+ const START_HIGH_LIGHT_TAG$1 = "<span class='card-item__highlight'>";
3778
+ const END_HIGH_LIGHT_TAG$1 = "</span>";
3779
+ function replaceHighlight$1(value) {
3780
+ const startHighlight = new RegExp(START_HIGH_LIGHT_TAG$1, 'g');
3781
+ const endHighlight = new RegExp(END_HIGH_LIGHT_TAG$1, 'g');
3782
+ const newValue = String(value !== null && value !== void 0 ? value : "").replace(startHighlight, '').replace(endHighlight, '');
3783
+ return replaceQuotes$1(newValue);
3784
+ }
3785
+ function replaceQuotes$1(text) {
3786
+ if (text == undefined) {
3787
+ return;
3788
+ }
3789
+ return String(text)
3790
+ .replace(/&amp;/g, '&')
3791
+ .replace(/&lt;/g, '<')
3792
+ .replace(/&gt;/g, '>')
3793
+ .replace(/&quot;/g, '"');
3794
+ }
3795
+
3796
+ const classicSearchListCss = ":host{--ez-classic-search__list-title--primary:var(--title--primary, #2B3A54);--ez-classic-search__list-text--primary:var(--text--primary, #626e82);--ez-classic-search__list-height:calc(var(--ez-classic-search--font-size) + var(--ez-classic-search--space--medium) + 4px);--ez-classic-search__list-min-width:64px;--ez-classic-search__scrollbar--color-default:var(--scrollbar--default, #626e82);--ez-classic-search__scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--ez-classic-search__scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--ez-classic-search__scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--ez-classic-search__scrollbar--border-radius:var(--border--radius-small, 6px);--ez-classic-search__scrollbar--width:var(--space--small, 6px);--ez-classic-search--border-radius-small:var(--border--radius-small, 6px);--ez-classic-search--font-size:var(--text--medium, 14px);--ez-classic-search--font-family:var(--font-pattern, Arial);--ez-classic-search--font-weight--large:var(--text-weight--large, 500);--ez-classic-search--font-weight--medium:var(--text-weight--medium, 400);--ez-classic-search--background-medium:var(--background--medium, #f0f3f7);--ez-classic-search--line-height:calc(var(--text--medium, 14px) + 4px)}.list-options{position:relative;z-index:var(--more-visible, 2);margin:var(--space--small) 0px;padding:0px;padding-inline-start:0px;box-sizing:border-box;width:100%;height:100%;max-height:350px;min-width:150px;display:flex;flex-direction:column;scroll-behavior:smooth;overflow-y:auto;overflow-x:hidden;scrollbar-width:thin;scrollbar-color:var(--ez-classic-search__scrollbar--color-clicked) var(--ez-classic-search__scrollbar--color-background)}.list-options::-webkit-scrollbar{background-color:var(--scrollbar--background);width:var(--space--small);max-width:var(--space--small);min-width:var(--space--small);height:var(--space--small);max-height:var(--space--small);min-height:var(--space--small)}.list-options::-webkit-scrollbar-track{background-color:var(--ez-classic-search__scrollbar--color-background);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb{background-color:var(--ez-classic-search__scrollbar--color-default);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb:vertical:hover,.list-options::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--ez-classic-search__scrollbar--color-hover)}.list-options::-webkit-scrollbar-thumb:vertical:active,.list-options::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--ez-classic-search__scrollbar--color-clicked)}.message{text-align:center;display:flex;justify-content:center;align-items:center;list-style-type:none;margin:var(--space--medium) 0px;min-height:var(--ez-classic-search__list-height)}.message__no-result{color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size)}.message__loading{border-radius:50%;width:14px;height:14px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;border:3px solid var(--ez-classic-search__list-title--primary);border-top:3px solid transparent}.item__value,.item__label{flex-basis:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size);line-height:var(--ez-classic-search--line-height)}.item__label{font-weight:var(--ez-classic-search--font-weight--medium)}.item__label--bold{font-weight:var(--ez-classic-search--font-weight--large)}.item__value{text-align:center;color:var(--ez-classic-search__list-text--primary);font-weight:var(--ez-classic-search--font-weight--large)}.item__value--hidden{visibility:hidden;position:absolute;white-space:nowrap;z-index:-1;top:0;left:0}.item__label{text-align:left}.item__list>li:hover{background-color:var(--ez-classic-search--background-medium)}.item{display:flex;align-items:center;width:100%;box-sizing:border-box;list-style-type:none;cursor:pointer;border-radius:var(--ez-classic-search--border-radius-small);gap:var(--space--small, 6px)}.preselected{background-color:var(--background--medium)}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@supports not (scrollbar-width: thin){.item{padding-right:8px}}";
3797
+
3798
+ const ClassicSearchList$1 = class extends HTMLElement$1 {
3799
+ constructor() {
3800
+ super();
3801
+ this.__registerHost();
3802
+ this.__attachShadow();
3803
+ this.changeValue = createEvent(this, "changeValue", 7);
3804
+ this.changePreSelection = createEvent(this, "changePreSelection", 7);
3805
+ this._startHighlightTag = "<span class='card-item__highlight'>";
3806
+ this._endHighlightTag = "</span>";
3807
+ this.MAX_HEIGHT = 350;
3808
+ this.HEADER_MENU_HEIGHT = 60;
3809
+ this.showLoading = undefined;
3810
+ this.visibleOptions = [];
3811
+ this.textEmptyList = undefined;
3812
+ this.canShowListOptions = undefined;
3813
+ this.value = undefined;
3814
+ this.showOptionValue = true;
3815
+ this.preSelection = undefined;
3816
+ }
3817
+ async nextOption() {
3818
+ const newPreSelection = this.preSelection === undefined ? 0 : Math.min(this.preSelection + 1, this.visibleOptions.length - 1);
3819
+ this.changePreSelection.emit(newPreSelection);
3820
+ this.scrollToOption(this.visibleOptions[newPreSelection]);
3821
+ }
3822
+ async previousOption() {
3823
+ const newPreSelection = this.preSelection === undefined ? 0 : Math.max(this.preSelection - 1, 0);
3824
+ this.changePreSelection.emit(newPreSelection);
3825
+ this.scrollToOption(this.visibleOptions[newPreSelection]);
3826
+ }
3827
+ selectOption(newOption) {
3828
+ const newOptionsReplaced = Object.assign(Object.assign({}, newOption), { value: replaceHighlight$1(newOption === null || newOption === void 0 ? void 0 : newOption.value), label: replaceHighlight$1(newOption === null || newOption === void 0 ? void 0 : newOption.label) });
3829
+ const newOptionsFormatted = Object.assign(Object.assign({}, newOptionsReplaced), { value: replaceQuotes$1(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.value), label: replaceQuotes$1(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.label) });
3830
+ this.changeValue.emit(newOptionsFormatted);
3831
+ }
3832
+ createOption(detail) {
3833
+ let { key, title } = detail;
3834
+ const startHighlight = new RegExp(this._startHighlightTag, 'g');
3835
+ const endHighlight = new RegExp(this._endHighlightTag, 'g');
3836
+ title = StringUtils$1.decodeHtmlEntities(title);
3837
+ const option = {
3838
+ value: key === null || key === void 0 ? void 0 : key.replace(startHighlight, '').replace(endHighlight, ''),
3839
+ label: title === null || title === void 0 ? void 0 : title.replace(startHighlight, '').replace(endHighlight, '')
3840
+ };
3841
+ this.selectOption(option);
3842
+ }
3843
+ scrollToOption(opt) {
3844
+ window.requestAnimationFrame(() => {
3845
+ const liElem = (opt === null || opt === void 0 ? void 0 : opt.value)
3846
+ ? this._optionsList.querySelector(`div#item_${opt.value.replace(/([ #;&,.+*~':"!^$[\]()=<>|/\\])/g, '\\$1')}`)
3847
+ : undefined;
3848
+ if (liElem) {
3849
+ liElem.scrollIntoView({ behavior: "smooth", block: "nearest" });
3850
+ }
3851
+ });
3852
+ }
3853
+ buildItem(opt, index) {
3854
+ opt.label = opt.label || opt.value;
3855
+ const card = {
3856
+ key: opt.value,
3857
+ title: opt.label,
3858
+ details: opt.details
3859
+ };
3860
+ return h("div", { style: { "height": "100%" }, class: index === this.preSelection ? "item preselected" : "item", id: `item_${opt.value}`, onMouseDown: () => this.createOption(card), onMouseOver: () => this.changePreSelection.emit(index) }, h("ez-card-item", { item: card, compacted: true, enableKey: this.showOptionValue }));
3861
+ }
3862
+ componentDidLoad() {
3863
+ if (this._optionsList) {
3864
+ this._optionsList.style.maxHeight = `${this.MAX_HEIGHT}px`;
3865
+ }
3866
+ }
3867
+ componentDidUpdate() {
3868
+ if (this._optionsList) {
3869
+ const rect = this._optionsList.getBoundingClientRect();
3870
+ const spaceBelow = window.innerHeight - rect.bottom;
3871
+ if (spaceBelow < 0) {
3872
+ this.adjustMaxHeight(rect);
3873
+ }
3874
+ }
3875
+ }
3876
+ adjustMaxHeight(rect) {
3877
+ if (this._optionsList) {
3878
+ const spaceAbove = rect.top - this.HEADER_MENU_HEIGHT;
3879
+ const maxHeight = this.MAX_HEIGHT;
3880
+ const height = Math.min(spaceAbove, maxHeight);
3881
+ this._optionsList.style.maxHeight = `${height}px`;
3882
+ }
3883
+ }
3884
+ cleanEmptyObjectArray(arr) {
3885
+ return arr.filter(item => ((item === null || item === void 0 ? void 0 : item.value) !== undefined));
3886
+ }
3887
+ render() {
3888
+ return (h(Host, null, h("ul", { class: "list-options", ref: elem => this._optionsList = elem }, !this.showLoading
3889
+ && this.cleanEmptyObjectArray(this.visibleOptions).length === 0
3890
+ && h("div", { class: "message" }, h("span", { class: "message__no-result" }, this.textEmptyList)), this.showLoading
3891
+ && h("div", { class: "message" }, h("div", { class: "message__loading" })), this.canShowListOptions && this.visibleOptions.map((opt, index) => this.buildItem(opt, index)))));
3892
+ }
3893
+ static get style() { return classicSearchListCss; }
3894
+ };
3895
+
3747
3896
  // Unique ID creation requires a high quality random # generator. In the browser we therefore
3748
3897
  // require the crypto API and do not support built-in fallback to lower quality random number
3749
3898
  // generators (like Math.random()).
@@ -4686,8 +4835,8 @@ class DataBinder {
4686
4835
  }
4687
4836
  }
4688
4837
  bindSearchOptionsLoader(fieldName, field) {
4689
- if ((field.nodeName === "EZ-SEARCH" || field.nodeName === "EZ-SEARCH-PLUS") && field["optionLoader"] == undefined) {
4690
- const isSearchPlus = field.nodeName === "EZ-SEARCH-PLUS";
4838
+ if ((field.nodeName === "EZ-SEARCH" || field.nodeName === "EZ-CLASSIC-SEARCH" || field.nodeName === "EZ-SEARCH-PLUS" || field.nodeName === "EZ-CLASSIC-SEARCH-PLUS") && field["optionLoader"] == undefined) {
4839
+ const isSearchPlus = (field.nodeName === "EZ-SEARCH-PLUS" || field.nodeName === "EZ-CLASSIC-SEARCH-PLUS");
4691
4840
  const loader = isSearchPlus ? ApplicationContext.getContextValue("__EZUI__SEARCH__PLUS__OPTION__LOADER__") : ApplicationContext.getContextValue("__EZUI__SEARCH__OPTION__LOADER__");
4692
4841
  if (loader) {
4693
4842
  field["optionLoader"] = (arg, ctxOptions) => {
@@ -4824,7 +4973,9 @@ var SearchMode$1;
4824
4973
  var FormLayout;
4825
4974
  (function (FormLayout) {
4826
4975
  FormLayout[FormLayout["CASCADE"] = 0] = "CASCADE";
4827
- FormLayout[FormLayout["SIDE_BY_SIDE"] = 1] = "SIDE_BY_SIDE";
4976
+ FormLayout[FormLayout["CLASSIC_CASCADE"] = 1] = "CLASSIC_CASCADE";
4977
+ FormLayout[FormLayout["SIDE_BY_SIDE"] = 2] = "SIDE_BY_SIDE";
4978
+ FormLayout[FormLayout["CLASSIC_SIDE_BY_SIDE"] = 3] = "CLASSIC_SIDE_BY_SIDE";
4828
4979
  })(FormLayout || (FormLayout = {}));
4829
4980
 
4830
4981
  const SHORTCUT_SEARCH_FIELD = "ctrl+f";
@@ -4835,7 +4986,12 @@ const buildFieldSearch = (action, optionLoader, onSelectField) => {
4835
4986
  return h("ez-search", { class: 'ez-padding--small ez-margin--none', style: {
4836
4987
  "--ez-text-input__margin-bottom": SEARCH_FIELD_MARGIN_BOTTOM,
4837
4988
  "--ez-search--width": SEARCH_FIELD_WIDTH
4838
- }, canShowError: false, showSelectedValue: false, showOptionValue: false, suppressEmptyOption: true, label: action.label, value: null, optionLoader: optionLoader, onEzChange: (evt) => onSelectField(evt.detail), ignoreLimitCharsToSearch: true });
4989
+ }, canShowError: false, showSelectedValue: false, showOptionValue: false, suppressEmptyOption: true, label: action.label, value: null, optionLoader: optionLoader, onEzChange: (evt) => {
4990
+ window.dispatchEvent(new CustomEvent('ezCloseSplitButtonDropdown', { detail: { action, value: evt.detail } }));
4991
+ requestAnimationFrame(() => {
4992
+ onSelectField(evt.detail);
4993
+ });
4994
+ }, ignoreLimitCharsToSearch: true });
4839
4995
  };
4840
4996
  const focusOnFieldSerch = async (field) => {
4841
4997
  requestAnimationFrame(async () => {
@@ -6848,7 +7004,7 @@ const EzChip$1 = class extends HTMLElement$1 {
6848
7004
  static get style() { return ezChipCss; }
6849
7005
  };
6850
7006
 
6851
- const ezClassicComboBoxCss = ":host{display:block;box-sizing:border-box;font-family:var(--font--pattern, 'Roboto', Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--gray-500, #494A4E);--ez-classic-combo-box-highlighted-bg-color:var(--color--gray-90, #EAEAEA);--ez-classic-combo-box-max-height:180px;--ez-classic-combo-box-list-bg-color:var(--color--gray-70, #FFFFFF);--ez-classic-combo-box-item-hover-bg-color:var(--color--gray-100, #DEDEDE);--ez-classic-combo-box-selected-bg-color:var(--color--ocean-green-90, #E6F3EF);--ez-classic-combo-box-selected-text-color:var(--color--ocean-green-600, #008561);--ez-classic-combo-box-selected-font-weight:var(--font-weight--medium, 500);--ez-classic-combo-box-item-padding:var(--space--8, 8px) var(--space--4, 4px);--ez-classic-combo-box-item-border-radius:var(--border--radius-8, 8px);--ez-classic-combo-box-list-margin:var(--space--6, 6px);--ez-classic-combo-box-transition-duration:150ms;--ez-classic-combo-box-scrollbar-color:var(--color--gray-300, #C4C4C4);--ez-classic-combo-box-no-results-margin:var(--space--52, 52px) 0;--ez-classic-combo-box-item-text-color:inherit;--ez-classic-combo-box-item-min-height:auto}ul{list-style:none;padding:0;margin:var(--ez-classic-combo-box-list-margin);display:flex;flex-direction:column;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--ez-classic-combo-box-scrollbar-color) transparent;max-height:var(--ez-classic-combo-box-max-height);scroll-behavior:smooth;background-color:var(--ez-classic-combo-box-list-bg-color)}li{cursor:pointer;border-radius:var(--ez-classic-combo-box-item-border-radius);padding:var(--ez-classic-combo-box-item-padding);transition:var(--ez-classic-combo-box-transition-duration) background-color linear;color:var(--ez-classic-combo-box-item-text-color);min-height:var(--ez-classic-combo-box-item-min-height)}li:hover{background-color:var(--ez-classic-combo-box-item-hover-bg-color)}li.highlighted{background-color:var(--ez-classic-combo-box-highlighted-bg-color)}li.selected{background-color:var(--ez-classic-combo-box-selected-bg-color);color:var(--ez-classic-combo-box-selected-text-color);font-weight:var(--ez-classic-combo-box-selected-font-weight)}span.no-results{margin:var(--ez-classic-combo-box-no-results-margin);cursor:default;text-align:center;display:flex;align-items:center;justify-content:center}";
7007
+ const ezClassicComboBoxCss = ":host{display:block;box-sizing:border-box;font-family:var(--font--pattern, 'Roboto', Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--gray-500, #494A4E);--ez-classic-combo-box-highlighted-bg-color:var(--color--gray-90, #EAEAEA);--ez-classic-combo-box-max-height:180px;--ez-classic-combo-box-list-bg-color:var(--color--gray-70, #FFFFFF);--ez-classic-combo-box-item-hover-bg-color:var(--color--gray-100, #DEDEDE);--ez-classic-combo-box-selected-bg-color:var(--color--ocean-green-90, #E6F3EF);--ez-classic-combo-box-selected-text-color:var(--color--ocean-green-600, #008561);--ez-classic-combo-box-selected-font-weight:var(--font-weight--medium, 500);--ez-classic-combo-box-item-padding:var(--space--8, 8px) var(--space--4, 4px);--ez-classic-combo-box-item-border-radius:var(--border--radius-8, 8px);--ez-classic-combo-box-list-margin:var(--space--6, 6px);--ez-classic-combo-box-transition-duration:150ms;--ez-classic-combo-box-scrollbar-color:var(--color--gray-300, #C4C4C4);--ez-classic-combo-box-no-results-margin:var(--space--52, 52px) 0;--ez-classic-combo-box-item-text-color:inherit;--ez-classic-combo-box-item-min-height:auto;--ez-classic-combo-box-width:100%;width:var(--ez-classic-combo-box-width)}ul{list-style:none;padding:0;margin:var(--ez-classic-combo-box-list-margin);display:flex;flex-direction:column;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--ez-classic-combo-box-scrollbar-color) transparent;max-height:var(--ez-classic-combo-box-max-height);scroll-behavior:smooth;background-color:var(--ez-classic-combo-box-list-bg-color)}li{cursor:pointer;border-radius:var(--ez-classic-combo-box-item-border-radius);padding:var(--ez-classic-combo-box-item-padding);transition:var(--ez-classic-combo-box-transition-duration) background-color linear;color:var(--ez-classic-combo-box-item-text-color);min-height:var(--ez-classic-combo-box-item-min-height)}li:hover{background-color:var(--ez-classic-combo-box-item-hover-bg-color)}li.highlighted{background-color:var(--ez-classic-combo-box-highlighted-bg-color)}li.selected{background-color:var(--ez-classic-combo-box-selected-bg-color);color:var(--ez-classic-combo-box-selected-text-color);font-weight:var(--ez-classic-combo-box-selected-font-weight)}span.no-results{margin:var(--ez-classic-combo-box-no-results-margin);cursor:default;text-align:center;display:flex;align-items:center;justify-content:center}";
6852
7008
 
6853
7009
  const EzClassicComboBox$1 = class extends HTMLElement$1 {
6854
7010
  constructor() {
@@ -6871,9 +7027,11 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
6871
7027
  this.label = undefined;
6872
7028
  this.placeholder = undefined;
6873
7029
  this.enabled = true;
7030
+ this.required = false;
6874
7031
  this.readonly = false;
6875
7032
  this.name = undefined;
6876
7033
  this.state = "default";
7034
+ this.size = "default";
6877
7035
  this.helpText = undefined;
6878
7036
  this.iconName = undefined;
6879
7037
  this.titleIcon = undefined;
@@ -6918,9 +7076,23 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
6918
7076
  this.popoverVisible = false;
6919
7077
  await ((_a = this._popoverElem) === null || _a === void 0 ? void 0 : _a.hide());
6920
7078
  }
7079
+ getFullOption(option) {
7080
+ if (typeof option === 'string') {
7081
+ return this.options.find(opt => opt.value === option);
7082
+ }
7083
+ return option;
7084
+ }
7085
+ getOptionValue(option) {
7086
+ if (!option) {
7087
+ return null;
7088
+ }
7089
+ if (typeof option === 'string') {
7090
+ return option;
7091
+ }
7092
+ return option.value;
7093
+ }
6921
7094
  compareOptionValues(option1, option2) {
6922
- var _a, _b;
6923
- return JSON.stringify((_a = option1 === null || option1 === void 0 ? void 0 : option1.value) !== null && _a !== void 0 ? _a : null) === JSON.stringify((_b = option2 === null || option2 === void 0 ? void 0 : option2.value) !== null && _b !== void 0 ? _b : null);
7095
+ return this.getOptionValue(option1) === this.getOptionValue(option2);
6924
7096
  }
6925
7097
  setEmptyValue() {
6926
7098
  this.value = null;
@@ -6936,10 +7108,11 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
6936
7108
  await this.hidePopover();
6937
7109
  return;
6938
7110
  }
6939
- if (!option.value) {
7111
+ if (!this.getOptionValue(option)) {
6940
7112
  this.setEmptyValue();
6941
7113
  }
6942
7114
  else {
7115
+ option = this.getFullOption(option);
6943
7116
  this.value = option;
6944
7117
  this.inputValue = option.label;
6945
7118
  }
@@ -6949,9 +7122,13 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
6949
7122
  async optionsChanged() {
6950
7123
  this.filterOptions('');
6951
7124
  }
6952
- async valueChanged(newValue) {
7125
+ async valueChanged(newValue, oldValue) {
7126
+ if (this.compareOptionValues(newValue, oldValue)) {
7127
+ return;
7128
+ }
6953
7129
  if (newValue) {
6954
- this.inputValue = newValue.label;
7130
+ this.value = this.getFullOption(newValue);
7131
+ this.inputValue = this.value.label;
6955
7132
  this.setHighlightedIndexToValue();
6956
7133
  }
6957
7134
  else {
@@ -6985,12 +7162,12 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
6985
7162
  this.filterOptions(this.inputValue);
6986
7163
  }
6987
7164
  async handleEzBlur(event) {
6988
- var _a, _b;
6989
7165
  event.stopPropagation();
6990
- if (((_a = this.value) === null || _a === void 0 ? void 0 : _a.label) !== this.inputValue) {
6991
- this.inputValue = ((_b = this.value) === null || _b === void 0 ? void 0 : _b.label) || '';
7166
+ const optionValue = this.getFullOption(this.value);
7167
+ if ((optionValue === null || optionValue === void 0 ? void 0 : optionValue.label) !== this.inputValue) {
7168
+ this.inputValue = (optionValue === null || optionValue === void 0 ? void 0 : optionValue.label) || '';
6992
7169
  }
6993
- this.ezBlur.emit(this.value);
7170
+ this.ezBlur.emit(optionValue);
6994
7171
  }
6995
7172
  filterOptions(searchTerm) {
6996
7173
  if (!this.options) {
@@ -7091,7 +7268,7 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
7091
7268
  }
7092
7269
  setHighlightedIndexToValue() {
7093
7270
  if (this.value && this.filteredOptions) {
7094
- const index = this.filteredOptions.findIndex(opt => opt.value === this.value.value);
7271
+ const index = this.filteredOptions.findIndex(opt => opt.value === this.getOptionValue(this.value));
7095
7272
  if (index >= 0) {
7096
7273
  this.highlightedIndex = index;
7097
7274
  return;
@@ -7142,17 +7319,17 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
7142
7319
  this.addInfoId();
7143
7320
  this.checkSlotContent();
7144
7321
  if (this.value) {
7145
- this.inputValue = this.value.label;
7322
+ this.inputValue = this.getFullOption(this.value).label;
7146
7323
  this.setHighlightedIndexToValue();
7147
7324
  }
7148
7325
  }
7149
7326
  render() {
7150
7327
  var _a;
7151
- return (h(Host, null, h("ez-classic-input", { ref: ref => this._inputElem = ref, name: this.name, label: this.label, placeholder: this.placeholder, value: this.inputValue, state: this.state, enabled: this.enabled, readonly: this.readonly || this.suppressSearch, leftIconName: this.iconName, leftIconTooltip: this.titleIcon, leftIconClickable: this.iconClickable, rightIconClickable: true, helpText: this.helpText, rightIconName: this.popoverVisible ? 'chevron-up' : 'chevron-down', onIconClick: this.handleIconClick.bind(this), onEzChange: this.handleEzChange.bind(this), onEzFocus: this.showPopover.bind(this), onEzBlur: this.handleEzBlur.bind(this) }), h("ez-popover-core", { ref: ref => this._popoverElem = ref, useAnchorSize: true, onEzVisibilityChange: this.handleVisibilityChange.bind(this), overlayType: "none", options: { verticalGap: 2, horizontalGap: 0 }, autoClose: false }, h("slot", { onSlotchange: this.checkSlotContent.bind(this) }), !this.hasSlotContent && (((_a = this.filteredOptions) === null || _a === void 0 ? void 0 : _a.length) > 0 ? (h("ul", { ref: ref => this._listElem = ref, tabIndex: -1 }, this.filteredOptions.map((option, index) => {
7152
- var _a, _b;
7328
+ return (h(Host, null, h("ez-classic-input", { ref: ref => this._inputElem = ref, name: this.name, label: this.label, placeholder: this.placeholder, value: this.inputValue, state: this.state, enabled: this.enabled, required: this.required, size: this.size, readonly: this.readonly || this.suppressSearch, leftIconName: this.iconName, leftIconTooltip: this.titleIcon, leftIconClickable: this.iconClickable, rightIconClickable: true, helpText: this.helpText, rightIconName: this.popoverVisible ? 'chevron-up' : 'chevron-down', onIconClick: this.handleIconClick.bind(this), onEzChange: this.handleEzChange.bind(this), onEzFocus: this.showPopover.bind(this), onEzBlur: this.handleEzBlur.bind(this) }), h("ez-popover-core", { ref: ref => this._popoverElem = ref, useAnchorSize: true, onEzVisibilityChange: this.handleVisibilityChange.bind(this), overlayType: "none", options: { verticalGap: 2, horizontalGap: 0 }, autoClose: false }, h("slot", { onSlotchange: this.checkSlotContent.bind(this) }), !this.hasSlotContent && (((_a = this.filteredOptions) === null || _a === void 0 ? void 0 : _a.length) > 0 ? (h("ul", { ref: ref => this._listElem = ref, tabIndex: -1 }, this.filteredOptions.map((option, index) => {
7329
+ var _a;
7153
7330
  return (h("li", { key: (_a = option.value) !== null && _a !== void 0 ? _a : '__empty__', value: option.value, class: {
7154
7331
  'highlighted': this.highlightedIndex === index,
7155
- 'selected': ((_b = this.value) === null || _b === void 0 ? void 0 : _b.value) === option.value
7332
+ 'selected': this.getOptionValue(this.value) === option.value
7156
7333
  }, onMouseDown: () => this.selectOption(option) }, option.label));
7157
7334
  }))) : (h("span", { class: "no-results" }, "Nenhum resultado encontrado"))))));
7158
7335
  }
@@ -7164,232 +7341,666 @@ const EzClassicComboBox$1 = class extends HTMLElement$1 {
7164
7341
  static get style() { return ezClassicComboBoxCss; }
7165
7342
  };
7166
7343
 
7167
- class MaskFormatter {
7168
- constructor(mask) {
7169
- this.mask = mask;
7170
- this.maskChars = {
7171
- '#': (char) => /\d/.test(char),
7172
- 'U': (char) => /[a-zA-Z]/.test(char),
7173
- 'L': (char) => /[a-zA-Z]/.test(char),
7174
- 'A': (char) => /[a-zA-Z0-9]/.test(char),
7175
- '?': (char) => /[a-zA-Z]/.test(char),
7176
- '*': () => true
7177
- };
7344
+ const ezClassicDateInputCss = ":host{display:block;width:100%;--ez-classic-date-input__input--background-color:var(--background--medium, #e0e0e0);--ez-classic-date-input__input--border-color:var(--ez-classic-date-input__input--background-color);--ez-classic-date-input__calendar-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"16px\" width=\"15px\"><path d=\"M 3.171875,5.25 C 2.6485088,5.25 2.21875,5.6797588 2.21875,6.203125 2.21875,6.7264912 2.6485088,7.15625 3.171875,7.15625 3.6952412,7.15625 4.125,6.7264912 4.125,6.203125 4.125,5.6797588 3.6952412,5.25 3.171875,5.25 Z m 2.875,0 C 5.5235088,5.25 5.09375,5.6797588 5.09375,6.203125 5.09375,6.7264912 5.5235088,7.15625 6.046875,7.15625 6.5702412,7.15625 7,6.7264912 7,6.203125 7,5.6797588 6.5702412,5.25 6.046875,5.25 Z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.9511719,-0.4297588 0.9511719,-0.953125 C 9.8730469,5.6797588 9.4452412,5.25 8.921875,5.25 Z m 2.873047,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.953125 0.953125,0.953125 0.523366,0 0.953125,-0.4297588 0.953125,-0.953125 C 12.748047,5.6797588 12.318288,5.25 11.794922,5.25 Z M 3.171875,8.1230469 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 0.5233662,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 C 6.5702412,10.029297 7,9.5995381 7,9.0761719 7,8.5528057 6.5702412,8.1230469 6.046875,8.1230469 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297587,0.9531251 0.953125,0.9531251 0.5233661,0 0.9531249,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.9531251 0.953125,0.9531251 0.523367,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.171875,10.998047 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 C 6.5702412,12.904297 7,12.474538 7,11.951172 7,11.427806 6.5702412,10.998047 6.046875,10.998047 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297587,0.953125 0.953125,0.953125 0.5233661,0 0.9531249,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.429759,0.953125 0.953125,0.953125 0.523367,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.5,0 c -0.554,0 -1,0.446 -1,1 v 0.050781 C 1.0853217,1.2909766 0,2.5186658 0,4 v 9 c 0,1.652487 1.3475134,3 3,3 h 9 c 1.652487,0 3,-1.347513 3,-3 V 4 C 15,2.5186658 13.914678,1.2909766 12.5,1.0507812 V 1 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 C 4.5,0.446 4.054,0 3.5,0 Z m 1,2.0996094 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -0.640625 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 V 2.1738281 C 13.311725,2.3905225 13.900391,3.11278 13.900391,4 v 9 c 0,1.062113 -0.838278,1.900391 -1.900391,1.900391 H 3 C 1.9378864,14.900391 1.0996094,14.062113 1.0996094,13 V 4 C 1.0996094,3.11278 1.6882747,2.3905225 2.5,2.1738281 v 0.5664063 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 z\"/></svg>')}.btn-open-cal{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-cal:disabled{cursor:not-allowed}.btn-open-cal::after{content:'';display:flex;background-color:var(--text--primary, #008561);width:15px;height:16px;-webkit-mask-image:var(--ez-classic-date-input__calendar-image);mask-image:var(--ez-classic-date-input__calendar-image)}.btn-open-cal:disabled:after{background-color:var(--text--disable, #AFB6C0)}.btn-open-cal:enabled:hover::after{background-color:var(--color--primary, #4e4e4e)}ez-classic-input{--text-input__input--background-color:var(--ez-classic-date-input__input--background-color, #FFFFFF);--text-input__input--border-color:var(--ez-classic-date-input__input--border-color, #DCE0E8)}";
7345
+
7346
+ const EzClassicDateInput$1 = class extends HTMLElement$1 {
7347
+ constructor() {
7348
+ super();
7349
+ this.__registerHost();
7350
+ this.__attachShadow();
7351
+ this.ezChange = createEvent(this, "ezChange", 7);
7352
+ this.ezStartChange = createEvent(this, "ezStartChange", 7);
7353
+ this.ezCancelWaitingChange = createEvent(this, "ezCancelWaitingChange", 7);
7354
+ this.ezInput = createEvent(this, "ezInput", 7);
7355
+ this._changePending = false;
7356
+ this._focused = false;
7357
+ this._valuePromiseCallbacks = [];
7358
+ this.label = undefined;
7359
+ this.value = undefined;
7360
+ this.enabled = true;
7361
+ this.errorMessage = undefined;
7362
+ this.mode = "regular";
7363
+ this.size = "default";
7364
+ this.required = false;
7365
+ this.canShowError = true;
7366
+ this.autoFocus = false;
7367
+ this.alternativePlaceholder = undefined;
7178
7368
  }
7179
- /**
7180
- * Formata a string de acordo com a máscara
7181
- * @param value String a ser formatada
7182
- * @returns String formatada
7183
- */
7184
- format(value) {
7185
- if (!value || !this.mask)
7186
- return value;
7187
- const cleanedValue = this.removeIncompatibleChars(value);
7188
- let formattedValue = '';
7189
- let valueIndex = 0;
7190
- let maskIndex = 0;
7191
- while (maskIndex < this.mask.length && valueIndex < cleanedValue.length) {
7192
- const maskChar = this.mask[maskIndex];
7193
- const inputChar = cleanedValue[valueIndex];
7194
- if (maskChar === "'") {
7195
- maskIndex++;
7196
- if (maskIndex < this.mask.length) {
7197
- formattedValue += this.mask[maskIndex];
7198
- maskIndex++;
7199
- }
7200
- continue;
7201
- }
7202
- if (this.maskChars[maskChar]) {
7203
- if (this.maskChars[maskChar](inputChar)) {
7204
- if (maskChar === 'U') {
7205
- formattedValue += inputChar.toUpperCase();
7206
- }
7207
- else if (maskChar === 'L') {
7208
- formattedValue += inputChar.toLowerCase();
7209
- }
7210
- else {
7211
- formattedValue += inputChar;
7212
- }
7213
- valueIndex++;
7214
- }
7215
- else {
7216
- valueIndex++;
7217
- continue;
7218
- }
7369
+ observeLabel() {
7370
+ if (this._textInput) {
7371
+ this._textInput.label = this.label;
7372
+ }
7373
+ }
7374
+ observeErrorMessage() {
7375
+ var _a;
7376
+ if (this._textInput) {
7377
+ this._textInput.errorMessage = this.errorMessage;
7378
+ if (!((_a = this.errorMessage) === null || _a === void 0 ? void 0 : _a.trim())) {
7379
+ this.setInputValue();
7219
7380
  }
7220
- else {
7221
- formattedValue += maskChar;
7222
- if (inputChar === maskChar) {
7223
- valueIndex++;
7381
+ }
7382
+ }
7383
+ observeValue(newValue, oldValue) {
7384
+ if (this._textInput && newValue != oldValue) {
7385
+ const newValueValidated = DateUtils$1.validateDate(newValue);
7386
+ const oldValueValidated = DateUtils$1.validateDate(oldValue);
7387
+ if ((newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime()) !== (oldValueValidated === null || oldValueValidated === void 0 ? void 0 : oldValueValidated.getTime())) {
7388
+ const textValue = this.getTextValue(newValueValidated) || '';
7389
+ const parsedDate = DateUtils$1.strToDate(textValue);
7390
+ if ((parsedDate || !this._focused) && (this._textInput.value || '') !== textValue) {
7391
+ this._textInput.value = textValue;
7392
+ this._focused = false;
7393
+ this.errorMessage = "";
7224
7394
  }
7395
+ const valueEmitted = newValueValidated === null ? undefined : newValueValidated;
7396
+ this.ezChange.emit(valueEmitted);
7225
7397
  }
7226
- maskIndex++;
7227
7398
  }
7228
- return formattedValue;
7399
+ this._changePending = false;
7229
7400
  }
7230
7401
  /**
7231
- * Remove caracteres que não são compatíveis com nenhuma posição da máscara
7402
+ * Aplica o foco no campo.
7232
7403
  */
7233
- removeIncompatibleChars(value) {
7234
- let cleanValue = '';
7235
- for (let i = 0; i < value.length; i++) {
7236
- const char = value[i];
7237
- let isValidChar = false;
7238
- for (const maskRule in this.maskChars) {
7239
- if (this.maskChars[maskRule](char)) {
7240
- isValidChar = true;
7241
- break;
7242
- }
7243
- }
7244
- if (!isValidChar) {
7245
- for (let j = 0; j < this.mask.length; j++) {
7246
- if (this.mask[j] === char && !this.maskChars[this.mask[j]]) {
7247
- isValidChar = true;
7248
- break;
7249
- }
7250
- }
7251
- }
7252
- if (isValidChar) {
7253
- cleanValue += char;
7254
- }
7255
- }
7256
- return cleanValue;
7404
+ async setFocus(options) {
7405
+ this._textInput.setFocus(options);
7257
7406
  }
7258
7407
  /**
7259
- * Remove a máscara de uma string formatada
7260
- * @param formattedValue String formatada
7261
- * @returns String sem máscara
7408
+ * Remove o foco do campo.
7262
7409
  */
7263
- removeMask(formattedValue) {
7264
- if (!formattedValue || !this.mask)
7265
- return formattedValue;
7266
- let cleanValue = '';
7267
- let valueIndex = 0;
7268
- let maskIndex = 0;
7269
- while (valueIndex < formattedValue.length && maskIndex < this.mask.length) {
7270
- const maskChar = this.mask[maskIndex];
7271
- const inputChar = formattedValue[valueIndex];
7272
- if (maskChar === "'") {
7273
- maskIndex++;
7274
- if (maskIndex < this.mask.length) {
7275
- if (inputChar === this.mask[maskIndex]) {
7276
- valueIndex++;
7410
+ async setBlur() {
7411
+ this._textInput.setBlur();
7412
+ }
7413
+ /**
7414
+ * Retorna se o conteúdo é inválido.
7415
+ */
7416
+ async isInvalid() {
7417
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
7418
+ }
7419
+ /*
7420
+ * Retorna uma promise com o valor da opção selecionada,
7421
+ * que será resolvida quando o backend devolver este dado.
7422
+ */
7423
+ async getValueAsync() {
7424
+ if (this._changePending) {
7425
+ return new Promise(accept => {
7426
+ this._valuePromiseCallbacks.push(accept);
7427
+ });
7428
+ }
7429
+ return Promise.resolve(this.value);
7430
+ }
7431
+ changeValue(newValue) {
7432
+ const currentValue = DateUtils$1.validateDate(this.value);
7433
+ const newValueValidated = DateUtils$1.validateDate(newValue);
7434
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) !== (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7435
+ this.value = newValueValidated;
7436
+ }
7437
+ else {
7438
+ this._changePending = false;
7439
+ }
7440
+ }
7441
+ async handleChangeCalendar(event) {
7442
+ this.changeValue(this._calendar.value);
7443
+ this.ezInput.emit(this._calendar.value);
7444
+ this._popover.hide();
7445
+ await this.setFocus();
7446
+ event.stopPropagation();
7447
+ }
7448
+ handleBlur() {
7449
+ if (!this._changePending) {
7450
+ return;
7451
+ }
7452
+ try {
7453
+ const strValue = this._textInput.value;
7454
+ const newValue = DateUtils$1.strToDate(strValue);
7455
+ if (newValue || !strValue) {
7456
+ this.errorMessage = "";
7457
+ const currentValue = DateUtils$1.validateDate(this.value);
7458
+ const newValueValidated = DateUtils$1.validateDate(newValue);
7459
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) === (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7460
+ if (newValueValidated) {
7461
+ this._textInput.value = this.getTextValue(newValueValidated) || '';
7462
+ this._focused = false;
7277
7463
  }
7278
- maskIndex++;
7464
+ this.ezCancelWaitingChange.emit();
7279
7465
  }
7280
- continue;
7281
- }
7282
- if (this.maskChars[maskChar]) {
7283
- if (this.maskChars[maskChar](inputChar)) {
7284
- cleanValue += inputChar;
7466
+ else {
7467
+ this._focused = false;
7468
+ this.changeValue(newValueValidated);
7285
7469
  }
7286
- valueIndex++;
7287
7470
  }
7288
7471
  else {
7289
- if (inputChar === maskChar) {
7290
- valueIndex++;
7291
- }
7472
+ this.changeValue(undefined);
7473
+ this.ezCancelWaitingChange.emit();
7474
+ this.errorMessage = this.i18n("ez-classic-date-input.invalidDate");
7292
7475
  }
7293
- maskIndex++;
7294
7476
  }
7295
- while (valueIndex < formattedValue.length) {
7296
- const remainingChar = formattedValue[valueIndex];
7297
- if (/[a-zA-Z0-9]/.test(remainingChar)) {
7298
- cleanValue += remainingChar;
7477
+ finally {
7478
+ for (const callback of this._valuePromiseCallbacks) {
7479
+ callback(this.value);
7299
7480
  }
7300
- valueIndex++;
7481
+ this._valuePromiseCallbacks = [];
7301
7482
  }
7302
- return cleanValue;
7303
7483
  }
7304
- /**
7305
- * Retorna a máscara configurada
7306
- */
7307
- getMask() {
7308
- return this.mask;
7484
+ getTextValue(d) {
7485
+ return d ? DateUtils$1.formatDate(d) : undefined;
7309
7486
  }
7310
- /**
7311
- * Gera um placeholder baseado na máscara
7312
- * @returns String com placeholder gerado
7313
- */
7314
- generatePlaceholder() {
7315
- if (!this.mask)
7316
- return '';
7317
- let placeholder = '';
7318
- let maskIndex = 0;
7319
- while (maskIndex < this.mask.length) {
7320
- const maskChar = this.mask[maskIndex];
7321
- if (maskChar === "'") {
7322
- maskIndex++;
7323
- if (maskIndex < this.mask.length) {
7324
- placeholder += this.mask[maskIndex];
7325
- maskIndex++;
7326
- }
7327
- continue;
7328
- }
7329
- if (this.maskChars[maskChar]) {
7330
- switch (maskChar) {
7331
- case '#':
7332
- placeholder += '0';
7333
- break;
7334
- case 'U':
7335
- case 'L':
7336
- case '?':
7337
- placeholder += 'A';
7338
- break;
7339
- case 'A':
7340
- placeholder += 'A';
7341
- break;
7342
- case '~':
7343
- placeholder += '0';
7344
- break;
7345
- case '*':
7346
- placeholder += '_';
7347
- break;
7348
- default:
7349
- placeholder += '_';
7350
- break;
7351
- }
7352
- }
7353
- else {
7354
- placeholder += maskChar;
7355
- }
7356
- maskIndex++;
7487
+ handleInput(event) {
7488
+ const strValue = this._textInput.value;
7489
+ const newValue = DateUtils$1.strToDate(strValue);
7490
+ const currentValue = DateUtils$1.validateDate(this.value);
7491
+ const newValueValidated = DateUtils$1.validateDate(newValue);
7492
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) !== (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7493
+ this._changePending = true;
7494
+ this._focused = true;
7495
+ this.ezStartChange.emit({ waitmessage: "", blocking: false });
7496
+ }
7497
+ if (event['data'] === "H" || event['data'] === "h") {
7498
+ const currentDate = new Date();
7499
+ this.ezInput.emit(currentDate);
7500
+ this.changeValue(currentDate);
7357
7501
  }
7358
- return placeholder;
7359
7502
  }
7360
- }
7503
+ setInputValue() {
7504
+ const textValue = this.getTextValue(this.value) || '';
7505
+ if ((this._textInput.value || '') !== textValue) {
7506
+ this._textInput.value = textValue;
7507
+ }
7508
+ }
7509
+ disconnectedCallback() {
7510
+ this._popover.hide();
7511
+ }
7512
+ async componentWillLoad() {
7513
+ this.i18n = await initI18n();
7514
+ }
7515
+ componentDidLoad() {
7516
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
7517
+ this.setInputValue();
7518
+ if (this.autoFocus) {
7519
+ requestAnimationFrame(() => {
7520
+ this.setFocus({ selectText: true });
7521
+ });
7522
+ }
7523
+ }
7524
+ render() {
7525
+ ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
7526
+ return (h(Host, null, h("ez-classic-input", { "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"), ref: (elem) => this._textInput = elem, "data-slave-mode": "true", label: this.label, onBlur: () => this.handleBlur(), onInput: (evt) => this.handleInput(evt), restrict: "0123456789/", enabled: this.enabled, errorMessage: this.errorMessage, mode: this.mode, size: this.size, canShowError: this.canShowError, alternativePlaceholder: this.alternativePlaceholder, required: this.required, leftIconName: "calendar", leftIconClickable: this.enabled, onIconClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, onEzChange: (event) => event.stopPropagation() }), h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none', "data-element-id": this._elem.getAttribute("data-element-id"), onEzVisibilityChange: (event) => event.stopPropagation() }, h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => this.handleChangeCalendar(event), value: this.value }))));
7527
+ }
7528
+ get _elem() { return this; }
7529
+ static get watchers() { return {
7530
+ "label": ["observeLabel"],
7531
+ "errorMessage": ["observeErrorMessage"],
7532
+ "value": ["observeValue"]
7533
+ }; }
7534
+ static get style() { return ezClassicDateInputCss; }
7535
+ };
7361
7536
 
7362
- const ezClassicInputCss = ":host{display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);border:none;padding:0;--ez-classic-input--label-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--border-color-default:var(--color--gray-200, #D2D2D3);--ez-classic-input--border-color-focus:var(--color--gray-300, #A4A5A7);--ez-classic-input--border-color-success:var(--color--green-600, #157A00);--ez-classic-input--border-color-error:var(--color--red-600, #BD0025);--ez-classic-input--border-color-warning:var(--color--yellow-600, #EFB103);--ez-classic-input--background-color:var(--color--gray-70, #FFFFFF);--ez-classic-input--background-color-disabled:var(--color--gray-90, #EAEAEA);--ez-classic-input--text-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--placeholder-color:#bdbdbd;--ez-classic-input--icon-color:var(--color--gray-400, #77777A);--ez-classic-input--helptext-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--height:56px}.input-container{display:flex;flex-direction:row;align-items:center;width:100%;border:none;border-radius:var(--border--radius-8, 8px);padding:var(--space--16, 16px);box-sizing:border-box;gap:var(--space--10, 10px);margin:var(--space--4, 4px) var(--space--2, 2px);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);height:var(--ez-classic-input--height);background-color:var(--ez-classic-input--background-color)}.input-container,.input-container[data-state=\"default\"]{box-shadow:0 0 0 1px var(--ez-classic-input--border-color-default)}.input-container[data-state=\"success\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-success)}.input-container[data-state=\"error\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-error)}.input-container[data-state=\"warning\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-warning)}.input-container:focus-within{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-focus)}ez-icon{min-width:var(--space--24, 24px);color:var(--ez-classic-input--icon-color)}input{flex:1;border:none;outline:none;background:transparent;height:100%;width:100%;padding:0;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);text-overflow:ellipsis;color:var(--ez-classic-input--text-color)}input::placeholder{color:var(--ez-classic-input--placeholder-color)}.input-container[data-disabled=\"true\"]{cursor:not-allowed;background:var(--ez-classic-input--background-color-disabled);border-color:var(--ez-classic-input--border-color-default)}.input-container[data-disabled=\"true\"]>*{cursor:not-allowed}.input-container input:read-only{cursor:default}@keyframes ez-helptext-fadein{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}span{font-size:var(--font-size--xsmall, 10px);line-height:var(--line-height--16, 16px);overflow:hidden;text-overflow:ellipsis;animation:ez-helptext-fadein 0.3s ease;color:var(--ez-classic-input--helptext-color)}label{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:var(--line-height--20, 20px);color:var(--ez-classic-input--label-color)}.icon-clickable{cursor:pointer}";
7537
+ const ezClassicDateTimeInputCss = ":host{display:block;width:100%;--ez-classic-date-input__input--background-color:var(--background--medium, #e0e0e0);--ez-classic-date-input__input--border-color:var(--ez-classic-date-input__input--background-color);--ez-classic-date-input__calendar-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"16px\" width=\"15px\"><path d=\"M 3.171875,5.25 C 2.6485088,5.25 2.21875,5.6797588 2.21875,6.203125 2.21875,6.7264912 2.6485088,7.15625 3.171875,7.15625 3.6952412,7.15625 4.125,6.7264912 4.125,6.203125 4.125,5.6797588 3.6952412,5.25 3.171875,5.25 Z m 2.875,0 C 5.5235088,5.25 5.09375,5.6797588 5.09375,6.203125 5.09375,6.7264912 5.5235088,7.15625 6.046875,7.15625 6.5702412,7.15625 7,6.7264912 7,6.203125 7,5.6797588 6.5702412,5.25 6.046875,5.25 Z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.9511719,-0.4297588 0.9511719,-0.953125 C 9.8730469,5.6797588 9.4452412,5.25 8.921875,5.25 Z m 2.873047,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.953125 0.953125,0.953125 0.523366,0 0.953125,-0.4297588 0.953125,-0.953125 C 12.748047,5.6797588 12.318288,5.25 11.794922,5.25 Z M 3.171875,8.1230469 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 0.5233662,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 C 6.5702412,10.029297 7,9.5995381 7,9.0761719 7,8.5528057 6.5702412,8.1230469 6.046875,8.1230469 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297587,0.9531251 0.953125,0.9531251 0.5233661,0 0.9531249,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.9531251 0.953125,0.9531251 0.523367,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.171875,10.998047 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 C 6.5702412,12.904297 7,12.474538 7,11.951172 7,11.427806 6.5702412,10.998047 6.046875,10.998047 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297587,0.953125 0.953125,0.953125 0.5233661,0 0.9531249,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.429759,0.953125 0.953125,0.953125 0.523367,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.5,0 c -0.554,0 -1,0.446 -1,1 v 0.050781 C 1.0853217,1.2909766 0,2.5186658 0,4 v 9 c 0,1.652487 1.3475134,3 3,3 h 9 c 1.652487,0 3,-1.347513 3,-3 V 4 C 15,2.5186658 13.914678,1.2909766 12.5,1.0507812 V 1 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 C 4.5,0.446 4.054,0 3.5,0 Z m 1,2.0996094 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -0.640625 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 V 2.1738281 C 13.311725,2.3905225 13.900391,3.11278 13.900391,4 v 9 c 0,1.062113 -0.838278,1.900391 -1.900391,1.900391 H 3 C 1.9378864,14.900391 1.0996094,14.062113 1.0996094,13 V 4 C 1.0996094,3.11278 1.6882747,2.3905225 2.5,2.1738281 v 0.5664063 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 z\"/></svg>')}.btn-open-cal{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-cal:disabled{cursor:not-allowed}.btn-open-cal::after{content:'';display:flex;background-color:var(--text--primary, #008561);width:15px;height:16px;-webkit-mask-image:var(--ez-classic-date-input__calendar-image);mask-image:var(--ez-classic-date-input__calendar-image)}.btn-open-cal:disabled:after{background-color:var(--text--disable, #AFB6C0)}.btn-open-cal:enabled:hover::after{background-color:var(--color--primary, #4e4e4e)}ez-classic-input{--text-input__input--background-color:var(--ez-classic-date-input__input--background-color, #FFFFFF);--text-input__input--border-color:var(--ez-classic-date-input__input--border-color, #DCE0E8)}";
7363
7538
 
7364
- const EzClassicInput$1 = class extends HTMLElement$1 {
7539
+ const EzClassicDateTimeInput$1 = class extends HTMLElement$1 {
7365
7540
  constructor() {
7366
7541
  super();
7367
7542
  this.__registerHost();
7368
7543
  this.__attachShadow();
7369
7544
  this.ezChange = createEvent(this, "ezChange", 7);
7370
- this.ezBlur = createEvent(this, "ezBlur", 7);
7371
- this.ezFocus = createEvent(this, "ezFocus", 7);
7372
- this.iconClick = createEvent(this, "iconClick", 7);
7373
- this._internalValueChange = false;
7374
- this.type = 'text';
7375
- this.value = undefined;
7545
+ this.ezStartChange = createEvent(this, "ezStartChange", 7);
7546
+ this.ezCancelWaitingChange = createEvent(this, "ezCancelWaitingChange", 7);
7547
+ this._changePending = false;
7548
+ this._focused = false;
7549
+ this._valuePromiseCallbacks = [];
7376
7550
  this.label = undefined;
7377
- this.helpText = undefined;
7378
- this.placeholder = undefined;
7551
+ this.value = undefined;
7379
7552
  this.enabled = true;
7380
- this.readonly = false;
7381
- this.name = undefined;
7382
- this.minlength = undefined;
7383
- this.maxlength = undefined;
7384
- this.leftIconName = undefined;
7385
- this.rightIconName = undefined;
7386
- this.rightIconTooltip = undefined;
7387
- this.leftIconTooltip = undefined;
7388
- this.state = "default";
7389
- this.leftIconClickable = false;
7390
- this.rightIconClickable = false;
7391
- this.mask = undefined;
7392
- this.emitMaskedValue = false;
7553
+ this.errorMessage = undefined;
7554
+ this.showSeconds = false;
7555
+ this.mode = "regular";
7556
+ this.size = "default";
7557
+ this.required = false;
7558
+ this.canShowError = true;
7559
+ this.autoFocus = false;
7560
+ this.alternativePlaceholder = undefined;
7561
+ }
7562
+ observeLabel() {
7563
+ if (this._textInput) {
7564
+ this._textInput.label = this.label;
7565
+ }
7566
+ }
7567
+ observeErrorMessage() {
7568
+ var _a;
7569
+ if (this._textInput) {
7570
+ this._textInput.errorMessage = this.errorMessage;
7571
+ if (!((_a = this.errorMessage) === null || _a === void 0 ? void 0 : _a.trim())) {
7572
+ this.setInputValue();
7573
+ }
7574
+ }
7575
+ }
7576
+ observeValue(newValue, oldValue) {
7577
+ if (this._textInput && newValue != oldValue) {
7578
+ const newValueValidated = DateUtils$1.validateDate(newValue, true);
7579
+ const oldValueValidated = DateUtils$1.validateDate(oldValue, true);
7580
+ if ((newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime()) !== (oldValueValidated === null || oldValueValidated === void 0 ? void 0 : oldValueValidated.getTime())) {
7581
+ const textValue = this.getTextValue(newValueValidated) || '';
7582
+ const parsedDate = this.getParsedDateTime(textValue);
7583
+ if ((parsedDate || !this._focused) && (this._textInput.value || '') !== textValue) {
7584
+ this._textInput.value = textValue;
7585
+ this._focused = false;
7586
+ this.errorMessage = "";
7587
+ }
7588
+ const valueEmitted = newValueValidated === null ? undefined : newValueValidated;
7589
+ this.ezChange.emit(valueEmitted);
7590
+ }
7591
+ }
7592
+ this._changePending = false;
7593
+ }
7594
+ /**
7595
+ * Aplica o foco no campo.
7596
+ */
7597
+ async setFocus(options) {
7598
+ this._textInput.setFocus(options);
7599
+ }
7600
+ /**
7601
+ * Remove o foco do campo.
7602
+ */
7603
+ async setBlur() {
7604
+ this._textInput.setBlur();
7605
+ }
7606
+ /**
7607
+ * Retorna se o conteúdo é inválido.
7608
+ */
7609
+ async isInvalid() {
7610
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
7611
+ }
7612
+ /*
7613
+ * Retorna uma promise com o valor da opção selecionada,
7614
+ * que será resolvida quando o backend devolver este dado.
7615
+ */
7616
+ async getValueAsync() {
7617
+ if (this._changePending) {
7618
+ return new Promise(accept => {
7619
+ this._valuePromiseCallbacks.push(accept);
7620
+ });
7621
+ }
7622
+ return Promise.resolve(this.value);
7623
+ }
7624
+ handleKeyDown(event) {
7625
+ const input = this._textInput.shadowRoot.querySelector('input');
7626
+ if (event.shiftKey && event.key === "Tab") {
7627
+ if (input.selectionStart > 0) {
7628
+ let selectIni = input.value.lastIndexOf(" ", input.selectionStart);
7629
+ if (selectIni !== -1) {
7630
+ input.setSelectionRange(0, selectIni);
7631
+ event.preventDefault();
7632
+ }
7633
+ }
7634
+ }
7635
+ else if (event.key === "Tab") {
7636
+ if (input.value.length !== input.selectionEnd) {
7637
+ let selectIni = input.value.indexOf(" ", input.selectionEnd);
7638
+ selectIni = selectIni === -1 ? input.selectionEnd : selectIni + 1;
7639
+ input.setSelectionRange(selectIni, input.value.length);
7640
+ event.preventDefault();
7641
+ }
7642
+ }
7643
+ }
7644
+ handleFocus() {
7645
+ const input = this._textInput.shadowRoot.querySelector('input');
7646
+ if (input.selectionStart !== input.selectionEnd) {
7647
+ let selectIni = input.value.indexOf(" ", input.selectionStart);
7648
+ selectIni = selectIni === -1 ? input.value.length : selectIni;
7649
+ input.setSelectionRange(0, selectIni);
7650
+ }
7651
+ }
7652
+ handleClick() {
7653
+ const input = this._textInput.shadowRoot.querySelector('input');
7654
+ let selectIni = input.value.lastIndexOf(" ", input.selectionEnd);
7655
+ selectIni = selectIni === -1 ? 0 : selectIni + 1;
7656
+ selectIni = selectIni > input.selectionEnd ? 0 : selectIni;
7657
+ let selectFin = selectIni === 0 ? input.value.indexOf(" ") : input.value.length;
7658
+ input.setSelectionRange(selectIni, selectFin);
7659
+ }
7660
+ changeValue(newValue) {
7661
+ const currentValue = DateUtils$1.validateDate(this.value, true);
7662
+ const newValueValidated = DateUtils$1.validateDate(newValue, true);
7663
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) !== (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7664
+ this.value = newValueValidated;
7665
+ }
7666
+ }
7667
+ hideCalendar() {
7668
+ this.changeValue(this._calendar.value);
7669
+ this._popover.hide();
7670
+ }
7671
+ getParsedDateTime(strValue) {
7672
+ var _a, _b;
7673
+ if (strValue === void 0) {
7674
+ strValue = (((_b = (_a = this._textInput) === null || _a === void 0 ? void 0 : _a.value) === null || _b === void 0 ? void 0 : _b.trim()) || "");
7675
+ }
7676
+ if (!strValue) {
7677
+ return;
7678
+ }
7679
+ const partsDateTime = strValue.split(" ");
7680
+ const onlyDate = partsDateTime.length > 0 ? partsDateTime[0] : strValue;
7681
+ const onlyTime = partsDateTime[1] ? partsDateTime[1] : "";
7682
+ const parsedTime = TimeFormatter.prepareValue(onlyTime, this.showSeconds);
7683
+ const strDateTime = onlyDate + (parsedTime && " " + parsedTime);
7684
+ return DateUtils$1.strToDate(strDateTime);
7685
+ }
7686
+ handleBlur() {
7687
+ var _a, _b;
7688
+ if (!this._changePending) {
7689
+ return;
7690
+ }
7691
+ try {
7692
+ const strValue = ((_b = (_a = this._textInput) === null || _a === void 0 ? void 0 : _a.value) === null || _b === void 0 ? void 0 : _b.trim()) || "";
7693
+ const newValue = this.getParsedDateTime();
7694
+ if (newValue || !strValue) {
7695
+ this.errorMessage = "";
7696
+ const currentValue = DateUtils$1.validateDate(this.value, true);
7697
+ const newValueValidated = DateUtils$1.validateDate(newValue, true);
7698
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) === (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7699
+ if (newValueValidated) {
7700
+ this._textInput.value = this.getTextValue(newValueValidated) || '';
7701
+ this._focused = false;
7702
+ }
7703
+ this.ezCancelWaitingChange.emit();
7704
+ }
7705
+ else {
7706
+ this.changeValue(newValueValidated);
7707
+ }
7708
+ }
7709
+ else {
7710
+ this.changeValue(undefined);
7711
+ this.ezCancelWaitingChange.emit();
7712
+ this.errorMessage = this.i18n("ez-classic-date-time-input.invalidDate");
7713
+ }
7714
+ }
7715
+ finally {
7716
+ for (const callback of this._valuePromiseCallbacks) {
7717
+ callback(this.value);
7718
+ }
7719
+ this._valuePromiseCallbacks = [];
7720
+ }
7721
+ }
7722
+ getTextValue(date) {
7723
+ if (!date) {
7724
+ return;
7725
+ }
7726
+ return DateUtils$1.formatDateTime(date, this.showSeconds);
7727
+ }
7728
+ handleInput(event) {
7729
+ const newValue = this.getParsedDateTime();
7730
+ const currentValue = DateUtils$1.validateDate(this.value, true);
7731
+ const newValueValidated = DateUtils$1.validateDate(newValue, true);
7732
+ if ((currentValue === null || currentValue === void 0 ? void 0 : currentValue.getTime()) !== (newValueValidated === null || newValueValidated === void 0 ? void 0 : newValueValidated.getTime())) {
7733
+ this._changePending = true;
7734
+ this._focused = true;
7735
+ this.ezStartChange.emit({ waitmessage: "", blocking: false });
7736
+ }
7737
+ if (event['data'] === "H" || event['data'] === "h") {
7738
+ this.changeValue(new Date());
7739
+ }
7740
+ }
7741
+ setInputValue() {
7742
+ const textValue = this.getTextValue(this.value) || '';
7743
+ if ((this._textInput.value || '') !== textValue) {
7744
+ this._textInput.value = textValue;
7745
+ }
7746
+ }
7747
+ disconnectedCallback() {
7748
+ this._popover.hide();
7749
+ }
7750
+ async componentWillLoad() {
7751
+ this.i18n = await initI18n();
7752
+ }
7753
+ componentDidLoad() {
7754
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
7755
+ this.setInputValue();
7756
+ if (this.autoFocus) {
7757
+ requestAnimationFrame(() => {
7758
+ this.setFocus({ selectText: true });
7759
+ });
7760
+ }
7761
+ }
7762
+ render() {
7763
+ ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
7764
+ return (h(Host, null, h("ez-classic-input", { ref: (elem) => this._textInput = elem, "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"), "data-slave-mode": "true", label: this.label, enabled: this.enabled, errorMessage: this.errorMessage, size: this.size, onKeyDown: (event) => { this.handleKeyDown(event); }, onBlur: () => this.handleBlur(), onInput: (evt) => this.handleInput(evt), onFocus: () => this.handleFocus(), onClick: () => this.handleClick(), required: this.required, leftIconName: "calendar", leftIconClickable: this.enabled, onIconClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, onEzChange: (event) => event.stopPropagation() }), h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none', "data-element-id": this._elem.getAttribute("data-element-id") }, h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); }, time: true, showSeconds: this.showSeconds }))));
7765
+ }
7766
+ get _elem() { return this; }
7767
+ static get watchers() { return {
7768
+ "label": ["observeLabel"],
7769
+ "errorMessage": ["observeErrorMessage"],
7770
+ "value": ["observeValue"]
7771
+ }; }
7772
+ static get style() { return ezClassicDateTimeInputCss; }
7773
+ };
7774
+
7775
+ class MaskFormatter {
7776
+ constructor(mask) {
7777
+ this.mask = mask;
7778
+ this.maskChars = {
7779
+ '#': (char) => /\d/.test(char),
7780
+ 'U': (char) => /[a-zA-Z]/.test(char),
7781
+ 'L': (char) => /[a-zA-Z]/.test(char),
7782
+ 'A': (char) => /[a-zA-Z0-9]/.test(char),
7783
+ '?': (char) => /[a-zA-Z]/.test(char),
7784
+ '*': () => true
7785
+ };
7786
+ }
7787
+ /**
7788
+ * Formata a string de acordo com a máscara
7789
+ * @param value String a ser formatada
7790
+ * @returns String formatada
7791
+ */
7792
+ format(value) {
7793
+ if (!value || !this.mask)
7794
+ return value;
7795
+ const cleanedValue = this.removeIncompatibleChars(value);
7796
+ let formattedValue = '';
7797
+ let valueIndex = 0;
7798
+ let maskIndex = 0;
7799
+ while (maskIndex < this.mask.length && valueIndex < cleanedValue.length) {
7800
+ const maskChar = this.mask[maskIndex];
7801
+ const inputChar = cleanedValue[valueIndex];
7802
+ if (maskChar === "'") {
7803
+ maskIndex++;
7804
+ if (maskIndex < this.mask.length) {
7805
+ formattedValue += this.mask[maskIndex];
7806
+ maskIndex++;
7807
+ }
7808
+ continue;
7809
+ }
7810
+ if (this.maskChars[maskChar]) {
7811
+ if (this.maskChars[maskChar](inputChar)) {
7812
+ if (maskChar === 'U') {
7813
+ formattedValue += inputChar.toUpperCase();
7814
+ }
7815
+ else if (maskChar === 'L') {
7816
+ formattedValue += inputChar.toLowerCase();
7817
+ }
7818
+ else {
7819
+ formattedValue += inputChar;
7820
+ }
7821
+ valueIndex++;
7822
+ }
7823
+ else {
7824
+ valueIndex++;
7825
+ continue;
7826
+ }
7827
+ }
7828
+ else {
7829
+ formattedValue += maskChar;
7830
+ if (inputChar === maskChar) {
7831
+ valueIndex++;
7832
+ }
7833
+ }
7834
+ maskIndex++;
7835
+ }
7836
+ return formattedValue;
7837
+ }
7838
+ /**
7839
+ * Remove caracteres que não são compatíveis com nenhuma posição da máscara
7840
+ */
7841
+ removeIncompatibleChars(value) {
7842
+ let cleanValue = '';
7843
+ for (let i = 0; i < value.length; i++) {
7844
+ const char = value[i];
7845
+ let isValidChar = false;
7846
+ for (const maskRule in this.maskChars) {
7847
+ if (this.maskChars[maskRule](char)) {
7848
+ isValidChar = true;
7849
+ break;
7850
+ }
7851
+ }
7852
+ if (!isValidChar) {
7853
+ for (let j = 0; j < this.mask.length; j++) {
7854
+ if (this.mask[j] === char && !this.maskChars[this.mask[j]]) {
7855
+ isValidChar = true;
7856
+ break;
7857
+ }
7858
+ }
7859
+ }
7860
+ if (isValidChar) {
7861
+ cleanValue += char;
7862
+ }
7863
+ }
7864
+ return cleanValue;
7865
+ }
7866
+ /**
7867
+ * Remove a máscara de uma string formatada
7868
+ * @param formattedValue String formatada
7869
+ * @returns String sem máscara
7870
+ */
7871
+ removeMask(formattedValue) {
7872
+ if (!formattedValue || !this.mask)
7873
+ return formattedValue;
7874
+ let cleanValue = '';
7875
+ let valueIndex = 0;
7876
+ let maskIndex = 0;
7877
+ while (valueIndex < formattedValue.length && maskIndex < this.mask.length) {
7878
+ const maskChar = this.mask[maskIndex];
7879
+ const inputChar = formattedValue[valueIndex];
7880
+ if (maskChar === "'") {
7881
+ maskIndex++;
7882
+ if (maskIndex < this.mask.length) {
7883
+ if (inputChar === this.mask[maskIndex]) {
7884
+ valueIndex++;
7885
+ }
7886
+ maskIndex++;
7887
+ }
7888
+ continue;
7889
+ }
7890
+ if (this.maskChars[maskChar]) {
7891
+ if (this.maskChars[maskChar](inputChar)) {
7892
+ cleanValue += inputChar;
7893
+ }
7894
+ valueIndex++;
7895
+ }
7896
+ else {
7897
+ if (inputChar === maskChar) {
7898
+ valueIndex++;
7899
+ }
7900
+ }
7901
+ maskIndex++;
7902
+ }
7903
+ while (valueIndex < formattedValue.length) {
7904
+ const remainingChar = formattedValue[valueIndex];
7905
+ if (/[a-zA-Z0-9]/.test(remainingChar)) {
7906
+ cleanValue += remainingChar;
7907
+ }
7908
+ valueIndex++;
7909
+ }
7910
+ return cleanValue;
7911
+ }
7912
+ /**
7913
+ * Retorna a máscara configurada
7914
+ */
7915
+ getMask() {
7916
+ return this.mask;
7917
+ }
7918
+ /**
7919
+ * Gera um placeholder baseado na máscara
7920
+ * @returns String com placeholder gerado
7921
+ */
7922
+ generatePlaceholder() {
7923
+ if (!this.mask)
7924
+ return '';
7925
+ let placeholder = '';
7926
+ let maskIndex = 0;
7927
+ while (maskIndex < this.mask.length) {
7928
+ const maskChar = this.mask[maskIndex];
7929
+ if (maskChar === "'") {
7930
+ maskIndex++;
7931
+ if (maskIndex < this.mask.length) {
7932
+ placeholder += this.mask[maskIndex];
7933
+ maskIndex++;
7934
+ }
7935
+ continue;
7936
+ }
7937
+ if (this.maskChars[maskChar]) {
7938
+ switch (maskChar) {
7939
+ case '#':
7940
+ placeholder += '0';
7941
+ break;
7942
+ case 'U':
7943
+ case 'L':
7944
+ case '?':
7945
+ placeholder += 'A';
7946
+ break;
7947
+ case 'A':
7948
+ placeholder += 'A';
7949
+ break;
7950
+ case '~':
7951
+ placeholder += '0';
7952
+ break;
7953
+ case '*':
7954
+ placeholder += '_';
7955
+ break;
7956
+ default:
7957
+ placeholder += '_';
7958
+ break;
7959
+ }
7960
+ }
7961
+ else {
7962
+ placeholder += maskChar;
7963
+ }
7964
+ maskIndex++;
7965
+ }
7966
+ return placeholder;
7967
+ }
7968
+ }
7969
+
7970
+ const ezClassicInputCss = ":host{display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);border:none;padding:0;padding-inline:var(--space--2, 2px);width:100%;--ez-classic-input--label-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--border-color-default:var(--color--gray-200, #D2D2D3);--ez-classic-input--border-color-focus:var(--color--gray-300, #A4A5A7);--ez-classic-input--border-color-success:var(--color--green-600, #157A00);--ez-classic-input--border-color-error:var(--color--red-600, #BD0025);--ez-classic-input--border-color-warning:var(--color--yellow-600, #EFB103);--ez-classic-input--background-color:var(--color--gray-70, #FFFFFF);--ez-classic-input--background-color-disabled:var(--color--gray-90, #EAEAEA);--ez-classic-input--text-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--placeholder-color:#bdbdbd;--ez-classic-input--icon-color:var(--color--gray-400, #77777A);--ez-classic-input--helptext-color:var(--color--ocean-green-1000, #00281D);--ez-classic-input--height:var(--space--56, 56px);--ez-classic-input--height-small:var(--space--48, 48px);--ez-classic-input--height-xsmall:var(--space--40, 40px);--ez-classic-input--gap:var(--space--10, 10px);--ez-classic-input--padding-inline:var(--space--16, 16px)}.input-container{display:flex;flex-direction:row;align-items:center;width:100%;border:none;border-radius:var(--border--radius-8, 8px);padding-inline:var(--ez-classic-input--padding-inline);box-sizing:border-box;gap:var(--ez-classic-input--gap);margin-block:var(--space--4, 4px);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);height:var(--ez-classic-input--height);background-color:var(--ez-classic-input--background-color)}.input-container--small{height:var(--ez-classic-input--height-small)}.input-container--xsmall{height:var(--ez-classic-input--height-xsmall)}.input-container,.input-container[data-state=\"default\"]{box-shadow:0 0 0 1px var(--ez-classic-input--border-color-default)}.input-container[data-state=\"success\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-success)}.input-container[data-state=\"error\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-error)}.input-container[data-state=\"warning\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-warning)}.input-container:focus-within{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-input--border-color-focus)}ez-icon{min-width:var(--space--24, 24px);color:var(--ez-classic-input--icon-color)}input{flex:1;border:none;outline:none;background:transparent;height:100%;width:100%;padding:0;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);text-overflow:ellipsis;color:var(--ez-classic-input--text-color)}input::placeholder{color:var(--ez-classic-input--placeholder-color)}.input-container[data-disabled=\"true\"]{cursor:not-allowed;background:var(--ez-classic-input--background-color-disabled);border-color:var(--ez-classic-input--border-color-default)}.input-container[data-disabled=\"true\"]>*{cursor:not-allowed}.input-container input:read-only{cursor:default}@keyframes ez-helptext-fadein{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}span{font-size:var(--font-size--xsmall, 10px);line-height:var(--line-height--16, 16px);overflow:hidden;text-overflow:ellipsis;animation:ez-helptext-fadein 0.3s ease;color:var(--ez-classic-input--helptext-color)}label{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-classic-input--label-color)}.icon-clickable{cursor:pointer}.required-indicator{font-size:var(--font--size--default, 14px);font-family:var(--font--pattern, 'Roboto');color:var(--color--red-600, #BD0025);margin-left:var(--space--4, 4px);vertical-align:top}";
7971
+
7972
+ const EzClassicInput$1 = class extends HTMLElement$1 {
7973
+ constructor() {
7974
+ super();
7975
+ this.__registerHost();
7976
+ this.__attachShadow();
7977
+ this.ezChange = createEvent(this, "ezChange", 7);
7978
+ this.ezBlur = createEvent(this, "ezBlur", 7);
7979
+ this.ezFocus = createEvent(this, "ezFocus", 7);
7980
+ this.iconClick = createEvent(this, "iconClick", 7);
7981
+ this._internalValueChange = false;
7982
+ this.type = 'text';
7983
+ this.value = undefined;
7984
+ this.label = undefined;
7985
+ this.helpText = undefined;
7986
+ this.errorMessage = undefined;
7987
+ this.placeholder = undefined;
7988
+ this.enabled = true;
7989
+ this.readonly = false;
7990
+ this.required = false;
7991
+ this.name = undefined;
7992
+ this.size = "default";
7993
+ this.minlength = undefined;
7994
+ this.maxlength = undefined;
7995
+ this.leftIconName = undefined;
7996
+ this.rightIconName = undefined;
7997
+ this.rightIconTooltip = undefined;
7998
+ this.leftIconTooltip = undefined;
7999
+ this.state = "default";
8000
+ this.leftIconClickable = false;
8001
+ this.rightIconClickable = false;
8002
+ this.mask = undefined;
8003
+ this.emitMaskedValue = false;
7393
8004
  }
7394
8005
  /**
7395
8006
  * Aplica o foco no campo.
@@ -7398,102 +8009,1547 @@ const EzClassicInput$1 = class extends HTMLElement$1 {
7398
8009
  if (option === null || option === void 0 ? void 0 : option.selectText) {
7399
8010
  this._inputElem.select();
7400
8011
  }
7401
- if (!(option === null || option === void 0 ? void 0 : option.preventScroll)) {
7402
- this._inputElem.scrollIntoView({ behavior: "smooth", block: "center" });
8012
+ if (!(option === null || option === void 0 ? void 0 : option.preventScroll)) {
8013
+ this._inputElem.scrollIntoView({ behavior: "smooth", block: "center" });
8014
+ }
8015
+ this._inputElem.focus({ preventScroll: true });
8016
+ }
8017
+ /**
8018
+ * Remove o foco do campo.
8019
+ */
8020
+ async setBlur() {
8021
+ this._inputElem.blur();
8022
+ }
8023
+ async syncValue() {
8024
+ if (this._internalValueChange) {
8025
+ this._internalValueChange = false;
8026
+ return;
8027
+ }
8028
+ if (this.value && this._maskFormatter && this._inputElem) {
8029
+ const formattedValue = this._maskFormatter.format(this.value);
8030
+ this._inputElem.value = formattedValue;
8031
+ }
8032
+ else if (this._inputElem) {
8033
+ this._inputElem.value = this.value || '';
8034
+ }
8035
+ }
8036
+ async observeErrorMessage(newValue) {
8037
+ if (newValue && newValue.trim() !== '') {
8038
+ this.state = "error";
8039
+ return;
8040
+ }
8041
+ this.state = "default";
8042
+ }
8043
+ onInput(event) {
8044
+ try {
8045
+ const inputElement = event.target;
8046
+ const inputValue = inputElement.value;
8047
+ if (this._maskFormatter) {
8048
+ const { formattedValue, cleanValue } = this.processInputWithMask(inputValue);
8049
+ this.updateInputValue(inputElement, formattedValue, cleanValue);
8050
+ }
8051
+ else {
8052
+ this.updateInputValueWithoutMask(inputValue);
8053
+ }
8054
+ }
8055
+ catch (error) {
8056
+ console.error("Error processing input event:", error);
8057
+ }
8058
+ }
8059
+ processInputWithMask(inputValue) {
8060
+ if (this.mask === "cgc_cpf") {
8061
+ return this.processCgcCpfMask(inputValue);
8062
+ }
8063
+ else {
8064
+ return this.processRegularMask(inputValue);
8065
+ }
8066
+ }
8067
+ processCgcCpfMask(inputValue) {
8068
+ const numericOnly = inputValue.replace(/\D/g, '');
8069
+ if (numericOnly.length === 11 || numericOnly.length === 14) {
8070
+ const maskToUse = numericOnly.length === 11
8071
+ ? MaskFormatter$1.DEFAULT_MASKS.cpf
8072
+ : MaskFormatter$1.DEFAULT_MASKS.cnpj;
8073
+ this._maskFormatter = new MaskFormatter(maskToUse);
8074
+ const formattedValue = this._maskFormatter.format(numericOnly);
8075
+ return { formattedValue, cleanValue: numericOnly };
8076
+ }
8077
+ // Se não tem o tamanho correto, mantém apenas os números
8078
+ return { formattedValue: numericOnly, cleanValue: numericOnly };
8079
+ }
8080
+ processRegularMask(inputValue) {
8081
+ const formattedValue = this._maskFormatter.format(inputValue);
8082
+ const cleanValue = this._maskFormatter.removeMask(formattedValue);
8083
+ return { formattedValue, cleanValue };
8084
+ }
8085
+ updateInputValue(inputElement, formattedValue, cleanValue) {
8086
+ inputElement.value = formattedValue;
8087
+ this._internalValueChange = true;
8088
+ this.value = cleanValue;
8089
+ const emitValue = this.emitMaskedValue ? formattedValue : cleanValue;
8090
+ this.ezChange.emit(emitValue);
8091
+ }
8092
+ updateInputValueWithoutMask(inputValue) {
8093
+ this._internalValueChange = true;
8094
+ this.value = inputValue;
8095
+ this.ezChange.emit(inputValue);
8096
+ }
8097
+ onBlur() {
8098
+ this.ezBlur.emit(this.value);
8099
+ }
8100
+ onFocus() {
8101
+ this.ezFocus.emit(this.value);
8102
+ }
8103
+ handleIconClick(event, icon) {
8104
+ if (!this.enabled) {
8105
+ return;
8106
+ }
8107
+ if ((icon === "left" && !this.leftIconClickable) || (icon === "right" && !this.rightIconClickable)) {
8108
+ this.setFocus({ preventScroll: true });
8109
+ return;
8110
+ }
8111
+ event.stopPropagation();
8112
+ this.iconClick.emit({ icon });
8113
+ }
8114
+ addInfoId() {
8115
+ if (this._element) {
8116
+ ElementIDUtils.addIDInfo(this._element);
8117
+ }
8118
+ if (this._inputElem) {
8119
+ const dataInfo = { id: 'embedded' };
8120
+ ElementIDUtils.addIDInfo(this._inputElem, 'classic-input', dataInfo);
8121
+ }
8122
+ }
8123
+ buildPlaceholder() {
8124
+ if (!this.placeholder && this._maskFormatter) {
8125
+ this.placeholder = this._maskFormatter.generatePlaceholder();
8126
+ }
8127
+ }
8128
+ buildMaskFormatter() {
8129
+ if (this.mask && (!this._maskFormatter || this.mask === 'cgc_cpf')) {
8130
+ const maskToBuilder = this.getMaskToBuilder();
8131
+ this._maskFormatter = maskToBuilder ? new MaskFormatter(maskToBuilder) : undefined;
8132
+ }
8133
+ }
8134
+ getMaskToBuilder() {
8135
+ if (this.mask === "cgc_cpf") {
8136
+ return this.getCGCCpfMask();
8137
+ }
8138
+ if (this.mask === 'phone') {
8139
+ return this.getPhoneMask();
8140
+ }
8141
+ if (this.mask in MaskFormatter$1.DEFAULT_MASKS) {
8142
+ return MaskFormatter$1.DEFAULT_MASKS[this.mask];
8143
+ }
8144
+ return this.mask;
8145
+ }
8146
+ getPhoneMask() {
8147
+ if (this.value && this.value.length === 10) {
8148
+ return MaskFormatter.DEFAULT_MASKS ? MaskFormatter.DEFAULT_MASKS.phone : undefined;
8149
+ }
8150
+ if (this.value && this.value.length === 11) {
8151
+ return MaskFormatter.DEFAULT_MASKS ? MaskFormatter.DEFAULT_MASKS.phone_mobile : undefined;
8152
+ }
8153
+ return undefined;
8154
+ }
8155
+ getCGCCpfMask() {
8156
+ var _a, _b;
8157
+ if (((_a = this.value) === null || _a === void 0 ? void 0 : _a.length) === 11) {
8158
+ return MaskFormatter$1.DEFAULT_MASKS.cpf;
8159
+ }
8160
+ if (((_b = this.value) === null || _b === void 0 ? void 0 : _b.length) === 14) {
8161
+ return MaskFormatter$1.DEFAULT_MASKS.cnpj;
8162
+ }
8163
+ return undefined;
8164
+ }
8165
+ componentDidRender() {
8166
+ this.buildMaskFormatter();
8167
+ this.buildPlaceholder();
8168
+ this.syncValue();
8169
+ }
8170
+ componentDidLoad() {
8171
+ this.syncValue();
8172
+ this.addInfoId();
8173
+ }
8174
+ render() {
8175
+ return (h(Host, null, h("label", { title: this.label, htmlFor: this.name }, this.label, this.required && h("span", { class: "required-indicator" }, "*")), h("div", { class: "input-container " + (this.size ? `input-container--${this.size}` : ""), "data-state": this.state, "data-disabled": (!this.enabled).toString(), onClick: () => this.setFocus({ preventScroll: true }) }, this.leftIconName && (h("ez-icon", { iconName: this.leftIconName, title: this.leftIconTooltip, onClick: (event) => this.handleIconClick(event, "left"), class: { 'icon-clickable': this.leftIconClickable } })), h("input", { ref: el => this._inputElem = el, id: this.name, type: this.type, title: this.value, placeholder: this.placeholder, disabled: !this.enabled, readonly: this.readonly, name: this.name, minlength: this.minlength, maxlength: this.maxlength, onInput: (event) => this.onInput(event), onBlur: this.onBlur.bind(this), onFocus: this.onFocus.bind(this) }), this.rightIconName && (h("ez-icon", { iconName: this.rightIconName, title: this.rightIconTooltip, onClick: (event) => this.handleIconClick(event, "right"), class: { 'icon-clickable': this.rightIconClickable } }))), (this.helpText || this.errorMessage) && (h("span", { id: "input_helpText", title: this.errorMessage || this.helpText }, this.errorMessage || this.helpText))));
8176
+ }
8177
+ get _element() { return this; }
8178
+ static get watchers() { return {
8179
+ "value": ["syncValue"],
8180
+ "errorMessage": ["observeErrorMessage"]
8181
+ }; }
8182
+ static get style() { return ezClassicInputCss; }
8183
+ };
8184
+
8185
+ const ezClassicNumberInputCss = ":host{--ez-classic-number-input__min-width:0px;--ez-classic-number-input__max-width:100%;display:block;width:100%}.number__input{height:100%;min-width:var(--ez-classic-number-input__min-width);max-width:var(--ez-classic-number-input__max-width)}";
8186
+
8187
+ const EzClassicNumberInput$1 = class extends HTMLElement$1 {
8188
+ constructor() {
8189
+ super();
8190
+ this.__registerHost();
8191
+ this.__attachShadow();
8192
+ this.ezChange = createEvent(this, "ezChange", 7);
8193
+ this.ezStartChange = createEvent(this, "ezStartChange", 7);
8194
+ this.ezCancelWaitingChange = createEvent(this, "ezCancelWaitingChange", 7);
8195
+ this._focused = false;
8196
+ this._changePending = false;
8197
+ this._valuePromiseCallbacks = [];
8198
+ this._value = undefined;
8199
+ this.label = undefined;
8200
+ this.value = undefined;
8201
+ this.enabled = true;
8202
+ this.required = false;
8203
+ this.canShowError = true;
8204
+ this.errorMessage = undefined;
8205
+ this.allowNegative = true;
8206
+ this.precision = undefined;
8207
+ this.prettyPrecision = undefined;
8208
+ this.mode = "regular";
8209
+ this.size = "default";
8210
+ this.autoFocus = false;
8211
+ this.alternativePlaceholder = undefined;
8212
+ }
8213
+ /**
8214
+ * Aplica o foco no campo.
8215
+ */
8216
+ async setFocus(options) {
8217
+ this._textInput.setFocus(options);
8218
+ }
8219
+ /**
8220
+ * Remove o foco do campo.
8221
+ */
8222
+ async setBlur() {
8223
+ this._textInput.setBlur();
8224
+ }
8225
+ /**
8226
+ * Retorna se o conteúdo é inválido.
8227
+ */
8228
+ async isInvalid() {
8229
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
8230
+ }
8231
+ /*
8232
+ * Retorna uma promise com o valor da opção selecionada,
8233
+ * que será resolvida quando o backend devolver este dado.
8234
+ */
8235
+ async getValueAsync() {
8236
+ if (this._changePending) {
8237
+ return new Promise(accept => {
8238
+ this._valuePromiseCallbacks.push(accept);
8239
+ });
8240
+ }
8241
+ return Promise.resolve(this.value);
8242
+ }
8243
+ observeLabel() {
8244
+ if (this._textInput) {
8245
+ this._textInput.label = this.label;
8246
+ }
8247
+ }
8248
+ observeErrorMessage() {
8249
+ var _a;
8250
+ if (this._textInput) {
8251
+ this._textInput.errorMessage = this.errorMessage;
8252
+ if (!((_a = this.errorMessage) === null || _a === void 0 ? void 0 : _a.trim())) {
8253
+ this.setInputValue();
8254
+ }
8255
+ }
8256
+ }
8257
+ observeValue(newValue, oldValue) {
8258
+ if (this._textInput && newValue != oldValue) {
8259
+ this.handleNewValue(newValue, oldValue);
8260
+ }
8261
+ this._changePending = false;
8262
+ }
8263
+ observePrecision() {
8264
+ if (this._textInput) {
8265
+ this.setInputValue();
8266
+ }
8267
+ }
8268
+ handleNewValue(newValue, oldValue) {
8269
+ const newValueValidated = this.validateValue(newValue);
8270
+ const oldValueValidated = this.validateValue(oldValue);
8271
+ if (newValueValidated === null) {
8272
+ this._value = '';
8273
+ }
8274
+ if (newValueValidated === oldValueValidated) {
8275
+ return;
8276
+ }
8277
+ const textValue = this.getTextValue(newValueValidated) || '';
8278
+ const parsedNumber = this.getParsedNumber(textValue);
8279
+ if ((this._value || '') !== textValue && (parsedNumber !== undefined || !this._focused)) {
8280
+ this._value = textValue;
8281
+ this._focused = false;
8282
+ this.errorMessage = "";
8283
+ }
8284
+ const valueEmitted = newValueValidated === null ? undefined : newValueValidated;
8285
+ this.ezChange.emit(valueEmitted);
8286
+ }
8287
+ validateValue(value) {
8288
+ return isNaN(value) || value === undefined ? null : value;
8289
+ }
8290
+ getTextValue(value) {
8291
+ if (value == undefined)
8292
+ return undefined;
8293
+ let textValue = this.precision >= 0 ? NumberUtils$1.format(value.toString(), Number(this.precision), Number(this.prettyPrecision)) : value.toString();
8294
+ return (this.precision === 0) ? StringUtils$1.replaceAll(textValue, ".", "") : textValue;
8295
+ }
8296
+ changeValue(newValue) {
8297
+ this.errorMessage = "";
8298
+ if (this.value != newValue) {
8299
+ this.value = newValue === undefined ? null : newValue;
8300
+ }
8301
+ else {
8302
+ this.setInputValue();
8303
+ this.ezCancelWaitingChange.emit();
8304
+ }
8305
+ }
8306
+ setError(msg) {
8307
+ this.value = null;
8308
+ this.errorMessage = msg;
8309
+ this.ezCancelWaitingChange.emit();
8310
+ }
8311
+ handleBlur() {
8312
+ if (!this._changePending) {
8313
+ return;
8314
+ }
8315
+ try {
8316
+ const parsedNumber = this.getParsedNumber();
8317
+ if (parsedNumber !== undefined && isNaN(parsedNumber)) {
8318
+ this.setError(this.i18n("ez-classic-number-input.invalidNumber"));
8319
+ }
8320
+ else {
8321
+ try {
8322
+ this.changeValue(parsedNumber);
8323
+ }
8324
+ catch (e) {
8325
+ this.setError(e.message);
8326
+ return;
8327
+ }
8328
+ }
8329
+ }
8330
+ finally {
8331
+ for (const callback of this._valuePromiseCallbacks) {
8332
+ callback(this.value);
8333
+ }
8334
+ this._valuePromiseCallbacks = [];
8335
+ }
8336
+ }
8337
+ handleInput() {
8338
+ const parsedNumber = this.getParsedNumber();
8339
+ if (parsedNumber !== this.value) {
8340
+ this._focused = true;
8341
+ this._changePending = true;
8342
+ this.ezStartChange.emit({ waitmessage: "", blocking: false });
8343
+ }
8344
+ }
8345
+ getParsedNumber(value = this._textInput.value) {
8346
+ return (value === null || value === void 0 ? void 0 : value.trim()) ? NumberUtils$1.stringToNumber(value) : undefined;
8347
+ }
8348
+ setInputValue() {
8349
+ const textValue = this.getTextValue(this.value) || '';
8350
+ if ((this._value || '') !== textValue) {
8351
+ this._value = textValue;
8352
+ this._textInput.value = this._value;
8353
+ }
8354
+ }
8355
+ async componentWillLoad() {
8356
+ this.i18n = await initI18n();
8357
+ }
8358
+ componentDidLoad() {
8359
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
8360
+ this.setInputValue();
8361
+ if (this.autoFocus) {
8362
+ requestAnimationFrame(() => {
8363
+ this.setFocus({ selectText: true });
8364
+ });
8365
+ }
8366
+ }
8367
+ render() {
8368
+ ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
8369
+ return (h("ez-classic-input", { class: "number__input", "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"), ref: (elem) => this._textInput = elem, "data-slave-mode": "true", label: this.label, onBlur: () => this.handleBlur(), onInput: () => this.handleInput(), enabled: this.enabled, errorMessage: this.errorMessage, size: this.size, value: this._value, required: this.required, onEzChange: (event) => event.stopPropagation() }));
8370
+ }
8371
+ get _elem() { return this; }
8372
+ static get watchers() { return {
8373
+ "label": ["observeLabel"],
8374
+ "errorMessage": ["observeErrorMessage"],
8375
+ "value": ["observeValue"],
8376
+ "precision": ["observePrecision"],
8377
+ "prettyPrecision": ["observePrecision"]
8378
+ }; }
8379
+ static get style() { return ezClassicNumberInputCss; }
8380
+ };
8381
+
8382
+ const ezClassicSearchCss = ":host{--ez-classic-search--height:42px;--ez-classic-search--width:100%;--ez-classic-search__icon--width:48px;--ez-classic-search--border-radius:var(--border--radius-medium, 12px);--ez-classic-search--border-radius-small:var(--border--radius-small, 6px);--ez-classic-search--font-size:var(--text--medium, 14px);--ez-classic-search--font-family:var(--font-pattern, Arial);--ez-classic-search--font-weight--large:var(--text-weight--large, 500);--ez-classic-search--font-weight--medium:var(--text-weight--medium, 400);--ez-classic-search--background-color--xlight:var(--background--xlight, #fff);--ez-classic-search--background-medium:var(--background--medium, #f0f3f7);--ez-classic-search--line-height:calc(var(--text--medium, 14px) + 4px);--ez-classic-search__input--background-color:var(--background--medium, #e0e0e0);--ez-classic-search__input--border:var(--border--medium, 2px solid);--ez-classic-search__input--border-color:var(--ez-classic-search__input--background-color);--ez-classic-search__input--focus--border-color:var(--color--primary, #008561);--ez-classic-search__input--disabled--background-color:var(--color--disable-secondary, #F2F5F8);--ez-classic-search__input--disabled--color:var(--text--disable, #AFB6C0);--ez-classic-search__input--error--border-color:#CC2936;--ez-classic-search__btn--color:var(--title--primary, #2B3A54);--ez-classic-search__btn-disabled--color:var(--text--disable, #AFB6C0);--ez-classic-search__btn-hover--color:var(--color--primary, #4e4e4e);--ez-classic-search__label--color:var(--title--primary, #2B3A54);--ez-classic-search--space--medium:var(--space--medium, 12px);--ez-classic-search--space--small:var(--space--small, 6px);display:flex;flex-wrap:wrap;position:relative;width:var(--ez-classic-search--width)}ez-icon{--ez-icon--color:inherit;font-weight:var(--text-weight--large, 600)}.suppressed-search-input{--ez-classic-input__input--border-color:var(--color--strokes, #dce0e8);--ez-classic-input__input--disabled--background-color:var(--background--xlight, #fff);--ez-classic-input__input--disabled--color:var(--title--primary, #2B3A54)}.btn{outline:none;border:none;background:none;cursor:pointer;color:var(--ez-classic-search__btn--color)}.btn:disabled{cursor:not-allowed;color:var(--ez-classic-search__btn-disabled--color)}.btn:disabled:hover{cursor:not-allowed;color:var(--ez-classic-search__btn-disabled--color)}.btn:hover{color:var(--ez-classic-search__btn-hover--color)}.btn__close{visibility:hidden}ez-classic-input:hover .btn__close,ez-classic-input:focus .btn__close{visibility:visible}";
8383
+
8384
+ const EzClassicSearch$1 = class extends HTMLElement$1 {
8385
+ constructor() {
8386
+ super();
8387
+ this.__registerHost();
8388
+ this.__attachShadow();
8389
+ this.ezChange = createEvent(this, "ezChange", 7);
8390
+ this._changeDeboucingTimeout = null;
8391
+ this._limitCharsToSearch = 3;
8392
+ this._deboucingTime = 300;
8393
+ this._maxWidthValue = 0;
8394
+ this._tabPressed = false;
8395
+ this._startHighlightTag = "<span class='card-item__highlight'>";
8396
+ this._endHighlightTag = "</span>";
8397
+ this._preSelection = undefined;
8398
+ this._visibleOptions = undefined;
8399
+ this._startLoading = false;
8400
+ this._showLoading = true;
8401
+ this._criteria = undefined;
8402
+ this.value = undefined;
8403
+ this.label = undefined;
8404
+ this.enabled = true;
8405
+ this.errorMessage = undefined;
8406
+ this.size = "default";
8407
+ this.optionLoader = undefined;
8408
+ this.contextProperties = undefined;
8409
+ this.showSelectedValue = true;
8410
+ this.showOptionValue = true;
8411
+ this.suppressEmptyOption = false;
8412
+ this.stopPropagateEnterKeyEvent = false;
8413
+ this.mode = "regular";
8414
+ this.classic = false;
8415
+ this.required = false;
8416
+ this.canShowError = true;
8417
+ this.hideErrorOnFocusOut = true;
8418
+ this.listOptionsPosition = undefined;
8419
+ this.isTextSearch = false;
8420
+ this.ignoreLimitCharsToSearch = false;
8421
+ this.options = undefined;
8422
+ this.suppressSearch = false;
8423
+ this.ensureClearButtonVisible = false;
8424
+ this.suppressPreLoad = true;
8425
+ this.autoFocus = false;
8426
+ this.alternativePlaceholder = undefined;
8427
+ this.showMore = undefined;
8428
+ this.suppressInputPersist = false;
8429
+ this.hideDescriptionInput = false;
8430
+ }
8431
+ observeErrorMessage() {
8432
+ var _a;
8433
+ if (this._textInput) {
8434
+ this._textInput.errorMessage = this.errorMessage;
8435
+ if (!((_a = this.errorMessage) === null || _a === void 0 ? void 0 : _a.trim()) && this.errorMessage) {
8436
+ this.setInputValue();
8437
+ }
8438
+ }
8439
+ }
8440
+ getValue(val) {
8441
+ return typeof val === 'object' ? val === null || val === void 0 ? void 0 : val.value : val;
8442
+ }
8443
+ validateNewValue(newValue, oldValue) {
8444
+ const parsedNewValue = this.getValue(newValue);
8445
+ const parsedOldValue = this.getValue(oldValue);
8446
+ const newValueIsValid = parsedNewValue !== "[object Object]";
8447
+ const valuesIsDifferent = parsedNewValue !== parsedOldValue;
8448
+ if (newValueIsValid && valuesIsDifferent) {
8449
+ return true;
8450
+ }
8451
+ return false;
8452
+ }
8453
+ async observeValue(newValue, oldValue) {
8454
+ if (this._textInput && this.validateNewValue(newValue, oldValue)) {
8455
+ if (typeof newValue === "string") {
8456
+ await this.handleValueAsString(newValue);
8457
+ return;
8458
+ }
8459
+ const newValueSelected = this.getSelectedOption(newValue);
8460
+ const currentValue = this.getSelectedOption(this._currentValue);
8461
+ if (this.isDifferentValues(currentValue, newValueSelected)) {
8462
+ this._currentValue = newValueSelected;
8463
+ this.setInputValue();
8464
+ const valueEmitted = newValueSelected !== null && newValueSelected !== void 0 ? newValueSelected : undefined;
8465
+ this.ezChange.emit(valueEmitted);
8466
+ }
8467
+ this.resetOptions();
8468
+ }
8469
+ }
8470
+ observeOptions(newOptions, oldOptions) {
8471
+ if (!newOptions.length && this.suppressPreLoad)
8472
+ return;
8473
+ if ((newOptions === null || newOptions === void 0 ? void 0 : newOptions.join('')) === (oldOptions === null || oldOptions === void 0 ? void 0 : oldOptions.join('')))
8474
+ return;
8475
+ this.loadOptions(SearchMode$1.PRELOAD);
8476
+ }
8477
+ /*
8478
+ * Retorna uma promise com o valor da opção selecionada,
8479
+ * que será resolvida quando o backend devolver este dado.
8480
+ */
8481
+ async getValueAsync() {
8482
+ if (!this._showLoading) {
8483
+ return new Promise(resolve => resolve(this.value));
8484
+ }
8485
+ return new Promise(resolve => {
8486
+ let id = setInterval(() => {
8487
+ if (!this._showLoading) {
8488
+ clearInterval(id);
8489
+ resolve(this.value);
8490
+ }
8491
+ }, 100);
8492
+ });
8493
+ }
8494
+ /**
8495
+ * Aplica o foco no campo.
8496
+ */
8497
+ async setFocus(options) {
8498
+ if (this._textInput) {
8499
+ this._textInput.setFocus(options);
8500
+ }
8501
+ }
8502
+ /**
8503
+ * Remove o foco do campo.
8504
+ */
8505
+ async setBlur() {
8506
+ if (this._textInput) {
8507
+ this._textInput.setBlur();
8508
+ }
8509
+ }
8510
+ /**
8511
+ * Retorna se o conteúdo é inválido.
8512
+ */
8513
+ async isInvalid() {
8514
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
8515
+ }
8516
+ /**
8517
+ * Limpa o valor do campo de pesquisa
8518
+ */
8519
+ async clearValue() {
8520
+ this.clearSearch();
8521
+ }
8522
+ async handleValueAsString(value) {
8523
+ if (this.getSelectedOption(value)) {
8524
+ this.setInputValue();
8525
+ return;
8526
+ }
8527
+ await this.loadDescriptionValue(value);
8528
+ if (!this._currentValue) {
8529
+ return;
8530
+ }
8531
+ this.setInputValue();
8532
+ this.ezChange.emit(this.value);
8533
+ this._currentValue = this.value;
8534
+ }
8535
+ isDifferentValues(firstValue, secondValue) {
8536
+ return ObjectUtils$1.objectToString(firstValue || {}) !== ObjectUtils$1.objectToString(secondValue || {});
8537
+ }
8538
+ getFormattedText(currentValue) {
8539
+ if (currentValue == undefined) {
8540
+ return;
8541
+ }
8542
+ let text = (!this.showSelectedValue || currentValue.value == undefined) ? currentValue.label : currentValue.label ? `${currentValue.value} - ${currentValue.label}` : currentValue.value;
8543
+ text = text === null || text === void 0 ? void 0 : text.replace(new RegExp(this._startHighlightTag, 'g'), '').replace(new RegExp(this._endHighlightTag, 'g'), '');
8544
+ return text;
8545
+ }
8546
+ getText() {
8547
+ const currentValue = this.getSelectedOption(this._currentValue);
8548
+ const text = this.getFormattedText(currentValue);
8549
+ return replaceQuotes$1(text);
8550
+ }
8551
+ getSelectedOption(value) {
8552
+ if (typeof value === "string" || value instanceof String) {
8553
+ return this._visibleOptions.find(o => o.value === value);
8554
+ }
8555
+ if (value) {
8556
+ return Object.assign(Object.assign({}, value), { value: replaceHighlight$1(value === null || value === void 0 ? void 0 : value.value), label: replaceHighlight$1(value === null || value === void 0 ? void 0 : value.label) });
8557
+ }
8558
+ return value;
8559
+ }
8560
+ updateVisibleOptions() {
8561
+ let opts = this._source || [];
8562
+ if (this.suppressEmptyOption) {
8563
+ this._visibleOptions = opts;
8564
+ }
8565
+ else {
8566
+ this._visibleOptions = [{ value: undefined, label: "" }].concat(opts);
8567
+ }
8568
+ this._maxWidthValue = this.getMaxWidthValue();
8569
+ }
8570
+ getMaxWidthValue() {
8571
+ var _a;
8572
+ const arrValues = [];
8573
+ (_a = this._visibleOptions) === null || _a === void 0 ? void 0 : _a.forEach(opt => {
8574
+ const widthValue = this.getWidthValue(opt.value);
8575
+ if (!arrValues.includes(widthValue)) {
8576
+ arrValues.push(widthValue);
8577
+ }
8578
+ });
8579
+ return arrValues.length > 1 ? Math.max(...arrValues) : 0;
8580
+ }
8581
+ getWidthValue(value) {
8582
+ if (this._itemValueBasis != undefined) {
8583
+ const span = this._itemValueBasis;
8584
+ if (value != undefined) {
8585
+ span.innerHTML = value;
8586
+ return span.clientWidth > 0 ? (span.clientWidth + 2) : 0;
8587
+ }
8588
+ else {
8589
+ span.innerHTML = "";
8590
+ }
8591
+ }
8592
+ return 0;
8593
+ }
8594
+ showOptions() {
8595
+ if (!this.enabled)
8596
+ return;
8597
+ if (this.isOptionsVisible()) {
8598
+ return;
8599
+ }
8600
+ this._ezPopOverPlusElement.showUnder(this._textInput);
8601
+ }
8602
+ hideOptions() {
8603
+ this._ezPopOverPlusElement.hide();
8604
+ }
8605
+ isOptionsVisible() {
8606
+ return this._ezPopOverPlusElement.opened;
8607
+ }
8608
+ selectCurrentOption(focusOnInput = true) {
8609
+ if (this._preSelection !== undefined) {
8610
+ this.selectOption(this._visibleOptions[this._preSelection], focusOnInput);
8611
+ this._preSelection = undefined;
8612
+ }
8613
+ else {
8614
+ this.controlListWithOnlyOne();
8615
+ }
8616
+ }
8617
+ updateSource(source) {
8618
+ this._startLoading = false;
8619
+ if (source instanceof Promise) {
8620
+ this._showLoading = true;
8621
+ source.then(result => {
8622
+ this.updateSource(result);
8623
+ }).finally(() => {
8624
+ this._showLoading = false;
8625
+ });
8626
+ this.updateVisibleOptions();
8627
+ }
8628
+ else {
8629
+ this._showLoading = false;
8630
+ if (Array.isArray(source)) {
8631
+ this._source = source;
8632
+ this.updateVisibleOptions();
8633
+ if (this._tabPressed) {
8634
+ this._tabPressed = false;
8635
+ this.controlEmptySearch(false);
8636
+ }
8637
+ }
8638
+ else {
8639
+ this.selectOption(source);
8640
+ }
8641
+ }
8642
+ }
8643
+ clearSource() {
8644
+ this._source = [];
8645
+ this.updateVisibleOptions();
8646
+ }
8647
+ selectOption(newOption, focusOnInput = true) {
8648
+ var _a, _b;
8649
+ const currentValue = this.getSelectedOption(this.value);
8650
+ const newOptionsReplaced = Object.assign(Object.assign({}, newOption), { value: replaceHighlight$1(newOption === null || newOption === void 0 ? void 0 : newOption.value), label: replaceHighlight$1(newOption === null || newOption === void 0 ? void 0 : newOption.label) });
8651
+ const newOptionsFormatted = Object.assign(Object.assign({}, newOptionsReplaced), { value: replaceQuotes$1(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.value), label: replaceQuotes$1(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.label) });
8652
+ if ((((_a = currentValue === null || currentValue === void 0 ? void 0 : currentValue.value) === null || _a === void 0 ? void 0 : _a.toString()) !== ((_b = newOptionsFormatted === null || newOptionsFormatted === void 0 ? void 0 : newOptionsFormatted.value) === null || _b === void 0 ? void 0 : _b.toString()))
8653
+ || (currentValue == undefined && newOptionsFormatted != undefined && "value" in newOptionsFormatted)) {
8654
+ const adjustedOpt = !(newOptionsFormatted === null || newOptionsFormatted === void 0 ? void 0 : newOptionsFormatted.value) ? undefined : newOptionsFormatted;
8655
+ this.value = adjustedOpt;
8656
+ this._currentValue = adjustedOpt;
8657
+ }
8658
+ else {
8659
+ this.setInputValue();
8660
+ this.resetOptions();
8661
+ }
8662
+ this._visibleOptions = [];
8663
+ this.clearSource();
8664
+ if (focusOnInput) {
8665
+ setTimeout(() => {
8666
+ this.setFocus();
8667
+ }, 0);
8668
+ }
8669
+ }
8670
+ loadOptions(mode, argument = "") {
8671
+ this._criteria = argument;
8672
+ this._startLoading = true;
8673
+ if (this.optionLoader) {
8674
+ const searchArgument = { mode, argument };
8675
+ this.updateSource(this.optionLoader(searchArgument, this.contextProperties));
8676
+ }
8677
+ else {
8678
+ this.updateSource(this.options);
8679
+ }
8680
+ }
8681
+ cancelPreselection() {
8682
+ if (!this._textInput.value && this._currentValue && this._source.length > 0) {
8683
+ this.selectOption(undefined);
8684
+ }
8685
+ else {
8686
+ window.setTimeout(() => {
8687
+ this.setInputValue();
8688
+ }, this._deboucingTime);
8689
+ }
8690
+ this.resetOptions();
8691
+ }
8692
+ setInputValue(clearError = true) {
8693
+ if (this.suppressInputPersist) {
8694
+ this.clearSearch();
8695
+ return;
8696
+ }
8697
+ const textValue = this.getText();
8698
+ if ((this._textInput.value || '') !== textValue) {
8699
+ this._textInput.value = textValue;
8700
+ if (clearError) {
8701
+ this.errorMessage = null;
8702
+ }
8703
+ }
8704
+ }
8705
+ clearSearch() {
8706
+ this.value = null;
8707
+ this._currentValue = null;
8708
+ this._textInput.value = "";
8709
+ }
8710
+ controlListWithOnlyOne(focusOnInput = true) {
8711
+ var _a, _b;
8712
+ const source = (_a = this._visibleOptions) === null || _a === void 0 ? void 0 : _a.filter((opt) => opt.label !== "" && opt.value != undefined);
8713
+ if ((source === null || source === void 0 ? void 0 : source.length) > 0) {
8714
+ const startHighlight = new RegExp(this._startHighlightTag, 'g');
8715
+ const endHighlight = new RegExp(this._endHighlightTag, 'g');
8716
+ let title = StringUtils$1.decodeHtmlEntities(source[0].label);
8717
+ const option = {
8718
+ value: (_b = source[0].value) === null || _b === void 0 ? void 0 : _b.replace(startHighlight, '').replace(endHighlight, ''),
8719
+ label: title === null || title === void 0 ? void 0 : title.replace(startHighlight, '').replace(endHighlight, '')
8720
+ };
8721
+ this.selectOption(option, focusOnInput);
8722
+ }
8723
+ }
8724
+ controlEmptySearch(focusOnInput = true) {
8725
+ var _a;
8726
+ if (!((_a = this._visibleOptions) === null || _a === void 0 ? void 0 : _a.length)) {
8727
+ this.clearSearch();
8728
+ ApplicationUtils.info(this.i18n("ez-classic-search.emptyList"));
8729
+ }
8730
+ else {
8731
+ this.controlListWithOnlyOne(focusOnInput);
8732
+ }
8733
+ }
8734
+ async loadDescriptionValue(argument) {
8735
+ var _a, _b, _c;
8736
+ if (argument == undefined) {
8737
+ return;
8738
+ }
8739
+ if (((_a = this.options) === null || _a === void 0 ? void 0 : _a.length) > 0) {
8740
+ this.loadOptionValue(argument);
8741
+ return;
8742
+ }
8743
+ const searchMode = this.hideDescriptionInput ? SearchMode$1.LOAD_DESCRIPTION : SearchMode$1.PREDICTIVE;
8744
+ const searchArgument = {
8745
+ mode: searchMode,
8746
+ argument
8747
+ };
8748
+ try {
8749
+ const source = await ((_b = this.optionLoader) === null || _b === void 0 ? void 0 : _b.call(this, searchArgument, this.contextProperties));
8750
+ if (source == undefined) {
8751
+ return;
8752
+ }
8753
+ if (source instanceof Promise) {
8754
+ source.then((result) => {
8755
+ this.setDescriptionValue(result);
8756
+ });
8757
+ }
8758
+ else {
8759
+ this.setDescriptionValue(source);
8760
+ }
8761
+ }
8762
+ catch (error) {
8763
+ if (((_c = error === null || error === void 0 ? void 0 : error.constructor) === null || _c === void 0 ? void 0 : _c.name) === "WarningException") {
8764
+ this.errorMessage = error.message;
8765
+ }
8766
+ throw error;
8767
+ }
8768
+ }
8769
+ setDescriptionValue(source) {
8770
+ const value = (source === null || source === void 0 ? void 0 : source[0]) || source;
8771
+ if (value == undefined || !Object.keys(value).length) {
8772
+ this.showNoResultMessage();
8773
+ return;
8774
+ }
8775
+ this._currentValue = value ? Object.assign(Object.assign({}, value), { value: replaceHighlight$1(value.value), label: replaceHighlight$1(value.label) }) : value;
8776
+ this.value = this._currentValue;
8777
+ this.setTextInputValue();
8778
+ }
8779
+ setTextInputValue() {
8780
+ if (this._textInput && (this._textInput.value === null || this._textInput.value === undefined)) {
8781
+ if (this.value === undefined || this.value === null)
8782
+ return;
8783
+ const textValue = (typeof this.value === 'string') ? this.value : this.getFormattedText(this.value);
8784
+ this._textInput.value = replaceQuotes$1(textValue);
8785
+ }
8786
+ }
8787
+ loadOptionValue(argument) {
8788
+ var _a;
8789
+ const source = (_a = this.options) === null || _a === void 0 ? void 0 : _a.find((opt) => opt.value === argument);
8790
+ if (source != undefined) {
8791
+ this.selectOption(source);
8792
+ }
8793
+ else {
8794
+ this.showNoResultMessage();
8795
+ }
8796
+ }
8797
+ async showNoResultMessage() {
8798
+ this.clearSearch();
8799
+ ApplicationUtils.info(this.i18n("ez-classic-search.emptySearch", { field: this.getFieldLabel() }));
8800
+ }
8801
+ getFieldLabel() {
8802
+ var _a;
8803
+ return (_a = this.label) === null || _a === void 0 ? void 0 : _a.replace(this.i18n("app.requiredInfo"), "").toUpperCase();
8804
+ }
8805
+ resetOptions() {
8806
+ if (this.showMore) {
8807
+ this.handleResetOptionsWithShowMoreVisible();
8808
+ return;
8809
+ }
8810
+ this.hideOptions();
8811
+ this._criteria = undefined;
8812
+ this._preSelection = undefined;
8813
+ this.updateVisibleOptions();
8814
+ }
8815
+ handleResetOptionsWithShowMoreVisible() {
8816
+ //Eh preciso adicionar um timeout para garantir que o evento seja escutado pelo botão de mostrar mais.
8817
+ setTimeout(() => {
8818
+ this.hideOptions();
8819
+ this._criteria = undefined;
8820
+ this._preSelection = undefined;
8821
+ this.updateVisibleOptions();
8822
+ }, 100);
8823
+ }
8824
+ async handleInitialValue() {
8825
+ const valueIsValid = !!this.getValue(this.value);
8826
+ if (!valueIsValid) {
8827
+ return;
8828
+ }
8829
+ if (typeof this.value === "string") {
8830
+ await this.handleValueAsString(this.value);
8831
+ return;
8832
+ }
8833
+ let text = this.getFormattedText(this.value);
8834
+ text = replaceQuotes$1(text);
8835
+ this._textInput.value = text;
8836
+ }
8837
+ //---------------------------------------------
8838
+ // Lifecycle web component
8839
+ //---------------------------------------------
8840
+ async componentWillLoad() {
8841
+ this.i18n = await initI18n();
8842
+ if (this.options === undefined) {
8843
+ this.options = [];
8844
+ const optionsTags = this.el.querySelectorAll("option");
8845
+ if (optionsTags) {
8846
+ optionsTags.forEach(e => {
8847
+ let label = e.innerText;
8848
+ let value = e.getAttribute("value");
8849
+ let details = e.getAttribute("details");
8850
+ if (!value) {
8851
+ value = label;
8852
+ }
8853
+ this.options.push({ label, value, details });
8854
+ e.hidden = true;
8855
+ });
8856
+ }
8857
+ }
8858
+ this.updateSource([]);
8859
+ }
8860
+ componentDidRender() {
8861
+ var _a;
8862
+ (_a = this._optionsList) === null || _a === void 0 ? void 0 : _a.querySelectorAll(".item").forEach((elem) => {
8863
+ ElementIDUtils.addIDInfoIfNotExists(elem, "itemSearch");
8864
+ });
8865
+ }
8866
+ async componentDidLoad() {
8867
+ this._currentValue = this.value;
8868
+ CSSVarsUtils.applyVarsTextInput(this.el, this._textInput);
8869
+ this._resizeObserver = new ResizeObserver((entries) => {
8870
+ window.requestAnimationFrame(() => {
8871
+ if (!Array.isArray(entries) || !entries.length)
8872
+ return;
8873
+ });
8874
+ });
8875
+ this._intersectionObserver = new IntersectionObserver((entries) => {
8876
+ entries.forEach(entry => {
8877
+ if (!entry.isIntersecting && this._ezPopOverPlusElement) {
8878
+ this._ezPopOverPlusElement.hide();
8879
+ }
8880
+ });
8881
+ }, { threshold: 0.1 });
8882
+ if (this._textInput) {
8883
+ this._intersectionObserver.observe(this._textInput);
8884
+ }
8885
+ await this.handleInitialValue();
8886
+ if (this.autoFocus) {
8887
+ requestAnimationFrame(() => {
8888
+ this.setFocus({ selectText: true });
8889
+ });
8890
+ }
8891
+ }
8892
+ disconnectedCallback() {
8893
+ var _a, _b;
8894
+ (_a = this._resizeObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
8895
+ (_b = this._intersectionObserver) === null || _b === void 0 ? void 0 : _b.disconnect();
8896
+ }
8897
+ //---------------------------------------------
8898
+ // Event handlers
8899
+ //---------------------------------------------
8900
+ handleClassicIconClick(event) {
8901
+ const { icon } = event.detail;
8902
+ if (icon === "left") {
8903
+ this.loadOptions(SearchMode$1.ADVANCED);
8904
+ return;
8905
+ }
8906
+ this.clearSearch();
8907
+ }
8908
+ buildNumberArgument(argument) {
8909
+ if (this.isTextSearch) {
8910
+ return NaN;
8911
+ }
8912
+ return Number(argument || undefined);
8913
+ }
8914
+ onTextInputChangeHandler(event) {
8915
+ var _a;
8916
+ this.clearDeboucingTimeout();
8917
+ if (this._startLoading) {
8918
+ this._changeDeboucingTimeout = window.setTimeout(() => {
8919
+ this.onTextInputChangeHandler(event);
8920
+ }, this._deboucingTime);
8921
+ return;
8922
+ }
8923
+ const argument = (_a = event.target.value) === null || _a === void 0 ? void 0 : _a.trim();
8924
+ const argumentNumber = this.buildNumberArgument(argument);
8925
+ if (!this._criteria) {
8926
+ this._textInput.value = event.data || argument;
8927
+ }
8928
+ this._criteria = argument;
8929
+ if (argument) {
8930
+ this._showLoading = false;
8931
+ this.clearSource();
8932
+ if (this.ignoreLimitCharsToSearch || !isNaN(argumentNumber) || argument.length >= this._limitCharsToSearch) {
8933
+ this._showLoading = true;
8934
+ this._changeDeboucingTimeout = window.setTimeout(() => {
8935
+ this.loadOptions(SearchMode$1.PREDICTIVE, isNaN(argumentNumber) ? argument : argumentNumber.toString());
8936
+ }, this._deboucingTime);
8937
+ this.showOptions();
8938
+ }
8939
+ else {
8940
+ this.hideOptions();
8941
+ }
8942
+ }
8943
+ else {
8944
+ this.hideOptions();
8945
+ this._showLoading = false;
8946
+ this.clearSource();
8947
+ }
8948
+ }
8949
+ clearDeboucingTimeout() {
8950
+ if (this._changeDeboucingTimeout) {
8951
+ window.clearTimeout(this._changeDeboucingTimeout);
8952
+ this._changeDeboucingTimeout = null;
8953
+ }
8954
+ }
8955
+ async keyDownHandler(event) {
8956
+ this._tabPressed = false;
8957
+ if (event.ctrlKey) {
8958
+ if (event.key === "f" || event.key === "F") {
8959
+ this.loadOptions(SearchMode$1.ADVANCED);
8960
+ //ATENÇÃO: Ctrl + F tem ação específica nos browsers
8961
+ //nesse caso, como vamos abrir o popup de busca avançada,
8962
+ //não é interessante deixar o evento propagar;
8963
+ event.stopPropagation();
8964
+ event.stopImmediatePropagation();
8965
+ event.preventDefault();
8966
+ }
8967
+ }
8968
+ switch (event.key) {
8969
+ case "ArrowDown":
8970
+ event.stopPropagation();
8971
+ if (this.canShowListOptions()) {
8972
+ event.preventDefault();
8973
+ }
8974
+ if (!this.isOptionsVisible()) {
8975
+ this.showOptions();
8976
+ }
8977
+ await this._classicSearchList.nextOption();
8978
+ break;
8979
+ case "ArrowUp":
8980
+ event.stopPropagation();
8981
+ if (this.canShowListOptions()) {
8982
+ event.preventDefault();
8983
+ }
8984
+ await this._classicSearchList.previousOption();
8985
+ break;
8986
+ case "Enter":
8987
+ this.handleEventPropagation(event);
8988
+ this.selectCurrentOption();
8989
+ break;
8990
+ case "Escape":
8991
+ this.cancelPreselection();
8992
+ break;
8993
+ case "Tab":
8994
+ this._tabPressed = true;
8995
+ this.selectCurrentOption(false);
8996
+ break;
8997
+ }
8998
+ //ATENÇÃO: Existe a necessidade de propagar o evento de teclado.
8999
+ //Por exemplo, quando o usuário dá um Enter, além de selecionar
9000
+ //um valor, também significa que a ateração finalizou,
9001
+ //e o contexto pode reagir (fechar um popup por exemplo).
9002
+ //event.stopPropagation();
9003
+ }
9004
+ //O evento deve ter sua propagação interrompida, apenas se a lista de opções estiver sendo exibida.
9005
+ handleEventPropagation(event) {
9006
+ if (this._ezPopOverPlusElement.opened && this.stopPropagateEnterKeyEvent) {
9007
+ event.stopPropagation();
9008
+ }
9009
+ }
9010
+ onTextInputFocusOutHandler() {
9011
+ if (this.hideErrorOnFocusOut)
9012
+ this.cancelPreselection();
9013
+ }
9014
+ canShowListOptions() {
9015
+ return !this._showLoading && this._visibleOptions.length > 0;
9016
+ }
9017
+ onChangePreSelection(value) {
9018
+ this._preSelection = value;
9019
+ }
9020
+ async handleClickShowMore() {
9021
+ var _a, _b;
9022
+ if (!this.optionLoader)
9023
+ return;
9024
+ const argument = (_b = (_a = this._textInput) === null || _a === void 0 ? void 0 : _a.value) !== null && _b !== void 0 ? _b : "";
9025
+ const searchArgument = { mode: SearchMode$1.ADVANCED, argument };
9026
+ const selectedOption = await this.optionLoader(searchArgument, this.contextProperties);
9027
+ if (selectedOption && !Array.isArray(selectedOption)) {
9028
+ this.selectOption(selectedOption);
9029
+ }
9030
+ }
9031
+ renderShowMore() {
9032
+ if (!this.showMore || this._showLoading)
9033
+ return;
9034
+ return (h("div", { style: { display: "flex", justifyContent: "center" }, "data-element-id": ElementIDUtils.getInternalIDInfo("showMore") }, h("ez-button", { onClick: async () => await this.handleClickShowMore(), variant: "tertiary", style: { width: "100%", justifyContent: "center" }, label: this.i18n("ez-classic-search.showMore") })));
9035
+ }
9036
+ render() {
9037
+ var _a;
9038
+ ElementIDUtils.addIDInfoIfNotExists(this.el, 'input');
9039
+ const canClearSearch = !!(((_a = this._textInput) === null || _a === void 0 ? void 0 : _a.value) && (this._criteria || this.value)) || this.ensureClearButtonVisible;
9040
+ return (h(Host, null, h("ez-classic-input", { "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"), class: this.suppressSearch ? "suppressed-search-input" : "", ref: elem => this._textInput = elem, "data-slave-mode": "true", enabled: this.enabled && !this.suppressSearch, onInput: event => this.onTextInputChangeHandler(event), onFocusout: () => this.onTextInputFocusOutHandler(), onKeyDown: event => this.keyDownHandler(event), label: this.label, helpText: this.canShowError ? this.errorMessage : undefined, state: this.errorMessage && this.canShowError ? "error" : "default", size: this.size, placeholder: this.alternativePlaceholder, leftIconName: "search", leftIconClickable: true, rightIconName: canClearSearch ? "close" : null, rightIconClickable: true, required: this.required, onIconClick: (event) => this.handleClassicIconClick(event), onEzChange: (event) => event.stopPropagation() }), h("ez-popover-plus", { ref: elem => this._ezPopOverPlusElement = elem, autoClose: false, overlayType: "none", useAnchorSize: true, anchorElement: [this._textInput, this.el], "data-element-id": this.el.getAttribute("data-element-id"), onEzVisibilityChange: (event) => event.stopPropagation() }, h("div", null, h("classic-search-list", { ref: (ref) => this._classicSearchList = ref, showLoading: this._showLoading, visibleOptions: this._visibleOptions, textEmptyList: this.i18n("ez-classic-search.emptyList"), canShowListOptions: this.canShowListOptions(), value: this.value, showOptionValue: this.showOptionValue, preSelection: this._preSelection, onChangeValue: ({ detail }) => this.selectOption(detail), onChangePreSelection: ({ detail }) => this.onChangePreSelection(detail) }), this.renderShowMore()))));
9041
+ }
9042
+ get el() { return this; }
9043
+ static get watchers() { return {
9044
+ "errorMessage": ["observeErrorMessage"],
9045
+ "value": ["observeValue"],
9046
+ "options": ["observeOptions"]
9047
+ }; }
9048
+ static get style() { return ezClassicSearchCss; }
9049
+ };
9050
+
9051
+ const ezClassicSearchPlusCss = ":host{--ez-classic-search--height:42px;--ez-classic-search--width:100%;--ez-classic-search__icon--width:48px;--ez-classic-search--border-radius:var(--border--radius-medium, 12px);--ez-classic-search--border-radius-small:var(--border--radius-small, 6px);--ez-classic-search--font-size:var(--text--medium, 14px);--ez-classic-search--font-family:var(--font-pattern, Arial);--ez-classic-search--font-weight--large:var(--text-weight--large, 500);--ez-classic-search--font-weight--medium:var(--text-weight--medium, 400);--ez-classic-search--background-color--xlight:var(--background--xlight, #fff);--ez-classic-search--background-medium:var(--background--medium, #f0f3f7);--ez-classic-search--line-height:calc(var(--text--medium, 14px) + 4px);--ez-classic-search__input--background-color:var(--background--medium, #e0e0e0);--ez-classic-search__input--border:var(--border--medium, 2px solid);--ez-classic-search__input--border-color:var(--ez-classic-search__input--background-color);--ez-classic-search__input--focus--border-color:var(--color--primary, #008561);--ez-classic-search__input--disabled--background-color:var(--color--disable-secondary, #F2F5F8);--ez-classic-search__input--disabled--color:var(--text--disable, #AFB6C0);--ez-classic-search__input--error--border-color:#CC2936;--ez-classic-search__btn--color:var(--title--primary, #2B3A54);--ez-classic-search__btn-disabled--color:var(--text--disable, #AFB6C0);--ez-classic-search__btn-hover--color:var(--color--primary, #4e4e4e);--ez-classic-search__label--color:var(--title--primary, #2B3A54);--ez-classic-search__list-title--primary:var(--title--primary, #2B3A54);--ez-classic-search__list-text--primary:var(--text--primary, #626e82);--ez-classic-search__list-height:calc(var(--ez-classic-search--font-size) + var(--ez-classic-search--space--medium) + 4px);--ez-classic-search__list-min-width:64px;--ez-classic-search--space--medium:var(--space--medium, 12px);--ez-classic-search--space--small:var(--space--small, 6px);--ez-classic-search__scrollbar--color-default:var(--scrollbar--default, #626e82);--ez-classic-search__scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--ez-classic-search__scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--ez-classic-search__scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--ez-classic-search__scrollbar--border-radius:var(--border--radius-small, 6px);--ez-classic-search__scrollbar--width:var(--space--medium, 12px);display:flex;flex-wrap:wrap;position:relative;width:var(--ez-classic-search--width)}ez-icon{--ez-icon--color:inherit;font-weight:var(--text-weight--large, 600)}.suppressed-search-input{--ez-classic-input__input--border-color:var(--color--strokes, #dce0e8);--ez-classic-input__input--disabled--background-color:var(--background--xlight, #fff);--ez-classic-input__input--disabled--color:var(--title--primary, #2B3A54)}.list-container{min-width:var(--ez-classic-search__list-min-width);overflow:auto;position:relative;width:100%}.list-wrapper{display:flex;flex-direction:column;box-sizing:border-box;width:0;z-index:var(--more-visible, 2);max-height:350px;min-width:150px;background-color:var(--ez-classic-search--background-color--xlight);border-radius:var(--ez-classic-search--border-radius);box-shadow:var(--shadow, 0px 0px 16px 0px #000)}.list-options{margin-top:0px;box-sizing:border-box;width:100%;height:100%;padding:0;display:flex;flex-direction:column;scroll-behavior:smooth;overflow-y:auto;overflow-x:hidden;scrollbar-width:thin;scrollbar-color:var(--ez-classic-search__scrollbar--color-clicked) var(--ez-classic-search__scrollbar--color-background)}.list-options::-webkit-scrollbar{background-color:var(--scrollbar--background);width:var(--space--small);max-width:var(--space--small);min-width:var(--space--small);height:var(--space--small);max-height:var(--space--small);min-height:var(--space--small)}.list-options::-webkit-scrollbar-track{background-color:var(--ez-classic-search__scrollbar--color-background);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb{background-color:var(--ez-classic-search__scrollbar--color-default);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb:vertical:hover,.list-options::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--ez-classic-search__scrollbar--color-hover)}.list-options::-webkit-scrollbar-thumb:vertical:active,.list-options::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--ez-classic-search__scrollbar--color-clicked)}.item{display:flex;align-items:center;width:100%;box-sizing:border-box;list-style-type:none;cursor:pointer;border-radius:var(--ez-classic-search--border-radius-small);gap:var(--space--small, 6px)}.item__value,.item__label{flex-basis:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size);line-height:var(--ez-classic-search--line-height)}.item__label{font-weight:var(--ez-classic-search--font-weight--medium)}.item__label--bold{font-weight:var(--ez-classic-search--font-weight--large)}.item__value{text-align:center;color:var(--ez-classic-search__list-text--primary);font-weight:var(--ez-classic-search--font-weight--large)}.item__value--hidden{visibility:hidden;position:absolute;white-space:nowrap;z-index:-1;top:0;left:0}.item__label{text-align:left}.message{text-align:center;display:flex;justify-content:center;align-items:center;list-style-type:none;min-height:var(--ez-classic-search__list-height)}.message__no-result{color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size)}.message__loading{border-radius:50%;width:14px;height:14px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;border:3px solid var(--ez-classic-search__list-title--primary);border-top:3px solid transparent}.item__list>li:hover{background-color:var(--ez-classic-search--background-medium)}.preselected{background-color:var(--background--medium)}.btn{outline:none;border:none;background:none;cursor:pointer;color:var(--ez-classic-search__btn--color)}.btn:disabled{cursor:not-allowed;color:var(--ez-classic-search__btn-disabled--color)}.btn:disabled:hover{cursor:not-allowed;color:var(--ez-classic-search__btn-disabled--color)}.btn:hover{color:var(--ez-classic-search__btn-hover--color)}.btn__close{visibility:hidden}ez-classic-input:hover .btn__close,ez-c-input:focus .btn__close{visibility:visible}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@supports not (scrollbar-width: thin){.item{padding-right:8px}}.ez-classic-search-plus__container{display:flex;flex-grow:1;gap:3px}.ez-classic-search-plus__wrapper{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.ez-classic-search-plus__label-container{display:flex;flex-grow:1;gap:3px;overflow:hidden}.ez-classic-search-plus__label-container label{overflow:hidden;text-overflow:ellipsis;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);white-space:nowrap}.ez-classic-search-plus__text-input{--ez-classic-input--border-top-left-radius:0px;--ez-classic-input--border-bottom-left-radius:0px;outline:none}.ez-classic-search-plus__code-input-no-border{--ez-classic-input--border-top-right-radius:0px;--ez-classic-input--border-bottom-right-radius:0px}.ez-classic-search-plus__code-input{max-width:85px;--ez-classic-input--padding-inline:6px;--ez-classic-input--gap:6px}.ez-classic-search-plus__code-input-full{width:100%}.description-input-container{width:100%;outline:none}.required-indicator{font-size:var(--font--size--default, 14px);font-family:var(--font--pattern, 'Roboto');color:var(--color--red-600, #BD0025);margin-left:var(--space--4, 4px);vertical-align:top}";
9052
+
9053
+ const EzClassicSearchPlus$1 = class extends HTMLElement$1 {
9054
+ constructor() {
9055
+ super();
9056
+ this.__registerHost();
9057
+ this.__attachShadow();
9058
+ this.ezChange = createEvent(this, "ezChange", 7);
9059
+ this.SEARCH_DESCRIPTION_TIMEOUT = 2000;
9060
+ this.INTERVAL_TO_RETRY_ASYNC_VALUE = 100;
9061
+ this._ignoreNextValue = false;
9062
+ this.value = undefined;
9063
+ this.enabled = true;
9064
+ this.disableCodeInput = false;
9065
+ this.disableDescriptionInput = false;
9066
+ this.label = undefined;
9067
+ this.hideDescriptionInput = false;
9068
+ this.canShowError = true;
9069
+ this.errorMessage = undefined;
9070
+ this.mode = "regular";
9071
+ this.size = "default";
9072
+ this.required = false;
9073
+ this.contextProperties = undefined;
9074
+ this.optionLoader = undefined;
9075
+ this.showOptionValue = true;
9076
+ this.stopPropagateEnterKeyEvent = false;
9077
+ this.autoFocus = false;
9078
+ this.showSelectedValue = true;
9079
+ this.suppressEmptyOption = false;
9080
+ this.hideErrorOnFocusOut = true;
9081
+ this.listOptionsPosition = undefined;
9082
+ this.isTextSearch = false;
9083
+ this.ignoreLimitCharsToSearch = false;
9084
+ this.suppressSearch = false;
9085
+ this.suppressPreLoad = true;
9086
+ this.ensureClearButtonVisible = false;
9087
+ this.descriptionValue = "";
9088
+ this.codeValue = "";
9089
+ this.isLoadingDescription = false;
9090
+ this.searchDescriptionIsOpen = false;
9091
+ this.visibleOptions = undefined;
9092
+ this.showLoading = true;
9093
+ }
9094
+ async observeValue(newValue, oldValue) {
9095
+ var _a;
9096
+ if (this._ignoreNextValue) {
9097
+ this._ignoreNextValue = false;
9098
+ return;
9099
+ }
9100
+ const newNormalizedValue = this.normalizeValueToCodeValue(newValue);
9101
+ const oldNormalizedValue = this.normalizeValueToCodeValue(oldValue);
9102
+ if (newNormalizedValue === oldNormalizedValue) {
9103
+ return;
9104
+ }
9105
+ if (newNormalizedValue === undefined) {
9106
+ this.codeValue = undefined;
9107
+ this.descriptionValue = undefined;
9108
+ this.ezChange.emit(undefined);
9109
+ return;
9110
+ }
9111
+ this.codeValue = newNormalizedValue;
9112
+ try {
9113
+ this.descriptionValue = await this.normalizeCodeToDescriptionValue(newValue);
9114
+ if (this.descriptionValue === null || this.descriptionValue === undefined) {
9115
+ throw new Error("Valor não encontrado!");
9116
+ }
9117
+ }
9118
+ catch (err) {
9119
+ this._ignoreNextValue = true;
9120
+ this.clearSearch();
9121
+ console.warn("[EzSearchPlus] Erro ao obter descrição do registro.", err);
9122
+ if (((_a = err === null || err === void 0 ? void 0 : err.constructor) === null || _a === void 0 ? void 0 : _a.name) === "WarningException") {
9123
+ this.errorMessage = err.message;
9124
+ }
9125
+ throw err;
9126
+ }
9127
+ this.value = this.buildCurrentValue();
9128
+ this.ezChange.emit(this.value);
9129
+ this.errorMessage = null;
9130
+ }
9131
+ /**
9132
+ * Aplica o foco no campo.
9133
+ */
9134
+ async setFocus(options) {
9135
+ var _a;
9136
+ if (this.disableCodeInput) {
9137
+ (_a = this._textInputDescriptionValue) === null || _a === void 0 ? void 0 : _a.setFocus(options);
9138
+ return;
9139
+ }
9140
+ if (this._latestFocusedInputElement) {
9141
+ this._latestFocusedInputElement.setFocus(options);
9142
+ return;
9143
+ }
9144
+ this._textInputCodeValue.setFocus(options);
9145
+ }
9146
+ /**
9147
+ * Obtém o valor do componente só após a compo de apresentação
9148
+ * ter sido resolvido pelo option loader quando necessário
9149
+ */
9150
+ async getValueAsync() {
9151
+ if (!this.isLoadingDescription) {
9152
+ const currentOpt = this.buildCurrentValue();
9153
+ return new Promise(resolve => resolve(currentOpt));
9154
+ }
9155
+ return new Promise(resolve => {
9156
+ let id = setInterval(() => {
9157
+ if (!this.isLoadingDescription) {
9158
+ clearInterval(id);
9159
+ const currentOpt = this.buildCurrentValue();
9160
+ resolve(currentOpt);
9161
+ }
9162
+ }, this.INTERVAL_TO_RETRY_ASYNC_VALUE);
9163
+ });
9164
+ }
9165
+ /**
9166
+ * Limpa o valor do campo de pesquisa
9167
+ */
9168
+ async clearValue() {
9169
+ this.clearSearch();
9170
+ }
9171
+ /**
9172
+ * Remove o foco do campo.
9173
+ */
9174
+ async setBlur() {
9175
+ var _a, _b;
9176
+ (_a = this._textInputCodeValue) === null || _a === void 0 ? void 0 : _a.setBlur();
9177
+ (_b = this._textInputDescriptionValue) === null || _b === void 0 ? void 0 : _b.setBlur();
9178
+ }
9179
+ /**
9180
+ * Retorna se o conteúdo é inválido.
9181
+ */
9182
+ async isInvalid() {
9183
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
9184
+ }
9185
+ async componentWillLoad() {
9186
+ this.i18n = await initI18n();
9187
+ if (this.value && StringUtils$1.isEmpty(this.codeValue)) {
9188
+ await this.observeValue(this.value, undefined);
9189
+ }
9190
+ }
9191
+ componentDidLoad() {
9192
+ CSSVarsUtils.applyVarsTextInput(this.el, this._textInputCodeValue);
9193
+ CSSVarsUtils.applyVarsTextInput(this.el, this._textInputDescriptionValue);
9194
+ }
9195
+ connectedCallback() {
9196
+ this.initKeyboardManager();
9197
+ if (this.autoFocus) {
9198
+ requestAnimationFrame(() => {
9199
+ this.setFocus({ selectText: true });
9200
+ });
9201
+ }
9202
+ }
9203
+ clearSearch() {
9204
+ this.value = null;
9205
+ this.codeValue = null;
9206
+ this.descriptionValue = null;
9207
+ if (!this.hideDescriptionInput) {
9208
+ this._textInputDescriptionValue.value = null;
9209
+ }
9210
+ }
9211
+ async normalizeCodeToDescriptionValue(valueToNormalize) {
9212
+ if (!valueToNormalize) {
9213
+ return "";
9214
+ }
9215
+ if (typeof valueToNormalize == 'string') {
9216
+ try {
9217
+ valueToNormalize = JSON.parse(valueToNormalize);
9218
+ if ((valueToNormalize === null || valueToNormalize === void 0 ? void 0 : valueToNormalize.value) && !(valueToNormalize === null || valueToNormalize === void 0 ? void 0 : valueToNormalize.label)) {
9219
+ return await this.loadDescriptionValueByCode(valueToNormalize === null || valueToNormalize === void 0 ? void 0 : valueToNormalize.value);
9220
+ }
9221
+ }
9222
+ catch (e) {
9223
+ return await this.loadDescriptionValueByCode(valueToNormalize);
9224
+ }
9225
+ }
9226
+ //Se é diferente de objeto, temos que resolver a descrição
9227
+ if (typeof valueToNormalize != 'object') {
9228
+ return await this.loadDescriptionValueByCode(valueToNormalize);
9229
+ }
9230
+ return valueToNormalize === null || valueToNormalize === void 0 ? void 0 : valueToNormalize.label;
9231
+ }
9232
+ normalizeValueToCodeValue(valueToNormalize) {
9233
+ if (!valueToNormalize) {
9234
+ return undefined;
9235
+ }
9236
+ if (typeof valueToNormalize == 'string') {
9237
+ try {
9238
+ valueToNormalize = JSON.parse(valueToNormalize);
9239
+ }
9240
+ catch (e) {
9241
+ return valueToNormalize;
9242
+ }
9243
+ }
9244
+ if (typeof valueToNormalize != 'object') {
9245
+ return typeof valueToNormalize === 'number'
9246
+ ? String(valueToNormalize)
9247
+ : valueToNormalize;
9248
+ }
9249
+ return valueToNormalize === null || valueToNormalize === void 0 ? void 0 : valueToNormalize.value;
9250
+ }
9251
+ async loadDescriptionValueByCode(codeValue) {
9252
+ if (!this.optionLoader) {
9253
+ console.warn(this.i18n("ez-search-plus.optionLoaderNotDefined"));
9254
+ return "";
9255
+ }
9256
+ try {
9257
+ this.isLoadingDescription = true;
9258
+ const searchArgument = { mode: SearchMode$1.LOAD_DESCRIPTION, argument: codeValue };
9259
+ const loadedOption = await this.optionLoader(searchArgument);
9260
+ if (!loadedOption) {
9261
+ return "";
9262
+ }
9263
+ if (Array.isArray(loadedOption)) {
9264
+ return loadedOption[0].label;
9265
+ }
9266
+ return loadedOption.label;
9267
+ }
9268
+ finally {
9269
+ this.isLoadingDescription = false;
7403
9270
  }
7404
- this._inputElem.focus({ preventScroll: true });
7405
9271
  }
7406
- /**
7407
- * Remove o foco do campo.
7408
- */
7409
- async setBlur() {
7410
- this._inputElem.blur();
9272
+ handleCodeInputFocusOut() {
9273
+ this.cancelSelection();
9274
+ if (this.codeValue == this._textInputCodeValue.value)
9275
+ return;
9276
+ this.value = this._textInputCodeValue.value;
7411
9277
  }
7412
- async syncValue() {
7413
- if (this._internalValueChange) {
7414
- this._internalValueChange = false;
9278
+ handleSearchClick() {
9279
+ this.loadAdvancedSearch();
9280
+ }
9281
+ async loadAdvancedSearch() {
9282
+ if (!this.optionLoader) {
9283
+ console.warn(this.i18n("ez-search-plus.optionLoaderNotDefined"));
7415
9284
  return;
7416
9285
  }
7417
- if (this.value && this._maskFormatter && this._inputElem) {
7418
- const formattedValue = this._maskFormatter.format(this.value);
7419
- this._inputElem.value = formattedValue;
9286
+ const searchArgument = { mode: SearchMode$1.ADVANCED, argument: "" };
9287
+ let selectedItem = undefined;
9288
+ try {
9289
+ selectedItem = await this.optionLoader(searchArgument, this.contextProperties);
7420
9290
  }
7421
- else if (this._inputElem) {
7422
- this._inputElem.value = this.value || '';
9291
+ catch (ignore) { }
9292
+ if (!selectedItem)
9293
+ return;
9294
+ this.value = selectedItem;
9295
+ }
9296
+ buildCurrentValue() {
9297
+ if (StringUtils$1.isEmpty(this.codeValue)) {
9298
+ return undefined;
7423
9299
  }
9300
+ return {
9301
+ value: this.codeValue,
9302
+ label: this.descriptionValue
9303
+ };
7424
9304
  }
7425
- onInput(event) {
7426
- try {
7427
- const inputElement = event.target;
7428
- let inputValue = inputElement.value;
7429
- if (this._maskFormatter) {
7430
- const formattedValue = this._maskFormatter.format(inputValue);
7431
- const cleanValue = this._maskFormatter.removeMask(formattedValue);
7432
- inputElement.value = formattedValue;
7433
- this._internalValueChange = true;
7434
- this.value = cleanValue;
7435
- const emitValue = this.emitMaskedValue ? formattedValue : cleanValue;
7436
- this.ezChange.emit(emitValue);
9305
+ async handleTextInputChangeHandler(event) {
9306
+ if (!this.searchDescriptionIsOpen) {
9307
+ this._popover.showUnder(this.el);
9308
+ }
9309
+ const argument = event.target.value;
9310
+ await this.debounceLoaderOptions(argument);
9311
+ }
9312
+ async debounceLoaderOptions(argument) {
9313
+ if (this._debounceSearch)
9314
+ clearTimeout(this._debounceSearch);
9315
+ return new Promise((resolve) => {
9316
+ this._debounceSearch = setTimeout(async () => {
9317
+ await this.processOptionsLoader(argument);
9318
+ resolve();
9319
+ }, this.SEARCH_DESCRIPTION_TIMEOUT);
9320
+ });
9321
+ }
9322
+ updateKeyOption(option) {
9323
+ return (Object.assign(Object.assign({}, option), { presentationValue: option.value, presentationLabel: option.label }));
9324
+ }
9325
+ parseSearchOptions(options = []) {
9326
+ if (Array.isArray(options)) {
9327
+ const firstOption = options[0];
9328
+ if (!firstOption) {
9329
+ return [];
7437
9330
  }
7438
- else {
7439
- this._internalValueChange = true;
7440
- this.value = inputValue;
7441
- this.ezChange.emit(inputValue);
9331
+ if ("label" in firstOption || "value" in firstOption) {
9332
+ return options.map((option) => this.updateKeyOption(option));
7442
9333
  }
9334
+ return options;
7443
9335
  }
7444
- catch (error) {
7445
- console.error("Error processing input event:", error);
9336
+ if ("label" in options || "value" in options) {
9337
+ [this.updateKeyOption(options)];
7446
9338
  }
9339
+ return [options];
7447
9340
  }
7448
- onBlur() {
7449
- this.ezBlur.emit(this.value);
9341
+ async processOptionsLoader(argument) {
9342
+ try {
9343
+ this.showLoading = true;
9344
+ const searchArgument = { mode: SearchMode$1.PREDICTIVE, argument };
9345
+ const options = await this.optionLoader(searchArgument);
9346
+ this.visibleOptions = this.parseSearchOptions(options);
9347
+ }
9348
+ finally {
9349
+ this.showLoading = false;
9350
+ }
7450
9351
  }
7451
- onFocus() {
7452
- this.ezFocus.emit(this.value);
9352
+ handleSelectItem(evt) {
9353
+ const currentOpt = evt.detail;
9354
+ this.value = currentOpt;
9355
+ this._popover.hide();
9356
+ window.requestAnimationFrame(() => {
9357
+ var _a;
9358
+ (_a = this._textInputDescriptionValue) === null || _a === void 0 ? void 0 : _a.setFocus({ selectText: true });
9359
+ });
7453
9360
  }
7454
- handleIconClick(event, icon) {
7455
- if (!this.enabled) {
9361
+ async handleArrowUp() {
9362
+ if (!this.isOptionsVisible()) {
7456
9363
  return;
7457
9364
  }
7458
- if ((icon === "left" && !this.leftIconClickable) || (icon === "right" && !this.rightIconClickable)) {
7459
- this.setFocus({ preventScroll: true });
9365
+ await this._classicSearchList.previousOption();
9366
+ }
9367
+ async handleArrowDown() {
9368
+ if (!this.isOptionsVisible()) {
7460
9369
  return;
7461
9370
  }
7462
- event.stopPropagation();
7463
- this.iconClick.emit({ icon });
9371
+ await this._classicSearchList.nextOption();
7464
9372
  }
7465
- addInfoId() {
7466
- if (this._element) {
7467
- ElementIDUtils.addIDInfo(this._element);
7468
- }
7469
- if (this._inputElem) {
7470
- const dataInfo = { id: 'embedded' };
7471
- ElementIDUtils.addIDInfo(this._inputElem, 'classic-input', dataInfo);
9373
+ async selectCurrentItem() {
9374
+ var _a;
9375
+ await ((_a = this._classicSearchList) === null || _a === void 0 ? void 0 : _a.selectCurrentItem());
9376
+ }
9377
+ async cancelSelection() {
9378
+ var _a, _b, _c;
9379
+ const description = typeof this.value === 'object' ? (_a = this.value) === null || _a === void 0 ? void 0 : _a.label : "";
9380
+ if (this._textInputDescriptionValue && description && this._textInputDescriptionValue.value != description) {
9381
+ this._textInputDescriptionValue.value = description;
7472
9382
  }
9383
+ await ((_b = this._classicSearchList) === null || _b === void 0 ? void 0 : _b.cancelSelection());
9384
+ (_c = this._popover) === null || _c === void 0 ? void 0 : _c.hide();
7473
9385
  }
7474
- componentWillLoad() {
7475
- if (this.mask && !this._maskFormatter) {
7476
- this._maskFormatter = new MaskFormatter(this.mask);
9386
+ async handleInputTab() {
9387
+ await this.cancelSelection();
9388
+ }
9389
+ async handleInputEsc() {
9390
+ var _a;
9391
+ await this.cancelSelection();
9392
+ await ((_a = this._latestFocusedInputElement) === null || _a === void 0 ? void 0 : _a.setFocus({ selectText: true }));
9393
+ }
9394
+ async initKeyboardManager() {
9395
+ this._keyboardManager = new KeyboardManager();
9396
+ const defaultOpts = { element: this.el, propagate: true };
9397
+ this._keyboardManager
9398
+ .bind("ArrowUp", () => this.handleArrowUp(), Object.assign(Object.assign({}, defaultOpts), { propagate: false }))
9399
+ .bind("ArrowDown", () => this.handleArrowDown(), Object.assign(Object.assign({}, defaultOpts), { propagate: false }))
9400
+ .bind("Enter", () => this.selectCurrentItem(), Object.assign(Object.assign({}, defaultOpts), { propagate: !this.stopPropagateEnterKeyEvent }))
9401
+ .bind("Tab", () => this.handleInputTab(), defaultOpts)
9402
+ .bind("Escape", () => this.handleInputEsc(), defaultOpts);
9403
+ }
9404
+ disconnectedCallback() {
9405
+ this._keyboardManager
9406
+ .unbind("ArrowUp")
9407
+ .unbind("ArrowDown")
9408
+ .unbind("Enter")
9409
+ .unbind("Tab")
9410
+ .unbind("Escape");
9411
+ }
9412
+ isOptionsVisible() {
9413
+ return this._popover.opened;
9414
+ }
9415
+ setLatestFocusedInputElement(el) {
9416
+ this._latestFocusedInputElement = el;
9417
+ }
9418
+ handleCodeInputFocus() {
9419
+ this.setLatestFocusedInputElement(this._textInputCodeValue);
9420
+ }
9421
+ handleDescriptionInputFocus() {
9422
+ this.setLatestFocusedInputElement(this._textInputDescriptionValue);
9423
+ }
9424
+ handleOnEzVisibilityChange(event) {
9425
+ event.stopPropagation();
9426
+ this.searchDescriptionIsOpen = event.detail;
9427
+ }
9428
+ render() {
9429
+ var _a, _b;
9430
+ ElementIDUtils.addIDInfoIfNotExists(this.el, 'input');
9431
+ const canShowClearButton = !this.ensureClearButtonVisible && (!this.value && !((_a = this._textInputCodeValue) === null || _a === void 0 ? void 0 : _a.value) && !((_b = this._textInputDescriptionValue) === null || _b === void 0 ? void 0 : _b.value));
9432
+ return (h(Host, null, h("div", { class: "ez-classic-search-plus__wrapper" }, h("div", { class: "ez-classic-search-plus__label-container" }, h("label", { title: this.label }, this.label), this.required && h("span", { class: "required-indicator" }, "*")), h("div", { class: "ez-classic-search-plus__container" }, h("ez-classic-input", { ref: (elem) => this._textInputCodeValue = elem, class: {
9433
+ "ez-classic-search-plus__code-input": !this.hideDescriptionInput,
9434
+ "ez-classic-search-plus__code-input-no-border": !this.hideDescriptionInput,
9435
+ "ez-classic-search-plus__code-input-full": this.hideDescriptionInput
9436
+ }, "data-element-id": ElementIDUtils.getInternalIDInfo("codeInput"), "data-slave-mode": "true", enabled: !this.disableCodeInput && this.enabled, size: this.size, label: null, errorMessage: this.hideDescriptionInput ? this.errorMessage : "", value: this.codeValue, onFocusout: () => this.handleCodeInputFocusOut(), onFocus: () => this.handleCodeInputFocus(), leftIconName: "search", leftIconClickable: this.enabled, onIconClick: () => this.handleSearchClick(), onEzChange: (event) => event.stopPropagation() }), !this.hideDescriptionInput && (h("div", { class: "description-input-container" }, h("ez-classic-input", { ref: (elem) => this._textInputDescriptionValue = elem, tabIndex: -1, class: { "ez-classic-search-plus__text-input": true }, "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"), "data-slave-mode": "true", enabled: !this.disableDescriptionInput && this.enabled, label: null, errorMessage: this.errorMessage, size: this.size, value: this.descriptionValue, onInput: (event) => this.handleTextInputChangeHandler(event), onFocus: () => this.handleDescriptionInputFocus(), rightIconName: canShowClearButton ? "close" : null, rightIconClickable: this.enabled, onIconClick: () => this.clearSearch(), onEzChange: (event) => event.stopPropagation() }), h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this.el, autoClose: true, boxWidth: 'fit-content', overlayType: 'none', useAnchorSize: true, onEzVisibilityChange: (event) => this.handleOnEzVisibilityChange(event), "data-element-id": this.el.getAttribute("data-element-id") }, h("ez-classic-search-result-list", { ref: (ref) => this._classicSearchList = ref, showLoading: this.showLoading, visibleOptions: this.visibleOptions, value: this.value, showOptionValue: this.showOptionValue, onChangeValue: (evt) => this.handleSelectItem(evt) }))))))));
9437
+ }
9438
+ get el() { return this; }
9439
+ static get watchers() { return {
9440
+ "value": ["observeValue"]
9441
+ }; }
9442
+ static get style() { return ezClassicSearchPlusCss; }
9443
+ };
9444
+
9445
+ const ezClassicSearchResultListCss = ":host{--ez-classic-search__list-title--primary:var(--title--primary, #2B3A54);--ez-classic-search__list-text--primary:var(--text--primary, #626e82);--ez-classic-search__list-height:calc(var(--ez-classic-search--font-size) + var(--ez-classic-search--space--medium) + 4px);--ez-classic-search__list-min-width:64px;--ez-classic-search__scrollbar--color-default:var(--scrollbar--default, #626e82);--ez-classic-search__scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--ez-classic-search__scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--ez-classic-search__scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--ez-classic-search__scrollbar--border-radius:var(--border--radius-small, 6px);--ez-classic-search__scrollbar--width:var(--space--small, 6px);--ez-classic-search--border-radius-small:var(--border--radius-small, 6px);--ez-classic-search--font-size:var(--text--medium, 14px);--ez-classic-search--font-family:var(--font-pattern, Arial);--ez-classic-search--font-weight--large:var(--text-weight--large, 500);--ez-classic-search--font-weight--medium:var(--text-weight--medium, 400);--ez-classic-search--background-medium:var(--background--medium, #f0f3f7);--ez-classic-search--line-height:calc(var(--text--medium, 14px) + 4px)}.list-options{position:relative;z-index:var(--more-visible, 2);margin:var(--space--small) 0px;padding:0px;padding-inline-start:0px;box-sizing:border-box;width:100%;height:100%;max-height:350px;min-width:150px;display:flex;flex-direction:column;scroll-behavior:smooth;overflow-y:auto;overflow-x:hidden;scrollbar-width:thin;scrollbar-color:var(--ez-classic-search__scrollbar--color-clicked) var(--ez-classic-search__scrollbar--color-background)}.list-options::-webkit-scrollbar{background-color:var(--scrollbar--background);width:var(--space--small);max-width:var(--space--small);min-width:var(--space--small);height:var(--space--small);max-height:var(--space--small);min-height:var(--space--small)}.list-options::-webkit-scrollbar-track{background-color:var(--ez-classic-search__scrollbar--color-background);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb{background-color:var(--ez-classic-search__scrollbar--color-default);border-radius:var(--ez-classic-search__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb:vertical:hover,.list-options::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--ez-classic-search__scrollbar--color-hover)}.list-options::-webkit-scrollbar-thumb:vertical:active,.list-options::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--ez-classic-search__scrollbar--color-clicked)}.message{text-align:center;display:flex;justify-content:center;align-items:center;list-style-type:none;margin:var(--space--medium) 0px;min-height:var(--ez-classic-search__list-height)}.message__no-result{color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size)}.loading__container{display:flex;flex-direction:column;margin:var(--space--small)}.item__value,.item__label{flex-basis:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-classic-search__list-title--primary);font-family:var(--ez-classic-search--font-family);font-size:var(--ez-classic-search--font-size);line-height:var(--ez-classic-search--line-height)}.item__label{font-weight:var(--ez-classic-search--font-weight--medium)}.item__label--bold{font-weight:var(--ez-classic-search--font-weight--large)}.item__value{text-align:center;color:var(--ez-classic-search__list-text--primary);font-weight:var(--ez-classic-search--font-weight--large)}.item__value--hidden{visibility:hidden;position:absolute;white-space:nowrap;z-index:-1;top:0;left:0}.item__label{text-align:left}.item__list>li:hover{background-color:var(--ez-classic-search--background-medium)}.item{display:flex;align-items:center;width:100%;box-sizing:border-box;list-style-type:none;cursor:pointer;border-radius:var(--ez-classic-search--border-radius-small);gap:var(--space--small, 6px)}.preselected{background-color:var(--background--medium)}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@supports not (scrollbar-width: thin){.item{padding-right:8px}}";
9446
+
9447
+ const EzClassicSearchResultList$1 = class extends HTMLElement$1 {
9448
+ constructor() {
9449
+ super();
9450
+ this.__registerHost();
9451
+ this.__attachShadow();
9452
+ this.changeValue = createEvent(this, "changeValue", 7);
9453
+ this._startHighlightTag = "<span class='card-item__highlight'>";
9454
+ this._endHighlightTag = "</span>";
9455
+ this.showLoading = undefined;
9456
+ this.visibleOptions = [];
9457
+ this.value = undefined;
9458
+ this.showOptionValue = true;
9459
+ this._preSelection = undefined;
9460
+ }
9461
+ observerVisivleOptions(newValue) {
9462
+ if (newValue.length) {
9463
+ this.preSelectItemByIndex(0);
7477
9464
  }
7478
- if (!this.placeholder && this._maskFormatter) {
7479
- this.placeholder = this._maskFormatter.generatePlaceholder();
9465
+ }
9466
+ async nextOption() {
9467
+ const newPreSelection = this._preSelection === undefined ? 0 : Math.min(this._preSelection + 1, this.visibleOptions.length - 1);
9468
+ this.preSelectItemByIndex(newPreSelection);
9469
+ }
9470
+ async previousOption() {
9471
+ const newPreSelection = this._preSelection === undefined ? 0 : Math.max(this._preSelection - 1, 0);
9472
+ this.preSelectItemByIndex(newPreSelection);
9473
+ }
9474
+ preSelectItemByIndex(newIndex) {
9475
+ this._preSelection = newIndex;
9476
+ const option = this.visibleOptions[newIndex];
9477
+ this.scrollToOption(option);
9478
+ }
9479
+ selectOption(newOption) {
9480
+ const newOptionsReplaced = Object.assign(Object.assign({}, newOption), { value: newOption === null || newOption === void 0 ? void 0 : newOption.value, label: newOption === null || newOption === void 0 ? void 0 : newOption.label });
9481
+ const newOptionsFormatted = Object.assign(Object.assign({}, newOptionsReplaced), { value: this.removeHighLight(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.value), label: this.removeHighLight(newOptionsReplaced === null || newOptionsReplaced === void 0 ? void 0 : newOptionsReplaced.label) });
9482
+ this.changeValue.emit(newOptionsFormatted);
9483
+ }
9484
+ removeHighLight(text) {
9485
+ if (!text || typeof text !== 'string') {
9486
+ return text;
7480
9487
  }
9488
+ const startHighlight = new RegExp(this._startHighlightTag, 'g');
9489
+ const endHighlight = new RegExp(this._endHighlightTag, 'g');
9490
+ return text.replace(startHighlight, '').replace(endHighlight, '');
7481
9491
  }
7482
- componentDidLoad() {
7483
- this.syncValue();
7484
- this.addInfoId();
9492
+ createAndSelectOption(detail) {
9493
+ let { key, title } = detail;
9494
+ key = String(key !== null && key !== void 0 ? key : "");
9495
+ title = StringUtils$1.decodeHtmlEntities(title);
9496
+ const option = {
9497
+ value: this.removeHighLight(key),
9498
+ label: this.removeHighLight(title)
9499
+ };
9500
+ this.selectOption(option);
9501
+ }
9502
+ scrollToOption(opt) {
9503
+ if (!(opt === null || opt === void 0 ? void 0 : opt.value) || !this._optionsList)
9504
+ return;
9505
+ window.requestAnimationFrame(() => {
9506
+ var _a;
9507
+ const currentValue = String((_a = opt === null || opt === void 0 ? void 0 : opt.value) !== null && _a !== void 0 ? _a : "");
9508
+ const liElem = currentValue
9509
+ ? this._optionsList.querySelector(`div#item_${currentValue.replace(/([ #;&,.+*~':"!^$[\]()=<>|/\\])/g, '\\$1')}`)
9510
+ : undefined;
9511
+ if (liElem) {
9512
+ liElem.scrollIntoView({ behavior: "smooth", block: "nearest" });
9513
+ }
9514
+ });
9515
+ }
9516
+ buildItem(opt, index) {
9517
+ var _a;
9518
+ opt.label = opt.label || opt.value;
9519
+ const card = {
9520
+ key: String((_a = opt.presentationValue) !== null && _a !== void 0 ? _a : ""),
9521
+ title: opt.presentationLabel,
9522
+ details: opt.details
9523
+ };
9524
+ return h("div", { style: { "height": "100%" }, class: index === this._preSelection ? "item preselected" : "item", id: `item_${opt.value}`, onMouseDown: () => this.createAndSelectOption(card), onMouseOver: () => { this._preSelection = index; } }, h("ez-card-item", { item: card, compacted: true, enableKey: this.showOptionValue }));
9525
+ }
9526
+ async selectCurrentItem() {
9527
+ this.selectOption(this.visibleOptions[this._preSelection]);
9528
+ }
9529
+ async cancelSelection() {
9530
+ this.cancelPreselection();
9531
+ }
9532
+ cancelPreselection() {
9533
+ this._preSelection = undefined;
9534
+ }
9535
+ canShowListOptions() {
9536
+ return !this.showLoading && this.visibleOptions.length > 0;
9537
+ }
9538
+ async componentWillLoad() {
9539
+ this.i18n = await initI18n();
7485
9540
  }
7486
9541
  render() {
7487
- return (h(Host, null, h("label", { title: this.label, htmlFor: this.name }, this.label), h("div", { class: "input-container", "data-state": this.state, "data-disabled": (!this.enabled).toString(), onClick: () => this.setFocus({ preventScroll: true }) }, this.leftIconName && (h("ez-icon", { iconName: this.leftIconName, title: this.leftIconTooltip, onClick: (event) => this.handleIconClick(event, "left"), class: { 'icon-clickable': this.leftIconClickable } })), h("input", { ref: el => this._inputElem = el, id: this.name, type: this.type, title: this.value, placeholder: this.placeholder, disabled: !this.enabled, readonly: this.readonly, name: this.name, minlength: this.minlength, maxlength: this.maxlength, onInput: (event) => this.onInput(event), onBlur: this.onBlur.bind(this), onFocus: this.onFocus.bind(this) }), this.rightIconName && (h("ez-icon", { iconName: this.rightIconName, title: this.rightIconTooltip, onClick: (event) => this.handleIconClick(event, "right"), class: { 'icon-clickable': this.rightIconClickable } }))), this.helpText && (h("span", { title: this.helpText }, this.helpText))));
9542
+ return (h(Host, null, h("ul", { class: "list-options", ref: elem => this._optionsList = elem }, !this.showLoading
9543
+ && this.visibleOptions.length === 0
9544
+ && h("div", { class: "message" }, h("span", { class: "message__no-result" }, this.i18n("ez-classic-search-plus.emptyList"))), this.showLoading && (h("div", { class: "loading__container" }, h("ez-skeleton", { count: 4, height: '20px' }))), this.canShowListOptions() && this.visibleOptions.map((opt, index) => this.buildItem(opt, index)))));
7488
9545
  }
7489
- get _element() { return this; }
7490
9546
  static get watchers() { return {
7491
- "value": ["syncValue"]
9547
+ "visibleOptions": ["observerVisivleOptions"]
7492
9548
  }; }
7493
- static get style() { return ezClassicInputCss; }
9549
+ static get style() { return ezClassicSearchResultListCss; }
7494
9550
  };
7495
9551
 
7496
- const ezClassicTextAreaCss = ":host{display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);border:none;padding:0;--ez-classic-text-area--label-color:var(--color--ocean-green-1000, #00281D);--ez-classic-text-area--border-color-default:var(--color--gray-200, #D2D2D3);--ez-classic-text-area--border-color-focus:var(--color--gray-300, #A4A5A7);--ez-classic-text-area--border-color-success:var(--color--green-600, #157A00);--ez-classic-text-area--border-color-error:var(--color--red-600, #BD0025);--ez-classic-text-area--border-color-warning:var(--color--yellow-600, #EFB103);--ez-classic-text-area--background-color:var(--color--gray-70, #FFFFFF);--ez-classic-text-area--background-color-disabled:var(--color--gray-90, #EAEAEA);--ez-classic-text-area--text-color:var(--color--ocean-green-1000, #00281D);--ez-classic-text-area--placeholder-color:#bdbdbd;--ez-classic-text-area--icon-color:var(--color--gray-400, #77777A);--ez-classic-text-area--helptext-color:var(--color--ocean-green-1000, #00281D)}.text-area-container{display:flex;flex-direction:row;align-items:start;width:100%;border:none;border-radius:var(--border--radius-8, 8px);padding:var(--space--16, 16px);box-sizing:border-box;gap:var(--space--10, 10px);margin:var(--space--4, 4px) var(--space--2, 2px);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);resize:vertical;overflow:auto;background-color:var(--ez-classic-text-area--background-color)}.text-area-container,.text-area-container[data-state=\"default\"]{box-shadow:0 0 0 1px var(--ez-classic-text-area--border-color-default)}.text-area-container[data-state=\"success\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-success)}.text-area-container[data-state=\"error\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-error)}.text-area-container[data-state=\"warning\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-warning)}.text-area-container:focus-within{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-focus)}ez-icon{min-width:var(--space--24, 24px);color:var(--ez-classic-text-area--icon-color)}textarea{flex:1;border:none;outline:none;background:transparent;height:100%;width:100%;padding:0;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);text-overflow:ellipsis;min-height:calc(var(--ez-classic-text-area--min-height) - var(--space--32, 32px));resize:none;scrollbar-width:thin;color:var(--ez-classic-text-area--text-color)}.text-area-container[data-disabled=\"true\"]{cursor:not-allowed;background:var(--ez-classic-text-area--background-color-disabled);border-color:var(--ez-classic-text-area--border-color-default)}.text-area-container[data-disabled=\"true\"]>*{cursor:not-allowed}@keyframes ez-helptext-fadein{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}span{font-size:var(--font-size--xsmall, 10px);line-height:var(--line-height--16, 16px);overflow:hidden;text-overflow:ellipsis;animation:ez-helptext-fadein 0.3s ease;color:var(--ez-classic-text-area--helptext-color)}label{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:var(--line-height--20, 20px);color:var(--ez-classic-text-area--label-color)}.icon-clickable{cursor:pointer}.text-area-container[data-resize=\"none\"]{resize:none}.text-area-container[data-resize=\"both\"]{resize:both}.text-area-container[data-resize=\"horizontal\"]{resize:horizontal}.text-area-container[data-resize=\"vertical\"]{resize:vertical}.text-area-container::-webkit-resizer{display:none}.text-area-container::-moz-resizer{display:none}.text-area-container:not([data-resize=\"none\"]){position:relative}.text-area-container:not([data-resize=\"none\"])::after{content:'';position:absolute;bottom:var(--space--2, 2px);right:var(--space--2, 2px);width:var(--space--10, 10px);height:var(--space--10, 10px);background:linear-gradient(135deg, transparent 0% 50%, var(--ez-classic-text-area--border-color-default) 50% 58%, transparent 58% 70%, var(--ez-classic-text-area--border-color-default) 70% 78%, transparent 78% 100%);pointer-events:none}";
9552
+ const ezClassicTextAreaCss = ":host{display:flex;flex-direction:column;align-items:flex-start;box-sizing:border-box;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);border:none;padding:0;width:100%;--ez-classic-text-area--label-color:var(--color--ocean-green-1000, #00281D);--ez-classic-text-area--border-color-default:var(--color--gray-200, #D2D2D3);--ez-classic-text-area--border-color-focus:var(--color--gray-300, #A4A5A7);--ez-classic-text-area--border-color-success:var(--color--green-600, #157A00);--ez-classic-text-area--border-color-error:var(--color--red-600, #BD0025);--ez-classic-text-area--border-color-warning:var(--color--yellow-600, #EFB103);--ez-classic-text-area--background-color:var(--color--gray-70, #FFFFFF);--ez-classic-text-area--background-color-disabled:var(--color--gray-90, #EAEAEA);--ez-classic-text-area--text-color:var(--color--ocean-green-1000, #00281D);--ez-classic-text-area--placeholder-color:#bdbdbd;--ez-classic-text-area--icon-color:var(--color--gray-400, #77777A);--ez-classic-text-area--helptext-color:var(--color--ocean-green-1000, #00281D)}.text-area-container{display:flex;flex-direction:row;align-items:start;width:100%;border:none;border-radius:var(--border--radius-8, 8px);padding:var(--space--16, 16px);box-sizing:border-box;gap:var(--space--10, 10px);margin:var(--space--4, 4px) var(--space--2, 2px);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);resize:vertical;overflow:auto;background-color:var(--ez-classic-text-area--background-color)}.text-area-container,.text-area-container[data-state=\"default\"]{box-shadow:0 0 0 1px var(--ez-classic-text-area--border-color-default)}.text-area-container[data-state=\"success\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-success)}.text-area-container[data-state=\"error\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-error)}.text-area-container[data-state=\"warning\"]{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-warning)}.text-area-container:focus-within{box-shadow:0 0 0 var(--space--2, 2px) var(--ez-classic-text-area--border-color-focus)}ez-icon{min-width:var(--space--24, 24px);color:var(--ez-classic-text-area--icon-color)}textarea{flex:1;border:none;outline:none;background:transparent;height:100%;width:100%;padding:0;font-family:var(--font--pattern, Arial, sans-serif);font-size:var(--font-size--default, 14px);color:var(--color--ocean-green-1000, #00281D);text-overflow:ellipsis;min-height:calc(var(--ez-classic-text-area--min-height) - var(--space--32, 32px));resize:none;scrollbar-width:thin;color:var(--ez-classic-text-area--text-color)}.text-area-container[data-disabled=\"true\"]{cursor:not-allowed;background:var(--ez-classic-text-area--background-color-disabled);border-color:var(--ez-classic-text-area--border-color-default)}.text-area-container[data-disabled=\"true\"]>*{cursor:not-allowed}@keyframes ez-helptext-fadein{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}span{font-size:var(--font-size--xsmall, 10px);line-height:var(--line-height--16, 16px);overflow:hidden;text-overflow:ellipsis;animation:ez-helptext-fadein 0.3s ease;color:var(--ez-classic-text-area--helptext-color)}label{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:var(--line-height--20, 20px);color:var(--ez-classic-text-area--label-color)}.icon-clickable{cursor:pointer}.text-area-container[data-resize=\"none\"]{resize:none}.text-area-container[data-resize=\"both\"]{resize:both}.text-area-container[data-resize=\"horizontal\"]{resize:horizontal}.text-area-container[data-resize=\"vertical\"]{resize:vertical}.text-area-container::-webkit-resizer{display:none}.text-area-container::-moz-resizer{display:none}.text-area-container:not([data-resize=\"none\"]){position:relative}.text-area-container:not([data-resize=\"none\"])::after{content:'';position:absolute;bottom:var(--space--2, 2px);right:var(--space--2, 2px);width:var(--space--10, 10px);height:var(--space--10, 10px);background:linear-gradient(135deg, transparent 0% 50%, var(--ez-classic-text-area--border-color-default) 50% 58%, transparent 58% 70%, var(--ez-classic-text-area--border-color-default) 70% 78%, transparent 78% 100%);pointer-events:none}";
7497
9553
 
7498
9554
  const EzClassicTextArea$1 = class extends HTMLElement$1 {
7499
9555
  constructor() {
@@ -7573,6 +9629,195 @@ const EzClassicTextArea$1 = class extends HTMLElement$1 {
7573
9629
  static get style() { return ezClassicTextAreaCss; }
7574
9630
  };
7575
9631
 
9632
+ const ezClassicTimeInputCss = ":host{display:flex;flex-wrap:wrap;position:relative;width:100%}.time__input{height:100%}";
9633
+
9634
+ const EzClassicTimeInput$1 = class extends HTMLElement$1 {
9635
+ constructor() {
9636
+ super();
9637
+ this.__registerHost();
9638
+ this.__attachShadow();
9639
+ this.ezChange = createEvent(this, "ezChange", 7);
9640
+ this.ezStartChange = createEvent(this, "ezStartChange", 7);
9641
+ this.ezCancelWaitingChange = createEvent(this, "ezCancelWaitingChange", 7);
9642
+ this.label = undefined;
9643
+ this.value = undefined;
9644
+ this.enabled = true;
9645
+ this.errorMessage = undefined;
9646
+ this.showSeconds = false;
9647
+ this.mode = "regular";
9648
+ this.size = "default";
9649
+ this.required = false;
9650
+ this.canShowError = true;
9651
+ this.autoFocus = false;
9652
+ this.alternativePlaceholder = undefined;
9653
+ }
9654
+ observeErrorMessage() {
9655
+ var _a;
9656
+ if (this._textInput) {
9657
+ this._textInput.errorMessage = this.errorMessage;
9658
+ if (!((_a = this.errorMessage) === null || _a === void 0 ? void 0 : _a.trim())) {
9659
+ this.prepareValue(this._viewValue);
9660
+ if ((this._textInput.value || '') !== this._viewValue) {
9661
+ this._textInput.value = this._viewValue;
9662
+ }
9663
+ }
9664
+ }
9665
+ }
9666
+ observeShowSeconds() {
9667
+ if (this.showSeconds) {
9668
+ this.prepareMask("##:##:##");
9669
+ }
9670
+ else {
9671
+ this.prepareMask("##:##");
9672
+ }
9673
+ }
9674
+ observeValue(newValue, oldValue) {
9675
+ if (this._textInput && newValue != oldValue) {
9676
+ let newValueValidated = this.validateValue(newValue);
9677
+ const oldValueValidated = this.validateValue(oldValue);
9678
+ if (newValueValidated != oldValueValidated) {
9679
+ this._viewValue = newValueValidated == undefined ? "" : newValueValidated.toString();
9680
+ this.prepareValue(this._viewValue);
9681
+ if (this._viewValue && !TimeFormatter.validateTime(this._viewValue, this.showSeconds)) {
9682
+ this.setError(this.i18n("ez-classic-time-input.invalidTime"));
9683
+ newValueValidated = undefined;
9684
+ }
9685
+ else {
9686
+ this.setError("");
9687
+ }
9688
+ const valueEmitted = newValueValidated === null ? undefined : newValueValidated;
9689
+ this.ezChange.emit(valueEmitted);
9690
+ }
9691
+ }
9692
+ }
9693
+ //---------------------------------------------
9694
+ // Private methods
9695
+ //---------------------------------------------
9696
+ prepareMask(mask) {
9697
+ if (this._maskFormatter == undefined) {
9698
+ this._maskFormatter = new MaskFormatter$1(mask);
9699
+ }
9700
+ else {
9701
+ this._maskFormatter.mask = mask;
9702
+ }
9703
+ }
9704
+ validateValue(value) {
9705
+ return isNaN(value) || value === undefined ? null : value;
9706
+ }
9707
+ setError(msg) {
9708
+ this.errorMessage = msg;
9709
+ if (this._textInput && (msg === null || msg === void 0 ? void 0 : msg.trim())) {
9710
+ this.ezCancelWaitingChange.emit();
9711
+ }
9712
+ }
9713
+ //---------------------------------------------
9714
+ // Public methods
9715
+ //---------------------------------------------
9716
+ getViewValue() {
9717
+ return this._viewValue;
9718
+ }
9719
+ prepareValue(value) {
9720
+ try {
9721
+ this._viewValue = TimeFormatter.prepareValue(value, this.showSeconds);
9722
+ if (this._textInput && this._textInput.value !== this._viewValue) {
9723
+ this._textInput.value = this._viewValue;
9724
+ }
9725
+ }
9726
+ catch (e) {
9727
+ this.setError(e.message);
9728
+ }
9729
+ }
9730
+ /**
9731
+ * Aplica o foco no campo.
9732
+ */
9733
+ async setFocus({ selectText }) {
9734
+ this._textInput.setFocus({ selectText });
9735
+ }
9736
+ /**
9737
+ * Remove o foco do campo.
9738
+ */
9739
+ async setBlur() {
9740
+ this._textInput.setBlur();
9741
+ }
9742
+ /**
9743
+ * Retorna se o conteúdo é inválido.
9744
+ */
9745
+ async isInvalid() {
9746
+ return typeof this.errorMessage === "string" && this.errorMessage.trim() !== "";
9747
+ }
9748
+ //---------------------------------------------
9749
+ // Event handlers
9750
+ //---------------------------------------------
9751
+ handleBlur() {
9752
+ if (this._textInput) {
9753
+ this._viewValue = this._textInput.value;
9754
+ this.prepareValue(this._viewValue);
9755
+ const value = NumberUtils$1.stringToNumber(this._viewValue.replace(/\D/g, ""));
9756
+ this.value = ['string', 'number'].includes(typeof value) ? value : null;
9757
+ }
9758
+ }
9759
+ handleInput() {
9760
+ const textInputValue = this._textInput.value;
9761
+ if (!['string', 'number'].includes(typeof textInputValue))
9762
+ return;
9763
+ const parsedNumber = NumberUtils$1.stringToNumber(textInputValue.replace(/\D/g, ""));
9764
+ if (parsedNumber !== this.value) {
9765
+ this.ezStartChange.emit({ waitmessage: "", blocking: false });
9766
+ }
9767
+ }
9768
+ //---------------------------------------------
9769
+ // Lifecycle web component
9770
+ //---------------------------------------------
9771
+ async componentWillLoad() {
9772
+ this.i18n = await initI18n();
9773
+ this.observeShowSeconds();
9774
+ if (this.value) {
9775
+ this.prepareValue(this.value.toString());
9776
+ }
9777
+ else if (this._viewValue) {
9778
+ this.prepareValue(this._viewValue);
9779
+ }
9780
+ }
9781
+ componentDidLoad() {
9782
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
9783
+ if (this.autoFocus) {
9784
+ requestAnimationFrame(() => {
9785
+ this.setFocus({ selectText: true });
9786
+ });
9787
+ }
9788
+ }
9789
+ render() {
9790
+ ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
9791
+ const inputProps = {
9792
+ class: "time__input",
9793
+ "data-element-id": ElementIDUtils.getInternalIDInfo("textInput"),
9794
+ ref: (el) => this._textInput = el,
9795
+ "data-slave-mode": "true",
9796
+ value: this._viewValue,
9797
+ enabled: this.enabled,
9798
+ label: this.label,
9799
+ restrict: "0123456789:",
9800
+ onBlur: () => this.handleBlur(),
9801
+ onInput: () => this.handleInput(),
9802
+ errorMessage: this.errorMessage,
9803
+ mode: this.mode,
9804
+ size: this.size,
9805
+ canShowError: this.canShowError,
9806
+ alternativePlaceholder: this.alternativePlaceholder,
9807
+ required: this.required
9808
+ };
9809
+ return (h(Host, null, h("ez-classic-input", Object.assign({}, inputProps, { leftIconName: "timer-outline" }))));
9810
+ }
9811
+ static get assetsDirs() { return ["../assets"]; }
9812
+ get _elem() { return this; }
9813
+ static get watchers() { return {
9814
+ "errorMessage": ["observeErrorMessage"],
9815
+ "showSeconds": ["observeShowSeconds"],
9816
+ "value": ["observeValue"]
9817
+ }; }
9818
+ static get style() { return ezClassicTimeInputCss; }
9819
+ };
9820
+
7576
9821
  const ezCollapsibleBoxCss = ":host{--ez-collapsible-box--font-size:var(--title--medium, 14px);--ez-collapsible-box--font-family:var(--font-pattern, Arial);--ez-collapsible-box--font-weight:var(--text-weight--large, 600);--ez-collapsible-box--color:var(--title--primary);--ez-collapsible-box--subtitle--font-size:var(--text--medium, 14px);--ez-collapsible-box--subtitle--font-family:var(--font-pattern, 'Roboto');--ez-collapsible-box--subtitle--font-weight:var(--text-weight--medium, 400);--ez-collapsible-box--subtitle--color:var(--text--primary);--ez-collapsible-box--subtitle--margin-bottom:var(--space--medium, 12px);--ez-collapsible-box--focus--color:var(--color--primary-600);--ez-collapsible-box__icon--color:var(--ez-collapsible-box--color);--ez-collapsible-box__header--padding-top:0px;--ez-collapsible-box__header--padding-bottom:0px;--ez-collapsible-box__header--padding-right:0px;--ez-collapsible-box__header--padding-left:0px;display:flex;flex-wrap:wrap;width:100%}ez-icon{--ez-icon--color:inherit}.collapsible-box{display:flex;flex-direction:column;width:100%;overflow:hidden}.collapsable-box--bordered{border:var(--border--small);border-color:var(--color--strokes);border-radius:var(--border--radius-medium);padding:var(--space--xs)}.collapsible-box__header{display:flex;box-sizing:border-box;padding-top:var(--ez-collapsible-box__header--padding-top);padding-bottom:var(--ez-collapsible-box__header--padding-bottom);padding-right:var(--ez-collapsible-box__header--padding-right);padding-left:var(--ez-collapsible-box__header--padding-left)}.collapsible-box__title{position:relative;width:100%;display:flex;box-sizing:border-box;align-items:center;outline:none;border:none;background-color:unset;cursor:pointer;padding:0px;text-align:left;color:var(--ez-collapsible-box--color);--ez-icon--color:var(--ez-collapsible-box__icon--color);margin-bottom:var(--space--medium, 12px)}.collapsible-box__title:focus{color:var(--ez-collapsible-box--focus--color);--ez-icon--color:var(--ez-collapsible-box--focus--color)}.collapsible-box__label{display:flex;white-space:nowrap;overflow:hidden;cursor:pointer;text-overflow:ellipsis;box-sizing:border-box;margin-left:6px;gap:6px;font-family:var(--ez-collapsible-box--font-family);font-size:var(--ez-collapsible-box--font-size);font-weight:var(--ez-collapsible-box--font-weight)}.subtitle-box__label{display:flex;overflow:hidden;text-overflow:ellipsis;box-sizing:border-box;font-family:var(--ez-collapsible-box--subtitle--font-family);font-size:var(--ez-collapsible-box--subtitle--font-size);font-weight:var(--ez-collapsible-box--subtitle--font-weight);color:var(--ez-collapsible-box--subtitle--color);margin-bottom:var(--ez-collapsible-box--subtitle--margin-bottom)}.subtitle-box__content{width:100%}.collapsible-box__label ez-icon{visibility:hidden;transition:2s all ease-in-out}.collapsible-box__label:hover ez-icon{visibility:visible}.collapsible-box__text-edit{margin-left:6px}.collapsible-box__icon{transform:rotate(90deg) translate(0px, 14%);transition:transform var(--transition)}.collapsible-box__icon--collapsed{transform:rotate(0deg) translate(-14%, 0px)}.collapsible-box__title--icon-right{flex-direction:row-reverse}.collapsible-box__title--icon-right .collapsible-box__icon{transform:rotate(90deg) translate(0px, -14%)}.collapsible-box__title--icon-right .collapsible-box__icon--collapsed{transform:rotate(0deg) translate(14%, 0px)}.collapsible-box__title--icon-right .collapsible-box__label{margin-left:0px;margin-right:6px}.collapsible-box__title--left{margin-right:auto}.collapsible-box__title--right{margin-left:auto}.collapsible-box__title--center{margin-left:auto;margin-right:auto}.collapsible-box__title--stretch{justify-content:space-between;width:100%}.collapsible-box__title--no-margin{margin-bottom:0}.collapsible-box__content{display:flex;flex-wrap:wrap;width:100%;height:0px;max-height:0px;opacity:0;overflow:hidden;transition:all var(--transition, 0.5s)}.collapsible-box__content--show{height:100%;max-height:none;opacity:1;overflow:visible;transition:all var(--transition, 0.5s)}.font--x-small{font-size:10px}.font--small{font-size:12px}.font--medium{font-size:14px}.font--large{font-size:16px}.font--x-large{font-size:20px}";
7577
9822
 
7578
9823
  const EzCollapsibleBox$1 = class extends HTMLElement$1 {
@@ -10688,6 +12933,7 @@ const EzForm$1 = class extends HTMLElement$1 {
10688
12933
  };
10689
12934
  this._fieldsProps = new Map();
10690
12935
  this._singleColumn = false;
12936
+ this._formLayout = undefined;
10691
12937
  this.dataUnit = undefined;
10692
12938
  this.config = undefined;
10693
12939
  this.recordsValidator = undefined;
@@ -10753,7 +12999,7 @@ const EzForm$1 = class extends HTMLElement$1 {
10753
12999
  }
10754
13000
  this.ezFormSetFields.emit(fields);
10755
13001
  const idFormSheet = `${StringUtils$1.replaceAccentuatedChars(StringUtils$1.toCamelCase(currentSheet === null || currentSheet === void 0 ? void 0 : currentSheet.label), false)}_selectorContainer`;
10756
- return (h("div", { class: "dynamic-content ez-box--no-outline", "data-element-id": idFormSheet, ref: elem => (this._container = elem), tabindex: "0" }, h("ez-popover", { ref: elem => (this._ezPopoverSearchField = elem), overlayType: "none" }, this.renderFieldColumn()), h("ez-form-view", { ref: (element) => (this._formView = element), class: "ez-row ez-padding-vertical--small", fields: fields, singleColumn: this._singleColumn, selectedRecord: this.dataUnit.getSelectedRecord(), customUiBuilders: this.customUiBuilders })));
13002
+ return (h("div", { class: "dynamic-content ez-box--no-outline", "data-element-id": idFormSheet, ref: elem => (this._container = elem), tabindex: "0" }, h("ez-popover", { ref: elem => (this._ezPopoverSearchField = elem), overlayType: "none" }, this.renderFieldColumn()), h("ez-form-view", { ref: (element) => (this._formView = element), class: "ez-row ez-padding-vertical--small", fields: fields, singleColumn: this._singleColumn, formLayout: this._formLayout, selectedRecord: this.dataUnit.getSelectedRecord(), customUiBuilders: this.customUiBuilders })));
10757
13003
  }
10758
13004
  renderFieldColumn() {
10759
13005
  if (this._fieldSearch != undefined) {
@@ -10837,18 +13083,20 @@ const EzForm$1 = class extends HTMLElement$1 {
10837
13083
  this._i18n = await initI18n();
10838
13084
  }
10839
13085
  async setSingleColumn(layoutFormConfig) {
10840
- this._singleColumn = (layoutFormConfig === null || layoutFormConfig === void 0 ? void 0 : layoutFormConfig.config) === FormLayout.CASCADE;
13086
+ this._singleColumn = (layoutFormConfig === null || layoutFormConfig === void 0 ? void 0 : layoutFormConfig.config) === FormLayout.CASCADE || (layoutFormConfig === null || layoutFormConfig === void 0 ? void 0 : layoutFormConfig.config) === FormLayout.CLASSIC_CASCADE;
13087
+ this._formLayout = layoutFormConfig === null || layoutFormConfig === void 0 ? void 0 : layoutFormConfig.config;
10841
13088
  }
10842
13089
  async registerNotifyListeners(layoutFormConfig) {
10843
13090
  if (!layoutFormConfig)
10844
13091
  return;
10845
13092
  layoutFormConfig.onConfigChange((config) => {
10846
- if (config === FormLayout.CASCADE) {
13093
+ if (config === FormLayout.CASCADE || config === FormLayout.CLASSIC_CASCADE) {
10847
13094
  this._singleColumn = true;
10848
13095
  }
10849
13096
  else {
10850
13097
  this._singleColumn = false;
10851
13098
  }
13099
+ this._formLayout = config;
10852
13100
  });
10853
13101
  }
10854
13102
  componentDidRender() {
@@ -10918,18 +13166,23 @@ const EzForm$1 = class extends HTMLElement$1 {
10918
13166
  static get style() { return ezFormCss; }
10919
13167
  };
10920
13168
 
10921
- const buildSwitch$1 = (field) => {
10922
- return buildField(field.name, field.label, field.readOnly, field.contextName, true);
13169
+ const buildSwitch$1 = (field, context) => {
13170
+ return buildField(field.name, field.label, field.readOnly, field.contextName, true, context);
10923
13171
  };
10924
- const buildCheckBox = (field) => {
10925
- return buildField(field.name, field.label, field.readOnly, field.contextName, false);
13172
+ const buildCheckBox = (field, context) => {
13173
+ return buildField(field.name, field.label, field.readOnly, field.contextName, false, context);
10926
13174
  };
10927
- function buildField(fieldName, fieldLabel, readOnly, contextName, switchMode) {
10928
- return (h("div", { class: "ez-col ez-col--sd-12 ez-align--middle ez-padding-top--medium ez-padding-bottom--medium" },
13175
+ function buildField(fieldName, fieldLabel, readOnly, contextName, switchMode, context) {
13176
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13177
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13178
+ return (h("div", { class: `ez-col ez-col--sd-12 ez-align--middle ez-padding-top--medium ez-padding-bottom--medium ez-size-height--full ${shouldUseClassic ? "ez-margin-top--small" : ""}` },
10929
13179
  h("ez-check", { enabled: !readOnly, label: fieldLabel, mode: switchMode ? CheckMode.SWITCH : CheckMode.REGULAR, "data-field-name": fieldName, "data-context-name": contextName, key: fieldName })));
10930
13180
  }
10931
13181
 
10932
- const buildComboBox$1 = ({ name, label, readOnly, required, props, contextName, canShowError }) => {
13182
+ const buildComboBox$1 = ({ name, label, readOnly, required, props, contextName, canShowError }, context) => {
13183
+ var _a;
13184
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13185
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
10933
13186
  const prop = props === null || props === void 0 ? void 0 : props.options;
10934
13187
  let options;
10935
13188
  if (typeof prop === "string") {
@@ -10939,29 +13192,60 @@ const buildComboBox$1 = ({ name, label, readOnly, required, props, contextName,
10939
13192
  else {
10940
13193
  options = prop;
10941
13194
  }
13195
+ if (shouldUseClassic) {
13196
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13197
+ h("ez-classic-combo-box", { class: "ez-input__no-margin", enabled: !readOnly, suppressEmptyOption: required, label: label, "data-field-name": name, "data-context-name": contextName, key: name, options: options, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13198
+ }
10942
13199
  return (h("div", { class: "ez-col ez-col--sd-12" },
10943
13200
  h("ez-combo-box", { class: "ez-input__no-margin", enabled: !readOnly, suppressEmptyOption: required, label: label, "data-field-name": name, "data-context-name": contextName, key: name, options: options, canShowError: canShowError })));
10944
13201
  };
10945
13202
 
10946
- const buildDate$1 = ({ name, label, readOnly, canShowError }) => {
13203
+ const buildDate$1 = ({ name, label, readOnly, canShowError, props, required }, context) => {
13204
+ var _a;
13205
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13206
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13207
+ if (shouldUseClassic) {
13208
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13209
+ h("ez-classic-date-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13210
+ }
10947
13211
  return (h("div", { class: "ez-col ez-col--sd-12" },
10948
13212
  h("ez-date-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError })));
10949
13213
  };
10950
- const buildTime$1 = ({ name, label, readOnly, canShowError, props }) => {
10951
- var _a;
13214
+ const buildTime$1 = ({ name, label, readOnly, canShowError, props, required }, context) => {
13215
+ var _a, _b, _c;
13216
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13217
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13218
+ if (shouldUseClassic) {
13219
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13220
+ h("ez-classic-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, "show-seconds": (_a = props === null || props === void 0 ? void 0 : props.showSeconds) !== null && _a !== void 0 ? _a : false, size: (_b = context === null || context === void 0 ? void 0 : context.size) !== null && _b !== void 0 ? _b : "small", required: required })));
13221
+ }
10952
13222
  return (h("div", { class: "ez-col ez-col--sd-12" },
10953
- h("ez-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, "show-seconds": (_a = props === null || props === void 0 ? void 0 : props.showSeconds) !== null && _a !== void 0 ? _a : false })));
13223
+ h("ez-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, "show-seconds": (_c = props === null || props === void 0 ? void 0 : props.showSeconds) !== null && _c !== void 0 ? _c : false })));
10954
13224
  };
10955
- const buildTimeSeconds = ({ name, label, readOnly, canShowError }) => {
13225
+ const buildTimeSeconds = ({ name, label, readOnly, canShowError, props, required }, context) => {
13226
+ var _a;
13227
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13228
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13229
+ if (shouldUseClassic) {
13230
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13231
+ h("ez-classic-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, showSeconds: true, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13232
+ }
10956
13233
  return (h("div", { class: "ez-col ez-col--sd-12" },
10957
13234
  h("ez-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, key: name, canShowError: canShowError, showSeconds: true })));
10958
13235
  };
10959
- const buildDateTime$1 = ({ name, label, readOnly, contextName, canShowError }) => {
13236
+ const buildDateTime$1 = ({ name, label, readOnly, contextName, canShowError, props, required }, context) => {
13237
+ var _a;
13238
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13239
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13240
+ if (shouldUseClassic) {
13241
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13242
+ h("ez-classic-date-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13243
+ }
10960
13244
  return (h("div", { class: "ez-col ez-col--sd-12" },
10961
13245
  h("ez-date-time-input", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError })));
10962
13246
  };
10963
13247
 
10964
- const buildFile = ({ name, label, readOnly, contextName, props }) => {
13248
+ const buildFile = ({ name, label, readOnly, contextName, props }, context) => {
10965
13249
  const uploadProps = ObjectUtils$1.removeEmptyValues({
10966
13250
  subTitle: props.subTitle,
10967
13251
  requestHeaders: Object.assign(Object.assign({}, (props.STORAGESTRATEGY && {
@@ -10974,44 +13258,77 @@ const buildFile = ({ name, label, readOnly, contextName, props }) => {
10974
13258
  h("ez-upload", Object.assign({ enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, key: name }, uploadProps))));
10975
13259
  };
10976
13260
 
10977
- const buildDecimal$1 = ({ name, label, readOnly, props, contextName, canShowError }) => {
13261
+ const buildDecimal$1 = ({ name, label, readOnly, props, contextName, canShowError, required }, context) => {
10978
13262
  var _a, _b;
10979
13263
  const precision = Number((_a = props === null || props === void 0 ? void 0 : props.precision) !== null && _a !== void 0 ? _a : 2);
10980
13264
  const prettyPrecision = Number((_b = props === null || props === void 0 ? void 0 : props.prettyPrecision) !== null && _b !== void 0 ? _b : precision);
10981
- return buildNumeric$1(name, label, readOnly, precision, prettyPrecision, contextName, canShowError);
13265
+ return buildNumeric$1(name, label, readOnly, precision, prettyPrecision, contextName, canShowError, props, required, context);
10982
13266
  };
10983
- const buildInteger$1 = ({ name, label, readOnly, contextName, canShowError }) => {
10984
- return buildNumeric$1(name, label, readOnly, 0, 0, contextName, canShowError);
13267
+ const buildInteger$1 = ({ name, label, readOnly, contextName, canShowError, props, required }, context) => {
13268
+ return buildNumeric$1(name, label, readOnly, 0, 0, contextName, canShowError, props, required, context);
10985
13269
  };
10986
- function buildNumeric$1(fieldName, fieldLabel, readOnly, precision, prettyPrecision, contextName, canShowError) {
13270
+ function buildNumeric$1(fieldName, fieldLabel, readOnly, precision, prettyPrecision, contextName, canShowError, props, required, context) {
13271
+ var _a;
13272
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13273
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13274
+ if (shouldUseClassic) {
13275
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13276
+ h("ez-classic-number-input", { class: "ez-input__no-margin", enabled: !readOnly, label: fieldLabel, precision: precision, prettyPrecision: prettyPrecision, "data-field-name": fieldName, "data-context-name": contextName, key: fieldName, canShowError: canShowError, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13277
+ }
10987
13278
  return (h("div", { class: "ez-col ez-col--sd-12" },
10988
13279
  h("ez-number-input", { class: "ez-input__no-margin", enabled: !readOnly, label: fieldLabel, precision: precision, prettyPrecision: prettyPrecision, "data-field-name": fieldName, "data-context-name": contextName, key: fieldName, canShowError: canShowError })));
10989
13280
  }
10990
13281
 
10991
- const buildTextArea = ({ name, label, readOnly, contextName, rows, canShowError }) => {
13282
+ const buildTextArea = ({ name, label, readOnly, rows, contextName, canShowError, props, required }, context) => {
13283
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13284
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13285
+ if (shouldUseClassic) {
13286
+ return (h("div", { class: "ez-col ez-col--sd-12", key: name },
13287
+ h("ez-classic-text-area", { enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, rows: rows })));
13288
+ }
10992
13289
  return (h("div", { class: "ez-col ez-col--sd-12", key: name },
10993
13290
  h("ez-text-area", { enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, rows: rows, canShowError: canShowError })));
10994
13291
  };
10995
13292
 
10996
- const buildTextInput$1 = ({ name, label, readOnly, contextName, canShowError, props }) => {
13293
+ const buildTextInput$1 = ({ name, label, readOnly, contextName, canShowError, props, required }, context) => {
13294
+ var _a;
13295
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13296
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13297
+ if (shouldUseClassic) {
13298
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13299
+ h("ez-classic-input", { class: "ez-input__no-margin", label: label, "data-field-name": name, "data-context-name": contextName, key: name, enabled: !readOnly, mask: props === null || props === void 0 ? void 0 : props.mask, "clean-value-mask": props === null || props === void 0 ? void 0 : props.cleanValueMask, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13300
+ }
10997
13301
  return (h("div", { class: "ez-col ez-col--sd-12" },
10998
13302
  h("ez-text-input", { class: "ez-input__no-margin", label: label, "data-field-name": name, "data-context-name": contextName, key: name, enabled: !readOnly, canShowError: canShowError, mask: props === null || props === void 0 ? void 0 : props.mask, "clean-value-mask": props === null || props === void 0 ? void 0 : props.cleanValueMask })));
10999
13303
  };
11000
13304
 
11001
- const buildSearchPlus$1 = ({ name, label, readOnly, contextName, canShowError, optionLoader, props }) => {
13305
+ const buildSearchPlus$1 = ({ name, label, readOnly, contextName, canShowError, optionLoader, props, required }, context) => {
13306
+ var _a;
13307
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13308
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
11002
13309
  const hasDescriptionField = !StringUtils$1.isEmpty(props === null || props === void 0 ? void 0 : props.DESCRIPTIONFIELD);
13310
+ if (shouldUseClassic) {
13311
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13312
+ h("ez-classic-search-plus", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, optionLoader: optionLoader, hideDescriptionInput: !hasDescriptionField, size: (_a = context === null || context === void 0 ? void 0 : context.size) !== null && _a !== void 0 ? _a : "small", required: required })));
13313
+ }
11003
13314
  return (h("div", { class: "ez-col ez-col--sd-12" },
11004
13315
  h("ez-search-plus", { class: "ez-input__no-margin", enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, optionLoader: optionLoader, hideDescriptionInput: !hasDescriptionField })));
11005
13316
  };
11006
13317
 
11007
- const buildSearch$1 = ({ name, label, readOnly, required, contextName, canShowError, optionLoader, props }) => {
11008
- var _a;
13318
+ const buildSearch$1 = ({ name, label, readOnly, required, contextName, canShowError, optionLoader, props }, context) => {
13319
+ var _a, _b, _c;
11009
13320
  const hasDescriptionField = !StringUtils$1.isEmpty(props === null || props === void 0 ? void 0 : props.DESCRIPTIONFIELD);
13321
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13322
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
13323
+ if (shouldUseClassic) {
13324
+ return (h("div", { class: "ez-col ez-col--sd-12" },
13325
+ h("ez-classic-search", { class: "ez-input__no-margin", enabled: !readOnly, suppressEmptyOption: required, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, optionLoader: optionLoader, ignoreLimitCharsToSearch: (_a = props === null || props === void 0 ? void 0 : props.ignoreLimitCharsToSearch) !== null && _a !== void 0 ? _a : false, hideDescriptionInput: !hasDescriptionField, size: (_b = context === null || context === void 0 ? void 0 : context.size) !== null && _b !== void 0 ? _b : "small", required: required })));
13326
+ }
11010
13327
  return (h("div", { class: "ez-col ez-col--sd-12" },
11011
- h("ez-search", { class: "ez-input__no-margin", enabled: !readOnly, suppressEmptyOption: required, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, optionLoader: optionLoader, ignoreLimitCharsToSearch: (_a = props === null || props === void 0 ? void 0 : props.ignoreLimitCharsToSearch) !== null && _a !== void 0 ? _a : false, hideDescriptionInput: !hasDescriptionField })));
13328
+ h("ez-search", { class: "ez-input__no-margin", enabled: !readOnly, suppressEmptyOption: required, label: label, "data-field-name": name, "data-context-name": contextName, key: name, canShowError: canShowError, optionLoader: optionLoader, ignoreLimitCharsToSearch: (_c = props === null || props === void 0 ? void 0 : props.ignoreLimitCharsToSearch) !== null && _c !== void 0 ? _c : false, hideDescriptionInput: !hasDescriptionField })));
11012
13329
  };
11013
13330
 
11014
- const buildRichText = ({ name, label, readOnly, contextName, rows, canShowError }) => {
13331
+ const buildRichText = ({ name, label, readOnly, contextName, rows, canShowError }, context) => {
11015
13332
  return (h("div", { class: "ez-col ez-col--sd-12" },
11016
13333
  h("ez-rich-text", { key: name, enabled: !readOnly, label: label, "data-field-name": name, "data-context-name": contextName, rows: rows, canShowError: canShowError })));
11017
13334
  };
@@ -11037,11 +13354,13 @@ uiBuilders$1.set(UserInterface.SEARCHPLUS, buildSearchPlus$1);
11037
13354
  uiBuilders$1.set(UserInterface.LONGTEXT, buildTextArea);
11038
13355
  uiBuilders$1.set(UserInterface.HTML, buildRichText);
11039
13356
  uiBuilders$1.set(UserInterface.IMAGE, buildImage);
11040
- const fieldBuilder = (field, customUiBuilders = new Map()) => {
13357
+ const fieldBuilder = (field, customUiBuilders = new Map(), context) => {
11041
13358
  const i18n = getI18n();
13359
+ const shouldUseClassic = (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_CASCADE ||
13360
+ (context === null || context === void 0 ? void 0 : context.formLayout) === FormLayout.CLASSIC_SIDE_BY_SIDE;
11042
13361
  const builder = (customUiBuilders.get(field.userInterface) || uiBuilders$1.get(field.userInterface)) || buildTextInput$1;
11043
- const label = field.required ? `${field.label}${i18n("app.requiredInfo")}` : field.label;
11044
- const builtElement = builder(Object.assign(Object.assign({}, field), { label }));
13362
+ const label = !shouldUseClassic && field.required ? `${field.label}${i18n("app.requiredInfo")}` : field.label;
13363
+ const builtElement = builder(Object.assign(Object.assign({}, field), { label }), context);
11045
13364
  //@ts-ignore
11046
13365
  builtElement.$attrs$['data-form-item'] = field.name;
11047
13366
  return builtElement;
@@ -11053,7 +13372,7 @@ class FormItem {
11053
13372
  }
11054
13373
  addRightElement(el) {
11055
13374
  this.removeRightElement();
11056
- el.classList.add('ez-padding-left--small');
13375
+ el.classList.add('ez-padding-left--small', 'ez-margin-top--auto', 'ez-margin-bottom--extra-small');
11057
13376
  el.setAttribute('data-custom-item', 'true');
11058
13377
  this.elem.classList.add('ez-col--nowrap');
11059
13378
  this.elem.appendChild(el);
@@ -11082,7 +13401,7 @@ class FormItems {
11082
13401
  }
11083
13402
  }
11084
13403
 
11085
- const ezFormViewCss = ".sc-ez-form-view-h{display:flex;flex-wrap:wrap;width:100%;--ez-form-view__item--min-width:220px;--ez-form-view__item--max-width:440px;--ez-form-view__item--width:var(--space--small);--ez-form-view__item--padding:var(--space--small)}.form-view__content.sc-ez-form-view{display:grid;grid-template-columns:repeat(auto-fill, minmax(var(--ez-form-view__item--min-width), 1fr));gap:var(--ez-form-view__item--width);padding-inline:var(--ez-form-view__item--padding);width:100%}.form-view__content--single-column.sc-ez-form-view{grid-template-columns:repeat(1, minmax(var(--ez-form-view__item--min-width), var(--ez-form-view__item--max-width)))}.input-full_width.sc-ez-form-view{grid-column:1 / -1;width:100%}";
13404
+ const ezFormViewCss = ".sc-ez-form-view-h{display:flex;flex-wrap:wrap;width:100%;--ez-form-view__item--min-width:220px;--ez-form-view__item--max-width:440px;--ez-form-view__item--gap:var(--space--14, 14px);--ez-form-view__item--padding:var(--space--small)}.form-view__content.sc-ez-form-view{display:grid;grid-template-columns:repeat(auto-fill, minmax(var(--ez-form-view__item--min-width), 1fr));gap:var(--ez-form-view__item--gap);padding-inline:var(--ez-form-view__item--padding);width:100%}.form-view__content--single-column.sc-ez-form-view{grid-template-columns:repeat(1, minmax(var(--ez-form-view__item--min-width), var(--ez-form-view__item--max-width)))}.input-full_width.sc-ez-form-view{grid-column:1 / -1;width:100%}*.sc-ez-form-view:has(*)+ez-collapsible-box.sc-ez-form-view{margin-top:var(--space--16, 16px)}";
11086
13405
 
11087
13406
  const EzFormView$1 = class extends HTMLElement$1 {
11088
13407
  constructor() {
@@ -11090,10 +13409,12 @@ const EzFormView$1 = class extends HTMLElement$1 {
11090
13409
  this.__registerHost();
11091
13410
  this.ezContentReady = createEvent(this, "ezContentReady", 7);
11092
13411
  this.formItemsReady = createEvent(this, "formItemsReady", 7);
13412
+ this.MAIN_GROUP_NAME = "__main";
11093
13413
  this._customEditors = new Map();
11094
13414
  this.fields = undefined;
11095
13415
  this.selectedRecord = undefined;
11096
13416
  this.singleColumn = false;
13417
+ this.formLayout = undefined;
11097
13418
  this.customUiBuilders = new Map();
11098
13419
  }
11099
13420
  async showUp() {
@@ -11122,10 +13443,18 @@ const EzFormView$1 = class extends HTMLElement$1 {
11122
13443
  });
11123
13444
  this.fields = [...fields];
11124
13445
  }
13446
+ getGroupByField(field) {
13447
+ var _a, _b;
13448
+ const group = (_a = field.group) !== null && _a !== void 0 ? _a : (_b = field.props) === null || _b === void 0 ? void 0 : _b["UITabName"];
13449
+ if (group && group !== this.MAIN_GROUP_NAME) {
13450
+ return group;
13451
+ }
13452
+ return undefined;
13453
+ }
11125
13454
  groupFields(fields) {
11126
13455
  const result = new Map();
11127
13456
  fields.forEach(item => {
11128
- const groupLabel = item.group;
13457
+ const groupLabel = this.getGroupByField(item);
11129
13458
  if (groupLabel) {
11130
13459
  let groupFields = result.get(groupLabel);
11131
13460
  if (groupFields == undefined) {
@@ -11158,12 +13487,16 @@ const EzFormView$1 = class extends HTMLElement$1 {
11158
13487
  if (this.isItemFullWidth(item.userInterface)) {
11159
13488
  classItem += " input-full_width";
11160
13489
  }
13490
+ const context = {
13491
+ formLayout: this.formLayout,
13492
+ size: "xsmall",
13493
+ };
11161
13494
  if (this._customEditors.has(item.name)) {
11162
13495
  const value = (_a = this._formElements.map(el => ({ name: el.dataset.fieldName, value: el['value'] })).find(field => field.name === item.name)) === null || _a === void 0 ? void 0 : _a.value;
11163
13496
  const customEditor = this._customEditors.get(item.name).customEditor;
11164
- return h("div", { class: classItem }, h("ez-custom-form-input", { "data-field-name": item.name, customEditor: customEditor, formViewField: item, builderFallback: (field) => fieldBuilder(field, this.customUiBuilders), value: value, selectedRecord: this.selectedRecord }));
13497
+ return h("div", { class: classItem }, h("ez-custom-form-input", { "data-field-name": item.name, customEditor: customEditor, formViewField: item, builderFallback: (field) => fieldBuilder(field, this.customUiBuilders, context), value: value, selectedRecord: this.selectedRecord }));
11165
13498
  }
11166
- return h("div", { class: classItem }, fieldBuilder(item, this.customUiBuilders));
13499
+ return h("div", { class: classItem }, fieldBuilder(item, this.customUiBuilders, context));
11167
13500
  }
11168
13501
  render() {
11169
13502
  ElementIDUtils.addIDInfoIfNotExists(this._element, 'ezFormView');
@@ -79873,7 +82206,7 @@ const EzGuideNavigator$1 = class extends HTMLElement$1 {
79873
82206
  static get style() { return ezGuideNavigatorCss; }
79874
82207
  };
79875
82208
 
79876
- const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;--ez-icon--color:var(--icon--color, var(--color--gray-70, #ffffff))}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:var(--space--12, 12px);height:var(--space--12, 12px)}.small{width:var(--space--16, 16px);height:var(--space--16, 16px)}.medium{width:var(--space--20, 20px);height:var(--space--20, 20px)}.large{width:var(--space--24, 24px);height:var(--space--24, 24px)}.x-large{width:var(--space--30, 30px);height:var(--space--30, 30px)}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{color:var(--ez-icon--color)}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{font-family:'ez-icons' !important;font-size:var(--font-size--medium, 16px);font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ez-icon-0-plus:before{content:\"\\ea01\"}.ez-icon-10-plus:before{content:\"\\ea02\"}.ez-icon-12-plus:before{content:\"\\ea03\"}.ez-icon-13-plus:before{content:\"\\ea04\"}.ez-icon-16-plus:before{content:\"\\ea05\"}.ez-icon-17-plus:before{content:\"\\ea06\"}.ez-icon-18-plus:before{content:\"\\ea07\"}.ez-icon-21-plus:before{content:\"\\ea08\"}.ez-icon-2chevron-down:before{content:\"\\ea09\"}.ez-icon-2chevron-up:before{content:\"\\ea0a\"}.ez-icon-3-plus:before{content:\"\\ea0b\"}.ez-icon-500px:before{content:\"\\ea0c\"}.ez-icon-6-plus:before{content:\"\\ea0d\"}.ez-icon-abacus:before{content:\"\\ea0e\"}.ez-icon-acao:before{content:\"\\ea0f\"}.ez-icon-account-outline:before{content:\"\\ea10\"}.ez-icon-account:before{content:\"\\ea11\"}.ez-icon-add-to-cart:before{content:\"\\ea12\"}.ez-icon-adjust-alt:before{content:\"\\ea13\"}.ez-icon-adjust-circle:before{content:\"\\ea14\"}.ez-icon-adjust-half:before{content:\"\\ea15\"}.ez-icon-adjust:before{content:\"\\ea16\"}.ez-icon-adobe-alt:before{content:\"\\ea17\"}.ez-icon-adobe:before{content:\"\\ea18\"}.ez-icon-airplay:before{content:\"\\ea19\"}.ez-icon-alert-circle-inverted:before{content:\"\\ea1a\"}.ez-icon-alert-circle:before{content:\"\\ea1b\"}.ez-icon-alert-mail:before{content:\"\\ea1c\"}.ez-icon-alert-popup:before{content:\"\\ea1d\"}.ez-icon-align-alt:before{content:\"\\ea1e\"}.ez-icon-align-center-alt:before{content:\"\\ea1f\"}.ez-icon-align-center-h:before{content:\"\\ea20\"}.ez-icon-align-center-justify:before{content:\"\\ea21\"}.ez-icon-align-center-v:before{content:\"\\ea22\"}.ez-icon-align-center:before{content:\"\\ea23\"}.ez-icon-align-justify:before{content:\"\\ea24\"}.ez-icon-align-left-justify:before{content:\"\\ea25\"}.ez-icon-align-left:before{content:\"\\ea26\"}.ez-icon-align-letter-right:before{content:\"\\ea27\"}.ez-icon-align-right-justify:before{content:\"\\ea28\"}.ez-icon-align-right:before{content:\"\\ea29\"}.ez-icon-align:before{content:\"\\ea2a\"}.ez-icon-amazon:before{content:\"\\ea2b\"}.ez-icon-ambulance:before{content:\"\\ea2c\"}.ez-icon-analysis:before{content:\"\\ea2d\"}.ez-icon-analytics:before{content:\"\\ea2e\"}.ez-icon-anchor:before{content:\"\\ea2f\"}.ez-icon-android-alt:before{content:\"\\ea30\"}.ez-icon-android-phone-slash:before{content:\"\\ea31\"}.ez-icon-android:before{content:\"\\ea32\"}.ez-icon-anexo:before{content:\"\\ea33\"}.ez-icon-angle-double-down:before{content:\"\\ea34\"}.ez-icon-angle-double-left:before{content:\"\\ea35\"}.ez-icon-angle-double-right:before{content:\"\\ea36\"}.ez-icon-angle-double-up:before{content:\"\\ea37\"}.ez-icon-angle-down:before{content:\"\\ea38\"}.ez-icon-angle-left-b:before{content:\"\\ea39\"}.ez-icon-angle-left:before{content:\"\\ea3a\"}.ez-icon-angle-right-b:before{content:\"\\ea3b\"}.ez-icon-angle-right:before{content:\"\\ea3c\"}.ez-icon-angle-up:before{content:\"\\ea3d\"}.ez-icon-angry:before{content:\"\\ea3e\"}.ez-icon-ankh:before{content:\"\\ea3f\"}.ez-icon-annoyed-alt:before{content:\"\\ea40\"}.ez-icon-annoyed:before{content:\"\\ea41\"}.ez-icon-antecipação:before{content:\"\\ea42\"}.ez-icon-apple-alt:before{content:\"\\ea43\"}.ez-icon-apple:before{content:\"\\ea44\"}.ez-icon-apps-2:before{content:\"\\ea45\"}.ez-icon-apps:before{content:\"\\ea46\"}.ez-icon-archive-alt:before{content:\"\\ea47\"}.ez-icon-archive:before{content:\"\\ea48\"}.ez-icon-archway:before{content:\"\\ea49\"}.ez-icon-arrow-break:before{content:\"\\ea4a\"}.ez-icon-arrow-circle-down:before{content:\"\\ea4b\"}.ez-icon-arrow-circle-left:before{content:\"\\ea4c\"}.ez-icon-arrow-circle-right:before{content:\"\\ea4d\"}.ez-icon-arrow-circle-up:before{content:\"\\ea4e\"}.ez-icon-arrow-compress-h:before{content:\"\\ea4f\"}.ez-icon-arrow-down-left:before{content:\"\\ea50\"}.ez-icon-arrow-down-right:before{content:\"\\ea51\"}.ez-icon-arrow-down:before{content:\"\\ea52\"}.ez-icon-arrow-forward:before{content:\"\\ea53\"}.ez-icon-arrow-from-right:before{content:\"\\ea54\"}.ez-icon-arrow-from-top:before{content:\"\\ea55\"}.ez-icon-arrow-growth:before{content:\"\\ea56\"}.ez-icon-arrow-left:before{content:\"\\ea57\"}.ez-icon-arrow-random:before{content:\"\\ea58\"}.ez-icon-arrow-resize-diagonal:before{content:\"\\ea59\"}.ez-icon-arrow-right:before{content:\"\\ea5a\"}.ez-icon-arrow-to-bottom:before{content:\"\\ea5b\"}.ez-icon-arrow-to-right:before{content:\"\\ea5c\"}.ez-icon-arrow-up-left:before{content:\"\\ea5d\"}.ez-icon-arrow-up-right:before{content:\"\\ea5e\"}.ez-icon-arrow-up:before{content:\"\\ea5f\"}.ez-icon-arrow-upward:before{content:\"\\ea60\"}.ez-icon-arrow:before{content:\"\\ea61\"}.ez-icon-arrow_back:before{content:\"\\ea62\"}.ez-icon-arrow_downward:before{content:\"\\ea63\"}.ez-icon-arrows-h-alt:before{content:\"\\ea64\"}.ez-icon-arrows-h:before{content:\"\\ea65\"}.ez-icon-arrows-left-down:before{content:\"\\ea66\"}.ez-icon-arrows-maximize:before{content:\"\\ea67\"}.ez-icon-arrows-merge:before{content:\"\\ea68\"}.ez-icon-arrows-resize-h:before{content:\"\\ea69\"}.ez-icon-arrows-resize-v:before{content:\"\\ea6a\"}.ez-icon-arrows-resize:before{content:\"\\ea6b\"}.ez-icon-arrows-right-down:before{content:\"\\ea6c\"}.ez-icon-arrows-shrink-h:before{content:\"\\ea6d\"}.ez-icon-arrows-shrink-v:before{content:\"\\ea6e\"}.ez-icon-arrows-up-right:before{content:\"\\ea6f\"}.ez-icon-arrows-v-alt:before{content:\"\\ea70\"}.ez-icon-arrows-v:before{content:\"\\ea71\"}.ez-icon-assistive-listening-systems:before{content:\"\\ea72\"}.ez-icon-asterisk:before{content:\"\\ea73\"}.ez-icon-at:before{content:\"\\ea74\"}.ez-icon-atom:before{content:\"\\ea75\"}.ez-icon-auto-flash:before{content:\"\\ea76\"}.ez-icon-award-alt:before{content:\"\\ea77\"}.ez-icon-award:before{content:\"\\ea78\"}.ez-icon-baby-carriage:before{content:\"\\ea79\"}.ez-icon-backpack:before{content:\"\\ea7a\"}.ez-icon-backspace:before{content:\"\\ea7b\"}.ez-icon-backward:before{content:\"\\ea7c\"}.ez-icon-bag-alt:before{content:\"\\ea7d\"}.ez-icon-bag-slash:before{content:\"\\ea7e\"}.ez-icon-bag:before{content:\"\\ea7f\"}.ez-icon-baixa:before{content:\"\\ea80\"}.ez-icon-balance-scale:before{content:\"\\ea81\"}.ez-icon-balance:before{content:\"\\ea82\"}.ez-icon-ban:before{content:\"\\ea83\"}.ez-icon-band-aid:before{content:\"\\ea84\"}.ez-icon-bars:before{content:\"\\ea85\"}.ez-icon-baseball-ball:before{content:\"\\ea86\"}.ez-icon-basketball-hoop:before{content:\"\\ea87\"}.ez-icon-basketball:before{content:\"\\ea88\"}.ez-icon-bath:before{content:\"\\ea89\"}.ez-icon-battery-bolt:before{content:\"\\ea8a\"}.ez-icon-battery-empty:before{content:\"\\ea8b\"}.ez-icon-bed-double:before{content:\"\\ea8c\"}.ez-icon-bed:before{content:\"\\ea8d\"}.ez-icon-behance-alt:before{content:\"\\ea8e\"}.ez-icon-behance:before{content:\"\\ea8f\"}.ez-icon-bell-2:before{content:\"\\ea90\"}.ez-icon-bell-inverted:before{content:\"\\ea91\"}.ez-icon-bell-school:before{content:\"\\ea92\"}.ez-icon-bell-slash:before{content:\"\\ea93\"}.ez-icon-bell:before{content:\"\\ea94\"}.ez-icon-bill:before{content:\"\\ea95\"}.ez-icon-bing:before{content:\"\\ea96\"}.ez-icon-bitcoin-alt:before{content:\"\\ea97\"}.ez-icon-bitcoin-circle:before{content:\"\\ea98\"}.ez-icon-bitcoin-sign:before{content:\"\\ea99\"}.ez-icon-bitcoin:before{content:\"\\ea9a\"}.ez-icon-black-berry:before{content:\"\\ea9b\"}.ez-icon-blogger-alt:before{content:\"\\ea9c\"}.ez-icon-blogger:before{content:\"\\ea9d\"}.ez-icon-bluetooth-b:before{content:\"\\ea9e\"}.ez-icon-bold:before{content:\"\\ea9f\"}.ez-icon-boleto:before{content:\"\\eaa0\"}.ez-icon-bolt-alt:before{content:\"\\eaa1\"}.ez-icon-bolt-slash:before{content:\"\\eaa2\"}.ez-icon-bolt:before{content:\"\\eaa3\"}.ez-icon-book-alt:before{content:\"\\eaa4\"}.ez-icon-book-medical:before{content:\"\\eaa5\"}.ez-icon-book-open:before{content:\"\\eaa6\"}.ez-icon-book-reader:before{content:\"\\eaa7\"}.ez-icon-book:before{content:\"\\eaa8\"}.ez-icon-bookmark-full:before{content:\"\\eaa9\"}.ez-icon-bookmark:before{content:\"\\eaaa\"}.ez-icon-books:before{content:\"\\eaab\"}.ez-icon-boolean:before{content:\"\\eaac\"}.ez-icon-boombox:before{content:\"\\eaad\"}.ez-icon-border-alt:before{content:\"\\eaae\"}.ez-icon-border-bottom:before{content:\"\\eaaf\"}.ez-icon-border-clear:before{content:\"\\eab0\"}.ez-icon-border-horizontal:before{content:\"\\eab1\"}.ez-icon-border-inner:before{content:\"\\eab2\"}.ez-icon-border-left:before{content:\"\\eab3\"}.ez-icon-border-out:before{content:\"\\eab4\"}.ez-icon-border-right:before{content:\"\\eab5\"}.ez-icon-border-top:before{content:\"\\eab6\"}.ez-icon-border-vertical:before{content:\"\\eab7\"}.ez-icon-bowling-ball:before{content:\"\\eab8\"}.ez-icon-box:before{content:\"\\eab9\"}.ez-icon-brackets-curly:before{content:\"\\eaba\"}.ez-icon-brain:before{content:\"\\eabb\"}.ez-icon-briefcase-alt:before{content:\"\\eabc\"}.ez-icon-briefcase:before{content:\"\\eabd\"}.ez-icon-bright:before{content:\"\\eabe\"}.ez-icon-brightness-empty:before{content:\"\\eabf\"}.ez-icon-brightness-half:before{content:\"\\eac0\"}.ez-icon-brightness-low:before{content:\"\\eac1\"}.ez-icon-brightness-minus:before{content:\"\\eac2\"}.ez-icon-brightness-plus:before{content:\"\\eac3\"}.ez-icon-brightness:before{content:\"\\eac4\"}.ez-icon-bring-bottom:before{content:\"\\eac5\"}.ez-icon-bring-front:before{content:\"\\eac6\"}.ez-icon-browser:before{content:\"\\eac7\"}.ez-icon-brush-alt:before{content:\"\\eac8\"}.ez-icon-bug:before{content:\"\\eac9\"}.ez-icon-building:before{content:\"\\eaca\"}.ez-icon-bullseye:before{content:\"\\eacb\"}.ez-icon-bus-alt:before{content:\"\\eacc\"}.ez-icon-bus-school:before{content:\"\\eacd\"}.ez-icon-bus:before{content:\"\\eace\"}.ez-icon-business-center:before{content:\"\\eacf\"}.ez-icon-calculator-alt:before{content:\"\\ead0\"}.ez-icon-calculator:before{content:\"\\ead1\"}.ez-icon-calendar-2:before{content:\"\\ead2\"}.ez-icon-calendar-alt:before{content:\"\\ead3\"}.ez-icon-calendar-clock:before{content:\"\\ead4\"}.ez-icon-calendar-slash:before{content:\"\\ead5\"}.ez-icon-calendar:before{content:\"\\ead6\"}.ez-icon-calender:before{content:\"\\ead7\"}.ez-icon-calling:before{content:\"\\ead8\"}.ez-icon-camera-change:before{content:\"\\ead9\"}.ez-icon-camera-plus:before{content:\"\\eada\"}.ez-icon-camera-slash:before{content:\"\\eadb\"}.ez-icon-camera:before{content:\"\\eadc\"}.ez-icon-cancel:before{content:\"\\eadd\"}.ez-icon-capsule:before{content:\"\\eade\"}.ez-icon-capture:before{content:\"\\eadf\"}.ez-icon-car-sideview:before{content:\"\\eae0\"}.ez-icon-car-slash:before{content:\"\\eae1\"}.ez-icon-car-wash:before{content:\"\\eae2\"}.ez-icon-car:before{content:\"\\eae3\"}.ez-icon-card-atm:before{content:\"\\eae4\"}.ez-icon-caret-right:before{content:\"\\eae5\"}.ez-icon-cart-history:before{content:\"\\eae6\"}.ez-icon-cash-remove:before{content:\"\\eae7\"}.ez-icon-cell:before{content:\"\\eae8\"}.ez-icon-celsius:before{content:\"\\eae9\"}.ez-icon-channel-add:before{content:\"\\eaea\"}.ez-icon-channel:before{content:\"\\eaeb\"}.ez-icon-chart-bar-alt:before{content:\"\\eaec\"}.ez-icon-chart-bar:before{content:\"\\eaed\"}.ez-icon-chart-down:before{content:\"\\eaee\"}.ez-icon-chart-growth-alt:before{content:\"\\eaef\"}.ez-icon-chart-growth:before{content:\"\\eaf0\"}.ez-icon-chart-line:before{content:\"\\eaf1\"}.ez-icon-chart-pie-alt:before{content:\"\\eaf2\"}.ez-icon-chart-pie:before{content:\"\\eaf3\"}.ez-icon-chart:before{content:\"\\eaf4\"}.ez-icon-chat-bubble-user:before{content:\"\\eaf5\"}.ez-icon-chat-info:before{content:\"\\eaf6\"}.ez-icon-chat:before{content:\"\\eaf7\"}.ez-icon-check-2:before{content:\"\\eaf8\"}.ez-icon-check-circle-2:before{content:\"\\eaf9\"}.ez-icon-check-circle-inverted:before{content:\"\\eafa\"}.ez-icon-check-circle:before{content:\"\\eafb\"}.ez-icon-check-square:before{content:\"\\eafc\"}.ez-icon-check:before{content:\"\\eafd\"}.ez-icon-chevron-down:before{content:\"\\eafe\"}.ez-icon-chevron-left:before{content:\"\\eaff\"}.ez-icon-chevron-right:before{content:\"\\eb00\"}.ez-icon-chevron-up:before{content:\"\\eb01\"}.ez-icon-circle--medium:before{content:\"\\eb02\"}.ez-icon-circle-2:before{content:\"\\eb03\"}.ez-icon-circle-layer:before{content:\"\\eb04\"}.ez-icon-circle:before{content:\"\\eb05\"}.ez-icon-circuit:before{content:\"\\eb06\"}.ez-icon-clapper-board:before{content:\"\\eb07\"}.ez-icon-clean-cart:before{content:\"\\eb08\"}.ez-icon-cleaning:before{content:\"\\eb09\"}.ez-icon-clinic-medical:before{content:\"\\eb0a\"}.ez-icon-clipboard-2:before{content:\"\\eb0b\"}.ez-icon-clipboard-alt:before{content:\"\\eb0c\"}.ez-icon-clipboard-blank:before{content:\"\\eb0d\"}.ez-icon-clipboard-notes:before{content:\"\\eb0e\"}.ez-icon-clipboard:before{content:\"\\eb0f\"}.ez-icon-clock-eight:before{content:\"\\eb10\"}.ez-icon-clock-five:before{content:\"\\eb11\"}.ez-icon-clock-nine:before{content:\"\\eb12\"}.ez-icon-clock-rotate-left:before{content:\"\\eb13\"}.ez-icon-clock-seven:before{content:\"\\eb14\"}.ez-icon-clock-ten:before{content:\"\\eb15\"}.ez-icon-clock-three:before{content:\"\\eb16\"}.ez-icon-clock-two:before{content:\"\\eb17\"}.ez-icon-clock:before{content:\"\\eb18\"}.ez-icon-close:before{content:\"\\eb19\"}.ez-icon-closed-captioning-slash:before{content:\"\\eb1a\"}.ez-icon-closed-captioning:before{content:\"\\eb1b\"}.ez-icon-cloud-block:before{content:\"\\eb1c\"}.ez-icon-cloud-bookmark:before{content:\"\\eb1d\"}.ez-icon-cloud-check:before{content:\"\\eb1e\"}.ez-icon-cloud-computing:before{content:\"\\eb1f\"}.ez-icon-cloud-data-connection:before{content:\"\\eb20\"}.ez-icon-cloud-database-tree:before{content:\"\\eb21\"}.ez-icon-cloud-download:before{content:\"\\eb22\"}.ez-icon-cloud-drizzle:before{content:\"\\eb23\"}.ez-icon-cloud-exclamation:before{content:\"\\eb24\"}.ez-icon-cloud-hail:before{content:\"\\eb25\"}.ez-icon-cloud-heart:before{content:\"\\eb26\"}.ez-icon-cloud-info:before{content:\"\\eb27\"}.ez-icon-cloud-lock:before{content:\"\\eb28\"}.ez-icon-cloud-meatball:before{content:\"\\eb29\"}.ez-icon-cloud-moon-hail:before{content:\"\\eb2a\"}.ez-icon-cloud-moon-meatball:before{content:\"\\eb2b\"}.ez-icon-cloud-moon-rain:before{content:\"\\eb2c\"}.ez-icon-cloud-moon-showers:before{content:\"\\eb2d\"}.ez-icon-cloud-moon-tear:before{content:\"\\eb2e\"}.ez-icon-cloud-moon:before{content:\"\\eb2f\"}.ez-icon-cloud-question:before{content:\"\\eb30\"}.ez-icon-cloud-rain-sun:before{content:\"\\eb31\"}.ez-icon-cloud-rain:before{content:\"\\eb32\"}.ez-icon-cloud-redo:before{content:\"\\eb33\"}.ez-icon-cloud-share:before{content:\"\\eb34\"}.ez-icon-cloud-shield:before{content:\"\\eb35\"}.ez-icon-cloud-showers-alt:before{content:\"\\eb36\"}.ez-icon-cloud-showers-heavy:before{content:\"\\eb37\"}.ez-icon-cloud-showers:before{content:\"\\eb38\"}.ez-icon-cloud-slash:before{content:\"\\eb39\"}.ez-icon-cloud-sun-hail:before{content:\"\\eb3a\"}.ez-icon-cloud-sun-meatball:before{content:\"\\eb3b\"}.ez-icon-cloud-sun-rain-alt:before{content:\"\\eb3c\"}.ez-icon-cloud-sun-rain:before{content:\"\\eb3d\"}.ez-icon-cloud-sun-tear:before{content:\"\\eb3e\"}.ez-icon-cloud-sun:before{content:\"\\eb3f\"}.ez-icon-cloud-times:before{content:\"\\eb40\"}.ez-icon-cloud-unlock:before{content:\"\\eb41\"}.ez-icon-cloud-upload:before{content:\"\\eb42\"}.ez-icon-cloud-wifi:before{content:\"\\eb43\"}.ez-icon-cloud-wind:before{content:\"\\eb44\"}.ez-icon-cloud:before{content:\"\\eb45\"}.ez-icon-clouds:before{content:\"\\eb46\"}.ez-icon-club:before{content:\"\\eb47\"}.ez-icon-cobrar:before{content:\"\\eb48\"}.ez-icon-code-branch:before{content:\"\\eb49\"}.ez-icon-code:before{content:\"\\eb4a\"}.ez-icon-coffee:before{content:\"\\eb4b\"}.ez-icon-cog:before{content:\"\\eb4c\"}.ez-icon-coins:before{content:\"\\eb4d\"}.ez-icon-columns:before{content:\"\\eb4e\"}.ez-icon-comment-add:before{content:\"\\eb4f\"}.ez-icon-comment-alt-block:before{content:\"\\eb50\"}.ez-icon-comment-alt-chart-lines:before{content:\"\\eb51\"}.ez-icon-comment-alt-check:before{content:\"\\eb52\"}.ez-icon-comment-alt-dots:before{content:\"\\eb53\"}.ez-icon-comment-alt-download:before{content:\"\\eb54\"}.ez-icon-comment-alt-edit:before{content:\"\\eb55\"}.ez-icon-comment-alt-exclamation:before{content:\"\\eb56\"}.ez-icon-comment-alt-heart:before{content:\"\\eb57\"}.ez-icon-comment-alt-image:before{content:\"\\eb58\"}.ez-icon-comment-alt-info:before{content:\"\\eb59\"}.ez-icon-comment-alt-lines:before{content:\"\\eb5a\"}.ez-icon-comment-alt-lock:before{content:\"\\eb5b\"}.ez-icon-comment-alt-medical:before{content:\"\\eb5c\"}.ez-icon-comment-alt-message:before{content:\"\\eb5d\"}.ez-icon-comment-alt-notes:before{content:\"\\eb5e\"}.ez-icon-comment-alt-plus:before{content:\"\\eb5f\"}.ez-icon-comment-alt-question:before{content:\"\\eb60\"}.ez-icon-comment-alt-redo:before{content:\"\\eb61\"}.ez-icon-comment-alt-search:before{content:\"\\eb62\"}.ez-icon-comment-alt-share:before{content:\"\\eb63\"}.ez-icon-comment-alt-shield:before{content:\"\\eb64\"}.ez-icon-comment-alt-slash:before{content:\"\\eb65\"}.ez-icon-comment-alt-upload:before{content:\"\\eb66\"}.ez-icon-comment-alt-verify:before{content:\"\\eb67\"}.ez-icon-comment-alt:before{content:\"\\eb68\"}.ez-icon-comment-block:before{content:\"\\eb69\"}.ez-icon-comment-chart-line:before{content:\"\\eb6a\"}.ez-icon-comment-check:before{content:\"\\eb6b\"}.ez-icon-comment-dots:before{content:\"\\eb6c\"}.ez-icon-comment-download:before{content:\"\\eb6d\"}.ez-icon-comment-edit:before{content:\"\\eb6e\"}.ez-icon-comment-exclamation:before{content:\"\\eb6f\"}.ez-icon-comment-heart:before{content:\"\\eb70\"}.ez-icon-comment-image:before{content:\"\\eb71\"}.ez-icon-comment-info-alt:before{content:\"\\eb72\"}.ez-icon-comment-info:before{content:\"\\eb73\"}.ez-icon-comment-lines:before{content:\"\\eb74\"}.ez-icon-comment-lock:before{content:\"\\eb75\"}.ez-icon-comment-medical:before{content:\"\\eb76\"}.ez-icon-comment-message:before{content:\"\\eb77\"}.ez-icon-comment-notes:before{content:\"\\eb78\"}.ez-icon-comment-plus:before{content:\"\\eb79\"}.ez-icon-comment-question:before{content:\"\\eb7a\"}.ez-icon-comment-redo:before{content:\"\\eb7b\"}.ez-icon-comment-search:before{content:\"\\eb7c\"}.ez-icon-comment-share:before{content:\"\\eb7d\"}.ez-icon-comment-shield:before{content:\"\\eb7e\"}.ez-icon-comment-slash:before{content:\"\\eb7f\"}.ez-icon-comment-upload:before{content:\"\\eb80\"}.ez-icon-comment-verify:before{content:\"\\eb81\"}.ez-icon-comment:before{content:\"\\eb82\"}.ez-icon-comments-alt:before{content:\"\\eb83\"}.ez-icon-comments:before{content:\"\\eb84\"}.ez-icon-compact-disc:before{content:\"\\eb85\"}.ez-icon-comparison:before{content:\"\\eb86\"}.ez-icon-compass:before{content:\"\\eb87\"}.ez-icon-compress-alt-left:before{content:\"\\eb88\"}.ez-icon-compress-alt:before{content:\"\\eb89\"}.ez-icon-compress-arrows:before{content:\"\\eb8a\"}.ez-icon-compress-lines:before{content:\"\\eb8b\"}.ez-icon-compress-point:before{content:\"\\eb8c\"}.ez-icon-compress-v:before{content:\"\\eb8d\"}.ez-icon-compress:before{content:\"\\eb8e\"}.ez-icon-configuration:before{content:\"\\eb8f\"}.ez-icon-confused:before{content:\"\\eb90\"}.ez-icon-constructor:before{content:\"\\eb91\"}.ez-icon-content-cut:before{content:\"\\eb92\"}.ez-icon-copy-2:before{content:\"\\eb93\"}.ez-icon-copy-alt:before{content:\"\\eb94\"}.ez-icon-copy-landscape:before{content:\"\\eb95\"}.ez-icon-copy:before{content:\"\\eb96\"}.ez-icon-copyright:before{content:\"\\eb97\"}.ez-icon-corner-down-left:before{content:\"\\eb98\"}.ez-icon-corner-down-right-alt:before{content:\"\\eb99\"}.ez-icon-corner-down-right:before{content:\"\\eb9a\"}.ez-icon-corner-left-down:before{content:\"\\eb9b\"}.ez-icon-corner-right-down:before{content:\"\\eb9c\"}.ez-icon-corner-up-left-alt:before{content:\"\\eb9d\"}.ez-icon-corner-up-left:before{content:\"\\eb9e\"}.ez-icon-corner-up-right-alt:before{content:\"\\eb9f\"}.ez-icon-corner-up-right:before{content:\"\\eba0\"}.ez-icon-coronavirus:before{content:\"\\eba1\"}.ez-icon-create-dashboard:before{content:\"\\eba2\"}.ez-icon-creative-commons-pd:before{content:\"\\eba3\"}.ez-icon-credit-card-search:before{content:\"\\eba4\"}.ez-icon-credit-card:before{content:\"\\eba5\"}.ez-icon-credit_card:before{content:\"\\eba6\"}.ez-icon-crockery:before{content:\"\\eba7\"}.ez-icon-crop-alt-rotate-left:before{content:\"\\eba8\"}.ez-icon-crop-alt-rotate-right:before{content:\"\\eba9\"}.ez-icon-crop-alt:before{content:\"\\ebaa\"}.ez-icon-crop:before{content:\"\\ebab\"}.ez-icon-crosshair-alt:before{content:\"\\ebac\"}.ez-icon-crosshair:before{content:\"\\ebad\"}.ez-icon-crosshairs:before{content:\"\\ebae\"}.ez-icon-css3-simple:before{content:\"\\ebaf\"}.ez-icon-cube:before{content:\"\\ebb0\"}.ez-icon-custom:before{content:\"\\ebb1\"}.ez-icon-dashboard:before{content:\"\\ebb2\"}.ez-icon-data-sharing:before{content:\"\\ebb3\"}.ez-icon-database-alt:before{content:\"\\ebb4\"}.ez-icon-database:before{content:\"\\ebb5\"}.ez-icon-delete-file:before{content:\"\\ebb6\"}.ez-icon-delete:before{content:\"\\ebb7\"}.ez-icon-description:before{content:\"\\ebb8\"}.ez-icon-desert:before{content:\"\\ebb9\"}.ez-icon-desktop-alt-slash:before{content:\"\\ebba\"}.ez-icon-desktop-alt:before{content:\"\\ebbb\"}.ez-icon-desktop-cloud-alt:before{content:\"\\ebbc\"}.ez-icon-desktop-slash:before{content:\"\\ebbd\"}.ez-icon-desktop:before{content:\"\\ebbe\"}.ez-icon-dialpad-alt:before{content:\"\\ebbf\"}.ez-icon-dialpad:before{content:\"\\ebc0\"}.ez-icon-diamond:before{content:\"\\ebc1\"}.ez-icon-diary-alt:before{content:\"\\ebc2\"}.ez-icon-diary:before{content:\"\\ebc3\"}.ez-icon-dice-five:before{content:\"\\ebc4\"}.ez-icon-dice-four:before{content:\"\\ebc5\"}.ez-icon-dice-one:before{content:\"\\ebc6\"}.ez-icon-dice-six:before{content:\"\\ebc7\"}.ez-icon-dice-three:before{content:\"\\ebc8\"}.ez-icon-dice-two:before{content:\"\\ebc9\"}.ez-icon-direction:before{content:\"\\ebca\"}.ez-icon-directions:before{content:\"\\ebcb\"}.ez-icon-discord:before{content:\"\\ebcc\"}.ez-icon-dividir:before{content:\"\\ebcd\"}.ez-icon-dizzy-meh:before{content:\"\\ebce\"}.ez-icon-dna:before{content:\"\\ebcf\"}.ez-icon-docker:before{content:\"\\ebd0\"}.ez-icon-document-info:before{content:\"\\ebd1\"}.ez-icon-document-layout-center:before{content:\"\\ebd2\"}.ez-icon-document-layout-left:before{content:\"\\ebd3\"}.ez-icon-document-layout-right:before{content:\"\\ebd4\"}.ez-icon-docx:before{content:\"\\ebd5\"}.ez-icon-dollar-alt:before{content:\"\\ebd6\"}.ez-icon-dollar-sign-alt:before{content:\"\\ebd7\"}.ez-icon-dollar-sign:before{content:\"\\ebd8\"}.ez-icon-dot-notification:before{content:\"\\ebd9\"}.ez-icon-dots-horizontal:before{content:\"\\ebda\"}.ez-icon-dots-vertical:before{content:\"\\ebdb\"}.ez-icon-download-alt:before{content:\"\\ebdc\"}.ez-icon-drag-indicator:before{content:\"\\ebdd\"}.ez-icon-draggabledots:before{content:\"\\ebde\"}.ez-icon-dribbble:before{content:\"\\ebdf\"}.ez-icon-drill:before{content:\"\\ebe0\"}.ez-icon-dropbox:before{content:\"\\ebe1\"}.ez-icon-dual-chevron-down:before{content:\"\\ebe2\"}.ez-icon-dual-chevron-left:before{content:\"\\ebe3\"}.ez-icon-dual-chevron-right:before{content:\"\\ebe4\"}.ez-icon-dual-chevron-up:before{content:\"\\ebe5\"}.ez-icon-dumbbell:before{content:\"\\ebe6\"}.ez-icon-ear:before{content:\"\\ebe7\"}.ez-icon-edit-2:before{content:\"\\ebe8\"}.ez-icon-edit-alt:before{content:\"\\ebe9\"}.ez-icon-edit-file:before{content:\"\\ebea\"}.ez-icon-edit-table:before{content:\"\\ebeb\"}.ez-icon-edit-time:before{content:\"\\ebec\"}.ez-icon-edit-value:before{content:\"\\ebed\"}.ez-icon-edit:before{content:\"\\ebee\"}.ez-icon-elipsis-double-v-alt:before{content:\"\\ebef\"}.ez-icon-ellipsis-h:before{content:\"\\ebf0\"}.ez-icon-ellipsis-v:before{content:\"\\ebf1\"}.ez-icon-email:before{content:\"\\ebf2\"}.ez-icon-emoji:before{content:\"\\ebf3\"}.ez-icon-english-to-chinese:before{content:\"\\ebf4\"}.ez-icon-enter:before{content:\"\\ebf5\"}.ez-icon-envelope-add:before{content:\"\\ebf6\"}.ez-icon-envelope-alt:before{content:\"\\ebf7\"}.ez-icon-envelope-block:before{content:\"\\ebf8\"}.ez-icon-envelope-bookmark:before{content:\"\\ebf9\"}.ez-icon-envelope-check:before{content:\"\\ebfa\"}.ez-icon-envelope-download-alt:before{content:\"\\ebfb\"}.ez-icon-envelope-download:before{content:\"\\ebfc\"}.ez-icon-envelope-edit:before{content:\"\\ebfd\"}.ez-icon-envelope-exclamation:before{content:\"\\ebfe\"}.ez-icon-envelope-heart:before{content:\"\\ebff\"}.ez-icon-envelope-info:before{content:\"\\ec00\"}.ez-icon-envelope-lock:before{content:\"\\ec01\"}.ez-icon-envelope-minus:before{content:\"\\ec02\"}.ez-icon-envelope-open:before{content:\"\\ec03\"}.ez-icon-envelope-question:before{content:\"\\ec04\"}.ez-icon-envelope-receive:before{content:\"\\ec05\"}.ez-icon-envelope-redo:before{content:\"\\ec06\"}.ez-icon-envelope-search:before{content:\"\\ec07\"}.ez-icon-envelope-send:before{content:\"\\ec08\"}.ez-icon-envelope-share:before{content:\"\\ec09\"}.ez-icon-envelope-shield:before{content:\"\\ec0a\"}.ez-icon-envelope-star:before{content:\"\\ec0b\"}.ez-icon-envelope-times:before{content:\"\\ec0c\"}.ez-icon-envelope-upload-alt:before{content:\"\\ec0d\"}.ez-icon-envelope-upload:before{content:\"\\ec0e\"}.ez-icon-envelope:before{content:\"\\ec0f\"}.ez-icon-envelopes:before{content:\"\\ec10\"}.ez-icon-equal-circle:before{content:\"\\ec11\"}.ez-icon-estate:before{content:\"\\ec12\"}.ez-icon-estorno:before{content:\"\\ec13\"}.ez-icon-euro-circle:before{content:\"\\ec14\"}.ez-icon-euro:before{content:\"\\ec15\"}.ez-icon-exchange-alt:before{content:\"\\ec16\"}.ez-icon-exchange:before{content:\"\\ec17\"}.ez-icon-exclamation-circle:before{content:\"\\ec18\"}.ez-icon-exclamation-octagon:before{content:\"\\ec19\"}.ez-icon-exclamation-triangle:before{content:\"\\ec1a\"}.ez-icon-exclamation:before{content:\"\\ec1b\"}.ez-icon-exclude:before{content:\"\\ec1c\"}.ez-icon-exe:before{content:\"\\ec1d\"}.ez-icon-exit:before{content:\"\\ec1e\"}.ez-icon-expand-alt:before{content:\"\\ec1f\"}.ez-icon-expand-arrows-alt:before{content:\"\\ec20\"}.ez-icon-expand-arrows:before{content:\"\\ec21\"}.ez-icon-expand-from-corner:before{content:\"\\ec22\"}.ez-icon-expand-left:before{content:\"\\ec23\"}.ez-icon-expand-right:before{content:\"\\ec24\"}.ez-icon-expand:before{content:\"\\ec25\"}.ez-icon-expandir_card:before{content:\"\\ec26\"}.ez-icon-export:before{content:\"\\ec27\"}.ez-icon-exposure-alt:before{content:\"\\ec28\"}.ez-icon-exposure-increase:before{content:\"\\ec29\"}.ez-icon-external-link-alt:before{content:\"\\ec2a\"}.ez-icon-extrato:before{content:\"\\ec2b\"}.ez-icon-eye-2:before{content:\"\\ec2c\"}.ez-icon-eye-off:before{content:\"\\ec2d\"}.ez-icon-eye-slash:before{content:\"\\ec2e\"}.ez-icon-eye:before{content:\"\\ec2f\"}.ez-icon-facebook-f:before{content:\"\\ec30\"}.ez-icon-facebook-messenger-alt:before{content:\"\\ec31\"}.ez-icon-facebook-messenger:before{content:\"\\ec32\"}.ez-icon-facebook:before{content:\"\\ec33\"}.ez-icon-fahrenheit:before{content:\"\\ec34\"}.ez-icon-fast-mail-alt:before{content:\"\\ec35\"}.ez-icon-fast-mail:before{content:\"\\ec36\"}.ez-icon-favorite-2:before{content:\"\\ec37\"}.ez-icon-favorite:before{content:\"\\ec38\"}.ez-icon-feedback:before{content:\"\\ec39\"}.ez-icon-fidget-spinner:before{content:\"\\ec3a\"}.ez-icon-figma:before{content:\"\\ec3b\"}.ez-icon-file-alt:before{content:\"\\ec3c\"}.ez-icon-file-blank:before{content:\"\\ec3d\"}.ez-icon-file-block-alt:before{content:\"\\ec3e\"}.ez-icon-file-bookmark-alt:before{content:\"\\ec3f\"}.ez-icon-file-check-alt:before{content:\"\\ec40\"}.ez-icon-file-check:before{content:\"\\ec41\"}.ez-icon-file-contract-dollar:before{content:\"\\ec42\"}.ez-icon-file-contract:before{content:\"\\ec43\"}.ez-icon-file-copy-alt:before{content:\"\\ec44\"}.ez-icon-file-download-:before{content:\"\\ec45\"}.ez-icon-file-download-alt:before{content:\"\\ec46\"}.ez-icon-file-download:before{content:\"\\ec47\"}.ez-icon-file-edit-alt:before{content:\"\\ec48\"}.ez-icon-file-exclamation-alt:before{content:\"\\ec49\"}.ez-icon-file-exclamation:before{content:\"\\ec4a\"}.ez-icon-file-export:before{content:\"\\ec4b\"}.ez-icon-file-graph:before{content:\"\\ec4c\"}.ez-icon-file-heart:before{content:\"\\ec4d\"}.ez-icon-file-import:before{content:\"\\ec4e\"}.ez-icon-file-info-alt:before{content:\"\\ec4f\"}.ez-icon-file-landscape-alt:before{content:\"\\ec50\"}.ez-icon-file-landscape:before{content:\"\\ec51\"}.ez-icon-file-lanscape-slash:before{content:\"\\ec52\"}.ez-icon-file-lock-alt:before{content:\"\\ec53\"}.ez-icon-file-medical-alt:before{content:\"\\ec54\"}.ez-icon-file-medical:before{content:\"\\ec55\"}.ez-icon-file-minus-alt:before{content:\"\\ec56\"}.ez-icon-file-minus:before{content:\"\\ec57\"}.ez-icon-file-network:before{content:\"\\ec58\"}.ez-icon-file-plus-alt:before{content:\"\\ec59\"}.ez-icon-file-plus:before{content:\"\\ec5a\"}.ez-icon-file-question-alt:before{content:\"\\ec5b\"}.ez-icon-file-question:before{content:\"\\ec5c\"}.ez-icon-file-redo-alt:before{content:\"\\ec5d\"}.ez-icon-file-search-alt:before{content:\"\\ec5e\"}.ez-icon-file-share-alt:before{content:\"\\ec5f\"}.ez-icon-file-shield-alt:before{content:\"\\ec60\"}.ez-icon-file-slash:before{content:\"\\ec61\"}.ez-icon-file-times-alt:before{content:\"\\ec62\"}.ez-icon-file-times:before{content:\"\\ec63\"}.ez-icon-file-upload-2:before{content:\"\\ec64\"}.ez-icon-file-upload-alt:before{content:\"\\ec65\"}.ez-icon-file-upload:before{content:\"\\ec66\"}.ez-icon-file:before{content:\"\\ec67\"}.ez-icon-files-landscapes-alt:before{content:\"\\ec68\"}.ez-icon-files-landscapes:before{content:\"\\ec69\"}.ez-icon-film:before{content:\"\\ec6a\"}.ez-icon-filter-2:before{content:\"\\ec6b\"}.ez-icon-filter-slash:before{content:\"\\ec6c\"}.ez-icon-filter:before{content:\"\\ec6d\"}.ez-icon-find-file:before{content:\"\\ec6e\"}.ez-icon-find-page:before{content:\"\\ec6f\"}.ez-icon-fire:before{content:\"\\ec70\"}.ez-icon-flask-potion:before{content:\"\\ec71\"}.ez-icon-flask:before{content:\"\\ec72\"}.ez-icon-flip-h-alt:before{content:\"\\ec73\"}.ez-icon-flip-h:before{content:\"\\ec74\"}.ez-icon-flip-v-alt:before{content:\"\\ec75\"}.ez-icon-flip-v:before{content:\"\\ec76\"}.ez-icon-flower:before{content:\"\\ec77\"}.ez-icon-focus-add:before{content:\"\\ec78\"}.ez-icon-focus-target:before{content:\"\\ec79\"}.ez-icon-focus:before{content:\"\\ec7a\"}.ez-icon-folder-check:before{content:\"\\ec7b\"}.ez-icon-folder-download:before{content:\"\\ec7c\"}.ez-icon-folder-exclamation:before{content:\"\\ec7d\"}.ez-icon-folder-heart:before{content:\"\\ec7e\"}.ez-icon-folder-info:before{content:\"\\ec7f\"}.ez-icon-folder-lock:before{content:\"\\ec80\"}.ez-icon-folder-medical:before{content:\"\\ec81\"}.ez-icon-folder-minus:before{content:\"\\ec82\"}.ez-icon-folder-network:before{content:\"\\ec83\"}.ez-icon-folder-open:before{content:\"\\ec84\"}.ez-icon-folder-plus:before{content:\"\\ec85\"}.ez-icon-folder-question:before{content:\"\\ec86\"}.ez-icon-folder-slash:before{content:\"\\ec87\"}.ez-icon-folder-times:before{content:\"\\ec88\"}.ez-icon-folder-upload:before{content:\"\\ec89\"}.ez-icon-folder:before{content:\"\\ec8a\"}.ez-icon-font:before{content:\"\\ec8b\"}.ez-icon-football-american:before{content:\"\\ec8c\"}.ez-icon-football-ball:before{content:\"\\ec8d\"}.ez-icon-football:before{content:\"\\ec8e\"}.ez-icon-forecastcloud-moon-tear:before{content:\"\\ec8f\"}.ez-icon-format-color-fill:before{content:\"\\ec90\"}.ez-icon-forwaded-call:before{content:\"\\ec91\"}.ez-icon-forward:before{content:\"\\ec92\"}.ez-icon-frown:before{content:\"\\ec93\"}.ez-icon-game-structure:before{content:\"\\ec94\"}.ez-icon-generic:before{content:\"\\ec95\"}.ez-icon-gif:before{content:\"\\ec96\"}.ez-icon-gift:before{content:\"\\ec97\"}.ez-icon-github-alt:before{content:\"\\ec98\"}.ez-icon-github:before{content:\"\\ec99\"}.ez-icon-gitlab:before{content:\"\\ec9a\"}.ez-icon-glass-martini-alt-slash:before{content:\"\\ec9b\"}.ez-icon-glass-martini-alt:before{content:\"\\ec9c\"}.ez-icon-glass-martini:before{content:\"\\ec9d\"}.ez-icon-glass-tea:before{content:\"\\ec9e\"}.ez-icon-glass:before{content:\"\\ec9f\"}.ez-icon-globe:before{content:\"\\eca0\"}.ez-icon-gold:before{content:\"\\eca1\"}.ez-icon-golf-ball:before{content:\"\\eca2\"}.ez-icon-google-drive-alt:before{content:\"\\eca3\"}.ez-icon-google-drive:before{content:\"\\eca4\"}.ez-icon-google-hangouts-alt:before{content:\"\\eca5\"}.ez-icon-google-hangouts:before{content:\"\\eca6\"}.ez-icon-google-play:before{content:\"\\eca7\"}.ez-icon-google:before{content:\"\\eca8\"}.ez-icon-graduation-cap:before{content:\"\\eca9\"}.ez-icon-graph-bar:before{content:\"\\ecaa\"}.ez-icon-graph_bar:before{content:\"\\ecab\"}.ez-icon-grid:before{content:\"\\ecac\"}.ez-icon-grids:before{content:\"\\ecad\"}.ez-icon-grin-tongue-wink-alt:before{content:\"\\ecae\"}.ez-icon-grin-tongue-wink:before{content:\"\\ecaf\"}.ez-icon-grin:before{content:\"\\ecb0\"}.ez-icon-grip-horizontal-line:before{content:\"\\ecb1\"}.ez-icon-handshake:before{content:\"\\ecb2\"}.ez-icon-hard-hat:before{content:\"\\ecb3\"}.ez-icon-head-side-cough:before{content:\"\\ecb4\"}.ez-icon-head-side-mask:before{content:\"\\ecb5\"}.ez-icon-head-side:before{content:\"\\ecb6\"}.ez-icon-headphone-slash:before{content:\"\\ecb7\"}.ez-icon-headphones-alt:before{content:\"\\ecb8\"}.ez-icon-headphones:before{content:\"\\ecb9\"}.ez-icon-heart-alt:before{content:\"\\ecba\"}.ez-icon-heart-break:before{content:\"\\ecbb\"}.ez-icon-heart-medical:before{content:\"\\ecbc\"}.ez-icon-heart-rate:before{content:\"\\ecbd\"}.ez-icon-heart-sign:before{content:\"\\ecbe\"}.ez-icon-heart:before{content:\"\\ecbf\"}.ez-icon-heartbeat:before{content:\"\\ecc0\"}.ez-icon-help-inverted:before{content:\"\\ecc1\"}.ez-icon-help:before{content:\"\\ecc2\"}.ez-icon-hide-list:before{content:\"\\ecc3\"}.ez-icon-hide_menu:before{content:\"\\ecc4\"}.ez-icon-hierarchical-tree:before{content:\"\\ecc5\"}.ez-icon-hindi-to-chinese:before{content:\"\\ecc6\"}.ez-icon-hipchat:before{content:\"\\ecc7\"}.ez-icon-history-alt:before{content:\"\\ecc8\"}.ez-icon-history:before{content:\"\\ecc9\"}.ez-icon-home-2:before{content:\"\\ecca\"}.ez-icon-home-alt:before{content:\"\\eccb\"}.ez-icon-home:before{content:\"\\eccc\"}.ez-icon-horizontal-align-center:before{content:\"\\eccd\"}.ez-icon-horizontal-align-left:before{content:\"\\ecce\"}.ez-icon-horizontal-align-right:before{content:\"\\eccf\"}.ez-icon-horizontal-distribution-center:before{content:\"\\ecd0\"}.ez-icon-horizontal-distribution-left:before{content:\"\\ecd1\"}.ez-icon-horizontal-distribution-right:before{content:\"\\ecd2\"}.ez-icon-hospital-square-sign:before{content:\"\\ecd3\"}.ez-icon-hospital-symbol:before{content:\"\\ecd4\"}.ez-icon-hospital:before{content:\"\\ecd5\"}.ez-icon-hourglass:before{content:\"\\ecd6\"}.ez-icon-house-user:before{content:\"\\ecd7\"}.ez-icon-html3-alt:before{content:\"\\ecd8\"}.ez-icon-html3:before{content:\"\\ecd9\"}.ez-icon-html5-alt:before{content:\"\\ecda\"}.ez-icon-html5:before{content:\"\\ecdb\"}.ez-icon-hunting:before{content:\"\\ecdc\"}.ez-icon-icons:before{content:\"\\ecdd\"}.ez-icon-icons104:before{content:\"\\ecde\"}.ez-icon-illustration:before{content:\"\\ecdf\"}.ez-icon-image-alt-slash:before{content:\"\\ece0\"}.ez-icon-image-block:before{content:\"\\ece1\"}.ez-icon-image-broken:before{content:\"\\ece2\"}.ez-icon-image-check:before{content:\"\\ece3\"}.ez-icon-image-download:before{content:\"\\ece4\"}.ez-icon-image-edit:before{content:\"\\ece5\"}.ez-icon-image-lock:before{content:\"\\ece6\"}.ez-icon-image-minus:before{content:\"\\ece7\"}.ez-icon-image-plus:before{content:\"\\ece8\"}.ez-icon-image-question:before{content:\"\\ece9\"}.ez-icon-image-redo:before{content:\"\\ecea\"}.ez-icon-image-resize-landscape:before{content:\"\\eceb\"}.ez-icon-image-resize-square:before{content:\"\\ecec\"}.ez-icon-image-search:before{content:\"\\eced\"}.ez-icon-image-share:before{content:\"\\ecee\"}.ez-icon-image-shield:before{content:\"\\ecef\"}.ez-icon-image-slash:before{content:\"\\ecf0\"}.ez-icon-image-times:before{content:\"\\ecf1\"}.ez-icon-image-upload:before{content:\"\\ecf2\"}.ez-icon-image-v:before{content:\"\\ecf3\"}.ez-icon-image:before{content:\"\\ecf4\"}.ez-icon-images:before{content:\"\\ecf5\"}.ez-icon-import:before{content:\"\\ecf6\"}.ez-icon-inbox:before{content:\"\\ecf7\"}.ez-icon-incoming-call:before{content:\"\\ecf8\"}.ez-icon-info-circle:before{content:\"\\ecf9\"}.ez-icon-info:before{content:\"\\ecfa\"}.ez-icon-instagram-alt:before{content:\"\\ecfb\"}.ez-icon-instagram:before{content:\"\\ecfc\"}.ez-icon-intercom-alt:before{content:\"\\ecfd\"}.ez-icon-intercom:before{content:\"\\ecfe\"}.ez-icon-invoice:before{content:\"\\ecff\"}.ez-icon-italic:before{content:\"\\ed00\"}.ez-icon-jackhammer:before{content:\"\\ed01\"}.ez-icon-java-script:before{content:\"\\ed02\"}.ez-icon-kayak:before{content:\"\\ed03\"}.ez-icon-key-skeleton-alt:before{content:\"\\ed04\"}.ez-icon-key-skeleton:before{content:\"\\ed05\"}.ez-icon-keyboard-alt:before{content:\"\\ed06\"}.ez-icon-keyboard-hide:before{content:\"\\ed07\"}.ez-icon-keyboard-show:before{content:\"\\ed08\"}.ez-icon-keyboard:before{content:\"\\ed09\"}.ez-icon-keyhole-circle:before{content:\"\\ed0a\"}.ez-icon-keyhole-square-full:before{content:\"\\ed0b\"}.ez-icon-keyhole-square:before{content:\"\\ed0c\"}.ez-icon-kid:before{content:\"\\ed0d\"}.ez-icon-label-alt:before{content:\"\\ed0e\"}.ez-icon-label:before{content:\"\\ed0f\"}.ez-icon-lamp:before{content:\"\\ed10\"}.ez-icon-language-2:before{content:\"\\ed11\"}.ez-icon-language:before{content:\"\\ed12\"}.ez-icon-laptop-cloud:before{content:\"\\ed13\"}.ez-icon-laptop-connection:before{content:\"\\ed14\"}.ez-icon-laptop:before{content:\"\\ed15\"}.ez-icon-laughing:before{content:\"\\ed16\"}.ez-icon-launch:before{content:\"\\ed17\"}.ez-icon-layer-group-slash:before{content:\"\\ed18\"}.ez-icon-layer-group:before{content:\"\\ed19\"}.ez-icon-layers-alt:before{content:\"\\ed1a\"}.ez-icon-layers-slash:before{content:\"\\ed1b\"}.ez-icon-layers:before{content:\"\\ed1c\"}.ez-icon-left-arrow-from-left:before{content:\"\\ed1d\"}.ez-icon-left-arrow-to-left:before{content:\"\\ed1e\"}.ez-icon-left-indent-alt:before{content:\"\\ed1f\"}.ez-icon-left-indent:before{content:\"\\ed20\"}.ez-icon-left-to-right-text-direction:before{content:\"\\ed21\"}.ez-icon-left:before{content:\"\\ed22\"}.ez-icon-letter-chinese-a:before{content:\"\\ed23\"}.ez-icon-letter-english-a:before{content:\"\\ed24\"}.ez-icon-letter-hindi-a:before{content:\"\\ed25\"}.ez-icon-letter-japanese-a:before{content:\"\\ed26\"}.ez-icon-life-ring:before{content:\"\\ed27\"}.ez-icon-lightbulb-2:before{content:\"\\ed28\"}.ez-icon-lightbulb-alt:before{content:\"\\ed29\"}.ez-icon-lightbulb:before{content:\"\\ed2a\"}.ez-icon-line-alt:before{content:\"\\ed2b\"}.ez-icon-line-spacing:before{content:\"\\ed2c\"}.ez-icon-line:before{content:\"\\ed2d\"}.ez-icon-link-add:before{content:\"\\ed2e\"}.ez-icon-link-alt:before{content:\"\\ed2f\"}.ez-icon-link-broken:before{content:\"\\ed30\"}.ez-icon-link-h:before{content:\"\\ed31\"}.ez-icon-link:before{content:\"\\ed32\"}.ez-icon-linkedin-alt:before{content:\"\\ed33\"}.ez-icon-linkedin:before{content:\"\\ed34\"}.ez-icon-linux:before{content:\"\\ed35\"}.ez-icon-lira-sign:before{content:\"\\ed36\"}.ez-icon-list-ol-alt:before{content:\"\\ed37\"}.ez-icon-list-ol:before{content:\"\\ed38\"}.ez-icon-list-ui-alt:before{content:\"\\ed39\"}.ez-icon-list-ul:before{content:\"\\ed3a\"}.ez-icon-list:before{content:\"\\ed3b\"}.ez-icon-location-arrow-alt:before{content:\"\\ed3c\"}.ez-icon-location-arrow:before{content:\"\\ed3d\"}.ez-icon-location-pin-alt:before{content:\"\\ed3e\"}.ez-icon-location-point:before{content:\"\\ed3f\"}.ez-icon-location:before{content:\"\\ed40\"}.ez-icon-lock-2:before{content:\"\\ed41\"}.ez-icon-lock-access:before{content:\"\\ed42\"}.ez-icon-lock-alt:before{content:\"\\ed43\"}.ez-icon-lock-open-alt:before{content:\"\\ed44\"}.ez-icon-lock-outline:before{content:\"\\ed45\"}.ez-icon-lock-slash:before{content:\"\\ed46\"}.ez-icon-lock:before{content:\"\\ed47\"}.ez-icon-lottiefiles-alt:before{content:\"\\ed48\"}.ez-icon-lottiefiles:before{content:\"\\ed49\"}.ez-icon-luggage-cart:before{content:\"\\ed4a\"}.ez-icon-mailbox-alt:before{content:\"\\ed4b\"}.ez-icon-mailbox:before{content:\"\\ed4c\"}.ez-icon-map-marker-alt:before{content:\"\\ed4d\"}.ez-icon-map-marker-edit:before{content:\"\\ed4e\"}.ez-icon-map-marker-info:before{content:\"\\ed4f\"}.ez-icon-map-marker-minus:before{content:\"\\ed50\"}.ez-icon-map-marker-plus:before{content:\"\\ed51\"}.ez-icon-map-marker-question:before{content:\"\\ed52\"}.ez-icon-map-marker-shield:before{content:\"\\ed53\"}.ez-icon-map-marker-slash:before{content:\"\\ed54\"}.ez-icon-map-marker:before{content:\"\\ed55\"}.ez-icon-map-pin-alt:before{content:\"\\ed56\"}.ez-icon-map-pin:before{content:\"\\ed57\"}.ez-icon-map:before{content:\"\\ed58\"}.ez-icon-mars:before{content:\"\\ed59\"}.ez-icon-master-card:before{content:\"\\ed5a\"}.ez-icon-maximize-left:before{content:\"\\ed5b\"}.ez-icon-medal:before{content:\"\\ed5c\"}.ez-icon-medical-drip:before{content:\"\\ed5d\"}.ez-icon-medical-square-full:before{content:\"\\ed5e\"}.ez-icon-medical-square:before{content:\"\\ed5f\"}.ez-icon-medium-m:before{content:\"\\ed60\"}.ez-icon-medkit:before{content:\"\\ed61\"}.ez-icon-meeting-board:before{content:\"\\ed62\"}.ez-icon-megaphone:before{content:\"\\ed63\"}.ez-icon-meh-alt:before{content:\"\\ed64\"}.ez-icon-meh-closed-eye:before{content:\"\\ed65\"}.ez-icon-meh:before{content:\"\\ed66\"}.ez-icon-menu:before{content:\"\\ed67\"}.ez-icon-message:before{content:\"\\ed68\"}.ez-icon-metro:before{content:\"\\ed69\"}.ez-icon-microphone-slash:before{content:\"\\ed6a\"}.ez-icon-microphone:before{content:\"\\ed6b\"}.ez-icon-microscope:before{content:\"\\ed6c\"}.ez-icon-microsoft:before{content:\"\\ed6d\"}.ez-icon-mid:before{content:\"\\ed6e\"}.ez-icon-minus-2:before{content:\"\\ed6f\"}.ez-icon-minus-circle:before{content:\"\\ed70\"}.ez-icon-minus-path:before{content:\"\\ed71\"}.ez-icon-minus-square-full:before{content:\"\\ed72\"}.ez-icon-minus-square:before{content:\"\\ed73\"}.ez-icon-minus:before{content:\"\\ed74\"}.ez-icon-missed-call:before{content:\"\\ed75\"}.ez-icon-mobile-android-alt:before{content:\"\\ed76\"}.ez-icon-mobile-android:before{content:\"\\ed77\"}.ez-icon-mobile-vibrate:before{content:\"\\ed78\"}.ez-icon-modem:before{content:\"\\ed79\"}.ez-icon-money-bill-slash:before{content:\"\\ed7a\"}.ez-icon-money-bill-stack:before{content:\"\\ed7b\"}.ez-icon-money-bill:before{content:\"\\ed7c\"}.ez-icon-money-insert:before{content:\"\\ed7d\"}.ez-icon-money-off:before{content:\"\\ed7e\"}.ez-icon-money-stack:before{content:\"\\ed7f\"}.ez-icon-money-withdraw:before{content:\"\\ed80\"}.ez-icon-money-withdrawal:before{content:\"\\ed81\"}.ez-icon-money:before{content:\"\\ed82\"}.ez-icon-moneybag-alt:before{content:\"\\ed83\"}.ez-icon-moneybag:before{content:\"\\ed84\"}.ez-icon-monitor-heart-rate:before{content:\"\\ed85\"}.ez-icon-monitor:before{content:\"\\ed86\"}.ez-icon-moon-eclipse:before{content:\"\\ed87\"}.ez-icon-moon:before{content:\"\\ed88\"}.ez-icon-moonset:before{content:\"\\ed89\"}.ez-icon-more:before{content:\"\\ed8a\"}.ez-icon-mountains-sun:before{content:\"\\ed8b\"}.ez-icon-mountains:before{content:\"\\ed8c\"}.ez-icon-mouse-alt-2:before{content:\"\\ed8d\"}.ez-icon-mouse-alt:before{content:\"\\ed8e\"}.ez-icon-mouse:before{content:\"\\ed8f\"}.ez-icon-mp3:before{content:\"\\ed90\"}.ez-icon-mp4:before{content:\"\\ed91\"}.ez-icon-multiple-files:before{content:\"\\ed92\"}.ez-icon-multiply:before{content:\"\\ed93\"}.ez-icon-music-note:before{content:\"\\ed94\"}.ez-icon-music-tune-slash:before{content:\"\\ed95\"}.ez-icon-music:before{content:\"\\ed96\"}.ez-icon-n-a:before{content:\"\\ed97\"}.ez-icon-navigator:before{content:\"\\ed98\"}.ez-icon-nerd:before{content:\"\\ed99\"}.ez-icon-newspaper:before{content:\"\\ed9a\"}.ez-icon-ninja:before{content:\"\\ed9b\"}.ez-icon-no-entry:before{content:\"\\ed9c\"}.ez-icon-north-west:before{content:\"\\ed9d\"}.ez-icon-notebooks:before{content:\"\\ed9e\"}.ez-icon-notes:before{content:\"\\ed9f\"}.ez-icon-number:before{content:\"\\eda0\"}.ez-icon-object-group:before{content:\"\\eda1\"}.ez-icon-object-ungroup:before{content:\"\\eda2\"}.ez-icon-octagon:before{content:\"\\eda3\"}.ez-icon-okta:before{content:\"\\eda4\"}.ez-icon-opera-alt:before{content:\"\\eda5\"}.ez-icon-opera:before{content:\"\\eda6\"}.ez-icon-ordem-ascendente:before{content:\"\\eda7\"}.ez-icon-ordem-descendente:before{content:\"\\eda8\"}.ez-icon-outgoing-call:before{content:\"\\eda9\"}.ez-icon-package:before{content:\"\\edaa\"}.ez-icon-padlock:before{content:\"\\edab\"}.ez-icon-pagelines:before{content:\"\\edac\"}.ez-icon-pagerduty:before{content:\"\\edad\"}.ez-icon-paint-tool:before{content:\"\\edae\"}.ez-icon-palette:before{content:\"\\edaf\"}.ez-icon-panel-add:before{content:\"\\edb0\"}.ez-icon-panorama-h-alt:before{content:\"\\edb1\"}.ez-icon-panorama-h:before{content:\"\\edb2\"}.ez-icon-panorama-v:before{content:\"\\edb3\"}.ez-icon-paperclip:before{content:\"\\edb4\"}.ez-icon-paragraph:before{content:\"\\edb5\"}.ez-icon-parcel:before{content:\"\\edb6\"}.ez-icon-parcelar:before{content:\"\\edb7\"}.ez-icon-parking-circle:before{content:\"\\edb8\"}.ez-icon-parking-square:before{content:\"\\edb9\"}.ez-icon-pathfinder-unite:before{content:\"\\edba\"}.ez-icon-pathfinder:before{content:\"\\edbb\"}.ez-icon-pause-circle:before{content:\"\\edbc\"}.ez-icon-pause:before{content:\"\\edbd\"}.ez-icon-payments:before{content:\"\\edbe\"}.ez-icon-paypal:before{content:\"\\edbf\"}.ez-icon-pdf:before{content:\"\\edc0\"}.ez-icon-pen:before{content:\"\\edc1\"}.ez-icon-pentagon:before{content:\"\\edc2\"}.ez-icon-percentage:before{content:\"\\edc3\"}.ez-icon-phone-alt:before{content:\"\\edc4\"}.ez-icon-phone-pause:before{content:\"\\edc5\"}.ez-icon-phone-slash:before{content:\"\\edc6\"}.ez-icon-phone-times:before{content:\"\\edc7\"}.ez-icon-phone-volume:before{content:\"\\edc8\"}.ez-icon-phone:before{content:\"\\edc9\"}.ez-icon-picture:before{content:\"\\edca\"}.ez-icon-pizza-slice:before{content:\"\\edcb\"}.ez-icon-plane-arrival:before{content:\"\\edcc\"}.ez-icon-plane-departure:before{content:\"\\edcd\"}.ez-icon-plane-fly:before{content:\"\\edce\"}.ez-icon-plane:before{content:\"\\edcf\"}.ez-icon-play-2:before{content:\"\\edd0\"}.ez-icon-play-circle:before{content:\"\\edd1\"}.ez-icon-play:before{content:\"\\edd2\"}.ez-icon-plug:before{content:\"\\edd3\"}.ez-icon-plus-2:before{content:\"\\edd4\"}.ez-icon-plus-circle:before{content:\"\\edd5\"}.ez-icon-plus-square:before{content:\"\\edd6\"}.ez-icon-plus:before{content:\"\\edd7\"}.ez-icon-png:before{content:\"\\edd8\"}.ez-icon-podium:before{content:\"\\edd9\"}.ez-icon-polygon:before{content:\"\\edda\"}.ez-icon-post-stamp:before{content:\"\\eddb\"}.ez-icon-postcard:before{content:\"\\eddc\"}.ez-icon-pound-circle:before{content:\"\\eddd\"}.ez-icon-pound:before{content:\"\\edde\"}.ez-icon-power-2:before{content:\"\\eddf\"}.ez-icon-power:before{content:\"\\ede0\"}.ez-icon-pptx:before{content:\"\\ede1\"}.ez-icon-prescription-bottle:before{content:\"\\ede2\"}.ez-icon-presentation-check:before{content:\"\\ede3\"}.ez-icon-presentation-edit:before{content:\"\\ede4\"}.ez-icon-presentation-line:before{content:\"\\ede5\"}.ez-icon-presentation-lines-alt:before{content:\"\\ede6\"}.ez-icon-presentation-minus:before{content:\"\\ede7\"}.ez-icon-presentation-play:before{content:\"\\ede8\"}.ez-icon-presentation-plus:before{content:\"\\ede9\"}.ez-icon-presentation-times:before{content:\"\\edea\"}.ez-icon-presentation:before{content:\"\\edeb\"}.ez-icon-preview:before{content:\"\\edec\"}.ez-icon-previous:before{content:\"\\eded\"}.ez-icon-pricetag-alt:before{content:\"\\edee\"}.ez-icon-print-2:before{content:\"\\edef\"}.ez-icon-print-slash:before{content:\"\\edf0\"}.ez-icon-print:before{content:\"\\edf1\"}.ez-icon-process:before{content:\"\\edf2\"}.ez-icon-processor:before{content:\"\\edf3\"}.ez-icon-programming-language:before{content:\"\\edf4\"}.ez-icon-pump:before{content:\"\\edf5\"}.ez-icon-push-pin:before{content:\"\\edf6\"}.ez-icon-puzzle-piece:before{content:\"\\edf7\"}.ez-icon-qrcode-scan:before{content:\"\\edf8\"}.ez-icon-question-circle:before{content:\"\\edf9\"}.ez-icon-question:before{content:\"\\edfa\"}.ez-icon-rainbow:before{content:\"\\edfb\"}.ez-icon-raindrops-alt:before{content:\"\\edfc\"}.ez-icon-raindrops:before{content:\"\\edfd\"}.ez-icon-rateio:before{content:\"\\edfe\"}.ez-icon-react:before{content:\"\\edff\"}.ez-icon-receipt-2:before{content:\"\\ee00\"}.ez-icon-receipt-alt:before{content:\"\\ee01\"}.ez-icon-receipt:before{content:\"\\ee02\"}.ez-icon-recolher_card:before{content:\"\\ee03\"}.ez-icon-record-audio:before{content:\"\\ee04\"}.ez-icon-reddit-alien-alt:before{content:\"\\ee05\"}.ez-icon-redo:before{content:\"\\ee06\"}.ez-icon-refresh:before{content:\"\\ee07\"}.ez-icon-registered:before{content:\"\\ee08\"}.ez-icon-remove-from-cart:before{content:\"\\ee09\"}.ez-icon-repeat:before{content:\"\\ee0a\"}.ez-icon-restaurant:before{content:\"\\ee0b\"}.ez-icon-restore:before{content:\"\\ee0c\"}.ez-icon-return:before{content:\"\\ee0d\"}.ez-icon-right-indent-alt:before{content:\"\\ee0e\"}.ez-icon-right-to-left-text-direction:before{content:\"\\ee0f\"}.ez-icon-robot:before{content:\"\\ee10\"}.ez-icon-rocket:before{content:\"\\ee11\"}.ez-icon-rope-way:before{content:\"\\ee12\"}.ez-icon-rotate-360:before{content:\"\\ee13\"}.ez-icon-rss-alt:before{content:\"\\ee14\"}.ez-icon-rss-interface:before{content:\"\\ee15\"}.ez-icon-rss:before{content:\"\\ee16\"}.ez-icon-ruler-combined:before{content:\"\\ee17\"}.ez-icon-ruler:before{content:\"\\ee18\"}.ez-icon-rupee-sign:before{content:\"\\ee19\"}.ez-icon-sad-cry:before{content:\"\\ee1a\"}.ez-icon-sad-crying:before{content:\"\\ee1b\"}.ez-icon-sad-dizzy:before{content:\"\\ee1c\"}.ez-icon-sad-squint:before{content:\"\\ee1d\"}.ez-icon-sad:before{content:\"\\ee1e\"}.ez-icon-sanitizer-alt:before{content:\"\\ee1f\"}.ez-icon-sanitizer:before{content:\"\\ee20\"}.ez-icon-sankhya-place:before{content:\"\\ee21\"}.ez-icon-save-2:before{content:\"\\ee22\"}.ez-icon-save:before{content:\"\\ee23\"}.ez-icon-scaling-left:before{content:\"\\ee24\"}.ez-icon-scaling-right:before{content:\"\\ee25\"}.ez-icon-scenery:before{content:\"\\ee26\"}.ez-icon-schedule:before{content:\"\\ee27\"}.ez-icon-screw:before{content:\"\\ee28\"}.ez-icon-scroll-h:before{content:\"\\ee29\"}.ez-icon-scroll:before{content:\"\\ee2a\"}.ez-icon-search-2:before{content:\"\\ee2b\"}.ez-icon-search-alt:before{content:\"\\ee2c\"}.ez-icon-search-minus:before{content:\"\\ee2d\"}.ez-icon-search-plus:before{content:\"\\ee2e\"}.ez-icon-search:before{content:\"\\ee2f\"}.ez-icon-selfie:before{content:\"\\ee30\"}.ez-icon-server-alt:before{content:\"\\ee31\"}.ez-icon-server-connection:before{content:\"\\ee32\"}.ez-icon-server-network-alt:before{content:\"\\ee33\"}.ez-icon-server-network:before{content:\"\\ee34\"}.ez-icon-server:before{content:\"\\ee35\"}.ez-icon-servers:before{content:\"\\ee36\"}.ez-icon-servicemark:before{content:\"\\ee37\"}.ez-icon-setting:before{content:\"\\ee38\"}.ez-icon-settings-inverted:before{content:\"\\ee39\"}.ez-icon-settings:before{content:\"\\ee3a\"}.ez-icon-share-2:before{content:\"\\ee3b\"}.ez-icon-share-alt:before{content:\"\\ee3c\"}.ez-icon-share:before{content:\"\\ee3d\"}.ez-icon-shield-2:before{content:\"\\ee3e\"}.ez-icon-shield-check:before{content:\"\\ee3f\"}.ez-icon-shield-exclamation:before{content:\"\\ee40\"}.ez-icon-shield-plus:before{content:\"\\ee41\"}.ez-icon-shield-question:before{content:\"\\ee42\"}.ez-icon-shield-slash:before{content:\"\\ee43\"}.ez-icon-shield:before{content:\"\\ee44\"}.ez-icon-ship:before{content:\"\\ee45\"}.ez-icon-shop:before{content:\"\\ee46\"}.ez-icon-shopping-bag:before{content:\"\\ee47\"}.ez-icon-shopping-basket:before{content:\"\\ee48\"}.ez-icon-shopping-cart-alt:before{content:\"\\ee49\"}.ez-icon-shopping-cart:before{content:\"\\ee4a\"}.ez-icon-shovel:before{content:\"\\ee4b\"}.ez-icon-show-list:before{content:\"\\ee4c\"}.ez-icon-show_menu:before{content:\"\\ee4d\"}.ez-icon-shrink:before{content:\"\\ee4e\"}.ez-icon-shuffle:before{content:\"\\ee4f\"}.ez-icon-shutter-alt:before{content:\"\\ee50\"}.ez-icon-shutter:before{content:\"\\ee51\"}.ez-icon-sick:before{content:\"\\ee52\"}.ez-icon-sigma:before{content:\"\\ee53\"}.ez-icon-sign-alt:before{content:\"\\ee54\"}.ez-icon-sign-in-alt:before{content:\"\\ee55\"}.ez-icon-sign-left:before{content:\"\\ee56\"}.ez-icon-sign-out-alt:before{content:\"\\ee57\"}.ez-icon-sign-right:before{content:\"\\ee58\"}.ez-icon-signal-alt-3:before{content:\"\\ee59\"}.ez-icon-signal-alt:before{content:\"\\ee5a\"}.ez-icon-signal:before{content:\"\\ee5b\"}.ez-icon-signin:before{content:\"\\ee5c\"}.ez-icon-signout:before{content:\"\\ee5d\"}.ez-icon-silence:before{content:\"\\ee5e\"}.ez-icon-silent-squint:before{content:\"\\ee5f\"}.ez-icon-sim-card:before{content:\"\\ee60\"}.ez-icon-sitemap:before{content:\"\\ee61\"}.ez-icon-skip-forward-alt:before{content:\"\\ee62\"}.ez-icon-skip-forward-circle:before{content:\"\\ee63\"}.ez-icon-skip-forward:before{content:\"\\ee64\"}.ez-icon-skype-alt:before{content:\"\\ee65\"}.ez-icon-skype:before{content:\"\\ee66\"}.ez-icon-slack-alt:before{content:\"\\ee67\"}.ez-icon-slack:before{content:\"\\ee68\"}.ez-icon-sleep:before{content:\"\\ee69\"}.ez-icon-slider-h-range:before{content:\"\\ee6a\"}.ez-icon-slider-h:before{content:\"\\ee6b\"}.ez-icon-sliders-v-alt:before{content:\"\\ee6c\"}.ez-icon-sliders-v:before{content:\"\\ee6d\"}.ez-icon-smile-beam:before{content:\"\\ee6e\"}.ez-icon-smile-dizzy:before{content:\"\\ee6f\"}.ez-icon-smile-squint-wink-alt:before{content:\"\\ee70\"}.ez-icon-smile-squint-wink:before{content:\"\\ee71\"}.ez-icon-smile-wink-alt:before{content:\"\\ee72\"}.ez-icon-smile-wink:before{content:\"\\ee73\"}.ez-icon-smile:before{content:\"\\ee74\"}.ez-icon-snapchat-alt:before{content:\"\\ee75\"}.ez-icon-snapchat-ghost:before{content:\"\\ee76\"}.ez-icon-snapchat-square:before{content:\"\\ee77\"}.ez-icon-snow-flake:before{content:\"\\ee78\"}.ez-icon-snowflake-alt:before{content:\"\\ee79\"}.ez-icon-snowflake:before{content:\"\\ee7a\"}.ez-icon-social-distancing:before{content:\"\\ee7b\"}.ez-icon-solid:before{content:\"\\ee7c\"}.ez-icon-sort-amount-down:before{content:\"\\ee7d\"}.ez-icon-sort-amount-up:before{content:\"\\ee7e\"}.ez-icon-sort:before{content:\"\\ee7f\"}.ez-icon-sorting:before{content:\"\\ee80\"}.ez-icon-south-east:before{content:\"\\ee81\"}.ez-icon-space-key:before{content:\"\\ee82\"}.ez-icon-spade:before{content:\"\\ee83\"}.ez-icon-sperms:before{content:\"\\ee84\"}.ez-icon-spin:before{content:\"\\ee85\"}.ez-icon-spinner-alt:before{content:\"\\ee86\"}.ez-icon-spinner:before{content:\"\\ee87\"}.ez-icon-square-full:before{content:\"\\ee88\"}.ez-icon-square-shape:before{content:\"\\ee89\"}.ez-icon-square:before{content:\"\\ee8a\"}.ez-icon-squint:before{content:\"\\ee8b\"}.ez-icon-star-half-alt:before{content:\"\\ee8c\"}.ez-icon-star:before{content:\"\\ee8d\"}.ez-icon-statistics:before{content:\"\\ee8e\"}.ez-icon-step-backward-alt:before{content:\"\\ee8f\"}.ez-icon-step-backward-circle:before{content:\"\\ee90\"}.ez-icon-step-backward:before{content:\"\\ee91\"}.ez-icon-step-forward:before{content:\"\\ee92\"}.ez-icon-stethoscope-alt:before{content:\"\\ee93\"}.ez-icon-stethoscope:before{content:\"\\ee94\"}.ez-icon-stop-circle:before{content:\"\\ee95\"}.ez-icon-stopwatch-slash:before{content:\"\\ee96\"}.ez-icon-stopwatch:before{content:\"\\ee97\"}.ez-icon-store-alt:before{content:\"\\ee98\"}.ez-icon-store-slash:before{content:\"\\ee99\"}.ez-icon-store:before{content:\"\\ee9a\"}.ez-icon-stretcher:before{content:\"\\ee9b\"}.ez-icon-stroller:before{content:\"\\ee9c\"}.ez-icon-subject:before{content:\"\\ee9d\"}.ez-icon-subway-alt:before{content:\"\\ee9e\"}.ez-icon-subway:before{content:\"\\ee9f\"}.ez-icon-suitcase-alt:before{content:\"\\eea0\"}.ez-icon-suitcase:before{content:\"\\eea1\"}.ez-icon-sun:before{content:\"\\eea2\"}.ez-icon-sunset:before{content:\"\\eea3\"}.ez-icon-surprise:before{content:\"\\eea4\"}.ez-icon-swatchbook:before{content:\"\\eea5\"}.ez-icon-swiggy:before{content:\"\\eea6\"}.ez-icon-swimmer:before{content:\"\\eea7\"}.ez-icon-sync-2:before{content:\"\\eea8\"}.ez-icon-sync-exclamation:before{content:\"\\eea9\"}.ez-icon-sync-slash:before{content:\"\\eeaa\"}.ez-icon-sync:before{content:\"\\eeab\"}.ez-icon-syringe:before{content:\"\\eeac\"}.ez-icon-table-2:before{content:\"\\eead\"}.ez-icon-table-tennis:before{content:\"\\eeae\"}.ez-icon-table:before{content:\"\\eeaf\"}.ez-icon-tablet:before{content:\"\\eeb0\"}.ez-icon-tablets:before{content:\"\\eeb1\"}.ez-icon-tachometer-fast-alt:before{content:\"\\eeb2\"}.ez-icon-tachometer-fast:before{content:\"\\eeb3\"}.ez-icon-tag-alt:before{content:\"\\eeb4\"}.ez-icon-tag:before{content:\"\\eeb5\"}.ez-icon-tag_code:before{content:\"\\eeb6\"}.ez-icon-tape:before{content:\"\\eeb7\"}.ez-icon-taxi:before{content:\"\\eeb8\"}.ez-icon-tear:before{content:\"\\eeb9\"}.ez-icon-telegram-alt:before{content:\"\\eeba\"}.ez-icon-telegram:before{content:\"\\eebb\"}.ez-icon-telescope:before{content:\"\\eebc\"}.ez-icon-temperature-empty:before{content:\"\\eebd\"}.ez-icon-temperature-half:before{content:\"\\eebe\"}.ez-icon-temperature-minus:before{content:\"\\eebf\"}.ez-icon-temperature-plus:before{content:\"\\eec0\"}.ez-icon-temperature-quarter:before{content:\"\\eec1\"}.ez-icon-temperature-three-quarter:before{content:\"\\eec2\"}.ez-icon-temperature:before{content:\"\\eec3\"}.ez-icon-tennis-ball:before{content:\"\\eec4\"}.ez-icon-text-2:before{content:\"\\eec5\"}.ez-icon-text-fields:before{content:\"\\eec6\"}.ez-icon-text-size:before{content:\"\\eec7\"}.ez-icon-text-strike-through:before{content:\"\\eec8\"}.ez-icon-text:before{content:\"\\eec9\"}.ez-icon-th-large:before{content:\"\\eeca\"}.ez-icon-th-slash:before{content:\"\\eecb\"}.ez-icon-th:before{content:\"\\eecc\"}.ez-icon-thermometer:before{content:\"\\eecd\"}.ez-icon-thumbs-down:before{content:\"\\eece\"}.ez-icon-thumbs-up:before{content:\"\\eecf\"}.ez-icon-thunderstorm-moon:before{content:\"\\eed0\"}.ez-icon-thunderstorm-sun:before{content:\"\\eed1\"}.ez-icon-thunderstorm:before{content:\"\\eed2\"}.ez-icon-ticket:before{content:\"\\eed3\"}.ez-icon-timeline:before{content:\"\\eed4\"}.ez-icon-timer-outline:before{content:\"\\eed5\"}.ez-icon-times-circle:before{content:\"\\eed6\"}.ez-icon-times-square:before{content:\"\\eed7\"}.ez-icon-times:before{content:\"\\eed8\"}.ez-icon-toggle-off:before{content:\"\\eed9\"}.ez-icon-toggle-on:before{content:\"\\eeda\"}.ez-icon-toilet-paper:before{content:\"\\eedb\"}.ez-icon-top-arrow-from-top:before{content:\"\\eedc\"}.ez-icon-top-arrow-to-top:before{content:\"\\eedd\"}.ez-icon-tornado:before{content:\"\\eede\"}.ez-icon-trademark-circle:before{content:\"\\eedf\"}.ez-icon-trademark:before{content:\"\\eee0\"}.ez-icon-traffic-barrier:before{content:\"\\eee1\"}.ez-icon-traffic-light:before{content:\"\\eee2\"}.ez-icon-transaction:before{content:\"\\eee3\"}.ez-icon-trash-alt:before{content:\"\\eee4\"}.ez-icon-trash:before{content:\"\\eee5\"}.ez-icon-trees:before{content:\"\\eee6\"}.ez-icon-trending-up:before{content:\"\\eee7\"}.ez-icon-triangle:before{content:\"\\eee8\"}.ez-icon-trophy:before{content:\"\\eee9\"}.ez-icon-trowel:before{content:\"\\eeea\"}.ez-icon-truck-loading:before{content:\"\\eeeb\"}.ez-icon-truck:before{content:\"\\eeec\"}.ez-icon-tumblr-alt:before{content:\"\\eeed\"}.ez-icon-tumblr-square:before{content:\"\\eeee\"}.ez-icon-tumblr:before{content:\"\\eeef\"}.ez-icon-tune:before{content:\"\\eef0\"}.ez-icon-tv-retro-slash:before{content:\"\\eef1\"}.ez-icon-tv-retro:before{content:\"\\eef2\"}.ez-icon-twitter-alt:before{content:\"\\eef3\"}.ez-icon-twitter:before{content:\"\\eef4\"}.ez-icon-txt:before{content:\"\\eef5\"}.ez-icon-umbrella:before{content:\"\\eef6\"}.ez-icon-un-pin:before{content:\"\\eef7\"}.ez-icon-unamused:before{content:\"\\eef8\"}.ez-icon-underline:before{content:\"\\eef9\"}.ez-icon-undo:before{content:\"\\eefa\"}.ez-icon-unfold_less:before{content:\"\\eefb\"}.ez-icon-unfold_more:before{content:\"\\eefc\"}.ez-icon-university:before{content:\"\\eefd\"}.ez-icon-unlock-alt:before{content:\"\\eefe\"}.ez-icon-unlock:before{content:\"\\eeff\"}.ez-icon-upload-alt:before{content:\"\\ef00\"}.ez-icon-upload:before{content:\"\\ef01\"}.ez-icon-usd-circle:before{content:\"\\ef02\"}.ez-icon-usd-square:before{content:\"\\ef03\"}.ez-icon-user-arrows:before{content:\"\\ef04\"}.ez-icon-user-check:before{content:\"\\ef05\"}.ez-icon-user-circle-2:before{content:\"\\ef06\"}.ez-icon-user-circle:before{content:\"\\ef07\"}.ez-icon-user-exclamation:before{content:\"\\ef08\"}.ez-icon-user-location:before{content:\"\\ef09\"}.ez-icon-user-md:before{content:\"\\ef0a\"}.ez-icon-user-minus:before{content:\"\\ef0b\"}.ez-icon-user-nurse:before{content:\"\\ef0c\"}.ez-icon-user-plus:before{content:\"\\ef0d\"}.ez-icon-user-square:before{content:\"\\ef0e\"}.ez-icon-user-times:before{content:\"\\ef0f\"}.ez-icon-user:before{content:\"\\ef10\"}.ez-icon-users-alt:before{content:\"\\ef11\"}.ez-icon-utensils-alt:before{content:\"\\ef12\"}.ez-icon-utensils:before{content:\"\\ef13\"}.ez-icon-vector-square-alt:before{content:\"\\ef14\"}.ez-icon-vector-square:before{content:\"\\ef15\"}.ez-icon-venus:before{content:\"\\ef16\"}.ez-icon-vertical-align-bottom:before{content:\"\\ef17\"}.ez-icon-vertical-align-center:before{content:\"\\ef18\"}.ez-icon-vertical-align-top:before{content:\"\\ef19\"}.ez-icon-vertical-distribute-bottom:before{content:\"\\ef1a\"}.ez-icon-vertical-distribution-center:before{content:\"\\ef1b\"}.ez-icon-vertical-distribution-top:before{content:\"\\ef1c\"}.ez-icon-video-question:before{content:\"\\ef1d\"}.ez-icon-video-slash:before{content:\"\\ef1e\"}.ez-icon-video:before{content:\"\\ef1f\"}.ez-icon-virus-slash:before{content:\"\\ef20\"}.ez-icon-visual-studio:before{content:\"\\ef21\"}.ez-icon-vk-alt:before{content:\"\\ef22\"}.ez-icon-vk:before{content:\"\\ef23\"}.ez-icon-voicemail-rectangle:before{content:\"\\ef24\"}.ez-icon-voicemail:before{content:\"\\ef25\"}.ez-icon-volume-down:before{content:\"\\ef26\"}.ez-icon-volume-mute:before{content:\"\\ef27\"}.ez-icon-volume-off:before{content:\"\\ef28\"}.ez-icon-volume-up:before{content:\"\\ef29\"}.ez-icon-volume:before{content:\"\\ef2a\"}.ez-icon-vuejs-alt:before{content:\"\\ef2b\"}.ez-icon-vuejs:before{content:\"\\ef2c\"}.ez-icon-wall:before{content:\"\\ef2d\"}.ez-icon-wallet:before{content:\"\\ef2e\"}.ez-icon-warning-outline:before{content:\"\\ef2f\"}.ez-icon-warning_triangle:before{content:\"\\ef30\"}.ez-icon-watch-alt:before{content:\"\\ef31\"}.ez-icon-watch:before{content:\"\\ef32\"}.ez-icon-water-drop-slash:before{content:\"\\ef33\"}.ez-icon-water-glass:before{content:\"\\ef34\"}.ez-icon-water:before{content:\"\\ef35\"}.ez-icon-web-grid-alt:before{content:\"\\ef36\"}.ez-icon-web-grid:before{content:\"\\ef37\"}.ez-icon-web-section-alt:before{content:\"\\ef38\"}.ez-icon-web-section:before{content:\"\\ef39\"}.ez-icon-webcam:before{content:\"\\ef3a\"}.ez-icon-weight:before{content:\"\\ef3b\"}.ez-icon-whatsapp-alt:before{content:\"\\ef3c\"}.ez-icon-whatsapp:before{content:\"\\ef3d\"}.ez-icon-whatshot:before{content:\"\\ef3e\"}.ez-icon-wheel-barrow:before{content:\"\\ef3f\"}.ez-icon-wheelchair-alt:before{content:\"\\ef40\"}.ez-icon-wheelchair:before{content:\"\\ef41\"}.ez-icon-wifi-router:before{content:\"\\ef42\"}.ez-icon-wifi-slash:before{content:\"\\ef43\"}.ez-icon-wifi:before{content:\"\\ef44\"}.ez-icon-wind-moon:before{content:\"\\ef45\"}.ez-icon-wind-sun:before{content:\"\\ef46\"}.ez-icon-wind:before{content:\"\\ef47\"}.ez-icon-window-grid:before{content:\"\\ef48\"}.ez-icon-window-maximize:before{content:\"\\ef49\"}.ez-icon-window-restore:before{content:\"\\ef4a\"}.ez-icon-window-section:before{content:\"\\ef4b\"}.ez-icon-window:before{content:\"\\ef4c\"}.ez-icon-windows:before{content:\"\\ef4d\"}.ez-icon-windsock:before{content:\"\\ef4e\"}.ez-icon-windy:before{content:\"\\ef4f\"}.ez-icon-wordpress-simple:before{content:\"\\ef50\"}.ez-icon-wordpress:before{content:\"\\ef51\"}.ez-icon-wrap-text:before{content:\"\\ef52\"}.ez-icon-wrench:before{content:\"\\ef53\"}.ez-icon-x-add:before{content:\"\\ef54\"}.ez-icon-x:before{content:\"\\ef55\"}.ez-icon-xlsx:before{content:\"\\ef56\"}.ez-icon-yen-circle:before{content:\"\\ef57\"}.ez-icon-yen:before{content:\"\\ef58\"}.ez-icon-yin-yang:before{content:\"\\ef59\"}.ez-icon-youtube:before{content:\"\\ef5a\"}.ez-icon-zip:before{content:\"\\ef5b\"}.x-small--font{font-size:var(--font-size--small, 12px);line-height:var(--line-height--16, 16px)}.small--font{font-size:var(--font-size--medium, 16px);line-height:var(--line-height--20, 20px)}.medium--font{font-size:var(--font-size--xlarge, 20px);line-height:var(--line-height--24, 24px)}.large--font{font-size:var(--font-size--xxxlarge, 24px);line-height:var(--line-height--28, 28px)}.x-large--font{font-size:var(--font-size--6xlarge, 30px);line-height:var(--line-height--34, 34px)}";
82209
+ const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;justify-content:center;--ez-icon--color:var(--icon--color, var(--color--gray-70, #ffffff))}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:var(--space--12, 12px);height:var(--space--12, 12px)}.small{width:var(--space--16, 16px);height:var(--space--16, 16px)}.medium{width:var(--space--20, 20px);height:var(--space--20, 20px)}.large{width:var(--space--24, 24px);height:var(--space--24, 24px)}.x-large{width:var(--space--30, 30px);height:var(--space--30, 30px)}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{color:var(--ez-icon--color)}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{font-family:'ez-icons' !important;font-size:var(--font-size--medium, 16px);font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ez-icon-0-plus:before{content:\"\\ea01\"}.ez-icon-10-plus:before{content:\"\\ea02\"}.ez-icon-12-plus:before{content:\"\\ea03\"}.ez-icon-13-plus:before{content:\"\\ea04\"}.ez-icon-16-plus:before{content:\"\\ea05\"}.ez-icon-17-plus:before{content:\"\\ea06\"}.ez-icon-18-plus:before{content:\"\\ea07\"}.ez-icon-21-plus:before{content:\"\\ea08\"}.ez-icon-2chevron-down:before{content:\"\\ea09\"}.ez-icon-2chevron-up:before{content:\"\\ea0a\"}.ez-icon-3-plus:before{content:\"\\ea0b\"}.ez-icon-500px:before{content:\"\\ea0c\"}.ez-icon-6-plus:before{content:\"\\ea0d\"}.ez-icon-abacus:before{content:\"\\ea0e\"}.ez-icon-acao:before{content:\"\\ea0f\"}.ez-icon-account-outline:before{content:\"\\ea10\"}.ez-icon-account:before{content:\"\\ea11\"}.ez-icon-add-to-cart:before{content:\"\\ea12\"}.ez-icon-adjust-alt:before{content:\"\\ea13\"}.ez-icon-adjust-circle:before{content:\"\\ea14\"}.ez-icon-adjust-half:before{content:\"\\ea15\"}.ez-icon-adjust:before{content:\"\\ea16\"}.ez-icon-adobe-alt:before{content:\"\\ea17\"}.ez-icon-adobe:before{content:\"\\ea18\"}.ez-icon-airplay:before{content:\"\\ea19\"}.ez-icon-alert-circle-inverted:before{content:\"\\ea1a\"}.ez-icon-alert-circle:before{content:\"\\ea1b\"}.ez-icon-alert-mail:before{content:\"\\ea1c\"}.ez-icon-alert-popup:before{content:\"\\ea1d\"}.ez-icon-align-alt:before{content:\"\\ea1e\"}.ez-icon-align-center-alt:before{content:\"\\ea1f\"}.ez-icon-align-center-h:before{content:\"\\ea20\"}.ez-icon-align-center-justify:before{content:\"\\ea21\"}.ez-icon-align-center-v:before{content:\"\\ea22\"}.ez-icon-align-center:before{content:\"\\ea23\"}.ez-icon-align-justify:before{content:\"\\ea24\"}.ez-icon-align-left-justify:before{content:\"\\ea25\"}.ez-icon-align-left:before{content:\"\\ea26\"}.ez-icon-align-letter-right:before{content:\"\\ea27\"}.ez-icon-align-right-justify:before{content:\"\\ea28\"}.ez-icon-align-right:before{content:\"\\ea29\"}.ez-icon-align:before{content:\"\\ea2a\"}.ez-icon-amazon:before{content:\"\\ea2b\"}.ez-icon-ambulance:before{content:\"\\ea2c\"}.ez-icon-analysis:before{content:\"\\ea2d\"}.ez-icon-analytics:before{content:\"\\ea2e\"}.ez-icon-anchor:before{content:\"\\ea2f\"}.ez-icon-android-alt:before{content:\"\\ea30\"}.ez-icon-android-phone-slash:before{content:\"\\ea31\"}.ez-icon-android:before{content:\"\\ea32\"}.ez-icon-anexo:before{content:\"\\ea33\"}.ez-icon-angle-double-down:before{content:\"\\ea34\"}.ez-icon-angle-double-left:before{content:\"\\ea35\"}.ez-icon-angle-double-right:before{content:\"\\ea36\"}.ez-icon-angle-double-up:before{content:\"\\ea37\"}.ez-icon-angle-down:before{content:\"\\ea38\"}.ez-icon-angle-left-b:before{content:\"\\ea39\"}.ez-icon-angle-left:before{content:\"\\ea3a\"}.ez-icon-angle-right-b:before{content:\"\\ea3b\"}.ez-icon-angle-right:before{content:\"\\ea3c\"}.ez-icon-angle-up:before{content:\"\\ea3d\"}.ez-icon-angry:before{content:\"\\ea3e\"}.ez-icon-ankh:before{content:\"\\ea3f\"}.ez-icon-annoyed-alt:before{content:\"\\ea40\"}.ez-icon-annoyed:before{content:\"\\ea41\"}.ez-icon-antecipação:before{content:\"\\ea42\"}.ez-icon-apple-alt:before{content:\"\\ea43\"}.ez-icon-apple:before{content:\"\\ea44\"}.ez-icon-apps-2:before{content:\"\\ea45\"}.ez-icon-apps:before{content:\"\\ea46\"}.ez-icon-archive-alt:before{content:\"\\ea47\"}.ez-icon-archive:before{content:\"\\ea48\"}.ez-icon-archway:before{content:\"\\ea49\"}.ez-icon-arrow-break:before{content:\"\\ea4a\"}.ez-icon-arrow-circle-down:before{content:\"\\ea4b\"}.ez-icon-arrow-circle-left:before{content:\"\\ea4c\"}.ez-icon-arrow-circle-right:before{content:\"\\ea4d\"}.ez-icon-arrow-circle-up:before{content:\"\\ea4e\"}.ez-icon-arrow-compress-h:before{content:\"\\ea4f\"}.ez-icon-arrow-down-left:before{content:\"\\ea50\"}.ez-icon-arrow-down-right:before{content:\"\\ea51\"}.ez-icon-arrow-down:before{content:\"\\ea52\"}.ez-icon-arrow-forward:before{content:\"\\ea53\"}.ez-icon-arrow-from-right:before{content:\"\\ea54\"}.ez-icon-arrow-from-top:before{content:\"\\ea55\"}.ez-icon-arrow-growth:before{content:\"\\ea56\"}.ez-icon-arrow-left:before{content:\"\\ea57\"}.ez-icon-arrow-random:before{content:\"\\ea58\"}.ez-icon-arrow-resize-diagonal:before{content:\"\\ea59\"}.ez-icon-arrow-right:before{content:\"\\ea5a\"}.ez-icon-arrow-to-bottom:before{content:\"\\ea5b\"}.ez-icon-arrow-to-right:before{content:\"\\ea5c\"}.ez-icon-arrow-up-left:before{content:\"\\ea5d\"}.ez-icon-arrow-up-right:before{content:\"\\ea5e\"}.ez-icon-arrow-up:before{content:\"\\ea5f\"}.ez-icon-arrow-upward:before{content:\"\\ea60\"}.ez-icon-arrow:before{content:\"\\ea61\"}.ez-icon-arrow_back:before{content:\"\\ea62\"}.ez-icon-arrow_downward:before{content:\"\\ea63\"}.ez-icon-arrows-h-alt:before{content:\"\\ea64\"}.ez-icon-arrows-h:before{content:\"\\ea65\"}.ez-icon-arrows-left-down:before{content:\"\\ea66\"}.ez-icon-arrows-maximize:before{content:\"\\ea67\"}.ez-icon-arrows-merge:before{content:\"\\ea68\"}.ez-icon-arrows-resize-h:before{content:\"\\ea69\"}.ez-icon-arrows-resize-v:before{content:\"\\ea6a\"}.ez-icon-arrows-resize:before{content:\"\\ea6b\"}.ez-icon-arrows-right-down:before{content:\"\\ea6c\"}.ez-icon-arrows-shrink-h:before{content:\"\\ea6d\"}.ez-icon-arrows-shrink-v:before{content:\"\\ea6e\"}.ez-icon-arrows-up-right:before{content:\"\\ea6f\"}.ez-icon-arrows-v-alt:before{content:\"\\ea70\"}.ez-icon-arrows-v:before{content:\"\\ea71\"}.ez-icon-assistive-listening-systems:before{content:\"\\ea72\"}.ez-icon-asterisk:before{content:\"\\ea73\"}.ez-icon-at:before{content:\"\\ea74\"}.ez-icon-atom:before{content:\"\\ea75\"}.ez-icon-auto-flash:before{content:\"\\ea76\"}.ez-icon-award-alt:before{content:\"\\ea77\"}.ez-icon-award:before{content:\"\\ea78\"}.ez-icon-baby-carriage:before{content:\"\\ea79\"}.ez-icon-backpack:before{content:\"\\ea7a\"}.ez-icon-backspace:before{content:\"\\ea7b\"}.ez-icon-backward:before{content:\"\\ea7c\"}.ez-icon-bag-alt:before{content:\"\\ea7d\"}.ez-icon-bag-slash:before{content:\"\\ea7e\"}.ez-icon-bag:before{content:\"\\ea7f\"}.ez-icon-baixa:before{content:\"\\ea80\"}.ez-icon-balance-scale:before{content:\"\\ea81\"}.ez-icon-balance:before{content:\"\\ea82\"}.ez-icon-ban:before{content:\"\\ea83\"}.ez-icon-band-aid:before{content:\"\\ea84\"}.ez-icon-bars:before{content:\"\\ea85\"}.ez-icon-baseball-ball:before{content:\"\\ea86\"}.ez-icon-basketball-hoop:before{content:\"\\ea87\"}.ez-icon-basketball:before{content:\"\\ea88\"}.ez-icon-bath:before{content:\"\\ea89\"}.ez-icon-battery-bolt:before{content:\"\\ea8a\"}.ez-icon-battery-empty:before{content:\"\\ea8b\"}.ez-icon-bed-double:before{content:\"\\ea8c\"}.ez-icon-bed:before{content:\"\\ea8d\"}.ez-icon-behance-alt:before{content:\"\\ea8e\"}.ez-icon-behance:before{content:\"\\ea8f\"}.ez-icon-bell-2:before{content:\"\\ea90\"}.ez-icon-bell-inverted:before{content:\"\\ea91\"}.ez-icon-bell-school:before{content:\"\\ea92\"}.ez-icon-bell-slash:before{content:\"\\ea93\"}.ez-icon-bell:before{content:\"\\ea94\"}.ez-icon-bill:before{content:\"\\ea95\"}.ez-icon-bing:before{content:\"\\ea96\"}.ez-icon-bitcoin-alt:before{content:\"\\ea97\"}.ez-icon-bitcoin-circle:before{content:\"\\ea98\"}.ez-icon-bitcoin-sign:before{content:\"\\ea99\"}.ez-icon-bitcoin:before{content:\"\\ea9a\"}.ez-icon-black-berry:before{content:\"\\ea9b\"}.ez-icon-blogger-alt:before{content:\"\\ea9c\"}.ez-icon-blogger:before{content:\"\\ea9d\"}.ez-icon-bluetooth-b:before{content:\"\\ea9e\"}.ez-icon-bold:before{content:\"\\ea9f\"}.ez-icon-boleto:before{content:\"\\eaa0\"}.ez-icon-bolt-alt:before{content:\"\\eaa1\"}.ez-icon-bolt-slash:before{content:\"\\eaa2\"}.ez-icon-bolt:before{content:\"\\eaa3\"}.ez-icon-book-alt:before{content:\"\\eaa4\"}.ez-icon-book-medical:before{content:\"\\eaa5\"}.ez-icon-book-open:before{content:\"\\eaa6\"}.ez-icon-book-reader:before{content:\"\\eaa7\"}.ez-icon-book:before{content:\"\\eaa8\"}.ez-icon-bookmark-full:before{content:\"\\eaa9\"}.ez-icon-bookmark:before{content:\"\\eaaa\"}.ez-icon-books:before{content:\"\\eaab\"}.ez-icon-boolean:before{content:\"\\eaac\"}.ez-icon-boombox:before{content:\"\\eaad\"}.ez-icon-border-alt:before{content:\"\\eaae\"}.ez-icon-border-bottom:before{content:\"\\eaaf\"}.ez-icon-border-clear:before{content:\"\\eab0\"}.ez-icon-border-horizontal:before{content:\"\\eab1\"}.ez-icon-border-inner:before{content:\"\\eab2\"}.ez-icon-border-left:before{content:\"\\eab3\"}.ez-icon-border-out:before{content:\"\\eab4\"}.ez-icon-border-right:before{content:\"\\eab5\"}.ez-icon-border-top:before{content:\"\\eab6\"}.ez-icon-border-vertical:before{content:\"\\eab7\"}.ez-icon-bowling-ball:before{content:\"\\eab8\"}.ez-icon-box:before{content:\"\\eab9\"}.ez-icon-brackets-curly:before{content:\"\\eaba\"}.ez-icon-brain:before{content:\"\\eabb\"}.ez-icon-briefcase-alt:before{content:\"\\eabc\"}.ez-icon-briefcase:before{content:\"\\eabd\"}.ez-icon-bright:before{content:\"\\eabe\"}.ez-icon-brightness-empty:before{content:\"\\eabf\"}.ez-icon-brightness-half:before{content:\"\\eac0\"}.ez-icon-brightness-low:before{content:\"\\eac1\"}.ez-icon-brightness-minus:before{content:\"\\eac2\"}.ez-icon-brightness-plus:before{content:\"\\eac3\"}.ez-icon-brightness:before{content:\"\\eac4\"}.ez-icon-bring-bottom:before{content:\"\\eac5\"}.ez-icon-bring-front:before{content:\"\\eac6\"}.ez-icon-browser:before{content:\"\\eac7\"}.ez-icon-brush-alt:before{content:\"\\eac8\"}.ez-icon-bug:before{content:\"\\eac9\"}.ez-icon-building:before{content:\"\\eaca\"}.ez-icon-bullseye:before{content:\"\\eacb\"}.ez-icon-bus-alt:before{content:\"\\eacc\"}.ez-icon-bus-school:before{content:\"\\eacd\"}.ez-icon-bus:before{content:\"\\eace\"}.ez-icon-business-center:before{content:\"\\eacf\"}.ez-icon-calculator-alt:before{content:\"\\ead0\"}.ez-icon-calculator:before{content:\"\\ead1\"}.ez-icon-calendar-2:before{content:\"\\ead2\"}.ez-icon-calendar-alt:before{content:\"\\ead3\"}.ez-icon-calendar-clock:before{content:\"\\ead4\"}.ez-icon-calendar-slash:before{content:\"\\ead5\"}.ez-icon-calendar:before{content:\"\\ead6\"}.ez-icon-calender:before{content:\"\\ead7\"}.ez-icon-calling:before{content:\"\\ead8\"}.ez-icon-camera-change:before{content:\"\\ead9\"}.ez-icon-camera-plus:before{content:\"\\eada\"}.ez-icon-camera-slash:before{content:\"\\eadb\"}.ez-icon-camera:before{content:\"\\eadc\"}.ez-icon-cancel:before{content:\"\\eadd\"}.ez-icon-capsule:before{content:\"\\eade\"}.ez-icon-capture:before{content:\"\\eadf\"}.ez-icon-car-sideview:before{content:\"\\eae0\"}.ez-icon-car-slash:before{content:\"\\eae1\"}.ez-icon-car-wash:before{content:\"\\eae2\"}.ez-icon-car:before{content:\"\\eae3\"}.ez-icon-card-atm:before{content:\"\\eae4\"}.ez-icon-caret-right:before{content:\"\\eae5\"}.ez-icon-cart-history:before{content:\"\\eae6\"}.ez-icon-cash-remove:before{content:\"\\eae7\"}.ez-icon-cell:before{content:\"\\eae8\"}.ez-icon-celsius:before{content:\"\\eae9\"}.ez-icon-channel-add:before{content:\"\\eaea\"}.ez-icon-channel:before{content:\"\\eaeb\"}.ez-icon-chart-bar-alt:before{content:\"\\eaec\"}.ez-icon-chart-bar:before{content:\"\\eaed\"}.ez-icon-chart-down:before{content:\"\\eaee\"}.ez-icon-chart-growth-alt:before{content:\"\\eaef\"}.ez-icon-chart-growth:before{content:\"\\eaf0\"}.ez-icon-chart-line:before{content:\"\\eaf1\"}.ez-icon-chart-pie-alt:before{content:\"\\eaf2\"}.ez-icon-chart-pie:before{content:\"\\eaf3\"}.ez-icon-chart:before{content:\"\\eaf4\"}.ez-icon-chat-bubble-user:before{content:\"\\eaf5\"}.ez-icon-chat-info:before{content:\"\\eaf6\"}.ez-icon-chat:before{content:\"\\eaf7\"}.ez-icon-check-2:before{content:\"\\eaf8\"}.ez-icon-check-circle-2:before{content:\"\\eaf9\"}.ez-icon-check-circle-inverted:before{content:\"\\eafa\"}.ez-icon-check-circle:before{content:\"\\eafb\"}.ez-icon-check-square:before{content:\"\\eafc\"}.ez-icon-check:before{content:\"\\eafd\"}.ez-icon-chevron-down:before{content:\"\\eafe\"}.ez-icon-chevron-left:before{content:\"\\eaff\"}.ez-icon-chevron-right:before{content:\"\\eb00\"}.ez-icon-chevron-up:before{content:\"\\eb01\"}.ez-icon-circle--medium:before{content:\"\\eb02\"}.ez-icon-circle-2:before{content:\"\\eb03\"}.ez-icon-circle-layer:before{content:\"\\eb04\"}.ez-icon-circle:before{content:\"\\eb05\"}.ez-icon-circuit:before{content:\"\\eb06\"}.ez-icon-clapper-board:before{content:\"\\eb07\"}.ez-icon-clean-cart:before{content:\"\\eb08\"}.ez-icon-cleaning:before{content:\"\\eb09\"}.ez-icon-clinic-medical:before{content:\"\\eb0a\"}.ez-icon-clipboard-2:before{content:\"\\eb0b\"}.ez-icon-clipboard-alt:before{content:\"\\eb0c\"}.ez-icon-clipboard-blank:before{content:\"\\eb0d\"}.ez-icon-clipboard-notes:before{content:\"\\eb0e\"}.ez-icon-clipboard:before{content:\"\\eb0f\"}.ez-icon-clock-eight:before{content:\"\\eb10\"}.ez-icon-clock-five:before{content:\"\\eb11\"}.ez-icon-clock-nine:before{content:\"\\eb12\"}.ez-icon-clock-rotate-left:before{content:\"\\eb13\"}.ez-icon-clock-seven:before{content:\"\\eb14\"}.ez-icon-clock-ten:before{content:\"\\eb15\"}.ez-icon-clock-three:before{content:\"\\eb16\"}.ez-icon-clock-two:before{content:\"\\eb17\"}.ez-icon-clock:before{content:\"\\eb18\"}.ez-icon-close:before{content:\"\\eb19\"}.ez-icon-closed-captioning-slash:before{content:\"\\eb1a\"}.ez-icon-closed-captioning:before{content:\"\\eb1b\"}.ez-icon-cloud-block:before{content:\"\\eb1c\"}.ez-icon-cloud-bookmark:before{content:\"\\eb1d\"}.ez-icon-cloud-check:before{content:\"\\eb1e\"}.ez-icon-cloud-computing:before{content:\"\\eb1f\"}.ez-icon-cloud-data-connection:before{content:\"\\eb20\"}.ez-icon-cloud-database-tree:before{content:\"\\eb21\"}.ez-icon-cloud-download:before{content:\"\\eb22\"}.ez-icon-cloud-drizzle:before{content:\"\\eb23\"}.ez-icon-cloud-exclamation:before{content:\"\\eb24\"}.ez-icon-cloud-hail:before{content:\"\\eb25\"}.ez-icon-cloud-heart:before{content:\"\\eb26\"}.ez-icon-cloud-info:before{content:\"\\eb27\"}.ez-icon-cloud-lock:before{content:\"\\eb28\"}.ez-icon-cloud-meatball:before{content:\"\\eb29\"}.ez-icon-cloud-moon-hail:before{content:\"\\eb2a\"}.ez-icon-cloud-moon-meatball:before{content:\"\\eb2b\"}.ez-icon-cloud-moon-rain:before{content:\"\\eb2c\"}.ez-icon-cloud-moon-showers:before{content:\"\\eb2d\"}.ez-icon-cloud-moon-tear:before{content:\"\\eb2e\"}.ez-icon-cloud-moon:before{content:\"\\eb2f\"}.ez-icon-cloud-question:before{content:\"\\eb30\"}.ez-icon-cloud-rain-sun:before{content:\"\\eb31\"}.ez-icon-cloud-rain:before{content:\"\\eb32\"}.ez-icon-cloud-redo:before{content:\"\\eb33\"}.ez-icon-cloud-share:before{content:\"\\eb34\"}.ez-icon-cloud-shield:before{content:\"\\eb35\"}.ez-icon-cloud-showers-alt:before{content:\"\\eb36\"}.ez-icon-cloud-showers-heavy:before{content:\"\\eb37\"}.ez-icon-cloud-showers:before{content:\"\\eb38\"}.ez-icon-cloud-slash:before{content:\"\\eb39\"}.ez-icon-cloud-sun-hail:before{content:\"\\eb3a\"}.ez-icon-cloud-sun-meatball:before{content:\"\\eb3b\"}.ez-icon-cloud-sun-rain-alt:before{content:\"\\eb3c\"}.ez-icon-cloud-sun-rain:before{content:\"\\eb3d\"}.ez-icon-cloud-sun-tear:before{content:\"\\eb3e\"}.ez-icon-cloud-sun:before{content:\"\\eb3f\"}.ez-icon-cloud-times:before{content:\"\\eb40\"}.ez-icon-cloud-unlock:before{content:\"\\eb41\"}.ez-icon-cloud-upload:before{content:\"\\eb42\"}.ez-icon-cloud-wifi:before{content:\"\\eb43\"}.ez-icon-cloud-wind:before{content:\"\\eb44\"}.ez-icon-cloud:before{content:\"\\eb45\"}.ez-icon-clouds:before{content:\"\\eb46\"}.ez-icon-club:before{content:\"\\eb47\"}.ez-icon-cobrar:before{content:\"\\eb48\"}.ez-icon-code-branch:before{content:\"\\eb49\"}.ez-icon-code:before{content:\"\\eb4a\"}.ez-icon-coffee:before{content:\"\\eb4b\"}.ez-icon-cog:before{content:\"\\eb4c\"}.ez-icon-coins:before{content:\"\\eb4d\"}.ez-icon-columns:before{content:\"\\eb4e\"}.ez-icon-comment-add:before{content:\"\\eb4f\"}.ez-icon-comment-alt-block:before{content:\"\\eb50\"}.ez-icon-comment-alt-chart-lines:before{content:\"\\eb51\"}.ez-icon-comment-alt-check:before{content:\"\\eb52\"}.ez-icon-comment-alt-dots:before{content:\"\\eb53\"}.ez-icon-comment-alt-download:before{content:\"\\eb54\"}.ez-icon-comment-alt-edit:before{content:\"\\eb55\"}.ez-icon-comment-alt-exclamation:before{content:\"\\eb56\"}.ez-icon-comment-alt-heart:before{content:\"\\eb57\"}.ez-icon-comment-alt-image:before{content:\"\\eb58\"}.ez-icon-comment-alt-info:before{content:\"\\eb59\"}.ez-icon-comment-alt-lines:before{content:\"\\eb5a\"}.ez-icon-comment-alt-lock:before{content:\"\\eb5b\"}.ez-icon-comment-alt-medical:before{content:\"\\eb5c\"}.ez-icon-comment-alt-message:before{content:\"\\eb5d\"}.ez-icon-comment-alt-notes:before{content:\"\\eb5e\"}.ez-icon-comment-alt-plus:before{content:\"\\eb5f\"}.ez-icon-comment-alt-question:before{content:\"\\eb60\"}.ez-icon-comment-alt-redo:before{content:\"\\eb61\"}.ez-icon-comment-alt-search:before{content:\"\\eb62\"}.ez-icon-comment-alt-share:before{content:\"\\eb63\"}.ez-icon-comment-alt-shield:before{content:\"\\eb64\"}.ez-icon-comment-alt-slash:before{content:\"\\eb65\"}.ez-icon-comment-alt-upload:before{content:\"\\eb66\"}.ez-icon-comment-alt-verify:before{content:\"\\eb67\"}.ez-icon-comment-alt:before{content:\"\\eb68\"}.ez-icon-comment-block:before{content:\"\\eb69\"}.ez-icon-comment-chart-line:before{content:\"\\eb6a\"}.ez-icon-comment-check:before{content:\"\\eb6b\"}.ez-icon-comment-dots:before{content:\"\\eb6c\"}.ez-icon-comment-download:before{content:\"\\eb6d\"}.ez-icon-comment-edit:before{content:\"\\eb6e\"}.ez-icon-comment-exclamation:before{content:\"\\eb6f\"}.ez-icon-comment-heart:before{content:\"\\eb70\"}.ez-icon-comment-image:before{content:\"\\eb71\"}.ez-icon-comment-info-alt:before{content:\"\\eb72\"}.ez-icon-comment-info:before{content:\"\\eb73\"}.ez-icon-comment-lines:before{content:\"\\eb74\"}.ez-icon-comment-lock:before{content:\"\\eb75\"}.ez-icon-comment-medical:before{content:\"\\eb76\"}.ez-icon-comment-message:before{content:\"\\eb77\"}.ez-icon-comment-notes:before{content:\"\\eb78\"}.ez-icon-comment-plus:before{content:\"\\eb79\"}.ez-icon-comment-question:before{content:\"\\eb7a\"}.ez-icon-comment-redo:before{content:\"\\eb7b\"}.ez-icon-comment-search:before{content:\"\\eb7c\"}.ez-icon-comment-share:before{content:\"\\eb7d\"}.ez-icon-comment-shield:before{content:\"\\eb7e\"}.ez-icon-comment-slash:before{content:\"\\eb7f\"}.ez-icon-comment-upload:before{content:\"\\eb80\"}.ez-icon-comment-verify:before{content:\"\\eb81\"}.ez-icon-comment:before{content:\"\\eb82\"}.ez-icon-comments-alt:before{content:\"\\eb83\"}.ez-icon-comments:before{content:\"\\eb84\"}.ez-icon-compact-disc:before{content:\"\\eb85\"}.ez-icon-comparison:before{content:\"\\eb86\"}.ez-icon-compass:before{content:\"\\eb87\"}.ez-icon-compress-alt-left:before{content:\"\\eb88\"}.ez-icon-compress-alt:before{content:\"\\eb89\"}.ez-icon-compress-arrows:before{content:\"\\eb8a\"}.ez-icon-compress-lines:before{content:\"\\eb8b\"}.ez-icon-compress-point:before{content:\"\\eb8c\"}.ez-icon-compress-v:before{content:\"\\eb8d\"}.ez-icon-compress:before{content:\"\\eb8e\"}.ez-icon-configuration:before{content:\"\\eb8f\"}.ez-icon-confused:before{content:\"\\eb90\"}.ez-icon-constructor:before{content:\"\\eb91\"}.ez-icon-content-cut:before{content:\"\\eb92\"}.ez-icon-copy-2:before{content:\"\\eb93\"}.ez-icon-copy-alt:before{content:\"\\eb94\"}.ez-icon-copy-landscape:before{content:\"\\eb95\"}.ez-icon-copy:before{content:\"\\eb96\"}.ez-icon-copyright:before{content:\"\\eb97\"}.ez-icon-corner-down-left:before{content:\"\\eb98\"}.ez-icon-corner-down-right-alt:before{content:\"\\eb99\"}.ez-icon-corner-down-right:before{content:\"\\eb9a\"}.ez-icon-corner-left-down:before{content:\"\\eb9b\"}.ez-icon-corner-right-down:before{content:\"\\eb9c\"}.ez-icon-corner-up-left-alt:before{content:\"\\eb9d\"}.ez-icon-corner-up-left:before{content:\"\\eb9e\"}.ez-icon-corner-up-right-alt:before{content:\"\\eb9f\"}.ez-icon-corner-up-right:before{content:\"\\eba0\"}.ez-icon-coronavirus:before{content:\"\\eba1\"}.ez-icon-create-dashboard:before{content:\"\\eba2\"}.ez-icon-creative-commons-pd:before{content:\"\\eba3\"}.ez-icon-credit-card-search:before{content:\"\\eba4\"}.ez-icon-credit-card:before{content:\"\\eba5\"}.ez-icon-credit_card:before{content:\"\\eba6\"}.ez-icon-crockery:before{content:\"\\eba7\"}.ez-icon-crop-alt-rotate-left:before{content:\"\\eba8\"}.ez-icon-crop-alt-rotate-right:before{content:\"\\eba9\"}.ez-icon-crop-alt:before{content:\"\\ebaa\"}.ez-icon-crop:before{content:\"\\ebab\"}.ez-icon-crosshair-alt:before{content:\"\\ebac\"}.ez-icon-crosshair:before{content:\"\\ebad\"}.ez-icon-crosshairs:before{content:\"\\ebae\"}.ez-icon-css3-simple:before{content:\"\\ebaf\"}.ez-icon-cube:before{content:\"\\ebb0\"}.ez-icon-custom:before{content:\"\\ebb1\"}.ez-icon-dashboard:before{content:\"\\ebb2\"}.ez-icon-data-sharing:before{content:\"\\ebb3\"}.ez-icon-database-alt:before{content:\"\\ebb4\"}.ez-icon-database:before{content:\"\\ebb5\"}.ez-icon-delete-file:before{content:\"\\ebb6\"}.ez-icon-delete:before{content:\"\\ebb7\"}.ez-icon-description:before{content:\"\\ebb8\"}.ez-icon-desert:before{content:\"\\ebb9\"}.ez-icon-desktop-alt-slash:before{content:\"\\ebba\"}.ez-icon-desktop-alt:before{content:\"\\ebbb\"}.ez-icon-desktop-cloud-alt:before{content:\"\\ebbc\"}.ez-icon-desktop-slash:before{content:\"\\ebbd\"}.ez-icon-desktop:before{content:\"\\ebbe\"}.ez-icon-dialpad-alt:before{content:\"\\ebbf\"}.ez-icon-dialpad:before{content:\"\\ebc0\"}.ez-icon-diamond:before{content:\"\\ebc1\"}.ez-icon-diary-alt:before{content:\"\\ebc2\"}.ez-icon-diary:before{content:\"\\ebc3\"}.ez-icon-dice-five:before{content:\"\\ebc4\"}.ez-icon-dice-four:before{content:\"\\ebc5\"}.ez-icon-dice-one:before{content:\"\\ebc6\"}.ez-icon-dice-six:before{content:\"\\ebc7\"}.ez-icon-dice-three:before{content:\"\\ebc8\"}.ez-icon-dice-two:before{content:\"\\ebc9\"}.ez-icon-direction:before{content:\"\\ebca\"}.ez-icon-directions:before{content:\"\\ebcb\"}.ez-icon-discord:before{content:\"\\ebcc\"}.ez-icon-dividir:before{content:\"\\ebcd\"}.ez-icon-dizzy-meh:before{content:\"\\ebce\"}.ez-icon-dna:before{content:\"\\ebcf\"}.ez-icon-docker:before{content:\"\\ebd0\"}.ez-icon-document-info:before{content:\"\\ebd1\"}.ez-icon-document-layout-center:before{content:\"\\ebd2\"}.ez-icon-document-layout-left:before{content:\"\\ebd3\"}.ez-icon-document-layout-right:before{content:\"\\ebd4\"}.ez-icon-docx:before{content:\"\\ebd5\"}.ez-icon-dollar-alt:before{content:\"\\ebd6\"}.ez-icon-dollar-sign-alt:before{content:\"\\ebd7\"}.ez-icon-dollar-sign:before{content:\"\\ebd8\"}.ez-icon-dot-notification:before{content:\"\\ebd9\"}.ez-icon-dots-horizontal:before{content:\"\\ebda\"}.ez-icon-dots-vertical:before{content:\"\\ebdb\"}.ez-icon-download-alt:before{content:\"\\ebdc\"}.ez-icon-drag-indicator:before{content:\"\\ebdd\"}.ez-icon-draggabledots:before{content:\"\\ebde\"}.ez-icon-dribbble:before{content:\"\\ebdf\"}.ez-icon-drill:before{content:\"\\ebe0\"}.ez-icon-dropbox:before{content:\"\\ebe1\"}.ez-icon-dual-chevron-down:before{content:\"\\ebe2\"}.ez-icon-dual-chevron-left:before{content:\"\\ebe3\"}.ez-icon-dual-chevron-right:before{content:\"\\ebe4\"}.ez-icon-dual-chevron-up:before{content:\"\\ebe5\"}.ez-icon-dumbbell:before{content:\"\\ebe6\"}.ez-icon-ear:before{content:\"\\ebe7\"}.ez-icon-edit-2:before{content:\"\\ebe8\"}.ez-icon-edit-alt:before{content:\"\\ebe9\"}.ez-icon-edit-file:before{content:\"\\ebea\"}.ez-icon-edit-table:before{content:\"\\ebeb\"}.ez-icon-edit-time:before{content:\"\\ebec\"}.ez-icon-edit-value:before{content:\"\\ebed\"}.ez-icon-edit:before{content:\"\\ebee\"}.ez-icon-elipsis-double-v-alt:before{content:\"\\ebef\"}.ez-icon-ellipsis-h:before{content:\"\\ebf0\"}.ez-icon-ellipsis-v:before{content:\"\\ebf1\"}.ez-icon-email:before{content:\"\\ebf2\"}.ez-icon-emoji:before{content:\"\\ebf3\"}.ez-icon-english-to-chinese:before{content:\"\\ebf4\"}.ez-icon-enter:before{content:\"\\ebf5\"}.ez-icon-envelope-add:before{content:\"\\ebf6\"}.ez-icon-envelope-alt:before{content:\"\\ebf7\"}.ez-icon-envelope-block:before{content:\"\\ebf8\"}.ez-icon-envelope-bookmark:before{content:\"\\ebf9\"}.ez-icon-envelope-check:before{content:\"\\ebfa\"}.ez-icon-envelope-download-alt:before{content:\"\\ebfb\"}.ez-icon-envelope-download:before{content:\"\\ebfc\"}.ez-icon-envelope-edit:before{content:\"\\ebfd\"}.ez-icon-envelope-exclamation:before{content:\"\\ebfe\"}.ez-icon-envelope-heart:before{content:\"\\ebff\"}.ez-icon-envelope-info:before{content:\"\\ec00\"}.ez-icon-envelope-lock:before{content:\"\\ec01\"}.ez-icon-envelope-minus:before{content:\"\\ec02\"}.ez-icon-envelope-open:before{content:\"\\ec03\"}.ez-icon-envelope-question:before{content:\"\\ec04\"}.ez-icon-envelope-receive:before{content:\"\\ec05\"}.ez-icon-envelope-redo:before{content:\"\\ec06\"}.ez-icon-envelope-search:before{content:\"\\ec07\"}.ez-icon-envelope-send:before{content:\"\\ec08\"}.ez-icon-envelope-share:before{content:\"\\ec09\"}.ez-icon-envelope-shield:before{content:\"\\ec0a\"}.ez-icon-envelope-star:before{content:\"\\ec0b\"}.ez-icon-envelope-times:before{content:\"\\ec0c\"}.ez-icon-envelope-upload-alt:before{content:\"\\ec0d\"}.ez-icon-envelope-upload:before{content:\"\\ec0e\"}.ez-icon-envelope:before{content:\"\\ec0f\"}.ez-icon-envelopes:before{content:\"\\ec10\"}.ez-icon-equal-circle:before{content:\"\\ec11\"}.ez-icon-estate:before{content:\"\\ec12\"}.ez-icon-estorno:before{content:\"\\ec13\"}.ez-icon-euro-circle:before{content:\"\\ec14\"}.ez-icon-euro:before{content:\"\\ec15\"}.ez-icon-exchange-alt:before{content:\"\\ec16\"}.ez-icon-exchange:before{content:\"\\ec17\"}.ez-icon-exclamation-circle:before{content:\"\\ec18\"}.ez-icon-exclamation-octagon:before{content:\"\\ec19\"}.ez-icon-exclamation-triangle:before{content:\"\\ec1a\"}.ez-icon-exclamation:before{content:\"\\ec1b\"}.ez-icon-exclude:before{content:\"\\ec1c\"}.ez-icon-exe:before{content:\"\\ec1d\"}.ez-icon-exit:before{content:\"\\ec1e\"}.ez-icon-expand-alt:before{content:\"\\ec1f\"}.ez-icon-expand-arrows-alt:before{content:\"\\ec20\"}.ez-icon-expand-arrows:before{content:\"\\ec21\"}.ez-icon-expand-from-corner:before{content:\"\\ec22\"}.ez-icon-expand-left:before{content:\"\\ec23\"}.ez-icon-expand-right:before{content:\"\\ec24\"}.ez-icon-expand:before{content:\"\\ec25\"}.ez-icon-expandir_card:before{content:\"\\ec26\"}.ez-icon-export:before{content:\"\\ec27\"}.ez-icon-exposure-alt:before{content:\"\\ec28\"}.ez-icon-exposure-increase:before{content:\"\\ec29\"}.ez-icon-external-link-alt:before{content:\"\\ec2a\"}.ez-icon-extrato:before{content:\"\\ec2b\"}.ez-icon-eye-2:before{content:\"\\ec2c\"}.ez-icon-eye-off:before{content:\"\\ec2d\"}.ez-icon-eye-slash:before{content:\"\\ec2e\"}.ez-icon-eye:before{content:\"\\ec2f\"}.ez-icon-facebook-f:before{content:\"\\ec30\"}.ez-icon-facebook-messenger-alt:before{content:\"\\ec31\"}.ez-icon-facebook-messenger:before{content:\"\\ec32\"}.ez-icon-facebook:before{content:\"\\ec33\"}.ez-icon-fahrenheit:before{content:\"\\ec34\"}.ez-icon-fast-mail-alt:before{content:\"\\ec35\"}.ez-icon-fast-mail:before{content:\"\\ec36\"}.ez-icon-favorite-2:before{content:\"\\ec37\"}.ez-icon-favorite:before{content:\"\\ec38\"}.ez-icon-feedback:before{content:\"\\ec39\"}.ez-icon-fidget-spinner:before{content:\"\\ec3a\"}.ez-icon-figma:before{content:\"\\ec3b\"}.ez-icon-file-alt:before{content:\"\\ec3c\"}.ez-icon-file-blank:before{content:\"\\ec3d\"}.ez-icon-file-block-alt:before{content:\"\\ec3e\"}.ez-icon-file-bookmark-alt:before{content:\"\\ec3f\"}.ez-icon-file-check-alt:before{content:\"\\ec40\"}.ez-icon-file-check:before{content:\"\\ec41\"}.ez-icon-file-contract-dollar:before{content:\"\\ec42\"}.ez-icon-file-contract:before{content:\"\\ec43\"}.ez-icon-file-copy-alt:before{content:\"\\ec44\"}.ez-icon-file-download-:before{content:\"\\ec45\"}.ez-icon-file-download-alt:before{content:\"\\ec46\"}.ez-icon-file-download:before{content:\"\\ec47\"}.ez-icon-file-edit-alt:before{content:\"\\ec48\"}.ez-icon-file-exclamation-alt:before{content:\"\\ec49\"}.ez-icon-file-exclamation:before{content:\"\\ec4a\"}.ez-icon-file-export:before{content:\"\\ec4b\"}.ez-icon-file-graph:before{content:\"\\ec4c\"}.ez-icon-file-heart:before{content:\"\\ec4d\"}.ez-icon-file-import:before{content:\"\\ec4e\"}.ez-icon-file-info-alt:before{content:\"\\ec4f\"}.ez-icon-file-landscape-alt:before{content:\"\\ec50\"}.ez-icon-file-landscape:before{content:\"\\ec51\"}.ez-icon-file-lanscape-slash:before{content:\"\\ec52\"}.ez-icon-file-lock-alt:before{content:\"\\ec53\"}.ez-icon-file-medical-alt:before{content:\"\\ec54\"}.ez-icon-file-medical:before{content:\"\\ec55\"}.ez-icon-file-minus-alt:before{content:\"\\ec56\"}.ez-icon-file-minus:before{content:\"\\ec57\"}.ez-icon-file-network:before{content:\"\\ec58\"}.ez-icon-file-plus-alt:before{content:\"\\ec59\"}.ez-icon-file-plus:before{content:\"\\ec5a\"}.ez-icon-file-question-alt:before{content:\"\\ec5b\"}.ez-icon-file-question:before{content:\"\\ec5c\"}.ez-icon-file-redo-alt:before{content:\"\\ec5d\"}.ez-icon-file-search-alt:before{content:\"\\ec5e\"}.ez-icon-file-share-alt:before{content:\"\\ec5f\"}.ez-icon-file-shield-alt:before{content:\"\\ec60\"}.ez-icon-file-slash:before{content:\"\\ec61\"}.ez-icon-file-times-alt:before{content:\"\\ec62\"}.ez-icon-file-times:before{content:\"\\ec63\"}.ez-icon-file-upload-2:before{content:\"\\ec64\"}.ez-icon-file-upload-alt:before{content:\"\\ec65\"}.ez-icon-file-upload:before{content:\"\\ec66\"}.ez-icon-file:before{content:\"\\ec67\"}.ez-icon-files-landscapes-alt:before{content:\"\\ec68\"}.ez-icon-files-landscapes:before{content:\"\\ec69\"}.ez-icon-film:before{content:\"\\ec6a\"}.ez-icon-filter-2:before{content:\"\\ec6b\"}.ez-icon-filter-slash:before{content:\"\\ec6c\"}.ez-icon-filter:before{content:\"\\ec6d\"}.ez-icon-find-file:before{content:\"\\ec6e\"}.ez-icon-find-page:before{content:\"\\ec6f\"}.ez-icon-fire:before{content:\"\\ec70\"}.ez-icon-flask-potion:before{content:\"\\ec71\"}.ez-icon-flask:before{content:\"\\ec72\"}.ez-icon-flip-h-alt:before{content:\"\\ec73\"}.ez-icon-flip-h:before{content:\"\\ec74\"}.ez-icon-flip-v-alt:before{content:\"\\ec75\"}.ez-icon-flip-v:before{content:\"\\ec76\"}.ez-icon-flower:before{content:\"\\ec77\"}.ez-icon-focus-add:before{content:\"\\ec78\"}.ez-icon-focus-target:before{content:\"\\ec79\"}.ez-icon-focus:before{content:\"\\ec7a\"}.ez-icon-folder-check:before{content:\"\\ec7b\"}.ez-icon-folder-download:before{content:\"\\ec7c\"}.ez-icon-folder-exclamation:before{content:\"\\ec7d\"}.ez-icon-folder-heart:before{content:\"\\ec7e\"}.ez-icon-folder-info:before{content:\"\\ec7f\"}.ez-icon-folder-lock:before{content:\"\\ec80\"}.ez-icon-folder-medical:before{content:\"\\ec81\"}.ez-icon-folder-minus:before{content:\"\\ec82\"}.ez-icon-folder-network:before{content:\"\\ec83\"}.ez-icon-folder-open:before{content:\"\\ec84\"}.ez-icon-folder-plus:before{content:\"\\ec85\"}.ez-icon-folder-question:before{content:\"\\ec86\"}.ez-icon-folder-slash:before{content:\"\\ec87\"}.ez-icon-folder-times:before{content:\"\\ec88\"}.ez-icon-folder-upload:before{content:\"\\ec89\"}.ez-icon-folder:before{content:\"\\ec8a\"}.ez-icon-font:before{content:\"\\ec8b\"}.ez-icon-football-american:before{content:\"\\ec8c\"}.ez-icon-football-ball:before{content:\"\\ec8d\"}.ez-icon-football:before{content:\"\\ec8e\"}.ez-icon-forecastcloud-moon-tear:before{content:\"\\ec8f\"}.ez-icon-format-color-fill:before{content:\"\\ec90\"}.ez-icon-forwaded-call:before{content:\"\\ec91\"}.ez-icon-forward:before{content:\"\\ec92\"}.ez-icon-frown:before{content:\"\\ec93\"}.ez-icon-game-structure:before{content:\"\\ec94\"}.ez-icon-generic:before{content:\"\\ec95\"}.ez-icon-gif:before{content:\"\\ec96\"}.ez-icon-gift:before{content:\"\\ec97\"}.ez-icon-github-alt:before{content:\"\\ec98\"}.ez-icon-github:before{content:\"\\ec99\"}.ez-icon-gitlab:before{content:\"\\ec9a\"}.ez-icon-glass-martini-alt-slash:before{content:\"\\ec9b\"}.ez-icon-glass-martini-alt:before{content:\"\\ec9c\"}.ez-icon-glass-martini:before{content:\"\\ec9d\"}.ez-icon-glass-tea:before{content:\"\\ec9e\"}.ez-icon-glass:before{content:\"\\ec9f\"}.ez-icon-globe:before{content:\"\\eca0\"}.ez-icon-gold:before{content:\"\\eca1\"}.ez-icon-golf-ball:before{content:\"\\eca2\"}.ez-icon-google-drive-alt:before{content:\"\\eca3\"}.ez-icon-google-drive:before{content:\"\\eca4\"}.ez-icon-google-hangouts-alt:before{content:\"\\eca5\"}.ez-icon-google-hangouts:before{content:\"\\eca6\"}.ez-icon-google-play:before{content:\"\\eca7\"}.ez-icon-google:before{content:\"\\eca8\"}.ez-icon-graduation-cap:before{content:\"\\eca9\"}.ez-icon-graph-bar:before{content:\"\\ecaa\"}.ez-icon-graph_bar:before{content:\"\\ecab\"}.ez-icon-grid:before{content:\"\\ecac\"}.ez-icon-grids:before{content:\"\\ecad\"}.ez-icon-grin-tongue-wink-alt:before{content:\"\\ecae\"}.ez-icon-grin-tongue-wink:before{content:\"\\ecaf\"}.ez-icon-grin:before{content:\"\\ecb0\"}.ez-icon-grip-horizontal-line:before{content:\"\\ecb1\"}.ez-icon-handshake:before{content:\"\\ecb2\"}.ez-icon-hard-hat:before{content:\"\\ecb3\"}.ez-icon-head-side-cough:before{content:\"\\ecb4\"}.ez-icon-head-side-mask:before{content:\"\\ecb5\"}.ez-icon-head-side:before{content:\"\\ecb6\"}.ez-icon-headphone-slash:before{content:\"\\ecb7\"}.ez-icon-headphones-alt:before{content:\"\\ecb8\"}.ez-icon-headphones:before{content:\"\\ecb9\"}.ez-icon-heart-alt:before{content:\"\\ecba\"}.ez-icon-heart-break:before{content:\"\\ecbb\"}.ez-icon-heart-medical:before{content:\"\\ecbc\"}.ez-icon-heart-rate:before{content:\"\\ecbd\"}.ez-icon-heart-sign:before{content:\"\\ecbe\"}.ez-icon-heart:before{content:\"\\ecbf\"}.ez-icon-heartbeat:before{content:\"\\ecc0\"}.ez-icon-help-inverted:before{content:\"\\ecc1\"}.ez-icon-help:before{content:\"\\ecc2\"}.ez-icon-hide-list:before{content:\"\\ecc3\"}.ez-icon-hide_menu:before{content:\"\\ecc4\"}.ez-icon-hierarchical-tree:before{content:\"\\ecc5\"}.ez-icon-hindi-to-chinese:before{content:\"\\ecc6\"}.ez-icon-hipchat:before{content:\"\\ecc7\"}.ez-icon-history-alt:before{content:\"\\ecc8\"}.ez-icon-history:before{content:\"\\ecc9\"}.ez-icon-home-2:before{content:\"\\ecca\"}.ez-icon-home-alt:before{content:\"\\eccb\"}.ez-icon-home:before{content:\"\\eccc\"}.ez-icon-horizontal-align-center:before{content:\"\\eccd\"}.ez-icon-horizontal-align-left:before{content:\"\\ecce\"}.ez-icon-horizontal-align-right:before{content:\"\\eccf\"}.ez-icon-horizontal-distribution-center:before{content:\"\\ecd0\"}.ez-icon-horizontal-distribution-left:before{content:\"\\ecd1\"}.ez-icon-horizontal-distribution-right:before{content:\"\\ecd2\"}.ez-icon-hospital-square-sign:before{content:\"\\ecd3\"}.ez-icon-hospital-symbol:before{content:\"\\ecd4\"}.ez-icon-hospital:before{content:\"\\ecd5\"}.ez-icon-hourglass:before{content:\"\\ecd6\"}.ez-icon-house-user:before{content:\"\\ecd7\"}.ez-icon-html3-alt:before{content:\"\\ecd8\"}.ez-icon-html3:before{content:\"\\ecd9\"}.ez-icon-html5-alt:before{content:\"\\ecda\"}.ez-icon-html5:before{content:\"\\ecdb\"}.ez-icon-hunting:before{content:\"\\ecdc\"}.ez-icon-icons:before{content:\"\\ecdd\"}.ez-icon-icons104:before{content:\"\\ecde\"}.ez-icon-illustration:before{content:\"\\ecdf\"}.ez-icon-image-alt-slash:before{content:\"\\ece0\"}.ez-icon-image-block:before{content:\"\\ece1\"}.ez-icon-image-broken:before{content:\"\\ece2\"}.ez-icon-image-check:before{content:\"\\ece3\"}.ez-icon-image-download:before{content:\"\\ece4\"}.ez-icon-image-edit:before{content:\"\\ece5\"}.ez-icon-image-lock:before{content:\"\\ece6\"}.ez-icon-image-minus:before{content:\"\\ece7\"}.ez-icon-image-plus:before{content:\"\\ece8\"}.ez-icon-image-question:before{content:\"\\ece9\"}.ez-icon-image-redo:before{content:\"\\ecea\"}.ez-icon-image-resize-landscape:before{content:\"\\eceb\"}.ez-icon-image-resize-square:before{content:\"\\ecec\"}.ez-icon-image-search:before{content:\"\\eced\"}.ez-icon-image-share:before{content:\"\\ecee\"}.ez-icon-image-shield:before{content:\"\\ecef\"}.ez-icon-image-slash:before{content:\"\\ecf0\"}.ez-icon-image-times:before{content:\"\\ecf1\"}.ez-icon-image-upload:before{content:\"\\ecf2\"}.ez-icon-image-v:before{content:\"\\ecf3\"}.ez-icon-image:before{content:\"\\ecf4\"}.ez-icon-images:before{content:\"\\ecf5\"}.ez-icon-import:before{content:\"\\ecf6\"}.ez-icon-inbox:before{content:\"\\ecf7\"}.ez-icon-incoming-call:before{content:\"\\ecf8\"}.ez-icon-info-circle:before{content:\"\\ecf9\"}.ez-icon-info:before{content:\"\\ecfa\"}.ez-icon-instagram-alt:before{content:\"\\ecfb\"}.ez-icon-instagram:before{content:\"\\ecfc\"}.ez-icon-intercom-alt:before{content:\"\\ecfd\"}.ez-icon-intercom:before{content:\"\\ecfe\"}.ez-icon-invoice:before{content:\"\\ecff\"}.ez-icon-italic:before{content:\"\\ed00\"}.ez-icon-jackhammer:before{content:\"\\ed01\"}.ez-icon-java-script:before{content:\"\\ed02\"}.ez-icon-kayak:before{content:\"\\ed03\"}.ez-icon-key-skeleton-alt:before{content:\"\\ed04\"}.ez-icon-key-skeleton:before{content:\"\\ed05\"}.ez-icon-keyboard-alt:before{content:\"\\ed06\"}.ez-icon-keyboard-hide:before{content:\"\\ed07\"}.ez-icon-keyboard-show:before{content:\"\\ed08\"}.ez-icon-keyboard:before{content:\"\\ed09\"}.ez-icon-keyhole-circle:before{content:\"\\ed0a\"}.ez-icon-keyhole-square-full:before{content:\"\\ed0b\"}.ez-icon-keyhole-square:before{content:\"\\ed0c\"}.ez-icon-kid:before{content:\"\\ed0d\"}.ez-icon-label-alt:before{content:\"\\ed0e\"}.ez-icon-label:before{content:\"\\ed0f\"}.ez-icon-lamp:before{content:\"\\ed10\"}.ez-icon-language-2:before{content:\"\\ed11\"}.ez-icon-language:before{content:\"\\ed12\"}.ez-icon-laptop-cloud:before{content:\"\\ed13\"}.ez-icon-laptop-connection:before{content:\"\\ed14\"}.ez-icon-laptop:before{content:\"\\ed15\"}.ez-icon-laughing:before{content:\"\\ed16\"}.ez-icon-launch:before{content:\"\\ed17\"}.ez-icon-layer-group-slash:before{content:\"\\ed18\"}.ez-icon-layer-group:before{content:\"\\ed19\"}.ez-icon-layers-alt:before{content:\"\\ed1a\"}.ez-icon-layers-slash:before{content:\"\\ed1b\"}.ez-icon-layers:before{content:\"\\ed1c\"}.ez-icon-left-arrow-from-left:before{content:\"\\ed1d\"}.ez-icon-left-arrow-to-left:before{content:\"\\ed1e\"}.ez-icon-left-indent-alt:before{content:\"\\ed1f\"}.ez-icon-left-indent:before{content:\"\\ed20\"}.ez-icon-left-to-right-text-direction:before{content:\"\\ed21\"}.ez-icon-left:before{content:\"\\ed22\"}.ez-icon-letter-chinese-a:before{content:\"\\ed23\"}.ez-icon-letter-english-a:before{content:\"\\ed24\"}.ez-icon-letter-hindi-a:before{content:\"\\ed25\"}.ez-icon-letter-japanese-a:before{content:\"\\ed26\"}.ez-icon-life-ring:before{content:\"\\ed27\"}.ez-icon-lightbulb-2:before{content:\"\\ed28\"}.ez-icon-lightbulb-alt:before{content:\"\\ed29\"}.ez-icon-lightbulb:before{content:\"\\ed2a\"}.ez-icon-line-alt:before{content:\"\\ed2b\"}.ez-icon-line-spacing:before{content:\"\\ed2c\"}.ez-icon-line:before{content:\"\\ed2d\"}.ez-icon-link-add:before{content:\"\\ed2e\"}.ez-icon-link-alt:before{content:\"\\ed2f\"}.ez-icon-link-broken:before{content:\"\\ed30\"}.ez-icon-link-h:before{content:\"\\ed31\"}.ez-icon-link:before{content:\"\\ed32\"}.ez-icon-linkedin-alt:before{content:\"\\ed33\"}.ez-icon-linkedin:before{content:\"\\ed34\"}.ez-icon-linux:before{content:\"\\ed35\"}.ez-icon-lira-sign:before{content:\"\\ed36\"}.ez-icon-list-ol-alt:before{content:\"\\ed37\"}.ez-icon-list-ol:before{content:\"\\ed38\"}.ez-icon-list-ui-alt:before{content:\"\\ed39\"}.ez-icon-list-ul:before{content:\"\\ed3a\"}.ez-icon-list:before{content:\"\\ed3b\"}.ez-icon-location-arrow-alt:before{content:\"\\ed3c\"}.ez-icon-location-arrow:before{content:\"\\ed3d\"}.ez-icon-location-pin-alt:before{content:\"\\ed3e\"}.ez-icon-location-point:before{content:\"\\ed3f\"}.ez-icon-location:before{content:\"\\ed40\"}.ez-icon-lock-2:before{content:\"\\ed41\"}.ez-icon-lock-access:before{content:\"\\ed42\"}.ez-icon-lock-alt:before{content:\"\\ed43\"}.ez-icon-lock-open-alt:before{content:\"\\ed44\"}.ez-icon-lock-outline:before{content:\"\\ed45\"}.ez-icon-lock-slash:before{content:\"\\ed46\"}.ez-icon-lock:before{content:\"\\ed47\"}.ez-icon-lottiefiles-alt:before{content:\"\\ed48\"}.ez-icon-lottiefiles:before{content:\"\\ed49\"}.ez-icon-luggage-cart:before{content:\"\\ed4a\"}.ez-icon-mailbox-alt:before{content:\"\\ed4b\"}.ez-icon-mailbox:before{content:\"\\ed4c\"}.ez-icon-map-marker-alt:before{content:\"\\ed4d\"}.ez-icon-map-marker-edit:before{content:\"\\ed4e\"}.ez-icon-map-marker-info:before{content:\"\\ed4f\"}.ez-icon-map-marker-minus:before{content:\"\\ed50\"}.ez-icon-map-marker-plus:before{content:\"\\ed51\"}.ez-icon-map-marker-question:before{content:\"\\ed52\"}.ez-icon-map-marker-shield:before{content:\"\\ed53\"}.ez-icon-map-marker-slash:before{content:\"\\ed54\"}.ez-icon-map-marker:before{content:\"\\ed55\"}.ez-icon-map-pin-alt:before{content:\"\\ed56\"}.ez-icon-map-pin:before{content:\"\\ed57\"}.ez-icon-map:before{content:\"\\ed58\"}.ez-icon-mars:before{content:\"\\ed59\"}.ez-icon-master-card:before{content:\"\\ed5a\"}.ez-icon-maximize-left:before{content:\"\\ed5b\"}.ez-icon-medal:before{content:\"\\ed5c\"}.ez-icon-medical-drip:before{content:\"\\ed5d\"}.ez-icon-medical-square-full:before{content:\"\\ed5e\"}.ez-icon-medical-square:before{content:\"\\ed5f\"}.ez-icon-medium-m:before{content:\"\\ed60\"}.ez-icon-medkit:before{content:\"\\ed61\"}.ez-icon-meeting-board:before{content:\"\\ed62\"}.ez-icon-megaphone:before{content:\"\\ed63\"}.ez-icon-meh-alt:before{content:\"\\ed64\"}.ez-icon-meh-closed-eye:before{content:\"\\ed65\"}.ez-icon-meh:before{content:\"\\ed66\"}.ez-icon-menu:before{content:\"\\ed67\"}.ez-icon-message:before{content:\"\\ed68\"}.ez-icon-metro:before{content:\"\\ed69\"}.ez-icon-microphone-slash:before{content:\"\\ed6a\"}.ez-icon-microphone:before{content:\"\\ed6b\"}.ez-icon-microscope:before{content:\"\\ed6c\"}.ez-icon-microsoft:before{content:\"\\ed6d\"}.ez-icon-mid:before{content:\"\\ed6e\"}.ez-icon-minus-2:before{content:\"\\ed6f\"}.ez-icon-minus-circle:before{content:\"\\ed70\"}.ez-icon-minus-path:before{content:\"\\ed71\"}.ez-icon-minus-square-full:before{content:\"\\ed72\"}.ez-icon-minus-square:before{content:\"\\ed73\"}.ez-icon-minus:before{content:\"\\ed74\"}.ez-icon-missed-call:before{content:\"\\ed75\"}.ez-icon-mobile-android-alt:before{content:\"\\ed76\"}.ez-icon-mobile-android:before{content:\"\\ed77\"}.ez-icon-mobile-vibrate:before{content:\"\\ed78\"}.ez-icon-modem:before{content:\"\\ed79\"}.ez-icon-money-bill-slash:before{content:\"\\ed7a\"}.ez-icon-money-bill-stack:before{content:\"\\ed7b\"}.ez-icon-money-bill:before{content:\"\\ed7c\"}.ez-icon-money-insert:before{content:\"\\ed7d\"}.ez-icon-money-off:before{content:\"\\ed7e\"}.ez-icon-money-stack:before{content:\"\\ed7f\"}.ez-icon-money-withdraw:before{content:\"\\ed80\"}.ez-icon-money-withdrawal:before{content:\"\\ed81\"}.ez-icon-money:before{content:\"\\ed82\"}.ez-icon-moneybag-alt:before{content:\"\\ed83\"}.ez-icon-moneybag:before{content:\"\\ed84\"}.ez-icon-monitor-heart-rate:before{content:\"\\ed85\"}.ez-icon-monitor:before{content:\"\\ed86\"}.ez-icon-moon-eclipse:before{content:\"\\ed87\"}.ez-icon-moon:before{content:\"\\ed88\"}.ez-icon-moonset:before{content:\"\\ed89\"}.ez-icon-more:before{content:\"\\ed8a\"}.ez-icon-mountains-sun:before{content:\"\\ed8b\"}.ez-icon-mountains:before{content:\"\\ed8c\"}.ez-icon-mouse-alt-2:before{content:\"\\ed8d\"}.ez-icon-mouse-alt:before{content:\"\\ed8e\"}.ez-icon-mouse:before{content:\"\\ed8f\"}.ez-icon-mp3:before{content:\"\\ed90\"}.ez-icon-mp4:before{content:\"\\ed91\"}.ez-icon-multiple-files:before{content:\"\\ed92\"}.ez-icon-multiply:before{content:\"\\ed93\"}.ez-icon-music-note:before{content:\"\\ed94\"}.ez-icon-music-tune-slash:before{content:\"\\ed95\"}.ez-icon-music:before{content:\"\\ed96\"}.ez-icon-n-a:before{content:\"\\ed97\"}.ez-icon-navigator:before{content:\"\\ed98\"}.ez-icon-nerd:before{content:\"\\ed99\"}.ez-icon-newspaper:before{content:\"\\ed9a\"}.ez-icon-ninja:before{content:\"\\ed9b\"}.ez-icon-no-entry:before{content:\"\\ed9c\"}.ez-icon-north-west:before{content:\"\\ed9d\"}.ez-icon-notebooks:before{content:\"\\ed9e\"}.ez-icon-notes:before{content:\"\\ed9f\"}.ez-icon-number:before{content:\"\\eda0\"}.ez-icon-object-group:before{content:\"\\eda1\"}.ez-icon-object-ungroup:before{content:\"\\eda2\"}.ez-icon-octagon:before{content:\"\\eda3\"}.ez-icon-okta:before{content:\"\\eda4\"}.ez-icon-opera-alt:before{content:\"\\eda5\"}.ez-icon-opera:before{content:\"\\eda6\"}.ez-icon-ordem-ascendente:before{content:\"\\eda7\"}.ez-icon-ordem-descendente:before{content:\"\\eda8\"}.ez-icon-outgoing-call:before{content:\"\\eda9\"}.ez-icon-package:before{content:\"\\edaa\"}.ez-icon-padlock:before{content:\"\\edab\"}.ez-icon-pagelines:before{content:\"\\edac\"}.ez-icon-pagerduty:before{content:\"\\edad\"}.ez-icon-paint-tool:before{content:\"\\edae\"}.ez-icon-palette:before{content:\"\\edaf\"}.ez-icon-panel-add:before{content:\"\\edb0\"}.ez-icon-panorama-h-alt:before{content:\"\\edb1\"}.ez-icon-panorama-h:before{content:\"\\edb2\"}.ez-icon-panorama-v:before{content:\"\\edb3\"}.ez-icon-paperclip:before{content:\"\\edb4\"}.ez-icon-paragraph:before{content:\"\\edb5\"}.ez-icon-parcel:before{content:\"\\edb6\"}.ez-icon-parcelar:before{content:\"\\edb7\"}.ez-icon-parking-circle:before{content:\"\\edb8\"}.ez-icon-parking-square:before{content:\"\\edb9\"}.ez-icon-pathfinder-unite:before{content:\"\\edba\"}.ez-icon-pathfinder:before{content:\"\\edbb\"}.ez-icon-pause-circle:before{content:\"\\edbc\"}.ez-icon-pause:before{content:\"\\edbd\"}.ez-icon-payments:before{content:\"\\edbe\"}.ez-icon-paypal:before{content:\"\\edbf\"}.ez-icon-pdf:before{content:\"\\edc0\"}.ez-icon-pen:before{content:\"\\edc1\"}.ez-icon-pentagon:before{content:\"\\edc2\"}.ez-icon-percentage:before{content:\"\\edc3\"}.ez-icon-phone-alt:before{content:\"\\edc4\"}.ez-icon-phone-pause:before{content:\"\\edc5\"}.ez-icon-phone-slash:before{content:\"\\edc6\"}.ez-icon-phone-times:before{content:\"\\edc7\"}.ez-icon-phone-volume:before{content:\"\\edc8\"}.ez-icon-phone:before{content:\"\\edc9\"}.ez-icon-picture:before{content:\"\\edca\"}.ez-icon-pizza-slice:before{content:\"\\edcb\"}.ez-icon-plane-arrival:before{content:\"\\edcc\"}.ez-icon-plane-departure:before{content:\"\\edcd\"}.ez-icon-plane-fly:before{content:\"\\edce\"}.ez-icon-plane:before{content:\"\\edcf\"}.ez-icon-play-2:before{content:\"\\edd0\"}.ez-icon-play-circle:before{content:\"\\edd1\"}.ez-icon-play:before{content:\"\\edd2\"}.ez-icon-plug:before{content:\"\\edd3\"}.ez-icon-plus-2:before{content:\"\\edd4\"}.ez-icon-plus-circle:before{content:\"\\edd5\"}.ez-icon-plus-square:before{content:\"\\edd6\"}.ez-icon-plus:before{content:\"\\edd7\"}.ez-icon-png:before{content:\"\\edd8\"}.ez-icon-podium:before{content:\"\\edd9\"}.ez-icon-polygon:before{content:\"\\edda\"}.ez-icon-post-stamp:before{content:\"\\eddb\"}.ez-icon-postcard:before{content:\"\\eddc\"}.ez-icon-pound-circle:before{content:\"\\eddd\"}.ez-icon-pound:before{content:\"\\edde\"}.ez-icon-power-2:before{content:\"\\eddf\"}.ez-icon-power:before{content:\"\\ede0\"}.ez-icon-pptx:before{content:\"\\ede1\"}.ez-icon-prescription-bottle:before{content:\"\\ede2\"}.ez-icon-presentation-check:before{content:\"\\ede3\"}.ez-icon-presentation-edit:before{content:\"\\ede4\"}.ez-icon-presentation-line:before{content:\"\\ede5\"}.ez-icon-presentation-lines-alt:before{content:\"\\ede6\"}.ez-icon-presentation-minus:before{content:\"\\ede7\"}.ez-icon-presentation-play:before{content:\"\\ede8\"}.ez-icon-presentation-plus:before{content:\"\\ede9\"}.ez-icon-presentation-times:before{content:\"\\edea\"}.ez-icon-presentation:before{content:\"\\edeb\"}.ez-icon-preview:before{content:\"\\edec\"}.ez-icon-previous:before{content:\"\\eded\"}.ez-icon-pricetag-alt:before{content:\"\\edee\"}.ez-icon-print-2:before{content:\"\\edef\"}.ez-icon-print-slash:before{content:\"\\edf0\"}.ez-icon-print:before{content:\"\\edf1\"}.ez-icon-process:before{content:\"\\edf2\"}.ez-icon-processor:before{content:\"\\edf3\"}.ez-icon-programming-language:before{content:\"\\edf4\"}.ez-icon-pump:before{content:\"\\edf5\"}.ez-icon-push-pin:before{content:\"\\edf6\"}.ez-icon-puzzle-piece:before{content:\"\\edf7\"}.ez-icon-qrcode-scan:before{content:\"\\edf8\"}.ez-icon-question-circle:before{content:\"\\edf9\"}.ez-icon-question:before{content:\"\\edfa\"}.ez-icon-rainbow:before{content:\"\\edfb\"}.ez-icon-raindrops-alt:before{content:\"\\edfc\"}.ez-icon-raindrops:before{content:\"\\edfd\"}.ez-icon-rateio:before{content:\"\\edfe\"}.ez-icon-react:before{content:\"\\edff\"}.ez-icon-receipt-2:before{content:\"\\ee00\"}.ez-icon-receipt-alt:before{content:\"\\ee01\"}.ez-icon-receipt:before{content:\"\\ee02\"}.ez-icon-recolher_card:before{content:\"\\ee03\"}.ez-icon-record-audio:before{content:\"\\ee04\"}.ez-icon-reddit-alien-alt:before{content:\"\\ee05\"}.ez-icon-redo:before{content:\"\\ee06\"}.ez-icon-refresh:before{content:\"\\ee07\"}.ez-icon-registered:before{content:\"\\ee08\"}.ez-icon-remove-from-cart:before{content:\"\\ee09\"}.ez-icon-repeat:before{content:\"\\ee0a\"}.ez-icon-restaurant:before{content:\"\\ee0b\"}.ez-icon-restore:before{content:\"\\ee0c\"}.ez-icon-return:before{content:\"\\ee0d\"}.ez-icon-right-indent-alt:before{content:\"\\ee0e\"}.ez-icon-right-to-left-text-direction:before{content:\"\\ee0f\"}.ez-icon-robot:before{content:\"\\ee10\"}.ez-icon-rocket:before{content:\"\\ee11\"}.ez-icon-rope-way:before{content:\"\\ee12\"}.ez-icon-rotate-360:before{content:\"\\ee13\"}.ez-icon-rss-alt:before{content:\"\\ee14\"}.ez-icon-rss-interface:before{content:\"\\ee15\"}.ez-icon-rss:before{content:\"\\ee16\"}.ez-icon-ruler-combined:before{content:\"\\ee17\"}.ez-icon-ruler:before{content:\"\\ee18\"}.ez-icon-rupee-sign:before{content:\"\\ee19\"}.ez-icon-sad-cry:before{content:\"\\ee1a\"}.ez-icon-sad-crying:before{content:\"\\ee1b\"}.ez-icon-sad-dizzy:before{content:\"\\ee1c\"}.ez-icon-sad-squint:before{content:\"\\ee1d\"}.ez-icon-sad:before{content:\"\\ee1e\"}.ez-icon-sanitizer-alt:before{content:\"\\ee1f\"}.ez-icon-sanitizer:before{content:\"\\ee20\"}.ez-icon-sankhya-place:before{content:\"\\ee21\"}.ez-icon-save-2:before{content:\"\\ee22\"}.ez-icon-save:before{content:\"\\ee23\"}.ez-icon-scaling-left:before{content:\"\\ee24\"}.ez-icon-scaling-right:before{content:\"\\ee25\"}.ez-icon-scenery:before{content:\"\\ee26\"}.ez-icon-schedule:before{content:\"\\ee27\"}.ez-icon-screw:before{content:\"\\ee28\"}.ez-icon-scroll-h:before{content:\"\\ee29\"}.ez-icon-scroll:before{content:\"\\ee2a\"}.ez-icon-search-2:before{content:\"\\ee2b\"}.ez-icon-search-alt:before{content:\"\\ee2c\"}.ez-icon-search-minus:before{content:\"\\ee2d\"}.ez-icon-search-plus:before{content:\"\\ee2e\"}.ez-icon-search:before{content:\"\\ee2f\"}.ez-icon-selfie:before{content:\"\\ee30\"}.ez-icon-server-alt:before{content:\"\\ee31\"}.ez-icon-server-connection:before{content:\"\\ee32\"}.ez-icon-server-network-alt:before{content:\"\\ee33\"}.ez-icon-server-network:before{content:\"\\ee34\"}.ez-icon-server:before{content:\"\\ee35\"}.ez-icon-servers:before{content:\"\\ee36\"}.ez-icon-servicemark:before{content:\"\\ee37\"}.ez-icon-setting:before{content:\"\\ee38\"}.ez-icon-settings-inverted:before{content:\"\\ee39\"}.ez-icon-settings:before{content:\"\\ee3a\"}.ez-icon-share-2:before{content:\"\\ee3b\"}.ez-icon-share-alt:before{content:\"\\ee3c\"}.ez-icon-share:before{content:\"\\ee3d\"}.ez-icon-shield-2:before{content:\"\\ee3e\"}.ez-icon-shield-check:before{content:\"\\ee3f\"}.ez-icon-shield-exclamation:before{content:\"\\ee40\"}.ez-icon-shield-plus:before{content:\"\\ee41\"}.ez-icon-shield-question:before{content:\"\\ee42\"}.ez-icon-shield-slash:before{content:\"\\ee43\"}.ez-icon-shield:before{content:\"\\ee44\"}.ez-icon-ship:before{content:\"\\ee45\"}.ez-icon-shop:before{content:\"\\ee46\"}.ez-icon-shopping-bag:before{content:\"\\ee47\"}.ez-icon-shopping-basket:before{content:\"\\ee48\"}.ez-icon-shopping-cart-alt:before{content:\"\\ee49\"}.ez-icon-shopping-cart:before{content:\"\\ee4a\"}.ez-icon-shovel:before{content:\"\\ee4b\"}.ez-icon-show-list:before{content:\"\\ee4c\"}.ez-icon-show_menu:before{content:\"\\ee4d\"}.ez-icon-shrink:before{content:\"\\ee4e\"}.ez-icon-shuffle:before{content:\"\\ee4f\"}.ez-icon-shutter-alt:before{content:\"\\ee50\"}.ez-icon-shutter:before{content:\"\\ee51\"}.ez-icon-sick:before{content:\"\\ee52\"}.ez-icon-sigma:before{content:\"\\ee53\"}.ez-icon-sign-alt:before{content:\"\\ee54\"}.ez-icon-sign-in-alt:before{content:\"\\ee55\"}.ez-icon-sign-left:before{content:\"\\ee56\"}.ez-icon-sign-out-alt:before{content:\"\\ee57\"}.ez-icon-sign-right:before{content:\"\\ee58\"}.ez-icon-signal-alt-3:before{content:\"\\ee59\"}.ez-icon-signal-alt:before{content:\"\\ee5a\"}.ez-icon-signal:before{content:\"\\ee5b\"}.ez-icon-signin:before{content:\"\\ee5c\"}.ez-icon-signout:before{content:\"\\ee5d\"}.ez-icon-silence:before{content:\"\\ee5e\"}.ez-icon-silent-squint:before{content:\"\\ee5f\"}.ez-icon-sim-card:before{content:\"\\ee60\"}.ez-icon-sitemap:before{content:\"\\ee61\"}.ez-icon-skip-forward-alt:before{content:\"\\ee62\"}.ez-icon-skip-forward-circle:before{content:\"\\ee63\"}.ez-icon-skip-forward:before{content:\"\\ee64\"}.ez-icon-skype-alt:before{content:\"\\ee65\"}.ez-icon-skype:before{content:\"\\ee66\"}.ez-icon-slack-alt:before{content:\"\\ee67\"}.ez-icon-slack:before{content:\"\\ee68\"}.ez-icon-sleep:before{content:\"\\ee69\"}.ez-icon-slider-h-range:before{content:\"\\ee6a\"}.ez-icon-slider-h:before{content:\"\\ee6b\"}.ez-icon-sliders-v-alt:before{content:\"\\ee6c\"}.ez-icon-sliders-v:before{content:\"\\ee6d\"}.ez-icon-smile-beam:before{content:\"\\ee6e\"}.ez-icon-smile-dizzy:before{content:\"\\ee6f\"}.ez-icon-smile-squint-wink-alt:before{content:\"\\ee70\"}.ez-icon-smile-squint-wink:before{content:\"\\ee71\"}.ez-icon-smile-wink-alt:before{content:\"\\ee72\"}.ez-icon-smile-wink:before{content:\"\\ee73\"}.ez-icon-smile:before{content:\"\\ee74\"}.ez-icon-snapchat-alt:before{content:\"\\ee75\"}.ez-icon-snapchat-ghost:before{content:\"\\ee76\"}.ez-icon-snapchat-square:before{content:\"\\ee77\"}.ez-icon-snow-flake:before{content:\"\\ee78\"}.ez-icon-snowflake-alt:before{content:\"\\ee79\"}.ez-icon-snowflake:before{content:\"\\ee7a\"}.ez-icon-social-distancing:before{content:\"\\ee7b\"}.ez-icon-solid:before{content:\"\\ee7c\"}.ez-icon-sort-amount-down:before{content:\"\\ee7d\"}.ez-icon-sort-amount-up:before{content:\"\\ee7e\"}.ez-icon-sort:before{content:\"\\ee7f\"}.ez-icon-sorting:before{content:\"\\ee80\"}.ez-icon-south-east:before{content:\"\\ee81\"}.ez-icon-space-key:before{content:\"\\ee82\"}.ez-icon-spade:before{content:\"\\ee83\"}.ez-icon-sperms:before{content:\"\\ee84\"}.ez-icon-spin:before{content:\"\\ee85\"}.ez-icon-spinner-alt:before{content:\"\\ee86\"}.ez-icon-spinner:before{content:\"\\ee87\"}.ez-icon-square-full:before{content:\"\\ee88\"}.ez-icon-square-shape:before{content:\"\\ee89\"}.ez-icon-square:before{content:\"\\ee8a\"}.ez-icon-squint:before{content:\"\\ee8b\"}.ez-icon-star-half-alt:before{content:\"\\ee8c\"}.ez-icon-star:before{content:\"\\ee8d\"}.ez-icon-statistics:before{content:\"\\ee8e\"}.ez-icon-step-backward-alt:before{content:\"\\ee8f\"}.ez-icon-step-backward-circle:before{content:\"\\ee90\"}.ez-icon-step-backward:before{content:\"\\ee91\"}.ez-icon-step-forward:before{content:\"\\ee92\"}.ez-icon-stethoscope-alt:before{content:\"\\ee93\"}.ez-icon-stethoscope:before{content:\"\\ee94\"}.ez-icon-stop-circle:before{content:\"\\ee95\"}.ez-icon-stopwatch-slash:before{content:\"\\ee96\"}.ez-icon-stopwatch:before{content:\"\\ee97\"}.ez-icon-store-alt:before{content:\"\\ee98\"}.ez-icon-store-slash:before{content:\"\\ee99\"}.ez-icon-store:before{content:\"\\ee9a\"}.ez-icon-stretcher:before{content:\"\\ee9b\"}.ez-icon-stroller:before{content:\"\\ee9c\"}.ez-icon-subject:before{content:\"\\ee9d\"}.ez-icon-subway-alt:before{content:\"\\ee9e\"}.ez-icon-subway:before{content:\"\\ee9f\"}.ez-icon-suitcase-alt:before{content:\"\\eea0\"}.ez-icon-suitcase:before{content:\"\\eea1\"}.ez-icon-sun:before{content:\"\\eea2\"}.ez-icon-sunset:before{content:\"\\eea3\"}.ez-icon-surprise:before{content:\"\\eea4\"}.ez-icon-swatchbook:before{content:\"\\eea5\"}.ez-icon-swiggy:before{content:\"\\eea6\"}.ez-icon-swimmer:before{content:\"\\eea7\"}.ez-icon-sync-2:before{content:\"\\eea8\"}.ez-icon-sync-exclamation:before{content:\"\\eea9\"}.ez-icon-sync-slash:before{content:\"\\eeaa\"}.ez-icon-sync:before{content:\"\\eeab\"}.ez-icon-syringe:before{content:\"\\eeac\"}.ez-icon-table-2:before{content:\"\\eead\"}.ez-icon-table-tennis:before{content:\"\\eeae\"}.ez-icon-table:before{content:\"\\eeaf\"}.ez-icon-tablet:before{content:\"\\eeb0\"}.ez-icon-tablets:before{content:\"\\eeb1\"}.ez-icon-tachometer-fast-alt:before{content:\"\\eeb2\"}.ez-icon-tachometer-fast:before{content:\"\\eeb3\"}.ez-icon-tag-alt:before{content:\"\\eeb4\"}.ez-icon-tag:before{content:\"\\eeb5\"}.ez-icon-tag_code:before{content:\"\\eeb6\"}.ez-icon-tape:before{content:\"\\eeb7\"}.ez-icon-taxi:before{content:\"\\eeb8\"}.ez-icon-tear:before{content:\"\\eeb9\"}.ez-icon-telegram-alt:before{content:\"\\eeba\"}.ez-icon-telegram:before{content:\"\\eebb\"}.ez-icon-telescope:before{content:\"\\eebc\"}.ez-icon-temperature-empty:before{content:\"\\eebd\"}.ez-icon-temperature-half:before{content:\"\\eebe\"}.ez-icon-temperature-minus:before{content:\"\\eebf\"}.ez-icon-temperature-plus:before{content:\"\\eec0\"}.ez-icon-temperature-quarter:before{content:\"\\eec1\"}.ez-icon-temperature-three-quarter:before{content:\"\\eec2\"}.ez-icon-temperature:before{content:\"\\eec3\"}.ez-icon-tennis-ball:before{content:\"\\eec4\"}.ez-icon-text-2:before{content:\"\\eec5\"}.ez-icon-text-fields:before{content:\"\\eec6\"}.ez-icon-text-size:before{content:\"\\eec7\"}.ez-icon-text-strike-through:before{content:\"\\eec8\"}.ez-icon-text:before{content:\"\\eec9\"}.ez-icon-th-large:before{content:\"\\eeca\"}.ez-icon-th-slash:before{content:\"\\eecb\"}.ez-icon-th:before{content:\"\\eecc\"}.ez-icon-thermometer:before{content:\"\\eecd\"}.ez-icon-thumbs-down:before{content:\"\\eece\"}.ez-icon-thumbs-up:before{content:\"\\eecf\"}.ez-icon-thunderstorm-moon:before{content:\"\\eed0\"}.ez-icon-thunderstorm-sun:before{content:\"\\eed1\"}.ez-icon-thunderstorm:before{content:\"\\eed2\"}.ez-icon-ticket:before{content:\"\\eed3\"}.ez-icon-timeline:before{content:\"\\eed4\"}.ez-icon-timer-outline:before{content:\"\\eed5\"}.ez-icon-times-circle:before{content:\"\\eed6\"}.ez-icon-times-square:before{content:\"\\eed7\"}.ez-icon-times:before{content:\"\\eed8\"}.ez-icon-toggle-off:before{content:\"\\eed9\"}.ez-icon-toggle-on:before{content:\"\\eeda\"}.ez-icon-toilet-paper:before{content:\"\\eedb\"}.ez-icon-top-arrow-from-top:before{content:\"\\eedc\"}.ez-icon-top-arrow-to-top:before{content:\"\\eedd\"}.ez-icon-tornado:before{content:\"\\eede\"}.ez-icon-trademark-circle:before{content:\"\\eedf\"}.ez-icon-trademark:before{content:\"\\eee0\"}.ez-icon-traffic-barrier:before{content:\"\\eee1\"}.ez-icon-traffic-light:before{content:\"\\eee2\"}.ez-icon-transaction:before{content:\"\\eee3\"}.ez-icon-trash-alt:before{content:\"\\eee4\"}.ez-icon-trash:before{content:\"\\eee5\"}.ez-icon-trees:before{content:\"\\eee6\"}.ez-icon-trending-up:before{content:\"\\eee7\"}.ez-icon-triangle:before{content:\"\\eee8\"}.ez-icon-trophy:before{content:\"\\eee9\"}.ez-icon-trowel:before{content:\"\\eeea\"}.ez-icon-truck-loading:before{content:\"\\eeeb\"}.ez-icon-truck:before{content:\"\\eeec\"}.ez-icon-tumblr-alt:before{content:\"\\eeed\"}.ez-icon-tumblr-square:before{content:\"\\eeee\"}.ez-icon-tumblr:before{content:\"\\eeef\"}.ez-icon-tune:before{content:\"\\eef0\"}.ez-icon-tv-retro-slash:before{content:\"\\eef1\"}.ez-icon-tv-retro:before{content:\"\\eef2\"}.ez-icon-twitter-alt:before{content:\"\\eef3\"}.ez-icon-twitter:before{content:\"\\eef4\"}.ez-icon-txt:before{content:\"\\eef5\"}.ez-icon-umbrella:before{content:\"\\eef6\"}.ez-icon-un-pin:before{content:\"\\eef7\"}.ez-icon-unamused:before{content:\"\\eef8\"}.ez-icon-underline:before{content:\"\\eef9\"}.ez-icon-undo:before{content:\"\\eefa\"}.ez-icon-unfold_less:before{content:\"\\eefb\"}.ez-icon-unfold_more:before{content:\"\\eefc\"}.ez-icon-university:before{content:\"\\eefd\"}.ez-icon-unlock-alt:before{content:\"\\eefe\"}.ez-icon-unlock:before{content:\"\\eeff\"}.ez-icon-upload-alt:before{content:\"\\ef00\"}.ez-icon-upload:before{content:\"\\ef01\"}.ez-icon-usd-circle:before{content:\"\\ef02\"}.ez-icon-usd-square:before{content:\"\\ef03\"}.ez-icon-user-arrows:before{content:\"\\ef04\"}.ez-icon-user-check:before{content:\"\\ef05\"}.ez-icon-user-circle-2:before{content:\"\\ef06\"}.ez-icon-user-circle:before{content:\"\\ef07\"}.ez-icon-user-exclamation:before{content:\"\\ef08\"}.ez-icon-user-location:before{content:\"\\ef09\"}.ez-icon-user-md:before{content:\"\\ef0a\"}.ez-icon-user-minus:before{content:\"\\ef0b\"}.ez-icon-user-nurse:before{content:\"\\ef0c\"}.ez-icon-user-plus:before{content:\"\\ef0d\"}.ez-icon-user-square:before{content:\"\\ef0e\"}.ez-icon-user-times:before{content:\"\\ef0f\"}.ez-icon-user:before{content:\"\\ef10\"}.ez-icon-users-alt:before{content:\"\\ef11\"}.ez-icon-utensils-alt:before{content:\"\\ef12\"}.ez-icon-utensils:before{content:\"\\ef13\"}.ez-icon-vector-square-alt:before{content:\"\\ef14\"}.ez-icon-vector-square:before{content:\"\\ef15\"}.ez-icon-venus:before{content:\"\\ef16\"}.ez-icon-vertical-align-bottom:before{content:\"\\ef17\"}.ez-icon-vertical-align-center:before{content:\"\\ef18\"}.ez-icon-vertical-align-top:before{content:\"\\ef19\"}.ez-icon-vertical-distribute-bottom:before{content:\"\\ef1a\"}.ez-icon-vertical-distribution-center:before{content:\"\\ef1b\"}.ez-icon-vertical-distribution-top:before{content:\"\\ef1c\"}.ez-icon-video-question:before{content:\"\\ef1d\"}.ez-icon-video-slash:before{content:\"\\ef1e\"}.ez-icon-video:before{content:\"\\ef1f\"}.ez-icon-virus-slash:before{content:\"\\ef20\"}.ez-icon-visual-studio:before{content:\"\\ef21\"}.ez-icon-vk-alt:before{content:\"\\ef22\"}.ez-icon-vk:before{content:\"\\ef23\"}.ez-icon-voicemail-rectangle:before{content:\"\\ef24\"}.ez-icon-voicemail:before{content:\"\\ef25\"}.ez-icon-volume-down:before{content:\"\\ef26\"}.ez-icon-volume-mute:before{content:\"\\ef27\"}.ez-icon-volume-off:before{content:\"\\ef28\"}.ez-icon-volume-up:before{content:\"\\ef29\"}.ez-icon-volume:before{content:\"\\ef2a\"}.ez-icon-vuejs-alt:before{content:\"\\ef2b\"}.ez-icon-vuejs:before{content:\"\\ef2c\"}.ez-icon-wall:before{content:\"\\ef2d\"}.ez-icon-wallet:before{content:\"\\ef2e\"}.ez-icon-warning-outline:before{content:\"\\ef2f\"}.ez-icon-warning_triangle:before{content:\"\\ef30\"}.ez-icon-watch-alt:before{content:\"\\ef31\"}.ez-icon-watch:before{content:\"\\ef32\"}.ez-icon-water-drop-slash:before{content:\"\\ef33\"}.ez-icon-water-glass:before{content:\"\\ef34\"}.ez-icon-water:before{content:\"\\ef35\"}.ez-icon-web-grid-alt:before{content:\"\\ef36\"}.ez-icon-web-grid:before{content:\"\\ef37\"}.ez-icon-web-section-alt:before{content:\"\\ef38\"}.ez-icon-web-section:before{content:\"\\ef39\"}.ez-icon-webcam:before{content:\"\\ef3a\"}.ez-icon-weight:before{content:\"\\ef3b\"}.ez-icon-whatsapp-alt:before{content:\"\\ef3c\"}.ez-icon-whatsapp:before{content:\"\\ef3d\"}.ez-icon-whatshot:before{content:\"\\ef3e\"}.ez-icon-wheel-barrow:before{content:\"\\ef3f\"}.ez-icon-wheelchair-alt:before{content:\"\\ef40\"}.ez-icon-wheelchair:before{content:\"\\ef41\"}.ez-icon-wifi-router:before{content:\"\\ef42\"}.ez-icon-wifi-slash:before{content:\"\\ef43\"}.ez-icon-wifi:before{content:\"\\ef44\"}.ez-icon-wind-moon:before{content:\"\\ef45\"}.ez-icon-wind-sun:before{content:\"\\ef46\"}.ez-icon-wind:before{content:\"\\ef47\"}.ez-icon-window-grid:before{content:\"\\ef48\"}.ez-icon-window-maximize:before{content:\"\\ef49\"}.ez-icon-window-restore:before{content:\"\\ef4a\"}.ez-icon-window-section:before{content:\"\\ef4b\"}.ez-icon-window:before{content:\"\\ef4c\"}.ez-icon-windows:before{content:\"\\ef4d\"}.ez-icon-windsock:before{content:\"\\ef4e\"}.ez-icon-windy:before{content:\"\\ef4f\"}.ez-icon-wordpress-simple:before{content:\"\\ef50\"}.ez-icon-wordpress:before{content:\"\\ef51\"}.ez-icon-wrap-text:before{content:\"\\ef52\"}.ez-icon-wrench:before{content:\"\\ef53\"}.ez-icon-x-add:before{content:\"\\ef54\"}.ez-icon-x:before{content:\"\\ef55\"}.ez-icon-xlsx:before{content:\"\\ef56\"}.ez-icon-yen-circle:before{content:\"\\ef57\"}.ez-icon-yen:before{content:\"\\ef58\"}.ez-icon-yin-yang:before{content:\"\\ef59\"}.ez-icon-youtube:before{content:\"\\ef5a\"}.ez-icon-zip:before{content:\"\\ef5b\"}.x-small--font{font-size:var(--font-size--small, 12px);line-height:var(--line-height--16, 16px)}.small--font{font-size:var(--font-size--medium, 16px);line-height:var(--line-height--20, 20px)}.medium--font{font-size:var(--font-size--xlarge, 20px);line-height:var(--line-height--24, 24px)}.large--font{font-size:var(--font-size--xxxlarge, 24px);line-height:var(--line-height--28, 28px)}.x-large--font{font-size:var(--font-size--6xlarge, 30px);line-height:var(--line-height--34, 34px)}";
79877
82210
 
79878
82211
  const EzIcon$1 = class extends HTMLElement$1 {
79879
82212
  constructor() {
@@ -83760,7 +86093,7 @@ const EzRichText$1 = class extends HTMLElement$1 {
83760
86093
  this.historyIndex = -1;
83761
86094
  this.previewMode = false;
83762
86095
  this.showPreview = true;
83763
- this.value = '';
86096
+ this.value = undefined;
83764
86097
  this.label = undefined;
83765
86098
  this.mode = "regular";
83766
86099
  this.enabled = true;
@@ -89527,7 +91860,11 @@ const EzSplitButton$1 = class extends HTMLElement$1 {
89527
91860
  const spaceLeft = rightButtonRect.left;
89528
91861
  const shouldOpenUpward = spaceBelow < dropdownRect.height && spaceAbove > dropdownRect.height;
89529
91862
  const shouldOpenLeftward = spaceRight < dropdownRect.width && spaceLeft > dropdownRect.width;
89530
- const styles = this.calculateDropdownPosition(rightButtonRect, dropdownRect, shouldOpenUpward, shouldOpenLeftward);
91863
+ const styles = {
91864
+ position: 'fixed',
91865
+ top: shouldOpenUpward ? `${rightButtonRect.top - dropdownRect.height}px` : `${rightButtonRect.bottom}px`,
91866
+ left: shouldOpenLeftward ? `${rightButtonRect.right - dropdownRect.width}px` : `${rightButtonRect.left}px`,
91867
+ };
89531
91868
  Object.assign(dropdownParent.style, styles);
89532
91869
  });
89533
91870
  };
@@ -89664,6 +92001,9 @@ const EzSplitButton$1 = class extends HTMLElement$1 {
89664
92001
  return;
89665
92002
  }
89666
92003
  }
92004
+ onItemActionExecuted() {
92005
+ this.closeDropdown();
92006
+ }
89667
92007
  clickListener(evt) {
89668
92008
  const isDisabled = !this.enabled ||
89669
92009
  this.isDisabled === true ||
@@ -89694,26 +92034,18 @@ const EzSplitButton$1 = class extends HTMLElement$1 {
89694
92034
  this.buttonClick.emit();
89695
92035
  }
89696
92036
  handleDropdownItemClick(evt) {
92037
+ var _a;
89697
92038
  this.dropdownItemClick.emit(evt.detail);
89698
92039
  evt.stopPropagation();
89699
- this.closeDropdown();
92040
+ if (!((_a = evt.detail) === null || _a === void 0 ? void 0 : _a.disableCloseOnSelect)) {
92041
+ this.closeDropdown();
92042
+ }
89700
92043
  }
89701
92044
  handleDropdownSubActionClick(evt) {
89702
92045
  this.dropdownSubActionClick.emit(evt.detail);
89703
92046
  evt.stopPropagation();
89704
92047
  this.closeDropdown();
89705
92048
  }
89706
- calculateDropdownPosition(buttonRect, dropdownRect, openUpward, openLeftward) {
89707
- const baseOffset = this.offsetParentRect || { top: 0, left: 0 };
89708
- return {
89709
- top: openUpward ? 'auto' : `${buttonRect.bottom - baseOffset.top + window.scrollY}px`,
89710
- bottom: openUpward ? `${window.innerHeight - buttonRect.top - window.scrollY}px` : 'auto',
89711
- left: openLeftward
89712
- ? `${buttonRect.right - dropdownRect.width - baseOffset.left + window.scrollX}px`
89713
- : `${buttonRect.left - baseOffset.left + window.scrollX}px`,
89714
- maxHeight: openUpward ? `${buttonRect.top - baseOffset.top}px` : 'none'
89715
- };
89716
- }
89717
92049
  setupEventListeners() {
89718
92050
  const controller = new AbortController();
89719
92051
  const { signal } = controller;
@@ -91726,6 +94058,42 @@ const EzTextInput$1 = class extends HTMLElement$1 {
91726
94058
  this._inputElem.classList.add("input__slim--noborder");
91727
94059
  }
91728
94060
  }
94061
+ buildMaskFormatter() {
94062
+ if (this.mask) {
94063
+ const maskToBuilder = this.getMaskToBuilder();
94064
+ this._maskFormatter = maskToBuilder ? new MaskFormatter$1(maskToBuilder) : undefined;
94065
+ }
94066
+ }
94067
+ getMaskToBuilder() {
94068
+ if (this.mask === 'cgc_cpf') {
94069
+ return this.getCGCCpfMask();
94070
+ }
94071
+ if (this.mask === 'phone') {
94072
+ return this.getPhoneMask();
94073
+ }
94074
+ if (this.mask in MaskFormatter$1.DEFAULT_MASKS) {
94075
+ return MaskFormatter$1.DEFAULT_MASKS[this.mask];
94076
+ }
94077
+ return this.mask;
94078
+ }
94079
+ getPhoneMask() {
94080
+ if (this.value && this.value.length === 10) {
94081
+ return MaskFormatter$1.DEFAULT_MASKS ? MaskFormatter$1.DEFAULT_MASKS.phone : undefined;
94082
+ }
94083
+ if (this.value && this.value.length === 11) {
94084
+ return MaskFormatter$1.DEFAULT_MASKS ? MaskFormatter$1.DEFAULT_MASKS.phone_mobile : undefined;
94085
+ }
94086
+ return undefined;
94087
+ }
94088
+ getCGCCpfMask() {
94089
+ if (this.value && this.value.length === 11) {
94090
+ return MaskFormatter$1.DEFAULT_MASKS ? MaskFormatter$1.DEFAULT_MASKS.cpf : undefined;
94091
+ }
94092
+ if (this.value && this.value.length === 14) {
94093
+ return MaskFormatter$1.DEFAULT_MASKS ? MaskFormatter$1.DEFAULT_MASKS.cnpj : undefined;
94094
+ }
94095
+ return undefined;
94096
+ }
91729
94097
  //---------------------------------------------
91730
94098
  // Public methods
91731
94099
  //---------------------------------------------
@@ -91949,6 +94317,7 @@ const EzTextInput$1 = class extends HTMLElement$1 {
91949
94317
  }
91950
94318
  componentDidRender() {
91951
94319
  this.adjustFloatingLabel();
94320
+ this.buildMaskFormatter();
91952
94321
  }
91953
94322
  render() {
91954
94323
  ElementIDUtils.addIDInfoIfNotExists(this._hostElement, 'input');
@@ -94099,6 +96468,7 @@ const SearchList$1 = class extends HTMLElement$1 {
94099
96468
  };
94100
96469
 
94101
96470
  globalScripts();
96471
+ const ClassicSearchList = /*@__PURE__*/proxyCustomElement(ClassicSearchList$1, [1,"classic-search-list",{"showLoading":[4,"show-loading"],"visibleOptions":[16],"textEmptyList":[1,"text-empty-list"],"canShowListOptions":[4,"can-show-list-options"],"value":[1],"showOptionValue":[4,"show-option-value"],"preSelection":[2,"pre-selection"]}]);
94102
96472
  const EzActionsButton = /*@__PURE__*/proxyCustomElement(EzActionsButton$1, [1,"ez-actions-button",{"enabled":[516],"actions":[1040],"size":[513],"showLabel":[516,"show-label"],"displayIcon":[513,"display-icon"],"checkOption":[516,"check-option"],"value":[513],"isTransparent":[516,"is-transparent"],"arrowActive":[516,"arrow-active"],"_selectedAction":[32]}]);
94103
96473
  const EzAlert = /*@__PURE__*/proxyCustomElement(EzAlert$1, [1,"ez-alert",{"alertType":[513,"alert-type"]}]);
94104
96474
  const EzAlertList = /*@__PURE__*/proxyCustomElement(EzAlertList$1, [1,"ez-alert-list",{"alerts":[1040],"enableDragAndDrop":[516,"enable-drag-and-drop"],"enableExpand":[516,"enable-expand"],"itemRightSlotBuilder":[16],"opened":[1540],"expanded":[1540],"_container":[32]}]);
@@ -94112,9 +96482,16 @@ const EzCardItem = /*@__PURE__*/proxyCustomElement(EzCardItem$1, [1,"ez-card-ite
94112
96482
  const EzChart = /*@__PURE__*/proxyCustomElement(EzChart$1, [1,"ez-chart",{"type":[1],"xAxis":[16],"yAxis":[16],"chartTitle":[1,"chart-title"],"chartSubTitle":[1,"chart-sub-title"],"legendEnabled":[4,"legend-enabled"],"series":[16],"width":[2],"height":[2]}]);
94113
96483
  const EzCheck = /*@__PURE__*/proxyCustomElement(EzCheck$1, [1,"ez-check",{"label":[513],"alternativePlaceholder":[513,"alternative-placeholder"],"value":[1540],"enabled":[1540],"indeterminate":[1540],"mode":[513],"compact":[4]}]);
94114
96484
  const EzChip = /*@__PURE__*/proxyCustomElement(EzChip$1, [1,"ez-chip",{"label":[513],"enabled":[516],"removePosition":[513,"remove-position"],"mode":[513],"value":[1540],"showNativeTooltip":[4,"show-native-tooltip"],"disableAutoUpdateValue":[4,"disable-auto-update-value"],"maxWidth":[1,"max-width"],"size":[1],"iconNameLeft":[1,"icon-name-left"],"iconNameRight":[1,"icon-name-right"],"type":[1],"tabIndex":[2,"tab-index"],"removeWithKeyboard":[4,"remove-with-keyboard"],"_isOverflowing":[32]}]);
94115
- const EzClassicComboBox = /*@__PURE__*/proxyCustomElement(EzClassicComboBox$1, [1,"ez-classic-combo-box",{"value":[1040],"label":[1],"placeholder":[1025],"enabled":[4],"readonly":[4],"name":[1],"state":[1],"helpText":[1,"help-text"],"iconName":[1,"icon-name"],"titleIcon":[1,"title-icon"],"iconClickable":[4,"icon-clickable"],"suppressSearch":[4,"suppress-search"],"options":[16],"textEmptyOption":[1,"text-empty-option"],"suppressEmptyOption":[4,"suppress-empty-option"],"popoverVisible":[32],"hasSlotContent":[32],"highlightedIndex":[32],"filteredOptions":[32],"inputValue":[32]}]);
94116
- const EzClassicInput = /*@__PURE__*/proxyCustomElement(EzClassicInput$1, [1,"ez-classic-input",{"type":[1],"value":[1025],"label":[1],"helpText":[1,"help-text"],"placeholder":[1025],"enabled":[4],"readonly":[4],"name":[1],"minlength":[2],"maxlength":[2],"leftIconName":[1,"left-icon-name"],"rightIconName":[1,"right-icon-name"],"rightIconTooltip":[1,"right-icon-tooltip"],"leftIconTooltip":[1,"left-icon-tooltip"],"state":[1],"leftIconClickable":[4,"left-icon-clickable"],"rightIconClickable":[4,"right-icon-clickable"],"mask":[1],"emitMaskedValue":[4,"emit-masked-value"]}]);
96485
+ const EzClassicComboBox = /*@__PURE__*/proxyCustomElement(EzClassicComboBox$1, [1,"ez-classic-combo-box",{"value":[1537],"label":[1],"placeholder":[1025],"enabled":[4],"required":[4],"readonly":[4],"name":[1],"state":[1],"size":[1],"helpText":[1,"help-text"],"iconName":[1,"icon-name"],"titleIcon":[1,"title-icon"],"iconClickable":[4,"icon-clickable"],"suppressSearch":[4,"suppress-search"],"options":[16],"textEmptyOption":[1,"text-empty-option"],"suppressEmptyOption":[4,"suppress-empty-option"],"popoverVisible":[32],"hasSlotContent":[32],"highlightedIndex":[32],"filteredOptions":[32],"inputValue":[32]}]);
96486
+ const EzClassicDateInput = /*@__PURE__*/proxyCustomElement(EzClassicDateInput$1, [1,"ez-classic-date-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"mode":[513],"size":[1],"required":[4],"canShowError":[516,"can-show-error"],"autoFocus":[4,"auto-focus"],"alternativePlaceholder":[513,"alternative-placeholder"]}]);
96487
+ const EzClassicDateTimeInput = /*@__PURE__*/proxyCustomElement(EzClassicDateTimeInput$1, [1,"ez-classic-date-time-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"mode":[513],"size":[1],"required":[4],"canShowError":[516,"can-show-error"],"autoFocus":[4,"auto-focus"],"alternativePlaceholder":[513,"alternative-placeholder"]}]);
96488
+ const EzClassicInput = /*@__PURE__*/proxyCustomElement(EzClassicInput$1, [1,"ez-classic-input",{"type":[1],"value":[1537],"label":[1],"helpText":[1,"help-text"],"errorMessage":[1,"error-message"],"placeholder":[1537],"enabled":[4],"readonly":[4],"required":[4],"name":[1],"size":[1],"minlength":[2],"maxlength":[2],"leftIconName":[1,"left-icon-name"],"rightIconName":[1,"right-icon-name"],"rightIconTooltip":[1,"right-icon-tooltip"],"leftIconTooltip":[1,"left-icon-tooltip"],"state":[1],"leftIconClickable":[4,"left-icon-clickable"],"rightIconClickable":[4,"right-icon-clickable"],"mask":[1],"emitMaskedValue":[4,"emit-masked-value"]}]);
96489
+ const EzClassicNumberInput = /*@__PURE__*/proxyCustomElement(EzClassicNumberInput$1, [1,"ez-classic-number-input",{"label":[1],"value":[1538],"enabled":[4],"required":[4],"canShowError":[516,"can-show-error"],"errorMessage":[1537,"error-message"],"allowNegative":[4,"allow-negative"],"precision":[2],"prettyPrecision":[2,"pretty-precision"],"mode":[513],"size":[1],"autoFocus":[4,"auto-focus"],"alternativePlaceholder":[1,"alternative-placeholder"],"_value":[32]}]);
96490
+ const EzClassicSearch = /*@__PURE__*/proxyCustomElement(EzClassicSearch$1, [1,"ez-classic-search",{"value":[1537],"label":[1537],"enabled":[1540],"errorMessage":[1537,"error-message"],"size":[1],"optionLoader":[16],"contextProperties":[8,"context-properties"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"suppressEmptyOption":[4,"suppress-empty-option"],"stopPropagateEnterKeyEvent":[4,"stop-propagate-enter-key-event"],"mode":[513],"classic":[516],"required":[4],"canShowError":[516,"can-show-error"],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"ignoreLimitCharsToSearch":[4,"ignore-limit-chars-to-search"],"options":[1040],"suppressSearch":[4,"suppress-search"],"ensureClearButtonVisible":[4,"ensure-clear-button-visible"],"suppressPreLoad":[4,"suppress-pre-load"],"autoFocus":[4,"auto-focus"],"alternativePlaceholder":[513,"alternative-placeholder"],"showMore":[4,"show-more"],"suppressInputPersist":[1028,"suppress-input-persist"],"hideDescriptionInput":[1540,"hide-description-input"],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32]}]);
96491
+ const EzClassicSearchPlus = /*@__PURE__*/proxyCustomElement(EzClassicSearchPlus$1, [1,"ez-classic-search-plus",{"value":[1537],"enabled":[1540],"disableCodeInput":[1540,"disable-code-input"],"disableDescriptionInput":[1540,"disable-description-input"],"label":[1537],"hideDescriptionInput":[1540,"hide-description-input"],"canShowError":[516,"can-show-error"],"errorMessage":[1537,"error-message"],"mode":[513],"size":[1],"required":[4],"contextProperties":[8,"context-properties"],"optionLoader":[16],"showOptionValue":[4,"show-option-value"],"stopPropagateEnterKeyEvent":[4,"stop-propagate-enter-key-event"],"autoFocus":[4,"auto-focus"],"showSelectedValue":[4,"show-selected-value"],"suppressEmptyOption":[4,"suppress-empty-option"],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"ignoreLimitCharsToSearch":[4,"ignore-limit-chars-to-search"],"suppressSearch":[4,"suppress-search"],"suppressPreLoad":[4,"suppress-pre-load"],"ensureClearButtonVisible":[4,"ensure-clear-button-visible"],"descriptionValue":[32],"codeValue":[32],"isLoadingDescription":[32],"searchDescriptionIsOpen":[32],"visibleOptions":[32],"showLoading":[32]}]);
96492
+ const EzClassicSearchResultList = /*@__PURE__*/proxyCustomElement(EzClassicSearchResultList$1, [1,"ez-classic-search-result-list",{"showLoading":[4,"show-loading"],"visibleOptions":[16],"value":[1],"showOptionValue":[4,"show-option-value"],"_preSelection":[32]}]);
94117
96493
  const EzClassicTextArea = /*@__PURE__*/proxyCustomElement(EzClassicTextArea$1, [1,"ez-classic-text-area",{"name":[1],"label":[1],"placeholder":[1],"value":[1],"helpText":[1,"help-text"],"state":[1],"enabled":[4],"readonly":[4],"maxlength":[2],"resize":[1],"leftIconName":[1,"left-icon-name"],"rightIconName":[1,"right-icon-name"],"rightIconTooltip":[1,"right-icon-tooltip"],"leftIconTooltip":[1,"left-icon-tooltip"],"leftIconClickable":[4,"left-icon-clickable"],"rightIconClickable":[4,"right-icon-clickable"],"rows":[2]}]);
96494
+ const EzClassicTimeInput = /*@__PURE__*/proxyCustomElement(EzClassicTimeInput$1, [1,"ez-classic-time-input",{"label":[513],"value":[1026],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"mode":[513],"size":[1],"required":[4],"canShowError":[516,"can-show-error"],"autoFocus":[4,"auto-focus"],"alternativePlaceholder":[1,"alternative-placeholder"]}]);
94118
96495
  const EzCollapsibleBox = /*@__PURE__*/proxyCustomElement(EzCollapsibleBox$1, [1,"ez-collapsible-box",{"value":[1540],"boxBordered":[4,"box-bordered"],"label":[513],"subtitle":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"],"headerAlign":[513,"header-align"],"removable":[516],"editable":[516],"conditionalSave":[16],"_activeEditText":[32]}]);
94119
96496
  const EzComboBox = /*@__PURE__*/proxyCustomElement(EzComboBox$1, [1,"ez-combo-box",{"limitCharsToSearch":[2,"limit-chars-to-search"],"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"suppressSearch":[4,"suppress-search"],"optionLoader":[16],"suppressEmptyOption":[4,"suppress-empty-option"],"stopPropagateEnterKeyEvent":[4,"stop-propagate-enter-key-event"],"canShowError":[516,"can-show-error"],"mode":[513],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"autoFocus":[4,"auto-focus"],"preventAutoFocus":[4,"prevent-auto-focus"],"alternativePlaceholder":[513,"alternative-placeholder"],"textEmptyOption":[1,"text-empty-option"],"isOpen":[32],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32]}]);
94120
96497
  const EzComboBoxList = /*@__PURE__*/proxyCustomElement(EzComboBoxList$1, [1,"ez-combo-box-list",{"showLoading":[4,"show-loading"],"visibleOptions":[16],"textEmptyList":[1,"text-empty-list"],"showOptionValue":[4,"show-option-value"],"preSelection":[2,"pre-selection"],"maxWidth":[2,"max-width"],"width":[2],"onOptionSelect":[16],"onOptionHover":[16]},[[0,"keydown","handleKeyDown"]]]);
@@ -94127,8 +96504,8 @@ const EzDropdown = /*@__PURE__*/proxyCustomElement(EzDropdown$1, [1,"ez-dropdown
94127
96504
  const EzEmptyCard = /*@__PURE__*/proxyCustomElement(EzEmptyCard$1, [1,"ez-empty-card",{"color":[513],"height":[514],"width":[514]}]);
94128
96505
  const EzFileItem = /*@__PURE__*/proxyCustomElement(EzFileItem$1, [1,"ez-file-item",{"canRemove":[4,"can-remove"],"fileName":[1,"file-name"],"iconName":[1,"icon-name"],"fileSize":[2,"file-size"],"progress":[2]}]);
94129
96506
  const EzFilterInput = /*@__PURE__*/proxyCustomElement(EzFilterInput$1, [1,"ez-filter-input",{"label":[1],"value":[1537],"enabled":[4],"errorMessage":[1537,"error-message"],"restrict":[1],"mode":[513],"asyncSearch":[516,"async-search"],"canShowError":[516,"can-show-error"],"autoFocus":[4,"auto-focus"]}]);
94130
- const EzForm = /*@__PURE__*/proxyCustomElement(EzForm$1, [2,"ez-form",{"dataUnit":[1040],"config":[16],"recordsValidator":[16],"fieldToFocus":[1,"field-to-focus"],"onlyStaticFields":[4,"only-static-fields"],"useSearchField":[4,"use-search-field"],"elementFocusSearchField":[16],"customUiBuilders":[16],"_fieldsProps":[32],"_singleColumn":[32]}]);
94131
- const EzFormView = /*@__PURE__*/proxyCustomElement(EzFormView$1, [2,"ez-form-view",{"fields":[16],"selectedRecord":[16],"singleColumn":[4,"single-column"],"customUiBuilders":[16],"_customEditors":[32]}]);
96507
+ const EzForm = /*@__PURE__*/proxyCustomElement(EzForm$1, [2,"ez-form",{"dataUnit":[1040],"config":[16],"recordsValidator":[16],"fieldToFocus":[1,"field-to-focus"],"onlyStaticFields":[4,"only-static-fields"],"useSearchField":[4,"use-search-field"],"elementFocusSearchField":[16],"customUiBuilders":[16],"_fieldsProps":[32],"_singleColumn":[32],"_formLayout":[32]}]);
96508
+ const EzFormView = /*@__PURE__*/proxyCustomElement(EzFormView$1, [2,"ez-form-view",{"fields":[16],"selectedRecord":[16],"singleColumn":[4,"single-column"],"formLayout":[2,"form-layout"],"customUiBuilders":[16],"_customEditors":[32]}]);
94132
96509
  const EzGrid = /*@__PURE__*/proxyCustomElement(EzGrid$1, [6,"ez-grid",{"enableLockManagerLoadingComp":[1028,"enable-lock-manager-loading-comp"],"enableLockManagerTaskbarClick":[4,"enable-lock-manager-taskbar-click"],"multipleSelection":[4,"multiple-selection"],"config":[1040],"selectionToastConfig":[16],"serverUrl":[1,"server-url"],"dataUnit":[16],"statusResolver":[16],"columnfilterDataSource":[16],"useEnterLikeTab":[4,"use-enter-like-tab"],"recordsValidator":[16],"canEdit":[1028,"can-edit"],"autoFocus":[4,"auto-focus"],"paginationCounterMode":[1,"pagination-counter-mode"],"enableGridInsert":[4,"enable-grid-insert"],"enableContinuousInsert":[4,"enable-continuous-insert"],"suppressCheckboxColumn":[1028,"suppress-checkbox-column"],"suppressFilterColumn":[1028,"suppress-filter-column"],"outlineMode":[4,"outline-mode"],"enableRowTableStriped":[4,"enable-row-table-striped"],"compact":[1028],"useSearchColumn":[4,"use-search-column"],"suppressHorizontalScroll":[4,"suppress-horizontal-scroll"],"mode":[513],"_paginationInfo":[32],"_paginationChangedByKeyboard":[32],"_showSelectionCounter":[32],"_isAllSelection":[32],"_currentPageSelected":[32],"_selectionCount":[32],"_hasLeftButtons":[32],"_customFormatters":[32]},[[0,"applyFilterColumnOptions","handleApplyFilterColumn"],[0,"ezSelectionChange","onSelectionChange"],[2,"click","handleClick"]]]);
94133
96510
  const EzGridView = /*@__PURE__*/proxyCustomElement(EzGridView$1, [6,"ez-grid-view",{"metadata":[16],"records":[16],"columnsConfig":[1040],"pageSize":[2,"page-size"],"recordDateFormat":[1,"record-date-format"],"multipleSelection":[4,"multiple-selection"],"autoFocus":[4,"auto-focus"],"paginationCounterMode":[1,"pagination-counter-mode"],"suppressCheckboxColumn":[1028,"suppress-checkbox-column"],"suppressFilterColumn":[4,"suppress-filter-column"],"outlineMode":[4,"outline-mode"],"enableRowTableStriped":[4,"enable-row-table-striped"],"compact":[1028],"useSearchColumn":[4,"use-search-column"],"suppressHorizontalScroll":[4,"suppress-horizontal-scroll"],"inMemoryLoader":[32]}]);
94134
96511
  const EzGuideNavigator = /*@__PURE__*/proxyCustomElement(EzGuideNavigator$1, [1,"ez-guide-navigator",{"open":[1540],"selectedId":[1537,"selected-id"],"items":[16],"tooltipResolver":[16],"filterText":[32]}]);
@@ -94165,7 +96542,7 @@ const EzSimpleImageUploader = /*@__PURE__*/proxyCustomElement(EzSimpleImageUploa
94165
96542
  const EzSkeleton = /*@__PURE__*/proxyCustomElement(EzSkeleton$1, [0,"ez-skeleton",{"template":[1],"count":[2],"variant":[1],"width":[1],"height":[1],"marginTop":[1,"margin-top"],"marginRight":[1,"margin-right"],"marginBottom":[1,"margin-bottom"],"marginLeft":[1,"margin-left"],"animation":[1]}]);
94166
96543
  const EzSortableList = /*@__PURE__*/proxyCustomElement(EzSortableList$1, [1,"ez-sortable-list",{"title":[1],"hideHeader":[4,"hide-header"],"hideTotalizer":[4,"hide-totalizer"],"group":[1],"dataSource":[16],"idSortableList":[1,"id-sortable-list"],"entityLabel":[1,"entity-label"],"entityLabelPlural":[1,"entity-label-plural"],"emptyMessage":[1,"empty-message"],"hoverFeedback":[4,"hover-feedback"],"enableMultipleSelection":[4,"enable-multiple-selection"],"removeItensMoved":[4,"remove-itens-moved"],"itemRightSlotBuilder":[1040],"itemLeftSlotBuilder":[1040],"filterTerm":[32],"selectedItems":[32]}]);
94167
96544
  const EzSpinner = /*@__PURE__*/proxyCustomElement(EzSpinner$1, [1,"ez-spinner",{"size":[1]}]);
94168
- const EzSplitButton = /*@__PURE__*/proxyCustomElement(EzSplitButton$1, [1,"ez-split-button",{"show":[1540],"enabled":[516],"isDisabled":[520,"is-disabled"],"iconName":[513,"icon-name"],"leftIconName":[513,"left-icon-name"],"rightIconName":[513,"right-icon-name"],"image":[513],"items":[16],"label":[513],"leftTitle":[513,"left-title"],"rightTitle":[513,"right-title"],"mode":[513],"size":[513],"variant":[1537],"suppressAnimation":[1540,"suppress-animation"],"itemBuilder":[16],"leftRipples":[32],"rightRipples":[32],"isLeftPressed":[32],"isRightPressed":[32]},[[1,"mousedown","onMouseDown"],[1,"touchstart","onTouchStart"],[2,"click","clickListener"]]]);
96545
+ const EzSplitButton = /*@__PURE__*/proxyCustomElement(EzSplitButton$1, [1,"ez-split-button",{"show":[1540],"enabled":[516],"isDisabled":[520,"is-disabled"],"iconName":[513,"icon-name"],"leftIconName":[513,"left-icon-name"],"rightIconName":[513,"right-icon-name"],"image":[513],"items":[16],"label":[513],"leftTitle":[513,"left-title"],"rightTitle":[513,"right-title"],"mode":[513],"size":[513],"variant":[1537],"suppressAnimation":[1540,"suppress-animation"],"itemBuilder":[16],"leftRipples":[32],"rightRipples":[32],"isLeftPressed":[32],"isRightPressed":[32]},[[1,"mousedown","onMouseDown"],[1,"touchstart","onTouchStart"],[8,"ezCloseSplitButtonDropdown","onItemActionExecuted"],[2,"click","clickListener"]]]);
94169
96546
  const EzSplitItem = /*@__PURE__*/proxyCustomElement(SplitItem, [4,"ez-split-item",{"label":[1],"enableExpand":[516,"enable-expand"],"size":[1],"structural":[4],"_expanded":[32]}]);
94170
96547
  const EzSplitPanel = /*@__PURE__*/proxyCustomElement(SplitPanel, [0,"ez-split-panel",{"direction":[1],"anchorToExpand":[4,"anchor-to-expand"],"structural":[4]}]);
94171
96548
  const EzTabselector = /*@__PURE__*/proxyCustomElement(EzTabselector$1, [1,"ez-tabselector",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32]}]);
@@ -94189,7 +96566,8 @@ const SearchList = /*@__PURE__*/proxyCustomElement(SearchList$1, [1,"search-list
94189
96566
  const defineCustomElements = (opts) => {
94190
96567
  if (typeof customElements !== 'undefined') {
94191
96568
  [
94192
- EzActionsButton,
96569
+ ClassicSearchList,
96570
+ EzActionsButton,
94193
96571
  EzAlert,
94194
96572
  EzAlertList,
94195
96573
  EzApplication,
@@ -94203,8 +96581,15 @@ const defineCustomElements = (opts) => {
94203
96581
  EzCheck,
94204
96582
  EzChip,
94205
96583
  EzClassicComboBox,
96584
+ EzClassicDateInput,
96585
+ EzClassicDateTimeInput,
94206
96586
  EzClassicInput,
96587
+ EzClassicNumberInput,
96588
+ EzClassicSearch,
96589
+ EzClassicSearchPlus,
96590
+ EzClassicSearchResultList,
94207
96591
  EzClassicTextArea,
96592
+ EzClassicTimeInput,
94208
96593
  EzCollapsibleBox,
94209
96594
  EzComboBox,
94210
96595
  EzComboBoxList,
@@ -94284,4 +96669,4 @@ const defineCustomElements = (opts) => {
94284
96669
  }
94285
96670
  };
94286
96671
 
94287
- export { EzActionsButton, EzAlert, EzAlertList, EzApplication, EzAvatar, EzBadge, EzBreadcrumb, EzButton, EzCalendar, EzCardItem, EzChart, EzCheck, EzChip, EzClassicComboBox, EzClassicInput, EzClassicTextArea, EzCollapsibleBox, EzComboBox, EzComboBoxList, EzCustomFormInput, EzDateInput, EzDateTimeInput, EzDialog, EzDoubleList, EzDropdown, EzEmptyCard, EzFileItem, EzFilterInput, EzForm, EzFormView, EzGrid, EzGridView, EzGuideNavigator, EzIcon, EzImageInput, EzLinkBuilder, EzList, EzListItem, EzLoadingBar, EzModal, EzModalContainer, EzMultiSelectionList, EzNumberInput, EzPagination, EzPopover, EzPopoverCore, EzPopoverPlus, EzPopup, EzProgressBar, EzRadioButton, EzRichText, EzRichToolbar, EzRichToolbarArrows, EzRichToolbarConfigs, EzRichToolbarItem, EzRichToolbarLetters, EzScroller, EzSearch, EzSearchPlus, EzSearchResultList, EzSidebarButton, EzSidebarNavigator, EzSimpleImageUploader, EzSkeleton, EzSortableList, EzSpinner, EzSplitButton, EzSplitItem, EzSplitPanel, EzTabselector, EzTag, EzTagInput, EzTextArea, EzTextEdit, EzTextInput, EzTile, EzTileMedium, EzTimeInput, EzToast, EzTooltip, EzTree, EzUnderface, EzUpload, EzViewStack, FilterColumn, MultiSelectionBoxMessage, SearchList, defineCustomElements };
96672
+ export { ClassicSearchList, EzActionsButton, EzAlert, EzAlertList, EzApplication, EzAvatar, EzBadge, EzBreadcrumb, EzButton, EzCalendar, EzCardItem, EzChart, EzCheck, EzChip, EzClassicComboBox, EzClassicDateInput, EzClassicDateTimeInput, EzClassicInput, EzClassicNumberInput, EzClassicSearch, EzClassicSearchPlus, EzClassicSearchResultList, EzClassicTextArea, EzClassicTimeInput, EzCollapsibleBox, EzComboBox, EzComboBoxList, EzCustomFormInput, EzDateInput, EzDateTimeInput, EzDialog, EzDoubleList, EzDropdown, EzEmptyCard, EzFileItem, EzFilterInput, EzForm, EzFormView, EzGrid, EzGridView, EzGuideNavigator, EzIcon, EzImageInput, EzLinkBuilder, EzList, EzListItem, EzLoadingBar, EzModal, EzModalContainer, EzMultiSelectionList, EzNumberInput, EzPagination, EzPopover, EzPopoverCore, EzPopoverPlus, EzPopup, EzProgressBar, EzRadioButton, EzRichText, EzRichToolbar, EzRichToolbarArrows, EzRichToolbarConfigs, EzRichToolbarItem, EzRichToolbarLetters, EzScroller, EzSearch, EzSearchPlus, EzSearchResultList, EzSidebarButton, EzSidebarNavigator, EzSimpleImageUploader, EzSkeleton, EzSortableList, EzSpinner, EzSplitButton, EzSplitItem, EzSplitPanel, EzTabselector, EzTag, EzTagInput, EzTextArea, EzTextEdit, EzTextInput, EzTile, EzTileMedium, EzTimeInput, EzToast, EzTooltip, EzTree, EzUnderface, EzUpload, EzViewStack, FilterColumn, MultiSelectionBoxMessage, SearchList, defineCustomElements };