@zohodesk/library-platform 1.0.2 → 1.1.0-exp.1

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 (332) hide show
  1. package/es/bc/list-selection/Properties.js +21 -12
  2. package/es/bc/sort-by/Properties.js +20 -15
  3. package/es/bc/table-column-resizer/Properties.js +1 -1
  4. package/es/bc/zhttp/Properties.js +11 -1
  5. package/es/bc/zlist/Properties.js +12 -3
  6. package/es/cc/action-icon/Model.js +6 -2
  7. package/es/cc/action-icon/Properties.js +18 -0
  8. package/es/cc/action-location/Properties.js +54 -3
  9. package/es/cc/component/properties/PropertiesConverter.js +23 -0
  10. package/es/cc/fields/field/Properties.js +9 -1
  11. package/es/cc/fields/field/Types.js +16 -16
  12. package/es/cc/fields/multi-select/Properties.js +1 -1
  13. package/es/cc/fields/pick-list/Properties.js +1 -1
  14. package/es/cc/table-connected/Properties.js +49 -45
  15. package/es/cc/table-list/Properties.js +79 -318
  16. package/es/cc/table-list/model/RowModel.js +2 -4
  17. package/es/cc/table-list/row/Properties.js +3 -11
  18. package/es/desk-frameworks/table-connected/frameworks/TableConnectedView.js +10 -11
  19. package/es/library/behaviours/list-selection/adapters/gateways/Repository.js +1 -1
  20. package/es/library/behaviours/list-selection/adapters/gateways/Service.js +5 -5
  21. package/es/library/behaviours/sort-by/adapters/gateway/Repository.js +1 -1
  22. package/es/library/behaviours/sort-by/adapters/gateway/Service.js +1 -1
  23. package/es/library/behaviours/sort-by/{entities → domain/entities}/SortBy.js +1 -1
  24. package/es/library/behaviours/sort-by/frameworks/ui/SortByBehaviourFactory.js +2 -2
  25. package/es/library/behaviours/text-to-field-click/adapters/gateway/Repository.js +1 -1
  26. package/es/library/behaviours/text-to-field-click/{entities → domain/entities}/FieldEventConverter.js +1 -1
  27. package/es/library/behaviours/text-to-field-click/frameworks/ui/EventHandlersFactory.js +1 -1
  28. package/es/library/custom-component/adapters/gateways/event-manager/EventManager.js +1 -1
  29. package/es/library/custom-component/adapters/gateways/service/Service.js +6 -6
  30. package/es/library/custom-component/{usecases → applications}/entities-factory/BehavioursFactory.js +1 -1
  31. package/es/library/custom-component/{usecases → applications}/entities-factory/ComponentFactory.js +3 -3
  32. package/es/library/custom-component/{usecases → applications}/entities-factory/EventHandlersFactory.js +1 -1
  33. package/es/library/custom-component/{usecases → applications}/entities-factory/PropertiesFactory.js +9 -3
  34. package/es/library/custom-component/{usecases/interactors → applications/usecases}/UnmountUseCase.js +1 -1
  35. package/es/library/custom-component/{entities → domain/entities}/Component.js +36 -7
  36. package/es/library/custom-component/{entities → domain/entities}/DefaultAppendToActionPayload.js +2 -2
  37. package/es/library/custom-component/{entities → domain/entities}/Properties.js +4 -5
  38. package/es/library/custom-component/frameworks/ui/__testcases__/CreateCustomComponent.spec.js +106 -0
  39. package/es/library/dot/components/action-location/frameworks/ui/ActionComponentMapping.js +5 -0
  40. package/es/library/dot/components/action-location/frameworks/ui/ActionLocationView.js +8 -29
  41. package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRenderer.js +9 -0
  42. package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRendererView.js +37 -0
  43. package/es/library/dot/components/table-list/frameworks/ui/sub-components/Rows.js +3 -7
  44. package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/HeaderData.js +5 -3
  45. package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/Row.js +11 -7
  46. package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/RowActions.js +3 -0
  47. package/es/library/dot/legacy-to-new-arch/action-icon/{ActionIcon.js → frameworks/ui/ActionIcon.js} +2 -2
  48. package/es/library/dot/legacy-to-new-arch/action-icon/{ActionIconView.js → frameworks/ui/ActionIconView.js} +11 -5
  49. package/es/library/dot/legacy-to-new-arch/action-icon/frameworks/ui/css/ActionIcon.module.css +3 -0
  50. package/es/library/dot/legacy-to-new-arch/index.js +1 -1
  51. package/es/platform/zdata-broker/adapters/gateways/Repository.js +1 -1
  52. package/es/platform/zdata-broker/adapters/gateways/Service.js +5 -5
  53. package/es/platform/zdata-broker/adapters/gateways/TemplateHelpers.js +21 -0
  54. package/es/platform/zdata-broker/{usecases → applications}/entities-factory/APITemplatesFactory.js +2 -2
  55. package/es/platform/zdata-broker/{usecases → applications}/entities-factory/DataBrokerFactory.js +1 -1
  56. package/es/platform/zdata-broker/applications/interfaces/gateways/ITemplateHelpers.js +1 -0
  57. package/es/platform/zdata-broker/{entities → domain/entities}/DataBroker.js +3 -3
  58. package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/MetaData.js +1 -1
  59. package/es/platform/zfield/adapters/gateways/Repository.js +1 -1
  60. package/es/platform/zfield/adapters/gateways/Service.js +6 -6
  61. package/es/platform/zfield/{usecases → applications}/entities-factory/FieldsManagerBuilder.js +1 -1
  62. package/es/platform/zfield/applications/interfaces/input/FetchInputModel.js +2 -0
  63. package/es/platform/zfield/{entities → domain/entities}/fields-manager/AvailableFieldsManager.js +2 -2
  64. package/es/platform/zfield/{entities → domain/entities}/fields-manager/FieldsManager.js +3 -3
  65. package/es/platform/zfield/{entities → domain/entities}/fields-manager/SelectedFieldsManager.js +2 -2
  66. package/es/platform/zfield/{entities → domain/entities}/interfaces/MetaData.js +1 -1
  67. package/es/platform/zhttp/frameworks/ActionsHandlerFactory.js +1 -1
  68. package/es/platform/zhttp/frameworks/ZHttpBehaviourFactory.js +2 -1
  69. package/es/platform/zlist/adapters/gateways/Repository.js +1 -1
  70. package/es/platform/zlist/adapters/gateways/Service.js +10 -10
  71. package/es/platform/zlist/adapters/presenters/TableTranslator.js +2 -1
  72. package/es/platform/zlist/adapters/presenters/translators/Row.js +5 -1
  73. package/es/platform/zlist/adapters/presenters/translators/RowActionTranslator.js +18 -11
  74. package/es/platform/zlist/adapters/presenters/translators/RowsTranslator.js +3 -1
  75. package/es/platform/zlist/{usecases → applications}/entities-factory/ListFactory.js +1 -1
  76. package/es/platform/zlist/{entities → domain/entities}/List.js +3 -3
  77. package/es/platform/zrecord/adapters/gateways/Repository.js +1 -1
  78. package/es/platform/zrecord/adapters/gateways/Service.js +13 -13
  79. package/es/platform/zrecord/{usecases → applications}/entities-factory/RecordFactory.js +1 -1
  80. package/es/platform/zrecord/{usecases → applications}/entities-factory/RecordsManagerFactory.js +2 -2
  81. package/es/platform/zrecord/{entities → domain/entities}/DeleteMultipleRecordStrategy.js +1 -1
  82. package/es/platform/zrecord/{entities → domain/entities}/DeleteRecordStrategy.js +1 -1
  83. package/es/platform/zrecord/{entities → domain/entities}/GetRecordsStrategy.js +1 -1
  84. package/es/platform/zrecord/{entities → domain/entities}/RecordsManager.js +3 -3
  85. package/es/platform/zrecord/{entities → domain/entities}/UpdateRecordStrategy.js +1 -1
  86. package/es/platform/zrecord/domain/entities/interfaces/RecordModel.js +1 -0
  87. package/es/platform/zrecord/domain/entities/interfaces/RecordsModel.js +1 -0
  88. package/es/platform/zrecord/domain/entities/interfaces/StrategyMeta.js +1 -0
  89. package/package.json +10 -4
  90. package/es/cc/table-list/behaviour-properties/ResizerConfig.js +0 -18
  91. package/es/cc/table-list/behaviour-properties/SelectionConfig.js +0 -17
  92. package/es/cc/table-list/behaviour-properties/SortByConfig.js +0 -14
  93. package/es/cc/table-list/behaviour-properties/index.js +0 -3
  94. package/es/library/custom-component/entities/__tests__/Action.spec.js +0 -19
  95. package/es/library/custom-component/entities/__tests__/ActionHandlers.spec.js +0 -15
  96. package/es/library/custom-component/entities/__tests__/Behaviour.spec.js +0 -52
  97. package/es/library/custom-component/entities/__tests__/Component.spec.js +0 -109
  98. package/es/platform/zdata-broker/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
  99. package/es/platform/zfield/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
  100. package/es/platform/zfield/usecases/interfaces/input/FetchInputModel.js +0 -2
  101. /package/es/{library/behaviours/list-selection/entities/interfaces/IListItemSelection.js → cc/action-location/Action.js} +0 -0
  102. /package/es/{library/behaviours/list-selection/entities/interfaces/ListSelectionModel.js → cc/action-location/ActionLocation.js} +0 -0
  103. /package/es/{library/behaviours/list-selection/usecases/interfaces/UseCase.js → cc/table-list/data-types/RowAction.js} +0 -0
  104. /package/es/library/{custom-component/usecases → behaviours/list-selection/applications}/interfaces/UseCase.js +0 -0
  105. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/UseCaseDependencies.js +0 -0
  106. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  107. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  108. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/AllSelectionInputModel.js +0 -0
  109. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/DestructInputModel.js +0 -0
  110. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/InitializeInputModel.js +0 -0
  111. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/RangeSelectionInputModel.js +0 -0
  112. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/SelectionInputModel.js +0 -0
  113. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/output/BehaviourStateModel.js +0 -0
  114. /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
  115. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  116. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/AllItemSelection.js +0 -0
  117. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Destruct.js +0 -0
  118. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Initialize.js +0 -0
  119. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/ItemsSelection.js +0 -0
  120. /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/RangeSelection.js +0 -0
  121. /package/es/library/behaviours/list-selection/{entities → domain/entities}/ListItemSelection.js +0 -0
  122. /package/es/library/behaviours/{sort-by/entities/interfaces/ISortBy.js → list-selection/domain/entities/interfaces/IListItemSelection.js} +0 -0
  123. /package/es/library/behaviours/{sort-by/usecases/interfaces/UseCaseDependencies.js → list-selection/domain/entities/interfaces/ListSelectionModel.js} +0 -0
  124. /package/es/library/behaviours/{text-to-field-click/usecases → sort-by/applications}/interfaces/UseCaseDependencies.js +0 -0
  125. /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  126. /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  127. /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/input/SortByInputModel.js +0 -0
  128. /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
  129. /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/output/SortByOutputModel.js +0 -0
  130. /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  131. /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/SortBy.js +0 -0
  132. /package/es/{platform/zlist/usecases/interfaces/gateways → library/behaviours/sort-by/domain/entities/interfaces}/ISortBy.js +0 -0
  133. /package/es/{platform/zlist/usecases → library/behaviours/text-to-field-click/applications}/interfaces/UseCaseDependencies.js +0 -0
  134. /package/es/library/behaviours/text-to-field-click/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  135. /package/es/library/behaviours/text-to-field-click/{usecases → applications}/interfaces/input/ClickUseCaseInputModel.js +0 -0
  136. /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  137. /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/ClickUseCase.js +0 -0
  138. /package/es/library/behaviours/text-to-field-click/{entities → domain/entities}/interfaces/IFieldEventConverter.js +0 -0
  139. /package/es/library/custom-component/{usecases → applications}/interfaces/InputDependencies.js +0 -0
  140. /package/es/library/custom-component/{usecases → applications}/interfaces/OutputDependencies.js +0 -0
  141. /package/es/{platform/zhttp/usecases → library/custom-component/applications}/interfaces/UseCase.js +0 -0
  142. /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IEventManager.js +0 -0
  143. /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IJSONValidator.js +0 -0
  144. /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  145. /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  146. /package/es/library/custom-component/{usecases → applications}/interfaces/input/DispatchInputModel.js +0 -0
  147. /package/es/library/custom-component/{usecases → applications}/interfaces/input/InitailizeInputModel.js +0 -0
  148. /package/es/library/custom-component/{usecases → applications}/interfaces/input/UpdatePropertiesInputModel.js +0 -0
  149. /package/es/library/custom-component/{usecases → applications}/interfaces/input/UpdateStateInputModel.js +0 -0
  150. /package/es/library/custom-component/{usecases → applications}/interfaces/output/OutputBoundary.js +0 -0
  151. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  152. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/DispatchUseCase.js +0 -0
  153. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
  154. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/MountUseCase.js +0 -0
  155. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/UpdatePropertyUseCase.js +0 -0
  156. /package/es/library/custom-component/{usecases/interactors → applications/usecases}/UpdateStateUseCase.js +0 -0
  157. /package/es/library/custom-component/{entities → domain/entities}/Behaviour.js +0 -0
  158. /package/es/library/custom-component/{entities → domain/entities}/EventHandler.js +0 -0
  159. /package/es/library/custom-component/{entities → domain/entities}/EventHandlers.js +0 -0
  160. /package/es/library/custom-component/{entities → domain/entities}/Events.js +0 -0
  161. /package/es/library/custom-component/{entities → domain/entities}/LifeCycleAction.js +0 -0
  162. /package/es/library/custom-component/{entities → domain/entities}/Payload.js +0 -0
  163. /package/es/library/custom-component/{entities → domain/entities}/Property.js +0 -0
  164. /package/es/library/custom-component/{entities → domain/entities}/Schema.js +0 -0
  165. /package/es/library/custom-component/{entities → domain/entities}/State.js +0 -0
  166. /package/es/library/custom-component/{entities → domain/entities}/Style.js +0 -0
  167. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IBehaviour.js +0 -0
  168. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IComponent.js +0 -0
  169. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEvent.js +0 -0
  170. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandler.js +0 -0
  171. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandlerHelpers.js +0 -0
  172. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandlers.js +0 -0
  173. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventWrapper.js +0 -0
  174. /package/es/library/custom-component/{entities → domain/entities}/interfaces/ILifeCycleAction.js +0 -0
  175. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IPayload.js +0 -0
  176. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IProperties.js +0 -0
  177. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IProperty.js +0 -0
  178. /package/es/library/custom-component/{entities → domain/entities}/interfaces/ISchema.js +0 -0
  179. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IState.js +0 -0
  180. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IStyle.js +0 -0
  181. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IUpdateHelper.js +0 -0
  182. /package/es/library/custom-component/{entities → domain/entities}/interfaces/IValidator.js +0 -0
  183. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/InputDependencies.js +0 -0
  184. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  185. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  186. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/State.js +0 -0
  187. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
  188. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/FailureInputModel.js +0 -0
  189. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/NoContentInputModel.js +0 -0
  190. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/RegisterInputModel.js +0 -0
  191. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/SuccessInputModel.js +0 -0
  192. /package/es/platform/zdata-broker/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
  193. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  194. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
  195. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/FailureUseCase.js +0 -0
  196. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/NoContentUseCase.js +0 -0
  197. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/RegisterUseCase.js +0 -0
  198. /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/SuccessUseCase.js +0 -0
  199. /package/es/platform/zdata-broker/{entities → domain/entities}/APITemplate.js +0 -0
  200. /package/es/platform/zdata-broker/{entities → domain/entities}/APITemplates.js +0 -0
  201. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APIDetailsModel.js +0 -0
  202. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APITemplateModel.js +0 -0
  203. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APITemplatesModel.js +0 -0
  204. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/ApiEnum.js +0 -0
  205. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/BehaviourState.js +0 -0
  206. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/EventModel.js +0 -0
  207. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IAPITemplate.js +0 -0
  208. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IAPITemplates.js +0 -0
  209. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IDataBroker.js +0 -0
  210. /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/ITemplateHelpers.js +0 -0
  211. /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldBuilder.js +0 -0
  212. /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldFactory.js +0 -0
  213. /package/es/platform/zfield/{usecases → applications}/interfaces/UsecaseDependencies.js +0 -0
  214. /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  215. /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IRestApi.js +0 -0
  216. /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  217. /package/es/platform/zfield/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
  218. /package/es/platform/zfield/{usecases → applications}/interfaces/input/InitialInputModel.js +0 -0
  219. /package/es/platform/zfield/{usecases → applications}/interfaces/input/InputModel.js +0 -0
  220. /package/es/platform/zfield/{usecases → applications}/interfaces/input/RefetchInputModel.js +0 -0
  221. /package/es/platform/zfield/{usecases → applications}/interfaces/input/SetValueInputModel.js +0 -0
  222. /package/es/platform/zfield/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
  223. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  224. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
  225. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchFailureUseCase.js +0 -0
  226. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchNoContentUseCase.js +0 -0
  227. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchSuccessUseCase.js +0 -0
  228. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
  229. /package/es/platform/zfield/{usecases/interactors → applications/usecases}/RefetchUseCase.js +0 -0
  230. /package/es/platform/zfield/{entities → domain/entities}/BooleanField.js +0 -0
  231. /package/es/platform/zfield/{entities → domain/entities}/CurrencyField.js +0 -0
  232. /package/es/platform/zfield/{entities → domain/entities}/DateField.js +0 -0
  233. /package/es/platform/zfield/{entities → domain/entities}/DateTimeField.js +0 -0
  234. /package/es/platform/zfield/{entities → domain/entities}/EmailField.js +0 -0
  235. /package/es/platform/zfield/{entities → domain/entities}/Field.js +0 -0
  236. /package/es/platform/zfield/{entities → domain/entities}/LookupField.js +0 -0
  237. /package/es/platform/zfield/{entities → domain/entities}/MultiLineField.js +0 -0
  238. /package/es/platform/zfield/{entities → domain/entities}/MultiSelectField.js +0 -0
  239. /package/es/platform/zfield/{entities → domain/entities}/PercentageField.js +0 -0
  240. /package/es/platform/zfield/{entities → domain/entities}/PhoneField.js +0 -0
  241. /package/es/platform/zfield/{entities → domain/entities}/PickListField.js +0 -0
  242. /package/es/platform/zfield/{entities → domain/entities}/SingleLineField.js +0 -0
  243. /package/es/platform/zfield/{entities → domain/entities}/URLField.js +0 -0
  244. /package/es/platform/zfield/{entities → domain/entities}/index.js +0 -0
  245. /package/es/platform/zfield/{entities → domain/entities}/interfaces/ActionModel.js +0 -0
  246. /package/es/platform/zfield/{entities → domain/entities}/interfaces/BehaviourState.js +0 -0
  247. /package/es/platform/zfield/{entities → domain/entities}/interfaces/FieldApiName.js +0 -0
  248. /package/es/platform/zfield/{entities → domain/entities}/interfaces/FieldModel.js +0 -0
  249. /package/es/platform/zfield/{entities → domain/entities}/interfaces/IField.js +0 -0
  250. /package/es/platform/zfield/{entities → domain/entities}/interfaces/IFieldManger.js +0 -0
  251. /package/es/platform/zhttp/{usecases → applications}/interfaces/InputDependencies.js +0 -0
  252. /package/es/platform/zhttp/{usecases/interfaces/gateway/IFetchGateWay.js → applications/interfaces/UseCase.js} +0 -0
  253. /package/es/platform/zhttp/{usecases/interfaces/input/FetchInputModel.js → applications/interfaces/gateway/IFetchGateWay.js} +0 -0
  254. /package/es/platform/{zlist/entities/interfaces/ActionModel.js → zhttp/applications/interfaces/input/FetchInputModel.js} +0 -0
  255. /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  256. /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/FetchUseCase.js +0 -0
  257. /package/es/platform/zlist/{usecases → applications}/interfaces/State.js +0 -0
  258. /package/es/platform/zlist/{entities/interfaces/ApiPropsModel.js → applications/interfaces/UseCaseDependencies.js} +0 -0
  259. /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  260. /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  261. /package/es/platform/zlist/{entities/interfaces/IList.js → applications/interfaces/gateways/ISortBy.js} +0 -0
  262. /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/ITransformState.js +0 -0
  263. /package/es/platform/zlist/{usecases → applications}/interfaces/input/DeleteMultipleRecordUseCaseInput.js +0 -0
  264. /package/es/platform/zlist/{usecases → applications}/interfaces/input/DeleteSingleRecordUseCaseInput.js +0 -0
  265. /package/es/platform/zlist/{usecases → applications}/interfaces/input/FetchMoreInput.js +0 -0
  266. /package/es/platform/zlist/{usecases → applications}/interfaces/input/FieldChangeUseCaseInput.js +0 -0
  267. /package/es/platform/zlist/{usecases → applications}/interfaces/input/InitializeInput.js +0 -0
  268. /package/es/platform/zlist/{usecases → applications}/interfaces/input/PropertiesChangeUseCaseInput.js +0 -0
  269. /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordExecuteFailedUseCaseInput.js +0 -0
  270. /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordExecuteSucceededUseCaseInput.js +0 -0
  271. /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordUpdateUseCaseInput.js +0 -0
  272. /package/es/platform/zlist/{usecases → applications}/interfaces/input/SortingInputModel.js +0 -0
  273. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  274. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
  275. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteSingleRecordUseCase.js +0 -0
  276. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FetchMoreUseCase.js +0 -0
  277. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
  278. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
  279. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/PropertiesChangeUseCase.js +0 -0
  280. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteFailedUseCase.js +0 -0
  281. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteSucceededUseCase.js +0 -0
  282. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordUpdateUseCase.js +0 -0
  283. /package/es/platform/zlist/{usecases/interactors → applications/usecases}/SortUseCase.js +0 -0
  284. /package/es/platform/zlist/{entities/interfaces/Properties.js → domain/entities/interfaces/ActionModel.js} +0 -0
  285. /package/es/platform/zlist/{entities/interfaces/RecordExecuteAfterMetaData.js → domain/entities/interfaces/ApiPropsModel.js} +0 -0
  286. /package/es/platform/{zrecord/entities/interfaces/BehaviourState.js → zlist/domain/entities/interfaces/IList.js} +0 -0
  287. /package/es/platform/{zrecord/entities/interfaces/EventModel.js → zlist/domain/entities/interfaces/Properties.js} +0 -0
  288. /package/es/platform/{zrecord/entities/interfaces/ICustomFieldValues.js → zlist/domain/entities/interfaces/RecordExecuteAfterMetaData.js} +0 -0
  289. /package/es/platform/zrecord/{usecases → applications}/interfaces/InputDependencies.js +0 -0
  290. /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
  291. /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/IService.js +0 -0
  292. /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/State.js +0 -0
  293. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/AppendRecordsInputModel.js +0 -0
  294. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/DeleteMultipleRecordInputModel.js +0 -0
  295. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
  296. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FailureInputModel.js +0 -0
  297. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FetchMoreInputModel.js +0 -0
  298. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FetchStateStopInputModel.js +0 -0
  299. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FieldChangeUseCaseInput.js +0 -0
  300. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/InitializeInputModel.js +0 -0
  301. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/NoContentInputModel.js +0 -0
  302. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/RecordUpdateLocalUseCaseInputModel.js +0 -0
  303. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/RefetchInputModel.js +0 -0
  304. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/SetRecordsInputModel.js +0 -0
  305. /package/es/platform/zrecord/{usecases → applications}/interfaces/input/SuccessInputModel.js +0 -0
  306. /package/es/platform/zrecord/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
  307. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
  308. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/AppendRecordsUseCase.js +0 -0
  309. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
  310. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
  311. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FailureUseCase.js +0 -0
  312. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FetchMoreUseCase.js +0 -0
  313. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FetchStateStopUseCase.js +0 -0
  314. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
  315. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
  316. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/NoContentUseCase.js +0 -0
  317. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/RecordUpdateLocalUseCase.js +0 -0
  318. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/RefetchUseCase.js +0 -0
  319. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SetRecordsUseCase.js +0 -0
  320. /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SuccessUseCase.js +0 -0
  321. /package/es/platform/zrecord/{entities → domain/entities}/CustomFieldValues.js +0 -0
  322. /package/es/platform/zrecord/{entities → domain/entities}/Record.js +0 -0
  323. /package/es/platform/zrecord/{entities → domain/entities}/Records.js +0 -0
  324. /package/es/platform/zrecord/{entities → domain/entities}/interfaces/ApiEnum.js +0 -0
  325. /package/es/platform/zrecord/{entities/interfaces/IRecordName.js → domain/entities/interfaces/BehaviourState.js} +0 -0
  326. /package/es/platform/zrecord/{entities/interfaces/RecordModel.js → domain/entities/interfaces/EventModel.js} +0 -0
  327. /package/es/platform/zrecord/{entities/interfaces/RecordsModel.js → domain/entities/interfaces/ICustomFieldValues.js} +0 -0
  328. /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecord.js +0 -0
  329. /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecordExecuteStrategy.js +0 -0
  330. /package/es/platform/zrecord/{entities/interfaces/StrategyMeta.js → domain/entities/interfaces/IRecordName.js} +0 -0
  331. /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecords.js +0 -0
  332. /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecordsManager.js +0 -0
@@ -1,17 +1,26 @@
1
1
  export default {
2
- type: 'object',
3
- properties: {
4
- isEnabled: {
5
- type: 'boolean',
6
- defaultValue: false
2
+ selectionConfig: {
3
+ required: false,
4
+ defaultValue: {
5
+ isEnabled: false,
6
+ maxSelectionCount: 50,
7
+ limitExceedAlertMessage: 'Max records selected'
7
8
  },
8
- maxSelectionCount: {
9
- type: 'number',
10
- defaultValue: 50
11
- },
12
- limitExceedAlertMessage: {
13
- type: 'string',
14
- defaultValue: 'Max records selected'
9
+ typeMetadata: {
10
+ schema: {
11
+ type: 'object',
12
+ properties: {
13
+ isEnabled: {
14
+ type: 'boolean'
15
+ },
16
+ maxSelectionCount: {
17
+ type: 'number'
18
+ },
19
+ limitExceedAlertMessage: {
20
+ type: 'string'
21
+ }
22
+ }
23
+ }
15
24
  }
16
25
  }
17
26
  };
@@ -1,20 +1,25 @@
1
1
  import SortOrder from "./SortOrderEnum";
2
2
  export default {
3
- required: false,
4
- defaultValue: {
5
- id: '',
6
- type: 'none'
7
- },
8
- typeMetadata: {
9
- schema: {
10
- id: {
11
- required: true,
12
- type: 'string'
13
- },
14
- order: {
15
- type: 'string',
16
- enum: Object.values(SortOrder),
17
- defaultValue: 'none'
3
+ sortBy: {
4
+ required: false,
5
+ defaultValue: {
6
+ id: '',
7
+ order: 'none'
8
+ },
9
+ typeMetadata: {
10
+ schema: {
11
+ type: 'object',
12
+ properties: {
13
+ id: {
14
+ type: 'string'
15
+ },
16
+ order: {
17
+ type: 'string',
18
+ enum: Object.values(SortOrder),
19
+ defaultValue: 'none'
20
+ }
21
+ },
22
+ required: ['id', 'order']
18
23
  }
19
24
  }
20
25
  }
@@ -7,7 +7,7 @@ export default {
7
7
  },
8
8
  minWidth: {
9
9
  type: 'number',
10
- defaultValue: 120
10
+ defaultValue: 100
11
11
  },
12
12
  maxWidth: {
13
13
  type: 'number',
@@ -1 +1,11 @@
1
- export default {};
1
+ export default {
2
+ headers: {
3
+ required: false,
4
+ defaultValue: '',
5
+ typeMetadata: {
6
+ schema: {
7
+ type: 'object'
8
+ }
9
+ }
10
+ }
11
+ };
@@ -1,4 +1,3 @@
1
- import SortByConfigSchema from "../sort-by/Properties";
2
1
  export default {
3
2
  moduleName: {
4
3
  required: true,
@@ -53,9 +52,19 @@ export default {
53
52
  }
54
53
  },
55
54
  sortBy: {
56
- required: true,
55
+ required: false,
56
+ defaultValue: '',
57
57
  typeMetadata: {
58
- schema: SortByConfigSchema
58
+ schema: {
59
+ type: 'string',
60
+ oneOf: [{
61
+ pattern: "^-.*"
62
+ }, {
63
+ not: {
64
+ pattern: "^-.*"
65
+ }
66
+ }]
67
+ }
59
68
  }
60
69
  },
61
70
  limit: {
@@ -8,12 +8,16 @@ function Model(_ref) {
8
8
  let {
9
9
  icon,
10
10
  label,
11
- hoverVariant
11
+ hoverVariant,
12
+ isDisabled,
13
+ isVisible
12
14
  } = _ref;
13
15
  return {
14
16
  icon,
15
17
  label,
16
- hoverVariant
18
+ hoverVariant,
19
+ isDisabled,
20
+ isVisible
17
21
  };
18
22
  }
19
23
 
@@ -24,5 +24,23 @@ export default {
24
24
  enum: ["primary", "danger"]
25
25
  }
26
26
  }
27
+ },
28
+ isDisabled: {
29
+ required: false,
30
+ defaultValue: false,
31
+ typeMetadata: {
32
+ schema: {
33
+ type: "boolean"
34
+ }
35
+ }
36
+ },
37
+ isVisible: {
38
+ required: false,
39
+ defaultValue: true,
40
+ typeMetadata: {
41
+ schema: {
42
+ type: "boolean"
43
+ }
44
+ }
27
45
  }
28
46
  };
@@ -1,10 +1,61 @@
1
+ export const actionsSchema = {
2
+ type: 'array',
3
+ minItems: 0,
4
+ items: {
5
+ type: 'object',
6
+ properties: {
7
+ type: {
8
+ type: 'string'
9
+ },
10
+ properties: {
11
+ type: 'object'
12
+ },
13
+ eventMappings: {
14
+ type: 'array',
15
+ minItems: 0,
16
+ items: {
17
+ type: 'object',
18
+ properties: {
19
+ action: {
20
+ type: 'object',
21
+ properties: {
22
+ id: {
23
+ type: 'string'
24
+ },
25
+ dispatchType: {
26
+ type: 'string'
27
+ }
28
+ },
29
+ required: ['id', 'dispatchType']
30
+ },
31
+ eventType: {
32
+ type: 'string'
33
+ },
34
+ payload: {
35
+ type: 'object'
36
+ }
37
+ },
38
+ required: ['action', 'payload', 'eventType']
39
+ }
40
+ }
41
+ },
42
+ required: ['type', 'properties']
43
+ }
44
+ };
1
45
  export default {
2
- actions: {
3
- required: true,
46
+ type: {
47
+ required: false,
4
48
  typeMetadata: {
5
49
  schema: {
6
- type: 'array'
50
+ type: 'string'
7
51
  }
52
+ },
53
+ defaultValue: ''
54
+ },
55
+ actions: {
56
+ required: true,
57
+ typeMetadata: {
58
+ schema: actionsSchema
8
59
  }
9
60
  }
10
61
  };
@@ -0,0 +1,23 @@
1
+ export default class PropertiesConverter {
2
+ static toJsonSchema(properties) {
3
+ let required = [];
4
+ const updatedProperties = Object.entries(properties).reduce((value, _ref) => {
5
+ let [prop, schema] = _ref;
6
+
7
+ if (schema.required) {
8
+ required.push(prop);
9
+ }
10
+
11
+ return { ...value,
12
+ [prop]: { ...schema.typeMetadata.schema
13
+ }
14
+ };
15
+ }, {});
16
+ return {
17
+ type: 'object',
18
+ properties: updatedProperties,
19
+ required
20
+ };
21
+ }
22
+
23
+ }
@@ -1,6 +1,14 @@
1
1
  export default {
2
- id: {
2
+ type: {
3
3
  required: true,
4
+ typeMetadata: {
5
+ schema: {
6
+ type: 'string'
7
+ }
8
+ }
9
+ },
10
+ id: {
11
+ required: false,
4
12
  defaultValue: null,
5
13
  typeMetadata: {
6
14
  schema: {
@@ -1,20 +1,20 @@
1
1
  var Types = /*#__PURE__*/function (Types) {
2
- Types["CheckboxField"] = "CheckboxField";
3
- Types["SwitchField"] = "SwitchField";
4
- Types["SingleLineField"] = "SingleLineField";
5
- Types["MultiLineField"] = "MultiLineField";
6
- Types["EmailField"] = "EmailField";
7
- Types["URLField"] = "URLField";
8
- Types["PhoneField"] = "PhoneField";
9
- Types["CurrencyField"] = "CurrencyField";
10
- Types["LookUpField"] = "LookUpField";
11
- Types["PickListField"] = "PickListField";
12
- Types["PercentageField"] = "PercentageField";
13
- Types["DateField"] = "DateField";
14
- Types["DateTimeField"] = "DateTimeField";
15
- Types["NumberField"] = "NumberField";
16
- Types["DecimalField"] = "DecimalField";
17
- Types["MultiSelectField"] = "MultiSelectField";
2
+ Types["CheckboxField"] = "Checkbox";
3
+ Types["SwitchField"] = "Switch";
4
+ Types["SingleLineField"] = "SingleLine";
5
+ Types["MultiLineField"] = "MultiLine";
6
+ Types["EmailField"] = "Email";
7
+ Types["URLField"] = "URL";
8
+ Types["PhoneField"] = "Phone";
9
+ Types["CurrencyField"] = "Currency";
10
+ Types["LookUpField"] = "LookUp";
11
+ Types["PickListField"] = "PickList";
12
+ Types["PercentageField"] = "Percentage";
13
+ Types["DateField"] = "Date";
14
+ Types["DateTimeField"] = "DateTime";
15
+ Types["NumberField"] = "Number";
16
+ Types["DecimalField"] = "Decimal";
17
+ Types["MultiSelectField"] = "MultiSelect";
18
18
  return Types;
19
19
  }(Types || {});
20
20
 
@@ -18,7 +18,7 @@ export default { ...FieldProperties,
18
18
  }
19
19
  },
20
20
  options: {
21
- required: true,
21
+ required: false,
22
22
  typeMetadata: {
23
23
  schema: {
24
24
  type: 'array',
@@ -18,7 +18,7 @@ export default { ...FieldProperties,
18
18
  }
19
19
  },
20
20
  options: {
21
- required: true,
21
+ required: false,
22
22
  typeMetadata: {
23
23
  schema: {
24
24
  type: 'array',
@@ -1,15 +1,5 @@
1
- import ZListProperties from "../../bc/zlist/Properties";
2
1
  import SelectionConfigSchema from "../../bc/list-selection/Properties";
3
- export default { ...ZListProperties,
4
- sortBy: {
5
- required: false,
6
- defaultValue: '',
7
- typeMetadata: {
8
- schema: {
9
- type: 'string'
10
- }
11
- }
12
- },
2
+ export default {
13
3
  isFlexibleColumns: {
14
4
  required: false,
15
5
  defaultValue: false,
@@ -19,17 +9,7 @@ export default { ...ZListProperties,
19
9
  }
20
10
  }
21
11
  },
22
- selectionConfig: {
23
- required: false,
24
- defaultValue: {
25
- isEnabled: false,
26
- maxSelectionCount: 50,
27
- limitExceedAlertMessage: 'Max records selected'
28
- },
29
- typeMetadata: {
30
- schema: SelectionConfigSchema
31
- }
32
- },
12
+ ...SelectionConfigSchema,
33
13
  uiMapping: {
34
14
  required: false,
35
15
  defaultValue: {
@@ -41,29 +21,17 @@ export default { ...ZListProperties,
41
21
  type: 'object',
42
22
  properties: {
43
23
  fields: {
44
- type: 'object',
45
- defaultValue: {}
24
+ type: 'object'
46
25
  },
47
26
  emptyState: {
48
- type: 'string',
49
- defaultValue: ''
27
+ type: 'string'
50
28
  }
51
29
  }
52
30
  }
53
31
  }
54
32
  },
55
- headers: {
56
- required: false,
57
- defaultValue: '',
58
- typeMetadata: {
59
- schema: {
60
- type: 'object'
61
- }
62
- }
63
- },
64
33
  moduleName: {
65
34
  required: true,
66
- defaultValue: 'ticket',
67
35
  typeMetadata: {
68
36
  schema: {
69
37
  type: 'string'
@@ -75,15 +43,51 @@ export default { ...ZListProperties,
75
43
  defaultValue: [],
76
44
  typeMetadata: {
77
45
  schema: {
78
- type: 'array'
79
- }
80
- }
81
- },
82
- limit: {
83
- required: true,
84
- typeMetadata: {
85
- schema: {
86
- type: 'number'
46
+ type: 'array',
47
+ minItems: 0,
48
+ items: {
49
+ type: 'object',
50
+ properties: {
51
+ uiType: {
52
+ type: 'string'
53
+ },
54
+ properties: {
55
+ type: 'object'
56
+ },
57
+ eventMappings: {
58
+ type: 'array',
59
+ minItems: 0,
60
+ items: {
61
+ type: 'object',
62
+ properties: {
63
+ id: {
64
+ type: 'string'
65
+ },
66
+ action: {
67
+ type: 'object',
68
+ properties: {
69
+ id: {
70
+ type: 'string'
71
+ },
72
+ dispatchType: {
73
+ type: 'string'
74
+ }
75
+ },
76
+ required: ['id', 'dispatchType']
77
+ },
78
+ eventType: {
79
+ type: 'string'
80
+ },
81
+ payloadMapping: {
82
+ type: 'string'
83
+ }
84
+ },
85
+ required: ['id', 'action', 'payloadMapping', 'eventType']
86
+ }
87
+ }
88
+ },
89
+ required: ['uiType', 'properties']
90
+ }
87
91
  }
88
92
  }
89
93
  }