@sankhyalabs/ezui 6.0.1 → 6.1.0-dev.2

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 (757) hide show
  1. package/dist/cjs/FormLayout-18853e70.js +27 -0
  2. package/dist/cjs/{constants-2714478b.js → constants-569271bc.js} +4 -0
  3. package/dist/cjs/ez-actions-button.cjs.entry.js +1 -1
  4. package/dist/cjs/ez-avatar.cjs.entry.js +50 -0
  5. package/dist/cjs/ez-card-item_2.cjs.entry.js +3 -1217
  6. package/dist/cjs/ez-chart.cjs.entry.js +1 -1
  7. package/dist/cjs/ez-check.cjs.entry.js +18 -10
  8. package/dist/cjs/ez-collapsible-box.cjs.entry.js +1 -1
  9. package/dist/cjs/ez-combo-box-list_3.cjs.entry.js +3 -3
  10. package/dist/cjs/ez-combo-box.cjs.entry.js +10 -14
  11. package/dist/cjs/ez-date-input.cjs.entry.js +2 -1
  12. package/dist/cjs/ez-date-time-input.cjs.entry.js +2 -1
  13. package/dist/cjs/ez-dialog.cjs.entry.js +6 -3
  14. package/dist/cjs/ez-double-list.cjs.entry.js +114 -53
  15. package/dist/cjs/{ez-dropdown_2.cjs.entry.js → ez-dropdown.cjs.entry.js} +1 -62
  16. package/dist/cjs/ez-filter-input_2.cjs.entry.js +257 -0
  17. package/dist/cjs/ez-form-view.cjs.entry.js +18 -10
  18. package/dist/cjs/ez-form.cjs.entry.js +86 -5
  19. package/dist/cjs/ez-grid.cjs.entry.js +1041 -144
  20. package/dist/cjs/ez-icon.cjs.entry.js +11 -5
  21. package/dist/cjs/ez-list.cjs.entry.js +2 -2
  22. package/dist/cjs/ez-modal-container.cjs.entry.js +7 -3
  23. package/dist/cjs/ez-modal.cjs.entry.js +5 -1
  24. package/dist/cjs/ez-number-input.cjs.entry.js +2 -1
  25. package/dist/cjs/ez-popup.cjs.entry.js +5 -1
  26. package/dist/cjs/ez-search-plus.cjs.entry.js +397 -0
  27. package/dist/cjs/ez-search-result-list.cjs.entry.js +97 -0
  28. package/dist/cjs/ez-search.cjs.entry.js +4 -3
  29. package/dist/cjs/ez-skeleton.cjs.entry.js +149 -0
  30. package/dist/cjs/ez-sortable-list.cjs.entry.js +3510 -0
  31. package/dist/cjs/ez-split-button.cjs.entry.js +15 -6
  32. package/dist/cjs/ez-split-item.cjs.entry.js +1 -1
  33. package/dist/cjs/ez-text-area.cjs.entry.js +24 -3
  34. package/dist/cjs/ez-text-input.cjs.entry.js +83 -100
  35. package/dist/cjs/ez-time-input.cjs.entry.js +2 -1
  36. package/dist/cjs/ezui.cjs.js +1 -1
  37. package/dist/cjs/filter-column.cjs.entry.js +14 -5
  38. package/dist/cjs/floating-ui.dom.esm-017acce4.js +1404 -0
  39. package/dist/cjs/index-9e5554cb.js +24 -8
  40. package/dist/cjs/loader.cjs.js +1 -1
  41. package/dist/cjs/{DataBinder-e92314c2.js → search-column-1d3c9fa5.js} +73 -13
  42. package/dist/collection/collection-manifest.json +14 -0
  43. package/dist/collection/components/ez-avatar/ez-avatar.css +139 -0
  44. package/dist/collection/components/ez-avatar/ez-avatar.js +143 -0
  45. package/dist/collection/components/ez-check/ez-check.css +9 -0
  46. package/dist/collection/components/ez-check/ez-check.js +34 -9
  47. package/dist/collection/components/ez-combo-box/ez-combo-box-list/ez-combo-box-list.css +1 -0
  48. package/dist/collection/components/ez-combo-box/ez-combo-box.js +45 -15
  49. package/dist/collection/components/ez-date-input/ez-date-input.js +19 -1
  50. package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +19 -1
  51. package/dist/collection/components/ez-dialog/ez-dialog.css +24 -21
  52. package/dist/collection/components/ez-dialog/ez-dialog.js +5 -2
  53. package/dist/collection/components/ez-double-list/doubleListHelper.js +9 -10
  54. package/dist/collection/components/ez-double-list/ez-double-list.css +6 -38
  55. package/dist/collection/components/ez-double-list/ez-double-list.js +168 -50
  56. package/dist/collection/components/ez-dropdown/ez-dropdown.js +1 -1
  57. package/dist/collection/components/ez-form/ez-form.js +124 -4
  58. package/dist/collection/components/ez-form-view/ez-form-view.css +8 -0
  59. package/dist/collection/components/ez-form-view/ez-form-view.js +21 -2
  60. package/dist/collection/components/ez-form-view/fieldbuilder/FieldBuilder.js +3 -1
  61. package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInputPlus.tpl.js +6 -0
  62. package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +148 -14
  63. package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +23 -4
  64. package/dist/collection/components/ez-grid/controller/ag-grid/GridEditionManager.js +30 -6
  65. package/dist/collection/components/ez-grid/controller/ag-grid/editor/EzCellEditor.js +2 -0
  66. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/SearchPlus.tpl.js +15 -0
  67. package/dist/collection/components/ez-grid/ez-grid.css +4 -0
  68. package/dist/collection/components/ez-grid/ez-grid.js +122 -15
  69. package/dist/collection/components/ez-grid/interfaces/IGridMode.js +1 -0
  70. package/dist/collection/components/ez-grid/interfaces/index.js +1 -0
  71. package/dist/collection/components/ez-grid/subcomponents/filter-column.js +14 -5
  72. package/dist/collection/components/ez-icon/ez-icon.js +28 -5
  73. package/dist/collection/components/ez-list/ez-list.js +2 -2
  74. package/dist/collection/components/ez-modal/ez-modal.js +5 -1
  75. package/dist/collection/components/ez-modal-container/ez-modal-container.css +1 -0
  76. package/dist/collection/components/ez-modal-container/ez-modal-container.js +6 -2
  77. package/dist/collection/components/ez-multi-selection-list/interfaces/IStaticOptionsFetchConfig.js +1 -0
  78. package/dist/collection/components/ez-number-input/ez-number-input.js +19 -1
  79. package/dist/collection/components/ez-popup/ez-popup.js +5 -1
  80. package/dist/collection/components/ez-search/ez-search.js +19 -1
  81. package/dist/collection/components/ez-search-plus/ez-search-plus.css +373 -0
  82. package/dist/collection/components/ez-search-plus/ez-search-plus.js +960 -0
  83. package/dist/collection/components/ez-search-plus/subcomponent/ez-search-result-list/ez-search-result-list.css +221 -0
  84. package/dist/collection/components/ez-search-plus/subcomponent/ez-search-result-list/ez-search-result-list.js +278 -0
  85. package/dist/collection/components/ez-skeleton/ez-skeleton.constants.js +25 -1
  86. package/dist/collection/components/ez-skeleton/ez-skeleton.css +122 -80
  87. package/dist/collection/components/ez-skeleton/ez-skeleton.js +210 -46
  88. package/dist/collection/components/ez-sortable-list/ez-sortable-list.css +226 -0
  89. package/dist/collection/components/ez-sortable-list/ez-sortable-list.js +582 -0
  90. package/dist/collection/components/ez-split-button/ez-split-button.css +1 -1
  91. package/dist/collection/components/ez-split-button/ez-split-button.js +87 -10
  92. package/dist/collection/components/ez-text-area/ez-text-area.js +47 -2
  93. package/dist/collection/components/ez-text-input/ez-text-input.css +27 -2
  94. package/dist/collection/components/ez-text-input/ez-text-input.js +124 -73
  95. package/dist/collection/components/ez-time-input/ez-time-input.js +19 -1
  96. package/dist/collection/components/ez-tooltip/ez-tooltip.css +54 -12
  97. package/dist/collection/components/ez-tooltip/ez-tooltip.js +240 -46
  98. package/dist/collection/utils/constants.js +2 -0
  99. package/dist/collection/utils/form/DataBinder.js +43 -14
  100. package/dist/collection/utils/form/interfaces/FormLayout.js +5 -0
  101. package/dist/collection/utils/form/interfaces/index.js +1 -1
  102. package/dist/collection/utils/form/test/DataBinder.test.js +14 -0
  103. package/dist/collection/utils/index.js +3 -0
  104. package/dist/collection/utils/search/types.js +7 -0
  105. package/dist/collection/utils/searchColumn/search-column.js +35 -0
  106. package/dist/custom-elements/index.d.ts +24 -0
  107. package/dist/custom-elements/index.js +6012 -469
  108. package/dist/esm/FormLayout-071d324c.js +27 -0
  109. package/dist/esm/constants-b036528f.js +7 -0
  110. package/dist/esm/ez-actions-button.entry.js +1 -1
  111. package/dist/esm/ez-avatar.entry.js +46 -0
  112. package/dist/esm/ez-card-item_2.entry.js +1 -1215
  113. package/dist/esm/ez-chart.entry.js +1 -1
  114. package/dist/esm/ez-check.entry.js +18 -10
  115. package/dist/esm/ez-collapsible-box.entry.js +1 -1
  116. package/dist/esm/ez-combo-box-list_3.entry.js +2 -2
  117. package/dist/esm/ez-combo-box.entry.js +10 -14
  118. package/dist/esm/ez-date-input.entry.js +2 -1
  119. package/dist/esm/ez-date-time-input.entry.js +2 -1
  120. package/dist/esm/ez-dialog.entry.js +6 -3
  121. package/dist/esm/ez-double-list.entry.js +115 -54
  122. package/dist/esm/{ez-dropdown_2.entry.js → ez-dropdown.entry.js} +2 -62
  123. package/dist/esm/ez-filter-input_2.entry.js +252 -0
  124. package/dist/esm/ez-form-view.entry.js +19 -11
  125. package/dist/esm/ez-form.entry.js +85 -4
  126. package/dist/esm/ez-grid.entry.js +1037 -140
  127. package/dist/esm/ez-icon.entry.js +11 -5
  128. package/dist/esm/ez-list.entry.js +2 -2
  129. package/dist/esm/ez-modal-container.entry.js +7 -3
  130. package/dist/esm/ez-modal.entry.js +5 -1
  131. package/dist/esm/ez-number-input.entry.js +2 -1
  132. package/dist/esm/ez-popup.entry.js +5 -1
  133. package/dist/esm/ez-search-plus.entry.js +393 -0
  134. package/dist/esm/ez-search-result-list.entry.js +93 -0
  135. package/dist/esm/ez-search.entry.js +4 -3
  136. package/dist/esm/ez-skeleton.entry.js +145 -0
  137. package/dist/esm/ez-sortable-list.entry.js +3506 -0
  138. package/dist/esm/ez-split-button.entry.js +15 -6
  139. package/dist/esm/ez-split-item.entry.js +1 -1
  140. package/dist/esm/ez-text-area.entry.js +24 -3
  141. package/dist/esm/ez-text-input.entry.js +83 -100
  142. package/dist/esm/ez-time-input.entry.js +2 -1
  143. package/dist/esm/ezui.js +1 -1
  144. package/dist/esm/filter-column.entry.js +14 -5
  145. package/dist/esm/floating-ui.dom.esm-5d3da819.js +1398 -0
  146. package/dist/esm/index-5a720e56.js +24 -8
  147. package/dist/esm/loader.js +1 -1
  148. package/dist/esm/{DataBinder-9c877244.js → search-column-35f4ad93.js} +69 -15
  149. package/dist/ezui/ezui.esm.js +1 -1
  150. package/dist/ezui/p-01b72d7e.entry.js +1 -0
  151. package/dist/ezui/p-07594da0.entry.js +1 -0
  152. package/dist/ezui/p-175154a0.js +1 -0
  153. package/dist/ezui/p-18e71523.entry.js +1 -0
  154. package/dist/ezui/p-1fefb37a.entry.js +1 -0
  155. package/dist/ezui/{p-cedeedf1.entry.js → p-220b9944.entry.js} +1 -1
  156. package/dist/ezui/p-28987410.entry.js +1 -0
  157. package/dist/ezui/p-2d10bb18.entry.js +1 -0
  158. package/dist/ezui/p-30ffb9ed.js +1 -0
  159. package/dist/ezui/p-4a876b8b.entry.js +1 -0
  160. package/dist/ezui/p-4e66eaeb.entry.js +1 -0
  161. package/dist/ezui/p-545bd5d5.entry.js +7 -0
  162. package/dist/ezui/p-5b85d3de.entry.js +1 -0
  163. package/dist/ezui/p-5eea9886.js +1 -0
  164. package/dist/ezui/p-61f5c258.entry.js +1 -0
  165. package/dist/ezui/p-6b2cc9b8.entry.js +1 -0
  166. package/dist/ezui/p-6b3fddee.entry.js +1 -0
  167. package/dist/ezui/p-700c1320.entry.js +1 -0
  168. package/dist/ezui/p-791f4e43.entry.js +1 -0
  169. package/dist/ezui/p-7db20f8e.entry.js +1 -0
  170. package/dist/ezui/p-7ec3f335.entry.js +1 -0
  171. package/dist/ezui/p-80764ff6.entry.js +309 -0
  172. package/dist/ezui/p-85d7b78a.entry.js +1 -0
  173. package/dist/ezui/p-90c90351.entry.js +1 -0
  174. package/dist/ezui/p-90e91173.entry.js +1 -0
  175. package/dist/ezui/p-926a0bde.entry.js +1 -0
  176. package/dist/ezui/p-97d94ef3.entry.js +1 -0
  177. package/dist/ezui/p-a11827ca.entry.js +1 -0
  178. package/dist/ezui/p-b3b3c99a.entry.js +1 -0
  179. package/dist/ezui/p-c8e6204f.entry.js +1 -0
  180. package/dist/ezui/p-d2290004.entry.js +1 -0
  181. package/dist/ezui/p-d4d6d5fe.entry.js +1 -0
  182. package/dist/ezui/p-ddb22a70.entry.js +1 -0
  183. package/dist/ezui/{p-866abc8e.entry.js → p-ddd0bd61.entry.js} +1 -1
  184. package/dist/ezui/p-e07e4671.js +1 -0
  185. package/dist/ezui/p-e4ae4ddb.entry.js +1 -0
  186. package/dist/ezui/{p-30571aaf.entry.js → p-e4ead194.entry.js} +1 -1
  187. package/dist/ezui/p-ed48a632.entry.js +1 -0
  188. package/dist/types/components/ez-avatar/ez-avatar.d.ts +24 -0
  189. package/dist/types/components/ez-check/ez-check.d.ts +7 -2
  190. package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +8 -2
  191. package/dist/types/components/ez-date-input/ez-date-input.d.ts +4 -0
  192. package/dist/types/components/ez-date-time-input/ez-date-time-input.d.ts +4 -0
  193. package/dist/types/components/ez-dialog/ez-dialog.d.ts +1 -0
  194. package/dist/types/components/ez-double-list/doubleListHelper.d.ts +4 -2
  195. package/dist/types/components/ez-double-list/ez-double-list.d.ts +60 -24
  196. package/dist/types/components/ez-dropdown/structure/DropdownItem.d.ts +4 -4
  197. package/dist/types/components/ez-form/ez-form.d.ts +23 -1
  198. package/dist/types/components/ez-form-view/ez-form-view.d.ts +4 -0
  199. package/dist/types/components/ez-form-view/fieldbuilder/templates/SearchInputPlus.tpl.d.ts +2 -0
  200. package/dist/types/components/ez-grid/controller/EzGridController.d.ts +9 -1
  201. package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +9 -1
  202. package/dist/types/components/ez-grid/controller/ag-grid/DataSource.d.ts +1 -0
  203. package/dist/types/components/ez-grid/controller/ag-grid/GridEditionManager.d.ts +1 -0
  204. package/dist/types/components/ez-grid/controller/ag-grid/editor/templates/SearchPlus.tpl.d.ts +3 -0
  205. package/dist/types/components/ez-grid/ez-grid.d.ts +17 -1
  206. package/dist/types/components/ez-grid/interfaces/IGridMode.d.ts +1 -0
  207. package/dist/types/components/ez-grid/interfaces/index.d.ts +1 -0
  208. package/dist/types/components/ez-grid/subcomponents/filter-column.d.ts +1 -0
  209. package/dist/types/components/ez-icon/ez-icon.d.ts +5 -0
  210. package/dist/types/components/ez-modal/ez-modal.d.ts +2 -0
  211. package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +2 -0
  212. package/dist/types/components/ez-multi-selection-list/interfaces/IMultiSelectionListDataSource.d.ts +2 -1
  213. package/dist/types/components/ez-multi-selection-list/interfaces/IStaticOptionsFetchConfig.d.ts +3 -0
  214. package/dist/types/components/ez-number-input/ez-number-input.d.ts +4 -0
  215. package/dist/types/components/ez-popup/ez-popup.d.ts +2 -0
  216. package/dist/types/components/ez-search/ez-search.d.ts +4 -0
  217. package/dist/types/components/ez-search-plus/ez-search-plus.d.ts +186 -0
  218. package/dist/types/components/ez-search-plus/subcomponent/ez-search-result-list/ez-search-result-list.d.ts +26 -0
  219. package/dist/types/components/ez-skeleton/ez-skeleton.constants.d.ts +55 -1
  220. package/dist/types/components/ez-skeleton/ez-skeleton.d.ts +50 -22
  221. package/dist/types/components/ez-sortable-list/ez-sortable-list.d.ts +91 -0
  222. package/dist/types/components/ez-split-button/ez-split-button.d.ts +14 -2
  223. package/dist/types/components/ez-text-area/ez-text-area.d.ts +8 -0
  224. package/dist/types/components/ez-text-input/ez-text-input.d.ts +21 -9
  225. package/dist/types/components/ez-time-input/ez-time-input.d.ts +4 -0
  226. package/dist/types/components/ez-tooltip/ez-tooltip.d.ts +41 -5
  227. package/dist/types/components.d.ts +786 -24
  228. package/dist/types/utils/constants.d.ts +2 -0
  229. package/dist/types/utils/form/DataBinder.d.ts +4 -2
  230. package/dist/types/utils/form/interfaces/FormLayout.d.ts +4 -0
  231. package/dist/types/utils/form/interfaces/index.d.ts +1 -0
  232. package/dist/types/utils/index.d.ts +3 -0
  233. package/dist/types/utils/search/types.d.ts +12 -0
  234. package/dist/types/utils/searchColumn/search-column.d.ts +9 -0
  235. package/package.json +7 -2
  236. package/react/components.d.ts +64 -60
  237. package/react/components.js +4 -0
  238. package/react/components.js.map +1 -1
  239. package/react/react-component-lib/createComponent.d.ts +1 -1
  240. package/react/react-component-lib/createComponent.js.map +1 -1
  241. package/react/react-component-lib/createOverlayComponent.js.map +1 -1
  242. package/react/react-component-lib/interfaces.js +1 -0
  243. package/react/react-component-lib/utils/attachProps.d.ts +1 -1
  244. package/react/react-component-lib/utils/attachProps.js.map +1 -1
  245. package/react/react-component-lib/utils/dev.js.map +1 -1
  246. package/react/react-component-lib/utils/index.d.ts +2 -2
  247. package/react/react-component-lib/utils/index.js.map +1 -1
  248. package/dist/cjs/ApplicationUtils-c9d1205c.js.gz +0 -0
  249. package/dist/cjs/CSSVarsUtils-f20973d1.js.gz +0 -0
  250. package/dist/cjs/CheckMode-ecb90b87.js.gz +0 -0
  251. package/dist/cjs/DataBinder-e92314c2.js.gz +0 -0
  252. package/dist/cjs/DialogType-2114c337.js.gz +0 -0
  253. package/dist/cjs/EzScrollDirection-b2c99895.js.gz +0 -0
  254. package/dist/cjs/FocusResolver-885f2173.js.gz +0 -0
  255. package/dist/cjs/ICustomRender-6fafffce.js +0 -13
  256. package/dist/cjs/ICustomRender-6fafffce.js.gz +0 -0
  257. package/dist/cjs/constants-2714478b.js.gz +0 -0
  258. package/dist/cjs/ez-actions-button.cjs.entry.js.gz +0 -0
  259. package/dist/cjs/ez-alert-list.cjs.entry.js.gz +0 -0
  260. package/dist/cjs/ez-alert.cjs.entry.js.gz +0 -0
  261. package/dist/cjs/ez-application.cjs.entry.js.gz +0 -0
  262. package/dist/cjs/ez-badge.cjs.entry.js.gz +0 -0
  263. package/dist/cjs/ez-breadcrumb.cjs.entry.js.gz +0 -0
  264. package/dist/cjs/ez-button.cjs.entry.js.gz +0 -0
  265. package/dist/cjs/ez-calendar.cjs.entry.js.gz +0 -0
  266. package/dist/cjs/ez-card-item_2.cjs.entry.js.gz +0 -0
  267. package/dist/cjs/ez-chart.cjs.entry.js.gz +0 -0
  268. package/dist/cjs/ez-check.cjs.entry.js.gz +0 -0
  269. package/dist/cjs/ez-chip.cjs.entry.js.gz +0 -0
  270. package/dist/cjs/ez-collapsible-box.cjs.entry.js.gz +0 -0
  271. package/dist/cjs/ez-combo-box-list_3.cjs.entry.js.gz +0 -0
  272. package/dist/cjs/ez-combo-box.cjs.entry.js.gz +0 -0
  273. package/dist/cjs/ez-date-input.cjs.entry.js.gz +0 -0
  274. package/dist/cjs/ez-date-time-input.cjs.entry.js.gz +0 -0
  275. package/dist/cjs/ez-dialog.cjs.entry.js.gz +0 -0
  276. package/dist/cjs/ez-double-list.cjs.entry.js.gz +0 -0
  277. package/dist/cjs/ez-dropdown_2.cjs.entry.js.gz +0 -0
  278. package/dist/cjs/ez-file-item.cjs.entry.js.gz +0 -0
  279. package/dist/cjs/ez-filter-input.cjs.entry.js +0 -129
  280. package/dist/cjs/ez-filter-input.cjs.entry.js.gz +0 -0
  281. package/dist/cjs/ez-form-view.cjs.entry.js.gz +0 -0
  282. package/dist/cjs/ez-form.cjs.entry.js.gz +0 -0
  283. package/dist/cjs/ez-grid.cjs.entry.js.gz +0 -0
  284. package/dist/cjs/ez-guide-navigator.cjs.entry.js.gz +0 -0
  285. package/dist/cjs/ez-icon.cjs.entry.js.gz +0 -0
  286. package/dist/cjs/ez-list.cjs.entry.js.gz +0 -0
  287. package/dist/cjs/ez-loading-bar.cjs.entry.js.gz +0 -0
  288. package/dist/cjs/ez-modal-container.cjs.entry.js.gz +0 -0
  289. package/dist/cjs/ez-modal.cjs.entry.js.gz +0 -0
  290. package/dist/cjs/ez-multi-selection-list.cjs.entry.js.gz +0 -0
  291. package/dist/cjs/ez-number-input.cjs.entry.js.gz +0 -0
  292. package/dist/cjs/ez-popover-plus_3.cjs.entry.js.gz +0 -0
  293. package/dist/cjs/ez-popover.cjs.entry.js.gz +0 -0
  294. package/dist/cjs/ez-popup.cjs.entry.js.gz +0 -0
  295. package/dist/cjs/ez-radio-button.cjs.entry.js.gz +0 -0
  296. package/dist/cjs/ez-scroller_2.cjs.entry.js.gz +0 -0
  297. package/dist/cjs/ez-search.cjs.entry.js.gz +0 -0
  298. package/dist/cjs/ez-sidebar-navigator.cjs.entry.js.gz +0 -0
  299. package/dist/cjs/ez-split-button.cjs.entry.js.gz +0 -0
  300. package/dist/cjs/ez-split-item.cjs.entry.js.gz +0 -0
  301. package/dist/cjs/ez-split-panel.cjs.entry.js.gz +0 -0
  302. package/dist/cjs/ez-tabselector.cjs.entry.js.gz +0 -0
  303. package/dist/cjs/ez-text-area.cjs.entry.js.gz +0 -0
  304. package/dist/cjs/ez-text-input.cjs.entry.js.gz +0 -0
  305. package/dist/cjs/ez-time-input.cjs.entry.js.gz +0 -0
  306. package/dist/cjs/ez-toast.cjs.entry.js.gz +0 -0
  307. package/dist/cjs/ez-tooltip.cjs.entry.js +0 -55
  308. package/dist/cjs/ez-tooltip.cjs.entry.js.gz +0 -0
  309. package/dist/cjs/ez-tree.cjs.entry.js.gz +0 -0
  310. package/dist/cjs/ez-upload.cjs.entry.js.gz +0 -0
  311. package/dist/cjs/ez-view-stack.cjs.entry.js.gz +0 -0
  312. package/dist/cjs/ezListHelper-0d3970b4.js.gz +0 -0
  313. package/dist/cjs/ezui.cjs.js.gz +0 -0
  314. package/dist/cjs/filter-column.cjs.entry.js.gz +0 -0
  315. package/dist/cjs/index-9e5554cb.js.gz +0 -0
  316. package/dist/cjs/index.cjs.js.gz +0 -0
  317. package/dist/cjs/loader.cjs.js.gz +0 -0
  318. package/dist/cjs/searchFormatters-b7e1ed1e.js.gz +0 -0
  319. package/dist/collection/components/ez-actions-button/ez-actions-button.css.gz +0 -0
  320. package/dist/collection/components/ez-actions-button/ez-actions-button.js.gz +0 -0
  321. package/dist/collection/components/ez-alert/ez-alert.css.gz +0 -0
  322. package/dist/collection/components/ez-alert/ez-alert.js.gz +0 -0
  323. package/dist/collection/components/ez-alert-list/ez-alert-list.css.gz +0 -0
  324. package/dist/collection/components/ez-alert-list/ez-alert-list.js.gz +0 -0
  325. package/dist/collection/components/ez-application/ez-application.css.gz +0 -0
  326. package/dist/collection/components/ez-application/ez-application.js.gz +0 -0
  327. package/dist/collection/components/ez-badge/enum/sizes.js.gz +0 -0
  328. package/dist/collection/components/ez-badge/ez-badge.css.gz +0 -0
  329. package/dist/collection/components/ez-badge/ez-badge.js.gz +0 -0
  330. package/dist/collection/components/ez-badge/interfaces/IPosition.js.gz +0 -0
  331. package/dist/collection/components/ez-breadcrumb/ez-breadcrumb.css.gz +0 -0
  332. package/dist/collection/components/ez-breadcrumb/ez-breadcrumb.js.gz +0 -0
  333. package/dist/collection/components/ez-breadcrumb/subcomponents/breadcrumb-item.js.gz +0 -0
  334. package/dist/collection/components/ez-button/ez-button.css.gz +0 -0
  335. package/dist/collection/components/ez-button/ez-button.js.gz +0 -0
  336. package/dist/collection/components/ez-calendar/ez-calendar.css.gz +0 -0
  337. package/dist/collection/components/ez-calendar/ez-calendar.js.gz +0 -0
  338. package/dist/collection/components/ez-card-item/ez-card-item.css.gz +0 -0
  339. package/dist/collection/components/ez-card-item/ez-card-item.js.gz +0 -0
  340. package/dist/collection/components/ez-chart/components/BarChart.js.gz +0 -0
  341. package/dist/collection/components/ez-chart/components/ColumnChart.js.gz +0 -0
  342. package/dist/collection/components/ez-chart/components/DonutChart.js.gz +0 -0
  343. package/dist/collection/components/ez-chart/components/LineChart.js.gz +0 -0
  344. package/dist/collection/components/ez-chart/components/PieChart.js.gz +0 -0
  345. package/dist/collection/components/ez-chart/components/index.js.gz +0 -0
  346. package/dist/collection/components/ez-chart/ez-chart.css.gz +0 -0
  347. package/dist/collection/components/ez-chart/ez-chart.js.gz +0 -0
  348. package/dist/collection/components/ez-chart/interfaces/ChartAxis.js.gz +0 -0
  349. package/dist/collection/components/ez-chart/interfaces/ChartContext.js.gz +0 -0
  350. package/dist/collection/components/ez-chart/interfaces/ChartOptions.js.gz +0 -0
  351. package/dist/collection/components/ez-chart/interfaces/ChartSerie.js.gz +0 -0
  352. package/dist/collection/components/ez-chart/interfaces/ChartStrategies.js.gz +0 -0
  353. package/dist/collection/components/ez-chart/interfaces/ChartType.js.gz +0 -0
  354. package/dist/collection/components/ez-chart/interfaces/ChartTypeValue.js.gz +0 -0
  355. package/dist/collection/components/ez-chart/interfaces/index.js.gz +0 -0
  356. package/dist/collection/components/ez-chart/test/mock-chart.js.gz +0 -0
  357. package/dist/collection/components/ez-chart/types/BaseHighChartsRender.js.gz +0 -0
  358. package/dist/collection/components/ez-check/CheckMode.js.gz +0 -0
  359. package/dist/collection/components/ez-check/ez-check.css.gz +0 -0
  360. package/dist/collection/components/ez-check/ez-check.js.gz +0 -0
  361. package/dist/collection/components/ez-chip/ez-chip.css.gz +0 -0
  362. package/dist/collection/components/ez-chip/ez-chip.js.gz +0 -0
  363. package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css.gz +0 -0
  364. package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.js.gz +0 -0
  365. package/dist/collection/components/ez-combo-box/ez-combo-box-list/ez-combo-box-list.css.gz +0 -0
  366. package/dist/collection/components/ez-combo-box/ez-combo-box-list/ez-combo-box-list.js.gz +0 -0
  367. package/dist/collection/components/ez-combo-box/ez-combo-box.css.gz +0 -0
  368. package/dist/collection/components/ez-combo-box/ez-combo-box.js.gz +0 -0
  369. package/dist/collection/components/ez-date-input/ez-date-input.css.gz +0 -0
  370. package/dist/collection/components/ez-date-input/ez-date-input.js.gz +0 -0
  371. package/dist/collection/components/ez-date-time-input/ez-date-time-input.css.gz +0 -0
  372. package/dist/collection/components/ez-date-time-input/ez-date-time-input.js.gz +0 -0
  373. package/dist/collection/components/ez-dialog/DialogType.js.gz +0 -0
  374. package/dist/collection/components/ez-dialog/ez-dialog.css.gz +0 -0
  375. package/dist/collection/components/ez-dialog/ez-dialog.js.gz +0 -0
  376. package/dist/collection/components/ez-double-list/doubleListHelper.js.gz +0 -0
  377. package/dist/collection/components/ez-double-list/ez-double-list.css.gz +0 -0
  378. package/dist/collection/components/ez-double-list/ez-double-list.js.gz +0 -0
  379. package/dist/collection/components/ez-dropdown/ez-dropdown.css.gz +0 -0
  380. package/dist/collection/components/ez-dropdown/ez-dropdown.js.gz +0 -0
  381. package/dist/collection/components/ez-dropdown/structure/DropdownItem.js.gz +0 -0
  382. package/dist/collection/components/ez-dropdown/structure/SubmenuControl.js.gz +0 -0
  383. package/dist/collection/components/ez-file-item/ez-file-item.css.gz +0 -0
  384. package/dist/collection/components/ez-file-item/ez-file-item.js.gz +0 -0
  385. package/dist/collection/components/ez-filter-input/ez-filter-input.css.gz +0 -0
  386. package/dist/collection/components/ez-filter-input/ez-filter-input.js.gz +0 -0
  387. package/dist/collection/components/ez-form/ez-form.css.gz +0 -0
  388. package/dist/collection/components/ez-form/ez-form.js.gz +0 -0
  389. package/dist/collection/components/ez-form/store/form.slice.js.gz +0 -0
  390. package/dist/collection/components/ez-form-view/custom-input/ez-custom-form-input.js.gz +0 -0
  391. package/dist/collection/components/ez-form-view/ez-form-view.css.gz +0 -0
  392. package/dist/collection/components/ez-form-view/ez-form-view.js.gz +0 -0
  393. package/dist/collection/components/ez-form-view/fieldbuilder/FieldBuilder.js.gz +0 -0
  394. package/dist/collection/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.js.gz +0 -0
  395. package/dist/collection/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.js.gz +0 -0
  396. package/dist/collection/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.js.gz +0 -0
  397. package/dist/collection/components/ez-form-view/fieldbuilder/templates/FileInput.tpl.js.gz +0 -0
  398. package/dist/collection/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.js.gz +0 -0
  399. package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.js.gz +0 -0
  400. package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextArea.tpl.js.gz +0 -0
  401. package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.js.gz +0 -0
  402. package/dist/collection/components/ez-form-view/interfaces/IFormViewField.js.gz +0 -0
  403. package/dist/collection/components/ez-form-view/interfaces/index.js.gz +0 -0
  404. package/dist/collection/components/ez-form-view/structure/index.js.gz +0 -0
  405. package/dist/collection/components/ez-grid/controller/EzGridController.js.gz +0 -0
  406. package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js.gz +0 -0
  407. package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js.gz +0 -0
  408. package/dist/collection/components/ez-grid/controller/ag-grid/DataSourceInterceptor.js.gz +0 -0
  409. package/dist/collection/components/ez-grid/controller/ag-grid/GridEditionManager.js.gz +0 -0
  410. package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.js.gz +0 -0
  411. package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomCellRender.js.gz +0 -0
  412. package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.js.gz +0 -0
  413. package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRendererStatus.js.gz +0 -0
  414. package/dist/collection/components/ez-grid/controller/ag-grid/components/selectionHeader.js.gz +0 -0
  415. package/dist/collection/components/ez-grid/controller/ag-grid/components/test/constants/EzGridCustomCellEditorConstants.js.gz +0 -0
  416. package/dist/collection/components/ez-grid/controller/ag-grid/components/test/constants/EzGridCustomCellRenderConstants.js.gz +0 -0
  417. package/dist/collection/components/ez-grid/controller/ag-grid/editor/EzCellEditor.js.gz +0 -0
  418. package/dist/collection/components/ez-grid/controller/ag-grid/editor/EzCellRender.js.gz +0 -0
  419. package/dist/collection/components/ez-grid/controller/ag-grid/editor/GridEditorUtils.js.gz +0 -0
  420. package/dist/collection/components/ez-grid/controller/ag-grid/editor/IEditorMetadata.js.gz +0 -0
  421. package/dist/collection/components/ez-grid/controller/ag-grid/editor/IUICellEditor.js.gz +0 -0
  422. package/dist/collection/components/ez-grid/controller/ag-grid/editor/IUICellRender.js.gz +0 -0
  423. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/ComboBox.tpl.js.gz +0 -0
  424. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/DateInput.tpl.js.gz +0 -0
  425. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/NumberInput.tpl.js.gz +0 -0
  426. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/Search.tpl.js.gz +0 -0
  427. package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/TextInput.tpl.js.gz +0 -0
  428. package/dist/collection/components/ez-grid/controller/ag-grid/i18n/pt-BR.js.gz +0 -0
  429. package/dist/collection/components/ez-grid/controller/ag-grid/mock/Server.js.gz +0 -0
  430. package/dist/collection/components/ez-grid/controller/ag-grid/test/constants/GridEditionMock.js.gz +0 -0
  431. package/dist/collection/components/ez-grid/ez-grid.css.gz +0 -0
  432. package/dist/collection/components/ez-grid/ez-grid.js.gz +0 -0
  433. package/dist/collection/components/ez-grid/interfaces/IColumnFilter.js.gz +0 -0
  434. package/dist/collection/components/ez-grid/interfaces/ICustomFormatter.js.gz +0 -0
  435. package/dist/collection/components/ez-grid/interfaces/ISelection.js.gz +0 -0
  436. package/dist/collection/components/ez-grid/interfaces/ISelectionToastConfig.js.gz +0 -0
  437. package/dist/collection/components/ez-grid/interfaces/index.js.gz +0 -0
  438. package/dist/collection/components/ez-grid/subcomponents/filter-column.css.gz +0 -0
  439. package/dist/collection/components/ez-grid/subcomponents/filter-column.js.gz +0 -0
  440. package/dist/collection/components/ez-grid/subcomponents/selection-counter.js.gz +0 -0
  441. package/dist/collection/components/ez-grid/subcomponents/utils/selectionCounterUtils.js.gz +0 -0
  442. package/dist/collection/components/ez-grid/test/resources/gridDataUnit.js.gz +0 -0
  443. package/dist/collection/components/ez-grid/utils/ColumnFilterManager.js.gz +0 -0
  444. package/dist/collection/components/ez-grid/utils/InMemoryFilterColumnDataSource.js.gz +0 -0
  445. package/dist/collection/components/ez-grid/utils/index.js.gz +0 -0
  446. package/dist/collection/components/ez-guide-navigator/ez-guide-navigator.css.gz +0 -0
  447. package/dist/collection/components/ez-guide-navigator/ez-guide-navigator.js.gz +0 -0
  448. package/dist/collection/components/ez-guide-navigator/interfaces/IGuideItem.js.gz +0 -0
  449. package/dist/collection/components/ez-guide-navigator/interfaces/index.js.gz +0 -0
  450. package/dist/collection/components/ez-icon/ez-icon.css.gz +0 -0
  451. package/dist/collection/components/ez-icon/ez-icon.js.gz +0 -0
  452. package/dist/collection/components/ez-list/ez-list.css.gz +0 -0
  453. package/dist/collection/components/ez-list/ez-list.js.gz +0 -0
  454. package/dist/collection/components/ez-list/ezListHelper.js.gz +0 -0
  455. package/dist/collection/components/ez-loading-bar/ez-loading-bar.css.gz +0 -0
  456. package/dist/collection/components/ez-loading-bar/ez-loading-bar.js.gz +0 -0
  457. package/dist/collection/components/ez-modal/ez-modal.css.gz +0 -0
  458. package/dist/collection/components/ez-modal/ez-modal.js.gz +0 -0
  459. package/dist/collection/components/ez-modal-container/ez-modal-container.css.gz +0 -0
  460. package/dist/collection/components/ez-modal-container/ez-modal-container.js.gz +0 -0
  461. package/dist/collection/components/ez-modal-container/index.js.gz +0 -0
  462. package/dist/collection/components/ez-modal-container/modal-action.js.gz +0 -0
  463. package/dist/collection/components/ez-modal-container/modal-button-status.js.gz +0 -0
  464. package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.css.gz +0 -0
  465. package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.js.gz +0 -0
  466. package/dist/collection/components/ez-multi-selection-list/interfaces/IMultiSelectionListDataSource.js.gz +0 -0
  467. package/dist/collection/components/ez-multi-selection-list/interfaces/IMultiSelectionOption.js.gz +0 -0
  468. package/dist/collection/components/ez-multi-selection-list/subcomponents/multi-selection-box-message.css.gz +0 -0
  469. package/dist/collection/components/ez-multi-selection-list/subcomponents/multi-selection-box-message.js.gz +0 -0
  470. package/dist/collection/components/ez-number-input/ez-number-input.css.gz +0 -0
  471. package/dist/collection/components/ez-number-input/ez-number-input.js.gz +0 -0
  472. package/dist/collection/components/ez-popover/ez-popover.css.gz +0 -0
  473. package/dist/collection/components/ez-popover/ez-popover.js.gz +0 -0
  474. package/dist/collection/components/ez-popover-plus/ez-popover-plus.css.gz +0 -0
  475. package/dist/collection/components/ez-popover-plus/ez-popover-plus.js.gz +0 -0
  476. package/dist/collection/components/ez-popover-plus/subcomponent/ez-popover-core.css.gz +0 -0
  477. package/dist/collection/components/ez-popover-plus/subcomponent/ez-popover-core.js.gz +0 -0
  478. package/dist/collection/components/ez-popup/ez-popup.css.gz +0 -0
  479. package/dist/collection/components/ez-popup/ez-popup.js.gz +0 -0
  480. package/dist/collection/components/ez-radio-button/ez-radio-button.css.gz +0 -0
  481. package/dist/collection/components/ez-radio-button/ez-radio-button.js.gz +0 -0
  482. package/dist/collection/components/ez-scroller/EzScrollDirection.js.gz +0 -0
  483. package/dist/collection/components/ez-scroller/ez-scroller.css.gz +0 -0
  484. package/dist/collection/components/ez-scroller/ez-scroller.js.gz +0 -0
  485. package/dist/collection/components/ez-search/ez-search.css.gz +0 -0
  486. package/dist/collection/components/ez-search/ez-search.js.gz +0 -0
  487. package/dist/collection/components/ez-search/subcomponent/search-list/search-list.css.gz +0 -0
  488. package/dist/collection/components/ez-search/subcomponent/search-list/search-list.js.gz +0 -0
  489. package/dist/collection/components/ez-search/utils/searchFormatters.js.gz +0 -0
  490. package/dist/collection/components/ez-sidebar-button/ez-sidebar-button.css.gz +0 -0
  491. package/dist/collection/components/ez-sidebar-button/ez-sidebar-button.js.gz +0 -0
  492. package/dist/collection/components/ez-sidebar-navigator/ez-sidebar-navigator.css.gz +0 -0
  493. package/dist/collection/components/ez-sidebar-navigator/ez-sidebar-navigator.js.gz +0 -0
  494. package/dist/collection/components/ez-sidebar-navigator/interfaces/ModeMenuEnum.js.gz +0 -0
  495. package/dist/collection/components/ez-sidebar-navigator/interfaces/SizeMenuEnum.js.gz +0 -0
  496. package/dist/collection/components/ez-sidebar-navigator/interfaces/TypeMenuEnum.js.gz +0 -0
  497. package/dist/collection/components/ez-sidebar-navigator/interfaces/index.js.gz +0 -0
  498. package/dist/collection/components/ez-sidebar-navigator/messages/constants.js.gz +0 -0
  499. package/dist/collection/components/ez-skeleton/ez-skeleton.constants.js.gz +0 -0
  500. package/dist/collection/components/ez-skeleton/ez-skeleton.css.gz +0 -0
  501. package/dist/collection/components/ez-skeleton/ez-skeleton.js.gz +0 -0
  502. package/dist/collection/components/ez-split-button/ez-split-button.css.gz +0 -0
  503. package/dist/collection/components/ez-split-button/ez-split-button.js.gz +0 -0
  504. package/dist/collection/components/ez-split-button/test/dropdownItems.js.gz +0 -0
  505. package/dist/collection/components/ez-split-panel/ez-split-panel.css.gz +0 -0
  506. package/dist/collection/components/ez-split-panel/ez-split-panel.js.gz +0 -0
  507. package/dist/collection/components/ez-split-panel/interfaces/IPanelSizeInfo.js.gz +0 -0
  508. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css.gz +0 -0
  509. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.js.gz +0 -0
  510. package/dist/collection/components/ez-tabselector/ez-tabselector.css.gz +0 -0
  511. package/dist/collection/components/ez-tabselector/ez-tabselector.js.gz +0 -0
  512. package/dist/collection/components/ez-text-area/ez-text-area.css.gz +0 -0
  513. package/dist/collection/components/ez-text-area/ez-text-area.js.gz +0 -0
  514. package/dist/collection/components/ez-text-edit/ez-text-edit.css.gz +0 -0
  515. package/dist/collection/components/ez-text-edit/ez-text-edit.js.gz +0 -0
  516. package/dist/collection/components/ez-text-input/ez-text-input.css.gz +0 -0
  517. package/dist/collection/components/ez-text-input/ez-text-input.js.gz +0 -0
  518. package/dist/collection/components/ez-time-input/ez-time-input.css.gz +0 -0
  519. package/dist/collection/components/ez-time-input/ez-time-input.js.gz +0 -0
  520. package/dist/collection/components/ez-toast/ez-toast.css.gz +0 -0
  521. package/dist/collection/components/ez-toast/ez-toast.js.gz +0 -0
  522. package/dist/collection/components/ez-tooltip/ez-tooltip.css.gz +0 -0
  523. package/dist/collection/components/ez-tooltip/ez-tooltip.js.gz +0 -0
  524. package/dist/collection/components/ez-tree/ez-tree.css.gz +0 -0
  525. package/dist/collection/components/ez-tree/ez-tree.js.gz +0 -0
  526. package/dist/collection/components/ez-tree/interfaces/ITree.js.gz +0 -0
  527. package/dist/collection/components/ez-tree/interfaces/ITreeItem.js.gz +0 -0
  528. package/dist/collection/components/ez-tree/interfaces/ITreeItemBadge.js.gz +0 -0
  529. package/dist/collection/components/ez-tree/subcomponents/DefaultIconResolver.js.gz +0 -0
  530. package/dist/collection/components/ez-tree/subcomponents/DefaultTooltipResolver.js.gz +0 -0
  531. package/dist/collection/components/ez-tree/subcomponents/TreeItem.js.gz +0 -0
  532. package/dist/collection/components/ez-tree/subcomponents/index.js.gz +0 -0
  533. package/dist/collection/components/ez-tree/types/Node.js.gz +0 -0
  534. package/dist/collection/components/ez-tree/types/Tree.js.gz +0 -0
  535. package/dist/collection/components/ez-upload/RemoteFile.js.gz +0 -0
  536. package/dist/collection/components/ez-upload/ez-upload.css.gz +0 -0
  537. package/dist/collection/components/ez-upload/ez-upload.js.gz +0 -0
  538. package/dist/collection/components/ez-view-stack/ez-view-stack.css.gz +0 -0
  539. package/dist/collection/components/ez-view-stack/ez-view-stack.js.gz +0 -0
  540. package/dist/collection/index.js.gz +0 -0
  541. package/dist/collection/servidor.js.gz +0 -0
  542. package/dist/collection/setupTests.js.gz +0 -0
  543. package/dist/collection/sw.js.gz +0 -0
  544. package/dist/collection/utils/ApplicationUtils.js.gz +0 -0
  545. package/dist/collection/utils/AssetsUtils.js.gz +0 -0
  546. package/dist/collection/utils/CSSVarsUtils.js.gz +0 -0
  547. package/dist/collection/utils/FocusResolver.js.gz +0 -0
  548. package/dist/collection/utils/ResponsiveInputUtils.js +0 -26
  549. package/dist/collection/utils/ResponsiveInputUtils.js.gz +0 -0
  550. package/dist/collection/utils/constants.js.gz +0 -0
  551. package/dist/collection/utils/customEditor/interfaces/ICustomEditor.js.gz +0 -0
  552. package/dist/collection/utils/customEditor/interfaces/ICustomEditorInfo.js.gz +0 -0
  553. package/dist/collection/utils/customRender/interfaces/ICustomRender.js.gz +0 -0
  554. package/dist/collection/utils/customRender/interfaces/ICustomRenderInfo.js.gz +0 -0
  555. package/dist/collection/utils/form/DataBinder.js.gz +0 -0
  556. package/dist/collection/utils/form/FormMetadata.js.gz +0 -0
  557. package/dist/collection/utils/form/index.js.gz +0 -0
  558. package/dist/collection/utils/form/interfaces/IDefaultConfig.js.gz +0 -0
  559. package/dist/collection/utils/form/interfaces/IFormCardConfig.js.gz +0 -0
  560. package/dist/collection/utils/form/interfaces/IFormConfig.js.gz +0 -0
  561. package/dist/collection/utils/form/interfaces/IFormSheetMetadata.js.gz +0 -0
  562. package/dist/collection/utils/form/interfaces/ISummaryField.js.gz +0 -0
  563. package/dist/collection/utils/form/interfaces/ITabConfig.js.gz +0 -0
  564. package/dist/collection/utils/form/interfaces/index.js.gz +0 -0
  565. package/dist/collection/utils/form/test/DataBinder.test.js.gz +0 -0
  566. package/dist/collection/utils/form/test/resources/metadataTest.js.gz +0 -0
  567. package/dist/collection/utils/index.js.gz +0 -0
  568. package/dist/collection/utils/interfaces/AbstractFieldMetadata.js.gz +0 -0
  569. package/dist/collection/utils/interfaces/IAction.js.gz +0 -0
  570. package/dist/collection/utils/interfaces/IFieldConfig.js.gz +0 -0
  571. package/dist/collection/utils/mock/ez-upload-mock.js.gz +0 -0
  572. package/dist/collection/utils/utils.js.gz +0 -0
  573. package/dist/collection/utils/validators/recordvalidator/IInvalidCells.js.gz +0 -0
  574. package/dist/collection/utils/validators/recordvalidator/IInvalidField.js.gz +0 -0
  575. package/dist/collection/utils/validators/recordvalidator/IRecordValidator.js.gz +0 -0
  576. package/dist/collection/utils/validators/recordvalidator/IValidationResult.js.gz +0 -0
  577. package/dist/collection/utils/validators/recordvalidator/IValidationSource.js.gz +0 -0
  578. package/dist/collection/utils/validators/recordvalidator/RecordValidationProcessor.js.gz +0 -0
  579. package/dist/custom-elements/index.js.gz +0 -0
  580. package/dist/esm/ApplicationUtils-eaf91331.js.gz +0 -0
  581. package/dist/esm/CSSVarsUtils-acba92d7.js.gz +0 -0
  582. package/dist/esm/CheckMode-bdb2ec19.js.gz +0 -0
  583. package/dist/esm/DataBinder-9c877244.js.gz +0 -0
  584. package/dist/esm/DialogType-54a62731.js.gz +0 -0
  585. package/dist/esm/EzScrollDirection-2df26c93.js.gz +0 -0
  586. package/dist/esm/FocusResolver-1ccbf850.js.gz +0 -0
  587. package/dist/esm/ICustomRender-875b5a40.js +0 -13
  588. package/dist/esm/ICustomRender-875b5a40.js.gz +0 -0
  589. package/dist/esm/constants-4e0d35b7.js +0 -5
  590. package/dist/esm/constants-4e0d35b7.js.gz +0 -0
  591. package/dist/esm/ez-actions-button.entry.js.gz +0 -0
  592. package/dist/esm/ez-alert-list.entry.js.gz +0 -0
  593. package/dist/esm/ez-alert.entry.js.gz +0 -0
  594. package/dist/esm/ez-application.entry.js.gz +0 -0
  595. package/dist/esm/ez-badge.entry.js.gz +0 -0
  596. package/dist/esm/ez-breadcrumb.entry.js.gz +0 -0
  597. package/dist/esm/ez-button.entry.js.gz +0 -0
  598. package/dist/esm/ez-calendar.entry.js.gz +0 -0
  599. package/dist/esm/ez-card-item_2.entry.js.gz +0 -0
  600. package/dist/esm/ez-chart.entry.js.gz +0 -0
  601. package/dist/esm/ez-check.entry.js.gz +0 -0
  602. package/dist/esm/ez-chip.entry.js.gz +0 -0
  603. package/dist/esm/ez-collapsible-box.entry.js.gz +0 -0
  604. package/dist/esm/ez-combo-box-list_3.entry.js.gz +0 -0
  605. package/dist/esm/ez-combo-box.entry.js.gz +0 -0
  606. package/dist/esm/ez-date-input.entry.js.gz +0 -0
  607. package/dist/esm/ez-date-time-input.entry.js.gz +0 -0
  608. package/dist/esm/ez-dialog.entry.js.gz +0 -0
  609. package/dist/esm/ez-double-list.entry.js.gz +0 -0
  610. package/dist/esm/ez-dropdown_2.entry.js.gz +0 -0
  611. package/dist/esm/ez-file-item.entry.js.gz +0 -0
  612. package/dist/esm/ez-filter-input.entry.js +0 -125
  613. package/dist/esm/ez-filter-input.entry.js.gz +0 -0
  614. package/dist/esm/ez-form-view.entry.js.gz +0 -0
  615. package/dist/esm/ez-form.entry.js.gz +0 -0
  616. package/dist/esm/ez-grid.entry.js.gz +0 -0
  617. package/dist/esm/ez-guide-navigator.entry.js.gz +0 -0
  618. package/dist/esm/ez-icon.entry.js.gz +0 -0
  619. package/dist/esm/ez-list.entry.js.gz +0 -0
  620. package/dist/esm/ez-loading-bar.entry.js.gz +0 -0
  621. package/dist/esm/ez-modal-container.entry.js.gz +0 -0
  622. package/dist/esm/ez-modal.entry.js.gz +0 -0
  623. package/dist/esm/ez-multi-selection-list.entry.js.gz +0 -0
  624. package/dist/esm/ez-number-input.entry.js.gz +0 -0
  625. package/dist/esm/ez-popover-plus_3.entry.js.gz +0 -0
  626. package/dist/esm/ez-popover.entry.js.gz +0 -0
  627. package/dist/esm/ez-popup.entry.js.gz +0 -0
  628. package/dist/esm/ez-radio-button.entry.js.gz +0 -0
  629. package/dist/esm/ez-scroller_2.entry.js.gz +0 -0
  630. package/dist/esm/ez-search.entry.js.gz +0 -0
  631. package/dist/esm/ez-sidebar-navigator.entry.js.gz +0 -0
  632. package/dist/esm/ez-split-button.entry.js.gz +0 -0
  633. package/dist/esm/ez-split-item.entry.js.gz +0 -0
  634. package/dist/esm/ez-split-panel.entry.js.gz +0 -0
  635. package/dist/esm/ez-tabselector.entry.js.gz +0 -0
  636. package/dist/esm/ez-text-area.entry.js.gz +0 -0
  637. package/dist/esm/ez-text-input.entry.js.gz +0 -0
  638. package/dist/esm/ez-time-input.entry.js.gz +0 -0
  639. package/dist/esm/ez-toast.entry.js.gz +0 -0
  640. package/dist/esm/ez-tooltip.entry.js +0 -51
  641. package/dist/esm/ez-tooltip.entry.js.gz +0 -0
  642. package/dist/esm/ez-tree.entry.js.gz +0 -0
  643. package/dist/esm/ez-upload.entry.js.gz +0 -0
  644. package/dist/esm/ez-view-stack.entry.js.gz +0 -0
  645. package/dist/esm/ezListHelper-00fb9b8d.js.gz +0 -0
  646. package/dist/esm/ezui.js.gz +0 -0
  647. package/dist/esm/filter-column.entry.js.gz +0 -0
  648. package/dist/esm/index-5a720e56.js.gz +0 -0
  649. package/dist/esm/index.js.gz +0 -0
  650. package/dist/esm/loader.js.gz +0 -0
  651. package/dist/esm/polyfills/core-js.js.gz +0 -0
  652. package/dist/esm/polyfills/css-shim.js.gz +0 -0
  653. package/dist/esm/polyfills/dom.js.gz +0 -0
  654. package/dist/esm/polyfills/es5-html-element.js.gz +0 -0
  655. package/dist/esm/polyfills/index.js.gz +0 -0
  656. package/dist/esm/polyfills/system.js.gz +0 -0
  657. package/dist/esm/searchFormatters-8229207e.js.gz +0 -0
  658. package/dist/ezui/ezui.esm.js.gz +0 -0
  659. package/dist/ezui/index.esm.js.gz +0 -0
  660. package/dist/ezui/p-000159dc.entry.js.gz +0 -0
  661. package/dist/ezui/p-0378416a.entry.js.gz +0 -0
  662. package/dist/ezui/p-05e1f4e7.js +0 -1
  663. package/dist/ezui/p-05e1f4e7.js.gz +0 -0
  664. package/dist/ezui/p-06f1b8e4.entry.js.gz +0 -0
  665. package/dist/ezui/p-0cfbbe82.entry.js +0 -1
  666. package/dist/ezui/p-0cfbbe82.entry.js.gz +0 -0
  667. package/dist/ezui/p-11bfeca3.entry.js.gz +0 -0
  668. package/dist/ezui/p-1bb62d6b.entry.js +0 -1
  669. package/dist/ezui/p-1bb62d6b.entry.js.gz +0 -0
  670. package/dist/ezui/p-2069c78a.entry.js +0 -1
  671. package/dist/ezui/p-2069c78a.entry.js.gz +0 -0
  672. package/dist/ezui/p-2187f86c.js.gz +0 -0
  673. package/dist/ezui/p-23dab72f.entry.js +0 -1
  674. package/dist/ezui/p-23dab72f.entry.js.gz +0 -0
  675. package/dist/ezui/p-24b42f3d.entry.js +0 -1
  676. package/dist/ezui/p-24b42f3d.entry.js.gz +0 -0
  677. package/dist/ezui/p-2f351332.entry.js.gz +0 -0
  678. package/dist/ezui/p-30571aaf.entry.js.gz +0 -0
  679. package/dist/ezui/p-40a60148.js.gz +0 -0
  680. package/dist/ezui/p-41652617.entry.js +0 -1
  681. package/dist/ezui/p-41652617.entry.js.gz +0 -0
  682. package/dist/ezui/p-44b39e81.entry.js.gz +0 -0
  683. package/dist/ezui/p-4607fb89.js +0 -1
  684. package/dist/ezui/p-4607fb89.js.gz +0 -0
  685. package/dist/ezui/p-4818b8ce.entry.js +0 -1
  686. package/dist/ezui/p-4818b8ce.entry.js.gz +0 -0
  687. package/dist/ezui/p-61b4834d.entry.js +0 -309
  688. package/dist/ezui/p-61b4834d.entry.js.gz +0 -0
  689. package/dist/ezui/p-68b2e579.entry.js +0 -1
  690. package/dist/ezui/p-68b2e579.entry.js.gz +0 -0
  691. package/dist/ezui/p-6b51c9cc.entry.js.gz +0 -0
  692. package/dist/ezui/p-6d8b3298.entry.js +0 -1
  693. package/dist/ezui/p-6d8b3298.entry.js.gz +0 -0
  694. package/dist/ezui/p-6ec40dec.entry.js.gz +0 -0
  695. package/dist/ezui/p-6fc26622.entry.js.gz +0 -0
  696. package/dist/ezui/p-708b196e.entry.js.gz +0 -0
  697. package/dist/ezui/p-7567ccdd.entry.js.gz +0 -0
  698. package/dist/ezui/p-769632d5.entry.js.gz +0 -0
  699. package/dist/ezui/p-7c1b3cef.entry.js +0 -1
  700. package/dist/ezui/p-7c1b3cef.entry.js.gz +0 -0
  701. package/dist/ezui/p-80dfc50b.js.gz +0 -0
  702. package/dist/ezui/p-81461d2f.entry.js.gz +0 -0
  703. package/dist/ezui/p-82fa4b09.entry.js.gz +0 -0
  704. package/dist/ezui/p-866abc8e.entry.js.gz +0 -0
  705. package/dist/ezui/p-87f5a060.entry.js.gz +0 -0
  706. package/dist/ezui/p-88c615f0.entry.js +0 -1
  707. package/dist/ezui/p-88c615f0.entry.js.gz +0 -0
  708. package/dist/ezui/p-8ea07b8c.entry.js +0 -1
  709. package/dist/ezui/p-8ea07b8c.entry.js.gz +0 -0
  710. package/dist/ezui/p-9066b0b0.entry.js +0 -1
  711. package/dist/ezui/p-9066b0b0.entry.js.gz +0 -0
  712. package/dist/ezui/p-91ccae0c.entry.js.gz +0 -0
  713. package/dist/ezui/p-92748142.entry.js.gz +0 -0
  714. package/dist/ezui/p-98bb8b16.js.gz +0 -0
  715. package/dist/ezui/p-9c5a6ec4.entry.js +0 -1
  716. package/dist/ezui/p-9c5a6ec4.entry.js.gz +0 -0
  717. package/dist/ezui/p-9e95bfeb.entry.js.gz +0 -0
  718. package/dist/ezui/p-a0b034cf.entry.js +0 -1
  719. package/dist/ezui/p-a0b034cf.entry.js.gz +0 -0
  720. package/dist/ezui/p-a79f3789.entry.js +0 -1
  721. package/dist/ezui/p-a79f3789.entry.js.gz +0 -0
  722. package/dist/ezui/p-ab574d59.js.gz +0 -0
  723. package/dist/ezui/p-acddfb2e.js +0 -1
  724. package/dist/ezui/p-acddfb2e.js.gz +0 -0
  725. package/dist/ezui/p-b3b5647e.entry.js +0 -1
  726. package/dist/ezui/p-b3b5647e.entry.js.gz +0 -0
  727. package/dist/ezui/p-b853763b.js.gz +0 -0
  728. package/dist/ezui/p-b9282c79.entry.js +0 -1
  729. package/dist/ezui/p-b9282c79.entry.js.gz +0 -0
  730. package/dist/ezui/p-c2b20f78.entry.js.gz +0 -0
  731. package/dist/ezui/p-c7035d65.entry.js.gz +0 -0
  732. package/dist/ezui/p-c96fbbef.entry.js +0 -1
  733. package/dist/ezui/p-c96fbbef.entry.js.gz +0 -0
  734. package/dist/ezui/p-ca8936df.entry.js +0 -1
  735. package/dist/ezui/p-ca8936df.entry.js.gz +0 -0
  736. package/dist/ezui/p-cc4ffa6b.entry.js +0 -1
  737. package/dist/ezui/p-cc4ffa6b.entry.js.gz +0 -0
  738. package/dist/ezui/p-ce7ce731.entry.js +0 -1
  739. package/dist/ezui/p-ce7ce731.entry.js.gz +0 -0
  740. package/dist/ezui/p-cedeedf1.entry.js.gz +0 -0
  741. package/dist/ezui/p-cf33bc48.entry.js +0 -1
  742. package/dist/ezui/p-cf33bc48.entry.js.gz +0 -0
  743. package/dist/ezui/p-dc628ed3.js.gz +0 -0
  744. package/dist/ezui/p-dfca5946.entry.js.gz +0 -0
  745. package/dist/ezui/p-e18d9e6a.entry.js +0 -1
  746. package/dist/ezui/p-e18d9e6a.entry.js.gz +0 -0
  747. package/dist/ezui/p-e3f8660b.entry.js +0 -1
  748. package/dist/ezui/p-e3f8660b.entry.js.gz +0 -0
  749. package/dist/ezui/p-e4c7eb39.js.gz +0 -0
  750. package/dist/ezui/p-e6b38ade.entry.js.gz +0 -0
  751. package/dist/ezui/p-ec7db713.js.gz +0 -0
  752. package/dist/ezui/p-f4da7e1e.entry.js +0 -1
  753. package/dist/ezui/p-f4da7e1e.entry.js.gz +0 -0
  754. package/dist/ezui/p-fc194825.entry.js.gz +0 -0
  755. package/dist/index.cjs.js.gz +0 -0
  756. package/dist/index.js.gz +0 -0
  757. package/dist/types/utils/ResponsiveInputUtils.d.ts +0 -6
@@ -6,13 +6,14 @@ const index = require('./index-9e5554cb.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const CheckMode = require('./CheckMode-ecb90b87.js');
8
8
 
9
- const ezCheckCss = ":host{--ez-check--box--width:20px;--ez-check--box--height:20px;--ez-check--width:calc(var(--ez-check--box--width) + var(--ez-check--outter-gap, 14px));--ez-check--height:calc(var(--ez-check--box--width) + var(--ez-check--outter-gap, 14px));--ez-check--border-radius:var(--border--radius-small);--ez-check--checked--background-color:var(--color--primary-200);--ez-check--focus--background-color:var(--color--strokes, #FFFFFF);--ez-check--hover--background-color:var(--background--medium);--ez-check--checked--disabled--background-color:var(--color--disable-secondary);--ez-check--border:var(--border--medium) var(--title--primary);--ez-check--disabled--border:var(--border--medium) var(--color--strokes);--ez-check--checked--border:var(--border--medium) var(--color--primary);--ez-check--checked--hover--background-color:var(--color--primary-200);--ez-check--checked--focus--background-color:var(--color--primary-300, #FFFFFF);--ez-check--check--image:url('data:image/svg+xml;utf8,<svg width=\"8\" height=\"7\" viewBox=\"0 0 8 7\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.70002 0.398999L7.48502 0.207997C7.31524 0.0598858 7.09376 -0.0150438 6.86894 -0.000430025C6.64411 0.0141838 6.43419 0.117153 6.28502 0.285997L2.70002 4.332L1.61802 3.384C1.44837 3.23576 1.22697 3.16067 1.00214 3.17509C0.77732 3.18952 0.567332 3.2923 0.418019 3.461L0.229019 3.674C0.0752361 3.84797 -0.00437434 4.07521 0.00721192 4.30713C0.0187982 4.53904 0.120661 4.75722 0.291019 4.915L2.27402 6.762C2.35832 6.8432 2.45842 6.90618 2.56811 6.94702C2.67779 6.98787 2.79471 7.00571 2.91159 6.99942C3.02846 6.99314 3.14279 6.96287 3.24747 6.91049C3.35214 6.85812 3.44492 6.78477 3.52002 6.695L7.79102 1.638C7.94063 1.46048 8.01486 1.23149 7.99786 0.999963C7.98085 0.768436 7.87396 0.552749 7.70002 0.398999Z\"/></svg>');--ez-check--indeterminate--image:url('data:image/svg+xml;utf8,<svg width=\"10\" height=\"2\" viewBox=\"0 0 10 2\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m 1,0 h 8 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 1 C 0.446,2 0,1.554 0,1 0,0.446 0.446,0 1,0 Z\" /></svg>');--ez-check--check--background-color:var(--color--primary);--ez-check--check--disabled--background-color:var(--color--strokes);--ez-switch--slider--width:34px;--ez-switch--slider--height:14px;--ez-switch--pin--width:19px;--ez-switch--pin--height:19px;--ez-switch--focus--width:32px;--ez-switch--focus--height:32px;--ez-switch--background-color:var(--color--strokes);--ez-switch--disabled--background-color:var(--color--disable-secondary);--ez-switch--disabled--checked--background-color:var(--color--primary-300);--ez-switch--checked--background-color:var(--color--primary);--ez-switch--pin--background-color:var(--background--xlight);--ez-switch--pin--disabled--background-color:var(--color--disable-primary);--ez-switch--pin--checked--background-color:var(--background--xlight);--ez-switch--pin--checked--disabled--background-color:#E8F7F4;--ez-switch--pin--focus--background-color:var(--text--disable);--ez-switch--pin--checked--focus--background-color:var(--color--primary);--ez-switch--pin--border-color:var(--text--primary);--ez-switch--pin--disabled--border-color:var(--text--secondary);--ez-check--label--font-size:var(--text--medium, 14px);--ez-check--label--font-family:var(--font-pattern, Arial);--ez-check--label--color:var(--title--primary, #000);--ez-check--label--disabled--color:var(--text--disable, #AFB6C0);display:flex;align-items:center;margin:0;max-width:100%}input.regular-mode{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;box-sizing:border-box;-webkit-appearance:none;appearance:none;cursor:pointer;border-radius:50%;position:relative}input.compact{margin-right:0px}input.regular-mode:enabled:hover{background-color:var(--ez-check--hover--background-color)}input.regular-mode:enabled:focus{outline:none;background-color:var(--ez-check--focus--background-color)}input.regular-mode:disabled{cursor:auto;background:none}input.regular-mode::before{box-sizing:border-box;content:\"\";display:block;width:var(--ez-check--box--width);height:var(--ez-check--box--height);border-radius:var(--ez-check--border-radius);border:var(--ez-check--border)}input.regular-mode:disabled::before{border:var(--ez-check--disabled--border)}input.regular-mode:checked:enabled:hover,input.regular-mode:indeterminate:enabled:hover{background-color:var(--ez-check--checked--hover--background-color)}input.regular-mode:checked:enabled:focus,input.regular-mode:indeterminate:enabled:focus{background-color:var(--ez-check--checked--focus--background-color)}input.regular-mode:checked::before,input.regular-mode:indeterminate::before{border:var(--ez-check--checked--border);background-color:var(--ez-check--checked--background-color)}input.regular-mode:disabled:before{border:var(--ez-check--disabled--border);background-color:var(--ez-check--checked--disabled--background-color)}input.regular-mode:checked::after,input.regular-mode:indeterminate:after{display:flex;position:absolute;content:\"\";background-color:var(--ez-check--check--background-color);width:8px;height:7px;-webkit-mask-image:var(--ez-check--check--image);mask-image:var(--ez-check--check--image)}input.regular-mode:indeterminate:after{display:flex;position:absolute;content:\"\";background-color:var(--ez-check--check--background-color);width:10px;height:2px;-webkit-mask-image:var(--ez-check--indeterminate--image);mask-image:var(--ez-check--indeterminate--image)}input.regular-mode:checked:disabled::after,input.regular-mode:indeterminate:disabled::after{background-color:var(--ez-check--check--disabled--background-color)}input.switch-mode{flex-shrink:0;-webkit-appearance:none;appearance:none;position:relative;outline:none;cursor:pointer;border-radius:20px;border:var(--border--small, 1px solid) var(--ez-switch--pin--border-color, #626e82);transition:background-color var(--transition);width:var(--ez-switch--slider--width);height:var(--ez-switch--slider--height);background-color:var(--ez-switch--background-color)}input.switch-mode:disabled{background-color:var(--ez-switch--disabled--background-color);border:var(--border--small, 1px solid) var(--ez-switch--pin--disabled--border-color, #a2abb9)}input.switch-mode:checked:disabled{background-color:var(--ez-switch--disabled--checked--background-color)}input.switch-mode::after{content:\"\";display:block;position:absolute;box-shadow:var(--shadow);transition:transform var(--transition);transition:background-color var(--transition);transition:border-color var(--transition);transform:translateX(-2px) translateY(-4px);border-radius:50%;border:var(--border--small, 1px solid) var(--ez-switch--pin--border-color, #626e82);width:var(--ez-switch--pin--width);height:var(--ez-switch--pin--height);background-color:var(--ez-switch--pin--background-color)}input.switch-mode:disabled::after{background-color:var(--ez-switch--pin--disabled--background-color);border:var(--border--small, 1px solid) var(--ez-switch--pin--disabled--border-color, #a2abb9)}input.switch-mode:checked{transition:background-color var(--transition), border var(--transition);background-color:var(--ez-switch--checked--background-color);border:var(--border--small, 1px solid) var(--color--primary, #008561)}input.switch-mode::before{display:block;content:\"\";display:block;position:absolute;border-radius:50%;opacity:0;width:var(--ez-switch--focus--width);height:var(--ez-switch--focus--height);top:calc((var(--ez-switch--slider--height) - var(--ez-switch--focus--height)) / 2);left:calc((var(--ez-switch--pin--width) - var(--ez-switch--focus--width) - 2px) / 2);background-color:var(--ez-switch--pin--focus--background-color)}input.switch-mode:focus::before{opacity:0.24;transition:opacity var(--transition)}input.switch-mode:checked:focus::before{background-color:var(--ez-switch--pin--checked--focus--background-color);transform:translateX(calc(var(--ez-switch--slider--width) - var(--ez-switch--pin--width) + 2px))}input.switch-mode:checked::after{transition:transform var(--transition);transition:background-color var(--transition);transition:border-color var(--transition);transform:translateX(calc(var(--ez-switch--slider--width) - var(--ez-switch--pin--width))) translateY(-4px);box-shadow:var(--shadow);background-color:var(--ez-switch--pin--checked--background-color);border:var(--border--small, 1px solid) var(--color--primary, #008561)}input.switch-mode:checked:disabled::after{background-color:var(--ez-switch--pin--checked--disabled--background-color)}.label{flex-shrink:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-check--label--color);font-size:var(--ez-check--label--font-size);font-family:var(--ez-check--label--font-family);cursor:default;width:inherit}.label--disabled{color:var(--ez-check--label--disabled--color)}.label--padding{padding-left:var(--space--extra-small)}";
9
+ const ezCheckCss = ":host{--ez-check--box--width:20px;--ez-check--box--height:20px;--ez-check--width:calc(var(--ez-check--box--width) + var(--ez-check--outter-gap, 14px));--ez-check--height:calc(var(--ez-check--box--width) + var(--ez-check--outter-gap, 14px));--ez-check--border-radius:var(--border--radius-small);--ez-check--checked--background-color:var(--color--primary-200);--ez-check--focus--background-color:var(--color--strokes, #FFFFFF);--ez-check--hover--background-color:var(--background--medium);--ez-check--checked--disabled--background-color:var(--color--disable-secondary);--ez-check--border:var(--border--medium) var(--title--primary);--ez-check--disabled--border:var(--border--medium) var(--color--strokes);--ez-check--checked--border:var(--border--medium) var(--color--primary);--ez-check--checked--hover--background-color:var(--color--primary-200);--ez-check--checked--focus--background-color:var(--color--primary-300, #FFFFFF);--ez-check--check--image:url('data:image/svg+xml;utf8,<svg width=\"8\" height=\"7\" viewBox=\"0 0 8 7\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.70002 0.398999L7.48502 0.207997C7.31524 0.0598858 7.09376 -0.0150438 6.86894 -0.000430025C6.64411 0.0141838 6.43419 0.117153 6.28502 0.285997L2.70002 4.332L1.61802 3.384C1.44837 3.23576 1.22697 3.16067 1.00214 3.17509C0.77732 3.18952 0.567332 3.2923 0.418019 3.461L0.229019 3.674C0.0752361 3.84797 -0.00437434 4.07521 0.00721192 4.30713C0.0187982 4.53904 0.120661 4.75722 0.291019 4.915L2.27402 6.762C2.35832 6.8432 2.45842 6.90618 2.56811 6.94702C2.67779 6.98787 2.79471 7.00571 2.91159 6.99942C3.02846 6.99314 3.14279 6.96287 3.24747 6.91049C3.35214 6.85812 3.44492 6.78477 3.52002 6.695L7.79102 1.638C7.94063 1.46048 8.01486 1.23149 7.99786 0.999963C7.98085 0.768436 7.87396 0.552749 7.70002 0.398999Z\"/></svg>');--ez-check--indeterminate--image:url('data:image/svg+xml;utf8,<svg width=\"10\" height=\"2\" viewBox=\"0 0 10 2\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m 1,0 h 8 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 1 C 0.446,2 0,1.554 0,1 0,0.446 0.446,0 1,0 Z\" /></svg>');--ez-check--check--background-color:var(--color--primary);--ez-check--check--disabled--background-color:var(--color--strokes);--ez-switch--slider--width:34px;--ez-switch--slider--height:14px;--ez-switch--pin--width:19px;--ez-switch--pin--height:19px;--ez-switch--focus--width:32px;--ez-switch--focus--height:32px;--ez-switch--background-color:var(--color--strokes);--ez-switch--disabled--background-color:var(--color--disable-secondary);--ez-switch--disabled--checked--background-color:var(--color--primary-300);--ez-switch--checked--background-color:var(--color--primary);--ez-switch--pin--background-color:var(--background--xlight);--ez-switch--pin--disabled--background-color:var(--color--disable-primary);--ez-switch--pin--checked--background-color:var(--background--xlight);--ez-switch--pin--checked--disabled--background-color:#E8F7F4;--ez-switch--pin--focus--background-color:var(--text--disable);--ez-switch--pin--checked--focus--background-color:var(--color--primary);--ez-switch--pin--border-color:var(--text--primary);--ez-switch--pin--disabled--border-color:var(--text--secondary);--ez-check--label--font-size:var(--text--medium, 14px);--ez-check--label--font-family:var(--font-pattern, Arial);--ez-check--label--color:var(--title--primary, #000);--ez-check--label--disabled--color:var(--text--disable, #AFB6C0);display:flex;align-items:center;margin:0;max-width:100%}input.regular-mode{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;box-sizing:border-box;-webkit-appearance:none;appearance:none;cursor:pointer;border-radius:50%;position:relative}input.compact{margin-right:0px}input.regular-mode:enabled:hover{background-color:var(--ez-check--hover--background-color)}input.regular-mode:enabled:focus{outline:none;background-color:var(--ez-check--focus--background-color)}input.regular-mode:disabled{cursor:auto;background:none}input.regular-mode::before{box-sizing:border-box;content:\"\";display:block;width:var(--ez-check--box--width);height:var(--ez-check--box--height);border-radius:var(--ez-check--border-radius);border:var(--ez-check--border)}input.regular-mode:disabled::before{border:var(--ez-check--disabled--border)}input.regular-mode:checked:enabled:hover,input.regular-mode:indeterminate:enabled:hover{background-color:var(--ez-check--checked--hover--background-color)}input.regular-mode:checked:enabled:focus,input.regular-mode:indeterminate:enabled:focus{background-color:var(--ez-check--checked--focus--background-color)}input.regular-mode:checked::before,input.regular-mode:indeterminate::before{border:var(--ez-check--checked--border);background-color:var(--ez-check--checked--background-color)}input.regular-mode:disabled:before{border:var(--ez-check--disabled--border);background-color:var(--ez-check--checked--disabled--background-color)}input.regular-mode:checked::after,input.regular-mode:indeterminate:after{display:flex;position:absolute;content:\"\";background-color:var(--ez-check--check--background-color);width:8px;height:7px;-webkit-mask-image:var(--ez-check--check--image);mask-image:var(--ez-check--check--image)}input.regular-mode:indeterminate:after{display:flex;position:absolute;content:\"\";background-color:var(--ez-check--check--background-color);width:10px;height:2px;-webkit-mask-image:var(--ez-check--indeterminate--image);mask-image:var(--ez-check--indeterminate--image)}input.regular-mode:checked:disabled::after,input.regular-mode:indeterminate:disabled::after{background-color:var(--ez-check--check--disabled--background-color)}input.switch-mode{flex-shrink:0;-webkit-appearance:none;appearance:none;position:relative;outline:none;cursor:pointer;border-radius:20px;border:var(--border--small, 1px solid) var(--ez-switch--pin--border-color, #626e82);transition:background-color var(--transition);width:var(--ez-switch--slider--width);height:var(--ez-switch--slider--height);background-color:var(--ez-switch--background-color)}input.switch-mode:disabled{background-color:var(--ez-switch--disabled--background-color);border:var(--border--small, 1px solid) var(--ez-switch--pin--disabled--border-color, #a2abb9)}input.switch-mode:checked:disabled{background-color:var(--ez-switch--disabled--checked--background-color)}input.switch-mode::after{content:\"\";display:block;position:absolute;box-shadow:var(--shadow);transition:transform var(--transition);transition:background-color var(--transition);transition:border-color var(--transition);transform:translateX(-2px) translateY(-4px);border-radius:50%;border:var(--border--small, 1px solid) var(--ez-switch--pin--border-color, #626e82);width:var(--ez-switch--pin--width);height:var(--ez-switch--pin--height);background-color:var(--ez-switch--pin--background-color)}input.switch-mode:disabled::after{background-color:var(--ez-switch--pin--disabled--background-color);border:var(--border--small, 1px solid) var(--ez-switch--pin--disabled--border-color, #a2abb9)}input.switch-mode:checked{transition:background-color var(--transition), border var(--transition);background-color:var(--ez-switch--checked--background-color);border:var(--border--small, 1px solid) var(--color--primary, #008561)}input.switch-mode::before{display:block;content:\"\";display:block;position:absolute;border-radius:50%;opacity:0;width:var(--ez-switch--focus--width);height:var(--ez-switch--focus--height);top:calc((var(--ez-switch--slider--height) - var(--ez-switch--focus--height)) / 2);left:calc((var(--ez-switch--pin--width) - var(--ez-switch--focus--width) - 2px) / 2);background-color:var(--ez-switch--pin--focus--background-color)}input.switch-mode:focus::before{opacity:0.24;transition:opacity var(--transition)}input.switch-mode:checked:focus::before{background-color:var(--ez-switch--pin--checked--focus--background-color);transform:translateX(calc(var(--ez-switch--slider--width) - var(--ez-switch--pin--width) + 2px))}input.switch-mode:checked::after{transition:transform var(--transition);transition:background-color var(--transition);transition:border-color var(--transition);transform:translateX(calc(var(--ez-switch--slider--width) - var(--ez-switch--pin--width))) translateY(-4px);box-shadow:var(--shadow);background-color:var(--ez-switch--pin--checked--background-color);border:var(--border--small, 1px solid) var(--color--primary, #008561)}input.switch-mode:checked:disabled::after{background-color:var(--ez-switch--pin--checked--disabled--background-color)}.label{flex-shrink:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-check--label--color);font-size:var(--ez-check--label--font-size);font-family:var(--ez-check--label--font-family);cursor:default;width:inherit;display:flex;align-content:center;gap:var(--space--small)}.label--disabled{color:var(--ez-check--label--disabled--color)}.label--padding{padding-left:var(--space--extra-small)}.label-alternative{font-size:var(--text--small);color:var(--text--secondary);padding-top:2px}";
10
10
 
11
11
  const EzCheck = class {
12
12
  constructor(hostRef) {
13
13
  index.registerInstance(this, hostRef);
14
14
  this.ezChange = index.createEvent(this, "ezChange", 7);
15
15
  this.label = undefined;
16
+ this.alternativePlaceholder = undefined;
16
17
  this.value = undefined;
17
18
  this.enabled = true;
18
19
  this.indeterminate = undefined;
@@ -64,25 +65,32 @@ const EzCheck = class {
64
65
  this.ezChange.emit(this.value);
65
66
  }
66
67
  getLabelClasses() {
67
- const classes = ["label"];
68
+ const classes = ['label'];
68
69
  if (!this.enabled) {
69
- classes.push("label--disabled");
70
+ classes.push('label--disabled');
70
71
  }
71
72
  if (!this.compact) {
72
- classes.push("label--padding");
73
+ classes.push('label--padding');
73
74
  }
74
- return classes.join(" ");
75
+ return classes.join(' ');
75
76
  }
76
77
  getInputClasses() {
77
78
  var _a;
78
- const classes = [""];
79
- classes.push(((_a = this.mode) === null || _a === void 0 ? void 0 : _a.toUpperCase()) === CheckMode.CheckMode.SWITCH ? "switch-mode" : "regular-mode");
79
+ const classes = [''];
80
+ classes.push(((_a = this.mode) === null || _a === void 0 ? void 0 : _a.toUpperCase()) === CheckMode.CheckMode.SWITCH ? 'switch-mode' : 'regular-mode');
80
81
  if (this.compact)
81
- classes.push("compact");
82
- return classes.join(" ");
82
+ classes.push('compact');
83
+ return classes.join(' ');
83
84
  }
84
85
  render() {
85
- return (index.h(index.Host, null, index.h("input", { type: "checkbox", ref: (el) => this._inputElem = el, class: this.getInputClasses(), checked: this.value === true, onChange: () => { this.changeValue(); }, indeterminate: this.indeterminate, disabled: !this.enabled, "data-element-id": core.ElementIDUtils.getInternalIDInfo("input") }), this.label ? index.h("label", { class: this.getLabelClasses(), onClick: () => { this.changeValue(); }, title: this.label }, this.label) : undefined));
86
+ return (index.h(index.Host, null, index.h("input", { type: "checkbox", ref: (el) => this._inputElem = el, class: this.getInputClasses(), checked: this.value === true, onChange: () => {
87
+ this.changeValue();
88
+ }, indeterminate: this.indeterminate, disabled: !this.enabled, "data-element-id": core.ElementIDUtils.getInternalIDInfo('input') }), this.renderLabel()));
89
+ }
90
+ renderLabel() {
91
+ if (!this.label)
92
+ return undefined;
93
+ return (index.h("label", { class: this.getLabelClasses(), onClick: () => this.changeValue(), title: this.label }, this.label, " ", this.alternativePlaceholder ? index.h("span", { class: "label-alternative" }, this.alternativePlaceholder) : undefined));
86
94
  }
87
95
  get _element() { return index.getElement(this); }
88
96
  static get watchers() { return {
@@ -7,7 +7,7 @@ const core = require('@sankhyalabs/core');
7
7
  const ApplicationUtils = require('./ApplicationUtils-c9d1205c.js');
8
8
  require('./DialogType-2114c337.js');
9
9
  require('./CheckMode-ecb90b87.js');
10
- require('./ICustomRender-6fafffce.js');
10
+ require('./FormLayout-18853e70.js');
11
11
 
12
12
  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%}.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}";
13
13
 
@@ -4,12 +4,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-9e5554cb.js');
6
6
  const core = require('@sankhyalabs/core');
7
- const ICustomRender = require('./ICustomRender-6fafffce.js');
7
+ const FormLayout = require('./FormLayout-18853e70.js');
8
8
  const ApplicationUtils = require('./ApplicationUtils-c9d1205c.js');
9
9
  require('./DialogType-2114c337.js');
10
10
  require('./CheckMode-ecb90b87.js');
11
11
 
12
- const ezComboBoxListCss = ":host{--ez-combo-box--border-radius:var(--border--radius-medium, 12px);--ez-combo-box--font-size:var(--text--medium, 14px);--ez-combo-box--font-family:var(--font-pattern, Arial);--ez-combo-box--font-weight--large:var(--text-weight--large, 500);--ez-combo-box--font-weight--medium:var(--text-weight--medium, 400);--ez-combo-box--background-color--xlight:var(--background--xlight, #fff);--ez-combo-box--background-medium:var(--background--medium, #f0f3f7);--ez-combo-box--line-height:calc(var(--text--medium, 14px) + 4px);--ez-combo-box__list-title--primary:var(--title--primary, #2B3A54);--ez-combo-box__list-text--primary:var(--text--primary, #626e82);--ez-combo-box__list-height:calc(var(--ez-combo-box--font-size) + var(--ez-combo-box--space--medium) + 4px);--ez-combo-box--space--medium:var(--space--medium, 12px);--ez-combo-box--space--small:var(--space--small, 6px);--ez-combo-box__scrollbar--color-default:var(--scrollbar--default, #626e82);--ez-combo-box__scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--ez-combo-box__scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--ez-combo-box__scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--ez-combo-box__scrollbar--border-radius:var(--border--radius-small, 6px);--ez-combo-box__scrollbar--width:var(--space--medium, 12px);--ez-combo-box__list-container--padding:var(--space--extra-small, 3px)}.list-container{padding-top:var(--ez-combo-box__list-container--padding)}.list-wrapper{display:flex;flex-direction:column;box-sizing:border-box;width:0;z-index:var(--more-visible, 2);max-height:calc(4*var(--ez-combo-box__list-height) + 2*var(--ez-combo-box--space--small) + 9px);background-color:var(--ez-combo-box--background-color--xlight);border-radius:var(--ez-combo-box--border-radius);box-shadow:var(--shadow--medium, 0 8px 24px 0 rgba(43, 58, 84, 0.10));padding:var(--ez-combo-box--space--small)}.list-options{box-sizing:border-box;width:100%;height:100%;padding:0;display:flex;flex-direction:column;scroll-behavior:smooth;overflow:auto;scrollbar-width:thin;gap:3px;scrollbar-color:var(--ez-combo-box__scrollbar--color-clicked) var(--ez-combo-box__scrollbar--color-background)}.list-options::-webkit-scrollbar{background-color:var(--ez-combo-box__scrollbar--color-background);width:var(--ez-combo-box__scrollbar--width);max-width:var(--ez-combo-box__scrollbar--width);min-width:var(--ez-combo-box__scrollbar--width)}.list-options::-webkit-scrollbar-track{background-color:var(--ez-combo-box__scrollbar--color-background);border-radius:var(--ez-combo-box__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb{background-color:var(--ez-combo-box__scrollbar--color-default);border-radius:var(--ez-combo-box__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb:vertical:hover,.list-options::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--ez-combo-box__scrollbar--color-hover)}.list-options::-webkit-scrollbar-thumb:vertical:active,.list-options::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--ez-combo-box__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-combo-box--border-radius-small);padding:var(--ez-combo-box--space--small);min-height:var(--ez-combo-box__list-height);gap:var(--space--small, 6px)}.item__value,.item__label{flex-basis:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-combo-box__list-title--primary);font-family:var(--ez-combo-box--font-family);font-size:var(--ez-combo-box--font-size);line-height:var(--ez-combo-box--line-height)}.item__label{font-weight:var(--ez-combo-box--font-weight--medium)}.item__label--bold{font-weight:var(--ez-combo-box--font-weight--large)}.item__value{text-align:center;color:var(--ez-combo-box__list-text--primary);font-weight:var(--ez-combo-box--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-combo-box__list-height)}.message__no-result{color:var(--ez-combo-box__list-title--primary);font-family:var(--ez-combo-box--font-family);font-size:var(--ez-combo-box--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-combo-box__list-title--primary);border-top:3px solid transparent}li:hover{background-color:var(--ez-combo-box--background-medium)}.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)}}";
12
+ const ezComboBoxListCss = ":host{--ez-combo-box--border-radius:var(--border--radius-medium, 12px);--ez-combo-box--font-size:var(--text--medium, 14px);--ez-combo-box--font-family:var(--font-pattern, Arial);--ez-combo-box--font-weight--large:var(--text-weight--large, 500);--ez-combo-box--font-weight--medium:var(--text-weight--medium, 400);--ez-combo-box--background-color--xlight:var(--background--xlight, #fff);--ez-combo-box--background-medium:var(--background--medium, #f0f3f7);--ez-combo-box--line-height:calc(var(--text--medium, 14px) + 4px);--ez-combo-box__list-title--primary:var(--title--primary, #2B3A54);--ez-combo-box__list-text--primary:var(--text--primary, #626e82);--ez-combo-box__list-height:calc(var(--ez-combo-box--font-size) + var(--ez-combo-box--space--medium) + 4px);--ez-combo-box--space--medium:var(--space--medium, 12px);--ez-combo-box--space--small:var(--space--small, 6px);--ez-combo-box__scrollbar--color-default:var(--scrollbar--default, #626e82);--ez-combo-box__scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--ez-combo-box__scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--ez-combo-box__scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--ez-combo-box__scrollbar--border-radius:var(--border--radius-small, 6px);--ez-combo-box__scrollbar--width:var(--space--medium, 12px);--ez-combo-box__list-container--padding:var(--space--extra-small, 3px)}.list-container{padding-top:var(--ez-combo-box__list-container--padding)}.list-wrapper{display:flex;flex-direction:column;box-sizing:border-box;width:0;z-index:var(--more-visible, 2);max-height:calc(4*var(--ez-combo-box__list-height) + 2*var(--ez-combo-box--space--small) + 9px);background-color:var(--ez-combo-box--background-color--xlight);border-radius:var(--ez-combo-box--border-radius);box-shadow:var(--shadow--medium, 0 8px 24px 0 rgba(43, 58, 84, 0.10));padding:var(--ez-combo-box--space--small)}.list-options{box-sizing:border-box;width:100%;height:100%;padding:0;margin:0;display:flex;flex-direction:column;scroll-behavior:smooth;overflow:auto;scrollbar-width:thin;gap:3px;scrollbar-color:var(--ez-combo-box__scrollbar--color-clicked) var(--ez-combo-box__scrollbar--color-background)}.list-options::-webkit-scrollbar{background-color:var(--ez-combo-box__scrollbar--color-background);width:var(--ez-combo-box__scrollbar--width);max-width:var(--ez-combo-box__scrollbar--width);min-width:var(--ez-combo-box__scrollbar--width)}.list-options::-webkit-scrollbar-track{background-color:var(--ez-combo-box__scrollbar--color-background);border-radius:var(--ez-combo-box__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb{background-color:var(--ez-combo-box__scrollbar--color-default);border-radius:var(--ez-combo-box__scrollbar--border-radius)}.list-options::-webkit-scrollbar-thumb:vertical:hover,.list-options::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--ez-combo-box__scrollbar--color-hover)}.list-options::-webkit-scrollbar-thumb:vertical:active,.list-options::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--ez-combo-box__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-combo-box--border-radius-small);padding:var(--ez-combo-box--space--small);min-height:var(--ez-combo-box__list-height);gap:var(--space--small, 6px)}.item__value,.item__label{flex-basis:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ez-combo-box__list-title--primary);font-family:var(--ez-combo-box--font-family);font-size:var(--ez-combo-box--font-size);line-height:var(--ez-combo-box--line-height)}.item__label{font-weight:var(--ez-combo-box--font-weight--medium)}.item__label--bold{font-weight:var(--ez-combo-box--font-weight--large)}.item__value{text-align:center;color:var(--ez-combo-box__list-text--primary);font-weight:var(--ez-combo-box--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-combo-box__list-height)}.message__no-result{color:var(--ez-combo-box__list-title--primary);font-family:var(--ez-combo-box--font-family);font-size:var(--ez-combo-box--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-combo-box__list-title--primary);border-top:3px solid transparent}li:hover{background-color:var(--ez-combo-box--background-medium)}.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)}}";
13
13
 
14
14
  const EzComboBoxList = class {
15
15
  constructor(hostRef) {
@@ -235,7 +235,7 @@ const EzCustomFormInput = class {
235
235
  props: this.formViewField.props ? fieldProps : undefined,
236
236
  optionLoader: this.formViewField.optionLoader
237
237
  },
238
- source: ICustomRender.CustomEditorSource.FORM,
238
+ source: FormLayout.CustomEditorSource.FORM,
239
239
  detailContext: this.detailContext
240
240
  };
241
241
  let gui = this.customEditor.getEditorElement(params);
@@ -8,7 +8,7 @@ require('./ApplicationUtils-c9d1205c.js');
8
8
  const CSSVarsUtils = require('./CSSVarsUtils-f20973d1.js');
9
9
  require('./DialogType-2114c337.js');
10
10
  require('./CheckMode-ecb90b87.js');
11
- require('./ICustomRender-6fafffce.js');
11
+ require('./FormLayout-18853e70.js');
12
12
 
13
13
  const ezComboBoxCss = ":host{--ez-combo-box--height:42px;--ez-combo-box--width:100%;--ez-combo-box--border-radius:var(--border--radius-medium, 12px);--ez-combo-box--font-size:var(--text--medium, 14px);--ez-combo-box--font-family:var(--font-pattern, Arial);--ez-combo-box--background-color--xlight:var(--background--xlight, #fff);--ez-combo-box__input--background-color:var(--background--medium, #e0e0e0);--ez-combo-box__input--border:var(--border--medium, 2px solid);--ez-combo-box__input--border-color:var(--ez-combo-box__input--background-color);--ez-combo-box__input--focus--border-color:var(--color--primary, #008561);--ez-combo-box__input--disabled--background-color:var(--color--disable-secondary, #F2F5F8);--ez-combo-box__input--disabled--color:var(--text--disable, #AFB6C0);--ez-combo-box__btn--color:var(--title--primary, #2B3A54);--ez-combo-box__btn-disabled--color:var(--text--disable, #AFB6C0);--ez-combo-box__btn-hover--color:var(--color--primary, #4e4e4e);width:var(--ez-combo-box--width)}ez-icon{--ez-icon--color:inherit;font-weight:var(--text-weight--large, 600)}.suppressed-search-input{--ez-text-input__input--border-color:var(--color--strokes, #dce0e8);--ez-text-input__input--disabled--background-color:var(--background--xlight, #fff);--ez-text-input__input--disabled--color:var(--title--primary, #2B3A54)}.btn{outline:none;border:none;background:none;cursor:pointer;padding:0px;color:var(--ez-combo-box__btn--color)}.btn:disabled{cursor:unset;color:var(--ez-combo-box__btn-disabled--color)}.btn:disabled:hover{cursor:not-allowed;color:var(--ez-combo-box__btn-disabled--color)}.btn:hover{color:var(--ez-combo-box__btn-hover--color)}.btn__close{visibility:hidden}ez-text-input:hover .btn__close,ez-text-input:focus .btn__close{visibility:visible}.text-input-slot-container{--ez-text-input__icon--width:32px;--ez-text-input__min-width:var(--ez-combo-box__min-width);--ez-text-input__max-width:var(--ez-combo-box__max-width)}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}";
14
14
 
@@ -28,7 +28,6 @@ const EzComboBox = class {
28
28
  this._startLoading = false;
29
29
  this._showLoading = true;
30
30
  this._criteria = undefined;
31
- this._textInputReady = undefined;
32
31
  this.limitCharsToSearch = 3;
33
32
  this.value = undefined;
34
33
  this.label = undefined;
@@ -47,6 +46,8 @@ const EzComboBox = class {
47
46
  this.listOptionsPosition = undefined;
48
47
  this.isTextSearch = false;
49
48
  this.autoFocus = false;
49
+ this.alternativePlaceholder = undefined;
50
+ this.textEmptyOption = "Selecione um item";
50
51
  }
51
52
  observeErrorMessage() {
52
53
  var _a;
@@ -171,7 +172,7 @@ const EzComboBox = class {
171
172
  opts = opts.filter(opt => opt.label.toLocaleUpperCase().indexOf(upperCriteria) > -1);
172
173
  }
173
174
  if (this.hasToAddEmptyoption(opts)) {
174
- opts = [{ value: undefined, label: "" }].concat(opts);
175
+ opts = [{ value: undefined, label: this.textEmptyOption }].concat(opts);
175
176
  }
176
177
  this._visibleOptions = opts;
177
178
  this._maxWidthValue = this.getMaxWidthValue();
@@ -206,17 +207,17 @@ const EzComboBox = class {
206
207
  }
207
208
  return 0;
208
209
  }
209
- showOptions() {
210
+ async showOptions() {
210
211
  var _a, _b;
211
212
  if (!this.enabled)
212
213
  return;
213
- this.openPopover();
214
+ await this.openPopover();
214
215
  const valueString = (_b = (_a = this.value) === null || _a === void 0 ? void 0 : _a.value) !== null && _b !== void 0 ? _b : this.value;
215
216
  const indexValue = this._visibleOptions.findIndex(option => option.value === valueString);
216
217
  this._preSelection = indexValue === -1 ? 0 : indexValue;
217
218
  if (!!this._resizeObserver)
218
219
  this._resizeObserver.observe(this._textInput);
219
- this.setFocus();
220
+ await this.setFocus();
220
221
  }
221
222
  hideOptions() {
222
223
  var _a;
@@ -308,11 +309,6 @@ const EzComboBox = class {
308
309
  //---------------------------------------------
309
310
  // Lifecycle web component
310
311
  //---------------------------------------------
311
- componentDidRender() {
312
- if (this._textInput) {
313
- this._textInputReady = true;
314
- }
315
- }
316
312
  componentWillLoad() {
317
313
  if (this.options === undefined) {
318
314
  this.options = [];
@@ -448,15 +444,15 @@ const EzComboBox = class {
448
444
  canShowListOptions() {
449
445
  return !this._showLoading && this._visibleOptions.length > 0;
450
446
  }
451
- openPopover() {
447
+ async openPopover() {
452
448
  var _a;
453
449
  this.isOpen = true;
454
- (_a = this._popover) === null || _a === void 0 ? void 0 : _a.show();
450
+ await ((_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput));
455
451
  }
456
452
  render() {
457
453
  var _a;
458
454
  core.ElementIDUtils.addIDInfoIfNotExists(this.el, 'input');
459
- return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.ElementIDUtils.getInternalIDInfo("textInput"), class: `text-input-slot-container ${this.suppressSearch ? "suppressed-search-input" : ""}`, ref: elem => this._textInput = elem, "data-slave-mode": "true", enabled: this.enabled && !this.suppressSearch, onInput: event => this.onTextInputChangeHandler(event), onClick: () => this.onTextInputClickHandler(), onFocusout: () => this.onTextInputFocusOutHandler(), onKeyDown: event => this.keyDownHandler(event), label: this.label, canShowError: this.canShowError, errorMessage: this.errorMessage, mode: this.mode }, index.h("button", { class: "btn", slot: "rightIcon", disabled: !this.enabled, tabindex: -1, onClick: () => this.handlerIconClick() }, index.h("ez-icon", { iconName: "chevron-down" }))), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none', onEzVisibilityChange: event => this.isOpen = event.detail }, index.h("ez-combo-box-list", { ref: ref => this._comboBoxList = ref, showLoading: this._showLoading, visibleOptions: this._visibleOptions, textEmptyList: this._textEmptyList, showOptionValue: this.showOptionValue, preSelection: this._preSelection, maxWidth: this._maxWidthValue, width: (_a = this._textInput) === null || _a === void 0 ? void 0 : _a.clientWidth, onOptionSelect: (opt) => this.selectOption(opt), onOptionHover: (index) => this._preSelection = index }))));
455
+ return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.ElementIDUtils.getInternalIDInfo("textInput"), class: `text-input-slot-container ${this.suppressSearch ? "suppressed-search-input" : ""}`, ref: elem => this._textInput = elem, "data-slave-mode": "true", enabled: this.enabled && !this.suppressSearch, onInput: event => this.onTextInputChangeHandler(event), onClick: () => this.onTextInputClickHandler(), onFocusout: () => this.onTextInputFocusOutHandler(), onKeyDown: event => this.keyDownHandler(event), label: this.label, canShowError: this.canShowError, errorMessage: this.errorMessage, mode: this.mode, alternativePlaceholder: this.alternativePlaceholder }, index.h("button", { class: "btn", slot: "rightIcon", disabled: !this.enabled, tabindex: -1, onClick: () => this.handlerIconClick() }, index.h("ez-icon", { iconName: "chevron-down" }))), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none', onEzVisibilityChange: event => this.isOpen = event.detail }, index.h("ez-combo-box-list", { ref: ref => this._comboBoxList = ref, showLoading: this._showLoading, visibleOptions: this._visibleOptions, textEmptyList: this._textEmptyList, showOptionValue: this.showOptionValue, preSelection: this._preSelection, maxWidth: this._maxWidthValue, width: (_a = this._textInput) === null || _a === void 0 ? void 0 : _a.clientWidth, onOptionSelect: (opt) => this.selectOption(opt), onOptionHover: (index) => this._preSelection = index }))));
460
456
  }
461
457
  get el() { return index.getElement(this); }
462
458
  static get watchers() { return {
@@ -24,6 +24,7 @@ const EzDateInput = class {
24
24
  this.mode = "regular";
25
25
  this.canShowError = true;
26
26
  this.autoFocus = false;
27
+ this.alternativePlaceholder = undefined;
27
28
  }
28
29
  observeLabel() {
29
30
  if (this._textInput) {
@@ -174,7 +175,7 @@ const EzDateInput = class {
174
175
  }
175
176
  render() {
176
177
  core.ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
177
- return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.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, canShowError: this.canShowError }, index.h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, slot: "leftIcon" })), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none' }, index.h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": core.ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); } }))));
178
+ return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.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, canShowError: this.canShowError, alternativePlaceholder: this.alternativePlaceholder }, index.h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, slot: "leftIcon" })), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none' }, index.h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": core.ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); } }))));
178
179
  }
179
180
  get _elem() { return index.getElement(this); }
180
181
  static get watchers() { return {
@@ -25,6 +25,7 @@ const EzDateTimeInput = class {
25
25
  this.mode = "regular";
26
26
  this.canShowError = true;
27
27
  this.autoFocus = false;
28
+ this.alternativePlaceholder = undefined;
28
29
  }
29
30
  observeLabel() {
30
31
  if (this._textInput) {
@@ -225,7 +226,7 @@ const EzDateTimeInput = class {
225
226
  }
226
227
  render() {
227
228
  core.ElementIDUtils.addIDInfoIfNotExists(this._elem, 'input');
228
- return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.ElementIDUtils.getInternalIDInfo("textInput"), ref: elem => this._textInput = elem, "data-slave-mode": "true", label: this.label, restrict: "0123456789/: ", enabled: this.enabled, errorMessage: this.errorMessage, mode: this.mode, onKeyDown: event => { this.handleKeyDown(event); }, onBlur: () => this.handleBlur(), onInput: (evt) => this.handleInput(evt), onFocus: () => this.handleFocus(), onClick: () => this.handleClick(), canShowError: this.canShowError }, index.h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, slot: "leftIcon" })), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none' }, index.h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": core.ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); }, time: true, showSeconds: this.showSeconds }))));
229
+ return (index.h(index.Host, null, index.h("ez-text-input", { "data-element-id": core.ElementIDUtils.getInternalIDInfo("textInput"), ref: elem => this._textInput = elem, "data-slave-mode": "true", label: this.label, restrict: "0123456789/: ", enabled: this.enabled, errorMessage: this.errorMessage, mode: this.mode, onKeyDown: event => { this.handleKeyDown(event); }, onBlur: () => this.handleBlur(), onInput: (evt) => this.handleInput(evt), onFocus: () => this.handleFocus(), onClick: () => this.handleClick(), canShowError: this.canShowError, alternativePlaceholder: this.alternativePlaceholder }, index.h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => { var _a; return (_a = this._popover) === null || _a === void 0 ? void 0 : _a.showUnder(this._textInput); }, slot: "leftIcon" })), index.h("ez-popover-plus", { ref: elem => this._popover = elem, anchorElement: this._textInput, autoClose: true, boxWidth: 'fit-content', overlayType: 'none' }, index.h("ez-calendar", { ref: elem => this._calendar = elem, "data-element-id": core.ElementIDUtils.getInternalIDInfo("calendar"), onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); }, time: true, showSeconds: this.showSeconds }))));
229
230
  }
230
231
  get _elem() { return index.getElement(this); }
231
232
  static get watchers() { return {
@@ -7,7 +7,7 @@ const DialogType = require('./DialogType-2114c337.js');
7
7
  const core = require('@sankhyalabs/core');
8
8
  const FocusResolver = require('./FocusResolver-885f2173.js');
9
9
 
10
- const ezDialogCss = ":host{--dialog__container-padding:var(--space--md, 20px);--dialog__btn__close--background-color:var(--title--primary, #2b3a54);--dialog__btn__no--padding-right:var(--space--large, 24px);--dialog__btn__close__image:url('data:image/svg+xml;utf8,<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg%22%3E<path d=\"M 7.0060773,5.995511 11.461972,1.5397722 c 0.132856,-0.1328413 0.207547,-0.3130253 0.207547,-0.5009046 0,-0.18786999 -0.07469,-0.3680541 -0.207547,-0.5009048 -0.132857,-0.13284126 -0.31302,-0.20748126 -0.500927,-0.20748126 -0.187812,0 -0.36807,0.07464 -0.500926,0.20748126 L 6.0042244,4.9937015 1.5482921,0.5379628 C 1.4154357,0.40512154 1.2352533,0.33048154 1.0473657,0.33048154 c -0.18787813,0 -0.36807,0.07464 -0.50092647,0.20748126 -0.13285646,0.1328507 -0.20749026,0.31303481 -0.20749026,0.5009048 0,0.1878793 0.0746338,0.3680633 0.20749026,0.5009046 L 5.0023715,5.995511 0.54643923,10.452213 c -0.0676086,0.06534 -0.12151598,0.14352 -0.15859681,0.229916 -0.0370714,0.08639 -0.0565645,0.1794 -0.0573369,0.27335 -7.724e-4,0.09404 0.0171873,0.187331 0.0528423,0.274293 0.0356455,0.08705 0.0882688,0.166087 0.15479148,0.23256 0.0665321,0.06648 0.14562277,0.11897 0.2326735,0.154567 0.0870507,0.0356 0.18031463,0.05344 0.2743433,0.05259 0.094029,-8.5e-4 0.1869528,-0.02049 0.2733331,-0.0576 0.08639,-0.0372 0.1645078,-0.09121 0.2298029,-0.158817 L 6.0042244,6.9973204 10.460119,11.453078 c 0.132856,0.132851 0.313114,0.207444 0.500926,0.207444 0.187907,0 0.36807,-0.07459 0.500927,-0.207444 0.132856,-0.13285 0.207547,-0.313006 0.207547,-0.500904 0,-0.187898 -0.07469,-0.368054 -0.207547,-0.500905 z\"/></svg>');--dialog__title--font-pattern:var(--font-pattern, \"Roboto\");--dialog__title--padding-left:var(--space--small, 6px);--dialog__title__container--padding-bottom:var(--space--medium, 12px);--dialog__title--weight--large:var(--text-weight--large, 600);--dialog__body--font-pattern:var(--font-pattern, \"Roboto\");--dialog__body--text-shadow:var(--text-shadow, \"0 0 0 #353535, 0 0 1px transparent\");--dialog__body--text-weight--medium:var(--text-weight--medium, 400);--dialog__body--padding-bottom:var(--space--medium, 12px);--dialog__body--font-size:var(--text--medium, 14px);--dialog__body--color:var(--text--primary, #626e82);--dialog__icon--color:var(--text--inverted, #fff);--dialog__critical--background-color:var(--color--alert-error-800, #BD0025);--dialog__warning--background-color:var(--color--alert-warning-500, #EFB103);--dialog__success--background-color:var(--color--alert-success-500, #00523c);--dialog-z-index:var(--elevation--100, 100);--dialog--warning__image:url('data: image/svg+xml;utf8,<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 7.5,0 0,13 h 15 z m 0,2.73684 5.1341,8.89476 H 2.36591 Z M 6.81818,5.47368 V 8.21053 H 8.18182 V 5.47368 Z m 0,4.10527 V 10.9474 H 8.18182 V 9.57895\"/></svg>');--dialog--critical__image:url('data: image/svg+xml;utf8,<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 7.6534493,6.4948538 12.762051,1.3864299 C 12.914368,1.2341297 13,1.027552 13,0.81215179 13,0.59676225 12.914369,0.39018443 12.762051,0.23787352 12.609733,0.08557341 12.40318,0 12.187747,0 11.972425,0 11.765762,0.08557341 11.613445,0.23787352 L 6.5048431,5.3462975 1.3961977,0.23787352 C 1.2438802,0.08557341 1.0373043,0 0.82189458,0 0.60649572,0 0.39990901,0.08557341 0.24759147,0.23787352 0.09527396,0.39018443 0.00970766,0.59676225 0.00970766,0.81215179 c 0,0.21540021 0.0855663,0.42197791 0.23788381,0.57427811 L 5.3562369,6.4948538 0.24759147,11.604381 c -0.0775121,0.07492 -0.13931586,0.164543 -0.18182835,0.263595 -0.04250169,0.09905 -0.064850182,0.205678 -0.0657357237,0.313391 -8.8554258e-4,0.107813 0.0197049337,0.214771 0.0605827337,0.314472 0.04086693,0.0998 0.10119858,0.190415 0.17746563,0.266625 0.0762779,0.07622 0.16695386,0.136398 0.26675594,0.177208 0.099802,0.04082 0.20672745,0.06127 0.31452961,0.06029 0.1078025,-9.53e-4 0.21433799,-0.0235 0.31337139,-0.06604 0.099045,-0.04265 0.1886052,-0.104571 0.263465,-0.182081 L 6.5048431,7.6434102 11.613445,12.751855 c 0.152317,0.152312 0.35898,0.237831 0.574302,0.237831 0.215433,0 0.421986,-0.08552 0.574304,-0.237831 C 12.914368,12.599545 13,12.393 13,12.177578 13,11.962157 12.91437,11.75561 12.762051,11.603299 Z\"/></svg>')}h2{margin-block-start:0;margin-block-end:0;margin-inline-start:0px;margin-inline-end:0px}.overlay{position:fixed;display:flex;top:0px;z-index:var(--dialog-z-index);left:0px;width:100%;box-sizing:border-box;height:100vh;background-color:rgba(var(--rgb-background--overlay), var(--opacity--soft));backdrop-filter:blur(var(--background-blur--medium))}.dialog{display:flex;width:80%;position:absolute;top:50%;left:50%;margin-right:-50%;box-sizing:border-box;transform:translate(-50%, -50%);box-shadow:0px 0px 16px rgba(0, 38, 111, 0.122)}@media screen and (min-width: 768px){.dialog{width:50%}}@media screen and (min-width: 992px){.dialog{width:33.33333%}}.dialog__container{width:100%;background:#FFFF;border-radius:0px 6px 6px 0px;box-sizing:border-box;padding:var(--dialog__container-padding)}.dialog__container--default{border-radius:6px 6px 6px 6px}.dialog__critical--indicator{box-sizing:border-box;width:12px;border-radius:6px 0px 0px 6px;background-color:var(--dialog__critical--background-color)}.dialog__warning--indicator{width:12px;border-radius:6px 0px 0px 6px;box-sizing:border-box;background-color:var(--dialog__warning--background-color)}.dialog__success--indicator{width:12px;border-radius:6px 0px 0px 6px;box-sizing:border-box;background-color:var(--dialog__success--background-color)}.message{font-size:var(--dialog__body--font-size);font-weight:var(--dialog__body--text-weight--medium);font-family:var(--dialog__body--font-pattern);text-shadow:var(--dialog__body--text-shadow);padding-bottom:var(--dialog__body--padding-bottom);color:var(--dialog__body--color);max-height:30vh;content-visibility:auto;margin-bottom:var(--space--medium);overflow-y:auto}.changeable__icon{background:var(--dialog__warning--background-color);--ez-icon--color:var(--dialog__icon--color);display:grid;place-items:center;width:26px;height:26px;border-radius:50%}.changeable__icon.critical{background:var(--dialog__critical--background-color)}.title{display:flex;font-family:var(--dialog__title--font-pattern);margin:0;font-weight:var(--dialog__title--weight--large);line-height:0;color:var(--title--primary)}.title__container{display:flex;padding-bottom:var(--dialog__title__container--padding-bottom)}.title__box{display:flex;width:100%;align-items:center;align-self:center}.title__label{padding-left:var(--dialog__title--padding-left)}.title__label--no-icon{padding-left:0}.title-icon--critical{background-color:var(--dialog__critical--background-color)}.title-icon--success{background-color:var(--dialog__success--background-color)}.title-icon--warn{background-color:var(--dialog__warning--background-color)}.btn-close{justify-content:flex-end;align-self:flex-start;align-items:flex-start;display:flex;outline:none;width:10%;border:none;background-color:unset;cursor:pointer}.btn-close::after{content:'';display:flex;background-color:var(--dialog__btn__close--background-color);width:12px;height:12px;-webkit-mask-image:var(--dialog__btn__close__image);mask-image:var(--dialog__btn__close__image)}.title-icon::after{content:'';display:flex;background-color:#FFFF;width:15px;height:15px;-webkit-mask-image:var(--dialog--warning__image);mask-image:var(--dialog--warning__image)}.button-yes-no__container{display:flex;box-sizing:border-box;align-self:center;align-items:center;justify-content:flex-end}.button__cancel{padding-right:var(--dialog__btn__no--padding-right)}.button__confirm{--ez-button--background-color:var(--color--primary);--ez-button--color:var(--color--inverted);--ez-button--hover--background-color:var(--color--primary-600);--ez-button--hover-color:var(--color--inverted)}.button__confirm--danger{--ez-button--background-color:var(--color--alert-error-800, #BD0025);--ez-button--color:var(--color--inverted);--ez-button--hover--background-color:var(--color-alert--error-900, #a10020);--ez-button--hover-color:var(--color--inverted)}.button__confirm--container{display:flex;justify-content:flex-end}.row{width:100%;display:flex;flex-wrap:wrap}.col{display:flex;flex-wrap:wrap;align-self:flex-start;box-sizing:border-box}.col--stretch{align-self:stretch}.col--undefined{width:unset}.col--nowrap{flex-wrap:nowrap}@media screen and (min-width: 320px){.col--sd-1{width:8.33333%}.col--sd-2{width:16.66667%}.col--sd-3{width:25%}.col--sd-4{width:33.33333%}.col--sd-5{width:41.66667%}.col--sd-6{width:50%}.col--sd-7{width:58.33333%}.col--sd-8{width:66.66667%}.col--sd-9{width:75%}.col--sd-10{width:83.33333%}.col--sd-11{width:91.66667%}.col--sd-12{width:100%}}@media screen and (min-width: 480px){.col--pn-1{width:8.33333%}.col--pn-2{width:16.66667%}.col--pn-3{width:25%}.col--pn-4{width:33.33333%}.col--pn-5{width:41.66667%}.col--pn-6{width:50%}.col--pn-7{width:58.33333%}.col--pn-8{width:66.66667%}.col--pn-9{width:75%}.col--pn-10{width:83.33333%}.col--pn-11{width:91.66667%}.col--pn-12{width:100%}}@media screen and (min-width: 768px){.col--tb-1{width:8.33333%}.col--tb-2{width:16.66667%}.col--tb-3{width:25%}.col--tb-4{width:33.33333%}.col--tb-5{width:41.66667%}.col--tb-6{width:50%}.col--tb-7{width:58.33333%}.col--tb-8{width:66.66667%}.col--tb-9{width:75%}.col--tb-10{width:83.33333%}.col--tb-11{width:91.66667%}.col--tb-12{width:100%}}@media screen and (min-width: 992px){.col--md-1{width:8.33333%}.col--md-2{width:16.66667%}.col--md-3{width:25%}.col--md-4{width:33.33333%}.col--md-5{width:41.66667%}.col--md-6{width:50%}.col--md-7{width:58.33333%}.col--md-8{width:66.66667%}.col--md-9{width:75%}.col--md-10{width:83.33333%}.col--md-11{width:91.66667%}.col--md-12{width:100%}}@media screen and (min-width: 1200px){.col--ld-1{width:8.33333%}.col--ld-2{width:16.66667%}.col--ld-3{width:25%}.col--ld-4{width:33.33333%}.col--ld-5{width:41.66667%}.col--ld-6{width:50%}.col--ld-7{width:58.33333%}.col--ld-8{width:66.66667%}.col--ld-9{width:75%}.col--ld-10{width:83.33333%}.col--ld-11{width:91.66667%}.col--ld-12{width:100%}}";
10
+ const ezDialogCss = ":host{--dialog__container-padding:var(--space--md, 20px);--dialog__btn__close--background-color:var(--title--primary, #2b3a54);--dialog__btn__no--padding-right:var(--space--large, 24px);--dialog__btn__close__image:url('data:image/svg+xml;utf8,<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg%22%3E<path d=\"M 7.0060773,5.995511 11.461972,1.5397722 c 0.132856,-0.1328413 0.207547,-0.3130253 0.207547,-0.5009046 0,-0.18786999 -0.07469,-0.3680541 -0.207547,-0.5009048 -0.132857,-0.13284126 -0.31302,-0.20748126 -0.500927,-0.20748126 -0.187812,0 -0.36807,0.07464 -0.500926,0.20748126 L 6.0042244,4.9937015 1.5482921,0.5379628 C 1.4154357,0.40512154 1.2352533,0.33048154 1.0473657,0.33048154 c -0.18787813,0 -0.36807,0.07464 -0.50092647,0.20748126 -0.13285646,0.1328507 -0.20749026,0.31303481 -0.20749026,0.5009048 0,0.1878793 0.0746338,0.3680633 0.20749026,0.5009046 L 5.0023715,5.995511 0.54643923,10.452213 c -0.0676086,0.06534 -0.12151598,0.14352 -0.15859681,0.229916 -0.0370714,0.08639 -0.0565645,0.1794 -0.0573369,0.27335 -7.724e-4,0.09404 0.0171873,0.187331 0.0528423,0.274293 0.0356455,0.08705 0.0882688,0.166087 0.15479148,0.23256 0.0665321,0.06648 0.14562277,0.11897 0.2326735,0.154567 0.0870507,0.0356 0.18031463,0.05344 0.2743433,0.05259 0.094029,-8.5e-4 0.1869528,-0.02049 0.2733331,-0.0576 0.08639,-0.0372 0.1645078,-0.09121 0.2298029,-0.158817 L 6.0042244,6.9973204 10.460119,11.453078 c 0.132856,0.132851 0.313114,0.207444 0.500926,0.207444 0.187907,0 0.36807,-0.07459 0.500927,-0.207444 0.132856,-0.13285 0.207547,-0.313006 0.207547,-0.500904 0,-0.187898 -0.07469,-0.368054 -0.207547,-0.500905 z\"/></svg>');--dialog__title--font-pattern:var(--font-pattern, \"Roboto\");--dialog__title--padding-left:var(--space--small, 6px);--dialog__title__container--padding-bottom:var(--space--medium, 12px);--dialog__title--weight--large:var(--text-weight--large, 600);--dialog__body--font-pattern:var(--font-pattern, \"Roboto\");--dialog__body--text-shadow:var(--text-shadow, \"0 0 0 #353535, 0 0 1px transparent\");--dialog__body--text-weight--medium:var(--text-weight--medium, 400);--dialog__body--padding-bottom:var(--space--medium, 12px);--dialog__body--font-size:var(--text--medium, 14px);--dialog__body--color:var(--text--primary, #626e82);--dialog__icon--color:var(--text--inverted, #fff);--dialog__critical--background-color:var(--color--alert-error-800, #BD0025);--dialog__warning--background-color:var(--color--alert-warning-500, #EFB103);--dialog__success--background-color:var(--color--alert-success-500, #00523c);--dialog-z-index:var(--elevation--100, 100);--dialog--warning__image:url('data: image/svg+xml;utf8,<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 7.5,0 0,13 h 15 z m 0,2.73684 5.1341,8.89476 H 2.36591 Z M 6.81818,5.47368 V 8.21053 H 8.18182 V 5.47368 Z m 0,4.10527 V 10.9474 H 8.18182 V 9.57895\"/></svg>');--dialog--critical__image:url('data: image/svg+xml;utf8,<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 7.6534493,6.4948538 12.762051,1.3864299 C 12.914368,1.2341297 13,1.027552 13,0.81215179 13,0.59676225 12.914369,0.39018443 12.762051,0.23787352 12.609733,0.08557341 12.40318,0 12.187747,0 11.972425,0 11.765762,0.08557341 11.613445,0.23787352 L 6.5048431,5.3462975 1.3961977,0.23787352 C 1.2438802,0.08557341 1.0373043,0 0.82189458,0 0.60649572,0 0.39990901,0.08557341 0.24759147,0.23787352 0.09527396,0.39018443 0.00970766,0.59676225 0.00970766,0.81215179 c 0,0.21540021 0.0855663,0.42197791 0.23788381,0.57427811 L 5.3562369,6.4948538 0.24759147,11.604381 c -0.0775121,0.07492 -0.13931586,0.164543 -0.18182835,0.263595 -0.04250169,0.09905 -0.064850182,0.205678 -0.0657357237,0.313391 -8.8554258e-4,0.107813 0.0197049337,0.214771 0.0605827337,0.314472 0.04086693,0.0998 0.10119858,0.190415 0.17746563,0.266625 0.0762779,0.07622 0.16695386,0.136398 0.26675594,0.177208 0.099802,0.04082 0.20672745,0.06127 0.31452961,0.06029 0.1078025,-9.53e-4 0.21433799,-0.0235 0.31337139,-0.06604 0.099045,-0.04265 0.1886052,-0.104571 0.263465,-0.182081 L 6.5048431,7.6434102 11.613445,12.751855 c 0.152317,0.152312 0.35898,0.237831 0.574302,0.237831 0.215433,0 0.421986,-0.08552 0.574304,-0.237831 C 12.914368,12.599545 13,12.393 13,12.177578 13,11.962157 12.91437,11.75561 12.762051,11.603299 Z\"/></svg>')}h2{margin-block-start:0;margin-block-end:0;margin-inline-start:0px;margin-inline-end:0px}.overlay{position:fixed;display:flex;top:0px;z-index:var(--dialog-z-index);left:0px;width:100%;box-sizing:border-box;height:100vh;background-color:rgba(var(--rgb-background--overlay), var(--opacity--soft));backdrop-filter:blur(var(--background-blur--medium))}.dialog{display:flex;width:80%;position:absolute;top:50%;left:50%;margin-right:-50%;box-sizing:border-box;transform:translate(-50%, -50%);box-shadow:0px 0px 16px rgba(0, 38, 111, 0.122)}@media screen and (min-width: 768px){.dialog{width:50%}}@media screen and (min-width: 992px){.dialog{width:33.33333%}}.dialog__container{width:100%;background:#FFFF;border-radius:0px 6px 6px 0px;box-sizing:border-box;padding:var(--dialog__container-padding)}.dialog__container--default{border-radius:6px 6px 6px 6px}.dialog__critical--indicator{box-sizing:border-box;width:12px;border-radius:6px 0px 0px 6px;background-color:var(--dialog__critical--background-color)}.dialog__warning--indicator{width:12px;border-radius:6px 0px 0px 6px;box-sizing:border-box;background-color:var(--dialog__warning--background-color)}.dialog__success--indicator{width:12px;border-radius:6px 0px 0px 6px;box-sizing:border-box;background-color:var(--dialog__success--background-color)}.message{font-size:var(--dialog__body--font-size);font-weight:var(--dialog__body--text-weight--medium);font-family:var(--dialog__body--font-pattern);text-shadow:var(--dialog__body--text-shadow);padding-bottom:var(--dialog__body--padding-bottom);color:var(--dialog__body--color);max-height:30vh;content-visibility:auto;margin-bottom:var(--space--medium);overflow-y:auto}.changeable__icon__container{background:var(--dialog__warning--background-color);display:flex;justify-content:center;align-items:center;min-width:26px;min-height:26px;border-radius:50%}.changeable__icon{--ez-icon--color:var(--dialog__icon--color)}.changeable__icon__container.title-icon--critical{background-color:var(--dialog__critical--background-color)}.changeable__icon__container.title-icon--success{background-color:var(--dialog__success--background-color)}.changeable__icon__container.title-icon--warn{background-color:var(--dialog__warning--background-color)}.changeable__icon__container.title-icon--warn ez-icon{transform:translateY(-1px)}.title{display:flex;font-family:var(--dialog__title--font-pattern);margin:0;font-weight:var(--dialog__title--weight--large);color:var(--title--primary)}.title__container{display:flex;padding-bottom:var(--dialog__title__container--padding-bottom)}.title__box{display:flex;width:100%;align-items:center;align-self:center}.title__label{padding-left:var(--dialog__title--padding-left)}.title__label--no-icon{padding-left:0}.btn-close{justify-content:flex-end;align-self:flex-start;align-items:flex-start;display:flex;outline:none;width:10%;border:none;background-color:unset;cursor:pointer}.btn-close::after{content:'';display:flex;background-color:var(--dialog__btn__close--background-color);width:12px;height:12px;-webkit-mask-image:var(--dialog__btn__close__image);mask-image:var(--dialog__btn__close__image)}.title-icon::after{content:'';display:flex;background-color:#FFFF;width:15px;height:15px;-webkit-mask-image:var(--dialog--warning__image);mask-image:var(--dialog--warning__image)}.button-yes-no__container{display:flex;box-sizing:border-box;align-self:center;align-items:center;justify-content:flex-end}.button__cancel{padding-right:var(--dialog__btn__no--padding-right)}.button__confirm{--ez-button--background-color:var(--color--primary);--ez-button--color:var(--color--inverted);--ez-button--hover--background-color:var(--color--primary-600);--ez-button--hover-color:var(--color--inverted)}.button__confirm--danger{--ez-button--background-color:var(--color--alert-error-800, #BD0025);--ez-button--color:var(--color--inverted);--ez-button--hover--background-color:var(--color-alert--error-900, #a10020);--ez-button--hover-color:var(--color--inverted)}.button__confirm--container{display:flex;justify-content:flex-end}.row{width:100%;display:flex;flex-wrap:wrap}.col{display:flex;flex-wrap:wrap;align-self:flex-start;box-sizing:border-box}.col--stretch{align-self:stretch}.col--undefined{width:unset}.col--nowrap{flex-wrap:nowrap}@media screen and (min-width: 320px){.col--sd-1{width:8.33333%}.col--sd-2{width:16.66667%}.col--sd-3{width:25%}.col--sd-4{width:33.33333%}.col--sd-5{width:41.66667%}.col--sd-6{width:50%}.col--sd-7{width:58.33333%}.col--sd-8{width:66.66667%}.col--sd-9{width:75%}.col--sd-10{width:83.33333%}.col--sd-11{width:91.66667%}.col--sd-12{width:100%}}@media screen and (min-width: 480px){.col--pn-1{width:8.33333%}.col--pn-2{width:16.66667%}.col--pn-3{width:25%}.col--pn-4{width:33.33333%}.col--pn-5{width:41.66667%}.col--pn-6{width:50%}.col--pn-7{width:58.33333%}.col--pn-8{width:66.66667%}.col--pn-9{width:75%}.col--pn-10{width:83.33333%}.col--pn-11{width:91.66667%}.col--pn-12{width:100%}}@media screen and (min-width: 768px){.col--tb-1{width:8.33333%}.col--tb-2{width:16.66667%}.col--tb-3{width:25%}.col--tb-4{width:33.33333%}.col--tb-5{width:41.66667%}.col--tb-6{width:50%}.col--tb-7{width:58.33333%}.col--tb-8{width:66.66667%}.col--tb-9{width:75%}.col--tb-10{width:83.33333%}.col--tb-11{width:91.66667%}.col--tb-12{width:100%}}@media screen and (min-width: 992px){.col--md-1{width:8.33333%}.col--md-2{width:16.66667%}.col--md-3{width:25%}.col--md-4{width:33.33333%}.col--md-5{width:41.66667%}.col--md-6{width:50%}.col--md-7{width:58.33333%}.col--md-8{width:66.66667%}.col--md-9{width:75%}.col--md-10{width:83.33333%}.col--md-11{width:91.66667%}.col--md-12{width:100%}}@media screen and (min-width: 1200px){.col--ld-1{width:8.33333%}.col--ld-2{width:16.66667%}.col--ld-3{width:25%}.col--ld-4{width:33.33333%}.col--ld-5{width:41.66667%}.col--ld-6{width:50%}.col--ld-7{width:58.33333%}.col--ld-8{width:66.66667%}.col--ld-9{width:75%}.col--ld-10{width:83.33333%}.col--ld-11{width:91.66667%}.col--ld-12{width:100%}}";
11
11
 
12
12
  class Message {
13
13
  constructor(title, message, dialogType, confirm, icon, labelCancel, labelConfirm, btnConfirmDanger, callBack, beforeClose) {
@@ -93,7 +93,8 @@ const EzDialog = class {
93
93
  if (message.dialogType === DialogType.DialogType.DEFAULT) {
94
94
  return;
95
95
  }
96
- return index.h("ez-icon", { class: "changeable__icon " + this.getIconClass(message.dialogType), size: "small", iconName: this.getIconName(message) });
96
+ const iconClass = this.getIconClass(message.dialogType);
97
+ return (index.h("div", { class: `changeable__icon__container ${iconClass}` }, index.h("ez-icon", { class: "changeable__icon", size: "small", iconName: this.getIconName(message) })));
97
98
  }
98
99
  getIconClass(dialogType) {
99
100
  if (this.isCritical(dialogType)) {
@@ -160,7 +161,7 @@ const EzDialog = class {
160
161
  }
161
162
  componentDidLoad() {
162
163
  core.ElementIDUtils.addIDInfo(this._element);
163
- new core.KeyboardManager({ propagate: false, element: this._element })
164
+ this._keyboardManager = new core.KeyboardManager({ propagate: false, element: this._element })
164
165
  .bind("Enter", () => this.handleButtonClick(true), { description: "Botão de confirmação ou OK", element: this._element })
165
166
  .bind("Escape", () => this.handleButtonClick(false), { description: "Botão de fechar ou x", element: this._element })
166
167
  .bind("Esc", () => this.handleButtonClick(false), { description: "Botão de fechar ou x", element: this._element });
@@ -192,8 +193,10 @@ const EzDialog = class {
192
193
  });
193
194
  }
194
195
  disconnectedCallback() {
196
+ var _a;
195
197
  FocusResolver.FocusResolver.resolveFocus(this._lastActiveElement);
196
198
  this._lastActiveElement = undefined;
199
+ (_a = this._keyboardManager) === null || _a === void 0 ? void 0 : _a.unbindAllShortcutKeys();
197
200
  }
198
201
  render() {
199
202
  if (this.opened && this._currentMessage) {