@sankhyalabs/sankhyablocks 8.15.0-dev.1 → 8.15.0-dev.10

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 (197) hide show
  1. package/dist/cjs/{ConfigStorage-0d507a8f.js → ConfigStorage-302bbbd4.js} +25 -15
  2. package/dist/cjs/{ISave-d68ce3cd.js → ISave-e91b70a7.js} +1 -0
  3. package/dist/cjs/{SnkFormConfigManager-467907f6.js → SnkFormConfigManager-71c4768e.js} +1 -1
  4. package/dist/cjs/{SnkMessageBuilder-7293d0ad.js → SnkMessageBuilder-e7dcf408.js} +13 -0
  5. package/dist/cjs/{index-0e663819.js → index-0922807b.js} +1 -0
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/{dataunit-fetcher-bdaf9482.js → pesquisa-fetcher-7a08d110.js} +205 -12
  8. package/dist/cjs/sankhyablocks.cjs.js +1 -1
  9. package/dist/cjs/snk-actions-button_2.cjs.entry.js +21 -5
  10. package/dist/cjs/snk-application.cjs.entry.js +65 -6
  11. package/dist/cjs/snk-attach.cjs.entry.js +395 -57
  12. package/dist/cjs/snk-crud.cjs.entry.js +5 -6
  13. package/dist/cjs/snk-data-exporter.cjs.entry.js +3 -3
  14. package/dist/cjs/{snk-data-unit-1bc69073.js → snk-data-unit-82c08a8c.js} +1 -1
  15. package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
  16. package/dist/cjs/snk-detail-view.cjs.entry.js +8 -9
  17. package/dist/cjs/snk-filter-bar.cjs.entry.js +33 -5
  18. package/dist/cjs/snk-filter-item.cjs.entry.js +47 -1
  19. package/dist/cjs/snk-filter-modal-item.cjs.entry.js +1 -2
  20. package/dist/cjs/snk-filter-modal.cjs.entry.js +14 -0
  21. package/dist/cjs/snk-form.cjs.entry.js +2 -2
  22. package/dist/cjs/snk-grid-config.cjs.entry.js +1 -1
  23. package/dist/cjs/snk-grid.cjs.entry.js +41 -18
  24. package/dist/cjs/{snk-guides-viewer-9342bca1.js → snk-guides-viewer-546509df.js} +6 -7
  25. package/dist/cjs/snk-guides-viewer.cjs.entry.js +7 -8
  26. package/dist/cjs/snk-personalized-filter.cjs.entry.js +2 -2
  27. package/dist/cjs/snk-simple-crud.cjs.entry.js +6 -7
  28. package/dist/cjs/snk-taskbar.cjs.entry.js +2 -2
  29. package/dist/cjs/{taskbar-elements-b8c428a9.js → taskbar-elements-01b85b99.js} +1 -1
  30. package/dist/collection/collection-manifest.json +1 -1
  31. package/dist/collection/components/snk-application/snk-application.js +68 -5
  32. package/dist/collection/components/snk-attach/snk-attach.js +194 -38
  33. package/dist/collection/components/snk-attach/structure/{crud-config-builder.js → builder/anexo-sistema-crud-config.builder.js} +1 -1
  34. package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js +62 -0
  35. package/dist/collection/components/snk-attach/structure/{taskbar-builder.js → builder/taskbar-builder.js} +1 -1
  36. package/dist/collection/components/snk-attach/structure/fetcher/facade/fetcher.facade.js +1 -0
  37. package/dist/collection/components/snk-attach/structure/{data-unit-builder.js → fetcher/factory/anexo-sistema-data-unit.factory.js} +14 -11
  38. package/dist/collection/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.js +111 -0
  39. package/dist/collection/components/snk-attach/structure/index.js +6 -3
  40. package/dist/collection/components/snk-crud/snk-crud.js +2 -2
  41. package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +2 -2
  42. package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +47 -1
  43. package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +65 -1
  44. package/dist/collection/components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.js +0 -1
  45. package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +62 -3
  46. package/dist/collection/components/snk-filter-bar/utils/SnkFilterModalFactory.js +3 -1
  47. package/dist/collection/components/snk-grid/snk-grid.js +39 -16
  48. package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +1 -1
  49. package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +24 -1
  50. package/dist/collection/components/snk-taskbar/snk-taskbar.js +1 -1
  51. package/dist/collection/lib/@types/index.js +1 -0
  52. package/dist/collection/lib/configs/ConfigStorage.js +24 -14
  53. package/dist/collection/lib/http/data-fetcher/fetchers/{attach-fetcher.js → AttachFetcher/anexo-sistema-fetcher.js} +16 -15
  54. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.js +90 -0
  55. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.js +1 -0
  56. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/index.js +2 -0
  57. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDelete.js +1 -0
  58. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDownloadKey.js +1 -0
  59. package/dist/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.js +1 -0
  60. package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.js +16 -2
  61. package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.js +28 -11
  62. package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +1 -1
  63. package/dist/collection/lib/index.js +1 -1
  64. package/dist/collection/lib/message/resources/snk-attach.msg.js +13 -0
  65. package/dist/components/ConfigStorage.js +25 -15
  66. package/dist/components/SnkMessageBuilder.js +13 -0
  67. package/dist/components/dataunit-fetcher.js +44 -13
  68. package/dist/components/index2.js +1 -0
  69. package/dist/components/snk-actions-button2.js +1 -0
  70. package/dist/components/snk-application2.js +62 -2
  71. package/dist/components/snk-attach2.js +400 -56
  72. package/dist/components/snk-crud.js +1 -1
  73. package/dist/components/snk-detail-view2.js +1 -1
  74. package/dist/components/snk-filter-bar2.js +34 -5
  75. package/dist/components/snk-filter-item2.js +47 -1
  76. package/dist/components/snk-filter-modal-item2.js +0 -1
  77. package/dist/components/snk-filter-modal.js +18 -2
  78. package/dist/components/snk-grid2.js +38 -15
  79. package/dist/components/snk-personalized-filter2.js +1 -1
  80. package/dist/components/taskbar-actions-button2.js +19 -2
  81. package/dist/esm/{ConfigStorage-379a9cba.js → ConfigStorage-4151acc8.js} +25 -15
  82. package/dist/esm/{ISave-4412b20c.js → ISave-d8c8bc59.js} +1 -0
  83. package/dist/esm/{SnkFormConfigManager-587e9030.js → SnkFormConfigManager-5c7d3771.js} +1 -1
  84. package/dist/esm/{SnkMessageBuilder-ca843d1b.js → SnkMessageBuilder-0fb796b9.js} +13 -0
  85. package/dist/esm/{index-1564817d.js → index-0ece87a6.js} +1 -0
  86. package/dist/esm/loader.js +1 -1
  87. package/dist/esm/{dataunit-fetcher-cc1650eb.js → pesquisa-fetcher-d6ff9386.js} +206 -14
  88. package/dist/esm/sankhyablocks.js +1 -1
  89. package/dist/esm/snk-actions-button_2.entry.js +21 -5
  90. package/dist/esm/snk-application.entry.js +65 -6
  91. package/dist/esm/snk-attach.entry.js +396 -58
  92. package/dist/esm/snk-crud.entry.js +5 -6
  93. package/dist/esm/snk-data-exporter.entry.js +3 -3
  94. package/dist/esm/{snk-data-unit-6208ebf0.js → snk-data-unit-5d201fb3.js} +1 -1
  95. package/dist/esm/snk-data-unit.entry.js +2 -2
  96. package/dist/esm/snk-detail-view.entry.js +8 -9
  97. package/dist/esm/snk-filter-bar.entry.js +33 -5
  98. package/dist/esm/snk-filter-item.entry.js +47 -1
  99. package/dist/esm/snk-filter-modal-item.entry.js +1 -2
  100. package/dist/esm/snk-filter-modal.entry.js +14 -0
  101. package/dist/esm/snk-form.entry.js +2 -2
  102. package/dist/esm/snk-grid-config.entry.js +1 -1
  103. package/dist/esm/snk-grid.entry.js +41 -18
  104. package/dist/esm/{snk-guides-viewer-9ce9588c.js → snk-guides-viewer-4e56a2e0.js} +6 -7
  105. package/dist/esm/snk-guides-viewer.entry.js +7 -8
  106. package/dist/esm/snk-personalized-filter.entry.js +2 -2
  107. package/dist/esm/snk-simple-crud.entry.js +4 -5
  108. package/dist/esm/snk-taskbar.entry.js +2 -2
  109. package/dist/esm/{taskbar-elements-26c981af.js → taskbar-elements-d4d0b424.js} +1 -1
  110. package/dist/sankhyablocks/{p-ff6064e7.js → p-05243555.js} +1 -1
  111. package/dist/sankhyablocks/{p-729f5f5b.entry.js → p-1d75d9f9.entry.js} +1 -1
  112. package/dist/sankhyablocks/{p-9e7d65a4.js → p-21749402.js} +1 -1
  113. package/dist/sankhyablocks/p-32460e98.entry.js +11 -0
  114. package/dist/sankhyablocks/p-374d03f6.js +1 -0
  115. package/dist/sankhyablocks/p-38289a55.js +1 -0
  116. package/dist/sankhyablocks/{p-35fe6e61.entry.js → p-3963b9c1.entry.js} +1 -1
  117. package/dist/sankhyablocks/p-42af1bbf.js +65 -0
  118. package/dist/sankhyablocks/{p-2028633c.js → p-573a07c5.js} +1 -1
  119. package/dist/sankhyablocks/{p-953346b9.entry.js → p-69efa80d.entry.js} +1 -1
  120. package/dist/sankhyablocks/{p-6977a26c.entry.js → p-71439fd9.entry.js} +1 -1
  121. package/dist/sankhyablocks/{p-aaa1438e.entry.js → p-761ed32f.entry.js} +1 -1
  122. package/dist/sankhyablocks/p-7d8d7fe9.entry.js +1 -0
  123. package/dist/sankhyablocks/p-7f3c7b09.entry.js +1 -0
  124. package/dist/sankhyablocks/p-8c74258e.entry.js +1 -0
  125. package/dist/sankhyablocks/p-8f0488b8.entry.js +1 -0
  126. package/dist/sankhyablocks/p-9ebcfeb6.entry.js +1 -0
  127. package/dist/sankhyablocks/p-a9e5b094.entry.js +1 -0
  128. package/dist/sankhyablocks/p-aa95fb2c.js +56 -0
  129. package/dist/sankhyablocks/p-b05ab13d.entry.js +1 -0
  130. package/dist/sankhyablocks/p-c2137023.entry.js +1 -0
  131. package/dist/sankhyablocks/p-c4874327.entry.js +1 -0
  132. package/dist/sankhyablocks/p-d82f6eda.entry.js +1 -0
  133. package/dist/sankhyablocks/p-dcb6aad1.entry.js +1 -0
  134. package/dist/sankhyablocks/p-e0fd9555.entry.js +1 -0
  135. package/dist/sankhyablocks/p-e8812d8a.js +1 -0
  136. package/dist/sankhyablocks/{p-32f0935f.js → p-f3d1c48e.js} +1 -1
  137. package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
  138. package/dist/types/components/snk-actions-button/subcomponents/snk-actions-form.d.ts +1 -1
  139. package/dist/types/components/snk-application/snk-application.d.ts +5 -2
  140. package/dist/types/components/snk-attach/{structure/crud-config-builder.d.ts → interfaces/ICrudConfig.d.ts} +1 -2
  141. package/dist/types/components/snk-attach/interfaces/TFetcherType.d.ts +1 -0
  142. package/dist/types/components/snk-attach/snk-attach.d.ts +28 -6
  143. package/dist/types/components/snk-attach/structure/builder/anexo-sistema-crud-config.builder.d.ts +2 -0
  144. package/dist/types/components/snk-attach/structure/builder/attach-crud-config.builder.d.ts +31 -0
  145. package/dist/types/components/snk-attach/structure/{taskbar-builder.d.ts → builder/taskbar-builder.d.ts} +1 -1
  146. package/dist/types/components/snk-attach/structure/fetcher/facade/fetcher.facade.d.ts +11 -0
  147. package/dist/types/components/snk-attach/structure/fetcher/factory/anexo-sistema-data-unit.factory.d.ts +17 -0
  148. package/dist/types/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.d.ts +15 -0
  149. package/dist/types/components/snk-attach/structure/index.d.ts +6 -3
  150. package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +1 -0
  151. package/dist/types/components/snk-filter-bar/filter-modal/snk-filter-modal.d.ts +14 -1
  152. package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +11 -0
  153. package/dist/types/components/snk-filter-bar/utils/SnkFilterModalFactory.d.ts +5 -1
  154. package/dist/types/components/snk-grid/snk-grid.d.ts +1 -0
  155. package/dist/types/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.d.ts +2 -0
  156. package/dist/types/components/snk-taskbar/subcomponents/field-search.d.ts +1 -0
  157. package/dist/types/components.d.ts +70 -13
  158. package/dist/types/lib/@types/index.d.ts +2 -1
  159. package/dist/types/lib/configs/ConfigStorage.d.ts +4 -0
  160. package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +1 -1
  161. package/dist/types/lib/http/data-fetcher/fetchers/{attach-fetcher.d.ts → AttachFetcher/anexo-sistema-fetcher.d.ts} +3 -2
  162. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.d.ts +11 -0
  163. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.d.ts +8 -0
  164. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/index.d.ts +3 -0
  165. package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.d.ts +2 -1
  166. package/dist/types/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.d.ts +1 -0
  167. package/dist/types/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.d.ts +3 -1
  168. package/dist/types/lib/index.d.ts +1 -1
  169. package/package.json +8 -6
  170. package/dist/cjs/pesquisa-fetcher-ef050a47.js +0 -167
  171. package/dist/esm/pesquisa-fetcher-dd3ca0a5.js +0 -165
  172. package/dist/sankhyablocks/p-145c4434.js +0 -1
  173. package/dist/sankhyablocks/p-17dda7a2.entry.js +0 -1
  174. package/dist/sankhyablocks/p-19f51c6b.entry.js +0 -11
  175. package/dist/sankhyablocks/p-311c6173.entry.js +0 -1
  176. package/dist/sankhyablocks/p-4396d1a6.js +0 -56
  177. package/dist/sankhyablocks/p-44e894af.entry.js +0 -1
  178. package/dist/sankhyablocks/p-4775a293.entry.js +0 -1
  179. package/dist/sankhyablocks/p-4b0ea83f.entry.js +0 -1
  180. package/dist/sankhyablocks/p-5534e08c.js +0 -1
  181. package/dist/sankhyablocks/p-78777ae0.entry.js +0 -1
  182. package/dist/sankhyablocks/p-9c3229fc.entry.js +0 -1
  183. package/dist/sankhyablocks/p-a037f5b4.entry.js +0 -1
  184. package/dist/sankhyablocks/p-a702a1a2.js +0 -60
  185. package/dist/sankhyablocks/p-c259545b.entry.js +0 -1
  186. package/dist/sankhyablocks/p-d1677df0.entry.js +0 -1
  187. package/dist/sankhyablocks/p-d9bb09b3.js +0 -6
  188. package/dist/sankhyablocks/p-dd6a8377.js +0 -1
  189. package/dist/sankhyablocks/p-e138e7d4.entry.js +0 -1
  190. package/dist/sankhyablocks/p-e1b29d4c.entry.js +0 -1
  191. package/dist/types/components/snk-attach/structure/data-unit-builder.d.ts +0 -15
  192. /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDelete.js → components/snk-attach/interfaces/ICrudConfig.js} +0 -0
  193. /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDownloadKey.js → components/snk-attach/interfaces/TFetcherType.js} +0 -0
  194. /package/dist/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.js +0 -0
  195. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDelete.d.ts +0 -0
  196. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDownloadKey.d.ts +0 -0
  197. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.d.ts +0 -0
@@ -4,14 +4,13 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
7
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
8
8
  require('./DataFetcher-ba94ed5b.js');
9
- require('./pesquisa-fetcher-ef050a47.js');
10
- const index$1 = require('./index-0e663819.js');
11
- require('./ISave-d68ce3cd.js');
9
+ require('./pesquisa-fetcher-7a08d110.js');
10
+ const index$1 = require('./index-0922807b.js');
11
+ require('./ISave-e91b70a7.js');
12
12
  require('@sankhyalabs/ezui/dist/collection/utils/constants');
13
13
  require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
14
- require('./dataunit-fetcher-bdaf9482.js');
15
14
  require('./PreloadManager-84466da6.js');
16
15
  require('./filter-item-type.enum-a7ffdaa6.js');
17
16
  require('./form-config-fetcher-df043d3d.js');
@@ -298,7 +297,7 @@ const SnkCrud = class {
298
297
  return;
299
298
  }
300
299
  this._snkDataUnit.ignoreSaveMessage = this._currentViewMode === constants.VIEW_MODE.GRID;
301
- return (index.h(index.Host, null, index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, index.h("stack-item", null, index.h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID }, index.h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkGridHeader" }), index.h("slot", { name: "SnkGridFooter" }), index.h("slot", { name: "SnkGridTaskBar" }))), index.h("stack-item", null, index.h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(constants.VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId }, index.h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkFormTaskBar" }))), index.h("stack-item", null, index.h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), index.h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), index.h("div", { id: `${this.customContainerId}` }, index.h("slot", { name: "SnkConfigContainerSlot" }), index.h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
300
+ return (index.h(index.Host, null, index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, index.h("stack-item", null, index.h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID }, index.h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkGridHeader" }), index.h("slot", { name: "SnkGridFooter" }), index.h("slot", { name: "SnkGridTaskBar" }))), index.h("stack-item", null, index.h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(constants.VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId }, index.h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkFormTaskBar" }))), index.h("stack-item", null, index.h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), index.h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), index.h("div", { id: `${this.customContainerId}` }, index.h("slot", { name: "SnkConfigContainerSlot" }), index.h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
302
301
  }
303
302
  get _element() { return index.getElement(this); }
304
303
  static get watchers() { return {
@@ -5,13 +5,13 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index$1 = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const utils = require('@sankhyalabs/ezui/dist/collection/utils');
8
- const index = require('./index-0e663819.js');
8
+ const index = require('./index-0922807b.js');
9
9
  const constants = require('./constants-35ddd366.js');
10
10
  const DataFetcher = require('./DataFetcher-ba94ed5b.js');
11
- const snkDataUnit = require('./snk-data-unit-1bc69073.js');
11
+ const snkDataUnit = require('./snk-data-unit-82c08a8c.js');
12
12
  require('./PrintUtils-bcaeb82f.js');
13
13
  require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
14
- require('./SnkMessageBuilder-7293d0ad.js');
14
+ require('./SnkMessageBuilder-e7dcf408.js');
15
15
 
16
16
  class ItemBuilder {
17
17
  constructor(getMessage, selectedNumber) {
@@ -3,7 +3,7 @@
3
3
  const index = require('./index-f9e81701.js');
4
4
  const core = require('@sankhyalabs/core');
5
5
  const utils = require('@sankhyalabs/ezui/dist/collection/utils');
6
- const SnkMessageBuilder = require('./SnkMessageBuilder-7293d0ad.js');
6
+ const SnkMessageBuilder = require('./SnkMessageBuilder-e7dcf408.js');
7
7
 
8
8
  const SnkDataUnit = class {
9
9
  constructor(hostRef) {
@@ -2,11 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const snkDataUnit = require('./snk-data-unit-1bc69073.js');
5
+ const snkDataUnit = require('./snk-data-unit-82c08a8c.js');
6
6
  require('./index-f9e81701.js');
7
7
  require('@sankhyalabs/core');
8
8
  require('@sankhyalabs/ezui/dist/collection/utils');
9
- require('./SnkMessageBuilder-7293d0ad.js');
9
+ require('./SnkMessageBuilder-e7dcf408.js');
10
10
 
11
11
 
12
12
 
@@ -4,23 +4,22 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
- const SnkFormConfigManager = require('./SnkFormConfigManager-467907f6.js');
7
+ const SnkFormConfigManager = require('./SnkFormConfigManager-71c4768e.js');
8
8
  const form = require('@sankhyalabs/ezui/dist/collection/utils/form');
9
9
  require('./DataFetcher-ba94ed5b.js');
10
- require('./pesquisa-fetcher-ef050a47.js');
11
- const index$1 = require('./index-0e663819.js');
12
- require('./ISave-d68ce3cd.js');
10
+ require('./pesquisa-fetcher-7a08d110.js');
11
+ const index$1 = require('./index-0922807b.js');
12
+ require('./ISave-e91b70a7.js');
13
13
  require('@sankhyalabs/ezui/dist/collection/utils/constants');
14
14
  require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
15
- require('./dataunit-fetcher-bdaf9482.js');
16
15
  require('./PreloadManager-84466da6.js');
17
16
  require('./filter-item-type.enum-a7ffdaa6.js');
18
17
  require('./form-config-fetcher-df043d3d.js');
19
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
18
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
20
19
  const constants = require('./constants-35ddd366.js');
21
- const snkGuidesViewer = require('./snk-guides-viewer-9342bca1.js');
22
- const SnkMessageBuilder = require('./SnkMessageBuilder-7293d0ad.js');
23
- require('./ConfigStorage-0d507a8f.js');
20
+ const snkGuidesViewer = require('./snk-guides-viewer-546509df.js');
21
+ const SnkMessageBuilder = require('./SnkMessageBuilder-e7dcf408.js');
22
+ require('./ConfigStorage-302bbbd4.js');
24
23
  require('./PrintUtils-bcaeb82f.js');
25
24
  require('./ResourceIDUtils-5ff86aa7.js');
26
25
  require('@sankhyalabs/ezui/dist/collection/components/ez-grid/utils');
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index$1 = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const EzScrollDirection = require('@sankhyalabs/ezui/dist/collection/components/ez-scroller/EzScrollDirection');
8
- const ConfigStorage = require('./ConfigStorage-0d507a8f.js');
8
+ const ConfigStorage = require('./ConfigStorage-302bbbd4.js');
9
9
  const DataType = require('@sankhyalabs/core/dist/dataunit/metadata/DataType');
10
10
  const filterItemType_enum = require('./filter-item-type.enum-a7ffdaa6.js');
11
11
  const index = require('./index-c5771aba.js');
@@ -208,13 +208,14 @@ function buildPersonalized(item) {
208
208
  }
209
209
 
210
210
  class SnkFilterModalFactory {
211
- constructor({ filterConfig, configName, onComplete, getMessage, onAddPersonalizedFilter, onEditPersonalizedFilter }) {
211
+ constructor({ filterConfig, configName, onComplete, getMessage, onAddPersonalizedFilter, onEditPersonalizedFilter, onDeletePersonalizedFilter }) {
212
212
  this._filterConfig = filterConfig;
213
213
  this._configName = configName;
214
214
  this._onComplete = onComplete;
215
215
  this._getMessage = getMessage;
216
216
  this._addPersonalizedFilterFn = onAddPersonalizedFilter;
217
217
  this._editPersonalizedFilterFn = onEditPersonalizedFilter;
218
+ this._onDeletePersonalizedFilter = onDeletePersonalizedFilter;
218
219
  }
219
220
  applyFilters(newFilterConfig) {
220
221
  this._onComplete(newFilterConfig);
@@ -230,6 +231,7 @@ class SnkFilterModalFactory {
230
231
  filterModal.closeModal = () => this._closeModal();
231
232
  filterModal.addPersonalizedFilter = () => this._addPersonalizedFilterFn();
232
233
  filterModal.editPersonalizedFilter = (id) => this._editPersonalizedFilterFn(id);
234
+ filterModal.deletePersonalizedFilter = (filter, configName) => this._onDeletePersonalizedFilter(filter, configName);
233
235
  return filterModal;
234
236
  }
235
237
  async showModal() {
@@ -320,7 +322,7 @@ const SnkFilterBar = class {
320
322
  * Faz o recarregamento da filterbar buscando o state no servidor.
321
323
  */
322
324
  async reload() {
323
- this.loadConfigFromStorage();
325
+ this.loadConfigFromStorage(true);
324
326
  }
325
327
  /**
326
328
  * Retorna um item de filtro pelo ID.
@@ -360,6 +362,23 @@ const SnkFilterBar = class {
360
362
  this.updateFilter(filterItem);
361
363
  return Promise.resolve();
362
364
  }
365
+ /**
366
+ * Remove um item de filtro.
367
+ *
368
+ * @param filterID - ID do a ser adicionado
369
+ *
370
+ * @returns {Promise<SnkFilterItemConfig|undefined>} - Retorna o item de filtro removido, ou undefined caso não encontrado.
371
+ */
372
+ async removeFilterItem(filterID) {
373
+ const itemIndex = this.filterConfig.findIndex(item => item.id === filterID);
374
+ if (itemIndex == -1) {
375
+ console.warn("[SnkFilterBar.removeFilterItem] FilterItem não encontrado");
376
+ return Promise.resolve(undefined);
377
+ }
378
+ const itemToRemove = this.filterConfig[itemIndex];
379
+ this.filterConfig = this.filterConfig.filter(item => item.id !== filterID);
380
+ return Promise.resolve(itemToRemove);
381
+ }
363
382
  componentDidLoad() {
364
383
  if (this._element) {
365
384
  const dataInfo = { dataUnit: this.dataUnit };
@@ -510,7 +529,10 @@ const SnkFilterBar = class {
510
529
  loadPermitions() {
511
530
  this._application.isUserSup().then(value => this.allowDefault = value);
512
531
  }
513
- loadConfigFromStorage() {
532
+ async loadConfigFromStorage(clearCache) {
533
+ if (clearCache) {
534
+ await ConfigStorage.ConfigStorage.deleteFilterBarConfigCache(this.configName, this.resourceID);
535
+ }
514
536
  return new Promise(accept => {
515
537
  ConfigStorage.ConfigStorage.loadFilterBarConfig(this.configName, this.resourceID, { contextURI: this.dataUnit.name })
516
538
  .then((filters) => {
@@ -567,7 +589,8 @@ const SnkFilterBar = class {
567
589
  onComplete: callbackOnApplyFilter,
568
590
  getMessage: (key, props) => this.getMessage(key, props),
569
591
  onAddPersonalizedFilter: () => this.addPersonalizedFilter(),
570
- onEditPersonalizedFilter: (id) => this.editPersonalizedFilter(id)
592
+ onEditPersonalizedFilter: (id) => this.editPersonalizedFilter(id),
593
+ onDeletePersonalizedFilter: (filter, configName) => this.deletePersonalizedFilter(filter, filterItemType_enum.FilterItemType.PERSONALIZED, configName),
571
594
  };
572
595
  this._filterModalFactory = new SnkFilterModalFactory(factoryParams);
573
596
  await this._filterModalFactory.showModal();
@@ -585,6 +608,11 @@ const SnkFilterBar = class {
585
608
  this.showPersonalizedFilter = true;
586
609
  this.personalizedFilterId = id;
587
610
  }
611
+ deletePersonalizedFilter(filter, filterItemType, configName) {
612
+ if (filterItemType === filterItemType_enum.FilterItemType.PERSONALIZED) {
613
+ ConfigStorage.ConfigStorage.removePersonalizedFilter(filter, this.resourceID, configName);
614
+ }
615
+ }
588
616
  handleHidePersonalizedFilter(reloadFilterBar) {
589
617
  if (reloadFilterBar) {
590
618
  this.loadConfigFromStorage().then(() => {
@@ -292,14 +292,60 @@ const SnkFilterItem = class {
292
292
  }
293
293
  return this.hasActiveValue(this.config);
294
294
  }
295
+ onEzClick() {
296
+ console.log("onEzClick");
297
+ }
295
298
  render() {
296
299
  const leftIcon = this.getLeftIconName();
297
- return (index.h(index.Host, null, index.h("ez-chip", { id: this.config.id, ref: ref => this._chipElement = ref, label: this.getLabel(), value: this.getEnabledChip() }, leftIcon ? index.h("ez-icon", { ref: ref => this._leftIconElement = ref, iconName: leftIcon, class: "ez-padding-right--small", slot: "leftIcon" }) : undefined, index.h("ez-icon", { ref: ref => this._rightIconElement = ref, iconName: this.getRightIconName(), class: "ez-padding-left--small", slot: "rightIcon", id: "removeFilter" })), index.h("section", { class: "ez-margin-top--small sc-snk-filter-bar snk-filter__popover-container", ref: elem => this._popoverContainer = elem }, index.h("snk-filter-detail", { config: this.config, getMessage: this.getMessage, class: "sc-snk-filter-bar snk-filter__popover ez-padding--small ez-elevation--16", ref: elem => this._popover = elem, key: this.config.id, "data-element-id": this._idSnkFilterDetail }))));
300
+ return (index.h(index.Host, null, index.h("ez-chip", { id: this.config.id, ref: ref => this._chipElement = ref, label: this.getLabel(), value: this.getEnabledChip() }, leftIcon ? index.h("ez-icon", { ref: ref => this._leftIconElement = ref, iconName: leftIcon, class: "ez-padding-right--small", slot: "leftIcon" }) : undefined, index.h("ez-icon", { ref: ref => this._rightIconElement = ref, iconName: this.getRightIconName(), class: "ez-padding-left--small", slot: "rightIcon", id: "removeFilter" })), index.h("ez-split-button", { label: "Split Button", class: "ez-button--primary", mode: "label-icon", iconName: "acao", size: "small", onEzClick: this.onEzClick,
301
+ //onclick={this.onEzClick}
302
+ items: items }), index.h("section", { class: "ez-margin-top--small sc-snk-filter-bar snk-filter__popover-container", ref: elem => this._popoverContainer = elem }, index.h("snk-filter-detail", { config: this.config, getMessage: this.getMessage, class: "sc-snk-filter-bar snk-filter__popover ez-padding--small ez-elevation--16", ref: elem => this._popover = elem, key: this.config.id, "data-element-id": this._idSnkFilterDetail }))));
298
303
  }
299
304
  get _filterItemElement() { return index.getElement(this); }
300
305
  static get watchers() { return {
301
306
  "detailIsVisible": ["observeDetailIsVisible"]
302
307
  }; }
303
308
  };
309
+ const items = [
310
+ {
311
+ id: "1",
312
+ label: "Emitir NFe",
313
+ type: "item"
314
+ },
315
+ {
316
+ id: "2",
317
+ label: "Cancelar NFe",
318
+ type: "item"
319
+ },
320
+ {
321
+ id: "3",
322
+ label: "Exportar NFe",
323
+ type: "item",
324
+ children: [
325
+ {
326
+ id: "4",
327
+ label: "Danfe PDF",
328
+ type: "item",
329
+ children: [
330
+ {
331
+ id: "6",
332
+ label: "Modo retrato",
333
+ type: "item"
334
+ },
335
+ {
336
+ id: "7",
337
+ label: "Modo paisagem",
338
+ type: "item"
339
+ }
340
+ ]
341
+ },
342
+ {
343
+ id: "5",
344
+ label: "XML",
345
+ type: "item"
346
+ }
347
+ ]
348
+ }
349
+ ];
304
350
 
305
351
  exports.snk_filter_item = SnkFilterItem;
@@ -6,7 +6,7 @@ const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const filterItemType_enum = require('./filter-item-type.enum-a7ffdaa6.js');
8
8
  const presentationMode = require('./presentationMode-52ec3bdd.js');
9
- const ConfigStorage = require('./ConfigStorage-0d507a8f.js');
9
+ const ConfigStorage = require('./ConfigStorage-302bbbd4.js');
10
10
  const filterType_enum = require('./filter-type.enum-b14ce507.js');
11
11
  require('./form-config-fetcher-df043d3d.js');
12
12
  require('./DataFetcher-ba94ed5b.js');
@@ -56,7 +56,6 @@ const SnkFilterModalItem = class {
56
56
  buildSnkFilterPersonalizedProps() {
57
57
  return {
58
58
  tag: "snk-personalized-filter-editor", props: {
59
- onDeleteFilter: (event) => this.handleDeleteFilter(event.detail, filterItemType_enum.FilterItemType.PERSONALIZED),
60
59
  onEditFilter: (event) => this.editPersonalizedFilter.emit(event.detail),
61
60
  onAddFilter: () => this.addPersonalizedFilter.emit(),
62
61
  }
@@ -24,6 +24,14 @@ const SnkFilterModal = class {
24
24
  this.closeModal = undefined;
25
25
  this.addPersonalizedFilter = undefined;
26
26
  this.editPersonalizedFilter = undefined;
27
+ this.deletePersonalizedFilter = undefined;
28
+ this.filtersToDelete = [];
29
+ }
30
+ /**
31
+ * Emitido quando um filtro personalizado é deletado.
32
+ */
33
+ deletePersonalizedFilterListener(event) {
34
+ this.filtersToDelete.push(event.detail);
27
35
  }
28
36
  getCustomMessage(key, params) {
29
37
  var _a;
@@ -91,6 +99,12 @@ const SnkFilterModal = class {
91
99
  if (this.isValidCustomFilter(filterPersonalized)) {
92
100
  this.applyFilters(this.filters);
93
101
  }
102
+ if (this.filtersToDelete.length > 0) {
103
+ this.filtersToDelete.forEach(filter => {
104
+ this.deletePersonalizedFilter(filter, this.configName);
105
+ });
106
+ this.filtersToDelete = [];
107
+ }
94
108
  }
95
109
  isValidCustomFilter(filterPersonalized) {
96
110
  const isValid = PersonalizedFilterUtils.PersonalizedFilterUtils.validateVariableValues(filterPersonalized);
@@ -4,9 +4,9 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
- const SnkFormConfigManager = require('./SnkFormConfigManager-467907f6.js');
7
+ const SnkFormConfigManager = require('./SnkFormConfigManager-71c4768e.js');
8
8
  const ResourceIDUtils = require('./ResourceIDUtils-5ff86aa7.js');
9
- require('./ConfigStorage-0d507a8f.js');
9
+ require('./ConfigStorage-302bbbd4.js');
10
10
  require('./form-config-fetcher-df043d3d.js');
11
11
  require('./DataFetcher-ba94ed5b.js');
12
12
  require('./PrintUtils-bcaeb82f.js');
@@ -6,7 +6,7 @@ const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const utils = require('@sankhyalabs/ezui/dist/collection/utils');
8
8
  const CheckMode = require('@sankhyalabs/ezui/dist/collection/components/ez-check/CheckMode');
9
- const ConfigStorage = require('./ConfigStorage-0d507a8f.js');
9
+ const ConfigStorage = require('./ConfigStorage-302bbbd4.js');
10
10
  const constants = require('./constants-35ddd366.js');
11
11
  require('./form-config-fetcher-df043d3d.js');
12
12
  require('./DataFetcher-ba94ed5b.js');
@@ -5,9 +5,9 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const UnitMetadata = require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
8
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
9
- const ConfigStorage = require('./ConfigStorage-0d507a8f.js');
10
- const index$1 = require('./index-0e663819.js');
8
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
9
+ const ConfigStorage = require('./ConfigStorage-302bbbd4.js');
10
+ const index$1 = require('./index-0922807b.js');
11
11
  const fieldSearch = require('./field-search-f56aa7d6.js');
12
12
  const index$2 = require('./index-102ba62d.js');
13
13
  const SnkMultiSelectionListDataSource = require('./SnkMultiSelectionListDataSource-ba5838c2.js');
@@ -30,14 +30,21 @@ const SnkGrid = class {
30
30
  this._topTaskbarProcessor = new fieldSearch.TaskbarProcessor({
31
31
  "snkGridTopTaskbar.regular": ["FORM_MODE", "CONFIGURATOR", "INSERT"],
32
32
  "snkGridTopTaskbar.regular.secondary": ["FORM_MODE", "CONFIGURATOR", "INSERT"],
33
+ "snkGridTopTaskbar.regular.singleTaskbar": [],
33
34
  "snkGridTopTaskbar.finish_edition": ["CANCEL", "SAVE"],
34
- "snkGridTopTaskbar.finish_edition.secondary": []
35
+ "snkGridTopTaskbar.finish_edition.secondary": [],
36
+ "snkGridTopTaskbar.finish_edition.singleTaskbar": [],
35
37
  });
36
38
  this._headerTaskbarProcessor = new fieldSearch.TaskbarProcessor({
37
39
  "snkGridHeaderTaskbar.unselected": ["REFRESH", "DATA_EXPORTER", "ACTIONS_BUTTON", "MORE_OPTIONS"],
38
40
  "snkGridHeaderTaskbar.selected": ["UPDATE", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "ATTACH", "REFRESH", "DATA_EXPORTER", "ACTIONS_BUTTON"],
39
41
  "snkGridHeaderTaskbar.detail.unselected": ["REFRESH", "MORE_OPTIONS"],
40
- "snkGridHeaderTaskbar.detail.selected": ["UPDATE", "ATTACH", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "REFRESH"]
42
+ "snkGridHeaderTaskbar.detail.selected": ["UPDATE", "ATTACH", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "REFRESH"],
43
+ "snkGridHeaderTaskbar.singleTaskbar.unselected": ["INSERT", "FORM_MODE", "CONFIGURATOR", "REFRESH", "DATA_EXPORTER", "ACTIONS_BUTTON", "MORE_OPTIONS"],
44
+ "snkGridHeaderTaskbar.singleTaskbar.selected": ["UPDATE", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "ATTACH", "FORM_MODE", "CONFIGURATOR", "REFRESH", "DATA_EXPORTER", "ACTIONS_BUTTON"],
45
+ "snkGridHeaderTaskbar.singleTaskbar.detail.unselected": ["INSERT", "FORM_MODE", "CONFIGURATOR", "REFRESH", "MORE_OPTIONS"],
46
+ "snkGridHeaderTaskbar.singleTaskbar.detail.selected": ["UPDATE", "ATTACH", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "FORM_MODE", "CONFIGURATOR", "REFRESH"],
47
+ "snkGridHeaderTaskbar.singleTaskbar.finish_edition": ["CANCEL", "SAVE"]
41
48
  });
42
49
  this._dataUnit = undefined;
43
50
  this._dataState = undefined;
@@ -318,30 +325,46 @@ const SnkGrid = class {
318
325
  return invisibleButtons;
319
326
  }
320
327
  componentWillRender() {
321
- var _a;
322
328
  const invisibleButtons = this.getInvisibleButtons();
323
- const hasSelectedRecord = this._dataState && !!((_a = this._dataState.selectionInfo) === null || _a === void 0 ? void 0 : _a.length);
324
- let headerTaskbarId;
325
- if (hasSelectedRecord) {
326
- headerTaskbarId = this.isDetail ? "snkGridHeaderTaskbar.detail.selected" : "snkGridHeaderTaskbar.selected";
327
- }
328
- else {
329
- headerTaskbarId = this.isDetail ? "snkGridHeaderTaskbar.detail.unselected" : "snkGridHeaderTaskbar.unselected";
330
- }
331
- this._headerTaskbarProcessor.process(headerTaskbarId, this.taskbarManager, this._dataState, this.getHeaderDisabledButtons(), invisibleButtons);
329
+ this._headerTaskbarProcessor.process(this.getHeaderTaskbarId(), this.taskbarManager, this._dataState, this.getHeaderDisabledButtons(), invisibleButtons);
332
330
  this._topTaskbarProcessor.process(this.getTopTaskBarId(), this.taskbarManager, this._dataState, undefined, invisibleButtons);
333
331
  this.dataExporterProviderStore();
334
332
  }
333
+ getHeaderTaskbarId() {
334
+ var _a, _b;
335
+ const hasSelectedRecord = this._dataState && !!((_a = this._dataState.selectionInfo) === null || _a === void 0 ? void 0 : _a.length);
336
+ const taskbarIdPrefixLookup = {
337
+ primary: this.isDetail ? "snkGridHeaderTaskbar.detail" : "snkGridHeaderTaskbar",
338
+ secondary: this.isDetail ? "snkGridHeaderTaskbar.detail" : "snkGridHeaderTaskbar",
339
+ singleTaskbar: this.isDetail ? "snkGridHeaderTaskbar.singleTaskbar.detail" : "snkGridHeaderTaskbar.singleTaskbar"
340
+ };
341
+ const taskbarIdPrefix = taskbarIdPrefixLookup[this.presentationMode];
342
+ let headerTaskbarId = hasSelectedRecord ? `${taskbarIdPrefix}.selected` : `${taskbarIdPrefix}.unselected`;
343
+ if (((_b = this._dataState) === null || _b === void 0 ? void 0 : _b.isDirty) && this.presentationMode === index$1.PresentationMode.SINGLE_TASKBAR) {
344
+ headerTaskbarId = "snkGridHeaderTaskbar.singleTaskbar.finish_edition";
345
+ }
346
+ return headerTaskbarId;
347
+ }
335
348
  getTopTaskBarId() {
336
349
  var _a;
337
- const sufix = this.presentationMode === index$1.PresentationMode.SECONDARY ? ".secondary" : "";
350
+ const suffixLookup = {
351
+ primary: "",
352
+ secondary: ".secondary",
353
+ singleTaskbar: ".singleTaskbar"
354
+ };
355
+ const sufix = suffixLookup[this.presentationMode];
338
356
  if ((_a = this._dataState) === null || _a === void 0 ? void 0 : _a.isDirty) {
339
357
  return `snkGridTopTaskbar.finish_edition${sufix}`;
340
358
  }
341
359
  return `snkGridTopTaskbar.regular${sufix}`;
342
360
  }
343
361
  getPrimaryButton() {
344
- return this.presentationMode === index$1.PresentationMode.PRIMARY ? "INSERT" : "";
362
+ const primaryButtonLookup = {
363
+ primary: "INSERT",
364
+ secondary: "",
365
+ singleTaskbar: "INSERT"
366
+ };
367
+ return primaryButtonLookup[this.presentationMode];
345
368
  }
346
369
  getColumnSearch(actionButton, item) {
347
370
  if (this._columnSearch != undefined) {
@@ -392,7 +415,7 @@ const SnkGrid = class {
392
415
  return undefined;
393
416
  }
394
417
  return (index.h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, index.h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, this._showSnkFilterBar &&
395
- index.h(index.Fragment, null, index.h("snk-filter-bar", { ref: (ref) => this._snkFilterBar = ref, dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName, messagesBuilder: this.messagesBuilder, resourceID: this.resourceID, onConfigUpdated: evt => this.handleFilterConfigUpdated(evt.detail) }), index.h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" })), index.h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, messagesBuilder: this.messagesBuilder, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.topTaskbarCustomSlotId }, index.h("slot", { name: this.topTaskbarCustomSlotId }))), index.h("ez-grid", { ref: ref => this._grid = ref, class: (this.presentationMode === index$1.PresentationMode.SECONDARY ? "snk-grid-container__without-shadow " : "") + "snk-grid__table", "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.gridConfigChangeHandler(evt); }, onEzDoubleClick: (evt) => this.gridDoubleClick.emit(evt.detail), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, columnfilterDataSource: this.columnFilterDataSource, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, recordsValidator: this.recordsValidator, canEdit: this.canEdit }, index.h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, messagesBuilder: this.messagesBuilder, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.getActionsList(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.gridHeaderCustomSlotId }, index.h("slot", { name: this.gridHeaderCustomSlotId }))), index.h("div", { class: "ez-col ez-col--sd-12" }, index.h("slot", { name: "SnkGridFooter" })), index.h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, index.h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(core.ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), application: this._application, selectedIndex: 0, configName: this.configName, onConfigChange: (evt) => this.modalConfigChangeHandler(evt), onConfigCancel: () => this.closeGridConfig(), resourceID: this.resourceID }))));
418
+ index.h(index.Fragment, null, index.h("snk-filter-bar", { ref: (ref) => this._snkFilterBar = ref, dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName, messagesBuilder: this.messagesBuilder, resourceID: this.resourceID, onConfigUpdated: evt => this.handleFilterConfigUpdated(evt.detail) }), index.h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" })), index.h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, messagesBuilder: this.messagesBuilder, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.topTaskbarCustomSlotId }, index.h("slot", { name: this.topTaskbarCustomSlotId }))), index.h("ez-grid", { ref: ref => this._grid = ref, class: (this.presentationMode === index$1.PresentationMode.SECONDARY ? "snk-grid-container__without-shadow " : "") + "snk-grid__table", "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.gridConfigChangeHandler(evt); }, onEzDoubleClick: (evt) => this.gridDoubleClick.emit(evt.detail), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, columnfilterDataSource: this.columnFilterDataSource, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, recordsValidator: this.recordsValidator, canEdit: this.canEdit }, index.h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, messagesBuilder: this.messagesBuilder, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, presentationMode: this.presentationMode, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.getActionsList(), primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.gridHeaderCustomSlotId }, index.h("slot", { name: this.gridHeaderCustomSlotId }))), index.h("div", { class: "ez-col ez-col--sd-12" }, index.h("slot", { name: "SnkGridFooter" })), index.h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, index.h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(core.ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), application: this._application, selectedIndex: 0, configName: this.configName, onConfigChange: (evt) => this.modalConfigChangeHandler(evt), onConfigCancel: () => this.closeGridConfig(), resourceID: this.resourceID }))));
396
419
  }
397
420
  get _element() { return index.getElement(this); }
398
421
  };
@@ -2,18 +2,17 @@
2
2
 
3
3
  const index = require('./index-f9e81701.js');
4
4
  const core = require('@sankhyalabs/core');
5
- const SnkFormConfigManager = require('./SnkFormConfigManager-467907f6.js');
5
+ const SnkFormConfigManager = require('./SnkFormConfigManager-71c4768e.js');
6
6
  const form = require('@sankhyalabs/ezui/dist/collection/utils/form');
7
7
  const fieldSearch = require('./field-search-f56aa7d6.js');
8
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
8
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
9
9
  const constants = require('./constants-35ddd366.js');
10
10
  require('./DataFetcher-ba94ed5b.js');
11
- require('./pesquisa-fetcher-ef050a47.js');
12
- const index$1 = require('./index-0e663819.js');
13
- require('./ISave-d68ce3cd.js');
11
+ require('./pesquisa-fetcher-7a08d110.js');
12
+ const index$1 = require('./index-0922807b.js');
13
+ require('./ISave-e91b70a7.js');
14
14
  require('@sankhyalabs/ezui/dist/collection/utils/constants');
15
15
  require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
16
- require('./dataunit-fetcher-bdaf9482.js');
17
16
  require('./PreloadManager-84466da6.js');
18
17
  require('./filter-item-type.enum-a7ffdaa6.js');
19
18
  require('./form-config-fetcher-df043d3d.js');
@@ -151,7 +150,7 @@ const SnkGuidesViewer = class {
151
150
  });
152
151
  this._guides = this._guides.map(guide => {
153
152
  if (guide.id === guideItem.id) {
154
- return Object.assign(Object.assign({}, guide), guideItem);
153
+ return Object.assign(Object.assign(Object.assign({}, guide), guideItem), (guideItem.children !== undefined ? {} : { children: undefined }));
155
154
  }
156
155
  return guide;
157
156
  });
@@ -2,11 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const snkGuidesViewer = require('./snk-guides-viewer-9342bca1.js');
5
+ const snkGuidesViewer = require('./snk-guides-viewer-546509df.js');
6
6
  require('./index-f9e81701.js');
7
7
  require('@sankhyalabs/core');
8
- require('./SnkFormConfigManager-467907f6.js');
9
- require('./ConfigStorage-0d507a8f.js');
8
+ require('./SnkFormConfigManager-71c4768e.js');
9
+ require('./ConfigStorage-302bbbd4.js');
10
10
  require('./form-config-fetcher-df043d3d.js');
11
11
  require('./DataFetcher-ba94ed5b.js');
12
12
  require('./PrintUtils-bcaeb82f.js');
@@ -14,17 +14,16 @@ require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
14
14
  require('./filter-item-type.enum-a7ffdaa6.js');
15
15
  require('@sankhyalabs/ezui/dist/collection/utils/form');
16
16
  require('./field-search-f56aa7d6.js');
17
- require('./taskbar-elements-b8c428a9.js');
18
- require('./index-0e663819.js');
17
+ require('./taskbar-elements-01b85b99.js');
18
+ require('./index-0922807b.js');
19
19
  require('./index-102ba62d.js');
20
20
  require('./constants-35ddd366.js');
21
- require('./pesquisa-fetcher-ef050a47.js');
22
- require('./ISave-d68ce3cd.js');
21
+ require('./pesquisa-fetcher-7a08d110.js');
23
22
  require('@sankhyalabs/ezui/dist/collection/utils/constants');
24
- require('./dataunit-fetcher-bdaf9482.js');
25
23
  require('./PreloadManager-84466da6.js');
26
24
  require('@sankhyalabs/ezui/dist/collection/components/ez-grid/utils');
27
25
  require('./ResourceIDUtils-5ff86aa7.js');
26
+ require('./ISave-e91b70a7.js');
28
27
  require('@sankhyalabs/core/dist/dataunit/DataUnit');
29
28
 
30
29
 
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const PersonalizedFilterUtils = require('./PersonalizedFilterUtils-0184ffbb.js');
8
- const ConfigStorage = require('./ConfigStorage-0d507a8f.js');
8
+ const ConfigStorage = require('./ConfigStorage-302bbbd4.js');
9
9
  const utils = require('@sankhyalabs/ezui/dist/collection/utils');
10
10
  const index$1 = require('./index-c5771aba.js');
11
11
  const index$2 = require('./index-102ba62d.js');
@@ -204,7 +204,7 @@ const SnkPersonalizedFilter = class {
204
204
  return personalizedFilter;
205
205
  }
206
206
  addFilterGroupCondition(personalizedFilter) {
207
- if (!personalizedFilter.assistent.operand) {
207
+ if (personalizedFilter.assistent && !personalizedFilter.assistent.operand) {
208
208
  personalizedFilter.assistent.operand = index$1.FilterGroupCondition.AND;
209
209
  }
210
210
  }
@@ -5,14 +5,13 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const constants = require('./constants-35ddd366.js');
8
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
8
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
9
9
  require('./DataFetcher-ba94ed5b.js');
10
- require('./pesquisa-fetcher-ef050a47.js');
11
- const index$1 = require('./index-0e663819.js');
12
- require('./ISave-d68ce3cd.js');
10
+ const pesquisaFetcher = require('./pesquisa-fetcher-7a08d110.js');
11
+ const index$1 = require('./index-0922807b.js');
12
+ require('./ISave-e91b70a7.js');
13
13
  require('@sankhyalabs/ezui/dist/collection/utils/constants');
14
14
  require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
15
- const dataunitFetcher = require('./dataunit-fetcher-bdaf9482.js');
16
15
  require('./PreloadManager-84466da6.js');
17
16
  require('./filter-item-type.enum-a7ffdaa6.js');
18
17
  require('./form-config-fetcher-df043d3d.js');
@@ -121,7 +120,7 @@ const SnkSimpleCrud = class {
121
120
  return this._currentViewMode === constants.VIEW_MODE.GRID ? "snkSimpleCrudTaskbar.grid_regular" : "snkSimpleCrudTaskbar.form_regular";
122
121
  }
123
122
  initInMemoryDataUnit() {
124
- this._inMemoryLoader = new dataunitFetcher.InMemoryLoader(this._metadata);
123
+ this._inMemoryLoader = new pesquisaFetcher.InMemoryLoader(this._metadata);
125
124
  this.dataUnit = this._inMemoryLoader.dataUnit;
126
125
  this.dataUnitReady.emit(this.dataUnit);
127
126
  }
@@ -305,7 +304,7 @@ const SnkSimpleCrud = class {
305
304
  }
306
305
  render() {
307
306
  var _a;
308
- return (index.h("snk-data-unit", { class: "simple-crud__container", dataUnit: this.dataUnit, useCancelConfirm: this.useCancelConfirm, onDataStateChange: evt => this.onDataStateChange(evt), onCancelEdition: this.handleCancelEdit.bind(this), onInsertionMode: () => this.goToView(constants.VIEW_MODE.FORM), onDataUnitReady: (evt) => this.dataUnitReady.emit(evt.detail), ignoreSaveMessage: this._currentViewMode === constants.VIEW_MODE.GRID, onMessagesBuilderUpdated: evt => this.messagesBuilder = evt.detail }, index.h("header", null, index.h("slot", { name: "snkSimpleCrudHeader" })), index.h("section", { class: "ez-box ez-box--shadow simple-crud__container-section" }, index.h("snk-taskbar", { class: "ez-box ez-box--shadow ez-padding--medium ez-margin-bottom--large", dataUnit: this.dataUnit, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-element-id": "grid_left", messagesBuilder: this.messagesBuilder, buttons: this._taskbarProcessor.buttons, actionsList: this.getActionsList(), disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, slot: "leftButtons", presentationMode: index$1.PresentationMode.SECONDARY }, index.h("slot", { name: "TASKBAR_CUSTOM_ELEMENTS" })), index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "simple-crud" }, index.h("stack-item", null, index.h("ez-grid", { ref: ref => this._grid = ref, dataUnit: this.dataUnit, config: this.gridConfig, "no-header": true, multipleSelection: this.multipleSelection, onEzDoubleClick: () => this.goToView(constants.VIEW_MODE.FORM), columnfilterDataSource: this.dataUnit.name.includes(dataunitFetcher.InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME)
307
+ return (index.h("snk-data-unit", { class: "simple-crud__container", dataUnit: this.dataUnit, useCancelConfirm: this.useCancelConfirm, onDataStateChange: evt => this.onDataStateChange(evt), onCancelEdition: this.handleCancelEdit.bind(this), onInsertionMode: () => this.goToView(constants.VIEW_MODE.FORM), onDataUnitReady: (evt) => this.dataUnitReady.emit(evt.detail), ignoreSaveMessage: this._currentViewMode === constants.VIEW_MODE.GRID, onMessagesBuilderUpdated: evt => this.messagesBuilder = evt.detail }, index.h("header", null, index.h("slot", { name: "snkSimpleCrudHeader" })), index.h("section", { class: "ez-box ez-box--shadow simple-crud__container-section" }, index.h("snk-taskbar", { class: "ez-box ez-box--shadow ez-padding--medium ez-margin-bottom--large", dataUnit: this.dataUnit, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-element-id": "grid_left", messagesBuilder: this.messagesBuilder, buttons: this._taskbarProcessor.buttons, actionsList: this.getActionsList(), disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, slot: "leftButtons", presentationMode: index$1.PresentationMode.SECONDARY }, index.h("slot", { name: "TASKBAR_CUSTOM_ELEMENTS" })), index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "simple-crud" }, index.h("stack-item", null, index.h("ez-grid", { ref: ref => this._grid = ref, dataUnit: this.dataUnit, config: this.gridConfig, "no-header": true, multipleSelection: this.multipleSelection, onEzDoubleClick: () => this.goToView(constants.VIEW_MODE.FORM), columnfilterDataSource: this.dataUnit.name.includes(pesquisaFetcher.InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME)
309
308
  ? undefined
310
309
  : this._multiSelectionListDataSource, useEnterLikeTab: this.useEnterLikeTab }, index.h("div", { slot: "footer" }, index.h("slot", { name: "snkSimpleCrudFooter" })))), index.h("stack-item", null, index.h("ez-form", { dataUnit: this.dataUnit, config: this.formConfig, fieldToFocus: this._fieldToGetFocus, onEzFormSetFields: (evt) => this.handleFormSetFields(evt.detail), onEzFormRequestClearFieldToFocus: this.clearFieldToFocusHandler.bind(this) }))))));
311
310
  }
@@ -5,8 +5,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
7
  const AuthorizationConfig = require('./AuthorizationConfig-79ffae4b.js');
8
- const taskbarElements = require('./taskbar-elements-b8c428a9.js');
9
- const index$1 = require('./index-0e663819.js');
8
+ const taskbarElements = require('./taskbar-elements-01b85b99.js');
9
+ const index$1 = require('./index-0922807b.js');
10
10
  require('./index-102ba62d.js');
11
11
 
12
12
  const snkTaskbarCss = ".sc-snk-taskbar-h{display:flex}";
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const index = require('./index-f9e81701.js');
4
- const index$2 = require('./index-0e663819.js');
4
+ const index$2 = require('./index-0922807b.js');
5
5
  const index$1 = require('./index-102ba62d.js');
6
6
 
7
7
  exports.TaskbarElement = void 0;