@igo2/common 17.0.0-next.6 → 17.0.0-next.8

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 (815) hide show
  1. package/action/index.d.ts +5 -0
  2. package/action/public_api.d.ts +4 -0
  3. package/action/shared/action.interfaces.d.ts +18 -0
  4. package/action/shared/store.d.ts +8 -0
  5. package/backdrop/index.d.ts +5 -0
  6. package/backdrop/public_api.d.ts +2 -0
  7. package/badge/index.d.ts +5 -0
  8. package/badge/public_api.d.ts +2 -0
  9. package/clickout/index.d.ts +5 -0
  10. package/clickout/public_api.d.ts +2 -0
  11. package/clone/index.d.ts +5 -0
  12. package/clone/public_api.d.ts +2 -0
  13. package/collapsible/index.d.ts +5 -0
  14. package/collapsible/public_api.d.ts +6 -0
  15. package/color/color-picker-form-field/index.d.ts +2 -0
  16. package/color/index.d.ts +5 -0
  17. package/color/public_api.d.ts +1 -0
  18. package/confirm-dialog/index.d.ts +5 -0
  19. package/confirm-dialog/public_api.d.ts +4 -0
  20. package/context-menu/index.d.ts +5 -0
  21. package/context-menu/public_api.d.ts +6 -0
  22. package/custom-html/index.d.ts +5 -0
  23. package/custom-html/public_api.d.ts +6 -0
  24. package/dom/index.d.ts +5 -0
  25. package/dom/public_api.d.ts +3 -0
  26. package/drag-drop/index.d.ts +5 -0
  27. package/drag-drop/public_api.d.ts +2 -0
  28. package/dynamic-component/index.d.ts +5 -0
  29. package/dynamic-component/public_api.d.ts +4 -0
  30. package/entity/entity-selector/index.d.ts +2 -0
  31. package/entity/entity-table/index.d.ts +2 -0
  32. package/entity/entity-table-paginator/index.d.ts +3 -0
  33. package/entity/entity.module.d.ts +16 -0
  34. package/entity/index.d.ts +5 -0
  35. package/entity/public_api.d.ts +5 -0
  36. package/environment/index.d.ts +5 -0
  37. package/esm2022/action/action.module.mjs +19 -0
  38. package/esm2022/action/actionbar/actionbar-item.component.mjs +192 -0
  39. package/esm2022/action/actionbar/actionbar.component.mjs +277 -0
  40. package/esm2022/action/actionbar/actionbar.module.mjs +19 -0
  41. package/esm2022/action/igo2-common-action.mjs +5 -0
  42. package/esm2022/action/public_api.mjs +5 -0
  43. package/esm2022/action/shared/action.enums.mjs +7 -0
  44. package/esm2022/action/shared/action.interfaces.mjs +2 -0
  45. package/esm2022/action/shared/index.mjs +4 -0
  46. package/esm2022/action/shared/store.mjs +8 -0
  47. package/esm2022/backdrop/backdrop.component.mjs +22 -0
  48. package/esm2022/backdrop/backdrop.module.mjs +25 -0
  49. package/esm2022/backdrop/igo2-common-backdrop.mjs +5 -0
  50. package/esm2022/backdrop/public_api.mjs +3 -0
  51. package/esm2022/badge/badge-icon.directive.mjs +149 -0
  52. package/esm2022/badge/badge-icon.module.mjs +25 -0
  53. package/esm2022/badge/igo2-common-badge.mjs +5 -0
  54. package/esm2022/badge/public_api.mjs +3 -0
  55. package/esm2022/clickout/clickout.directive.mjs +32 -0
  56. package/esm2022/clickout/clickout.module.mjs +25 -0
  57. package/esm2022/clickout/igo2-common-clickout.mjs +5 -0
  58. package/esm2022/clickout/public_api.mjs +3 -0
  59. package/esm2022/clone/clone.module.mjs +25 -0
  60. package/esm2022/clone/clone.pipe.mjs +25 -0
  61. package/esm2022/clone/igo2-common-clone.mjs +5 -0
  62. package/esm2022/clone/public_api.mjs +3 -0
  63. package/esm2022/collapsible/collapse.directive.mjs +57 -0
  64. package/esm2022/collapsible/collapsible.component.mjs +38 -0
  65. package/esm2022/collapsible/collapsible.module.mjs +26 -0
  66. package/esm2022/collapsible/igo2-common-collapsible.mjs +5 -0
  67. package/esm2022/collapsible/public_api.mjs +10 -0
  68. package/esm2022/color/color-picker-form-field/color-picker-form-field.component.mjs +104 -0
  69. package/esm2022/color/color-picker-form-field/color-picker-form-field.module.mjs +19 -0
  70. package/esm2022/color/color-picker-form-field/index.mjs +3 -0
  71. package/esm2022/color/igo2-common-color.mjs +5 -0
  72. package/esm2022/color/public_api.mjs +2 -0
  73. package/esm2022/confirm-dialog/confirm-dialog.component.mjs +31 -0
  74. package/esm2022/confirm-dialog/confirm-dialog.interface.mjs +2 -0
  75. package/esm2022/confirm-dialog/confirm-dialog.module.mjs +27 -0
  76. package/esm2022/confirm-dialog/confirm-dialog.service.mjs +35 -0
  77. package/esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs +5 -0
  78. package/esm2022/confirm-dialog/public_api.mjs +5 -0
  79. package/esm2022/context-menu/context-menu.directive.mjs +109 -0
  80. package/esm2022/context-menu/context-menu.module.mjs +26 -0
  81. package/esm2022/context-menu/igo2-common-context-menu.mjs +5 -0
  82. package/esm2022/context-menu/long-press.directive.mjs +66 -0
  83. package/esm2022/context-menu/public_api.mjs +10 -0
  84. package/esm2022/custom-html/custom-html.component.mjs +22 -0
  85. package/esm2022/custom-html/custom-html.module.mjs +25 -0
  86. package/esm2022/custom-html/custom-html.pipe.mjs +23 -0
  87. package/esm2022/custom-html/igo2-common-custom-html.mjs +5 -0
  88. package/esm2022/custom-html/public_api.mjs +10 -0
  89. package/esm2022/dom/dom.interfaces.mjs +2 -0
  90. package/esm2022/dom/dom.module.mjs +27 -0
  91. package/esm2022/dom/dom.service.mjs +35 -0
  92. package/esm2022/dom/igo2-common-dom.mjs +5 -0
  93. package/esm2022/dom/public_api.mjs +4 -0
  94. package/esm2022/drag-drop/drag-drop.directive.mjs +82 -0
  95. package/esm2022/drag-drop/drag-drop.module.mjs +25 -0
  96. package/esm2022/drag-drop/igo2-common-drag-drop.mjs +5 -0
  97. package/esm2022/drag-drop/public_api.mjs +3 -0
  98. package/esm2022/dynamic-component/dynamic-component.module.mjs +19 -0
  99. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +129 -0
  100. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +19 -0
  101. package/esm2022/dynamic-component/igo2-common-dynamic-component.mjs +5 -0
  102. package/esm2022/dynamic-component/public_api.mjs +5 -0
  103. package/esm2022/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -0
  104. package/esm2022/dynamic-component/shared/dynamic-component.mjs +183 -0
  105. package/esm2022/dynamic-component/shared/dynamic-component.service.mjs +30 -0
  106. package/esm2022/dynamic-component/shared/index.mjs +4 -0
  107. package/esm2022/entity/entity-selector/entity-selector.component.mjs +174 -0
  108. package/esm2022/entity/entity-selector/entity-selector.module.mjs +19 -0
  109. package/esm2022/entity/entity-selector/index.mjs +3 -0
  110. package/esm2022/entity/entity-table/entity-table-row.directive.mjs +138 -0
  111. package/esm2022/entity/entity-table/entity-table.component.mjs +883 -0
  112. package/esm2022/entity/entity-table/entity-table.module.mjs +19 -0
  113. package/esm2022/entity/entity-table/index.mjs +3 -0
  114. package/esm2022/entity/entity-table-paginator/entity-table-paginator.component.mjs +158 -0
  115. package/esm2022/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
  116. package/esm2022/entity/entity-table-paginator/entity-table-paginator.module.mjs +19 -0
  117. package/esm2022/entity/entity-table-paginator/index.mjs +4 -0
  118. package/esm2022/entity/entity.module.mjs +30 -0
  119. package/esm2022/entity/igo2-common-entity.mjs +5 -0
  120. package/esm2022/entity/public_api.mjs +6 -0
  121. package/esm2022/entity/shared/entity.enums.mjs +28 -0
  122. package/esm2022/entity/shared/entity.interfaces.mjs +2 -0
  123. package/esm2022/entity/shared/entity.utils.mjs +73 -0
  124. package/esm2022/entity/shared/index.mjs +10 -0
  125. package/esm2022/entity/shared/state.mjs +194 -0
  126. package/esm2022/entity/shared/store.mjs +322 -0
  127. package/esm2022/entity/shared/strategies/filter-custom-function.mjs +80 -0
  128. package/esm2022/entity/shared/strategies/filter-selection.mjs +81 -0
  129. package/esm2022/entity/shared/strategies/index.mjs +4 -0
  130. package/esm2022/entity/shared/strategies/strategy.mjs +78 -0
  131. package/esm2022/entity/shared/transaction.mjs +329 -0
  132. package/esm2022/entity/shared/view.mjs +330 -0
  133. package/esm2022/entity/shared/watcher.mjs +135 -0
  134. package/esm2022/environment/environment.interface.mjs +2 -0
  135. package/esm2022/environment/igo2-common-environment.mjs +5 -0
  136. package/esm2022/environment/public_api.mjs +2 -0
  137. package/esm2022/flexible/flexible.component.mjs +135 -0
  138. package/esm2022/flexible/flexible.module.mjs +25 -0
  139. package/esm2022/flexible/flexible.type.mjs +2 -0
  140. package/esm2022/flexible/igo2-common-flexible.mjs +5 -0
  141. package/esm2022/flexible/public_api.mjs +4 -0
  142. package/esm2022/form/form/form.component.mjs +103 -0
  143. package/esm2022/form/form/form.module.mjs +19 -0
  144. package/esm2022/form/form/index.mjs +3 -0
  145. package/esm2022/form/form-dialog/form-dialog.component.mjs +94 -0
  146. package/esm2022/form/form-dialog/form-dialog.interface.mjs +2 -0
  147. package/esm2022/form/form-dialog/form-dialog.module.mjs +31 -0
  148. package/esm2022/form/form-dialog/form-dialog.service.mjs +30 -0
  149. package/esm2022/form/form-dialog/index.mjs +5 -0
  150. package/esm2022/form/form-field/form-field-select.component.mjs +117 -0
  151. package/esm2022/form/form-field/form-field-text.component.mjs +126 -0
  152. package/esm2022/form/form-field/form-field-textarea.component.mjs +95 -0
  153. package/esm2022/form/form-field/form-field.component.mjs +65 -0
  154. package/esm2022/form/form-field/form-field.directive.mjs +11 -0
  155. package/esm2022/form/form-field/form-field.module.mjs +23 -0
  156. package/esm2022/form/form-field/index.mjs +7 -0
  157. package/esm2022/form/form-group/form-group.component.mjs +82 -0
  158. package/esm2022/form/form-group/form-group.module.mjs +19 -0
  159. package/esm2022/form/form-group/index.mjs +3 -0
  160. package/esm2022/form/form.module.mjs +32 -0
  161. package/esm2022/form/igo2-common-form.mjs +5 -0
  162. package/esm2022/form/public_api.mjs +7 -0
  163. package/esm2022/form/shared/form-field-component.mjs +7 -0
  164. package/esm2022/form/shared/form-field.service.mjs +29 -0
  165. package/esm2022/form/shared/form.interfaces.mjs +2 -0
  166. package/esm2022/form/shared/form.service.mjs +82 -0
  167. package/esm2022/form/shared/form.utils.mjs +41 -0
  168. package/esm2022/form/shared/index.mjs +6 -0
  169. package/esm2022/home-button/home-button.component.mjs +26 -0
  170. package/esm2022/home-button/home-button.module.mjs +19 -0
  171. package/esm2022/home-button/igo2-common-home-button.mjs +5 -0
  172. package/esm2022/home-button/public_api.mjs +3 -0
  173. package/esm2022/icon/icon/icon.component.mjs +38 -0
  174. package/esm2022/icon/icon.provider.mjs +14 -0
  175. package/esm2022/icon/igo2-common-icon.mjs +5 -0
  176. package/esm2022/icon/public_api.mjs +4 -0
  177. package/esm2022/icon/shared/icon.interface.mjs +2 -0
  178. package/esm2022/icon/shared/icon.service.mjs +26 -0
  179. package/esm2022/icon/shared/icons.mjs +32 -0
  180. package/esm2022/icon/shared/index.mjs +4 -0
  181. package/esm2022/image/igo2-common-image.mjs +5 -0
  182. package/esm2022/image/image-error.directive.mjs +35 -0
  183. package/esm2022/image/image.module.mjs +26 -0
  184. package/esm2022/image/public_api.mjs +7 -0
  185. package/esm2022/image/secure-image.pipe.mjs +66 -0
  186. package/esm2022/interactive-tour/igo2-common-interactive-tour.mjs +5 -0
  187. package/esm2022/interactive-tour/interactive-tour.component.mjs +133 -0
  188. package/esm2022/interactive-tour/interactive-tour.interface.mjs +2 -0
  189. package/esm2022/interactive-tour/interactive-tour.loader.mjs +49 -0
  190. package/esm2022/interactive-tour/interactive-tour.module.mjs +19 -0
  191. package/esm2022/interactive-tour/interactive-tour.service.mjs +303 -0
  192. package/esm2022/interactive-tour/public_api.mjs +6 -0
  193. package/esm2022/json-dialog/igo2-common-json-dialog.mjs +5 -0
  194. package/esm2022/json-dialog/json-dialog.component.mjs +38 -0
  195. package/esm2022/json-dialog/json-dialog.module.mjs +26 -0
  196. package/esm2022/json-dialog/json-dialog.service.mjs +26 -0
  197. package/esm2022/json-dialog/public_api.mjs +4 -0
  198. package/esm2022/keyvalue/igo2-common-keyvalue.mjs +5 -0
  199. package/esm2022/keyvalue/keyvalue.module.mjs +25 -0
  200. package/esm2022/keyvalue/keyvalue.pipe.mjs +19 -0
  201. package/esm2022/keyvalue/public_api.mjs +3 -0
  202. package/esm2022/list/igo2-common-list.mjs +5 -0
  203. package/esm2022/list/list-item.directive.mjs +166 -0
  204. package/esm2022/list/list.component.mjs +252 -0
  205. package/esm2022/list/list.module.mjs +26 -0
  206. package/esm2022/list/public_api.mjs +7 -0
  207. package/esm2022/panel/igo2-common-panel.mjs +5 -0
  208. package/esm2022/panel/panel.component.mjs +30 -0
  209. package/esm2022/panel/panel.module.mjs +19 -0
  210. package/esm2022/panel/public_api.mjs +3 -0
  211. package/esm2022/public_api.mjs +17 -79
  212. package/esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs +5 -0
  213. package/esm2022/select-value-dialog/public_api.mjs +6 -0
  214. package/esm2022/select-value-dialog/select-value-check-radio-dialog.component.mjs +103 -0
  215. package/esm2022/select-value-dialog/select-value-dialog.enums.mjs +6 -0
  216. package/esm2022/select-value-dialog/select-value-dialog.interface.mjs +2 -0
  217. package/esm2022/select-value-dialog/select-value-dialog.module.mjs +27 -0
  218. package/esm2022/select-value-dialog/select-value-dialog.service.mjs +29 -0
  219. package/esm2022/sidenav/igo2-common-sidenav.mjs +5 -0
  220. package/esm2022/sidenav/public_api.mjs +3 -0
  221. package/esm2022/sidenav/sidenav-shim.directive.mjs +58 -0
  222. package/esm2022/sidenav/sidenav.module.mjs +25 -0
  223. package/esm2022/spinner/igo2-common-spinner.mjs +5 -0
  224. package/esm2022/spinner/public_api.mjs +4 -0
  225. package/esm2022/spinner/spinner-activity.directive.mjs +56 -0
  226. package/esm2022/spinner/spinner.component.mjs +30 -0
  227. package/esm2022/spinner/spinner.module.mjs +26 -0
  228. package/esm2022/stop-propagation/igo2-common-stop-propagation.mjs +5 -0
  229. package/esm2022/stop-propagation/public_api.mjs +10 -0
  230. package/esm2022/stop-propagation/stop-drop-propagation.directive.mjs +21 -0
  231. package/esm2022/stop-propagation/stop-propagation.directive.mjs +20 -0
  232. package/esm2022/stop-propagation/stop-propagation.module.mjs +26 -0
  233. package/esm2022/table/igo2-common-table.mjs +5 -0
  234. package/esm2022/table/public_api.mjs +7 -0
  235. package/esm2022/table/table-action-color.enum.mjs +7 -0
  236. package/esm2022/table/table-database.mjs +28 -0
  237. package/esm2022/table/table-datasource.mjs +64 -0
  238. package/esm2022/table/table-model.interface.mjs +2 -0
  239. package/esm2022/table/table.component.mjs +143 -0
  240. package/esm2022/table/table.module.mjs +25 -0
  241. package/esm2022/tool/igo2-common-tool.mjs +5 -0
  242. package/esm2022/tool/public_api.mjs +4 -0
  243. package/esm2022/tool/shared/index.mjs +6 -0
  244. package/esm2022/tool/shared/tool-component.mjs +9 -0
  245. package/esm2022/tool/shared/tool.interface.mjs +2 -0
  246. package/esm2022/tool/shared/tool.service.mjs +43 -0
  247. package/esm2022/tool/shared/toolbox.enums.mjs +2 -0
  248. package/esm2022/tool/shared/toolbox.mjs +192 -0
  249. package/esm2022/tool/tool.module.mjs +28 -0
  250. package/esm2022/tool/toolbox/index.mjs +3 -0
  251. package/esm2022/tool/toolbox/toolbox.animation.mjs +10 -0
  252. package/esm2022/tool/toolbox/toolbox.component.mjs +241 -0
  253. package/esm2022/tool/toolbox/toolbox.module.mjs +19 -0
  254. package/esm2022/widget/igo2-common-widget.mjs +5 -0
  255. package/esm2022/widget/public_api.mjs +4 -0
  256. package/esm2022/widget/shared/index.mjs +4 -0
  257. package/esm2022/widget/shared/widget.interfaces.mjs +2 -0
  258. package/esm2022/widget/shared/widget.mjs +4 -0
  259. package/esm2022/widget/shared/widget.service.mjs +22 -0
  260. package/esm2022/widget/widget-outlet/index.mjs +3 -0
  261. package/esm2022/widget/widget-outlet/widget-outlet.component.mjs +113 -0
  262. package/esm2022/widget/widget-outlet/widget-outlet.module.mjs +19 -0
  263. package/esm2022/widget/widget.module.mjs +22 -0
  264. package/esm2022/workspace/igo2-common-workspace.mjs +5 -0
  265. package/esm2022/workspace/public_api.mjs +5 -0
  266. package/esm2022/workspace/shared/index.mjs +4 -0
  267. package/esm2022/workspace/shared/store.mjs +37 -0
  268. package/esm2022/workspace/shared/workspace.interfaces.mjs +2 -0
  269. package/esm2022/workspace/shared/workspace.mjs +143 -0
  270. package/esm2022/workspace/workspace-selector/index.mjs +3 -0
  271. package/esm2022/workspace/workspace-selector/workspace-selector.component.mjs +51 -0
  272. package/esm2022/workspace/workspace-selector/workspace-selector.module.mjs +19 -0
  273. package/esm2022/workspace/workspace-widget-outlet/index.mjs +3 -0
  274. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +74 -0
  275. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +19 -0
  276. package/esm2022/workspace/workspace.module.mjs +27 -0
  277. package/fesm2022/igo2-common-action.mjs +505 -0
  278. package/fesm2022/igo2-common-action.mjs.map +1 -0
  279. package/fesm2022/igo2-common-backdrop.mjs +51 -0
  280. package/fesm2022/igo2-common-backdrop.mjs.map +1 -0
  281. package/fesm2022/igo2-common-badge.mjs +178 -0
  282. package/fesm2022/igo2-common-badge.mjs.map +1 -0
  283. package/fesm2022/igo2-common-clickout.mjs +61 -0
  284. package/fesm2022/igo2-common-clickout.mjs.map +1 -0
  285. package/fesm2022/igo2-common-clone.mjs +54 -0
  286. package/fesm2022/igo2-common-clone.mjs.map +1 -0
  287. package/fesm2022/igo2-common-collapsible.mjs +126 -0
  288. package/fesm2022/igo2-common-collapsible.mjs.map +1 -0
  289. package/fesm2022/igo2-common-color.mjs +127 -0
  290. package/fesm2022/igo2-common-color.mjs.map +1 -0
  291. package/fesm2022/igo2-common-confirm-dialog.mjs +91 -0
  292. package/fesm2022/igo2-common-confirm-dialog.mjs.map +1 -0
  293. package/fesm2022/igo2-common-context-menu.mjs +206 -0
  294. package/fesm2022/igo2-common-context-menu.mjs.map +1 -0
  295. package/fesm2022/igo2-common-custom-html.mjs +74 -0
  296. package/fesm2022/igo2-common-custom-html.mjs.map +1 -0
  297. package/fesm2022/igo2-common-dom.mjs +65 -0
  298. package/fesm2022/igo2-common-dom.mjs.map +1 -0
  299. package/fesm2022/igo2-common-drag-drop.mjs +111 -0
  300. package/fesm2022/igo2-common-drag-drop.mjs.map +1 -0
  301. package/fesm2022/igo2-common-dynamic-component.mjs +375 -0
  302. package/fesm2022/igo2-common-dynamic-component.mjs.map +1 -0
  303. package/fesm2022/igo2-common-entity.mjs +3036 -0
  304. package/fesm2022/igo2-common-entity.mjs.map +1 -0
  305. package/fesm2022/igo2-common-environment.mjs +4 -0
  306. package/fesm2022/igo2-common-environment.mjs.map +1 -0
  307. package/fesm2022/igo2-common-flexible.mjs +163 -0
  308. package/fesm2022/igo2-common-flexible.mjs.map +1 -0
  309. package/fesm2022/igo2-common-form.mjs +898 -0
  310. package/fesm2022/igo2-common-form.mjs.map +1 -0
  311. package/fesm2022/igo2-common-home-button.mjs +49 -0
  312. package/fesm2022/igo2-common-home-button.mjs.map +1 -0
  313. package/fesm2022/igo2-common-icon.mjs +108 -0
  314. package/fesm2022/igo2-common-icon.mjs.map +1 -0
  315. package/fesm2022/igo2-common-image.mjs +129 -0
  316. package/fesm2022/igo2-common-image.mjs.map +1 -0
  317. package/fesm2022/igo2-common-interactive-tour.mjs +490 -0
  318. package/fesm2022/igo2-common-interactive-tour.mjs.map +1 -0
  319. package/fesm2022/igo2-common-json-dialog.mjs +88 -0
  320. package/fesm2022/igo2-common-json-dialog.mjs.map +1 -0
  321. package/fesm2022/igo2-common-keyvalue.mjs +48 -0
  322. package/fesm2022/igo2-common-keyvalue.mjs.map +1 -0
  323. package/fesm2022/igo2-common-list.mjs +446 -0
  324. package/fesm2022/igo2-common-list.mjs.map +1 -0
  325. package/fesm2022/igo2-common-panel.mjs +53 -0
  326. package/fesm2022/igo2-common-panel.mjs.map +1 -0
  327. package/fesm2022/igo2-common-select-value-dialog.mjs +161 -0
  328. package/fesm2022/igo2-common-select-value-dialog.mjs.map +1 -0
  329. package/fesm2022/igo2-common-sidenav.mjs +86 -0
  330. package/fesm2022/igo2-common-sidenav.mjs.map +1 -0
  331. package/fesm2022/igo2-common-spinner.mjs +110 -0
  332. package/fesm2022/igo2-common-spinner.mjs.map +1 -0
  333. package/fesm2022/igo2-common-stop-propagation.mjs +73 -0
  334. package/fesm2022/igo2-common-stop-propagation.mjs.map +1 -0
  335. package/fesm2022/igo2-common-table.mjs +264 -0
  336. package/fesm2022/igo2-common-table.mjs.map +1 -0
  337. package/fesm2022/igo2-common-tool.mjs +535 -0
  338. package/fesm2022/igo2-common-tool.mjs.map +1 -0
  339. package/fesm2022/igo2-common-widget.mjs +176 -0
  340. package/fesm2022/igo2-common-widget.mjs.map +1 -0
  341. package/fesm2022/igo2-common-workspace.mjs +361 -0
  342. package/fesm2022/igo2-common-workspace.mjs.map +1 -0
  343. package/fesm2022/igo2-common.mjs +16 -8817
  344. package/fesm2022/igo2-common.mjs.map +1 -1
  345. package/flexible/index.d.ts +5 -0
  346. package/flexible/public_api.d.ts +3 -0
  347. package/form/form/index.d.ts +2 -0
  348. package/form/form-dialog/form-dialog.component.d.ts +23 -0
  349. package/form/form-dialog/form-dialog.interface.d.ts +18 -0
  350. package/form/form-dialog/index.d.ts +4 -0
  351. package/form/form-field/form-field.directive.d.ts +5 -0
  352. package/form/form-field/index.d.ts +6 -0
  353. package/form/form-group/index.d.ts +2 -0
  354. package/form/form.module.d.ts +18 -0
  355. package/form/index.d.ts +5 -0
  356. package/form/public_api.d.ts +6 -0
  357. package/home-button/index.d.ts +5 -0
  358. package/home-button/public_api.d.ts +2 -0
  359. package/icon/icon/icon.component.d.ts +14 -0
  360. package/icon/index.d.ts +5 -0
  361. package/icon/shared/icon.service.d.ts +12 -0
  362. package/icon/shared/icons.d.ts +9 -0
  363. package/icon/shared/index.d.ts +3 -0
  364. package/image/index.d.ts +5 -0
  365. package/image/public_api.d.ts +6 -0
  366. package/interactive-tour/index.d.ts +5 -0
  367. package/interactive-tour/interactive-tour.component.d.ts +33 -0
  368. package/interactive-tour/public_api.d.ts +5 -0
  369. package/json-dialog/index.d.ts +5 -0
  370. package/json-dialog/public_api.d.ts +3 -0
  371. package/keyvalue/index.d.ts +5 -0
  372. package/keyvalue/public_api.d.ts +2 -0
  373. package/list/index.d.ts +5 -0
  374. package/list/public_api.d.ts +6 -0
  375. package/package.json +201 -3
  376. package/panel/index.d.ts +5 -0
  377. package/panel/public_api.d.ts +2 -0
  378. package/public_api.d.ts +16 -78
  379. package/select-value-dialog/index.d.ts +5 -0
  380. package/select-value-dialog/public_api.d.ts +5 -0
  381. package/sidenav/index.d.ts +5 -0
  382. package/sidenav/public_api.d.ts +2 -0
  383. package/spinner/index.d.ts +5 -0
  384. package/spinner/public_api.d.ts +3 -0
  385. package/spinner/spinner.module.d.ts +14 -0
  386. package/src/common-theme.scss +8 -8
  387. package/stop-propagation/index.d.ts +5 -0
  388. package/stop-propagation/public_api.d.ts +6 -0
  389. package/table/index.d.ts +5 -0
  390. package/table/public_api.d.ts +6 -0
  391. package/tool/index.d.ts +5 -0
  392. package/tool/public_api.d.ts +3 -0
  393. package/tool/shared/tool.interface.d.ts +18 -0
  394. package/tool/shared/toolbox.d.ts +98 -0
  395. package/tool/toolbox/index.d.ts +2 -0
  396. package/tool/toolbox/toolbox.component.d.ts +128 -0
  397. package/widget/index.d.ts +5 -0
  398. package/widget/public_api.d.ts +3 -0
  399. package/widget/shared/widget.d.ts +4 -0
  400. package/widget/shared/widget.service.d.ts +10 -0
  401. package/widget/widget-outlet/index.d.ts +2 -0
  402. package/widget/widget-outlet/widget-outlet.component.d.ts +71 -0
  403. package/workspace/index.d.ts +5 -0
  404. package/workspace/public_api.d.ts +4 -0
  405. package/workspace/shared/store.d.ts +20 -0
  406. package/workspace/shared/workspace.d.ts +108 -0
  407. package/workspace/shared/workspace.interfaces.d.ts +11 -0
  408. package/workspace/workspace-selector/index.d.ts +2 -0
  409. package/workspace/workspace-selector/workspace-selector.component.d.ts +38 -0
  410. package/workspace/workspace-widget-outlet/index.d.ts +2 -0
  411. package/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -0
  412. package/workspace/workspace.module.d.ts +14 -0
  413. package/esm2022/lib/action/action.module.mjs +0 -19
  414. package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +0 -192
  415. package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -277
  416. package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -19
  417. package/esm2022/lib/action/index.mjs +0 -3
  418. package/esm2022/lib/action/shared/action.enums.mjs +0 -7
  419. package/esm2022/lib/action/shared/action.interfaces.mjs +0 -2
  420. package/esm2022/lib/action/shared/index.mjs +0 -4
  421. package/esm2022/lib/action/shared/store.mjs +0 -8
  422. package/esm2022/lib/backdrop/backdrop.component.mjs +0 -22
  423. package/esm2022/lib/backdrop/backdrop.module.mjs +0 -25
  424. package/esm2022/lib/backdrop/index.mjs +0 -2
  425. package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -149
  426. package/esm2022/lib/badge-icon/badge-icon.module.mjs +0 -25
  427. package/esm2022/lib/badge-icon/index.mjs +0 -2
  428. package/esm2022/lib/clickout/clickout.directive.mjs +0 -32
  429. package/esm2022/lib/clickout/clickout.module.mjs +0 -25
  430. package/esm2022/lib/clickout/index.mjs +0 -2
  431. package/esm2022/lib/clone/clone.module.mjs +0 -25
  432. package/esm2022/lib/clone/clone.pipe.mjs +0 -25
  433. package/esm2022/lib/clone/index.mjs +0 -2
  434. package/esm2022/lib/collapsible/collapse.directive.mjs +0 -57
  435. package/esm2022/lib/collapsible/collapsible.component.mjs +0 -38
  436. package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
  437. package/esm2022/lib/collapsible/index.mjs +0 -9
  438. package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -104
  439. package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -19
  440. package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
  441. package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -31
  442. package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
  443. package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -27
  444. package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -35
  445. package/esm2022/lib/confirm-dialog/index.mjs +0 -4
  446. package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -109
  447. package/esm2022/lib/context-menu/context-menu.module.mjs +0 -26
  448. package/esm2022/lib/context-menu/index.mjs +0 -9
  449. package/esm2022/lib/context-menu/long-press.directive.mjs +0 -66
  450. package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
  451. package/esm2022/lib/custom-html/custom-html.module.mjs +0 -25
  452. package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -23
  453. package/esm2022/lib/custom-html/index.mjs +0 -9
  454. package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
  455. package/esm2022/lib/dom/dom.module.mjs +0 -27
  456. package/esm2022/lib/dom/dom.service.mjs +0 -35
  457. package/esm2022/lib/dom/index.mjs +0 -3
  458. package/esm2022/lib/drag-drop/drag-drop.directive.mjs +0 -82
  459. package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -25
  460. package/esm2022/lib/drag-drop/index.mjs +0 -2
  461. package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +0 -19
  462. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -129
  463. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -19
  464. package/esm2022/lib/dynamic-component/index.mjs +0 -3
  465. package/esm2022/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +0 -2
  466. package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +0 -183
  467. package/esm2022/lib/dynamic-component/shared/dynamic-component.service.mjs +0 -30
  468. package/esm2022/lib/dynamic-component/shared/index.mjs +0 -4
  469. package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +0 -174
  470. package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -19
  471. package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -138
  472. package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -884
  473. package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -19
  474. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -158
  475. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
  476. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -19
  477. package/esm2022/lib/entity/entity-table-paginator/index.mjs +0 -3
  478. package/esm2022/lib/entity/entity.module.mjs +0 -22
  479. package/esm2022/lib/entity/index.mjs +0 -14
  480. package/esm2022/lib/entity/shared/entity.enums.mjs +0 -28
  481. package/esm2022/lib/entity/shared/entity.interfaces.mjs +0 -2
  482. package/esm2022/lib/entity/shared/entity.utils.mjs +0 -73
  483. package/esm2022/lib/entity/shared/index.mjs +0 -10
  484. package/esm2022/lib/entity/shared/state.mjs +0 -194
  485. package/esm2022/lib/entity/shared/store.mjs +0 -322
  486. package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +0 -80
  487. package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +0 -81
  488. package/esm2022/lib/entity/shared/strategies/index.mjs +0 -4
  489. package/esm2022/lib/entity/shared/strategies/strategy.mjs +0 -78
  490. package/esm2022/lib/entity/shared/transaction.mjs +0 -329
  491. package/esm2022/lib/entity/shared/view.mjs +0 -330
  492. package/esm2022/lib/entity/shared/watcher.mjs +0 -135
  493. package/esm2022/lib/environment/environment.interface.mjs +0 -2
  494. package/esm2022/lib/environment/index.mjs +0 -2
  495. package/esm2022/lib/flexible/flexible.component.mjs +0 -135
  496. package/esm2022/lib/flexible/flexible.module.mjs +0 -25
  497. package/esm2022/lib/flexible/flexible.type.mjs +0 -2
  498. package/esm2022/lib/flexible/index.mjs +0 -3
  499. package/esm2022/lib/form/form/form.component.mjs +0 -103
  500. package/esm2022/lib/form/form/form.module.mjs +0 -19
  501. package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -117
  502. package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -126
  503. package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -95
  504. package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
  505. package/esm2022/lib/form/form-field/form-field.module.mjs +0 -23
  506. package/esm2022/lib/form/form-field/index.mjs +0 -15
  507. package/esm2022/lib/form/form-group/form-group.component.mjs +0 -82
  508. package/esm2022/lib/form/form-group/form-group.module.mjs +0 -19
  509. package/esm2022/lib/form/form.module.mjs +0 -25
  510. package/esm2022/lib/form/index.mjs +0 -13
  511. package/esm2022/lib/form/shared/form-field-component.mjs +0 -7
  512. package/esm2022/lib/form/shared/form-field.service.mjs +0 -29
  513. package/esm2022/lib/form/shared/form.interfaces.mjs +0 -2
  514. package/esm2022/lib/form/shared/form.service.mjs +0 -82
  515. package/esm2022/lib/form/shared/form.utils.mjs +0 -41
  516. package/esm2022/lib/form/shared/index.mjs +0 -6
  517. package/esm2022/lib/form-dialog/form-dialog.component.mjs +0 -94
  518. package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
  519. package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -31
  520. package/esm2022/lib/form-dialog/form-dialog.service.mjs +0 -30
  521. package/esm2022/lib/form-dialog/index.mjs +0 -4
  522. package/esm2022/lib/home-button/home-button.component.mjs +0 -26
  523. package/esm2022/lib/home-button/home-button.module.mjs +0 -19
  524. package/esm2022/lib/home-button/index.mjs +0 -2
  525. package/esm2022/lib/icons/icon/icon.component.mjs +0 -40
  526. package/esm2022/lib/icons/icon.provider.mjs +0 -14
  527. package/esm2022/lib/icons/index.mjs +0 -4
  528. package/esm2022/lib/icons/shared/icon.interface.mjs +0 -2
  529. package/esm2022/lib/icons/shared/icons.mjs +0 -34
  530. package/esm2022/lib/icons/shared/index.mjs +0 -3
  531. package/esm2022/lib/image/image-error.directive.mjs +0 -35
  532. package/esm2022/lib/image/image.module.mjs +0 -26
  533. package/esm2022/lib/image/index.mjs +0 -6
  534. package/esm2022/lib/image/secure-image.pipe.mjs +0 -66
  535. package/esm2022/lib/interactive-tour/index.mjs +0 -5
  536. package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -126
  537. package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
  538. package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +0 -49
  539. package/esm2022/lib/interactive-tour/interactive-tour.module.mjs +0 -19
  540. package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +0 -303
  541. package/esm2022/lib/json-dialog/index.mjs +0 -3
  542. package/esm2022/lib/json-dialog/json-dialog.component.mjs +0 -38
  543. package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -26
  544. package/esm2022/lib/json-dialog/json-dialog.service.mjs +0 -26
  545. package/esm2022/lib/keyvalue/index.mjs +0 -2
  546. package/esm2022/lib/keyvalue/keyvalue.module.mjs +0 -25
  547. package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -19
  548. package/esm2022/lib/list/index.mjs +0 -6
  549. package/esm2022/lib/list/list-item.directive.mjs +0 -166
  550. package/esm2022/lib/list/list.component.mjs +0 -252
  551. package/esm2022/lib/list/list.module.mjs +0 -26
  552. package/esm2022/lib/panel/index.mjs +0 -2
  553. package/esm2022/lib/panel/panel.component.mjs +0 -30
  554. package/esm2022/lib/panel/panel.module.mjs +0 -19
  555. package/esm2022/lib/select-value-dialog/index.mjs +0 -5
  556. package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -103
  557. package/esm2022/lib/select-value-dialog/select-value-dialog.enums.mjs +0 -6
  558. package/esm2022/lib/select-value-dialog/select-value-dialog.interface.mjs +0 -2
  559. package/esm2022/lib/select-value-dialog/select-value-dialog.module.mjs +0 -27
  560. package/esm2022/lib/select-value-dialog/select-value-dialog.service.mjs +0 -29
  561. package/esm2022/lib/sidenav/index.mjs +0 -2
  562. package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +0 -58
  563. package/esm2022/lib/sidenav/sidenav.module.mjs +0 -25
  564. package/esm2022/lib/spinner/index.mjs +0 -9
  565. package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -56
  566. package/esm2022/lib/spinner/spinner.component.mjs +0 -30
  567. package/esm2022/lib/spinner/spinner.module.mjs +0 -21
  568. package/esm2022/lib/stop-propagation/index.mjs +0 -9
  569. package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -21
  570. package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -20
  571. package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -26
  572. package/esm2022/lib/table/index.mjs +0 -6
  573. package/esm2022/lib/table/table-action-color.enum.mjs +0 -7
  574. package/esm2022/lib/table/table-database.mjs +0 -28
  575. package/esm2022/lib/table/table-datasource.mjs +0 -64
  576. package/esm2022/lib/table/table-model.interface.mjs +0 -2
  577. package/esm2022/lib/table/table.component.mjs +0 -143
  578. package/esm2022/lib/table/table.module.mjs +0 -25
  579. package/esm2022/lib/tool/index.mjs +0 -3
  580. package/esm2022/lib/tool/shared/index.mjs +0 -6
  581. package/esm2022/lib/tool/shared/tool-component.mjs +0 -9
  582. package/esm2022/lib/tool/shared/tool.interface.mjs +0 -2
  583. package/esm2022/lib/tool/shared/tool.service.mjs +0 -43
  584. package/esm2022/lib/tool/shared/toolbox.enums.mjs +0 -2
  585. package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
  586. package/esm2022/lib/tool/tool.module.mjs +0 -28
  587. package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
  588. package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -242
  589. package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -19
  590. package/esm2022/lib/widget/index.mjs +0 -3
  591. package/esm2022/lib/widget/shared/index.mjs +0 -4
  592. package/esm2022/lib/widget/shared/widget.interfaces.mjs +0 -2
  593. package/esm2022/lib/widget/shared/widget.mjs +0 -4
  594. package/esm2022/lib/widget/shared/widget.service.mjs +0 -22
  595. package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -114
  596. package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -19
  597. package/esm2022/lib/widget/widget.module.mjs +0 -22
  598. package/esm2022/lib/workspace/index.mjs +0 -10
  599. package/esm2022/lib/workspace/shared/index.mjs +0 -4
  600. package/esm2022/lib/workspace/shared/store.mjs +0 -37
  601. package/esm2022/lib/workspace/shared/workspace.interfaces.mjs +0 -2
  602. package/esm2022/lib/workspace/shared/workspace.mjs +0 -143
  603. package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -52
  604. package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -19
  605. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -74
  606. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -19
  607. package/esm2022/lib/workspace/workspace.module.mjs +0 -22
  608. package/lib/action/index.d.ts +0 -2
  609. package/lib/action/shared/action.interfaces.d.ts +0 -18
  610. package/lib/action/shared/store.d.ts +0 -8
  611. package/lib/backdrop/index.d.ts +0 -1
  612. package/lib/badge-icon/index.d.ts +0 -1
  613. package/lib/clickout/index.d.ts +0 -1
  614. package/lib/clone/index.d.ts +0 -1
  615. package/lib/collapsible/index.d.ts +0 -5
  616. package/lib/color-picker-form-field/index.d.ts +0 -1
  617. package/lib/confirm-dialog/index.d.ts +0 -3
  618. package/lib/context-menu/index.d.ts +0 -5
  619. package/lib/custom-html/index.d.ts +0 -5
  620. package/lib/dom/index.d.ts +0 -2
  621. package/lib/drag-drop/index.d.ts +0 -1
  622. package/lib/dynamic-component/index.d.ts +0 -2
  623. package/lib/entity/entity-table-paginator/index.d.ts +0 -2
  624. package/lib/entity/entity.module.d.ts +0 -12
  625. package/lib/entity/index.d.ts +0 -9
  626. package/lib/flexible/index.d.ts +0 -2
  627. package/lib/form/form-field/index.d.ts +0 -9
  628. package/lib/form/form.module.d.ts +0 -15
  629. package/lib/form/index.d.ts +0 -7
  630. package/lib/form-dialog/form-dialog.component.d.ts +0 -24
  631. package/lib/form-dialog/form-dialog.interface.d.ts +0 -18
  632. package/lib/form-dialog/index.d.ts +0 -3
  633. package/lib/home-button/index.d.ts +0 -1
  634. package/lib/icons/icon/icon.component.d.ts +0 -16
  635. package/lib/icons/shared/icons.d.ts +0 -21
  636. package/lib/icons/shared/index.d.ts +0 -2
  637. package/lib/image/index.d.ts +0 -5
  638. package/lib/interactive-tour/index.d.ts +0 -4
  639. package/lib/interactive-tour/interactive-tour.component.d.ts +0 -30
  640. package/lib/json-dialog/index.d.ts +0 -2
  641. package/lib/keyvalue/index.d.ts +0 -1
  642. package/lib/list/index.d.ts +0 -5
  643. package/lib/panel/index.d.ts +0 -1
  644. package/lib/select-value-dialog/index.d.ts +0 -4
  645. package/lib/sidenav/index.d.ts +0 -1
  646. package/lib/spinner/index.d.ts +0 -5
  647. package/lib/spinner/spinner.module.d.ts +0 -11
  648. package/lib/stop-propagation/index.d.ts +0 -5
  649. package/lib/table/index.d.ts +0 -5
  650. package/lib/tool/index.d.ts +0 -2
  651. package/lib/tool/shared/tool.interface.d.ts +0 -18
  652. package/lib/tool/shared/toolbox.d.ts +0 -95
  653. package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
  654. package/lib/widget/index.d.ts +0 -2
  655. package/lib/widget/shared/widget.d.ts +0 -4
  656. package/lib/widget/shared/widget.service.d.ts +0 -10
  657. package/lib/widget/widget-outlet/widget-outlet.component.d.ts +0 -71
  658. package/lib/workspace/index.d.ts +0 -6
  659. package/lib/workspace/shared/store.d.ts +0 -20
  660. package/lib/workspace/shared/workspace.d.ts +0 -108
  661. package/lib/workspace/shared/workspace.interfaces.d.ts +0 -11
  662. package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +0 -38
  663. package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
  664. package/lib/workspace/workspace.module.d.ts +0 -11
  665. /package/{lib/action → action}/action.module.d.ts +0 -0
  666. /package/{lib/action → action}/actionbar/actionbar-item.component.d.ts +0 -0
  667. /package/{lib/action → action}/actionbar/actionbar.component.d.ts +0 -0
  668. /package/{lib/action → action}/actionbar/actionbar.module.d.ts +0 -0
  669. /package/{lib/action → action}/shared/action.enums.d.ts +0 -0
  670. /package/{lib/action → action}/shared/index.d.ts +0 -0
  671. /package/{src/lib/action → action/src}/action.theming.scss +0 -0
  672. /package/{src/lib/action → action/src}/actionbar/actionbar-item.theming.scss +0 -0
  673. /package/{src/lib/action → action/src}/actionbar/actionbar.theming.scss +0 -0
  674. /package/{lib/backdrop → backdrop}/backdrop.component.d.ts +0 -0
  675. /package/{lib/backdrop → backdrop}/backdrop.module.d.ts +0 -0
  676. /package/{lib/badge-icon → badge}/badge-icon.directive.d.ts +0 -0
  677. /package/{lib/badge-icon → badge}/badge-icon.module.d.ts +0 -0
  678. /package/{lib/clickout → clickout}/clickout.directive.d.ts +0 -0
  679. /package/{lib/clickout → clickout}/clickout.module.d.ts +0 -0
  680. /package/{lib/clone → clone}/clone.module.d.ts +0 -0
  681. /package/{lib/clone → clone}/clone.pipe.d.ts +0 -0
  682. /package/{lib/collapsible → collapsible}/collapse.directive.d.ts +0 -0
  683. /package/{lib/collapsible → collapsible}/collapsible.component.d.ts +0 -0
  684. /package/{lib/collapsible → collapsible}/collapsible.module.d.ts +0 -0
  685. /package/{src/lib/collapsible → collapsible/src}/collapsible.theming.scss +0 -0
  686. /package/{lib → color}/color-picker-form-field/color-picker-form-field.component.d.ts +0 -0
  687. /package/{lib → color}/color-picker-form-field/color-picker-form-field.module.d.ts +0 -0
  688. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.component.d.ts +0 -0
  689. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.interface.d.ts +0 -0
  690. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.module.d.ts +0 -0
  691. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.service.d.ts +0 -0
  692. /package/{lib/context-menu → context-menu}/context-menu.directive.d.ts +0 -0
  693. /package/{lib/context-menu → context-menu}/context-menu.module.d.ts +0 -0
  694. /package/{lib/context-menu → context-menu}/long-press.directive.d.ts +0 -0
  695. /package/{lib/custom-html → custom-html}/custom-html.component.d.ts +0 -0
  696. /package/{lib/custom-html → custom-html}/custom-html.module.d.ts +0 -0
  697. /package/{lib/custom-html → custom-html}/custom-html.pipe.d.ts +0 -0
  698. /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
  699. /package/{lib/dom → dom}/dom.module.d.ts +0 -0
  700. /package/{lib/dom → dom}/dom.service.d.ts +0 -0
  701. /package/{lib/drag-drop → drag-drop}/drag-drop.directive.d.ts +0 -0
  702. /package/{lib/drag-drop → drag-drop}/drag-drop.module.d.ts +0 -0
  703. /package/{lib/dynamic-component → dynamic-component}/dynamic-component.module.d.ts +0 -0
  704. /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.component.d.ts +0 -0
  705. /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.module.d.ts +0 -0
  706. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.d.ts +0 -0
  707. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.interfaces.d.ts +0 -0
  708. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.service.d.ts +0 -0
  709. /package/{lib/dynamic-component → dynamic-component}/shared/index.d.ts +0 -0
  710. /package/{lib/entity → entity}/entity-selector/entity-selector.component.d.ts +0 -0
  711. /package/{lib/entity → entity}/entity-selector/entity-selector.module.d.ts +0 -0
  712. /package/{lib/entity → entity}/entity-table/entity-table-row.directive.d.ts +0 -0
  713. /package/{lib/entity → entity}/entity-table/entity-table.component.d.ts +0 -0
  714. /package/{lib/entity → entity}/entity-table/entity-table.module.d.ts +0 -0
  715. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.component.d.ts +0 -0
  716. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.interface.d.ts +0 -0
  717. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.module.d.ts +0 -0
  718. /package/{lib/entity → entity}/shared/entity.enums.d.ts +0 -0
  719. /package/{lib/entity → entity}/shared/entity.interfaces.d.ts +0 -0
  720. /package/{lib/entity → entity}/shared/entity.utils.d.ts +0 -0
  721. /package/{lib/entity → entity}/shared/index.d.ts +0 -0
  722. /package/{lib/entity → entity}/shared/state.d.ts +0 -0
  723. /package/{lib/entity → entity}/shared/store.d.ts +0 -0
  724. /package/{lib/entity → entity}/shared/strategies/filter-custom-function.d.ts +0 -0
  725. /package/{lib/entity → entity}/shared/strategies/filter-selection.d.ts +0 -0
  726. /package/{lib/entity → entity}/shared/strategies/index.d.ts +0 -0
  727. /package/{lib/entity → entity}/shared/strategies/strategy.d.ts +0 -0
  728. /package/{lib/entity → entity}/shared/transaction.d.ts +0 -0
  729. /package/{lib/entity → entity}/shared/view.d.ts +0 -0
  730. /package/{lib/entity → entity}/shared/watcher.d.ts +0 -0
  731. /package/{src/lib/entity → entity/src}/entity-selector/entity-selector.theming.scss +0 -0
  732. /package/{src/lib/entity → entity/src}/entity-table/entity-table.theming.scss +0 -0
  733. /package/{src/lib/entity → entity/src}/entity.theming.scss +0 -0
  734. /package/{lib/environment → environment}/environment.interface.d.ts +0 -0
  735. /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
  736. /package/{lib/flexible → flexible}/flexible.component.d.ts +0 -0
  737. /package/{lib/flexible → flexible}/flexible.module.d.ts +0 -0
  738. /package/{lib/flexible → flexible}/flexible.type.d.ts +0 -0
  739. /package/{lib/form → form}/form/form.component.d.ts +0 -0
  740. /package/{lib/form → form}/form/form.module.d.ts +0 -0
  741. /package/{lib → form}/form-dialog/form-dialog.module.d.ts +0 -0
  742. /package/{lib → form}/form-dialog/form-dialog.service.d.ts +0 -0
  743. /package/{lib/form → form}/form-field/form-field-select.component.d.ts +0 -0
  744. /package/{lib/form → form}/form-field/form-field-text.component.d.ts +0 -0
  745. /package/{lib/form → form}/form-field/form-field-textarea.component.d.ts +0 -0
  746. /package/{lib/form → form}/form-field/form-field.component.d.ts +0 -0
  747. /package/{lib/form → form}/form-field/form-field.module.d.ts +0 -0
  748. /package/{lib/form → form}/form-group/form-group.component.d.ts +0 -0
  749. /package/{lib/form → form}/form-group/form-group.module.d.ts +0 -0
  750. /package/{lib/form → form}/shared/form-field-component.d.ts +0 -0
  751. /package/{lib/form → form}/shared/form-field.service.d.ts +0 -0
  752. /package/{lib/form → form}/shared/form.interfaces.d.ts +0 -0
  753. /package/{lib/form → form}/shared/form.service.d.ts +0 -0
  754. /package/{lib/form → form}/shared/form.utils.d.ts +0 -0
  755. /package/{lib/form → form}/shared/index.d.ts +0 -0
  756. /package/{lib/home-button → home-button}/home-button.component.d.ts +0 -0
  757. /package/{lib/home-button → home-button}/home-button.module.d.ts +0 -0
  758. /package/{src/lib/home-button → home-button/src}/home-button.theming.scss +0 -0
  759. /package/{lib/icons → icon}/icon.provider.d.ts +0 -0
  760. /package/{lib/icons/index.d.ts → icon/public_api.d.ts} +0 -0
  761. /package/{lib/icons → icon}/shared/icon.interface.d.ts +0 -0
  762. /package/{lib/image → image}/image-error.directive.d.ts +0 -0
  763. /package/{lib/image → image}/image.module.d.ts +0 -0
  764. /package/{lib/image → image}/secure-image.pipe.d.ts +0 -0
  765. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
  766. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.loader.d.ts +0 -0
  767. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.module.d.ts +0 -0
  768. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.service.d.ts +0 -0
  769. /package/{src/lib/interactive-tour → interactive-tour/src}/interactive-tour.theming.scss +0 -0
  770. /package/{lib/json-dialog → json-dialog}/json-dialog.component.d.ts +0 -0
  771. /package/{lib/json-dialog → json-dialog}/json-dialog.module.d.ts +0 -0
  772. /package/{lib/json-dialog → json-dialog}/json-dialog.service.d.ts +0 -0
  773. /package/{lib/keyvalue → keyvalue}/keyvalue.module.d.ts +0 -0
  774. /package/{lib/keyvalue → keyvalue}/keyvalue.pipe.d.ts +0 -0
  775. /package/{lib/list → list}/list-item.directive.d.ts +0 -0
  776. /package/{lib/list → list}/list.component.d.ts +0 -0
  777. /package/{lib/list → list}/list.module.d.ts +0 -0
  778. /package/{src/lib/list → list/src}/list.theming.scss +0 -0
  779. /package/{lib/panel → panel}/panel.component.d.ts +0 -0
  780. /package/{lib/panel → panel}/panel.module.d.ts +0 -0
  781. /package/{src/lib/panel → panel/src}/panel.theming.scss +0 -0
  782. /package/{lib/select-value-dialog → select-value-dialog}/select-value-check-radio-dialog.component.d.ts +0 -0
  783. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.enums.d.ts +0 -0
  784. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.interface.d.ts +0 -0
  785. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.module.d.ts +0 -0
  786. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.service.d.ts +0 -0
  787. /package/{lib/sidenav → sidenav}/sidenav-shim.directive.d.ts +0 -0
  788. /package/{lib/sidenav → sidenav}/sidenav.module.d.ts +0 -0
  789. /package/{lib/spinner → spinner}/spinner-activity.directive.d.ts +0 -0
  790. /package/{lib/spinner → spinner}/spinner.component.d.ts +0 -0
  791. /package/{lib/stop-propagation → stop-propagation}/stop-drop-propagation.directive.d.ts +0 -0
  792. /package/{lib/stop-propagation → stop-propagation}/stop-propagation.directive.d.ts +0 -0
  793. /package/{lib/stop-propagation → stop-propagation}/stop-propagation.module.d.ts +0 -0
  794. /package/{lib/table → table}/table-action-color.enum.d.ts +0 -0
  795. /package/{lib/table → table}/table-database.d.ts +0 -0
  796. /package/{lib/table → table}/table-datasource.d.ts +0 -0
  797. /package/{lib/table → table}/table-model.interface.d.ts +0 -0
  798. /package/{lib/table → table}/table.component.d.ts +0 -0
  799. /package/{lib/table → table}/table.module.d.ts +0 -0
  800. /package/{lib/tool → tool}/shared/index.d.ts +0 -0
  801. /package/{lib/tool → tool}/shared/tool-component.d.ts +0 -0
  802. /package/{lib/tool → tool}/shared/tool.service.d.ts +0 -0
  803. /package/{lib/tool → tool}/shared/toolbox.enums.d.ts +0 -0
  804. /package/{src/lib/tool → tool/src}/tool.theming.scss +0 -0
  805. /package/{src/lib/tool → tool/src}/toolbox/toolbox.theming.scss +0 -0
  806. /package/{lib/tool → tool}/tool.module.d.ts +0 -0
  807. /package/{lib/tool → tool}/toolbox/toolbox.animation.d.ts +0 -0
  808. /package/{lib/tool → tool}/toolbox/toolbox.module.d.ts +0 -0
  809. /package/{lib/widget → widget}/shared/index.d.ts +0 -0
  810. /package/{lib/widget → widget}/shared/widget.interfaces.d.ts +0 -0
  811. /package/{lib/widget → widget}/widget-outlet/widget-outlet.module.d.ts +0 -0
  812. /package/{lib/widget → widget}/widget.module.d.ts +0 -0
  813. /package/{lib/workspace → workspace}/shared/index.d.ts +0 -0
  814. /package/{lib/workspace → workspace}/workspace-selector/workspace-selector.module.d.ts +0 -0
  815. /package/{lib/workspace → workspace}/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -0
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/sidenav" />
5
+ export * from './public_api';
@@ -0,0 +1,2 @@
1
+ export * from './sidenav.module';
2
+ export * from './sidenav-shim.directive';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/spinner" />
5
+ export * from './public_api';
@@ -0,0 +1,3 @@
1
+ export * from './spinner.module';
2
+ export * from './spinner.component';
3
+ export * from './spinner-activity.directive';
@@ -0,0 +1,14 @@
1
+ import { SpinnerActivityDirective } from './spinner-activity.directive';
2
+ import { SpinnerComponent } from './spinner.component';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./spinner-activity.directive";
5
+ import * as i2 from "./spinner.component";
6
+ export declare const SPINNER_DIRECTIVES: readonly [typeof SpinnerActivityDirective, typeof SpinnerComponent];
7
+ /**
8
+ * @deprecated import the components/directives directly or SPINNER_DIRECTIVES for every components/directives
9
+ */
10
+ export declare class IgoSpinnerModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgoSpinnerModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgoSpinnerModule, never, [typeof i1.SpinnerActivityDirective, typeof i2.SpinnerComponent], [typeof i1.SpinnerActivityDirective, typeof i2.SpinnerComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgoSpinnerModule>;
14
+ }
@@ -1,11 +1,11 @@
1
- @use './lib/action/action.theming.scss' as action;
2
- @use './lib/collapsible/collapsible.theming.scss' as collapsible;
3
- @use './lib/entity/entity.theming.scss' as entity;
4
- @use './lib/list/list.theming.scss' as list;
5
- @use './lib/panel/panel.theming.scss' as panel;
6
- @use './lib/tool/tool.theming.scss' as tool;
7
- @use './lib/interactive-tour/interactive-tour.theming.scss' as interactive-tour;
8
- @use './lib/home-button/home-button.theming.scss' as home-button;
1
+ @use '../action/src/action.theming.scss' as action;
2
+ @use '../collapsible/src/collapsible.theming.scss' as collapsible;
3
+ @use '../entity/src/entity.theming.scss' as entity;
4
+ @use '../list/src/list.theming.scss' as list;
5
+ @use '../panel/src/panel.theming.scss' as panel;
6
+ @use '../tool/src/tool.theming.scss' as tool;
7
+ @use '../interactive-tour/src/interactive-tour.theming.scss' as interactive-tour;
8
+ @use '../home-button/src/home-button.theming.scss' as home-button;
9
9
 
10
10
  @mixin common-component-themes($theme) {
11
11
  @include action.igo-action-theming($theme);
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/stop-propagation" />
5
+ export * from './public_api';
@@ -0,0 +1,6 @@
1
+ import { StopDropPropagationDirective } from './stop-drop-propagation.directive';
2
+ import { StopPropagationDirective } from './stop-propagation.directive';
3
+ export * from './stop-propagation.module';
4
+ export * from './stop-propagation.directive';
5
+ export * from './stop-drop-propagation.directive';
6
+ export declare const STOP_PROPAGATION_DIRECTIVES: readonly [typeof StopDropPropagationDirective, typeof StopPropagationDirective];
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/table" />
5
+ export * from './public_api';
@@ -0,0 +1,6 @@
1
+ export * from './table.module';
2
+ export * from './table.component';
3
+ export * from './table-database';
4
+ export * from './table-datasource';
5
+ export * from './table-model.interface';
6
+ export * from './table-action-color.enum';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/tool" />
5
+ export * from './public_api';
@@ -0,0 +1,3 @@
1
+ export * from './shared';
2
+ export * from './tool.module';
3
+ export * from './toolbox';
@@ -0,0 +1,18 @@
1
+ import { IconSvg } from '@igo2/common/icon';
2
+ export interface Tool {
3
+ name: string;
4
+ component: any;
5
+ title?: string;
6
+ icon?: string | IconSvg;
7
+ tooltip?: string;
8
+ global?: boolean;
9
+ options?: {
10
+ [key: string]: any;
11
+ };
12
+ parent?: string;
13
+ children?: string[];
14
+ id?: string;
15
+ }
16
+ export interface ToolboxOptions {
17
+ toolbar?: string[];
18
+ }
@@ -0,0 +1,98 @@
1
+ import { BehaviorSubject } from 'rxjs';
2
+ import { Tool, ToolboxOptions } from './tool.interface';
3
+ /**
4
+ * Service where all available tools and their component are registered.
5
+ */
6
+ export declare class Toolbox {
7
+ private options;
8
+ /**
9
+ * Observable of the active tool
10
+ */
11
+ activeTool$: BehaviorSubject<Tool>;
12
+ /**
13
+ * Ordered list of tool names to display in a toolbar
14
+ */
15
+ toolbar$: BehaviorSubject<string[]>;
16
+ /**
17
+ * Observable of the active tool
18
+ */
19
+ private activeTool$$;
20
+ /**
21
+ * Active tool history. Useful for activating the previous tool.
22
+ */
23
+ private activeToolHistory;
24
+ private previousToolName;
25
+ private currentToolName;
26
+ /**
27
+ * Tool store
28
+ */
29
+ private store;
30
+ get tools$(): BehaviorSubject<Tool[]>;
31
+ constructor(options?: ToolboxOptions);
32
+ /**
33
+ * Destroy the toolbox
34
+ */
35
+ destroy(): void;
36
+ /**
37
+ * Return a tool
38
+ * @param name Tool name
39
+ * @returns tool Tool
40
+ */
41
+ getTool(name: string): Tool;
42
+ /**
43
+ * Return all tools
44
+ * @returns Array of tools
45
+ */
46
+ getTools(): Tool[];
47
+ /**
48
+ * Set tool configurations
49
+ * @param tools Tools
50
+ */
51
+ setTools(tools: Tool[]): void;
52
+ /**
53
+ * Get toolbar
54
+ * @returns Toolbar value
55
+ */
56
+ getToolbar(): string[];
57
+ /**
58
+ * Set toolbar
59
+ * @param toolbar A list of tool names
60
+ */
61
+ setToolbar(toolbar: string[]): void;
62
+ /**
63
+ * Activate a tool (and deactivate other tools)
64
+ * @param name Tool name
65
+ * @param options Tool options
66
+ */
67
+ activateTool(name: string, options?: {
68
+ [key: string]: any;
69
+ }): void;
70
+ /**
71
+ * Activate the previous tool, if any
72
+ */
73
+ activatePreviousTool(): void;
74
+ getCurrentPreviousToolName(): [string, string];
75
+ /**
76
+ * Activate the tool below, if any
77
+ */
78
+ /**
79
+ * Activate the tool above, if any
80
+ */
81
+ /**
82
+ * Deactivate the active tool
83
+ */
84
+ deactivateTool(): void;
85
+ /**
86
+ * Initialize the tool store and start observing the active tool
87
+ */
88
+ private initStore;
89
+ /**
90
+ * Set the active tool and update the tool history
91
+ * @param tool Tool
92
+ */
93
+ private setActiveTool;
94
+ /**
95
+ * Clear the tool history
96
+ */
97
+ private clearActiveToolHistory;
98
+ }
@@ -0,0 +1,2 @@
1
+ export * from './toolbox.module';
2
+ export * from './toolbox.component';
@@ -0,0 +1,128 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { ActionStore } from '@igo2/common/action';
3
+ import { BehaviorSubject, Observable } from 'rxjs';
4
+ import { Tool } from '../shared/tool.interface';
5
+ import { Toolbox } from '../shared/toolbox';
6
+ import { ToolboxColor } from '../shared/toolbox.enums';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ToolboxComponent implements OnInit, OnDestroy {
9
+ /**
10
+ * Observable of the active tool
11
+ */
12
+ activeTool$: BehaviorSubject<Tool>;
13
+ get isActive(): boolean;
14
+ /**
15
+ * Store of actions that toggle tools
16
+ */
17
+ actionStore: ActionStore;
18
+ /**
19
+ * Observable of he anmation state
20
+ */
21
+ animation$: BehaviorSubject<string>;
22
+ /**
23
+ * Observable of the toolbar
24
+ */
25
+ toolbar$: BehaviorSubject<string[]>;
26
+ /**
27
+ * Whether the Toolbar should display actions' titles
28
+ */
29
+ toolbarWithTitle$: Observable<boolean>;
30
+ /**
31
+ * Subscription to the active tool
32
+ */
33
+ private activeTool$$;
34
+ /**
35
+ * Subscription to the toolbar
36
+ */
37
+ private toolbar$$;
38
+ /**
39
+ * Observable of the ongoing animation. This is useful when
40
+ * multiple animations are triggered at once i.e. when the user clicks
41
+ * too fast on different actions
42
+ */
43
+ private animating$;
44
+ /**
45
+ * Subscription to the ongoing animation
46
+ */
47
+ private animating$$;
48
+ /**
49
+ * Toolbox
50
+ */
51
+ toolbox: Toolbox;
52
+ /**
53
+ * Whether the toolbox should animate the first tool entering
54
+ */
55
+ animate: boolean;
56
+ /**
57
+ * Color of Toolbox
58
+ */
59
+ color: ToolboxColor;
60
+ /**
61
+ * @ignore
62
+ */
63
+ get classColorGrey(): boolean;
64
+ /**
65
+ * @ignore
66
+ */
67
+ get classColorPrimary(): boolean;
68
+ /**
69
+ * Initialize the toolbar and subscribe to the active tool
70
+ * @internal
71
+ */
72
+ ngOnInit(): void;
73
+ /**
74
+ * Unsubscribe to the active tool and destroy the action store
75
+ * @internal
76
+ */
77
+ ngOnDestroy(): void;
78
+ /**
79
+ * Track the starting animation
80
+ * @internal
81
+ */
82
+ onAnimationStart(): void;
83
+ /**
84
+ * Untrack the completed animation
85
+ * @internal
86
+ */
87
+ onAnimationComplete(): void;
88
+ /**
89
+ * Return a tool's inputs
90
+ * @param tool Tool
91
+ * @returns Tool inputs
92
+ * @internal
93
+ */
94
+ getToolInputs(tool: Tool): {
95
+ [key: string]: any;
96
+ };
97
+ /**
98
+ * Initialize an action store
99
+ * @param toolbar Toolbar
100
+ */
101
+ private onToolbarChange;
102
+ /**
103
+ * Activate a tool and trigger an animation or not
104
+ * @param tool Tool to activate
105
+ */
106
+ private onActiveToolChange;
107
+ /**
108
+ * Set the active tool
109
+ * @param tool Tool to activate
110
+ */
111
+ private setActiveTool;
112
+ /**
113
+ * Initialize the toolbar
114
+ */
115
+ private setToolbar;
116
+ /**
117
+ * Observe the ongoing animation and ignore any incoming animation
118
+ * while one is still ongoing.
119
+ * @param callback Callback to execute when the animation completes
120
+ */
121
+ private onAnimate;
122
+ /**
123
+ * Stop observing an animation when it's complete
124
+ */
125
+ private unAnimate;
126
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxComponent, never>;
127
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxComponent, "igo-toolbox", never, { "toolbox": { "alias": "toolbox"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
128
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/widget" />
5
+ export * from './public_api';
@@ -0,0 +1,3 @@
1
+ export * from './shared';
2
+ export * from './widget-outlet';
3
+ export * from './widget.module';
@@ -0,0 +1,4 @@
1
+ import { DynamicComponent } from '@igo2/common/dynamic-component';
2
+ import { WidgetComponent } from './widget.interfaces';
3
+ export declare class Widget extends DynamicComponent<WidgetComponent> {
4
+ }
@@ -0,0 +1,10 @@
1
+ import { DynamicComponentService } from '@igo2/common/dynamic-component';
2
+ import { Widget } from './widget';
3
+ import * as i0 from "@angular/core";
4
+ export declare class WidgetService {
5
+ private dynamicComponentService;
6
+ constructor(dynamicComponentService: DynamicComponentService);
7
+ create(widgetCls: any): Widget;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<WidgetService>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './widget-outlet.module';
2
+ export * from './widget-outlet.component';
@@ -0,0 +1,71 @@
1
+ import { EventEmitter, OnDestroy } from '@angular/core';
2
+ import { DynamicComponent } from '@igo2/common/dynamic-component';
3
+ import { WidgetComponent } from '../shared/widget.interfaces';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * This component dynamically renders a widget. It also subscribes
7
+ * to the widget's 'cancel' and 'complete' events and destroys it
8
+ * when any of those event is emitted.
9
+ */
10
+ export declare class WidgetOutletComponent implements OnDestroy {
11
+ /**
12
+ * Widget subscribers to 'cancel' and 'complete'
13
+ * @internal
14
+ */
15
+ private baseSubscribers;
16
+ /**
17
+ * Widget
18
+ */
19
+ widget: DynamicComponent<WidgetComponent>;
20
+ /**
21
+ * Widget inputs
22
+ */
23
+ inputs: {
24
+ [key: string]: any;
25
+ };
26
+ /**
27
+ * Widget subscribers
28
+ */
29
+ subscribers: {
30
+ [key: string]: (event: any) => void;
31
+ };
32
+ /**
33
+ * Event emitted when the widget emits 'complete'
34
+ */
35
+ complete: EventEmitter<any>;
36
+ /**
37
+ * Event emitted when the widget emits 'cancel'
38
+ */
39
+ cancel: EventEmitter<any>;
40
+ constructor();
41
+ /**
42
+ * Destroy the current widget and all it's inner subscriptions
43
+ * @internal
44
+ */
45
+ ngOnDestroy(): void;
46
+ /**
47
+ * Get the effective subscribers. That means a combination of the base
48
+ * subscribers and any subscriber given as input.
49
+ * @returns Combined subscribers
50
+ * @internal
51
+ */
52
+ getEffectiveSubscribers(): {
53
+ [key: string]: (event: any) => void;
54
+ };
55
+ /**
56
+ * When the widget emits 'cancel', propagate that event and destroy
57
+ * the widget
58
+ */
59
+ private onCancel;
60
+ /**
61
+ * When the widget emits 'complete', propagate that event and destroy
62
+ * the widget
63
+ */
64
+ private onComplete;
65
+ /**
66
+ * Destroy the current widget
67
+ */
68
+ private destroyWidget;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetOutletComponent, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetOutletComponent, "igo-widget-outlet", never, { "widget": { "alias": "widget"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "subscribers": { "alias": "subscribers"; "required": false; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, true, never>;
71
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@igo2/common/workspace" />
5
+ export * from './public_api';
@@ -0,0 +1,4 @@
1
+ export * from './shared';
2
+ export * from './workspace.module';
3
+ export * from './workspace-selector';
4
+ export * from './workspace-widget-outlet';
@@ -0,0 +1,20 @@
1
+ import { EntityStore } from '@igo2/common/entity';
2
+ import { BehaviorSubject } from 'rxjs';
3
+ import { Workspace } from './workspace';
4
+ /**
5
+ * The class is a specialized version of an EntityStore that stores
6
+ * workspaces.
7
+ */
8
+ export declare class WorkspaceStore extends EntityStore<Workspace> {
9
+ activeWorkspace$: BehaviorSubject<Workspace>;
10
+ /**
11
+ * Activate the an workspace workspace and deactivate the one currently active
12
+ * @param workspace Workspace
13
+ */
14
+ activateWorkspace(workspace: Workspace): void;
15
+ /**
16
+ * Deactivate the current workspace
17
+ * @param workspace Workspace
18
+ */
19
+ deactivateWorkspace(): void;
20
+ }
@@ -0,0 +1,108 @@
1
+ import { ActionStore } from '@igo2/common/action';
2
+ import { EntityStore } from '@igo2/common/entity';
3
+ import { Widget } from '@igo2/common/widget';
4
+ import { BehaviorSubject } from 'rxjs';
5
+ import { WorkspaceOptions } from './workspace.interfaces';
6
+ /**
7
+ * This class is responsible of managing the relations between
8
+ * entities and the actions that consume them. It also defines an
9
+ * entity table template that may be used by an entity table component.
10
+ */
11
+ export declare class Workspace<E extends object = object> {
12
+ protected options: WorkspaceOptions;
13
+ /**
14
+ * Observable of the selected widget
15
+ */
16
+ readonly widget$: BehaviorSubject<Widget>;
17
+ /**
18
+ * Observable of the selected widget's inputs
19
+ */
20
+ readonly widgetInputs$: BehaviorSubject<{
21
+ [key: string]: any;
22
+ }>;
23
+ /**
24
+ * Observable of the selected widget's subscribers
25
+ */
26
+ readonly widgetSubscribers$: BehaviorSubject<{
27
+ [key: string]: (event: any) => void;
28
+ }>;
29
+ /**
30
+ * Subscription to the selected entity
31
+ */
32
+ private entities$$;
33
+ /**
34
+ * State change that trigger an update of the actions availability
35
+ */
36
+ private change;
37
+ /**
38
+ * Subscription to state changes
39
+ */
40
+ private change$;
41
+ /**
42
+ * Workspace id
43
+ */
44
+ get id(): string;
45
+ /**
46
+ * Workspace title
47
+ */
48
+ get title(): string;
49
+ /**
50
+ * Workspace title
51
+ */
52
+ get meta(): {
53
+ [key: string]: any;
54
+ };
55
+ /**
56
+ * Entities store
57
+ */
58
+ get entityStore(): EntityStore<E>;
59
+ /**
60
+ * Actions store (some actions activate a widget)
61
+ */
62
+ get actionStore(): ActionStore;
63
+ /**
64
+ * Selected widget
65
+ */
66
+ get widget(): Widget;
67
+ /**
68
+ * Whether a widget is selected
69
+ */
70
+ get hasWidget(): boolean;
71
+ constructor(options: WorkspaceOptions);
72
+ /**
73
+ * Whether this strategy is active
74
+ * @internal
75
+ */
76
+ get active(): boolean;
77
+ readonly active$: BehaviorSubject<boolean>;
78
+ /**
79
+ * Activate the workspace. By doing that, the workspace will observe
80
+ * the selected entity (from the store) and update the actions availability.
81
+ * For example, some actions require an entity to be selected.
82
+ */
83
+ activate(): void;
84
+ /**
85
+ * Deactivate the workspace. Unsubcribe to the selected entity.
86
+ */
87
+ deactivate(): void;
88
+ /**
89
+ * Activate a widget. In itself, activating a widget doesn't render it but,
90
+ * if an WorkspaceWidgetOutlet component is bound to this workspace, the widget will
91
+ * show up.
92
+ * @param widget Widget
93
+ * @param inputs Inputs the widget will receive
94
+ */
95
+ activateWidget(widget: Widget, inputs?: {
96
+ [key: string]: any;
97
+ }, subscribers?: {
98
+ [key: string]: (event: any) => void;
99
+ }): void;
100
+ /**
101
+ * Deactivate a widget.
102
+ */
103
+ deactivateWidget(): void;
104
+ /**
105
+ * When the state changes, update the actions availability.
106
+ */
107
+ private onStateChange;
108
+ }
@@ -0,0 +1,11 @@
1
+ import { ActionStore } from '@igo2/common/action';
2
+ import { EntityStore } from '@igo2/common/entity';
3
+ export interface WorkspaceOptions {
4
+ id: string;
5
+ title: string;
6
+ entityStore?: EntityStore<object>;
7
+ actionStore?: ActionStore;
8
+ meta?: {
9
+ [key: string]: any;
10
+ };
11
+ }
@@ -0,0 +1,2 @@
1
+ export * from './workspace-selector.module';
2
+ export * from './workspace-selector.component';
@@ -0,0 +1,38 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { EntitySelectorChange } from '@igo2/common/entity';
3
+ import { WorkspaceStore } from '../shared/store';
4
+ import { Workspace } from '../shared/workspace';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * Drop list that activates the selected workspace emit an event.
8
+ */
9
+ export declare class WorkspaceSelectorComponent {
10
+ /**
11
+ * Store that holds the available workspaces.
12
+ */
13
+ store: WorkspaceStore;
14
+ /**
15
+ * Wheither the selector must be disabled or not.
16
+ */
17
+ disabled: boolean;
18
+ /**
19
+ * Event emitted when an workspace is selected or unselected
20
+ */
21
+ selectedChange: EventEmitter<{
22
+ selected: boolean;
23
+ value: Workspace;
24
+ }>;
25
+ /**
26
+ * @internal
27
+ */
28
+ getWorkspaceTitle(workspace: Workspace): string;
29
+ /**
30
+ * When an workspace is manually selected, select it into the
31
+ * store and emit an event.
32
+ * @internal
33
+ * @param event The selection change event
34
+ */
35
+ onSelectedChange(event: EntitySelectorChange<Workspace>): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": { "alias": "store"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedChange": "selectedChange"; }, never, never, true, never>;
38
+ }
@@ -0,0 +1,2 @@
1
+ export * from './workspace-widget-outlet.module';
2
+ export * from './workspace-widget-outlet.component';