@igo2/common 16.3.0 → 17.0.0-next.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (909) hide show
  1. package/action/action.module.d.ts +10 -0
  2. package/action/actionbar/actionbar-item.component.d.ts +75 -0
  3. package/action/actionbar/actionbar.component.d.ts +148 -0
  4. package/action/actionbar/actionbar.module.d.ts +10 -0
  5. package/action/index.d.ts +5 -0
  6. package/action/public_api.d.ts +4 -0
  7. package/action/shared/action.interfaces.d.ts +18 -0
  8. package/action/shared/store.d.ts +8 -0
  9. package/action/src/action.theming.scss +5 -0
  10. package/action/src/actionbar/actionbar-item.theming.scss +32 -0
  11. package/action/src/actionbar/actionbar.theming.scss +22 -0
  12. package/backdrop/backdrop.component.d.ts +9 -0
  13. package/backdrop/backdrop.module.d.ts +12 -0
  14. package/backdrop/index.d.ts +5 -0
  15. package/backdrop/public_api.d.ts +2 -0
  16. package/badge/badge-icon.directive.d.ts +34 -0
  17. package/badge/badge-icon.module.d.ts +12 -0
  18. package/badge/index.d.ts +5 -0
  19. package/badge/public_api.d.ts +2 -0
  20. package/clickout/clickout.directive.d.ts +10 -0
  21. package/clickout/clickout.module.d.ts +12 -0
  22. package/clickout/index.d.ts +5 -0
  23. package/clickout/public_api.d.ts +2 -0
  24. package/clone/clone.module.d.ts +12 -0
  25. package/clone/clone.pipe.d.ts +7 -0
  26. package/clone/index.d.ts +5 -0
  27. package/clone/public_api.d.ts +2 -0
  28. package/collapsible/collapse.directive.d.ts +19 -0
  29. package/collapsible/collapsible.component.d.ts +13 -0
  30. package/collapsible/collapsible.module.d.ts +13 -0
  31. package/collapsible/index.d.ts +5 -0
  32. package/collapsible/public_api.d.ts +6 -0
  33. package/collapsible/src/collapsible.theming.scss +22 -0
  34. package/color/color-picker-form-field/color-picker-form-field.component.d.ts +29 -0
  35. package/color/color-picker-form-field/color-picker-form-field.module.d.ts +10 -0
  36. package/color/color-picker-form-field/index.d.ts +2 -0
  37. package/color/index.d.ts +5 -0
  38. package/color/public_api.d.ts +1 -0
  39. package/confirm-dialog/confirm-dialog.component.d.ts +12 -0
  40. package/confirm-dialog/confirm-dialog.module.d.ts +12 -0
  41. package/confirm-dialog/index.d.ts +5 -0
  42. package/confirm-dialog/public_api.d.ts +4 -0
  43. package/context-menu/context-menu.directive.d.ts +21 -0
  44. package/context-menu/context-menu.module.d.ts +13 -0
  45. package/context-menu/index.d.ts +5 -0
  46. package/context-menu/long-press.directive.d.ts +20 -0
  47. package/context-menu/public_api.d.ts +6 -0
  48. package/custom-html/custom-html.component.d.ts +9 -0
  49. package/custom-html/custom-html.module.d.ts +13 -0
  50. package/custom-html/custom-html.pipe.d.ts +10 -0
  51. package/custom-html/index.d.ts +5 -0
  52. package/custom-html/public_api.d.ts +6 -0
  53. package/dom/dom.module.d.ts +14 -0
  54. package/dom/index.d.ts +5 -0
  55. package/dom/public_api.d.ts +3 -0
  56. package/drag-drop/drag-drop.directive.d.ts +14 -0
  57. package/drag-drop/drag-drop.module.d.ts +12 -0
  58. package/drag-drop/index.d.ts +5 -0
  59. package/drag-drop/public_api.d.ts +2 -0
  60. package/dynamic-component/dynamic-component.module.d.ts +10 -0
  61. package/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +70 -0
  62. package/dynamic-component/dynamic-outlet/dynamic-outlet.module.d.ts +10 -0
  63. package/dynamic-component/index.d.ts +5 -0
  64. package/dynamic-component/public_api.d.ts +4 -0
  65. package/entity/entity-selector/entity-selector.component.d.ts +93 -0
  66. package/entity/entity-selector/entity-selector.module.d.ts +10 -0
  67. package/entity/entity-selector/index.d.ts +2 -0
  68. package/entity/entity-table/entity-table-row.directive.d.ts +69 -0
  69. package/entity/entity-table/entity-table.component.d.ts +342 -0
  70. package/entity/entity-table/entity-table.module.d.ts +10 -0
  71. package/entity/entity-table/index.d.ts +2 -0
  72. package/entity/entity-table-paginator/entity-table-paginator.component.d.ts +50 -0
  73. package/entity/entity-table-paginator/entity-table-paginator.module.d.ts +10 -0
  74. package/entity/entity-table-paginator/index.d.ts +3 -0
  75. package/entity/entity.module.d.ts +16 -0
  76. package/entity/index.d.ts +5 -0
  77. package/entity/public_api.d.ts +5 -0
  78. package/entity/shared/entity.interfaces.d.ts +102 -0
  79. package/entity/shared/transaction.d.ts +179 -0
  80. package/entity/src/entity-selector/entity-selector.theming.scss +21 -0
  81. package/entity/src/entity-table/entity-table.theming.scss +37 -0
  82. package/entity/src/entity.theming.scss +7 -0
  83. package/environment/index.d.ts +5 -0
  84. package/esm2022/action/action.module.mjs +19 -0
  85. package/esm2022/action/actionbar/actionbar-item.component.mjs +192 -0
  86. package/esm2022/action/actionbar/actionbar.component.mjs +277 -0
  87. package/esm2022/action/actionbar/actionbar.module.mjs +19 -0
  88. package/esm2022/action/igo2-common-action.mjs +5 -0
  89. package/esm2022/action/public_api.mjs +5 -0
  90. package/esm2022/action/shared/action.enums.mjs +7 -0
  91. package/esm2022/action/shared/action.interfaces.mjs +2 -0
  92. package/esm2022/action/shared/index.mjs +4 -0
  93. package/esm2022/action/shared/store.mjs +8 -0
  94. package/esm2022/backdrop/backdrop.component.mjs +22 -0
  95. package/esm2022/backdrop/backdrop.module.mjs +25 -0
  96. package/esm2022/backdrop/igo2-common-backdrop.mjs +5 -0
  97. package/esm2022/backdrop/public_api.mjs +3 -0
  98. package/esm2022/badge/badge-icon.directive.mjs +149 -0
  99. package/esm2022/badge/badge-icon.module.mjs +25 -0
  100. package/esm2022/badge/igo2-common-badge.mjs +5 -0
  101. package/esm2022/badge/public_api.mjs +3 -0
  102. package/esm2022/clickout/clickout.directive.mjs +32 -0
  103. package/esm2022/clickout/clickout.module.mjs +25 -0
  104. package/esm2022/clickout/igo2-common-clickout.mjs +5 -0
  105. package/esm2022/clickout/public_api.mjs +3 -0
  106. package/esm2022/clone/clone.module.mjs +25 -0
  107. package/esm2022/clone/clone.pipe.mjs +25 -0
  108. package/esm2022/clone/igo2-common-clone.mjs +5 -0
  109. package/esm2022/clone/public_api.mjs +3 -0
  110. package/esm2022/collapsible/collapse.directive.mjs +57 -0
  111. package/esm2022/collapsible/collapsible.component.mjs +38 -0
  112. package/esm2022/collapsible/collapsible.module.mjs +26 -0
  113. package/esm2022/collapsible/igo2-common-collapsible.mjs +5 -0
  114. package/esm2022/collapsible/public_api.mjs +10 -0
  115. package/esm2022/color/color-picker-form-field/color-picker-form-field.component.mjs +104 -0
  116. package/esm2022/color/color-picker-form-field/color-picker-form-field.module.mjs +19 -0
  117. package/esm2022/color/color-picker-form-field/index.mjs +3 -0
  118. package/esm2022/color/igo2-common-color.mjs +5 -0
  119. package/esm2022/color/public_api.mjs +2 -0
  120. package/esm2022/confirm-dialog/confirm-dialog.component.mjs +31 -0
  121. package/esm2022/confirm-dialog/confirm-dialog.interface.mjs +2 -0
  122. package/esm2022/confirm-dialog/confirm-dialog.module.mjs +27 -0
  123. package/esm2022/confirm-dialog/confirm-dialog.service.mjs +35 -0
  124. package/esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs +5 -0
  125. package/esm2022/confirm-dialog/public_api.mjs +5 -0
  126. package/esm2022/context-menu/context-menu.directive.mjs +109 -0
  127. package/esm2022/context-menu/context-menu.module.mjs +26 -0
  128. package/esm2022/context-menu/igo2-common-context-menu.mjs +5 -0
  129. package/esm2022/context-menu/long-press.directive.mjs +66 -0
  130. package/esm2022/context-menu/public_api.mjs +10 -0
  131. package/esm2022/custom-html/custom-html.component.mjs +22 -0
  132. package/esm2022/custom-html/custom-html.module.mjs +25 -0
  133. package/esm2022/custom-html/custom-html.pipe.mjs +23 -0
  134. package/esm2022/custom-html/igo2-common-custom-html.mjs +5 -0
  135. package/esm2022/custom-html/public_api.mjs +10 -0
  136. package/esm2022/dom/dom.interfaces.mjs +2 -0
  137. package/esm2022/dom/dom.module.mjs +27 -0
  138. package/esm2022/dom/dom.service.mjs +35 -0
  139. package/esm2022/dom/igo2-common-dom.mjs +5 -0
  140. package/esm2022/dom/public_api.mjs +4 -0
  141. package/esm2022/drag-drop/drag-drop.directive.mjs +82 -0
  142. package/esm2022/drag-drop/drag-drop.module.mjs +25 -0
  143. package/esm2022/drag-drop/igo2-common-drag-drop.mjs +5 -0
  144. package/esm2022/drag-drop/public_api.mjs +3 -0
  145. package/esm2022/dynamic-component/dynamic-component.module.mjs +19 -0
  146. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +129 -0
  147. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +19 -0
  148. package/esm2022/dynamic-component/igo2-common-dynamic-component.mjs +5 -0
  149. package/esm2022/dynamic-component/public_api.mjs +5 -0
  150. package/esm2022/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -0
  151. package/esm2022/dynamic-component/shared/dynamic-component.mjs +183 -0
  152. package/esm2022/dynamic-component/shared/dynamic-component.service.mjs +30 -0
  153. package/esm2022/dynamic-component/shared/index.mjs +4 -0
  154. package/esm2022/entity/entity-selector/entity-selector.component.mjs +174 -0
  155. package/esm2022/entity/entity-selector/entity-selector.module.mjs +19 -0
  156. package/esm2022/entity/entity-selector/index.mjs +3 -0
  157. package/esm2022/entity/entity-table/entity-table-row.directive.mjs +138 -0
  158. package/esm2022/entity/entity-table/entity-table.component.mjs +883 -0
  159. package/esm2022/entity/entity-table/entity-table.module.mjs +19 -0
  160. package/esm2022/entity/entity-table/index.mjs +3 -0
  161. package/esm2022/entity/entity-table-paginator/entity-table-paginator.component.mjs +158 -0
  162. package/esm2022/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
  163. package/esm2022/entity/entity-table-paginator/entity-table-paginator.module.mjs +19 -0
  164. package/esm2022/entity/entity-table-paginator/index.mjs +4 -0
  165. package/esm2022/entity/entity.module.mjs +30 -0
  166. package/esm2022/entity/igo2-common-entity.mjs +5 -0
  167. package/esm2022/entity/public_api.mjs +6 -0
  168. package/esm2022/entity/shared/entity.enums.mjs +28 -0
  169. package/esm2022/entity/shared/entity.interfaces.mjs +2 -0
  170. package/esm2022/entity/shared/entity.utils.mjs +73 -0
  171. package/esm2022/entity/shared/index.mjs +10 -0
  172. package/esm2022/entity/shared/state.mjs +194 -0
  173. package/esm2022/entity/shared/store.mjs +322 -0
  174. package/esm2022/entity/shared/strategies/filter-custom-function.mjs +80 -0
  175. package/esm2022/entity/shared/strategies/filter-selection.mjs +81 -0
  176. package/esm2022/entity/shared/strategies/index.mjs +4 -0
  177. package/esm2022/entity/shared/strategies/strategy.mjs +78 -0
  178. package/esm2022/entity/shared/transaction.mjs +329 -0
  179. package/esm2022/entity/shared/view.mjs +330 -0
  180. package/esm2022/entity/shared/watcher.mjs +135 -0
  181. package/esm2022/environment/environment.interface.mjs +2 -0
  182. package/esm2022/environment/igo2-common-environment.mjs +5 -0
  183. package/esm2022/environment/public_api.mjs +2 -0
  184. package/esm2022/flexible/flexible.component.mjs +135 -0
  185. package/esm2022/flexible/flexible.module.mjs +25 -0
  186. package/esm2022/flexible/flexible.type.mjs +2 -0
  187. package/esm2022/flexible/igo2-common-flexible.mjs +5 -0
  188. package/esm2022/flexible/public_api.mjs +4 -0
  189. package/esm2022/form/form/form.component.mjs +103 -0
  190. package/esm2022/form/form/form.module.mjs +19 -0
  191. package/esm2022/form/form/index.mjs +3 -0
  192. package/esm2022/form/form-dialog/form-dialog.component.mjs +94 -0
  193. package/esm2022/form/form-dialog/form-dialog.interface.mjs +2 -0
  194. package/esm2022/form/form-dialog/form-dialog.module.mjs +31 -0
  195. package/esm2022/form/form-dialog/form-dialog.service.mjs +30 -0
  196. package/esm2022/form/form-dialog/index.mjs +5 -0
  197. package/esm2022/form/form-field/form-field-select.component.mjs +117 -0
  198. package/esm2022/form/form-field/form-field-text.component.mjs +126 -0
  199. package/esm2022/form/form-field/form-field-textarea.component.mjs +95 -0
  200. package/esm2022/form/form-field/form-field.component.mjs +65 -0
  201. package/esm2022/form/form-field/form-field.directive.mjs +11 -0
  202. package/esm2022/form/form-field/form-field.module.mjs +23 -0
  203. package/esm2022/form/form-field/index.mjs +7 -0
  204. package/esm2022/form/form-group/form-group.component.mjs +82 -0
  205. package/esm2022/form/form-group/form-group.module.mjs +19 -0
  206. package/esm2022/form/form-group/index.mjs +3 -0
  207. package/esm2022/form/form.module.mjs +32 -0
  208. package/esm2022/form/igo2-common-form.mjs +5 -0
  209. package/esm2022/form/public_api.mjs +7 -0
  210. package/esm2022/form/shared/form-field-component.mjs +7 -0
  211. package/esm2022/form/shared/form-field.service.mjs +29 -0
  212. package/esm2022/form/shared/form.interfaces.mjs +2 -0
  213. package/esm2022/form/shared/form.service.mjs +82 -0
  214. package/esm2022/form/shared/form.utils.mjs +41 -0
  215. package/esm2022/form/shared/index.mjs +6 -0
  216. package/esm2022/home-button/home-button.component.mjs +26 -0
  217. package/esm2022/home-button/home-button.module.mjs +19 -0
  218. package/esm2022/home-button/igo2-common-home-button.mjs +5 -0
  219. package/esm2022/home-button/public_api.mjs +3 -0
  220. package/esm2022/icon/icon/icon.component.mjs +38 -0
  221. package/esm2022/icon/icon.provider.mjs +14 -0
  222. package/esm2022/icon/igo2-common-icon.mjs +5 -0
  223. package/esm2022/icon/public_api.mjs +4 -0
  224. package/esm2022/icon/shared/icon.interface.mjs +2 -0
  225. package/esm2022/icon/shared/icon.service.mjs +26 -0
  226. package/esm2022/icon/shared/icons.mjs +32 -0
  227. package/esm2022/icon/shared/index.mjs +4 -0
  228. package/esm2022/image/igo2-common-image.mjs +5 -0
  229. package/esm2022/image/image-error.directive.mjs +35 -0
  230. package/esm2022/image/image.module.mjs +26 -0
  231. package/esm2022/image/public_api.mjs +7 -0
  232. package/esm2022/image/secure-image.pipe.mjs +66 -0
  233. package/esm2022/interactive-tour/igo2-common-interactive-tour.mjs +5 -0
  234. package/esm2022/interactive-tour/interactive-tour.component.mjs +133 -0
  235. package/esm2022/interactive-tour/interactive-tour.interface.mjs +2 -0
  236. package/esm2022/interactive-tour/interactive-tour.loader.mjs +49 -0
  237. package/esm2022/interactive-tour/interactive-tour.module.mjs +19 -0
  238. package/esm2022/interactive-tour/interactive-tour.service.mjs +303 -0
  239. package/esm2022/interactive-tour/public_api.mjs +6 -0
  240. package/esm2022/json-dialog/igo2-common-json-dialog.mjs +5 -0
  241. package/esm2022/json-dialog/json-dialog.component.mjs +38 -0
  242. package/esm2022/json-dialog/json-dialog.module.mjs +26 -0
  243. package/esm2022/json-dialog/json-dialog.service.mjs +26 -0
  244. package/esm2022/json-dialog/public_api.mjs +4 -0
  245. package/esm2022/keyvalue/igo2-common-keyvalue.mjs +5 -0
  246. package/esm2022/keyvalue/keyvalue.module.mjs +25 -0
  247. package/esm2022/keyvalue/keyvalue.pipe.mjs +19 -0
  248. package/esm2022/keyvalue/public_api.mjs +3 -0
  249. package/esm2022/list/igo2-common-list.mjs +5 -0
  250. package/esm2022/list/list-item.directive.mjs +166 -0
  251. package/esm2022/list/list.component.mjs +252 -0
  252. package/esm2022/list/list.module.mjs +26 -0
  253. package/esm2022/list/public_api.mjs +7 -0
  254. package/esm2022/panel/igo2-common-panel.mjs +5 -0
  255. package/esm2022/panel/panel.component.mjs +30 -0
  256. package/esm2022/panel/panel.module.mjs +19 -0
  257. package/esm2022/panel/public_api.mjs +3 -0
  258. package/esm2022/public_api.mjs +17 -78
  259. package/esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs +5 -0
  260. package/esm2022/select-value-dialog/public_api.mjs +6 -0
  261. package/esm2022/select-value-dialog/select-value-check-radio-dialog.component.mjs +103 -0
  262. package/esm2022/select-value-dialog/select-value-dialog.enums.mjs +6 -0
  263. package/esm2022/select-value-dialog/select-value-dialog.interface.mjs +2 -0
  264. package/esm2022/select-value-dialog/select-value-dialog.module.mjs +27 -0
  265. package/esm2022/select-value-dialog/select-value-dialog.service.mjs +29 -0
  266. package/esm2022/sidenav/igo2-common-sidenav.mjs +5 -0
  267. package/esm2022/sidenav/public_api.mjs +3 -0
  268. package/esm2022/sidenav/sidenav-shim.directive.mjs +58 -0
  269. package/esm2022/sidenav/sidenav.module.mjs +25 -0
  270. package/esm2022/spinner/igo2-common-spinner.mjs +5 -0
  271. package/esm2022/spinner/public_api.mjs +4 -0
  272. package/esm2022/spinner/spinner-activity.directive.mjs +56 -0
  273. package/esm2022/spinner/spinner.component.mjs +30 -0
  274. package/esm2022/spinner/spinner.module.mjs +26 -0
  275. package/esm2022/stop-propagation/igo2-common-stop-propagation.mjs +5 -0
  276. package/esm2022/stop-propagation/public_api.mjs +10 -0
  277. package/esm2022/stop-propagation/stop-drop-propagation.directive.mjs +21 -0
  278. package/esm2022/stop-propagation/stop-propagation.directive.mjs +20 -0
  279. package/esm2022/stop-propagation/stop-propagation.module.mjs +26 -0
  280. package/esm2022/table/igo2-common-table.mjs +5 -0
  281. package/esm2022/table/public_api.mjs +7 -0
  282. package/esm2022/table/table-action-color.enum.mjs +7 -0
  283. package/esm2022/table/table-database.mjs +28 -0
  284. package/esm2022/table/table-datasource.mjs +64 -0
  285. package/esm2022/table/table-model.interface.mjs +2 -0
  286. package/esm2022/table/table.component.mjs +143 -0
  287. package/esm2022/table/table.module.mjs +25 -0
  288. package/esm2022/tool/igo2-common-tool.mjs +5 -0
  289. package/esm2022/tool/public_api.mjs +4 -0
  290. package/esm2022/tool/shared/index.mjs +6 -0
  291. package/esm2022/tool/shared/tool-component.mjs +9 -0
  292. package/esm2022/tool/shared/tool.interface.mjs +2 -0
  293. package/esm2022/tool/shared/tool.service.mjs +43 -0
  294. package/esm2022/tool/shared/toolbox.enums.mjs +2 -0
  295. package/esm2022/tool/shared/toolbox.mjs +192 -0
  296. package/esm2022/tool/tool.module.mjs +28 -0
  297. package/esm2022/tool/toolbox/index.mjs +3 -0
  298. package/esm2022/tool/toolbox/toolbox.animation.mjs +10 -0
  299. package/esm2022/tool/toolbox/toolbox.component.mjs +241 -0
  300. package/esm2022/tool/toolbox/toolbox.module.mjs +19 -0
  301. package/esm2022/widget/igo2-common-widget.mjs +5 -0
  302. package/esm2022/widget/public_api.mjs +4 -0
  303. package/esm2022/widget/shared/index.mjs +4 -0
  304. package/esm2022/widget/shared/widget.interfaces.mjs +2 -0
  305. package/esm2022/widget/shared/widget.mjs +4 -0
  306. package/esm2022/widget/shared/widget.service.mjs +22 -0
  307. package/esm2022/widget/widget-outlet/index.mjs +3 -0
  308. package/esm2022/widget/widget-outlet/widget-outlet.component.mjs +113 -0
  309. package/esm2022/widget/widget-outlet/widget-outlet.module.mjs +19 -0
  310. package/esm2022/widget/widget.module.mjs +22 -0
  311. package/esm2022/workspace/igo2-common-workspace.mjs +5 -0
  312. package/esm2022/workspace/public_api.mjs +5 -0
  313. package/esm2022/workspace/shared/index.mjs +4 -0
  314. package/esm2022/workspace/shared/store.mjs +37 -0
  315. package/esm2022/workspace/shared/workspace.interfaces.mjs +2 -0
  316. package/esm2022/workspace/shared/workspace.mjs +143 -0
  317. package/esm2022/workspace/workspace-selector/index.mjs +3 -0
  318. package/esm2022/workspace/workspace-selector/workspace-selector.component.mjs +51 -0
  319. package/esm2022/workspace/workspace-selector/workspace-selector.module.mjs +19 -0
  320. package/esm2022/workspace/workspace-widget-outlet/index.mjs +3 -0
  321. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +74 -0
  322. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +19 -0
  323. package/esm2022/workspace/workspace.module.mjs +27 -0
  324. package/fesm2022/igo2-common-action.mjs +505 -0
  325. package/fesm2022/igo2-common-action.mjs.map +1 -0
  326. package/fesm2022/igo2-common-backdrop.mjs +51 -0
  327. package/fesm2022/igo2-common-backdrop.mjs.map +1 -0
  328. package/fesm2022/igo2-common-badge.mjs +178 -0
  329. package/fesm2022/igo2-common-badge.mjs.map +1 -0
  330. package/fesm2022/igo2-common-clickout.mjs +61 -0
  331. package/fesm2022/igo2-common-clickout.mjs.map +1 -0
  332. package/fesm2022/igo2-common-clone.mjs +54 -0
  333. package/fesm2022/igo2-common-clone.mjs.map +1 -0
  334. package/fesm2022/igo2-common-collapsible.mjs +126 -0
  335. package/fesm2022/igo2-common-collapsible.mjs.map +1 -0
  336. package/fesm2022/igo2-common-color.mjs +127 -0
  337. package/fesm2022/igo2-common-color.mjs.map +1 -0
  338. package/fesm2022/igo2-common-confirm-dialog.mjs +91 -0
  339. package/fesm2022/igo2-common-confirm-dialog.mjs.map +1 -0
  340. package/fesm2022/igo2-common-context-menu.mjs +206 -0
  341. package/fesm2022/igo2-common-context-menu.mjs.map +1 -0
  342. package/fesm2022/igo2-common-custom-html.mjs +74 -0
  343. package/fesm2022/igo2-common-custom-html.mjs.map +1 -0
  344. package/fesm2022/igo2-common-dom.mjs +65 -0
  345. package/fesm2022/igo2-common-dom.mjs.map +1 -0
  346. package/fesm2022/igo2-common-drag-drop.mjs +111 -0
  347. package/fesm2022/igo2-common-drag-drop.mjs.map +1 -0
  348. package/fesm2022/igo2-common-dynamic-component.mjs +375 -0
  349. package/fesm2022/igo2-common-dynamic-component.mjs.map +1 -0
  350. package/fesm2022/igo2-common-entity.mjs +3036 -0
  351. package/fesm2022/igo2-common-entity.mjs.map +1 -0
  352. package/fesm2022/igo2-common-environment.mjs +4 -0
  353. package/fesm2022/igo2-common-environment.mjs.map +1 -0
  354. package/fesm2022/igo2-common-flexible.mjs +163 -0
  355. package/fesm2022/igo2-common-flexible.mjs.map +1 -0
  356. package/fesm2022/igo2-common-form.mjs +898 -0
  357. package/fesm2022/igo2-common-form.mjs.map +1 -0
  358. package/fesm2022/igo2-common-home-button.mjs +49 -0
  359. package/fesm2022/igo2-common-home-button.mjs.map +1 -0
  360. package/fesm2022/igo2-common-icon.mjs +108 -0
  361. package/fesm2022/igo2-common-icon.mjs.map +1 -0
  362. package/fesm2022/igo2-common-image.mjs +129 -0
  363. package/fesm2022/igo2-common-image.mjs.map +1 -0
  364. package/fesm2022/igo2-common-interactive-tour.mjs +490 -0
  365. package/fesm2022/igo2-common-interactive-tour.mjs.map +1 -0
  366. package/fesm2022/igo2-common-json-dialog.mjs +88 -0
  367. package/fesm2022/igo2-common-json-dialog.mjs.map +1 -0
  368. package/fesm2022/igo2-common-keyvalue.mjs +48 -0
  369. package/fesm2022/igo2-common-keyvalue.mjs.map +1 -0
  370. package/fesm2022/igo2-common-list.mjs +446 -0
  371. package/fesm2022/igo2-common-list.mjs.map +1 -0
  372. package/fesm2022/igo2-common-panel.mjs +53 -0
  373. package/fesm2022/igo2-common-panel.mjs.map +1 -0
  374. package/fesm2022/igo2-common-select-value-dialog.mjs +161 -0
  375. package/fesm2022/igo2-common-select-value-dialog.mjs.map +1 -0
  376. package/fesm2022/igo2-common-sidenav.mjs +86 -0
  377. package/fesm2022/igo2-common-sidenav.mjs.map +1 -0
  378. package/fesm2022/igo2-common-spinner.mjs +110 -0
  379. package/fesm2022/igo2-common-spinner.mjs.map +1 -0
  380. package/fesm2022/igo2-common-stop-propagation.mjs +73 -0
  381. package/fesm2022/igo2-common-stop-propagation.mjs.map +1 -0
  382. package/fesm2022/igo2-common-table.mjs +264 -0
  383. package/fesm2022/igo2-common-table.mjs.map +1 -0
  384. package/fesm2022/igo2-common-tool.mjs +535 -0
  385. package/fesm2022/igo2-common-tool.mjs.map +1 -0
  386. package/fesm2022/igo2-common-widget.mjs +176 -0
  387. package/fesm2022/igo2-common-widget.mjs.map +1 -0
  388. package/fesm2022/igo2-common-workspace.mjs +361 -0
  389. package/fesm2022/igo2-common-workspace.mjs.map +1 -0
  390. package/fesm2022/igo2-common.mjs +16 -8760
  391. package/fesm2022/igo2-common.mjs.map +1 -1
  392. package/flexible/flexible.component.d.ts +41 -0
  393. package/flexible/flexible.module.d.ts +12 -0
  394. package/flexible/index.d.ts +5 -0
  395. package/flexible/public_api.d.ts +3 -0
  396. package/form/form/form.component.d.ts +53 -0
  397. package/form/form/form.module.d.ts +10 -0
  398. package/form/form/index.d.ts +2 -0
  399. package/form/form-dialog/form-dialog.component.d.ts +23 -0
  400. package/form/form-dialog/form-dialog.interface.d.ts +18 -0
  401. package/form/form-dialog/form-dialog.module.d.ts +16 -0
  402. package/form/form-dialog/index.d.ts +4 -0
  403. package/form/form-field/form-field-select.component.d.ts +52 -0
  404. package/form/form-field/form-field-text.component.d.ts +51 -0
  405. package/form/form-field/form-field-textarea.component.d.ts +41 -0
  406. package/form/form-field/form-field.component.d.ts +29 -0
  407. package/form/form-field/form-field.directive.d.ts +5 -0
  408. package/form/form-field/form-field.module.d.ts +13 -0
  409. package/form/form-field/index.d.ts +6 -0
  410. package/form/form-group/form-group.component.d.ts +49 -0
  411. package/form/form-group/form-group.module.d.ts +10 -0
  412. package/form/form-group/index.d.ts +2 -0
  413. package/form/form.module.d.ts +18 -0
  414. package/form/index.d.ts +5 -0
  415. package/form/public_api.d.ts +6 -0
  416. package/home-button/home-button.component.d.ts +9 -0
  417. package/home-button/home-button.module.d.ts +10 -0
  418. package/home-button/index.d.ts +5 -0
  419. package/home-button/public_api.d.ts +2 -0
  420. package/home-button/src/home-button.theming.scss +18 -0
  421. package/icon/icon/icon.component.d.ts +14 -0
  422. package/icon/icon.provider.d.ts +4 -0
  423. package/icon/index.d.ts +5 -0
  424. package/icon/public_api.d.ts +3 -0
  425. package/icon/shared/icon.interface.d.ts +4 -0
  426. package/icon/shared/icon.service.d.ts +12 -0
  427. package/icon/shared/icons.d.ts +9 -0
  428. package/icon/shared/index.d.ts +3 -0
  429. package/image/image-error.directive.d.ts +11 -0
  430. package/image/image.module.d.ts +13 -0
  431. package/image/index.d.ts +5 -0
  432. package/image/public_api.d.ts +6 -0
  433. package/image/secure-image.pipe.d.ts +13 -0
  434. package/interactive-tour/index.d.ts +5 -0
  435. package/interactive-tour/interactive-tour.component.d.ts +33 -0
  436. package/interactive-tour/interactive-tour.loader.d.ts +18 -0
  437. package/interactive-tour/interactive-tour.module.d.ts +7 -0
  438. package/interactive-tour/interactive-tour.service.d.ts +31 -0
  439. package/interactive-tour/public_api.d.ts +5 -0
  440. package/interactive-tour/src/interactive-tour.theming.scss +32 -0
  441. package/json-dialog/index.d.ts +5 -0
  442. package/json-dialog/json-dialog.component.d.ts +13 -0
  443. package/json-dialog/json-dialog.module.d.ts +12 -0
  444. package/json-dialog/public_api.d.ts +3 -0
  445. package/keyvalue/index.d.ts +5 -0
  446. package/keyvalue/keyvalue.module.d.ts +12 -0
  447. package/keyvalue/keyvalue.pipe.d.ts +7 -0
  448. package/keyvalue/public_api.d.ts +2 -0
  449. package/list/index.d.ts +5 -0
  450. package/list/list-item.directive.d.ts +43 -0
  451. package/list/list.component.d.ts +51 -0
  452. package/list/list.module.d.ts +13 -0
  453. package/list/public_api.d.ts +6 -0
  454. package/list/src/list.theming.scss +58 -0
  455. package/locale/en.common.json +59 -59
  456. package/locale/fr.common.json +59 -59
  457. package/package.json +206 -8
  458. package/panel/index.d.ts +5 -0
  459. package/panel/panel.component.d.ts +10 -0
  460. package/panel/panel.module.d.ts +10 -0
  461. package/panel/public_api.d.ts +2 -0
  462. package/panel/src/panel.theming.scss +30 -0
  463. package/public_api.d.ts +16 -77
  464. package/select-value-dialog/index.d.ts +5 -0
  465. package/select-value-dialog/public_api.d.ts +5 -0
  466. package/select-value-dialog/select-value-check-radio-dialog.component.d.ts +25 -0
  467. package/select-value-dialog/select-value-dialog.module.d.ts +12 -0
  468. package/sidenav/index.d.ts +5 -0
  469. package/sidenav/public_api.d.ts +2 -0
  470. package/sidenav/sidenav-shim.directive.d.ts +20 -0
  471. package/sidenav/sidenav.module.d.ts +12 -0
  472. package/spinner/index.d.ts +5 -0
  473. package/spinner/public_api.d.ts +3 -0
  474. package/spinner/spinner-activity.directive.d.ts +32 -0
  475. package/spinner/spinner.component.d.ts +12 -0
  476. package/spinner/spinner.module.d.ts +14 -0
  477. package/src/common-theme.scss +19 -19
  478. package/src/style/partial/common-utils.scss +9 -9
  479. package/src/style/partial/common.variables.scss +8 -8
  480. package/src/style/style.scss +1 -1
  481. package/stop-propagation/index.d.ts +5 -0
  482. package/stop-propagation/public_api.d.ts +6 -0
  483. package/stop-propagation/stop-drop-propagation.directive.d.ts +6 -0
  484. package/stop-propagation/stop-propagation.directive.d.ts +6 -0
  485. package/stop-propagation/stop-propagation.module.d.ts +13 -0
  486. package/table/index.d.ts +5 -0
  487. package/table/public_api.d.ts +6 -0
  488. package/table/table.component.d.ts +40 -0
  489. package/table/table.module.d.ts +12 -0
  490. package/tool/index.d.ts +5 -0
  491. package/tool/public_api.d.ts +3 -0
  492. package/tool/shared/tool.interface.d.ts +18 -0
  493. package/tool/shared/toolbox.d.ts +98 -0
  494. package/tool/shared/toolbox.enums.d.ts +1 -0
  495. package/tool/src/tool.theming.scss +5 -0
  496. package/tool/src/toolbox/toolbox.theming.scss +105 -0
  497. package/tool/tool.module.d.ts +15 -0
  498. package/tool/toolbox/index.d.ts +2 -0
  499. package/tool/toolbox/toolbox.component.d.ts +128 -0
  500. package/tool/toolbox/toolbox.module.d.ts +10 -0
  501. package/widget/index.d.ts +5 -0
  502. package/widget/public_api.d.ts +3 -0
  503. package/widget/shared/widget.d.ts +4 -0
  504. package/widget/shared/widget.service.d.ts +10 -0
  505. package/widget/widget-outlet/index.d.ts +2 -0
  506. package/widget/widget-outlet/widget-outlet.component.d.ts +71 -0
  507. package/widget/widget-outlet/widget-outlet.module.d.ts +10 -0
  508. package/widget/widget.module.d.ts +10 -0
  509. package/workspace/index.d.ts +5 -0
  510. package/workspace/public_api.d.ts +4 -0
  511. package/workspace/shared/store.d.ts +20 -0
  512. package/workspace/shared/workspace.d.ts +108 -0
  513. package/workspace/shared/workspace.interfaces.d.ts +11 -0
  514. package/workspace/workspace-selector/index.d.ts +2 -0
  515. package/workspace/workspace-selector/workspace-selector.component.d.ts +38 -0
  516. package/workspace/workspace-selector/workspace-selector.module.d.ts +10 -0
  517. package/workspace/workspace-widget-outlet/index.d.ts +2 -0
  518. package/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -0
  519. package/workspace/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +10 -0
  520. package/workspace/workspace.module.d.ts +14 -0
  521. package/esm2022/lib/action/action.module.mjs +0 -19
  522. package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +0 -190
  523. package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -258
  524. package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -56
  525. package/esm2022/lib/action/index.mjs +0 -3
  526. package/esm2022/lib/action/shared/action.enums.mjs +0 -7
  527. package/esm2022/lib/action/shared/action.interfaces.mjs +0 -2
  528. package/esm2022/lib/action/shared/index.mjs +0 -4
  529. package/esm2022/lib/action/shared/store.mjs +0 -8
  530. package/esm2022/lib/backdrop/backdrop.component.mjs +0 -22
  531. package/esm2022/lib/backdrop/backdrop.module.mjs +0 -24
  532. package/esm2022/lib/backdrop/index.mjs +0 -2
  533. package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -150
  534. package/esm2022/lib/badge-icon/badge-icon.module.mjs +0 -25
  535. package/esm2022/lib/badge-icon/index.mjs +0 -2
  536. package/esm2022/lib/clickout/clickout.directive.mjs +0 -31
  537. package/esm2022/lib/clickout/clickout.module.mjs +0 -23
  538. package/esm2022/lib/clickout/index.mjs +0 -2
  539. package/esm2022/lib/clone/clone.module.mjs +0 -23
  540. package/esm2022/lib/clone/clone.pipe.mjs +0 -24
  541. package/esm2022/lib/clone/index.mjs +0 -2
  542. package/esm2022/lib/collapsible/collapse.directive.mjs +0 -56
  543. package/esm2022/lib/collapsible/collapsible.component.mjs +0 -36
  544. package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
  545. package/esm2022/lib/collapsible/index.mjs +0 -3
  546. package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -91
  547. package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -51
  548. package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
  549. package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -23
  550. package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
  551. package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -28
  552. package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -34
  553. package/esm2022/lib/confirm-dialog/index.mjs +0 -4
  554. package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -108
  555. package/esm2022/lib/context-menu/context-menu.module.mjs +0 -24
  556. package/esm2022/lib/context-menu/index.mjs +0 -3
  557. package/esm2022/lib/context-menu/long-press.directive.mjs +0 -65
  558. package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
  559. package/esm2022/lib/custom-html/custom-html.module.mjs +0 -46
  560. package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -20
  561. package/esm2022/lib/custom-html/index.mjs +0 -3
  562. package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
  563. package/esm2022/lib/dom/dom.module.mjs +0 -21
  564. package/esm2022/lib/dom/dom.service.mjs +0 -35
  565. package/esm2022/lib/dom/index.mjs +0 -3
  566. package/esm2022/lib/drag-drop/drag-drop.directive.mjs +0 -81
  567. package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -23
  568. package/esm2022/lib/drag-drop/index.mjs +0 -2
  569. package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +0 -19
  570. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -129
  571. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -21
  572. package/esm2022/lib/dynamic-component/index.mjs +0 -3
  573. package/esm2022/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +0 -2
  574. package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +0 -183
  575. package/esm2022/lib/dynamic-component/shared/dynamic-component.service.mjs +0 -30
  576. package/esm2022/lib/dynamic-component/shared/index.mjs +0 -4
  577. package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +0 -164
  578. package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -23
  579. package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -137
  580. package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -842
  581. package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -95
  582. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -156
  583. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
  584. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -21
  585. package/esm2022/lib/entity/entity.module.mjs +0 -28
  586. package/esm2022/lib/entity/index.mjs +0 -6
  587. package/esm2022/lib/entity/shared/entity.enums.mjs +0 -28
  588. package/esm2022/lib/entity/shared/entity.interfaces.mjs +0 -2
  589. package/esm2022/lib/entity/shared/entity.utils.mjs +0 -73
  590. package/esm2022/lib/entity/shared/index.mjs +0 -10
  591. package/esm2022/lib/entity/shared/state.mjs +0 -194
  592. package/esm2022/lib/entity/shared/store.mjs +0 -322
  593. package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +0 -80
  594. package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +0 -81
  595. package/esm2022/lib/entity/shared/strategies/index.mjs +0 -4
  596. package/esm2022/lib/entity/shared/strategies/strategy.mjs +0 -78
  597. package/esm2022/lib/entity/shared/transaction.mjs +0 -329
  598. package/esm2022/lib/entity/shared/view.mjs +0 -330
  599. package/esm2022/lib/entity/shared/watcher.mjs +0 -135
  600. package/esm2022/lib/environment/environment.interface.mjs +0 -2
  601. package/esm2022/lib/environment/index.mjs +0 -2
  602. package/esm2022/lib/flexible/flexible.component.mjs +0 -135
  603. package/esm2022/lib/flexible/flexible.module.mjs +0 -23
  604. package/esm2022/lib/flexible/flexible.type.mjs +0 -2
  605. package/esm2022/lib/flexible/index.mjs +0 -3
  606. package/esm2022/lib/form/form/form.component.mjs +0 -102
  607. package/esm2022/lib/form/form/form.module.mjs +0 -22
  608. package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -99
  609. package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -109
  610. package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -80
  611. package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
  612. package/esm2022/lib/form/form-field/form-field.module.mjs +0 -77
  613. package/esm2022/lib/form/form-field/index.mjs +0 -5
  614. package/esm2022/lib/form/form-group/form-group.component.mjs +0 -73
  615. package/esm2022/lib/form/form-group/form-group.module.mjs +0 -35
  616. package/esm2022/lib/form/form.module.mjs +0 -26
  617. package/esm2022/lib/form/index.mjs +0 -5
  618. package/esm2022/lib/form/shared/form-field-component.mjs +0 -7
  619. package/esm2022/lib/form/shared/form-field.service.mjs +0 -29
  620. package/esm2022/lib/form/shared/form.interfaces.mjs +0 -2
  621. package/esm2022/lib/form/shared/form.service.mjs +0 -82
  622. package/esm2022/lib/form/shared/form.utils.mjs +0 -41
  623. package/esm2022/lib/form/shared/index.mjs +0 -6
  624. package/esm2022/lib/form-dialog/form-dialog.component.mjs +0 -80
  625. package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
  626. package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -52
  627. package/esm2022/lib/form-dialog/form-dialog.service.mjs +0 -30
  628. package/esm2022/lib/form-dialog/index.mjs +0 -4
  629. package/esm2022/lib/home-button/home-button.component.mjs +0 -22
  630. package/esm2022/lib/home-button/home-button.module.mjs +0 -40
  631. package/esm2022/lib/home-button/index.mjs +0 -2
  632. package/esm2022/lib/image/image-error.directive.mjs +0 -34
  633. package/esm2022/lib/image/image.module.mjs +0 -24
  634. package/esm2022/lib/image/index.mjs +0 -3
  635. package/esm2022/lib/image/secure-image.pipe.mjs +0 -65
  636. package/esm2022/lib/interactive-tour/index.mjs +0 -5
  637. package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -114
  638. package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
  639. package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +0 -49
  640. package/esm2022/lib/interactive-tour/interactive-tour.module.mjs +0 -39
  641. package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +0 -299
  642. package/esm2022/lib/json-dialog/index.mjs +0 -3
  643. package/esm2022/lib/json-dialog/json-dialog.component.mjs +0 -29
  644. package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -28
  645. package/esm2022/lib/json-dialog/json-dialog.service.mjs +0 -26
  646. package/esm2022/lib/keyvalue/index.mjs +0 -2
  647. package/esm2022/lib/keyvalue/keyvalue.module.mjs +0 -23
  648. package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -18
  649. package/esm2022/lib/list/index.mjs +0 -3
  650. package/esm2022/lib/list/list-item.directive.mjs +0 -165
  651. package/esm2022/lib/list/list.component.mjs +0 -251
  652. package/esm2022/lib/list/list.module.mjs +0 -28
  653. package/esm2022/lib/panel/index.mjs +0 -2
  654. package/esm2022/lib/panel/panel.component.mjs +0 -30
  655. package/esm2022/lib/panel/panel.module.mjs +0 -18
  656. package/esm2022/lib/select-value-dialog/index.mjs +0 -5
  657. package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -87
  658. package/esm2022/lib/select-value-dialog/select-value-dialog.enums.mjs +0 -6
  659. package/esm2022/lib/select-value-dialog/select-value-dialog.interface.mjs +0 -2
  660. package/esm2022/lib/select-value-dialog/select-value-dialog.module.mjs +0 -59
  661. package/esm2022/lib/select-value-dialog/select-value-dialog.service.mjs +0 -29
  662. package/esm2022/lib/sidenav/index.mjs +0 -2
  663. package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +0 -57
  664. package/esm2022/lib/sidenav/sidenav.module.mjs +0 -23
  665. package/esm2022/lib/spinner/index.mjs +0 -3
  666. package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -55
  667. package/esm2022/lib/spinner/spinner.component.mjs +0 -30
  668. package/esm2022/lib/spinner/spinner.module.mjs +0 -20
  669. package/esm2022/lib/stop-propagation/index.mjs +0 -3
  670. package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -20
  671. package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -19
  672. package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -24
  673. package/esm2022/lib/table/index.mjs +0 -6
  674. package/esm2022/lib/table/table-action-color.enum.mjs +0 -7
  675. package/esm2022/lib/table/table-database.mjs +0 -28
  676. package/esm2022/lib/table/table-datasource.mjs +0 -64
  677. package/esm2022/lib/table/table-model.interface.mjs +0 -2
  678. package/esm2022/lib/table/table.component.mjs +0 -124
  679. package/esm2022/lib/table/table.module.mjs +0 -66
  680. package/esm2022/lib/tool/index.mjs +0 -3
  681. package/esm2022/lib/tool/shared/index.mjs +0 -6
  682. package/esm2022/lib/tool/shared/tool-component.mjs +0 -9
  683. package/esm2022/lib/tool/shared/tool.interface.mjs +0 -2
  684. package/esm2022/lib/tool/shared/tool.service.mjs +0 -43
  685. package/esm2022/lib/tool/shared/toolbox.enums.mjs +0 -7
  686. package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
  687. package/esm2022/lib/tool/tool.module.mjs +0 -25
  688. package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
  689. package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -238
  690. package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -23
  691. package/esm2022/lib/widget/index.mjs +0 -3
  692. package/esm2022/lib/widget/shared/index.mjs +0 -4
  693. package/esm2022/lib/widget/shared/widget.interfaces.mjs +0 -2
  694. package/esm2022/lib/widget/shared/widget.mjs +0 -4
  695. package/esm2022/lib/widget/shared/widget.service.mjs +0 -22
  696. package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -114
  697. package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -22
  698. package/esm2022/lib/widget/widget.module.mjs +0 -20
  699. package/esm2022/lib/workspace/index.mjs +0 -4
  700. package/esm2022/lib/workspace/shared/index.mjs +0 -4
  701. package/esm2022/lib/workspace/shared/store.mjs +0 -37
  702. package/esm2022/lib/workspace/shared/workspace.interfaces.mjs +0 -2
  703. package/esm2022/lib/workspace/shared/workspace.mjs +0 -143
  704. package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -52
  705. package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -22
  706. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -74
  707. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -22
  708. package/esm2022/lib/workspace/workspace.module.mjs +0 -19
  709. package/lib/action/action.module.d.ts +0 -8
  710. package/lib/action/actionbar/actionbar-item.component.d.ts +0 -78
  711. package/lib/action/actionbar/actionbar.component.d.ts +0 -147
  712. package/lib/action/actionbar/actionbar.module.d.ts +0 -20
  713. package/lib/action/index.d.ts +0 -2
  714. package/lib/action/shared/action.interfaces.d.ts +0 -17
  715. package/lib/action/shared/store.d.ts +0 -8
  716. package/lib/backdrop/backdrop.component.d.ts +0 -9
  717. package/lib/backdrop/backdrop.module.d.ts +0 -10
  718. package/lib/backdrop/index.d.ts +0 -1
  719. package/lib/badge-icon/badge-icon.directive.d.ts +0 -36
  720. package/lib/badge-icon/badge-icon.module.d.ts +0 -11
  721. package/lib/badge-icon/index.d.ts +0 -1
  722. package/lib/clickout/clickout.directive.d.ts +0 -10
  723. package/lib/clickout/clickout.module.d.ts +0 -9
  724. package/lib/clickout/index.d.ts +0 -1
  725. package/lib/clone/clone.module.d.ts +0 -9
  726. package/lib/clone/clone.pipe.d.ts +0 -7
  727. package/lib/clone/index.d.ts +0 -1
  728. package/lib/collapsible/collapse.directive.d.ts +0 -19
  729. package/lib/collapsible/collapsible.component.d.ts +0 -13
  730. package/lib/collapsible/collapsible.module.d.ts +0 -12
  731. package/lib/collapsible/index.d.ts +0 -2
  732. package/lib/color-picker-form-field/color-picker-form-field.component.d.ts +0 -29
  733. package/lib/color-picker-form-field/color-picker-form-field.module.d.ts +0 -15
  734. package/lib/color-picker-form-field/index.d.ts +0 -1
  735. package/lib/confirm-dialog/confirm-dialog.component.d.ts +0 -12
  736. package/lib/confirm-dialog/confirm-dialog.module.d.ts +0 -12
  737. package/lib/confirm-dialog/index.d.ts +0 -3
  738. package/lib/context-menu/context-menu.directive.d.ts +0 -21
  739. package/lib/context-menu/context-menu.module.d.ts +0 -10
  740. package/lib/context-menu/index.d.ts +0 -2
  741. package/lib/context-menu/long-press.directive.d.ts +0 -20
  742. package/lib/custom-html/custom-html.component.d.ts +0 -9
  743. package/lib/custom-html/custom-html.module.d.ts +0 -16
  744. package/lib/custom-html/custom-html.pipe.d.ts +0 -10
  745. package/lib/custom-html/index.d.ts +0 -2
  746. package/lib/dom/dom.module.d.ts +0 -8
  747. package/lib/dom/index.d.ts +0 -2
  748. package/lib/drag-drop/drag-drop.directive.d.ts +0 -14
  749. package/lib/drag-drop/drag-drop.module.d.ts +0 -9
  750. package/lib/drag-drop/index.d.ts +0 -1
  751. package/lib/dynamic-component/dynamic-component.module.d.ts +0 -8
  752. package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +0 -70
  753. package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.d.ts +0 -11
  754. package/lib/dynamic-component/index.d.ts +0 -2
  755. package/lib/entity/entity-selector/entity-selector.component.d.ts +0 -92
  756. package/lib/entity/entity-selector/entity-selector.module.d.ts +0 -13
  757. package/lib/entity/entity-table/entity-table-row.directive.d.ts +0 -69
  758. package/lib/entity/entity-table/entity-table.component.d.ts +0 -342
  759. package/lib/entity/entity-table/entity-table.module.d.ts +0 -29
  760. package/lib/entity/entity-table-paginator/entity-table-paginator.component.d.ts +0 -49
  761. package/lib/entity/entity-table-paginator/entity-table-paginator.module.d.ts +0 -11
  762. package/lib/entity/entity.module.d.ts +0 -10
  763. package/lib/entity/index.d.ts +0 -5
  764. package/lib/entity/shared/entity.interfaces.d.ts +0 -95
  765. package/lib/entity/shared/transaction.d.ts +0 -180
  766. package/lib/flexible/flexible.component.d.ts +0 -41
  767. package/lib/flexible/flexible.module.d.ts +0 -9
  768. package/lib/flexible/index.d.ts +0 -2
  769. package/lib/form/form/form.component.d.ts +0 -53
  770. package/lib/form/form/form.module.d.ts +0 -12
  771. package/lib/form/form-field/form-field-select.component.d.ts +0 -52
  772. package/lib/form/form-field/form-field-text.component.d.ts +0 -51
  773. package/lib/form/form-field/form-field-textarea.component.d.ts +0 -41
  774. package/lib/form/form-field/form-field.component.d.ts +0 -29
  775. package/lib/form/form-field/form-field.module.d.ts +0 -22
  776. package/lib/form/form-field/index.d.ts +0 -4
  777. package/lib/form/form-group/form-group.component.d.ts +0 -49
  778. package/lib/form/form-group/form-group.module.d.ts +0 -14
  779. package/lib/form/form.module.d.ts +0 -13
  780. package/lib/form/index.d.ts +0 -4
  781. package/lib/form-dialog/form-dialog.component.d.ts +0 -24
  782. package/lib/form-dialog/form-dialog.interface.d.ts +0 -18
  783. package/lib/form-dialog/form-dialog.module.d.ts +0 -16
  784. package/lib/form-dialog/index.d.ts +0 -3
  785. package/lib/home-button/home-button.component.d.ts +0 -9
  786. package/lib/home-button/home-button.module.d.ts +0 -15
  787. package/lib/home-button/index.d.ts +0 -1
  788. package/lib/image/image-error.directive.d.ts +0 -11
  789. package/lib/image/image.module.d.ts +0 -10
  790. package/lib/image/index.d.ts +0 -2
  791. package/lib/image/secure-image.pipe.d.ts +0 -13
  792. package/lib/interactive-tour/index.d.ts +0 -4
  793. package/lib/interactive-tour/interactive-tour.component.d.ts +0 -30
  794. package/lib/interactive-tour/interactive-tour.loader.d.ts +0 -18
  795. package/lib/interactive-tour/interactive-tour.module.d.ts +0 -12
  796. package/lib/interactive-tour/interactive-tour.service.d.ts +0 -29
  797. package/lib/json-dialog/index.d.ts +0 -2
  798. package/lib/json-dialog/json-dialog.component.d.ts +0 -13
  799. package/lib/json-dialog/json-dialog.module.d.ts +0 -13
  800. package/lib/keyvalue/index.d.ts +0 -1
  801. package/lib/keyvalue/keyvalue.module.d.ts +0 -9
  802. package/lib/keyvalue/keyvalue.pipe.d.ts +0 -7
  803. package/lib/list/index.d.ts +0 -2
  804. package/lib/list/list-item.directive.d.ts +0 -43
  805. package/lib/list/list.component.d.ts +0 -51
  806. package/lib/list/list.module.d.ts +0 -14
  807. package/lib/panel/index.d.ts +0 -1
  808. package/lib/panel/panel.component.d.ts +0 -10
  809. package/lib/panel/panel.module.d.ts +0 -8
  810. package/lib/select-value-dialog/index.d.ts +0 -4
  811. package/lib/select-value-dialog/select-value-check-radio-dialog.component.d.ts +0 -25
  812. package/lib/select-value-dialog/select-value-dialog.module.d.ts +0 -17
  813. package/lib/sidenav/index.d.ts +0 -1
  814. package/lib/sidenav/sidenav-shim.directive.d.ts +0 -20
  815. package/lib/sidenav/sidenav.module.d.ts +0 -9
  816. package/lib/spinner/index.d.ts +0 -2
  817. package/lib/spinner/spinner-activity.directive.d.ts +0 -32
  818. package/lib/spinner/spinner.component.d.ts +0 -12
  819. package/lib/spinner/spinner.module.d.ts +0 -10
  820. package/lib/stop-propagation/index.d.ts +0 -2
  821. package/lib/stop-propagation/stop-drop-propagation.directive.d.ts +0 -6
  822. package/lib/stop-propagation/stop-propagation.directive.d.ts +0 -6
  823. package/lib/stop-propagation/stop-propagation.module.d.ts +0 -10
  824. package/lib/table/index.d.ts +0 -5
  825. package/lib/table/table.component.d.ts +0 -40
  826. package/lib/table/table.module.d.ts +0 -20
  827. package/lib/tool/index.d.ts +0 -2
  828. package/lib/tool/shared/tool.interface.d.ts +0 -18
  829. package/lib/tool/shared/toolbox.d.ts +0 -95
  830. package/lib/tool/shared/toolbox.enums.d.ts +0 -5
  831. package/lib/tool/tool.module.d.ts +0 -10
  832. package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
  833. package/lib/tool/toolbox/toolbox.module.d.ts +0 -13
  834. package/lib/widget/index.d.ts +0 -2
  835. package/lib/widget/shared/widget.d.ts +0 -4
  836. package/lib/widget/shared/widget.service.d.ts +0 -10
  837. package/lib/widget/widget-outlet/widget-outlet.component.d.ts +0 -71
  838. package/lib/widget/widget-outlet/widget-outlet.module.d.ts +0 -12
  839. package/lib/widget/widget.module.d.ts +0 -8
  840. package/lib/workspace/index.d.ts +0 -3
  841. package/lib/workspace/shared/store.d.ts +0 -20
  842. package/lib/workspace/shared/workspace.d.ts +0 -108
  843. package/lib/workspace/shared/workspace.interfaces.d.ts +0 -11
  844. package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +0 -39
  845. package/lib/workspace/workspace-selector/workspace-selector.module.d.ts +0 -12
  846. package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
  847. package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -12
  848. package/lib/workspace/workspace.module.d.ts +0 -9
  849. package/src/lib/action/action.theming.scss +0 -5
  850. package/src/lib/action/actionbar/actionbar-item.theming.scss +0 -32
  851. package/src/lib/action/actionbar/actionbar.theming.scss +0 -22
  852. package/src/lib/collapsible/collapsible.theming.scss +0 -22
  853. package/src/lib/entity/entity-selector/entity-selector.theming.scss +0 -21
  854. package/src/lib/entity/entity-table/entity-table.theming.scss +0 -37
  855. package/src/lib/entity/entity.theming.scss +0 -7
  856. package/src/lib/home-button/home-button.theming.scss +0 -18
  857. package/src/lib/interactive-tour/interactive-tour.theming.scss +0 -32
  858. package/src/lib/list/list.theming.scss +0 -58
  859. package/src/lib/panel/panel.theming.scss +0 -30
  860. package/src/lib/tool/tool.theming.scss +0 -5
  861. package/src/lib/tool/toolbox/toolbox.theming.scss +0 -105
  862. /package/{lib/action → action}/shared/action.enums.d.ts +0 -0
  863. /package/{lib/action → action}/shared/index.d.ts +0 -0
  864. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.interface.d.ts +0 -0
  865. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.service.d.ts +0 -0
  866. /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
  867. /package/{lib/dom → dom}/dom.service.d.ts +0 -0
  868. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.d.ts +0 -0
  869. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.interfaces.d.ts +0 -0
  870. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.service.d.ts +0 -0
  871. /package/{lib/dynamic-component → dynamic-component}/shared/index.d.ts +0 -0
  872. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.interface.d.ts +0 -0
  873. /package/{lib/entity → entity}/shared/entity.enums.d.ts +0 -0
  874. /package/{lib/entity → entity}/shared/entity.utils.d.ts +0 -0
  875. /package/{lib/entity → entity}/shared/index.d.ts +0 -0
  876. /package/{lib/entity → entity}/shared/state.d.ts +0 -0
  877. /package/{lib/entity → entity}/shared/store.d.ts +0 -0
  878. /package/{lib/entity → entity}/shared/strategies/filter-custom-function.d.ts +0 -0
  879. /package/{lib/entity → entity}/shared/strategies/filter-selection.d.ts +0 -0
  880. /package/{lib/entity → entity}/shared/strategies/index.d.ts +0 -0
  881. /package/{lib/entity → entity}/shared/strategies/strategy.d.ts +0 -0
  882. /package/{lib/entity → entity}/shared/view.d.ts +0 -0
  883. /package/{lib/entity → entity}/shared/watcher.d.ts +0 -0
  884. /package/{lib/environment → environment}/environment.interface.d.ts +0 -0
  885. /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
  886. /package/{lib/flexible → flexible}/flexible.type.d.ts +0 -0
  887. /package/{lib → form}/form-dialog/form-dialog.service.d.ts +0 -0
  888. /package/{lib/form → form}/shared/form-field-component.d.ts +0 -0
  889. /package/{lib/form → form}/shared/form-field.service.d.ts +0 -0
  890. /package/{lib/form → form}/shared/form.interfaces.d.ts +0 -0
  891. /package/{lib/form → form}/shared/form.service.d.ts +0 -0
  892. /package/{lib/form → form}/shared/form.utils.d.ts +0 -0
  893. /package/{lib/form → form}/shared/index.d.ts +0 -0
  894. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
  895. /package/{lib/json-dialog → json-dialog}/json-dialog.service.d.ts +0 -0
  896. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.enums.d.ts +0 -0
  897. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.interface.d.ts +0 -0
  898. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.service.d.ts +0 -0
  899. /package/{lib/table → table}/table-action-color.enum.d.ts +0 -0
  900. /package/{lib/table → table}/table-database.d.ts +0 -0
  901. /package/{lib/table → table}/table-datasource.d.ts +0 -0
  902. /package/{lib/table → table}/table-model.interface.d.ts +0 -0
  903. /package/{lib/tool → tool}/shared/index.d.ts +0 -0
  904. /package/{lib/tool → tool}/shared/tool-component.d.ts +0 -0
  905. /package/{lib/tool → tool}/shared/tool.service.d.ts +0 -0
  906. /package/{lib/tool → tool}/toolbox/toolbox.animation.d.ts +0 -0
  907. /package/{lib/widget → widget}/shared/index.d.ts +0 -0
  908. /package/{lib/widget → widget}/shared/widget.interfaces.d.ts +0 -0
  909. /package/{lib/workspace → workspace}/shared/index.d.ts +0 -0
@@ -0,0 +1,535 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, Component, ChangeDetectionStrategy, Input, HostBinding, NgModule } from '@angular/core';
3
+ import { EntityStore } from '@igo2/common/entity';
4
+ import { BehaviorSubject } from 'rxjs';
5
+ import { NgIf, NgClass, AsyncPipe } from '@angular/common';
6
+ import { ActionStore, ActionbarComponent } from '@igo2/common/action';
7
+ import { DynamicOutletComponent } from '@igo2/common/dynamic-component';
8
+ import { map } from 'rxjs/operators';
9
+ import { trigger, state, style, transition, animate } from '@angular/animations';
10
+
11
+ /**
12
+ * Service where all available tools and their component are registered.
13
+ */
14
+ class Toolbox {
15
+ options;
16
+ /**
17
+ * Observable of the active tool
18
+ */
19
+ activeTool$ = new BehaviorSubject(undefined);
20
+ /**
21
+ * Ordered list of tool names to display in a toolbar
22
+ */
23
+ toolbar$ = new BehaviorSubject([]);
24
+ /**
25
+ * Observable of the active tool
26
+ */
27
+ activeTool$$;
28
+ /**
29
+ * Active tool history. Useful for activating the previous tool.
30
+ */
31
+ activeToolHistory = [];
32
+ previousToolName;
33
+ currentToolName;
34
+ /**
35
+ * Tool store
36
+ */
37
+ store = new EntityStore([], {
38
+ getKey: (tool) => tool.name
39
+ });
40
+ get tools$() {
41
+ return this.store.entities$;
42
+ }
43
+ constructor(options = {}) {
44
+ this.options = options;
45
+ this.setToolbar(options.toolbar);
46
+ this.initStore();
47
+ }
48
+ /**
49
+ * Destroy the toolbox
50
+ */
51
+ destroy() {
52
+ this.activeTool$$.unsubscribe();
53
+ this.store.destroy();
54
+ }
55
+ /**
56
+ * Return a tool
57
+ * @param name Tool name
58
+ * @returns tool Tool
59
+ */
60
+ getTool(name) {
61
+ return this.store.get(name);
62
+ }
63
+ /**
64
+ * Return all tools
65
+ * @returns Array of tools
66
+ */
67
+ getTools() {
68
+ return this.store.all();
69
+ }
70
+ /**
71
+ * Set tool configurations
72
+ * @param tools Tools
73
+ */
74
+ setTools(tools) {
75
+ this.store.load(tools);
76
+ }
77
+ /**
78
+ * Get toolbar
79
+ * @returns Toolbar value
80
+ */
81
+ getToolbar() {
82
+ return this.toolbar$.getValue();
83
+ }
84
+ /**
85
+ * Set toolbar
86
+ * @param toolbar A list of tool names
87
+ */
88
+ setToolbar(toolbar) {
89
+ this.toolbar$.next(toolbar || []);
90
+ }
91
+ /**
92
+ * Activate a tool (and deactivate other tools)
93
+ * @param name Tool name
94
+ * @param options Tool options
95
+ */
96
+ activateTool(name, options = {}) {
97
+ const tool = this.getTool(name);
98
+ if (tool === undefined) {
99
+ return;
100
+ }
101
+ this.store.state.update(tool, { active: true, options }, true);
102
+ }
103
+ /**
104
+ * Activate the previous tool, if any
105
+ */
106
+ activatePreviousTool() {
107
+ if (this.activeToolHistory.length <= 1) {
108
+ this.deactivateTool();
109
+ return;
110
+ }
111
+ const [previous, current] = this.activeToolHistory.splice(-2, 2);
112
+ this.activateTool(previous);
113
+ }
114
+ getCurrentPreviousToolName() {
115
+ return [this.previousToolName, this.currentToolName];
116
+ }
117
+ /**
118
+ * Activate the tool below, if any
119
+ */
120
+ /* activateBelowTool() {
121
+ const arrayTools = this.getToolbar();
122
+ const index = arrayTools.findIndex(t => t === this.activeTool$.getValue().name);
123
+ if (arrayTools[index + 1] !== undefined) {
124
+ this.deactivateTool();
125
+ const below = arrayTools[index + 1];
126
+ this.activateTool(below);
127
+ } else {
128
+ this.deactivateTool();
129
+ const below = arrayTools[0];
130
+ this.activateTool(below);
131
+ }
132
+ } */
133
+ /**
134
+ * Activate the tool above, if any
135
+ */
136
+ /* activateAboveTool() {
137
+ const arrayTools = this.getToolbar();
138
+ const index = arrayTools.findIndex(t => t === this.activeTool$.getValue().name);
139
+ if (arrayTools[index - 1] !== undefined) {
140
+ this.deactivateTool();
141
+ const above = arrayTools[index - 1];
142
+ this.activateTool(above);
143
+ } else {
144
+ this.deactivateTool();
145
+ const above = arrayTools[arrayTools.length - 1];
146
+ this.activateTool(above);
147
+ }
148
+ } */
149
+ /**
150
+ * Deactivate the active tool
151
+ */
152
+ deactivateTool() {
153
+ this.clearActiveToolHistory();
154
+ this.store.state.updateAll({ active: false });
155
+ }
156
+ /**
157
+ * Initialize the tool store and start observing the active tool
158
+ */
159
+ initStore() {
160
+ this.store = new EntityStore([], {
161
+ getKey: (entity) => entity.name
162
+ });
163
+ this.activeTool$$ = this.store.stateView
164
+ .firstBy$((record) => record.state.active === true)
165
+ .subscribe((record) => {
166
+ if (record === undefined) {
167
+ this.setActiveTool(undefined);
168
+ return;
169
+ }
170
+ const tool = record.entity;
171
+ const options = Object.assign({}, tool.options || {}, record.state.options || {});
172
+ this.setActiveTool(Object.assign({}, tool, { options }));
173
+ });
174
+ }
175
+ /**
176
+ * Set the active tool and update the tool history
177
+ * @param tool Tool
178
+ */
179
+ setActiveTool(tool) {
180
+ this.activeTool$.next(tool);
181
+ if (tool === undefined) {
182
+ this.clearActiveToolHistory();
183
+ }
184
+ else {
185
+ this.activeToolHistory = this.activeToolHistory
186
+ .filter((name) => name !== tool.name)
187
+ .concat([tool.name]);
188
+ this.previousToolName = this.currentToolName;
189
+ this.currentToolName =
190
+ this.activeToolHistory[this.activeToolHistory.length - 1];
191
+ }
192
+ }
193
+ /**
194
+ * Clear the tool history
195
+ */
196
+ clearActiveToolHistory() {
197
+ this.activeToolHistory = [];
198
+ }
199
+ }
200
+
201
+ /**
202
+ * Service where runtime tool configurations are registered
203
+ */
204
+ class ToolService {
205
+ static tools = {};
206
+ /**
207
+ * Toolbox that holds main tools
208
+ */
209
+ toolbox = new Toolbox();
210
+ static register(tool) {
211
+ ToolService.tools[tool.name] = tool;
212
+ }
213
+ constructor() {
214
+ this.toolbox.setTools(this.getTools());
215
+ }
216
+ /**
217
+ * Return a tool
218
+ * @param name Tool name
219
+ * @returns tool Tool
220
+ */
221
+ getTool(name) {
222
+ return ToolService.tools[name];
223
+ }
224
+ /**
225
+ * Return all tools
226
+ * @returns tTols
227
+ */
228
+ getTools() {
229
+ return Object.values(ToolService.tools);
230
+ }
231
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToolService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
232
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToolService, providedIn: 'root' });
233
+ }
234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToolService, decorators: [{
235
+ type: Injectable,
236
+ args: [{
237
+ providedIn: 'root'
238
+ }]
239
+ }], ctorParameters: () => [] });
240
+
241
+ function ToolComponent(tool) {
242
+ return (compType) => {
243
+ ToolService.register(Object.assign({}, tool, {
244
+ component: compType
245
+ }));
246
+ };
247
+ }
248
+
249
+ function toolSlideInOut(speed = '300ms', type = 'ease-in-out') {
250
+ return trigger('toolSlideInOut', [
251
+ state('enter', style({
252
+ transform: 'translate3d(0, 0, 0)'
253
+ })),
254
+ transition('void => enter', animate(speed + ' ' + type))
255
+ ]);
256
+ }
257
+
258
+ class ToolboxComponent {
259
+ /**
260
+ * Observable of the active tool
261
+ */
262
+ activeTool$ = new BehaviorSubject(undefined);
263
+ get isActive() {
264
+ return !!this.activeTool$.value;
265
+ }
266
+ /**
267
+ * Store of actions that toggle tools
268
+ */
269
+ actionStore = new ActionStore([]);
270
+ /**
271
+ * Observable of he anmation state
272
+ */
273
+ animation$ = new BehaviorSubject('none');
274
+ /**
275
+ * Observable of the toolbar
276
+ */
277
+ toolbar$ = new BehaviorSubject([]);
278
+ /**
279
+ * Whether the Toolbar should display actions' titles
280
+ */
281
+ toolbarWithTitle$ = this.activeTool$.pipe(map((tool) => tool === undefined));
282
+ /**
283
+ * Subscription to the active tool
284
+ */
285
+ activeTool$$;
286
+ /**
287
+ * Subscription to the toolbar
288
+ */
289
+ toolbar$$;
290
+ /**
291
+ * Observable of the ongoing animation. This is useful when
292
+ * multiple animations are triggered at once i.e. when the user clicks
293
+ * too fast on different actions
294
+ */
295
+ animating$ = new BehaviorSubject(false);
296
+ /**
297
+ * Subscription to the ongoing animation
298
+ */
299
+ animating$$;
300
+ /**
301
+ * Toolbox
302
+ */
303
+ toolbox;
304
+ /**
305
+ * Whether the toolbox should animate the first tool entering
306
+ */
307
+ animate = false;
308
+ /**
309
+ * Color of Toolbox
310
+ */
311
+ color = 'white';
312
+ /**
313
+ * @ignore
314
+ */
315
+ get classColorGrey() {
316
+ return this.color === 'grey';
317
+ }
318
+ /**
319
+ * @ignore
320
+ */
321
+ get classColorPrimary() {
322
+ return this.color === 'primary';
323
+ }
324
+ /**
325
+ * Initialize the toolbar and subscribe to the active tool
326
+ * @internal
327
+ */
328
+ ngOnInit() {
329
+ this.toolbar$$ = this.toolbox.toolbar$.subscribe((toolbar) => this.onToolbarChange(toolbar));
330
+ this.activeTool$$ = this.toolbox.activeTool$.subscribe((tool) => this.onActiveToolChange(tool));
331
+ }
332
+ /**
333
+ * Unsubscribe to the active tool and destroy the action store
334
+ * @internal
335
+ */
336
+ ngOnDestroy() {
337
+ this.toolbar$$.unsubscribe();
338
+ this.activeTool$$.unsubscribe();
339
+ this.actionStore.destroy();
340
+ }
341
+ /**
342
+ * Track the starting animation
343
+ * @internal
344
+ */
345
+ onAnimationStart() {
346
+ this.animating$.next(true);
347
+ }
348
+ /**
349
+ * Untrack the completed animation
350
+ * @internal
351
+ */
352
+ onAnimationComplete() {
353
+ this.animating$.next(false);
354
+ }
355
+ /**
356
+ * Return a tool's inputs
357
+ * @param tool Tool
358
+ * @returns Tool inputs
359
+ * @internal
360
+ */
361
+ getToolInputs(tool) {
362
+ return tool.options || {};
363
+ }
364
+ /**
365
+ * Initialize an action store
366
+ * @param toolbar Toolbar
367
+ */
368
+ onToolbarChange(toolbar) {
369
+ this.setToolbar(toolbar);
370
+ }
371
+ /**
372
+ * Activate a tool and trigger an animation or not
373
+ * @param tool Tool to activate
374
+ */
375
+ onActiveToolChange(tool) {
376
+ if (!this.animate) {
377
+ this.setActiveTool(tool);
378
+ return;
379
+ }
380
+ this.onAnimate(() => this.setActiveTool(tool));
381
+ }
382
+ /**
383
+ * Set the active tool
384
+ * @param tool Tool to activate
385
+ */
386
+ setActiveTool(tool) {
387
+ if (tool === undefined) {
388
+ this.actionStore.state.updateAll({ active: false });
389
+ }
390
+ else {
391
+ const action = this.actionStore.get(tool.name);
392
+ if (action !== undefined) {
393
+ this.actionStore.state.update(action, { active: true }, true);
394
+ }
395
+ }
396
+ this.activeTool$.next(tool);
397
+ if (this.animate) {
398
+ this.animation$.next('enter');
399
+ }
400
+ }
401
+ /**
402
+ * Initialize the toolbar
403
+ */
404
+ setToolbar(toolbar) {
405
+ const actions = toolbar.reduce((acc, toolName) => {
406
+ const tool = this.toolbox.getTool(toolName);
407
+ if (tool === undefined) {
408
+ return acc;
409
+ }
410
+ acc.push({
411
+ id: tool.name,
412
+ title: tool.title,
413
+ icon: tool.icon,
414
+ tooltip: tool.tooltip,
415
+ args: [tool, this.toolbox],
416
+ handler: (_tool, _toolbox) => {
417
+ _toolbox.activateTool(_tool.name);
418
+ },
419
+ ngClass: (_tool, _toolbox) => {
420
+ return this.toolbox.activeTool$.pipe(map((activeTool) => {
421
+ let toolActivated = false;
422
+ if (activeTool !== undefined && _tool.name === activeTool.name) {
423
+ toolActivated = true;
424
+ }
425
+ let childrenToolActivated = false;
426
+ if (activeTool !== undefined &&
427
+ _tool.name === activeTool.parent) {
428
+ childrenToolActivated = true;
429
+ }
430
+ return {
431
+ 'tool-activated': toolActivated,
432
+ 'children-tool-activated': childrenToolActivated
433
+ };
434
+ }));
435
+ }
436
+ });
437
+ return acc;
438
+ }, []);
439
+ this.actionStore.load(actions);
440
+ this.toolbar$.next(toolbar);
441
+ }
442
+ /**
443
+ * Observe the ongoing animation and ignore any incoming animation
444
+ * while one is still ongoing.
445
+ * @param callback Callback to execute when the animation completes
446
+ */
447
+ onAnimate(callback) {
448
+ this.unAnimate();
449
+ this.animating$$ = this.animating$.subscribe((animation) => {
450
+ if (!animation) {
451
+ callback.call(this);
452
+ this.unAnimate();
453
+ }
454
+ });
455
+ }
456
+ /**
457
+ * Stop observing an animation when it's complete
458
+ */
459
+ unAnimate() {
460
+ if (this.animating$$) {
461
+ this.animating$$.unsubscribe();
462
+ }
463
+ }
464
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToolboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
465
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: ToolboxComponent, isStandalone: true, selector: "igo-toolbox", inputs: { toolbox: "toolbox", animate: "animate", color: "color" }, host: { properties: { "class.color-grey": "this.classColorGrey", "class.color-primary": "this.classColorPrimary" } }, ngImport: i0, template: "<igo-actionbar\n *ngIf=\"(toolbar$ | async).length > 0\"\n [store]=\"actionStore\"\n [withIcon]=\"true\"\n [withTitle]=\"toolbarWithTitle$ | async\"\n [withTooltip]=\"(toolbarWithTitle$ | async) === false\"\n [scrollActive]=\"toolbarWithTitle$ | async\"\n [horizontal]=\"false\"\n>\n</igo-actionbar>\n\n<div\n *ngIf=\"activeTool$ | async as tool\"\n class=\"igo-tool-container mat-body-1\"\n [ngClass]=\"{\n 'igo-tool-container-with-toolbar': !actionStore.empty,\n 'igo-tool-container-with-animation': animate\n }\"\n [@toolSlideInOut]=\"animation$ | async\"\n (@toolSlideInOut.start)=\"onAnimationStart()\"\n (@toolSlideInOut.done)=\"onAnimationComplete()\"\n>\n <igo-dynamic-outlet\n [component]=\"tool.component\"\n [inputs]=\"getToolInputs(tool)\"\n >\n </igo-dynamic-outlet>\n</div>\n", styles: [":host{display:block;position:relative;overflow:hidden;width:100%;height:100%}:host ::ng-deep .mdc-list-item--with-leading-avatar .mdc-list-item__start{margin:0}:host .igo-tool-container{position:absolute;inset:0;margin-bottom:0}:host .igo-tool-container-with-animation{transform:translate3d(100%,0,0)}:host .igo-tool-container-with-toolbar{left:50px}:host igo-actionbar{height:100%}:host igo-actionbar.with-title{width:100%;overflow:auto}:host igo-actionbar:not(.with-title){width:48px;overflow:hidden;-moz-box-shadow:2px 0px 2px 0px #dddddd;-webkit-box-shadow:2px 0px 2px 0px #dddddd;-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){:host igo-actionbar:not(.with-title){overflow:auto}}:host igo-dynamic-outlet{overflow:auto}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ActionbarComponent, selector: "igo-actionbar", inputs: ["store", "mode", "withToggleButton", "horizontal", "color", "iconColor", "withTitle", "withTooltip", "scrollActive", "withIcon", "icon", "xPosition", "yPosition", "overlayClass"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: DynamicOutletComponent, selector: "igo-dynamic-outlet", inputs: ["component", "inputs", "subscribers"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], animations: [toolSlideInOut()], changeDetection: i0.ChangeDetectionStrategy.OnPush });
466
+ }
467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToolboxComponent, decorators: [{
468
+ type: Component,
469
+ args: [{ selector: 'igo-toolbox', animations: [toolSlideInOut()], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
470
+ NgIf,
471
+ ActionbarComponent,
472
+ NgClass,
473
+ DynamicOutletComponent,
474
+ AsyncPipe
475
+ ], template: "<igo-actionbar\n *ngIf=\"(toolbar$ | async).length > 0\"\n [store]=\"actionStore\"\n [withIcon]=\"true\"\n [withTitle]=\"toolbarWithTitle$ | async\"\n [withTooltip]=\"(toolbarWithTitle$ | async) === false\"\n [scrollActive]=\"toolbarWithTitle$ | async\"\n [horizontal]=\"false\"\n>\n</igo-actionbar>\n\n<div\n *ngIf=\"activeTool$ | async as tool\"\n class=\"igo-tool-container mat-body-1\"\n [ngClass]=\"{\n 'igo-tool-container-with-toolbar': !actionStore.empty,\n 'igo-tool-container-with-animation': animate\n }\"\n [@toolSlideInOut]=\"animation$ | async\"\n (@toolSlideInOut.start)=\"onAnimationStart()\"\n (@toolSlideInOut.done)=\"onAnimationComplete()\"\n>\n <igo-dynamic-outlet\n [component]=\"tool.component\"\n [inputs]=\"getToolInputs(tool)\"\n >\n </igo-dynamic-outlet>\n</div>\n", styles: [":host{display:block;position:relative;overflow:hidden;width:100%;height:100%}:host ::ng-deep .mdc-list-item--with-leading-avatar .mdc-list-item__start{margin:0}:host .igo-tool-container{position:absolute;inset:0;margin-bottom:0}:host .igo-tool-container-with-animation{transform:translate3d(100%,0,0)}:host .igo-tool-container-with-toolbar{left:50px}:host igo-actionbar{height:100%}:host igo-actionbar.with-title{width:100%;overflow:auto}:host igo-actionbar:not(.with-title){width:48px;overflow:hidden;-moz-box-shadow:2px 0px 2px 0px #dddddd;-webkit-box-shadow:2px 0px 2px 0px #dddddd;-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){:host igo-actionbar:not(.with-title){overflow:auto}}:host igo-dynamic-outlet{overflow:auto}\n"] }]
476
+ }], propDecorators: { toolbox: [{
477
+ type: Input
478
+ }], animate: [{
479
+ type: Input
480
+ }], color: [{
481
+ type: Input
482
+ }], classColorGrey: [{
483
+ type: HostBinding,
484
+ args: ['class.color-grey']
485
+ }], classColorPrimary: [{
486
+ type: HostBinding,
487
+ args: ['class.color-primary']
488
+ }] } });
489
+
490
+ /**
491
+ * @deprecated import the ToolboxComponent directly
492
+ */
493
+ class IgoToolboxModule {
494
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
495
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: IgoToolboxModule, imports: [ToolboxComponent], exports: [ToolboxComponent] });
496
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolboxModule, imports: [ToolboxComponent] });
497
+ }
498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolboxModule, decorators: [{
499
+ type: NgModule,
500
+ args: [{
501
+ imports: [ToolboxComponent],
502
+ exports: [ToolboxComponent]
503
+ }]
504
+ }] });
505
+
506
+ /**
507
+ * @deprecated import the ToolboxComponent directly
508
+ */
509
+ class IgoToolModule {
510
+ /**
511
+ * @deprecated it has no effect
512
+ */
513
+ static forRoot() {
514
+ return {
515
+ ngModule: IgoToolModule,
516
+ providers: [ToolService]
517
+ };
518
+ }
519
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
520
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: IgoToolModule, exports: [IgoToolboxModule] });
521
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolModule, imports: [IgoToolboxModule] });
522
+ }
523
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoToolModule, decorators: [{
524
+ type: NgModule,
525
+ args: [{
526
+ exports: [IgoToolboxModule]
527
+ }]
528
+ }] });
529
+
530
+ /**
531
+ * Generated bundle index. Do not edit.
532
+ */
533
+
534
+ export { IgoToolModule, IgoToolboxModule, ToolComponent, ToolService, Toolbox, ToolboxComponent };
535
+ //# sourceMappingURL=igo2-common-tool.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-tool.mjs","sources":["../../../packages/common/tool/src/shared/toolbox.ts","../../../packages/common/tool/src/shared/tool.service.ts","../../../packages/common/tool/src/shared/tool-component.ts","../../../packages/common/tool/src/toolbox/toolbox.animation.ts","../../../packages/common/tool/src/toolbox/toolbox.component.ts","../../../packages/common/tool/src/toolbox/toolbox.component.html","../../../packages/common/tool/src/toolbox/toolbox.module.ts","../../../packages/common/tool/src/tool.module.ts","../../../packages/common/tool/src/igo2-common-tool.ts"],"sourcesContent":["import { EntityRecord, EntityStore } from '@igo2/common/entity';\n\nimport { BehaviorSubject, Subscription } from 'rxjs';\n\nimport { Tool, ToolboxOptions } from './tool.interface';\n\n/**\n * Service where all available tools and their component are registered.\n */\nexport class Toolbox {\n /**\n * Observable of the active tool\n */\n activeTool$: BehaviorSubject<Tool> = new BehaviorSubject(undefined);\n\n /**\n * Ordered list of tool names to display in a toolbar\n */\n toolbar$: BehaviorSubject<string[]> = new BehaviorSubject([]);\n\n /**\n * Observable of the active tool\n */\n private activeTool$$: Subscription;\n\n /**\n * Active tool history. Useful for activating the previous tool.\n */\n private activeToolHistory: string[] = [];\n private previousToolName: string;\n private currentToolName: string;\n\n /**\n * Tool store\n */\n private store = new EntityStore<Tool>([], {\n getKey: (tool: Tool) => tool.name\n });\n\n get tools$(): BehaviorSubject<Tool[]> {\n return this.store.entities$;\n }\n\n constructor(private options: ToolboxOptions = {}) {\n this.setToolbar(options.toolbar);\n this.initStore();\n }\n\n /**\n * Destroy the toolbox\n */\n destroy() {\n this.activeTool$$.unsubscribe();\n this.store.destroy();\n }\n\n /**\n * Return a tool\n * @param name Tool name\n * @returns tool Tool\n */\n getTool(name: string): Tool {\n return this.store.get(name);\n }\n\n /**\n * Return all tools\n * @returns Array of tools\n */\n getTools(): Tool[] {\n return this.store.all();\n }\n\n /**\n * Set tool configurations\n * @param tools Tools\n */\n setTools(tools: Tool[]) {\n this.store.load(tools);\n }\n\n /**\n * Get toolbar\n * @returns Toolbar value\n */\n getToolbar(): string[] {\n return this.toolbar$.getValue();\n }\n\n /**\n * Set toolbar\n * @param toolbar A list of tool names\n */\n setToolbar(toolbar: string[]) {\n this.toolbar$.next(toolbar || []);\n }\n\n /**\n * Activate a tool (and deactivate other tools)\n * @param name Tool name\n * @param options Tool options\n */\n activateTool(name: string, options: { [key: string]: any } = {}) {\n const tool = this.getTool(name);\n if (tool === undefined) {\n return;\n }\n\n this.store.state.update(tool, { active: true, options }, true);\n }\n\n /**\n * Activate the previous tool, if any\n */\n activatePreviousTool() {\n if (this.activeToolHistory.length <= 1) {\n this.deactivateTool();\n return;\n }\n const [previous, current] = this.activeToolHistory.splice(-2, 2);\n this.activateTool(previous);\n }\n\n getCurrentPreviousToolName(): [string, string] {\n return [this.previousToolName, this.currentToolName];\n }\n\n /**\n * Activate the tool below, if any\n */\n /* activateBelowTool() {\n const arrayTools = this.getToolbar();\n const index = arrayTools.findIndex(t => t === this.activeTool$.getValue().name);\n if (arrayTools[index + 1] !== undefined) {\n this.deactivateTool();\n const below = arrayTools[index + 1];\n this.activateTool(below);\n } else {\n this.deactivateTool();\n const below = arrayTools[0];\n this.activateTool(below);\n }\n } */\n\n /**\n * Activate the tool above, if any\n */\n /* activateAboveTool() {\n const arrayTools = this.getToolbar();\n const index = arrayTools.findIndex(t => t === this.activeTool$.getValue().name);\n if (arrayTools[index - 1] !== undefined) {\n this.deactivateTool();\n const above = arrayTools[index - 1];\n this.activateTool(above);\n } else {\n this.deactivateTool();\n const above = arrayTools[arrayTools.length - 1];\n this.activateTool(above);\n }\n } */\n\n /**\n * Deactivate the active tool\n */\n deactivateTool() {\n this.clearActiveToolHistory();\n this.store.state.updateAll({ active: false });\n }\n\n /**\n * Initialize the tool store and start observing the active tool\n */\n private initStore() {\n this.store = new EntityStore<Tool>([], {\n getKey: (entity: Tool) => entity.name\n });\n\n this.activeTool$$ = this.store.stateView\n .firstBy$((record: EntityRecord<Tool>) => record.state.active === true)\n .subscribe((record: EntityRecord<Tool>) => {\n if (record === undefined) {\n this.setActiveTool(undefined);\n return;\n }\n\n const tool = record.entity;\n const options = Object.assign(\n {},\n tool.options || {},\n record.state.options || {}\n );\n this.setActiveTool(Object.assign({}, tool, { options }));\n });\n }\n\n /**\n * Set the active tool and update the tool history\n * @param tool Tool\n */\n private setActiveTool(tool: Tool | undefined) {\n this.activeTool$.next(tool);\n if (tool === undefined) {\n this.clearActiveToolHistory();\n } else {\n this.activeToolHistory = this.activeToolHistory\n .filter((name: string) => name !== tool.name)\n .concat([tool.name]);\n\n this.previousToolName = this.currentToolName;\n this.currentToolName =\n this.activeToolHistory[this.activeToolHistory.length - 1];\n }\n }\n\n /**\n * Clear the tool history\n */\n private clearActiveToolHistory() {\n this.activeToolHistory = [];\n }\n}\n","import { Injectable } from '@angular/core';\n\nimport { Tool } from './tool.interface';\nimport { Toolbox } from './toolbox';\n\n/**\n * Service where runtime tool configurations are registered\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ToolService {\n static tools: { [key: string]: Tool } = {};\n\n /**\n * Toolbox that holds main tools\n */\n public toolbox: Toolbox = new Toolbox();\n\n static register(tool: Tool) {\n ToolService.tools[tool.name] = tool;\n }\n\n constructor() {\n this.toolbox.setTools(this.getTools());\n }\n\n /**\n * Return a tool\n * @param name Tool name\n * @returns tool Tool\n */\n getTool(name: string): Tool {\n return ToolService.tools[name];\n }\n\n /**\n * Return all tools\n * @returns tTols\n */\n getTools(): Tool[] {\n return Object.values(ToolService.tools);\n }\n}\n","import { Tool } from './tool.interface';\nimport { ToolService } from './tool.service';\n\nexport function ToolComponent(tool: Partial<Tool>): (cls: any) => any {\n return (compType: any) => {\n ToolService.register(\n Object.assign({}, tool, {\n component: compType\n } as Tool)\n );\n };\n}\n","import {\n AnimationTriggerMetadata,\n animate,\n state,\n style,\n transition,\n trigger\n} from '@angular/animations';\n\nexport function toolSlideInOut(\n speed = '300ms',\n type = 'ease-in-out'\n): AnimationTriggerMetadata {\n return trigger('toolSlideInOut', [\n state(\n 'enter',\n style({\n transform: 'translate3d(0, 0, 0)'\n })\n ),\n transition('void => enter', animate(speed + ' ' + type))\n ]);\n}\n","import { AsyncPipe, NgClass, NgIf } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n HostBinding,\n Input,\n OnDestroy,\n OnInit\n} from '@angular/core';\n\nimport { Action, ActionStore, ActionbarComponent } from '@igo2/common/action';\nimport { DynamicOutletComponent } from '@igo2/common/dynamic-component';\n\nimport { BehaviorSubject, Observable, Subscription } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { Tool } from '../shared/tool.interface';\nimport { Toolbox } from '../shared/toolbox';\nimport { ToolboxColor } from '../shared/toolbox.enums';\nimport { toolSlideInOut } from './toolbox.animation';\n\n@Component({\n selector: 'igo-toolbox',\n templateUrl: 'toolbox.component.html',\n styleUrls: ['toolbox.component.scss'],\n animations: [toolSlideInOut()],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [\n NgIf,\n ActionbarComponent,\n NgClass,\n DynamicOutletComponent,\n AsyncPipe\n ]\n})\nexport class ToolboxComponent implements OnInit, OnDestroy {\n /**\n * Observable of the active tool\n */\n activeTool$: BehaviorSubject<Tool> = new BehaviorSubject(undefined);\n\n get isActive(): boolean {\n return !!this.activeTool$.value;\n }\n\n /**\n * Store of actions that toggle tools\n */\n actionStore: ActionStore = new ActionStore([]);\n\n /**\n * Observable of he anmation state\n */\n animation$: BehaviorSubject<string> = new BehaviorSubject('none');\n\n /**\n * Observable of the toolbar\n */\n toolbar$: BehaviorSubject<string[]> = new BehaviorSubject([]);\n\n /**\n * Whether the Toolbar should display actions' titles\n */\n toolbarWithTitle$: Observable<boolean> = this.activeTool$.pipe(\n map((tool: Tool | undefined) => tool === undefined)\n );\n\n /**\n * Subscription to the active tool\n */\n private activeTool$$: Subscription;\n\n /**\n * Subscription to the toolbar\n */\n private toolbar$$: Subscription;\n\n /**\n * Observable of the ongoing animation. This is useful when\n * multiple animations are triggered at once i.e. when the user clicks\n * too fast on different actions\n */\n private animating$ = new BehaviorSubject<boolean>(false);\n\n /**\n * Subscription to the ongoing animation\n */\n private animating$$: Subscription;\n\n /**\n * Toolbox\n */\n @Input() toolbox: Toolbox;\n\n /**\n * Whether the toolbox should animate the first tool entering\n */\n @Input() animate: boolean = false;\n\n /**\n * Color of Toolbox\n */\n @Input() color: ToolboxColor = 'white';\n\n /**\n * @ignore\n */\n @HostBinding('class.color-grey')\n get classColorGrey() {\n return this.color === 'grey';\n }\n\n /**\n * @ignore\n */\n @HostBinding('class.color-primary')\n get classColorPrimary() {\n return this.color === 'primary';\n }\n\n /**\n * Initialize the toolbar and subscribe to the active tool\n * @internal\n */\n ngOnInit() {\n this.toolbar$$ = this.toolbox.toolbar$.subscribe((toolbar: string[]) =>\n this.onToolbarChange(toolbar)\n );\n this.activeTool$$ = this.toolbox.activeTool$.subscribe((tool: Tool) =>\n this.onActiveToolChange(tool)\n );\n }\n\n /**\n * Unsubscribe to the active tool and destroy the action store\n * @internal\n */\n ngOnDestroy() {\n this.toolbar$$.unsubscribe();\n this.activeTool$$.unsubscribe();\n this.actionStore.destroy();\n }\n\n /**\n * Track the starting animation\n * @internal\n */\n onAnimationStart() {\n this.animating$.next(true);\n }\n\n /**\n * Untrack the completed animation\n * @internal\n */\n onAnimationComplete() {\n this.animating$.next(false);\n }\n\n /**\n * Return a tool's inputs\n * @param tool Tool\n * @returns Tool inputs\n * @internal\n */\n getToolInputs(tool: Tool): { [key: string]: any } {\n return tool.options || {};\n }\n\n /**\n * Initialize an action store\n * @param toolbar Toolbar\n */\n private onToolbarChange(toolbar: string[]) {\n this.setToolbar(toolbar);\n }\n\n /**\n * Activate a tool and trigger an animation or not\n * @param tool Tool to activate\n */\n private onActiveToolChange(tool: Tool) {\n if (!this.animate) {\n this.setActiveTool(tool);\n return;\n }\n this.onAnimate(() => this.setActiveTool(tool));\n }\n\n /**\n * Set the active tool\n * @param tool Tool to activate\n */\n private setActiveTool(tool: Tool | undefined) {\n if (tool === undefined) {\n this.actionStore.state.updateAll({ active: false });\n } else {\n const action = this.actionStore.get(tool.name);\n if (action !== undefined) {\n this.actionStore.state.update(action, { active: true }, true);\n }\n }\n\n this.activeTool$.next(tool);\n if (this.animate) {\n this.animation$.next('enter');\n }\n }\n\n /**\n * Initialize the toolbar\n */\n private setToolbar(toolbar: string[]) {\n const actions = toolbar.reduce((acc: Action[], toolName: string) => {\n const tool = this.toolbox.getTool(toolName);\n if (tool === undefined) {\n return acc;\n }\n\n acc.push({\n id: tool.name,\n title: tool.title,\n icon: tool.icon,\n tooltip: tool.tooltip,\n args: [tool, this.toolbox],\n handler: (_tool: Tool, _toolbox: Toolbox) => {\n _toolbox.activateTool(_tool.name);\n },\n ngClass: (_tool: Tool, _toolbox: Toolbox) => {\n return this.toolbox.activeTool$.pipe(\n map((activeTool: Tool) => {\n let toolActivated = false;\n if (activeTool !== undefined && _tool.name === activeTool.name) {\n toolActivated = true;\n }\n\n let childrenToolActivated = false;\n if (\n activeTool !== undefined &&\n _tool.name === activeTool.parent\n ) {\n childrenToolActivated = true;\n }\n\n return {\n 'tool-activated': toolActivated,\n 'children-tool-activated': childrenToolActivated\n };\n })\n );\n }\n });\n return acc;\n }, []);\n this.actionStore.load(actions);\n this.toolbar$.next(toolbar);\n }\n\n /**\n * Observe the ongoing animation and ignore any incoming animation\n * while one is still ongoing.\n * @param callback Callback to execute when the animation completes\n */\n private onAnimate(callback: () => void) {\n this.unAnimate();\n this.animating$$ = this.animating$.subscribe((animation: boolean) => {\n if (!animation) {\n callback.call(this);\n this.unAnimate();\n }\n });\n }\n\n /**\n * Stop observing an animation when it's complete\n */\n private unAnimate() {\n if (this.animating$$) {\n this.animating$$.unsubscribe();\n }\n }\n}\n","<igo-actionbar\n *ngIf=\"(toolbar$ | async).length > 0\"\n [store]=\"actionStore\"\n [withIcon]=\"true\"\n [withTitle]=\"toolbarWithTitle$ | async\"\n [withTooltip]=\"(toolbarWithTitle$ | async) === false\"\n [scrollActive]=\"toolbarWithTitle$ | async\"\n [horizontal]=\"false\"\n>\n</igo-actionbar>\n\n<div\n *ngIf=\"activeTool$ | async as tool\"\n class=\"igo-tool-container mat-body-1\"\n [ngClass]=\"{\n 'igo-tool-container-with-toolbar': !actionStore.empty,\n 'igo-tool-container-with-animation': animate\n }\"\n [@toolSlideInOut]=\"animation$ | async\"\n (@toolSlideInOut.start)=\"onAnimationStart()\"\n (@toolSlideInOut.done)=\"onAnimationComplete()\"\n>\n <igo-dynamic-outlet\n [component]=\"tool.component\"\n [inputs]=\"getToolInputs(tool)\"\n >\n </igo-dynamic-outlet>\n</div>\n","import { NgModule } from '@angular/core';\n\nimport { ToolboxComponent } from './toolbox.component';\n\n/**\n * @deprecated import the ToolboxComponent directly\n */\n@NgModule({\n imports: [ToolboxComponent],\n exports: [ToolboxComponent]\n})\nexport class IgoToolboxModule {}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { ToolService } from './shared/tool.service';\nimport { IgoToolboxModule } from './toolbox/toolbox.module';\n\n/**\n * @deprecated import the ToolboxComponent directly\n */\n@NgModule({\n exports: [IgoToolboxModule]\n})\nexport class IgoToolModule {\n /**\n * @deprecated it has no effect\n */\n static forRoot(): ModuleWithProviders<IgoToolModule> {\n return {\n ngModule: IgoToolModule,\n providers: [ToolService]\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}