@sankhyalabs/sankhyablocks 10.1.0-dev.52 → 10.1.0-dev.53

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 (263) hide show
  1. package/dist/cjs/{ConfigStorage-a1fab5ca.js → ConfigStorage-4201dd3d.js} +2 -2
  2. package/dist/cjs/{DataFetcher-384d2ce8.js → DataFetcher-b3a8075d.js} +2830 -2
  3. package/dist/cjs/FormConfigHelper-c5f5473a.js +342 -0
  4. package/dist/cjs/{ISave-ecbe9336.js → ISave-4674c283.js} +1 -1
  5. package/dist/cjs/{PersonalizedFilterUtils-eccb267a.js → PersonalizedFilterUtils-263e4d24.js} +52 -5
  6. package/dist/cjs/{SnkFormConfigManager-44386305.js → SnkFormConfigManager-c3a49038.js} +2 -2
  7. package/dist/cjs/{SnkMultiSelectionListDataSource-d341dd02.js → SnkMultiSelectionListDataSource-0bc94d36.js} +4 -4
  8. package/dist/cjs/{auth-fetcher-6b134ec4.js → auth-fetcher-0ecc53ff.js} +1 -1
  9. package/dist/cjs/{dataunit-fetcher-b9822794.js → dataunit-fetcher-bcbc38c0.js} +2 -3
  10. package/dist/cjs/{filter-type.enum-2bb46d2a.js → filter-type.enum-b3b388af.js} +7 -0
  11. package/dist/cjs/{form-config-fetcher-45d1964c.js → form-config-fetcher-f80dbc3b.js} +23 -5
  12. package/dist/cjs/index-1894343a.js +24 -36
  13. package/dist/cjs/loader.cjs.js +1 -1
  14. package/dist/cjs/pesquisa-grid_2.cjs.entry.js +4 -5
  15. package/dist/cjs/sankhyablocks.cjs.js +1 -1
  16. package/dist/cjs/snk-actions-button_9.cjs.entry.js +5 -6
  17. package/dist/cjs/snk-application.cjs.entry.js +7 -8
  18. package/dist/cjs/snk-attach_11.cjs.entry.js +2950 -0
  19. package/dist/cjs/snk-crud.cjs.entry.js +31 -243
  20. package/dist/cjs/snk-data-exporter.cjs.entry.js +5 -6
  21. package/dist/cjs/{snk-data-unit-4b6dc396.js → snk-data-unit-3b94547d.js} +11 -11
  22. package/dist/cjs/snk-data-unit.cjs.entry.js +3 -4
  23. package/dist/cjs/snk-detail-view.cjs.entry.js +9 -10
  24. package/dist/cjs/snk-dynaform-config-header_5.cjs.entry.js +739 -0
  25. package/dist/cjs/snk-dynaform-detail-view_2.cjs.entry.js +938 -0
  26. package/dist/cjs/snk-dynaform-field-config_2.cjs.entry.js +327 -0
  27. package/dist/cjs/snk-dynaform-guides-view-e98f7f3a.js +747 -0
  28. package/dist/cjs/snk-dynaform-guides-view.cjs.entry.js +23 -0
  29. package/dist/cjs/snk-dynaform.cjs.entry.js +675 -0
  30. package/dist/cjs/{snk-expression-group_2.cjs.entry.js → snk-expression-group_4.cjs.entry.js} +421 -18
  31. package/dist/cjs/snk-filter-bar_4.cjs.entry.js +41 -44
  32. package/dist/cjs/snk-form_2.cjs.entry.js +4 -5
  33. package/dist/cjs/snk-grid.cjs.entry.js +7 -8
  34. package/dist/cjs/{snk-guides-viewer-8e7a503b.js → snk-guides-viewer-3054d541.js} +1 -1
  35. package/dist/cjs/snk-guides-viewer.cjs.entry.js +5 -6
  36. package/dist/cjs/snk-layout-form-config.cjs.entry.js +4 -5
  37. package/dist/cjs/snk-pesquisa.cjs.entry.js +4 -5
  38. package/dist/cjs/taskbarUtils-38748460.js +231 -0
  39. package/dist/collection/collection-manifest.json +17 -0
  40. package/dist/collection/components/snk-dynaform/interfaces/PropsCustomEditor.js +1 -0
  41. package/dist/collection/components/snk-dynaform/interfaces/PropsCustomRender.js +1 -0
  42. package/dist/collection/components/snk-dynaform/snk-dynaform.css +64 -0
  43. package/dist/collection/components/snk-dynaform/snk-dynaform.js +1657 -0
  44. package/dist/collection/components/snk-dynaform/subcomponents/CardFormResizeObserver.js +26 -0
  45. package/dist/collection/components/snk-dynaform/subcomponents/GuideBuilder.js +51 -0
  46. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-detail-view/snk-dynaform-detail-view.css +112 -0
  47. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-detail-view/snk-dynaform-detail-view.js +992 -0
  48. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-form-view/snk-dynaform-form-view.css +64 -0
  49. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-form-view/snk-dynaform-form-view.js +588 -0
  50. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-guides-view/snk-dynaform-guides-view.css +98 -0
  51. package/dist/collection/components/snk-dynaform/subcomponents/snk-dynaform-guides-view/snk-dynaform-guides-view.js +1167 -0
  52. package/dist/collection/components/snk-dynaform-form-config/FormConfigHelper.js +325 -0
  53. package/dist/collection/components/snk-dynaform-form-config/SnkFormConfigManager.js +212 -0
  54. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-config-header.css +17 -0
  55. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-config-header.js +236 -0
  56. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-configs-button/snk-dynaform-configs-button.css +41 -0
  57. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-configs-button/snk-dynaform-configs-button.js +170 -0
  58. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-config/snk-dynaform-field-config.css +22 -0
  59. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-config/snk-dynaform-field-config.js +408 -0
  60. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-item.css +88 -0
  61. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-item.js +209 -0
  62. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-fields-layout/snk-dynaform-fields-layout.css +167 -0
  63. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-fields-layout/snk-dynaform-fields-layout.js +655 -0
  64. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-fields-selector/snk-dynaform-fields-selector.css +42 -0
  65. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-fields-selector/snk-dynaform-fields-selector.js +171 -0
  66. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-form-config.css +66 -0
  67. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-form-config.js +557 -0
  68. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-guides-configurator/snk-dynaform-guides-configurator.css +80 -0
  69. package/dist/collection/components/snk-dynaform-form-config/snk-dynaform-guides-configurator/snk-dynaform-guides-configurator.js +326 -0
  70. package/dist/collection/components/snk-grid/snk-grid.css +4 -2
  71. package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +22 -4
  72. package/dist/components/form-config-fetcher.js +22 -4
  73. package/dist/components/index.d.ts +12 -0
  74. package/dist/components/index.js +12 -0
  75. package/dist/components/snk-crud.js +1 -212
  76. package/dist/components/snk-dynaform-config-header.d.ts +11 -0
  77. package/dist/components/snk-dynaform-config-header.js +6 -0
  78. package/dist/components/snk-dynaform-config-header2.js +103 -0
  79. package/dist/components/snk-dynaform-configs-button.d.ts +11 -0
  80. package/dist/components/snk-dynaform-configs-button.js +6 -0
  81. package/dist/components/snk-dynaform-configs-button2.js +76 -0
  82. package/dist/components/snk-dynaform-detail-view.d.ts +11 -0
  83. package/dist/components/snk-dynaform-detail-view.js +6 -0
  84. package/dist/components/snk-dynaform-detail-view2.js +1835 -0
  85. package/dist/components/snk-dynaform-field-config.d.ts +11 -0
  86. package/dist/components/snk-dynaform-field-config.js +6 -0
  87. package/dist/components/snk-dynaform-field-config2.js +605 -0
  88. package/dist/components/snk-dynaform-field-item.d.ts +11 -0
  89. package/dist/components/snk-dynaform-field-item.js +6 -0
  90. package/dist/components/snk-dynaform-field-item2.js +96 -0
  91. package/dist/components/snk-dynaform-fields-layout.d.ts +11 -0
  92. package/dist/components/snk-dynaform-fields-layout.js +6 -0
  93. package/dist/components/snk-dynaform-fields-layout2.js +428 -0
  94. package/dist/components/snk-dynaform-fields-selector.d.ts +11 -0
  95. package/dist/components/snk-dynaform-fields-selector.js +6 -0
  96. package/dist/components/snk-dynaform-fields-selector2.js +104 -0
  97. package/dist/components/snk-dynaform-form-config.d.ts +11 -0
  98. package/dist/components/snk-dynaform-form-config.js +6 -0
  99. package/dist/components/snk-dynaform-form-config2.js +430 -0
  100. package/dist/components/snk-dynaform-form-view.d.ts +11 -0
  101. package/dist/components/snk-dynaform-form-view.js +6 -0
  102. package/dist/components/snk-dynaform-form-view2.js +270 -0
  103. package/dist/components/snk-dynaform-guides-configurator.d.ts +11 -0
  104. package/dist/components/snk-dynaform-guides-configurator.js +6 -0
  105. package/dist/components/snk-dynaform-guides-configurator2.js +173 -0
  106. package/dist/components/snk-dynaform-guides-view.d.ts +11 -0
  107. package/dist/components/snk-dynaform-guides-view.js +6 -0
  108. package/dist/components/snk-dynaform.d.ts +11 -0
  109. package/dist/components/snk-dynaform.js +1003 -0
  110. package/dist/components/snk-grid2.js +1 -1
  111. package/dist/components/taskbarUtils.js +224 -0
  112. package/dist/esm/{ConfigStorage-76872695.js → ConfigStorage-e834d1ea.js} +2 -2
  113. package/dist/esm/{DataFetcher-e60f8d53.js → DataFetcher-5ed0a377.js} +2830 -3
  114. package/dist/esm/FormConfigHelper-efc29480.js +328 -0
  115. package/dist/esm/{ISave-4929c071.js → ISave-5b46d691.js} +1 -1
  116. package/dist/esm/{PersonalizedFilterUtils-d2439a9a.js → PersonalizedFilterUtils-45b5803c.js} +49 -2
  117. package/dist/esm/{SnkFormConfigManager-83f6b22f.js → SnkFormConfigManager-bfd575c2.js} +2 -2
  118. package/dist/esm/{SnkMultiSelectionListDataSource-18abafb1.js → SnkMultiSelectionListDataSource-9e9166ae.js} +4 -4
  119. package/dist/esm/{auth-fetcher-1a31c1e4.js → auth-fetcher-5283045d.js} +1 -1
  120. package/dist/esm/{dataunit-fetcher-c176e002.js → dataunit-fetcher-3b1ca96e.js} +1 -2
  121. package/dist/esm/{filter-type.enum-f6a8fe23.js → filter-type.enum-62b7fe88.js} +8 -1
  122. package/dist/esm/{form-config-fetcher-b44b2727.js → form-config-fetcher-db1bf140.js} +23 -5
  123. package/dist/esm/index-04f73a26.js +24 -36
  124. package/dist/esm/loader.js +1 -1
  125. package/dist/esm/pesquisa-grid_2.entry.js +4 -5
  126. package/dist/esm/sankhyablocks.js +1 -1
  127. package/dist/esm/snk-actions-button_9.entry.js +5 -6
  128. package/dist/esm/snk-application.entry.js +6 -7
  129. package/dist/esm/snk-attach_11.entry.js +2936 -0
  130. package/dist/esm/snk-crud.entry.js +6 -218
  131. package/dist/esm/snk-data-exporter.entry.js +5 -6
  132. package/dist/esm/{snk-data-unit-d8cfa950.js → snk-data-unit-dfde62cb.js} +2 -2
  133. package/dist/esm/snk-data-unit.entry.js +3 -4
  134. package/dist/esm/snk-detail-view.entry.js +7 -8
  135. package/dist/esm/snk-dynaform-config-header_5.entry.js +731 -0
  136. package/dist/esm/snk-dynaform-detail-view_2.entry.js +933 -0
  137. package/dist/esm/snk-dynaform-field-config_2.entry.js +322 -0
  138. package/dist/esm/snk-dynaform-guides-view-1f1455d6.js +744 -0
  139. package/dist/esm/snk-dynaform-guides-view.entry.js +15 -0
  140. package/dist/esm/snk-dynaform.entry.js +671 -0
  141. package/dist/esm/{snk-expression-group_2.entry.js → snk-expression-group_4.entry.js} +405 -4
  142. package/dist/esm/snk-filter-bar_4.entry.js +5 -8
  143. package/dist/esm/snk-form_2.entry.js +4 -5
  144. package/dist/esm/snk-grid.entry.js +7 -8
  145. package/dist/esm/{snk-guides-viewer-adf39ea2.js → snk-guides-viewer-95fefcaa.js} +1 -1
  146. package/dist/esm/snk-guides-viewer.entry.js +5 -6
  147. package/dist/esm/snk-layout-form-config.entry.js +4 -5
  148. package/dist/esm/snk-pesquisa.entry.js +4 -5
  149. package/dist/esm/taskbarUtils-8501d09e.js +225 -0
  150. package/dist/sankhyablocks/p-0dbd53d9.js +1 -0
  151. package/dist/sankhyablocks/{p-f5ad0720.js → p-19d1ca14.js} +1 -1
  152. package/dist/sankhyablocks/{p-ab5e12fa.js → p-1cc4cf61.js} +1 -1
  153. package/dist/sankhyablocks/p-1edd6be6.entry.js +1 -0
  154. package/dist/sankhyablocks/p-22ddc1a5.entry.js +1 -0
  155. package/dist/sankhyablocks/p-24b059ee.entry.js +1 -0
  156. package/dist/sankhyablocks/{p-5c250661.js → p-2c00b93d.js} +1 -1
  157. package/dist/sankhyablocks/p-3623fddf.entry.js +1 -0
  158. package/dist/sankhyablocks/p-43c94ba5.entry.js +1 -0
  159. package/dist/sankhyablocks/p-449dfe55.entry.js +1 -0
  160. package/dist/sankhyablocks/p-451b5bcc.entry.js +1 -0
  161. package/dist/sankhyablocks/p-46d7e2de.js +1 -0
  162. package/dist/sankhyablocks/{p-3c990841.js → p-51e853f2.js} +1 -1
  163. package/dist/sankhyablocks/p-58709cf9.js +1 -0
  164. package/dist/sankhyablocks/p-589016e2.entry.js +1 -0
  165. package/dist/sankhyablocks/p-5d02c032.js +1 -0
  166. package/dist/sankhyablocks/p-5d50f59a.entry.js +1 -0
  167. package/dist/sankhyablocks/p-61776b68.entry.js +1 -0
  168. package/dist/sankhyablocks/p-6b8a1ec3.js +1 -0
  169. package/dist/sankhyablocks/p-7038cf62.entry.js +1 -0
  170. package/dist/sankhyablocks/{p-b1bb4cf1.js → p-70c2ee5c.js} +1 -1
  171. package/dist/sankhyablocks/p-7628e04f.entry.js +1 -0
  172. package/dist/sankhyablocks/p-7798788b.entry.js +1 -0
  173. package/dist/sankhyablocks/p-77c26de0.js +1 -0
  174. package/dist/sankhyablocks/p-7c34a0f7.entry.js +1 -0
  175. package/dist/sankhyablocks/p-a4a0d9b7.entry.js +1 -0
  176. package/dist/sankhyablocks/{p-4f7adf97.js → p-b1bf9564.js} +1 -1
  177. package/dist/sankhyablocks/p-b4c2a99c.entry.js +1 -0
  178. package/dist/sankhyablocks/p-b75af274.entry.js +1 -0
  179. package/dist/sankhyablocks/p-c538bd6c.entry.js +1 -0
  180. package/dist/sankhyablocks/{p-3704bf1b.js → p-d5810110.js} +1 -1
  181. package/dist/sankhyablocks/p-d7fd447e.entry.js +1 -0
  182. package/dist/sankhyablocks/p-d88278f8.js +28 -0
  183. package/dist/sankhyablocks/p-f076d742.js +60 -0
  184. package/dist/sankhyablocks/{p-8fe740b7.entry.js → p-f1ef090f.entry.js} +2 -2
  185. package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
  186. package/dist/types/components/snk-dynaform/interfaces/PropsCustomEditor.d.ts +4 -0
  187. package/dist/types/components/snk-dynaform/interfaces/PropsCustomRender.d.ts +4 -0
  188. package/dist/types/components/snk-dynaform/subcomponents/CardFormResizeObserver.d.ts +1 -0
  189. package/dist/types/components/snk-dynaform/subcomponents/GuideBuilder.d.ts +14 -0
  190. package/dist/types/components/snk-dynaform/subcomponents/snk-dynaform-detail-view/snk-dynaform-detail-view.d.ts +158 -0
  191. package/dist/types/components/snk-dynaform/subcomponents/snk-dynaform-form-view/snk-dynaform-form-view.d.ts +107 -0
  192. package/dist/types/components/snk-dynaform-form-config/FormConfigHelper.d.ts +36 -0
  193. package/dist/types/components/snk-dynaform-form-config/SnkFormConfigManager.d.ts +35 -0
  194. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-config-header.d.ts +23 -0
  195. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-configs-button/snk-dynaform-configs-button.d.ts +19 -0
  196. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-config/snk-dynaform-field-config.d.ts +56 -0
  197. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-fields-layout/snk-dynaform-fields-layout.d.ts +74 -0
  198. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-fields-selector/snk-dynaform-fields-selector.d.ts +21 -0
  199. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-form-config.d.ts +95 -0
  200. package/dist/types/components/snk-dynaform-form-config/snk-dynaform-guides-configurator/snk-dynaform-guides-configurator.d.ts +35 -0
  201. package/dist/types/components.d.ts +2403 -1322
  202. package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +1 -0
  203. package/package.json +1 -1
  204. package/react/components.d.ts +12 -0
  205. package/react/components.js +12 -0
  206. package/react/components.js.map +1 -1
  207. package/dist/cjs/SnkMessageBuilder-a9300ebe.js +0 -2833
  208. package/dist/cjs/default-filters-a09bf82b.js +0 -8
  209. package/dist/cjs/index-62760a9c.js +0 -49
  210. package/dist/cjs/index-8d94b7e0.js +0 -7
  211. package/dist/cjs/snk-attach.cjs.entry.js +0 -948
  212. package/dist/cjs/snk-default-filter.cjs.entry.js +0 -77
  213. package/dist/cjs/snk-filter-advanced-mode_3.cjs.entry.js +0 -99
  214. package/dist/cjs/snk-filter-detail.cjs.entry.js +0 -198
  215. package/dist/cjs/snk-filter-field-search_2.cjs.entry.js +0 -408
  216. package/dist/cjs/snk-filter-modal-item.cjs.entry.js +0 -109
  217. package/dist/cjs/snk-image-input.cjs.entry.js +0 -160
  218. package/dist/cjs/snk-personalized-filter.cjs.entry.js +0 -358
  219. package/dist/cjs/snk-simple-crud.cjs.entry.js +0 -865
  220. package/dist/esm/SnkMessageBuilder-1eb7a1af.js +0 -2831
  221. package/dist/esm/default-filters-50105e43.js +0 -8
  222. package/dist/esm/index-620ac460.js +0 -7
  223. package/dist/esm/index-8acbae97.js +0 -49
  224. package/dist/esm/snk-attach.entry.js +0 -944
  225. package/dist/esm/snk-default-filter.entry.js +0 -73
  226. package/dist/esm/snk-filter-advanced-mode_3.entry.js +0 -93
  227. package/dist/esm/snk-filter-detail.entry.js +0 -194
  228. package/dist/esm/snk-filter-field-search_2.entry.js +0 -403
  229. package/dist/esm/snk-filter-modal-item.entry.js +0 -105
  230. package/dist/esm/snk-image-input.entry.js +0 -156
  231. package/dist/esm/snk-personalized-filter.entry.js +0 -354
  232. package/dist/esm/snk-simple-crud.entry.js +0 -861
  233. package/dist/sankhyablocks/p-0a4cdcde.entry.js +0 -1
  234. package/dist/sankhyablocks/p-0afc64df.entry.js +0 -1
  235. package/dist/sankhyablocks/p-10f27dc6.entry.js +0 -1
  236. package/dist/sankhyablocks/p-20f03230.entry.js +0 -1
  237. package/dist/sankhyablocks/p-2af8aca3.js +0 -1
  238. package/dist/sankhyablocks/p-3870748a.js +0 -28
  239. package/dist/sankhyablocks/p-3d294185.entry.js +0 -1
  240. package/dist/sankhyablocks/p-438a225f.entry.js +0 -1
  241. package/dist/sankhyablocks/p-4d04bc75.entry.js +0 -1
  242. package/dist/sankhyablocks/p-554c0e54.js +0 -1
  243. package/dist/sankhyablocks/p-57c184a2.entry.js +0 -1
  244. package/dist/sankhyablocks/p-68c1a093.js +0 -1
  245. package/dist/sankhyablocks/p-6a4b21dd.js +0 -1
  246. package/dist/sankhyablocks/p-6ae7543b.entry.js +0 -1
  247. package/dist/sankhyablocks/p-6e278003.js +0 -60
  248. package/dist/sankhyablocks/p-82bcb4cf.entry.js +0 -1
  249. package/dist/sankhyablocks/p-84345e7a.js +0 -1
  250. package/dist/sankhyablocks/p-95af0bb1.entry.js +0 -1
  251. package/dist/sankhyablocks/p-a905712a.entry.js +0 -1
  252. package/dist/sankhyablocks/p-aff2d081.entry.js +0 -1
  253. package/dist/sankhyablocks/p-b0a357b4.entry.js +0 -1
  254. package/dist/sankhyablocks/p-b568c1d4.js +0 -1
  255. package/dist/sankhyablocks/p-bab4cde4.entry.js +0 -1
  256. package/dist/sankhyablocks/p-bd3c1aaa.entry.js +0 -1
  257. package/dist/sankhyablocks/p-cc64239c.entry.js +0 -1
  258. package/dist/sankhyablocks/p-cd00a3d1.entry.js +0 -1
  259. package/dist/sankhyablocks/p-d9ec8c4b.entry.js +0 -1
  260. package/dist/sankhyablocks/p-dbdbb77a.entry.js +0 -1
  261. package/dist/sankhyablocks/p-e8df1dea.entry.js +0 -1
  262. package/dist/sankhyablocks/p-ef9343c3.entry.js +0 -1
  263. package/dist/sankhyablocks/p-f4184ce7.js +0 -1
@@ -0,0 +1,557 @@
1
+ import { ApplicationContext, ObjectUtils } from '@sankhyalabs/core';
2
+ import { buildFormConfigFromDataUnit } from '@sankhyalabs/ezui/dist/collection/utils/form';
3
+ import { h, Host } from '@stencil/core';
4
+ import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
5
+ import { UserConfigType } from '../../lib/http/data-fetcher/fetchers/form-config-fetcher';
6
+ import { GROUP_NAMES, TAB_NAMES } from '../../lib/utils/constants';
7
+ import { buildChildrenGuides, buildCustomGuides, buildGuides, buildGuidesMap, buildNewGuideName, getFieldsToSave, updateTabInFieldsFromGroupList, } from './FormConfigHelper';
8
+ export class SnkDynaformFormConfig {
9
+ constructor() {
10
+ this.guidesMap = new Map();
11
+ this.availableFields = [];
12
+ this.guidesList = [];
13
+ this.groupsList = [];
14
+ this.mainGuide = undefined;
15
+ this.mainGroupsList = [];
16
+ this.selectedGuide = undefined;
17
+ this._formConfig = {};
18
+ this.configOptions = [];
19
+ this.originalConfigSelected = undefined;
20
+ this.configSelected = undefined;
21
+ this.hasChanges = false;
22
+ this.optionConfigChanged = false;
23
+ this.dataUnit = undefined;
24
+ this.configManager = undefined;
25
+ this.ignoreReadOnlyFormFields = undefined;
26
+ this.messagesBuilder = undefined;
27
+ this.customGuidesConfig = [];
28
+ }
29
+ handleFieldConfigChanged() {
30
+ this.hasChanges = true;
31
+ }
32
+ async handleFormConfigOptionSelected({ detail }) {
33
+ this.configSelected = detail;
34
+ this.selectedGuide = undefined;
35
+ await this.loadConfigByUser();
36
+ this.optionConfigChanged = !ObjectUtils.equals(this.configSelected, this.originalConfigSelected);
37
+ if (this.configSelected.origin === UserConfigType.DEFAULT) {
38
+ this.hasChanges = false;
39
+ }
40
+ }
41
+ async handleAddFieldToGuide({ detail: fieldItem }) {
42
+ var _a, _b;
43
+ const hasValidSecondaryGuide = this.selectedGuide
44
+ && !this.selectedGuide.isCustom
45
+ && !this.selectedGuide.isDetail;
46
+ if (!hasValidSecondaryGuide && this.selectedGuide && (this.selectedGuide.isCustom || this.selectedGuide.isDetail)) {
47
+ this.showCanNotAddFieldToGuideDialog();
48
+ return;
49
+ }
50
+ if (!hasValidSecondaryGuide && !this.mainGuide) {
51
+ this.showNoGuideSelectedDialog();
52
+ return;
53
+ }
54
+ this.availableFields = [...this.availableFields.filter(f => f.name !== fieldItem.name)];
55
+ if (hasValidSecondaryGuide) {
56
+ await ((_a = this.refFieldsLayout) === null || _a === void 0 ? void 0 : _a.addFieldToLayout(fieldItem));
57
+ }
58
+ else {
59
+ await ((_b = this.refMainFieldsLayout) === null || _b === void 0 ? void 0 : _b.addFieldToLayout(fieldItem));
60
+ }
61
+ }
62
+ async handleSetFieldAsAvailable({ detail }) {
63
+ const hasField = this.availableFields.some(f => f.name === detail.name);
64
+ if (hasField)
65
+ return;
66
+ this.availableFields = [...this.availableFields, detail];
67
+ }
68
+ async handleRemoveFieldFromAvailable({ detail }) {
69
+ this.availableFields = this.availableFields.filter(f => f.name !== detail.name);
70
+ }
71
+ observeSelectedGuide(guide) {
72
+ var _a, _b;
73
+ if ((guide === null || guide === void 0 ? void 0 : guide.name) && ((_a = this.mainGuide) === null || _a === void 0 ? void 0 : _a.name) && guide.name === this.mainGuide.name) {
74
+ this.selectedGuide = undefined;
75
+ return;
76
+ }
77
+ const guideGroups = (_b = this.guidesMap.get(guide === null || guide === void 0 ? void 0 : guide.name)) !== null && _b !== void 0 ? _b : [];
78
+ this.groupsList = [...guideGroups];
79
+ }
80
+ observeConfigManager() {
81
+ this.loadFormConfig();
82
+ }
83
+ showNoGuideSelectedDialog() {
84
+ const title = this.getMessage('snkFormConfig.noGuideSelected.title');
85
+ const message = this.getMessage('snkFormConfig.noGuideSelected.message');
86
+ ApplicationUtils.alert(title, message);
87
+ }
88
+ showCanNotAddFieldToGuideDialog() {
89
+ const title = this.getMessage('snkFormConfig.canNotAddFieldToGuide.title');
90
+ const message = this.getMessage('snkFormConfig.canNotAddFieldToGuide.message');
91
+ ApplicationUtils.alert(title, message);
92
+ }
93
+ /**
94
+ * Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
95
+ * através de um pequeno modulo na estrutura da aplicação:
96
+ * - Criar um arquivo no seguinte caminho: /messages/appmessages.msg.js.
97
+ * Para conhecer os detalhes do módulo, vide o arquivo neste projeto "/src/lib/message/resources/snk-form.msg.ts"
98
+ */
99
+ getMessage(key, params) {
100
+ return this.messagesBuilder.getMessage(key, params);
101
+ }
102
+ async initializeUserConfig() {
103
+ if (this.configManager == undefined)
104
+ return;
105
+ try {
106
+ const userConfig = await this.configManager.fetchUserAvailableConfigs();
107
+ this.configOptions = userConfig;
108
+ const isDefault = this._formConfig != undefined ? this._formConfig.defaultConfiguration : true;
109
+ const origin = (isDefault ? UserConfigType.DEFAULT : UserConfigType.USER);
110
+ this.configSelected = userConfig === null || userConfig === void 0 ? void 0 : userConfig.find((config) => config.origin === origin);
111
+ this.originalConfigSelected = userConfig === null || userConfig === void 0 ? void 0 : userConfig.find((config) => config.origin === origin);
112
+ }
113
+ catch (error) {
114
+ console.error(this.getMessage('snkFormConfig.errors.failFetchUserConfig'));
115
+ console.error(error);
116
+ }
117
+ }
118
+ async loadConfigByUser() {
119
+ if (!this.configManager || !this.configSelected)
120
+ return;
121
+ if (this.isConfigDefaultSelected()) {
122
+ await this.handleLoadDefaultConfig();
123
+ }
124
+ else {
125
+ this.loadFormConfig();
126
+ }
127
+ }
128
+ async handleLoadDefaultConfig() {
129
+ const defaultConfig = await this.configManager.fetchDefaultConfig();
130
+ if (defaultConfig) {
131
+ this.loadFormConfig(defaultConfig);
132
+ return;
133
+ }
134
+ const emptyConfig = this.configManager.getEmptyConfig();
135
+ if (emptyConfig) {
136
+ this.loadFormConfig(emptyConfig);
137
+ }
138
+ }
139
+ isConfigDefaultSelected() {
140
+ return this.configSelected.origin === UserConfigType.DEFAULT;
141
+ }
142
+ loadFormConfig(config) {
143
+ this._formConfig = config ? config : this.getConfig();
144
+ this.loadGuides();
145
+ this.initializeAvailableFields();
146
+ }
147
+ initializeAvailableFields() {
148
+ var _a;
149
+ if (((_a = this._formConfig) === null || _a === void 0 ? void 0 : _a.fields) == undefined)
150
+ return;
151
+ const fieldsFormConfig = [...this._formConfig.fields];
152
+ const fieldsMetadata = this.dataUnit.metadata.fields;
153
+ this.availableFields = fieldsMetadata.filter(({ name: fieldName, visible: fieldVisible, properties }) => {
154
+ const hasCfg = fieldsFormConfig.some(({ name: fieldFormName }) => fieldFormName === fieldName);
155
+ /**
156
+ * Quando a visibilidade de um campo é alterada pelo dataunit, mas o desenvolvedor deseja que o mesmo continue
157
+ * sendo apresentado no configurador, precisamos fazer essa tratativa, verificando se o campo não tem configuração
158
+ */
159
+ if (!hasCfg && properties.visibleOnConfig === true && !fieldVisible)
160
+ return properties.visibleOnConfig;
161
+ return fieldVisible === true && hasCfg === false;
162
+ });
163
+ }
164
+ getInitialOrder(guidesList) {
165
+ var _a, _b;
166
+ if (Array.isArray((_a = this._formConfig) === null || _a === void 0 ? void 0 : _a.tabs)) {
167
+ return (_b = this._formConfig.tabs) === null || _b === void 0 ? void 0 : _b.length;
168
+ }
169
+ if (guidesList.length > 0) {
170
+ return Math.max(...guidesList.map(g => g.order));
171
+ }
172
+ return 0;
173
+ }
174
+ loadGuides() {
175
+ var _a, _b, _c, _d;
176
+ this.guidesList = [];
177
+ this.guidesList.push(...buildGuides(this._formConfig, this.getMessage('snkFormConfig.form.mainArea'), this.dataUnit, TAB_NAMES.general));
178
+ this.guidesList.push(...buildChildrenGuides(this.dataUnit, this.getInitialOrder(this.guidesList), this.guidesList));
179
+ this.guidesList.push(...buildCustomGuides(this.customGuidesConfig, this.guidesList));
180
+ this.guidesMap = buildGuidesMap((_a = this._formConfig) === null || _a === void 0 ? void 0 : _a.fields, this.guidesList, this.dataUnit, TAB_NAMES.general);
181
+ this.mainGuide = this.guidesList.find(g => g.name === TAB_NAMES.main);
182
+ this.mainGroupsList = ((_b = this.mainGuide) === null || _b === void 0 ? void 0 : _b.name)
183
+ ? [...((_d = (_c = this.guidesMap) === null || _c === void 0 ? void 0 : _c.get(this.mainGuide.name)) !== null && _d !== void 0 ? _d : [])]
184
+ : [];
185
+ this.ensureSelectedGuide();
186
+ }
187
+ ensureSelectedGuide() {
188
+ const stillValid = this.selectedGuide
189
+ && this.guidesList.some(g => g.name === this.selectedGuide.name);
190
+ if (stillValid)
191
+ return;
192
+ const firstSelectable = this.guidesList
193
+ .filter(g => { var _a; return g.visible && g.name !== ((_a = this.mainGuide) === null || _a === void 0 ? void 0 : _a.name); })
194
+ .sort((a, b) => { var _a, _b; return ((_a = a.order) !== null && _a !== void 0 ? _a : Number.MAX_VALUE) - ((_b = b.order) !== null && _b !== void 0 ? _b : Number.MAX_VALUE); })[0];
195
+ this.selectedGuide = firstSelectable;
196
+ }
197
+ getConfig() {
198
+ let config = this.configManager.getConfig(this.dataUnit, false);
199
+ if (config.fields && config.fields.length === 0) {
200
+ config = undefined;
201
+ }
202
+ if (config == undefined) {
203
+ config = buildFormConfigFromDataUnit(this.dataUnit);
204
+ }
205
+ return ObjectUtils.copy(config);
206
+ }
207
+ handleSelectGuide({ detail: selectedGuide }) {
208
+ this.selectedGuide = selectedGuide;
209
+ }
210
+ handleLayoutChanged({ detail: newGroupList }) {
211
+ if (!this.selectedGuide)
212
+ return;
213
+ this.hasChanges = true;
214
+ this.groupsList = [...newGroupList];
215
+ this.guidesMap.set(this.selectedGuide.name, [...newGroupList]);
216
+ }
217
+ handleMainLayoutChanged({ detail: newGroupList }) {
218
+ var _a;
219
+ if (!((_a = this.mainGuide) === null || _a === void 0 ? void 0 : _a.name))
220
+ return;
221
+ this.hasChanges = true;
222
+ this.mainGroupsList = [...newGroupList];
223
+ this.guidesMap.set(this.mainGuide.name, [...newGroupList]);
224
+ }
225
+ getIsDefaultConfig() {
226
+ var _a;
227
+ const optionSelected = (_a = this.configSelected) === null || _a === void 0 ? void 0 : _a.origin;
228
+ return optionSelected === UserConfigType.DEFAULT
229
+ && this.optionConfigChanged === true
230
+ && this.hasChanges === false;
231
+ }
232
+ getTabsToSave() {
233
+ return this.guidesList.map(tab => {
234
+ return {
235
+ name: tab.name,
236
+ label: tab.name === TAB_NAMES.main ? tab.name : tab.label,
237
+ order: tab.name === TAB_NAMES.main ? 0 : tab.order,
238
+ visible: tab.visible,
239
+ };
240
+ });
241
+ }
242
+ async handleSaveConfig() {
243
+ var _a;
244
+ const savedConfig = await this.configManager.saveConfig(this.buildConfigToSave());
245
+ this.configSelected = (_a = this.configOptions) === null || _a === void 0 ? void 0 : _a.find((config) => {
246
+ return config.origin === (this.hasChanges ? UserConfigType.USER : UserConfigType.DEFAULT);
247
+ });
248
+ this.originalConfigSelected = this.configSelected;
249
+ this.hasChanges = false;
250
+ this.optionConfigChanged = false;
251
+ ApplicationUtils.info(this.getMessage('snkFormConfig.info.successfullyConfigSaved'), { iconName: 'check' });
252
+ this.configChange.emit(savedConfig);
253
+ }
254
+ buildConfigToSave() {
255
+ const formConfig = ObjectUtils.copy(this._formConfig);
256
+ formConfig.tabs = this.getTabsToSave();
257
+ formConfig.fields = getFieldsToSave(this.guidesMap);
258
+ formConfig.defaultConfiguration = this.getIsDefaultConfig();
259
+ return formConfig;
260
+ }
261
+ handleAvailableFieldListChanged({ detail: updatedList }) {
262
+ this.availableFields = [...updatedList];
263
+ }
264
+ handleSetFieldListAsAvailable({ detail: updatedList }) {
265
+ this.availableFields = [...this.availableFields, ...updatedList];
266
+ }
267
+ handleGuideDeleted({ detail: guide }) {
268
+ var _a, _b;
269
+ const guideName = guide.name;
270
+ const guideGroups = (_a = this.guidesMap.get(guideName)) !== null && _a !== void 0 ? _a : [];
271
+ const fieldsToAvailable = [];
272
+ guideGroups.forEach(group => fieldsToAvailable.push(...group.fields));
273
+ this.availableFields = [...this.availableFields, ...fieldsToAvailable];
274
+ this.guidesList = [...this.guidesList.filter(g => g.name !== guideName)];
275
+ this.guidesMap.delete(guideName);
276
+ if (((_b = this.selectedGuide) === null || _b === void 0 ? void 0 : _b.name) === guideName) {
277
+ this.selectedGuide = undefined;
278
+ this.ensureSelectedGuide();
279
+ }
280
+ this.hasChanges = true;
281
+ }
282
+ handleGuideListChanged({ detail: updatedList }) {
283
+ this.hasChanges = true;
284
+ this.guidesList = [...updatedList];
285
+ }
286
+ handleGuideRenamed({ detail: updatedName }) {
287
+ var _a;
288
+ const previousGuide = this.selectedGuide;
289
+ if (!(previousGuide === null || previousGuide === void 0 ? void 0 : previousGuide.name))
290
+ return;
291
+ const previousName = previousGuide.name;
292
+ const guideGroups = (_a = this.guidesMap.get(previousName)) !== null && _a !== void 0 ? _a : [];
293
+ const updatedGroups = updateTabInFieldsFromGroupList(guideGroups, updatedName);
294
+ this.guidesMap.delete(previousName);
295
+ this.guidesMap.set(updatedName, updatedGroups);
296
+ const updatedGuide = {
297
+ name: updatedName,
298
+ label: updatedName,
299
+ visible: previousGuide.visible,
300
+ order: previousGuide.order,
301
+ };
302
+ this.guidesList = [...this.guidesList.map(guide => (guide.name === previousName) ? updatedGuide : guide)];
303
+ this.groupsList = [...updatedGroups];
304
+ this.selectedGuide = updatedGuide;
305
+ this.hasChanges = true;
306
+ }
307
+ handleCreateNewGuide() {
308
+ const newGuideName = buildNewGuideName(this.guidesList, this.getMessage.bind(this));
309
+ const newGuide = {
310
+ name: newGuideName,
311
+ label: newGuideName,
312
+ visible: true,
313
+ order: this.guidesList.length + 1,
314
+ };
315
+ const newGuideFixedGroup = {
316
+ name: GROUP_NAMES.noGroup,
317
+ fields: [],
318
+ };
319
+ this.guidesList = [...this.guidesList, newGuide];
320
+ this.guidesMap.set(newGuideName, [newGuideFixedGroup]);
321
+ this.selectedGuide = newGuide;
322
+ this.hasChanges = true;
323
+ }
324
+ getGuideNames() {
325
+ return [
326
+ ...this.guidesList.map(g => g.name.toLowerCase()),
327
+ this.getMessage('snkFormConfig.form.mainArea').toLowerCase(),
328
+ ];
329
+ }
330
+ async componentWillRender() {
331
+ if (this.messagesBuilder == undefined) {
332
+ const application = ApplicationContext.getContextValue('__SNK__APPLICATION__');
333
+ this.messagesBuilder = application.messagesBuilder;
334
+ }
335
+ }
336
+ async componentWillLoad() {
337
+ this.loadFormConfig();
338
+ await this.initializeUserConfig();
339
+ }
340
+ render() {
341
+ var _a;
342
+ return (h(Host, null, h("snk-dynaform-config-header", { configOptions: this.configOptions, selectedConfig: this.configSelected, messagesBuilder: this.messagesBuilder, hasChanges: this.hasChanges, optionConfigChanged: this.optionConfigChanged, onConfigClose: () => this.configClose.emit(), onSaveConfig: async () => await this.handleSaveConfig() }), h("div", { class: "form-config-body" }, h("div", { class: "form-config-layout" }, h("snk-dynaform-fields-selector", { dataUnit: this.dataUnit, availableFields: this.availableFields, onFieldListChanged: this.handleAvailableFieldListChanged.bind(this), messagesBuilder: this.messagesBuilder }), h("div", { class: "main-editing-area" }, this.mainGuide && (h("div", { class: "main-fields-section" }, h("snk-dynaform-fields-layout", { ref: ref => this.refMainFieldsLayout = ref, selectedGuide: this.mainGuide, guideNames: this.getGuideNames(), groupsList: this.mainGroupsList, messagesBuilder: this.messagesBuilder, dataUnit: this.dataUnit, isMainSection: true, onLayoutChanged: this.handleMainLayoutChanged.bind(this), onSetFieldListAsAvailable: this.handleSetFieldListAsAvailable.bind(this) }))), h("snk-dynaform-guides-configurator", { messagesBuilder: this.messagesBuilder, guidesList: this.guidesList, selectedGuide: this.selectedGuide, mainGuideName: (_a = this.mainGuide) === null || _a === void 0 ? void 0 : _a.name, onGuideSelected: this.handleSelectGuide.bind(this), onGuideListChanged: this.handleGuideListChanged.bind(this), onCreateNewGuide: this.handleCreateNewGuide.bind(this), onGuideDeleted: this.handleGuideDeleted.bind(this) }), h("snk-dynaform-fields-layout", { ref: ref => this.refFieldsLayout = ref, selectedGuide: this.selectedGuide, guideNames: this.getGuideNames(), groupsList: this.groupsList, messagesBuilder: this.messagesBuilder, dataUnit: this.dataUnit, onGuideRenamed: this.handleGuideRenamed.bind(this), onLayoutChanged: this.handleLayoutChanged.bind(this), onSetFieldListAsAvailable: this.handleSetFieldListAsAvailable.bind(this) }))))));
343
+ }
344
+ static get is() { return "snk-dynaform-form-config"; }
345
+ static get encapsulation() { return "scoped"; }
346
+ static get originalStyleUrls() {
347
+ return {
348
+ "$": ["snk-dynaform-form-config.css"]
349
+ };
350
+ }
351
+ static get styleUrls() {
352
+ return {
353
+ "$": ["snk-dynaform-form-config.css"]
354
+ };
355
+ }
356
+ static get properties() {
357
+ return {
358
+ "dataUnit": {
359
+ "type": "unknown",
360
+ "mutable": false,
361
+ "complexType": {
362
+ "original": "DataUnit",
363
+ "resolved": "DataUnit",
364
+ "references": {
365
+ "DataUnit": {
366
+ "location": "import",
367
+ "path": "@sankhyalabs/core"
368
+ }
369
+ }
370
+ },
371
+ "required": false,
372
+ "optional": false,
373
+ "docs": {
374
+ "tags": [],
375
+ "text": "Reposit\u00F3rio de dados, controla a manipula\u00E7\u00E3o dos dados."
376
+ }
377
+ },
378
+ "configManager": {
379
+ "type": "unknown",
380
+ "mutable": false,
381
+ "complexType": {
382
+ "original": "SnkFormConfigManager",
383
+ "resolved": "SnkFormConfigManager",
384
+ "references": {
385
+ "SnkFormConfigManager": {
386
+ "location": "import",
387
+ "path": "./SnkFormConfigManager"
388
+ }
389
+ }
390
+ },
391
+ "required": false,
392
+ "optional": false,
393
+ "docs": {
394
+ "tags": [],
395
+ "text": "Campos de configura\u00E7\u00E3o de formul\u00E1rio."
396
+ }
397
+ },
398
+ "ignoreReadOnlyFormFields": {
399
+ "type": "boolean",
400
+ "mutable": false,
401
+ "complexType": {
402
+ "original": "boolean",
403
+ "resolved": "boolean",
404
+ "references": {}
405
+ },
406
+ "required": false,
407
+ "optional": true,
408
+ "docs": {
409
+ "tags": [],
410
+ "text": "Ignora os campos \"somente leitura\" no modo de inser\u00E7\u00E3o."
411
+ },
412
+ "attribute": "ignore-read-only-form-fields",
413
+ "reflect": false
414
+ },
415
+ "messagesBuilder": {
416
+ "type": "unknown",
417
+ "mutable": true,
418
+ "complexType": {
419
+ "original": "SnkMessageBuilder",
420
+ "resolved": "SnkMessageBuilder",
421
+ "references": {
422
+ "SnkMessageBuilder": {
423
+ "location": "import",
424
+ "path": "../../lib/message/SnkMessageBuilder"
425
+ }
426
+ }
427
+ },
428
+ "required": false,
429
+ "optional": false,
430
+ "docs": {
431
+ "tags": [],
432
+ "text": "Respons\u00E1vel por flexibilizar e padronizar o uso de mensagens nos blocos de constru\u00E7\u00E3o."
433
+ }
434
+ },
435
+ "customGuidesConfig": {
436
+ "type": "unknown",
437
+ "mutable": false,
438
+ "complexType": {
439
+ "original": "Array<CustomGuideItem>",
440
+ "resolved": "CustomGuideItem[]",
441
+ "references": {
442
+ "Array": {
443
+ "location": "global"
444
+ },
445
+ "CustomGuideItem": {
446
+ "location": "import",
447
+ "path": "../snk-crud/subcomponents/snk-guides-viewer"
448
+ }
449
+ }
450
+ },
451
+ "required": false,
452
+ "optional": true,
453
+ "docs": {
454
+ "tags": [],
455
+ "text": "Informa\u00E7\u00F5es das guias personalizadas."
456
+ },
457
+ "defaultValue": "[]"
458
+ }
459
+ };
460
+ }
461
+ static get states() {
462
+ return {
463
+ "availableFields": {},
464
+ "guidesList": {},
465
+ "groupsList": {},
466
+ "mainGuide": {},
467
+ "mainGroupsList": {},
468
+ "selectedGuide": {},
469
+ "_formConfig": {},
470
+ "configOptions": {},
471
+ "originalConfigSelected": {},
472
+ "configSelected": {},
473
+ "hasChanges": {},
474
+ "optionConfigChanged": {}
475
+ };
476
+ }
477
+ static get events() {
478
+ return [{
479
+ "method": "configClose",
480
+ "name": "configClose",
481
+ "bubbles": true,
482
+ "cancelable": true,
483
+ "composed": true,
484
+ "docs": {
485
+ "tags": [],
486
+ "text": "Emitido ao fechar as configura\u00E7\u00F5es."
487
+ },
488
+ "complexType": {
489
+ "original": "void",
490
+ "resolved": "void",
491
+ "references": {}
492
+ }
493
+ }, {
494
+ "method": "configChange",
495
+ "name": "configChange",
496
+ "bubbles": true,
497
+ "cancelable": true,
498
+ "composed": true,
499
+ "docs": {
500
+ "tags": [],
501
+ "text": "Emitido ao salvar as configura\u00E7\u00F5es."
502
+ },
503
+ "complexType": {
504
+ "original": "IFormConfig",
505
+ "resolved": "IFormConfig",
506
+ "references": {
507
+ "IFormConfig": {
508
+ "location": "import",
509
+ "path": "@sankhyalabs/ezui/dist/types/utils/form/interfaces"
510
+ }
511
+ }
512
+ }
513
+ }];
514
+ }
515
+ static get watchers() {
516
+ return [{
517
+ "propName": "selectedGuide",
518
+ "methodName": "observeSelectedGuide"
519
+ }, {
520
+ "propName": "configManager",
521
+ "methodName": "observeConfigManager"
522
+ }];
523
+ }
524
+ static get listeners() {
525
+ return [{
526
+ "name": "fieldConfigChanged",
527
+ "method": "handleFieldConfigChanged",
528
+ "target": "body",
529
+ "capture": false,
530
+ "passive": false
531
+ }, {
532
+ "name": "formConfigOptionSelected",
533
+ "method": "handleFormConfigOptionSelected",
534
+ "target": "body",
535
+ "capture": false,
536
+ "passive": false
537
+ }, {
538
+ "name": "addFieldToGuide",
539
+ "method": "handleAddFieldToGuide",
540
+ "target": "body",
541
+ "capture": false,
542
+ "passive": false
543
+ }, {
544
+ "name": "setFieldAsAvailable",
545
+ "method": "handleSetFieldAsAvailable",
546
+ "target": "body",
547
+ "capture": false,
548
+ "passive": false
549
+ }, {
550
+ "name": "removeFieldFromAvailable",
551
+ "method": "handleRemoveFieldFromAvailable",
552
+ "target": "body",
553
+ "capture": false,
554
+ "passive": false
555
+ }];
556
+ }
557
+ }
@@ -0,0 +1,80 @@
1
+ .guides-tab-configurator {
2
+ display: flex;
3
+ flex-direction: column;
4
+ width: 100%;
5
+ gap: var(--spece--8, 8px);
6
+ }
7
+
8
+ .tab-bar-row {
9
+ display: flex;
10
+ flex-direction: row;
11
+ align-items: center;
12
+ gap: var(--space--12, 12px);
13
+ width: 100%;
14
+ }
15
+
16
+ .guides-tabselector {
17
+ flex: 1;
18
+ min-width: 0;
19
+ }
20
+
21
+ .tab-actions {
22
+ display: inline-flex;
23
+ align-items: center;
24
+ gap: var(--space--2, 2px);
25
+ margin-left: var(--space--6, 6px);
26
+ }
27
+
28
+ .tab-actions ez-button {
29
+ width: var(--space--20, 20px);
30
+ align-items: center;
31
+ justify-content: center;
32
+ display: flex;
33
+ }
34
+
35
+ .hidden-guides-bar {
36
+ display: flex;
37
+ flex-direction: row;
38
+ flex-wrap: wrap;
39
+ align-items: center;
40
+ gap: var(--space--8, 8px);
41
+ padding: var(--space--8, 8px) 0;
42
+ border-top: 1px solid #dce0e8;
43
+ }
44
+
45
+ .hidden-guides-label {
46
+ font-size: var(--space--12, 12px);
47
+ color: #afb6c0;
48
+ white-space: nowrap;
49
+ }
50
+
51
+ .hidden-guide-chip {
52
+ display: flex;
53
+ align-items: center;
54
+ gap: 4px;
55
+ padding: 2px var(--space--8, 8px);
56
+ border: 1px solid #dce0e8;
57
+ border-radius: var(--space--12, 12px);
58
+ background: #f5f7fa;
59
+ transition: background 0.15s ease-in-out;
60
+ }
61
+
62
+ .hidden-guide-chip:hover {
63
+ background: #e2eaf4;
64
+ }
65
+
66
+ .hidden-guide-chip ez-button {
67
+ width: var(--space--20, 20px);
68
+ align-items: center;
69
+ justify-content: center;
70
+ display: flex;
71
+ }
72
+
73
+ .chip-label {
74
+ font-size: 13px;
75
+ max-width: 120px;
76
+ overflow: hidden;
77
+ text-overflow: ellipsis;
78
+ white-space: nowrap;
79
+ cursor: pointer;
80
+ }