@sankhyalabs/ezui 1.2.0-beta.9 → 2.0.0

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 (290) hide show
  1. package/dist/cjs/{ApplicationUtils-2ac1b73e.js → ApplicationUtils-edc62c5c.js} +4 -1
  2. package/dist/cjs/CheckMode-ecb90b87.js +7 -0
  3. package/dist/cjs/{DialogType-a1e288e6.js → DialogType-aa435c52.js} +1 -0
  4. package/dist/cjs/ez-actions-button.cjs.entry.js +68 -17
  5. package/dist/cjs/ez-application.cjs.entry.js +1 -1
  6. package/dist/cjs/ez-button.cjs.entry.js +13 -11
  7. package/dist/cjs/ez-calendar.cjs.entry.js +5 -5
  8. package/dist/cjs/ez-card-item.cjs.entry.js +1 -1
  9. package/dist/cjs/ez-check.cjs.entry.js +11 -9
  10. package/dist/cjs/ez-chip.cjs.entry.js +17 -7
  11. package/dist/cjs/ez-collapsible-box.cjs.entry.js +85 -7
  12. package/dist/cjs/ez-combo-box.cjs.entry.js +51 -20
  13. package/dist/cjs/ez-date-input.cjs.entry.js +13 -18
  14. package/dist/cjs/ez-date-time-input.cjs.entry.js +12 -17
  15. package/dist/cjs/ez-dialog.cjs.entry.js +43 -8
  16. package/dist/cjs/ez-filter-input.cjs.entry.js +1 -1
  17. package/dist/cjs/ez-form.cjs.entry.js +99 -486
  18. package/dist/cjs/ez-grid-config.cjs.entry.js +8 -9
  19. package/dist/cjs/ez-grid.cjs.entry.js +1067 -1165
  20. package/dist/cjs/ez-icon.cjs.entry.js +3 -3
  21. package/dist/cjs/ez-list.cjs.entry.js +2 -4
  22. package/dist/cjs/ez-loading-bar.cjs.entry.js +1 -1
  23. package/dist/cjs/ez-modal-container.cjs.entry.js +58 -0
  24. package/dist/cjs/ez-modal.cjs.entry.js +1 -1
  25. package/dist/cjs/ez-number-input.cjs.entry.js +4 -4
  26. package/dist/cjs/ez-popover.cjs.entry.js +6 -6
  27. package/dist/cjs/ez-popup.cjs.entry.js +8 -4
  28. package/dist/cjs/ez-radio-button.cjs.entry.js +3 -3
  29. package/dist/cjs/ez-scroller.cjs.entry.js +2 -2
  30. package/dist/cjs/ez-search.cjs.entry.js +1 -1
  31. package/dist/cjs/ez-select-box.cjs.entry.js +1 -1
  32. package/dist/cjs/ez-tabselector.cjs.entry.js +8 -7
  33. package/dist/cjs/ez-text-area.cjs.entry.js +7 -7
  34. package/dist/cjs/ez-text-edit.cjs.entry.js +103 -0
  35. package/dist/cjs/ez-text-input.cjs.entry.js +14 -4
  36. package/dist/cjs/ez-time-input.cjs.entry.js +7 -7
  37. package/dist/cjs/ez-toast.cjs.entry.js +2 -2
  38. package/dist/cjs/ez-upload.cjs.entry.js +4 -4
  39. package/dist/cjs/ez-view-stack.cjs.entry.js +10 -7
  40. package/dist/cjs/ezui.cjs.js +4 -112
  41. package/dist/cjs/loader.cjs.js +2 -18
  42. package/dist/collection/collection-manifest.json +2 -0
  43. package/dist/collection/components/ez-actions-button/ez-actions-button.css +49 -20
  44. package/dist/collection/components/ez-actions-button/ez-actions-button.js +219 -23
  45. package/dist/collection/components/ez-button/ez-button.css +0 -6
  46. package/dist/collection/components/ez-button/ez-button.js +11 -9
  47. package/dist/collection/components/ez-calendar/ez-calendar.css +17 -20
  48. package/dist/collection/components/ez-check/CheckMode.js +5 -0
  49. package/dist/collection/components/ez-check/ez-check.css +23 -24
  50. package/dist/collection/components/ez-check/ez-check.js +10 -8
  51. package/dist/collection/components/ez-chip/ez-chip.css +4 -2
  52. package/dist/collection/components/ez-chip/ez-chip.js +16 -6
  53. package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +16 -0
  54. package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.js +226 -7
  55. package/dist/collection/components/ez-combo-box/ez-combo-box.css +1 -22
  56. package/dist/collection/components/ez-combo-box/ez-combo-box.js +51 -20
  57. package/dist/collection/components/ez-date-input/ez-date-input.js +8 -13
  58. package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +8 -13
  59. package/dist/collection/components/ez-dialog/DialogType.js +1 -0
  60. package/dist/collection/components/ez-dialog/ez-dialog.css +19 -25
  61. package/dist/collection/components/ez-dialog/ez-dialog.js +41 -6
  62. package/dist/collection/components/ez-form/DataBinder.js +1 -0
  63. package/dist/collection/components/ez-form/ez-form.js +22 -13
  64. package/dist/collection/components/ez-form/fieldbuilder/FieldBuilder.js +3 -3
  65. package/dist/collection/components/ez-form/fieldbuilder/tpl/CheckBox.tpl.js +2 -1
  66. package/dist/collection/components/ez-form/fieldbuilder/tpl/DateInput.tpl.js +4 -4
  67. package/dist/collection/components/ez-form/structure/FormSheetMetadata.js +25 -15
  68. package/dist/collection/components/ez-grid/controller/DataUnitBridge.js +3 -0
  69. package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +45 -12
  70. package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRenderer.js +31 -0
  71. package/dist/collection/components/ez-grid/ez-grid.js +40 -3
  72. package/dist/collection/components/ez-grid/subcomponents/ez-grid-config/ez-grid-config.css +38 -27
  73. package/dist/collection/components/ez-grid/subcomponents/ez-grid-config/ez-grid-config.js +1 -2
  74. package/dist/collection/components/ez-grid/subcomponents/ez-select-box/ez-select-box.js +5 -4
  75. package/dist/collection/components/ez-list/ez-list.css +12 -4
  76. package/dist/collection/components/ez-modal-container/ez-modal-container.css +38 -0
  77. package/dist/collection/components/ez-modal-container/ez-modal-container.js +190 -0
  78. package/dist/collection/components/ez-modal-container/index.js +2 -0
  79. package/dist/collection/components/ez-modal-container/modal-action.js +8 -0
  80. package/dist/collection/components/ez-modal-container/modal-button-status.js +7 -0
  81. package/dist/collection/components/ez-popover/ez-popover.css +1 -1
  82. package/dist/collection/components/ez-popup/ez-popup.css +6 -1
  83. package/dist/collection/components/ez-popup/ez-popup.js +26 -4
  84. package/dist/collection/components/ez-radio-button/ez-radio-button.css +16 -5
  85. package/dist/collection/components/ez-radio-button/ez-radio-button.js +1 -1
  86. package/dist/collection/components/ez-scroller/ez-scroller.css +2 -2
  87. package/dist/collection/components/ez-search/ez-search.js +6 -6
  88. package/dist/collection/components/ez-tabselector/ez-tabselector.css +10 -1
  89. package/dist/collection/components/ez-tabselector/ez-tabselector.js +7 -3
  90. package/dist/collection/components/ez-text-area/ez-text-area.css +6 -3
  91. package/dist/collection/components/ez-text-area/ez-text-area.js +5 -5
  92. package/dist/collection/components/ez-text-edit/ez-text-edit.css +19 -0
  93. package/dist/collection/components/ez-text-edit/ez-text-edit.js +188 -0
  94. package/dist/collection/components/ez-text-input/ez-text-input.css +18 -2
  95. package/dist/collection/components/ez-text-input/ez-text-input.js +28 -0
  96. package/dist/collection/components/ez-toast/ez-toast.css +1 -1
  97. package/dist/collection/components/ez-upload/ez-upload.css +1 -1
  98. package/dist/collection/components/ez-view-stack/ez-view-stack.js +12 -6
  99. package/dist/collection/utils/ApplicationUtils.js +3 -0
  100. package/dist/collection/utils/index.js +1 -0
  101. package/dist/custom-elements/index.d.ts +12 -0
  102. package/dist/custom-elements/index.js +1589 -4002
  103. package/dist/{ezui/ApplicationUtils-30a69eb0.js → esm/ApplicationUtils-205ac4bc.js} +4 -2
  104. package/dist/esm/CheckMode-bdb2ec19.js +7 -0
  105. package/dist/esm/{DialogType-72afa679.js → DialogType-4059dc4d.js} +1 -0
  106. package/dist/esm/ez-actions-button.entry.js +68 -17
  107. package/dist/esm/ez-application.entry.js +1 -1
  108. package/dist/esm/ez-button.entry.js +13 -11
  109. package/dist/esm/ez-calendar.entry.js +3 -3
  110. package/dist/esm/ez-card-item.entry.js +1 -1
  111. package/dist/esm/ez-check.entry.js +11 -9
  112. package/dist/esm/ez-chip.entry.js +17 -7
  113. package/dist/esm/ez-collapsible-box.entry.js +85 -7
  114. package/dist/esm/ez-combo-box.entry.js +48 -17
  115. package/dist/esm/ez-date-input.entry.js +10 -15
  116. package/dist/esm/ez-date-time-input.entry.js +10 -15
  117. package/dist/esm/ez-dialog.entry.js +43 -8
  118. package/dist/esm/ez-filter-input.entry.js +1 -1
  119. package/dist/esm/ez-form.entry.js +65 -452
  120. package/dist/esm/ez-grid-config.entry.js +6 -7
  121. package/dist/esm/ez-grid.entry.js +1033 -1131
  122. package/dist/esm/ez-icon.entry.js +2 -2
  123. package/dist/esm/ez-list.entry.js +2 -4
  124. package/dist/esm/ez-loading-bar.entry.js +1 -1
  125. package/dist/esm/ez-modal-container.entry.js +54 -0
  126. package/dist/esm/ez-modal.entry.js +1 -1
  127. package/dist/esm/ez-number-input.entry.js +2 -2
  128. package/dist/esm/ez-popover.entry.js +3 -3
  129. package/dist/esm/ez-popup.entry.js +8 -4
  130. package/dist/esm/ez-radio-button.entry.js +3 -3
  131. package/dist/esm/ez-scroller.entry.js +2 -2
  132. package/dist/esm/ez-search.entry.js +1 -1
  133. package/dist/esm/ez-select-box.entry.js +1 -1
  134. package/dist/esm/ez-tabselector.entry.js +8 -7
  135. package/dist/esm/ez-text-area.entry.js +7 -7
  136. package/dist/esm/ez-text-edit.entry.js +99 -0
  137. package/dist/esm/ez-text-input.entry.js +13 -3
  138. package/dist/esm/ez-time-input.entry.js +2 -2
  139. package/dist/esm/ez-toast.entry.js +2 -2
  140. package/dist/esm/ez-upload.entry.js +4 -4
  141. package/dist/esm/ez-view-stack.entry.js +10 -7
  142. package/dist/esm/ezui.js +4 -112
  143. package/dist/esm/loader.js +2 -18
  144. package/dist/ezui/ezui.esm.js +1 -125
  145. package/dist/ezui/index.esm.js +0 -1
  146. package/dist/ezui/p-04a41a44.entry.js +1 -0
  147. package/dist/ezui/p-0b44cf1c.js +1 -0
  148. package/dist/ezui/p-0c7203d5.entry.js +1 -0
  149. package/dist/ezui/p-2213da1f.entry.js +1 -0
  150. package/dist/ezui/p-2c6398b3.entry.js +1 -0
  151. package/dist/ezui/p-2ccad880.entry.js +1 -0
  152. package/dist/ezui/p-333d79c4.entry.js +1 -0
  153. package/dist/ezui/p-3987f8d8.entry.js +1 -0
  154. package/dist/ezui/{p-81eb2738.entry.js → p-42c6493e.entry.js} +1 -1
  155. package/dist/ezui/{p-b4ad3b15.entry.js → p-482c3dd8.entry.js} +1 -1
  156. package/dist/ezui/p-5bdb1a41.entry.js +1 -0
  157. package/dist/ezui/{p-b2cf7db2.entry.js → p-63d567cc.entry.js} +1 -1
  158. package/dist/ezui/p-659616e4.entry.js +1 -0
  159. package/dist/ezui/p-6608b9a5.entry.js +1 -0
  160. package/dist/ezui/p-77ec47ac.entry.js +1 -0
  161. package/dist/ezui/p-9b9ebf95.entry.js +1 -0
  162. package/dist/ezui/{p-3a0dd69f.entry.js → p-ae5af8f9.entry.js} +1 -1
  163. package/dist/ezui/p-b853763b.js +1 -0
  164. package/dist/ezui/p-be06251d.entry.js +1 -0
  165. package/dist/ezui/{p-e7d03a0d.entry.js → p-bffae598.entry.js} +1 -1
  166. package/dist/ezui/p-cd4677d4.entry.js +1 -0
  167. package/dist/ezui/p-cfcc23e6.entry.js +1 -0
  168. package/dist/ezui/p-dfcf55e0.entry.js +1 -0
  169. package/dist/ezui/p-e1148f5c.js +1 -0
  170. package/dist/ezui/p-e1f2b5da.entry.js +1 -0
  171. package/dist/ezui/p-e230bfd2.entry.js +1 -0
  172. package/dist/ezui/{p-c0dd9a2e.entry.js → p-e3ee814c.entry.js} +1 -1
  173. package/dist/ezui/p-e697ffd5.entry.js +1 -0
  174. package/dist/ezui/{p-4eb273f8.entry.js → p-efa32bcc.entry.js} +1 -1
  175. package/dist/types/components/ez-actions-button/ez-actions-button.d.ts +42 -9
  176. package/dist/types/components/ez-check/CheckMode.d.ts +4 -0
  177. package/dist/types/components/ez-chip/ez-chip.d.ts +2 -1
  178. package/dist/types/components/ez-collapsible-box/ez-collapsible-box.d.ts +46 -1
  179. package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +15 -5
  180. package/dist/types/components/ez-date-input/ez-date-input.d.ts +0 -1
  181. package/dist/types/components/ez-date-time-input/ez-date-time-input.d.ts +0 -1
  182. package/dist/types/components/ez-dialog/DialogType.d.ts +1 -0
  183. package/dist/types/components/ez-dialog/ez-dialog.d.ts +3 -0
  184. package/dist/types/components/ez-form/DataBinder.d.ts +2 -2
  185. package/dist/types/components/ez-form/ez-form.d.ts +21 -11
  186. package/dist/types/components/ez-form/fieldbuilder/tpl/CheckBox.tpl.d.ts +3 -3
  187. package/dist/types/components/ez-form/fieldbuilder/tpl/DateInput.tpl.d.ts +4 -2
  188. package/dist/types/components/ez-form/fieldbuilder/tpl/NumberInput.tpl.d.ts +2 -5
  189. package/dist/types/components/ez-form/structure/FormSheetMetadata.d.ts +3 -3
  190. package/dist/types/components/ez-grid/controller/EzGridController.d.ts +11 -0
  191. package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +4 -1
  192. package/dist/types/components/ez-grid/controller/ag-grid/components/cellRenderer.d.ts +9 -0
  193. package/dist/types/components/ez-grid/ez-grid.d.ts +8 -3
  194. package/dist/types/components/ez-grid/subcomponents/ez-select-box/ez-select-box.d.ts +2 -6
  195. package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +47 -0
  196. package/dist/types/components/ez-modal-container/index.d.ts +2 -0
  197. package/dist/types/components/ez-modal-container/modal-action.d.ts +7 -0
  198. package/dist/types/components/ez-modal-container/modal-button-status.d.ts +6 -0
  199. package/dist/types/components/ez-popup/ez-popup.d.ts +4 -0
  200. package/dist/types/components/ez-search/ez-search.d.ts +3 -3
  201. package/dist/types/components/ez-tabselector/ez-tabselector.d.ts +2 -0
  202. package/dist/types/components/ez-text-edit/ez-text-edit.d.ts +39 -0
  203. package/dist/types/components/ez-text-input/ez-text-input.d.ts +5 -0
  204. package/dist/types/components/ez-view-stack/ez-view-stack.d.ts +5 -1
  205. package/dist/types/components.d.ts +274 -28
  206. package/dist/types/utils/ApplicationUtils.d.ts +1 -0
  207. package/dist/types/utils/index.d.ts +1 -0
  208. package/package.json +5 -5
  209. package/react/components.d.ts +2 -0
  210. package/react/components.js +2 -0
  211. package/react/components.js.map +1 -1
  212. package/dist/cjs/ApplicationUtils-475b50d9.js +0 -63
  213. package/dist/cjs/app-globals-3a1e7e63.js +0 -5
  214. package/dist/cjs/css-shim-3bfdba4f.js +0 -6
  215. package/dist/cjs/dom-8ac1ad03.js +0 -75
  216. package/dist/cjs/index-2ec1da82.js +0 -2307
  217. package/dist/cjs/index-55178184.js +0 -6
  218. package/dist/cjs/index-d9c5cb88.js +0 -3068
  219. package/dist/cjs/shadow-css-41d9783d.js +0 -390
  220. package/dist/esm/ApplicationUtils-30a69eb0.js +0 -61
  221. package/dist/esm/ApplicationUtils-a4a76132.js +0 -60
  222. package/dist/esm/app-globals-0f993ce5.js +0 -3
  223. package/dist/esm/css-shim-20dbffa5.js +0 -4
  224. package/dist/esm/dom-c5ed0ba5.js +0 -73
  225. package/dist/esm/index-1e9d524f.js +0 -3031
  226. package/dist/esm/index-b96183c8.js +0 -2295
  227. package/dist/esm/index-f32470b5.js +0 -3
  228. package/dist/esm/shadow-css-8c625855.js +0 -388
  229. package/dist/ezui/CSSVarsUtils-00f67f32.js +0 -70
  230. package/dist/ezui/DialogType-72afa679.js +0 -8
  231. package/dist/ezui/app-globals-0f993ce5.js +0 -3
  232. package/dist/ezui/css-shim-20dbffa5.js +0 -4
  233. package/dist/ezui/dom-c5ed0ba5.js +0 -73
  234. package/dist/ezui/ez-actions-button.entry.js +0 -98
  235. package/dist/ezui/ez-application.entry.js +0 -22
  236. package/dist/ezui/ez-button.entry.js +0 -73
  237. package/dist/ezui/ez-calendar.entry.js +0 -219
  238. package/dist/ezui/ez-card-item.entry.js +0 -40
  239. package/dist/ezui/ez-check.entry.js +0 -72
  240. package/dist/ezui/ez-chip.entry.js +0 -97
  241. package/dist/ezui/ez-collapsible-box.entry.js +0 -57
  242. package/dist/ezui/ez-combo-box.entry.js +0 -439
  243. package/dist/ezui/ez-date-input.entry.js +0 -159
  244. package/dist/ezui/ez-date-time-input.entry.js +0 -214
  245. package/dist/ezui/ez-dialog.entry.js +0 -108
  246. package/dist/ezui/ez-filter-input.entry.js +0 -75
  247. package/dist/ezui/ez-form.entry.js +0 -1395
  248. package/dist/ezui/ez-grid-config.entry.js +0 -433
  249. package/dist/ezui/ez-grid.entry.js +0 -115422
  250. package/dist/ezui/ez-icon.entry.js +0 -37
  251. package/dist/ezui/ez-list.entry.js +0 -516
  252. package/dist/ezui/ez-loading-bar.entry.js +0 -24
  253. package/dist/ezui/ez-modal.entry.js +0 -67
  254. package/dist/ezui/ez-number-input.entry.js +0 -148
  255. package/dist/ezui/ez-popover.entry.js +0 -141
  256. package/dist/ezui/ez-popup.entry.js +0 -49
  257. package/dist/ezui/ez-radio-button.entry.js +0 -45
  258. package/dist/ezui/ez-scroller.entry.js +0 -101
  259. package/dist/ezui/ez-search.entry.js +0 -83
  260. package/dist/ezui/ez-select-box.entry.js +0 -18
  261. package/dist/ezui/ez-tabselector.entry.js +0 -195
  262. package/dist/ezui/ez-text-area.entry.js +0 -158
  263. package/dist/ezui/ez-text-input.entry.js +0 -235
  264. package/dist/ezui/ez-time-input.entry.js +0 -164
  265. package/dist/ezui/ez-toast.entry.js +0 -84
  266. package/dist/ezui/ez-upload.entry.js +0 -379
  267. package/dist/ezui/ez-view-stack.entry.js +0 -74
  268. package/dist/ezui/index-1e9d524f.js +0 -3031
  269. package/dist/ezui/index-b96183c8.js +0 -2295
  270. package/dist/ezui/index-f32470b5.js +0 -3
  271. package/dist/ezui/p-2f02347d.entry.js +0 -1
  272. package/dist/ezui/p-416bedbe.entry.js +0 -1
  273. package/dist/ezui/p-544f0c63.entry.js +0 -1
  274. package/dist/ezui/p-62110996.entry.js +0 -1
  275. package/dist/ezui/p-719e9ef9.entry.js +0 -1
  276. package/dist/ezui/p-787fbdfe.js +0 -1
  277. package/dist/ezui/p-9d5be6a7.entry.js +0 -1
  278. package/dist/ezui/p-a27dafa4.entry.js +0 -1
  279. package/dist/ezui/p-aba3fa6c.entry.js +0 -1
  280. package/dist/ezui/p-adbe4188.js +0 -1
  281. package/dist/ezui/p-af43be42.entry.js +0 -1
  282. package/dist/ezui/p-b7467ad6.entry.js +0 -1
  283. package/dist/ezui/p-c019e137.entry.js +0 -1
  284. package/dist/ezui/p-c9d2060e.entry.js +0 -1
  285. package/dist/ezui/p-cccd8cde.entry.js +0 -1
  286. package/dist/ezui/p-d0671e14.entry.js +0 -1
  287. package/dist/ezui/p-e0f06d73.entry.js +0 -1
  288. package/dist/ezui/p-e59adce6.entry.js +0 -1
  289. package/dist/ezui/p-ed835b36.entry.js +0 -1
  290. package/dist/ezui/shadow-css-8c625855.js +0 -388
@@ -2,10 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-d9c5cb88.js');
6
- const index$1 = require('./index-2ec1da82.js');
7
- const ApplicationUtils = require('./ApplicationUtils-475b50d9.js');
8
- require('./DialogType-a1e288e6.js');
5
+ const index = require('./index-8646c40d.js');
6
+ const core = require('@sankhyalabs/core');
7
+ const CheckMode = require('./CheckMode-ecb90b87.js');
8
+ const ApplicationUtils = require('./ApplicationUtils-edc62c5c.js');
9
+ require('./DialogType-aa435c52.js');
9
10
 
10
11
  const buildTextArea = ({ name, label, readOnly }) => {
11
12
  return (index.h("div", { class: "ez-col ez-col--sd-12 ez-padding-horizontal--small", key: name },
@@ -25,7 +26,7 @@ const buildCheckBox = (fieldConfig) => {
25
26
  };
26
27
  function buildField$1(fieldName, fieldLabel, readOnly, switchMode = false) {
27
28
  return (index.h("div", { class: "ez-col ez-col--sd-12 ez-col--tb-3 ez-align--middle ez-padding-horizontal--small ez-padding-bottom--large" },
28
- index.h("ez-check", { enabled: !readOnly, label: fieldLabel, mode: switchMode ? "switch" : "regular", "data-field-name": fieldName, key: fieldName })));
29
+ index.h("ez-check", { enabled: !readOnly, label: fieldLabel, mode: switchMode ? CheckMode.CheckMode.SWITCH : CheckMode.CheckMode.REGULAR, "data-field-name": fieldName, key: fieldName })));
29
30
  }
30
31
 
31
32
  const buildComboBox = ({ name, label, readOnly, required }, properties) => {
@@ -56,13 +57,13 @@ const buildDate = ({ name, label, readOnly }) => {
56
57
  return (index.h("div", { class: "ez-col ez-col--sd-12 ez-col--tb-3 ez-padding-horizontal--small" },
57
58
  index.h("ez-date-input", { enabled: !readOnly, label: label, "data-field-name": name, key: name })));
58
59
  };
59
- const buildTime = ({ name, label }) => {
60
+ const buildTime = ({ name, label, readOnly }) => {
60
61
  return (index.h("div", { class: "ez-col ez-col--sd-12 ez-col--tb-3 ez-padding-horizontal--small" },
61
- index.h("ez-time-input", { label: label, "data-field-name": name, key: name })));
62
+ index.h("ez-time-input", { enabled: !readOnly, label: label, "data-field-name": name, key: name })));
62
63
  };
63
- const buildTimeDate = ({ name, label }) => {
64
+ const buildTimeDate = ({ name, label, readOnly }) => {
64
65
  return (index.h("div", { class: "ez-col ez-col--sd-12 ez-col--tb-3 ez-padding-horizontal--small" },
65
- index.h("ez-date-time-input", { label: label, "data-field-name": name, key: name })));
66
+ index.h("ez-date-time-input", { enabled: !readOnly, label: label, "data-field-name": name, key: name })));
66
67
  };
67
68
 
68
69
  const buildDecimal = ({ name, label, readOnly }, properties) => {
@@ -79,17 +80,17 @@ function buildNumeric(fieldName, fieldLabel, readOnly, precision, prettyPrecisio
79
80
  }
80
81
 
81
82
  const uiBuilders = new Map();
82
- uiBuilders.set(index$1.UserInterface.LONGTEXT, buildTextArea);
83
- uiBuilders.set(index$1.UserInterface.CHECKBOX, buildCheckBox);
84
- uiBuilders.set(index$1.UserInterface.SWITCH, buildSwitch);
85
- uiBuilders.set(index$1.UserInterface.OPTIONSELECTOR, buildComboBox);
86
- uiBuilders.set(index$1.UserInterface.SEARCH, buildSearch);
87
- uiBuilders.set(index$1.UserInterface.FILE, buildFile);
88
- uiBuilders.set(index$1.UserInterface.DATE, buildDate);
89
- uiBuilders.set(index$1.UserInterface.TIME, buildTime);
90
- uiBuilders.set(index$1.UserInterface.DATETIME, buildTimeDate);
91
- uiBuilders.set(index$1.UserInterface.DECIMALNUMBER, buildDecimal);
92
- uiBuilders.set(index$1.UserInterface.INTEGERNUMBER, buildInteger);
83
+ uiBuilders.set(core.UserInterface.LONGTEXT, buildTextArea);
84
+ uiBuilders.set(core.UserInterface.CHECKBOX, buildCheckBox);
85
+ uiBuilders.set(core.UserInterface.SWITCH, buildSwitch);
86
+ uiBuilders.set(core.UserInterface.OPTIONSELECTOR, buildComboBox);
87
+ uiBuilders.set(core.UserInterface.SEARCH, buildSearch);
88
+ uiBuilders.set(core.UserInterface.FILE, buildFile);
89
+ uiBuilders.set(core.UserInterface.DATE, buildDate);
90
+ uiBuilders.set(core.UserInterface.TIME, buildTime);
91
+ uiBuilders.set(core.UserInterface.DATETIME, buildTimeDate);
92
+ uiBuilders.set(core.UserInterface.DECIMALNUMBER, buildDecimal);
93
+ uiBuilders.set(core.UserInterface.INTEGERNUMBER, buildInteger);
93
94
  const buildField = (field) => {
94
95
  const descriptor = field.descriptor;
95
96
  const config = Object.assign({}, field.config);
@@ -102,17 +103,17 @@ const buildField = (field) => {
102
103
  if (!config.name) {
103
104
  config.name = descriptor.name;
104
105
  }
105
- if (config.required === undefined) {
106
+ if (config.required == undefined || descriptor.required === true) {
106
107
  config.required = descriptor.required;
107
108
  }
108
- if (config.readOnly === undefined) {
109
+ if (config.readOnly == undefined || descriptor.readOnly === true) {
109
110
  config.readOnly = descriptor.readOnly;
110
111
  }
111
112
  props = descriptor.properties;
112
113
  builder = uiBuilders.get(descriptor.userInterface);
113
114
  }
114
115
  if (config.required) {
115
- config.label = `* ${config.label} (obrigatório)`;
116
+ config.label = `${config.label} (obrigatório) *`;
116
117
  }
117
118
  if (!builder) {
118
119
  builder = buildTextInput;
@@ -196,35 +197,45 @@ function getTabConfig(tab, sheets) {
196
197
  function sortTabs(a, b) {
197
198
  return a[0].label == '__main' ? -1 : (a[0].order || 10000) - (b[0].order || 10000);
198
199
  }
199
- const buildFromConfig = (fields, dataUnit) => {
200
+ const buildFromConfig = (config, dataUnit) => {
201
+ var _a, _b;
200
202
  const sheets = new Map();
203
+ const hiddenTabs = new Map();
201
204
  const requiredFields = [];
202
205
  const cleanOnCopyFields = [];
203
206
  const defaultValues = {};
204
- fields.forEach(config => {
207
+ (_a = config === null || config === void 0 ? void 0 : config.tabs) === null || _a === void 0 ? void 0 : _a.forEach((tab) => {
208
+ if (!hiddenTabs.has(tab.label) && tab.visible === false) {
209
+ hiddenTabs.set(tab.label, tab);
210
+ }
211
+ });
212
+ (_b = config === null || config === void 0 ? void 0 : config.fields) === null || _b === void 0 ? void 0 : _b.forEach((field) => {
205
213
  var _a, _b, _c;
206
- if (config.visible !== false) {
207
- const tabConfig = getTabConfig(config.tab || "__main", sheets);
208
- const descriptor = dataUnit.getField(config.name);
214
+ if (field.visible !== false) {
215
+ const tabConfig = getTabConfig(field.tab || "__main", sheets);
216
+ if (hiddenTabs.has(tabConfig.label)) {
217
+ return;
218
+ }
219
+ const descriptor = dataUnit.getField(field.name);
209
220
  if (descriptor && tabConfig.visible) {
210
221
  if (!sheets.has(tabConfig)) {
211
222
  sheets.set(tabConfig, new Map());
212
223
  }
213
224
  const tabItens = sheets.get(tabConfig);
214
- const isRequired = config.required === undefined ? descriptor.required : config.required;
225
+ const isRequired = field.required == undefined ? descriptor.required : field.required;
215
226
  if (isRequired) {
216
- requiredFields.push(config.name);
227
+ requiredFields.push(field.name);
217
228
  }
218
- const clearOnCopy = config.cleanOnCopy === undefined ? (((_a = descriptor.properties) === null || _a === void 0 ? void 0 : _a.cleanOnCopy) || ((_b = descriptor.properties) === null || _b === void 0 ? void 0 : _b.autoNum)) : config.cleanOnCopy;
219
- if (clearOnCopy) {
220
- cleanOnCopyFields.push(config.name);
229
+ const cleanOnCopy = field.cleanOnCopy == undefined ? (_a = descriptor.properties) === null || _a === void 0 ? void 0 : _a.cleanOnCopy : field.cleanOnCopy;
230
+ if (cleanOnCopy || ((_b = descriptor.properties) === null || _b === void 0 ? void 0 : _b.autoNum)) {
231
+ cleanOnCopyFields.push(field.name);
221
232
  }
222
- const defaultValue = config.defaultValue === undefined ? (_c = descriptor.properties) === null || _c === void 0 ? void 0 : _c.defaultValue : config.defaultValue;
233
+ const defaultValue = field.defaultValue == undefined ? (_c = descriptor.properties) === null || _c === void 0 ? void 0 : _c.defaultValue : field.defaultValue;
223
234
  if (defaultValue) {
224
- defaultValues[config.name] = config.defaultValue;
235
+ defaultValues[field.name] = field.defaultValue;
225
236
  }
226
- const fieldMD = { config, descriptor };
227
- const group = config.group;
237
+ const fieldMD = { config: field, descriptor };
238
+ const group = field.group;
228
239
  if (group) {
229
240
  const key = `group::${group}`;
230
241
  if (!tabItens.has(key)) {
@@ -235,7 +246,7 @@ const buildFromConfig = (fields, dataUnit) => {
235
246
  }
236
247
  }
237
248
  else {
238
- tabItens.set(config.name, fieldMD);
249
+ tabItens.set(field.name, fieldMD);
239
250
  }
240
251
  }
241
252
  }
@@ -256,59 +267,6 @@ const buildFromConfig = (fields, dataUnit) => {
256
267
  return metadata;
257
268
  };
258
269
 
259
- function _defineProperty(obj, key, value) {
260
- if (key in obj) {
261
- Object.defineProperty(obj, key, {
262
- value: value,
263
- enumerable: true,
264
- configurable: true,
265
- writable: true
266
- });
267
- } else {
268
- obj[key] = value;
269
- }
270
-
271
- return obj;
272
- }
273
-
274
- function ownKeys(object, enumerableOnly) {
275
- var keys = Object.keys(object);
276
-
277
- if (Object.getOwnPropertySymbols) {
278
- var symbols = Object.getOwnPropertySymbols(object);
279
-
280
- if (enumerableOnly) {
281
- symbols = symbols.filter(function (sym) {
282
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
283
- });
284
- }
285
-
286
- keys.push.apply(keys, symbols);
287
- }
288
-
289
- return keys;
290
- }
291
-
292
- function _objectSpread2(target) {
293
- for (var i = 1; i < arguments.length; i++) {
294
- var source = arguments[i] != null ? arguments[i] : {};
295
-
296
- if (i % 2) {
297
- ownKeys(Object(source), true).forEach(function (key) {
298
- _defineProperty(target, key, source[key]);
299
- });
300
- } else if (Object.getOwnPropertyDescriptors) {
301
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
302
- } else {
303
- ownKeys(Object(source)).forEach(function (key) {
304
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
305
- });
306
- }
307
- }
308
-
309
- return target;
310
- }
311
-
312
270
  /**
313
271
  * Adapted from React: https://github.com/facebook/react/blob/master/packages/shared/formatProdErrorMessage.js
314
272
  *
@@ -358,65 +316,6 @@ function isPlainObject(obj) {
358
316
  return Object.getPrototypeOf(obj) === proto;
359
317
  }
360
318
 
361
- // Inlined / shortened version of `kindOf` from https://github.com/jonschlinkert/kind-of
362
- function miniKindOf(val) {
363
- if (val === void 0) return 'undefined';
364
- if (val === null) return 'null';
365
- var type = typeof val;
366
-
367
- switch (type) {
368
- case 'boolean':
369
- case 'string':
370
- case 'number':
371
- case 'symbol':
372
- case 'function':
373
- {
374
- return type;
375
- }
376
- }
377
-
378
- if (Array.isArray(val)) return 'array';
379
- if (isDate(val)) return 'date';
380
- if (isError(val)) return 'error';
381
- var constructorName = ctorName(val);
382
-
383
- switch (constructorName) {
384
- case 'Symbol':
385
- case 'Promise':
386
- case 'WeakMap':
387
- case 'WeakSet':
388
- case 'Map':
389
- case 'Set':
390
- return constructorName;
391
- } // other
392
-
393
-
394
- return type.slice(8, -1).toLowerCase().replace(/\s/g, '');
395
- }
396
-
397
- function ctorName(val) {
398
- return typeof val.constructor === 'function' ? val.constructor.name : null;
399
- }
400
-
401
- function isError(val) {
402
- return val instanceof Error || typeof val.message === 'string' && val.constructor && typeof val.constructor.stackTraceLimit === 'number';
403
- }
404
-
405
- function isDate(val) {
406
- if (val instanceof Date) return true;
407
- return typeof val.toDateString === 'function' && typeof val.getDate === 'function' && typeof val.setDate === 'function';
408
- }
409
-
410
- function kindOf(val) {
411
- var typeOfVal = typeof val;
412
-
413
- if ("development" !== 'production') {
414
- typeOfVal = miniKindOf(val);
415
- }
416
-
417
- return typeOfVal;
418
- }
419
-
420
319
  /**
421
320
  * Creates a Redux store that holds the state tree.
422
321
  * The only way to change the data in the store is to call `dispatch()` on it.
@@ -447,7 +346,7 @@ function createStore(reducer, preloadedState, enhancer) {
447
346
  var _ref2;
448
347
 
449
348
  if (typeof preloadedState === 'function' && typeof enhancer === 'function' || typeof enhancer === 'function' && typeof arguments[3] === 'function') {
450
- throw new Error("development" === "production" ? formatProdErrorMessage(0) : 'It looks like you are passing several store enhancers to ' + 'createStore(). This is not supported. Instead, compose them ' + 'together to a single function. See https://redux.js.org/tutorials/fundamentals/part-4-store#creating-a-store-with-enhancers for an example.');
349
+ throw new Error(formatProdErrorMessage(0) );
451
350
  }
452
351
 
453
352
  if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') {
@@ -457,14 +356,14 @@ function createStore(reducer, preloadedState, enhancer) {
457
356
 
458
357
  if (typeof enhancer !== 'undefined') {
459
358
  if (typeof enhancer !== 'function') {
460
- throw new Error("development" === "production" ? formatProdErrorMessage(1) : "Expected the enhancer to be a function. Instead, received: '" + kindOf(enhancer) + "'");
359
+ throw new Error(formatProdErrorMessage(1) );
461
360
  }
462
361
 
463
362
  return enhancer(createStore)(reducer, preloadedState);
464
363
  }
465
364
 
466
365
  if (typeof reducer !== 'function') {
467
- throw new Error("development" === "production" ? formatProdErrorMessage(2) : "Expected the root reducer to be a function. Instead, received: '" + kindOf(reducer) + "'");
366
+ throw new Error(formatProdErrorMessage(2) );
468
367
  }
469
368
 
470
369
  var currentReducer = reducer;
@@ -494,7 +393,7 @@ function createStore(reducer, preloadedState, enhancer) {
494
393
 
495
394
  function getState() {
496
395
  if (isDispatching) {
497
- throw new Error("development" === "production" ? formatProdErrorMessage(3) : 'You may not call store.getState() while the reducer is executing. ' + 'The reducer has already received the state as an argument. ' + 'Pass it down from the top reducer instead of reading it from the store.');
396
+ throw new Error(formatProdErrorMessage(3) );
498
397
  }
499
398
 
500
399
  return currentState;
@@ -526,11 +425,11 @@ function createStore(reducer, preloadedState, enhancer) {
526
425
 
527
426
  function subscribe(listener) {
528
427
  if (typeof listener !== 'function') {
529
- throw new Error("development" === "production" ? formatProdErrorMessage(4) : "Expected the listener to be a function. Instead, received: '" + kindOf(listener) + "'");
428
+ throw new Error(formatProdErrorMessage(4) );
530
429
  }
531
430
 
532
431
  if (isDispatching) {
533
- throw new Error("development" === "production" ? formatProdErrorMessage(5) : 'You may not call store.subscribe() while the reducer is executing. ' + 'If you would like to be notified after the store has been updated, subscribe from a ' + 'component and invoke store.getState() in the callback to access the latest state. ' + 'See https://redux.js.org/api/store#subscribelistener for more details.');
432
+ throw new Error(formatProdErrorMessage(5) );
534
433
  }
535
434
 
536
435
  var isSubscribed = true;
@@ -542,7 +441,7 @@ function createStore(reducer, preloadedState, enhancer) {
542
441
  }
543
442
 
544
443
  if (isDispatching) {
545
- throw new Error("development" === "production" ? formatProdErrorMessage(6) : 'You may not unsubscribe from a store listener while the reducer is executing. ' + 'See https://redux.js.org/api/store#subscribelistener for more details.');
444
+ throw new Error(formatProdErrorMessage(6) );
546
445
  }
547
446
 
548
447
  isSubscribed = false;
@@ -581,15 +480,15 @@ function createStore(reducer, preloadedState, enhancer) {
581
480
 
582
481
  function dispatch(action) {
583
482
  if (!isPlainObject(action)) {
584
- throw new Error("development" === "production" ? formatProdErrorMessage(7) : "Actions must be plain objects. Instead, the actual type was: '" + kindOf(action) + "'. You may need to add middleware to your store setup to handle dispatching other values, such as 'redux-thunk' to handle dispatching functions. See https://redux.js.org/tutorials/fundamentals/part-4-store#middleware and https://redux.js.org/tutorials/fundamentals/part-6-async-logic#using-the-redux-thunk-middleware for examples.");
483
+ throw new Error(formatProdErrorMessage(7) );
585
484
  }
586
485
 
587
486
  if (typeof action.type === 'undefined') {
588
- throw new Error("development" === "production" ? formatProdErrorMessage(8) : 'Actions may not have an undefined "type" property. You may have misspelled an action type string constant.');
487
+ throw new Error(formatProdErrorMessage(8) );
589
488
  }
590
489
 
591
490
  if (isDispatching) {
592
- throw new Error("development" === "production" ? formatProdErrorMessage(9) : 'Reducers may not dispatch actions.');
491
+ throw new Error(formatProdErrorMessage(9) );
593
492
  }
594
493
 
595
494
  try {
@@ -622,7 +521,7 @@ function createStore(reducer, preloadedState, enhancer) {
622
521
 
623
522
  function replaceReducer(nextReducer) {
624
523
  if (typeof nextReducer !== 'function') {
625
- throw new Error("development" === "production" ? formatProdErrorMessage(10) : "Expected the nextReducer to be a function. Instead, received: '" + kindOf(nextReducer));
524
+ throw new Error(formatProdErrorMessage(10) );
626
525
  }
627
526
 
628
527
  currentReducer = nextReducer; // This action has a similiar effect to ActionTypes.INIT.
@@ -657,7 +556,7 @@ function createStore(reducer, preloadedState, enhancer) {
657
556
  */
658
557
  subscribe: function subscribe(observer) {
659
558
  if (typeof observer !== 'object' || observer === null) {
660
- throw new Error("development" === "production" ? formatProdErrorMessage(11) : "Expected the observer to be an object. Instead, received: '" + kindOf(observer) + "'");
559
+ throw new Error(formatProdErrorMessage(11) );
661
560
  }
662
561
 
663
562
  function observeState() {
@@ -691,305 +590,6 @@ function createStore(reducer, preloadedState, enhancer) {
691
590
  }, _ref2[$$observable] = observable, _ref2;
692
591
  }
693
592
 
694
- /**
695
- * Prints a warning in the console if it exists.
696
- *
697
- * @param {String} message The warning message.
698
- * @returns {void}
699
- */
700
- function warning(message) {
701
- /* eslint-disable no-console */
702
- if (typeof console !== 'undefined' && typeof console.error === 'function') {
703
- console.error(message);
704
- }
705
- /* eslint-enable no-console */
706
-
707
-
708
- try {
709
- // This error was thrown as a convenience so that if you enable
710
- // "break on all exceptions" in your console,
711
- // it would pause the execution at this line.
712
- throw new Error(message);
713
- } catch (e) {} // eslint-disable-line no-empty
714
-
715
- }
716
-
717
- function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, unexpectedKeyCache) {
718
- var reducerKeys = Object.keys(reducers);
719
- var argumentName = action && action.type === ActionTypes.INIT ? 'preloadedState argument passed to createStore' : 'previous state received by the reducer';
720
-
721
- if (reducerKeys.length === 0) {
722
- return 'Store does not have a valid reducer. Make sure the argument passed ' + 'to combineReducers is an object whose values are reducers.';
723
- }
724
-
725
- if (!isPlainObject(inputState)) {
726
- return "The " + argumentName + " has unexpected type of \"" + kindOf(inputState) + "\". Expected argument to be an object with the following " + ("keys: \"" + reducerKeys.join('", "') + "\"");
727
- }
728
-
729
- var unexpectedKeys = Object.keys(inputState).filter(function (key) {
730
- return !reducers.hasOwnProperty(key) && !unexpectedKeyCache[key];
731
- });
732
- unexpectedKeys.forEach(function (key) {
733
- unexpectedKeyCache[key] = true;
734
- });
735
- if (action && action.type === ActionTypes.REPLACE) return;
736
-
737
- if (unexpectedKeys.length > 0) {
738
- return "Unexpected " + (unexpectedKeys.length > 1 ? 'keys' : 'key') + " " + ("\"" + unexpectedKeys.join('", "') + "\" found in " + argumentName + ". ") + "Expected to find one of the known reducer keys instead: " + ("\"" + reducerKeys.join('", "') + "\". Unexpected keys will be ignored.");
739
- }
740
- }
741
-
742
- function assertReducerShape(reducers) {
743
- Object.keys(reducers).forEach(function (key) {
744
- var reducer = reducers[key];
745
- var initialState = reducer(undefined, {
746
- type: ActionTypes.INIT
747
- });
748
-
749
- if (typeof initialState === 'undefined') {
750
- throw new Error("development" === "production" ? formatProdErrorMessage(12) : "The slice reducer for key \"" + key + "\" returned undefined during initialization. " + "If the state passed to the reducer is undefined, you must " + "explicitly return the initial state. The initial state may " + "not be undefined. If you don't want to set a value for this reducer, " + "you can use null instead of undefined.");
751
- }
752
-
753
- if (typeof reducer(undefined, {
754
- type: ActionTypes.PROBE_UNKNOWN_ACTION()
755
- }) === 'undefined') {
756
- throw new Error("development" === "production" ? formatProdErrorMessage(13) : "The slice reducer for key \"" + key + "\" returned undefined when probed with a random type. " + ("Don't try to handle '" + ActionTypes.INIT + "' or other actions in \"redux/*\" ") + "namespace. They are considered private. Instead, you must return the " + "current state for any unknown actions, unless it is undefined, " + "in which case you must return the initial state, regardless of the " + "action type. The initial state may not be undefined, but can be null.");
757
- }
758
- });
759
- }
760
- /**
761
- * Turns an object whose values are different reducer functions, into a single
762
- * reducer function. It will call every child reducer, and gather their results
763
- * into a single state object, whose keys correspond to the keys of the passed
764
- * reducer functions.
765
- *
766
- * @param {Object} reducers An object whose values correspond to different
767
- * reducer functions that need to be combined into one. One handy way to obtain
768
- * it is to use ES6 `import * as reducers` syntax. The reducers may never return
769
- * undefined for any action. Instead, they should return their initial state
770
- * if the state passed to them was undefined, and the current state for any
771
- * unrecognized action.
772
- *
773
- * @returns {Function} A reducer function that invokes every reducer inside the
774
- * passed object, and builds a state object with the same shape.
775
- */
776
-
777
-
778
- function combineReducers(reducers) {
779
- var reducerKeys = Object.keys(reducers);
780
- var finalReducers = {};
781
-
782
- for (var i = 0; i < reducerKeys.length; i++) {
783
- var key = reducerKeys[i];
784
-
785
- if ("development" !== 'production') {
786
- if (typeof reducers[key] === 'undefined') {
787
- warning("No reducer provided for key \"" + key + "\"");
788
- }
789
- }
790
-
791
- if (typeof reducers[key] === 'function') {
792
- finalReducers[key] = reducers[key];
793
- }
794
- }
795
-
796
- var finalReducerKeys = Object.keys(finalReducers); // This is used to make sure we don't warn about the same
797
- // keys multiple times.
798
-
799
- var unexpectedKeyCache;
800
-
801
- if ("development" !== 'production') {
802
- unexpectedKeyCache = {};
803
- }
804
-
805
- var shapeAssertionError;
806
-
807
- try {
808
- assertReducerShape(finalReducers);
809
- } catch (e) {
810
- shapeAssertionError = e;
811
- }
812
-
813
- return function combination(state, action) {
814
- if (state === void 0) {
815
- state = {};
816
- }
817
-
818
- if (shapeAssertionError) {
819
- throw shapeAssertionError;
820
- }
821
-
822
- if ("development" !== 'production') {
823
- var warningMessage = getUnexpectedStateShapeWarningMessage(state, finalReducers, action, unexpectedKeyCache);
824
-
825
- if (warningMessage) {
826
- warning(warningMessage);
827
- }
828
- }
829
-
830
- var hasChanged = false;
831
- var nextState = {};
832
-
833
- for (var _i = 0; _i < finalReducerKeys.length; _i++) {
834
- var _key = finalReducerKeys[_i];
835
- var reducer = finalReducers[_key];
836
- var previousStateForKey = state[_key];
837
- var nextStateForKey = reducer(previousStateForKey, action);
838
-
839
- if (typeof nextStateForKey === 'undefined') {
840
- var actionType = action && action.type;
841
- throw new Error("development" === "production" ? formatProdErrorMessage(14) : "When called with an action of type " + (actionType ? "\"" + String(actionType) + "\"" : '(unknown type)') + ", the slice reducer for key \"" + _key + "\" returned undefined. " + "To ignore an action, you must explicitly return the previous state. " + "If you want this reducer to hold no value, you can return null instead of undefined.");
842
- }
843
-
844
- nextState[_key] = nextStateForKey;
845
- hasChanged = hasChanged || nextStateForKey !== previousStateForKey;
846
- }
847
-
848
- hasChanged = hasChanged || finalReducerKeys.length !== Object.keys(state).length;
849
- return hasChanged ? nextState : state;
850
- };
851
- }
852
-
853
- function bindActionCreator(actionCreator, dispatch) {
854
- return function () {
855
- return dispatch(actionCreator.apply(this, arguments));
856
- };
857
- }
858
- /**
859
- * Turns an object whose values are action creators, into an object with the
860
- * same keys, but with every function wrapped into a `dispatch` call so they
861
- * may be invoked directly. This is just a convenience method, as you can call
862
- * `store.dispatch(MyActionCreators.doSomething())` yourself just fine.
863
- *
864
- * For convenience, you can also pass an action creator as the first argument,
865
- * and get a dispatch wrapped function in return.
866
- *
867
- * @param {Function|Object} actionCreators An object whose values are action
868
- * creator functions. One handy way to obtain it is to use ES6 `import * as`
869
- * syntax. You may also pass a single function.
870
- *
871
- * @param {Function} dispatch The `dispatch` function available on your Redux
872
- * store.
873
- *
874
- * @returns {Function|Object} The object mimicking the original object, but with
875
- * every action creator wrapped into the `dispatch` call. If you passed a
876
- * function as `actionCreators`, the return value will also be a single
877
- * function.
878
- */
879
-
880
-
881
- function bindActionCreators(actionCreators, dispatch) {
882
- if (typeof actionCreators === 'function') {
883
- return bindActionCreator(actionCreators, dispatch);
884
- }
885
-
886
- if (typeof actionCreators !== 'object' || actionCreators === null) {
887
- throw new Error("development" === "production" ? formatProdErrorMessage(16) : "bindActionCreators expected an object or a function, but instead received: '" + kindOf(actionCreators) + "'. " + "Did you write \"import ActionCreators from\" instead of \"import * as ActionCreators from\"?");
888
- }
889
-
890
- var boundActionCreators = {};
891
-
892
- for (var key in actionCreators) {
893
- var actionCreator = actionCreators[key];
894
-
895
- if (typeof actionCreator === 'function') {
896
- boundActionCreators[key] = bindActionCreator(actionCreator, dispatch);
897
- }
898
- }
899
-
900
- return boundActionCreators;
901
- }
902
-
903
- /**
904
- * Composes single-argument functions from right to left. The rightmost
905
- * function can take multiple arguments as it provides the signature for
906
- * the resulting composite function.
907
- *
908
- * @param {...Function} funcs The functions to compose.
909
- * @returns {Function} A function obtained by composing the argument functions
910
- * from right to left. For example, compose(f, g, h) is identical to doing
911
- * (...args) => f(g(h(...args))).
912
- */
913
- function compose() {
914
- for (var _len = arguments.length, funcs = new Array(_len), _key = 0; _key < _len; _key++) {
915
- funcs[_key] = arguments[_key];
916
- }
917
-
918
- if (funcs.length === 0) {
919
- return function (arg) {
920
- return arg;
921
- };
922
- }
923
-
924
- if (funcs.length === 1) {
925
- return funcs[0];
926
- }
927
-
928
- return funcs.reduce(function (a, b) {
929
- return function () {
930
- return a(b.apply(void 0, arguments));
931
- };
932
- });
933
- }
934
-
935
- /**
936
- * Creates a store enhancer that applies middleware to the dispatch method
937
- * of the Redux store. This is handy for a variety of tasks, such as expressing
938
- * asynchronous actions in a concise manner, or logging every action payload.
939
- *
940
- * See `redux-thunk` package as an example of the Redux middleware.
941
- *
942
- * Because middleware is potentially asynchronous, this should be the first
943
- * store enhancer in the composition chain.
944
- *
945
- * Note that each middleware will be given the `dispatch` and `getState` functions
946
- * as named arguments.
947
- *
948
- * @param {...Function} middlewares The middleware chain to be applied.
949
- * @returns {Function} A store enhancer applying the middleware.
950
- */
951
-
952
- function applyMiddleware() {
953
- for (var _len = arguments.length, middlewares = new Array(_len), _key = 0; _key < _len; _key++) {
954
- middlewares[_key] = arguments[_key];
955
- }
956
-
957
- return function (createStore) {
958
- return function () {
959
- var store = createStore.apply(void 0, arguments);
960
-
961
- var _dispatch = function dispatch() {
962
- throw new Error("development" === "production" ? formatProdErrorMessage(15) : 'Dispatching while constructing your middleware is not allowed. ' + 'Other middleware would not be applied to this dispatch.');
963
- };
964
-
965
- var middlewareAPI = {
966
- getState: store.getState,
967
- dispatch: function dispatch() {
968
- return _dispatch.apply(void 0, arguments);
969
- }
970
- };
971
- var chain = middlewares.map(function (middleware) {
972
- return middleware(middlewareAPI);
973
- });
974
- _dispatch = compose.apply(void 0, chain)(store.dispatch);
975
- return _objectSpread2(_objectSpread2({}, store), {}, {
976
- dispatch: _dispatch
977
- });
978
- };
979
- };
980
- }
981
-
982
- /*
983
- * This is a dummy function to check if the function name has been altered by minification.
984
- * If the function has been minified and NODE_ENV !== 'production', warn the user.
985
- */
986
-
987
- function isCrushed() {}
988
-
989
- if ("development" !== 'production' && typeof isCrushed.name === 'string' && isCrushed.name !== 'isCrushed') {
990
- warning('You are currently using minified code outside of NODE_ENV === "production". ' + 'This means that you are running a slower development build of Redux. ' + 'You can use loose-envify (https://github.com/zertosh/loose-envify) for browserify ' + 'or setting mode to production in webpack (https://webpack.js.org/concepts/mode/) ' + 'to ensure you have the correct code for your production build.');
991
- }
992
-
993
593
  const inicialState = {};
994
594
  /////////////////////////////// REDUCERS ///////////////////////////////
995
595
  function formReducer(state = inicialState, action) {
@@ -1035,19 +635,20 @@ class DataBinder {
1035
635
  this.onDataUnitEvent = (action) => {
1036
636
  var _a;
1037
637
  switch (action.type) {
1038
- case index$1.Action.DATA_LOADED:
1039
- case index$1.Action.DATA_SAVED:
1040
- case index$1.Action.RECORDS_REMOVED:
1041
- case index$1.Action.RECORDS_ADDED:
1042
- case index$1.Action.RECORDS_COPIED:
1043
- case index$1.Action.EDITION_CANCELED:
1044
- case index$1.Action.SELECTION_CHANGED:
1045
- case index$1.Action.NEXT_SELECTED:
1046
- case index$1.Action.PREVIOUS_SELECTED:
638
+ case core.Action.DATA_LOADED:
639
+ case core.Action.DATA_SAVED:
640
+ case core.Action.RECORDS_REMOVED:
641
+ case core.Action.RECORDS_ADDED:
642
+ case core.Action.RECORDS_COPIED:
643
+ case core.Action.EDITION_CANCELED:
644
+ case core.Action.SELECTION_CHANGED:
645
+ case core.Action.NEXT_SELECTED:
646
+ case core.Action.PREVIOUS_SELECTED:
1047
647
  this.clearInvalid();
1048
- case index$1.Action.DATA_CHANGED:
1049
- case index$1.Action.CHANGE_UNDONE:
1050
- case index$1.Action.CHANGE_REDONE:
648
+ case core.Action.DATA_CHANGED:
649
+ case core.Action.CHANGE_UNDONE:
650
+ case core.Action.CHANGE_REDONE:
651
+ case core.Action.RECORD_LOADED:
1051
652
  (_a = this._fields) === null || _a === void 0 ? void 0 : _a.forEach(field => {
1052
653
  this.updateValue(field.fieldName, field.field);
1053
654
  });
@@ -1138,7 +739,7 @@ class DataBinder {
1138
739
  this._dataUnit.cancelWaitingChange(fieldName);
1139
740
  const bind = this._fields.get(fieldName);
1140
741
  if (bind) {
1141
- bind.rejectWaitingChange(new index$1.WaitingChangeException("Change canceled", fieldName));
742
+ bind.rejectWaitingChange(new core.WaitingChangeException("Change canceled", fieldName));
1142
743
  }
1143
744
  }
1144
745
  }
@@ -1157,7 +758,7 @@ class DataBinder {
1157
758
  }
1158
759
  bindSearchOptionsLoader(fieldName, field) {
1159
760
  if (field.nodeName === "EZ-SEARCH" && field["optionLoader"] == undefined) {
1160
- const loader = index$1.ApplicationContext.getContextValue("__EZUI__SEARCH__OPTION__LOADER__");
761
+ const loader = core.ApplicationContext.getContextValue("__EZUI__SEARCH__OPTION__LOADER__");
1161
762
  if (loader) {
1162
763
  field["optionLoader"] = (arg) => {
1163
764
  return loader(arg, fieldName, this._dataUnit);
@@ -1168,8 +769,8 @@ class DataBinder {
1168
769
  applyEzUploadContext(fieldName, field) {
1169
770
  var _a, _b;
1170
771
  if (field.nodeName === "EZ-UPLOAD") {
1171
- field["urlUpload"] = index$1.ApplicationContext.getContextValue("__EZUI__UPLOAD__ADD__URL__");
1172
- field["urlDelete"] = index$1.ApplicationContext.getContextValue("__EZUI__UPLOAD__DEL__URL__");
772
+ field["urlUpload"] = core.ApplicationContext.getContextValue("__EZUI__UPLOAD__ADD__URL__");
773
+ field["urlDelete"] = core.ApplicationContext.getContextValue("__EZUI__UPLOAD__DEL__URL__");
1173
774
  const descriptor = this._dataUnit.getField(fieldName);
1174
775
  const destination = (_a = descriptor.properties) === null || _a === void 0 ? void 0 : _a.DESTINATION;
1175
776
  if (destination) {
@@ -1229,7 +830,7 @@ let EzForm = class {
1229
830
  index.registerInstance(this, hostRef);
1230
831
  this.ezReady = index.createEvent(this, "ezReady", 7);
1231
832
  this.onDataUnitAction = (action) => {
1232
- if (action.type === index$1.Action.METADATA_LOADED) {
833
+ if (action.type === core.Action.METADATA_LOADED) {
1233
834
  this.processMetadata();
1234
835
  }
1235
836
  };
@@ -1321,7 +922,7 @@ let EzForm = class {
1321
922
  }
1322
923
  processMetadata() {
1323
924
  if (!this.isStatic() && this.dataUnit) {
1324
- const metadata = this.config && this.config.length > 0 ? buildFromConfig(this.config, this.dataUnit) : buildFromDataUnit(this.dataUnit);
925
+ const metadata = this.config != undefined ? buildFromConfig(this.config, this.dataUnit) : buildFromDataUnit(this.dataUnit);
1325
926
  this._store.dispatch(loadMetadata(metadata));
1326
927
  }
1327
928
  }
@@ -1329,35 +930,47 @@ let EzForm = class {
1329
930
  var _a;
1330
931
  return ((_a = this._staticFields) === null || _a === void 0 ? void 0 : _a.length) > 0;
1331
932
  }
933
+ getValidatedValue(value) {
934
+ switch (value) {
935
+ case "${data}":
936
+ return core.DateUtils.getToday();
937
+ case "${datahora}":
938
+ return core.DateUtils.getToday(true);
939
+ default:
940
+ return value;
941
+ }
942
+ }
1332
943
  interceptAction(action) {
1333
- if (action.type === index$1.Action.RECORDS_COPIED) {
944
+ if (action.type === core.Action.RECORDS_COPIED) {
1334
945
  const metadata = selectFormMetadata(this._store.getState());
1335
946
  const cleanFields = metadata.getCleanOnCopyFields();
1336
947
  if (cleanFields) {
1337
948
  const records = action.payload;
1338
- return new index$1.DataUnitAction(index$1.Action.RECORDS_COPIED, records.map(record => {
949
+ return new core.DataUnitAction(core.Action.RECORDS_COPIED, records.map(record => {
1339
950
  const newRecord = Object.assign({}, record);
1340
951
  cleanFields.forEach(fieldName => delete newRecord[fieldName]);
1341
952
  return newRecord;
1342
953
  }));
1343
954
  }
1344
955
  }
1345
- if (action.type === index$1.Action.SAVING_DATA) {
956
+ if (action.type === core.Action.SAVING_DATA) {
1346
957
  return new Promise((resolve) => {
1347
958
  this.validate()
1348
959
  .then(() => resolve(action))
1349
960
  .catch(() => { });
1350
961
  });
1351
962
  }
1352
- if (action.type === index$1.Action.RECORDS_ADDED) {
963
+ if (action.type === core.Action.RECORDS_ADDED) {
1353
964
  const metadata = selectFormMetadata(this._store.getState());
1354
965
  const defaultValues = metadata.getDefaultValues();
1355
966
  if (defaultValues) {
1356
967
  const records = action.payload;
1357
- return new index$1.DataUnitAction(index$1.Action.RECORDS_ADDED, records.map(record => {
968
+ return new core.DataUnitAction(core.Action.RECORDS_ADDED, records.map(record => {
1358
969
  const newRecord = Object.assign({}, record);
1359
970
  for (const field in defaultValues) {
1360
- newRecord[field] = this.dataUnit.valueFromString(field, defaultValues[field]);
971
+ const defaultValue = defaultValues[field].value;
972
+ const fieldValue = defaultValue != undefined ? defaultValue : defaultValues[field];
973
+ newRecord[field] = this.dataUnit.valueFromString(field, this.getValidatedValue(fieldValue));
1361
974
  }
1362
975
  return newRecord;
1363
976
  }));
@@ -1367,7 +980,7 @@ let EzForm = class {
1367
980
  }
1368
981
  componentWillLoad() {
1369
982
  if (this.dataUnit === undefined) {
1370
- this.dataUnit = new index$1.DataUnit("ez-form");
983
+ this.dataUnit = new core.DataUnit("ez-form");
1371
984
  }
1372
985
  this.dataUnit.addInterceptor(this);
1373
986
  this.dataUnit.subscribe(this.onDataUnitAction);