@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 @@
1
+ {"version":3,"file":"igo2-common-form.mjs","sources":["../../../packages/common/form/src/shared/form.utils.ts","../../../packages/common/form/src/form/form.component.ts","../../../packages/common/form/src/form/form.component.html","../../../packages/common/form/src/form/form.module.ts","../../../packages/common/form/src/shared/form-field.service.ts","../../../packages/common/form/src/shared/form-field-component.ts","../../../packages/common/form/src/form-field/form-field-select.component.ts","../../../packages/common/form/src/form-field/form-field-select.component.html","../../../packages/common/form/src/form-field/form-field-text.component.ts","../../../packages/common/form/src/form-field/form-field-text.component.html","../../../packages/common/form/src/form-field/form-field-textarea.component.ts","../../../packages/common/form/src/form-field/form-field-textarea.component.html","../../../packages/common/form/src/shared/form.service.ts","../../../packages/common/form/src/form-field/form-field.component.ts","../../../packages/common/form/src/form-field/form-field.component.html","../../../packages/common/form/src/form-field/form-field.directive.ts","../../../packages/common/form/src/form-field/form-field.module.ts","../../../packages/common/form/src/form-group/form-group.component.ts","../../../packages/common/form/src/form-group/form-group.component.html","../../../packages/common/form/src/form-group/form-group.module.ts","../../../packages/common/form/src/form.module.ts","../../../packages/common/form/src/form-dialog/form-dialog.component.ts","../../../packages/common/form/src/form-dialog/form-dialog.component.html","../../../packages/common/form/src/form-dialog/form-dialog.service.ts","../../../packages/common/form/src/form-dialog/form-dialog.module.ts","../../../packages/common/form/src/igo2-common-form.ts"],"sourcesContent":["import { AbstractControl } from '@angular/forms';\n\nimport { Form, FormField, FormFieldGroup } from './form.interfaces';\n\nexport function formControlIsRequired(control: AbstractControl): boolean {\n if (control.validator) {\n const validator = control.validator({} as AbstractControl);\n if (validator && validator.required) {\n return true;\n }\n }\n\n if ((control as any).controls) {\n const requiredControl = Object.keys((control as any).controls).find(\n (key: string) => {\n return formControlIsRequired((control as any).controls[key]);\n }\n );\n return requiredControl !== undefined;\n }\n\n return false;\n}\n\nexport function getDefaultErrorMessages(): { [key: string]: string } {\n return {\n required: 'igo.common.form.errors.required',\n email: 'igo.common.form.errors.email'\n };\n}\n\nexport function getControlErrorMessage(\n control: AbstractControl,\n messages: { [key: string]: string }\n): string {\n const errors = control.errors || {};\n const errorKeys = Object.keys(errors);\n const errorMessages = errorKeys\n .map((key: string) => messages[key])\n .filter((message: string) => message !== undefined);\n return errorMessages.length > 0 ? errorMessages[0] : '';\n}\n\nexport function getAllFormFields(form: Form): FormField[] {\n return form.groups.reduce((acc: FormField[], group: FormFieldGroup) => {\n return acc.concat(group.fields);\n }, [].concat(form.fields));\n}\n\nexport function getFormFieldByName(form: Form, name: string): FormField {\n const fields = getAllFormFields(form);\n return fields.find((field: FormField) => {\n return field.name === name;\n });\n}\n","import { NgClass } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n ElementRef,\n EventEmitter,\n Input,\n OnChanges,\n Output,\n SimpleChanges,\n ViewChild\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\n\nimport { t } from 'typy';\n\nimport { Form, FormField, FormFieldGroup } from '../shared/form.interfaces';\nimport { getAllFormFields } from '../shared/form.utils';\n\n/**\n * A configurable form\n */\n@Component({\n selector: 'igo-form',\n templateUrl: './form.component.html',\n styleUrls: ['./form.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [FormsModule, ReactiveFormsModule, NgClass]\n})\nexport class FormComponent implements OnChanges {\n /**\n * Form\n */\n @Input() form: Form;\n\n /**\n * Input data\n */\n @Input() formData: { [key: string]: any };\n\n /**\n * Form autocomplete\n */\n @Input() autocomplete: string = 'off';\n\n /**\n * Event emitted when the form is submitted\n */\n @Output() submitForm = new EventEmitter<{ [key: string]: any }>();\n\n @ViewChild('buttons', { static: true }) buttons: ElementRef;\n\n get hasButtons(): boolean {\n return this.buttons.nativeElement.children.length !== 0;\n }\n\n constructor() {}\n\n /**\n * Is the entity or the template change, recreate the form or repopulate it.\n * @internal\n */\n ngOnChanges(changes: SimpleChanges) {\n const formData = changes.formData;\n if (formData && formData.currentValue !== formData.previousValue) {\n if (formData.currentValue === undefined) {\n this.clear();\n } else {\n this.setData(formData.currentValue);\n }\n }\n }\n\n /**\n * Transform the form data to a feature and emit an event\n * @param event Form submit event\n * @internal\n */\n onSubmit() {\n this.submitForm.emit(this.getData());\n }\n\n getData(): { [key: string]: any } {\n const data = {};\n getAllFormFields(this.form).forEach((field: FormField) => {\n this.updateDataWithFormField(data, field);\n });\n return data;\n }\n\n private setData(data: { [key: string]: any }) {\n this.form.fields.forEach((field: FormField) => {\n field.control.setValue(t(data, field.name).safeObject);\n });\n\n this.form.groups.forEach((group: FormFieldGroup) => {\n group.fields.forEach((field: FormField) => {\n field.control.setValue(t(data, field.name).safeObject);\n });\n });\n }\n\n private updateDataWithFormField(\n data: { [key: string]: any },\n field: FormField\n ) {\n const control = field.control;\n if (!control.disabled) {\n data[field.name] = control.value;\n }\n }\n\n /**\n * Clear form\n */\n private clear() {\n this.form.control.reset();\n }\n}\n","<form\n [autocomplete]=\"autocomplete\"\n [formGroup]=\"form.control\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div\n class=\"igo-form-body\"\n [ngClass]=\"{ 'igo-form-body-with-buttons': hasButtons }\"\n >\n <div class=\"igo-form-content\">\n <ng-content></ng-content>\n </div>\n <div #buttons class=\"igo-form-buttons\">\n <ng-content select=\"[formButtons]\"></ng-content>\n </div>\n </div>\n</form>\n","import { NgModule } from '@angular/core';\n\nimport { FormComponent } from './form.component';\n\n/**\n * @deprecated import the FormComponent directly\n */\n@NgModule({\n imports: [FormComponent],\n exports: [FormComponent]\n})\nexport class IgoFormFormModule {}\n","import { Injectable } from '@angular/core';\n\n/**\n * Service where all available form fields are registered.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class FormFieldService {\n static fields: { [key: string]: any } = {};\n\n static register(type: string, component: any) {\n FormFieldService.fields[type] = component;\n }\n\n constructor() {}\n\n /**\n * Return field component by type\n * @param type Field type\n * @returns Field component\n */\n getFieldByType(type: string): any {\n return FormFieldService.fields[type];\n }\n}\n","import { FormFieldService } from './form-field.service';\n\nexport function IgoFormFieldComponent(type: string): (cls: any) => any {\n return (compType: any) => {\n FormFieldService.register(type, compType);\n };\n}\n","import { AsyncPipe, NgFor, NgIf } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n Input,\n OnInit\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport type { UntypedFormControl } from '@angular/forms';\nimport { MatOptionModule } from '@angular/material/core';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSelectModule } from '@angular/material/select';\n\nimport { IgoLanguageModule } from '@igo2/core/language';\n\nimport { BehaviorSubject } from 'rxjs';\n\nimport { IgoFormFieldComponent } from '../shared/form-field-component';\nimport { FormFieldSelectChoice } from '../shared/form.interfaces';\nimport {\n formControlIsRequired,\n getControlErrorMessage\n} from '../shared/form.utils';\n\n/**\n * This component renders a select field\n */\n@IgoFormFieldComponent('select')\n@Component({\n selector: 'igo-form-field-select',\n templateUrl: './form-field-select.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n FormsModule,\n ReactiveFormsModule,\n NgFor,\n MatOptionModule,\n NgIf,\n MatIconModule,\n AsyncPipe,\n IgoLanguageModule\n ]\n})\nexport class FormFieldSelectComponent implements OnInit {\n readonly disabled$: BehaviorSubject<boolean> = new BehaviorSubject(false);\n\n /**\n * Select input choices\n */\n @Input()\n set choices(value: FormFieldSelectChoice[]) {\n this.choices$.next(value);\n }\n get choices(): FormFieldSelectChoice[] {\n return this.choices$.value;\n }\n readonly choices$: BehaviorSubject<FormFieldSelectChoice[]> =\n new BehaviorSubject([]);\n\n /**\n * If the select allow multiple selections\n */\n @Input() multiple: boolean = false;\n\n /**\n * The field's form control\n */\n @Input() formControl: UntypedFormControl;\n\n /**\n * Field placeholder\n */\n @Input() placeholder: string;\n\n /**\n * Field placeholder\n */\n @Input() errors: { [key: string]: string };\n\n /**\n * Wheter a disable switch should be available\n */\n @Input() disableSwitch: boolean = false;\n\n /**\n * Whether the field is required\n */\n get required(): boolean {\n return formControlIsRequired(this.formControl);\n }\n\n ngOnInit() {\n this.disabled$.next(this.formControl.disabled);\n }\n\n /**\n * Get error message\n */\n getErrorMessage(): string {\n return getControlErrorMessage(this.formControl, this.errors);\n }\n\n onDisableSwitchClick() {\n this.toggleDisabled();\n }\n\n private toggleDisabled() {\n const disabled = !this.disabled$.value;\n if (disabled === true) {\n this.formControl.disable();\n } else {\n this.formControl.enable();\n }\n this.disabled$.next(disabled);\n }\n}\n","<mat-form-field>\n <mat-select\n [multiple]=\"multiple\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n [formControl]=\"formControl\"\n >\n <mat-option *ngFor=\"let choice of choices$ | async\" [value]=\"choice.value\">\n {{ choice.title }}\n </mat-option>\n </mat-select>\n <mat-icon\n *ngIf=\"disableSwitch === true\"\n class=\"igo-form-disable-switch\"\n (click)=\"onDisableSwitchClick()\"\n matPrefix\n >{{\n (disabled$ | async) === true ? 'check_box_outline_blank' : 'check_box'\n }}\n </mat-icon>\n <mat-error *ngIf=\"formControl.errors\">{{\n getErrorMessage() | translate\n }}</mat-error>\n</mat-form-field>\n","import { AsyncPipe, NgIf } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n Input,\n OnInit\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport type { UntypedFormControl } from '@angular/forms';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatInputModule } from '@angular/material/input';\n\nimport { IgoLanguageModule } from '@igo2/core/language';\n\nimport { BehaviorSubject } from 'rxjs';\n\nimport { IgoFormFieldComponent } from '../shared/form-field-component';\nimport {\n formControlIsRequired,\n getControlErrorMessage\n} from '../shared/form.utils';\n\n/**\n * This component renders a text field\n */\n@IgoFormFieldComponent('text')\n@Component({\n selector: 'igo-form-field-text',\n templateUrl: './form-field-text.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n NgIf,\n MatIconModule,\n MatButtonModule,\n AsyncPipe,\n IgoLanguageModule\n ]\n})\nexport class FormFieldTextComponent implements OnInit {\n disabled$: BehaviorSubject<boolean> = new BehaviorSubject(false);\n hide: boolean = true;\n private lastTimeoutRequest;\n\n /**\n * The field's form control\n */\n @Input() formControl: UntypedFormControl;\n\n /**\n * Field placeholder\n */\n @Input() placeholder: string;\n\n /**\n * if the input is a password\n */\n @Input() isPassword: boolean;\n\n /**\n * Field placeholder\n */\n @Input() errors: { [key: string]: string };\n\n /**\n * Wheter a disable switch should be available\n */\n @Input() disableSwitch: boolean = false;\n\n /**\n * Whether the field is required\n */\n get required(): boolean {\n return formControlIsRequired(this.formControl);\n }\n\n constructor(private cdRef: ChangeDetectorRef) {}\n\n ngOnInit() {\n this.disabled$.next(this.formControl.disabled);\n }\n\n /**\n * Get error message\n */\n getErrorMessage(): string {\n return getControlErrorMessage(this.formControl, this.errors);\n }\n\n onDisableSwitchClick() {\n this.toggleDisabled();\n }\n\n private toggleDisabled() {\n const disabled = !this.disabled$.value;\n if (disabled === true) {\n this.formControl.disable();\n } else {\n this.formControl.enable();\n }\n this.disabled$.next(disabled);\n }\n\n togglePassword() {\n this.hide = !this.hide;\n this.delayedHide();\n }\n delayedHide(delayMS: number = 10000) {\n if (this.isPassword && !this.hide) {\n if (this.lastTimeoutRequest) {\n clearTimeout(this.lastTimeoutRequest);\n }\n this.lastTimeoutRequest = setTimeout(() => {\n this.hide = true;\n this.cdRef.detectChanges();\n }, delayMS);\n }\n }\n}\n","<mat-form-field>\n <input\n matInput\n (blur)=\"delayedHide(0)\"\n [type]=\"isPassword ? (hide ? 'password' : 'text') : 'text'\"\n [required]=\"isPassword ? 'true' : required\"\n [placeholder]=\"placeholder\"\n [formControl]=\"formControl\"\n (change)=\"delayedHide()\"\n />\n <mat-icon\n *ngIf=\"disableSwitch === true\"\n class=\"igo-form-disable-switch\"\n (click)=\"onDisableSwitchClick()\"\n matPrefix\n >{{\n (disabled$ | async) === true ? 'check_box_outline_blank' : 'check_box'\n }}\n </mat-icon>\n\n <button\n type=\"button\"\n *ngIf=\"isPassword\"\n matSuffix\n mat-icon-button\n (click)=\"togglePassword()\"\n >\n <mat-icon color=\"primary\">{{\n hide ? 'visibility_off' : 'visibility'\n }}</mat-icon>\n </button>\n\n <mat-error *ngIf=\"formControl.errors\">{{\n getErrorMessage() | translate\n }}</mat-error>\n</mat-form-field>\n","import { AsyncPipe, NgIf } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n Input,\n OnInit\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport type { UntypedFormControl } from '@angular/forms';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatInputModule } from '@angular/material/input';\n\nimport { IgoLanguageModule } from '@igo2/core/language';\n\nimport { BehaviorSubject } from 'rxjs';\n\nimport { IgoFormFieldComponent } from '../shared/form-field-component';\nimport {\n formControlIsRequired,\n getControlErrorMessage\n} from '../shared/form.utils';\n\n/**\n * This component renders a textarea field\n */\n@IgoFormFieldComponent('textarea')\n@Component({\n selector: 'igo-form-field-textarea',\n templateUrl: './form-field-textarea.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n NgIf,\n MatIconModule,\n AsyncPipe,\n IgoLanguageModule\n ]\n})\nexport class FormFieldTextareaComponent implements OnInit {\n disabled$: BehaviorSubject<boolean> = new BehaviorSubject(false);\n\n /**\n * The field's form control\n */\n @Input() formControl: UntypedFormControl;\n\n /**\n * Field placeholder\n */\n @Input() placeholder: string;\n\n /**\n * Field placeholder\n */\n @Input() errors: { [key: string]: string };\n\n /**\n * Wheter a disable switch should be available\n */\n @Input() disableSwitch: boolean = false;\n\n /**\n * Whether the field is required\n */\n get required(): boolean {\n return formControlIsRequired(this.formControl);\n }\n\n ngOnInit() {\n this.disabled$.next(this.formControl.disabled);\n }\n\n /**\n * Get error message\n */\n getErrorMessage(): string {\n return getControlErrorMessage(this.formControl, this.errors);\n }\n\n onDisableSwitchClick() {\n this.toggleDisabled();\n }\n\n private toggleDisabled() {\n const disabled = !this.disabled$.value;\n if (disabled === true) {\n this.formControl.disable();\n } else {\n this.formControl.enable();\n }\n this.disabled$.next(disabled);\n }\n}\n","<mat-form-field>\n <textarea\n matInput\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n [formControl]=\"formControl\"\n >\n </textarea>\n <mat-icon\n *ngIf=\"disableSwitch === true\"\n class=\"igo-form-disable-switch\"\n (click)=\"onDisableSwitchClick()\"\n matPrefix\n >{{\n (disabled$ | async) === true ? 'check_box_outline_blank' : 'check_box'\n }}\n </mat-icon>\n <mat-error *ngIf=\"formControl.errors\">{{\n getErrorMessage() | translate\n }}</mat-error>\n</mat-form-field>\n","import { Injectable } from '@angular/core';\nimport { UntypedFormBuilder, ValidatorFn, Validators } from '@angular/forms';\n\nimport {\n Form,\n FormField,\n FormFieldConfig,\n FormFieldGroup,\n FormFieldGroupConfig\n} from './form.interfaces';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class FormService {\n constructor(private formBuilder: UntypedFormBuilder) {}\n\n form(fields: FormField[], groups: FormFieldGroup[]): Form {\n const control = this.formBuilder.group({});\n fields.forEach((field: FormField) => {\n control.addControl(field.name, field.control);\n });\n groups.forEach((group: FormFieldGroup) => {\n control.addControl(group.name, group.control);\n });\n\n return { fields, groups, control };\n }\n\n group(config: FormFieldGroupConfig, fields: FormField[]): FormFieldGroup {\n const options = config.options || {};\n const control = this.formBuilder.group({});\n fields.forEach((field: FormField) => {\n control.addControl(field.name, field.control);\n });\n\n if (options.validator) {\n const validators = this.getValidators(options.validator); // convert string to actual validator\n control.setValidators(validators);\n }\n\n return Object.assign({}, config, { fields, control }) as FormFieldGroup;\n }\n\n field(config: FormFieldConfig): FormField {\n const options = config.options || {};\n const state = {\n value: '',\n disabled: options.disabled\n };\n const control = this.formBuilder.control(state);\n\n if (options.validator) {\n const validators = this.getValidators(options.validator); // convert string to actual validator\n control.setValidators(validators);\n }\n\n return Object.assign({ type: 'text' }, config, { control }) as FormField;\n }\n\n extendFieldConfig(\n config: FormFieldConfig,\n partial: Partial<FormFieldConfig>\n ): FormFieldConfig {\n const options = Object.assign(\n {},\n config.options || {},\n partial.options || {}\n );\n const inputs = Object.assign({}, config.inputs || {}, partial.inputs || {});\n const subscribers = Object.assign(\n {},\n config.subscribers || {},\n partial.subscribers || {}\n );\n return Object.assign({}, config, { options, inputs, subscribers });\n }\n\n private getValidators(\n validatorOption: string | string[] | ValidatorFn\n ): ValidatorFn | ValidatorFn[] {\n if (Array.isArray(validatorOption)) {\n return validatorOption.map((validatorStr) => {\n return this.getValidator(validatorStr);\n });\n }\n\n return this.getValidator(validatorOption);\n }\n\n private getValidator(validatorStr: string | ValidatorFn): ValidatorFn {\n if (typeof validatorStr !== 'string') {\n return validatorStr;\n }\n\n // regex pattern to extract arguments from string for e.g applying on \"minLength(8)\" would extract 8\n const re = /^([a-zA-Z]{3,15})\\((.{0,20})\\)$/;\n const match = validatorStr.match(re);\n\n if (!match) {\n return Validators[validatorStr];\n }\n\n const name = match[1];\n const args = match[2];\n return Validators[name](args);\n }\n}\n","import { NgIf } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, Input } from '@angular/core';\n\nimport { DynamicOutletComponent } from '@igo2/common/dynamic-component';\n\nimport { getDefaultErrorMessages } from '../shared';\nimport { FormFieldService } from '../shared/form-field.service';\nimport {\n FormField,\n FormFieldInputs,\n FormFieldOptions,\n FormFieldSubscribers\n} from '../shared/form.interfaces';\n\n/**\n * This component renders the proper form input based on\n * the field configuration it receives.\n */\n@Component({\n selector: 'igo-form-field',\n templateUrl: './form-field.component.html',\n styleUrls: ['./form-field.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [NgIf, DynamicOutletComponent]\n})\nexport class FormFieldComponent {\n /**\n * Field configuration\n */\n @Input() field: FormField;\n\n /**\n * Field inputs cache\n */\n private fieldInputs: FormFieldInputs = undefined;\n\n /**\n * Field subscribers cache\n */\n private fieldSubscribers: FormFieldSubscribers = undefined;\n\n get fieldOptions(): FormFieldOptions {\n return this.field.options || {};\n }\n\n constructor(private formFieldService: FormFieldService) {}\n\n getFieldComponent(): any {\n return this.formFieldService.getFieldByType(this.field.type || 'text');\n }\n\n getFieldInputs(): FormFieldInputs {\n if (this.fieldInputs !== undefined) {\n return this.fieldInputs;\n }\n\n const errors = this.fieldOptions.errors || {};\n this.fieldInputs = Object.assign(\n {\n placeholder: this.field.title,\n disableSwitch: this.fieldOptions.disableSwitch || false\n },\n Object.assign({}, this.field.inputs || {}),\n {\n formControl: this.field.control,\n errors: Object.assign({}, getDefaultErrorMessages(), errors)\n }\n );\n return this.fieldInputs;\n }\n\n getFieldSubscribers(): FormFieldSubscribers {\n if (this.fieldSubscribers !== undefined) {\n return this.fieldSubscribers;\n }\n\n this.fieldSubscribers = Object.assign({}, this.field.subscribers || {});\n return this.fieldSubscribers;\n }\n}\n","<ng-container *ngIf=\"field !== undefined\">\n <igo-dynamic-outlet\n [component]=\"getFieldComponent()\"\n [inputs]=\"getFieldInputs()\"\n [subscribers]=\"getFieldSubscribers()\"\n >\n </igo-dynamic-outlet>\n</ng-container>\n","import { FormFieldSelectComponent } from './form-field-select.component';\nimport { FormFieldTextComponent } from './form-field-text.component';\nimport { FormFieldTextareaComponent } from './form-field-textarea.component';\nimport { FormFieldComponent } from './form-field.component';\n\nexport const FORM_FIELD_DIRECTIVES = [\n FormFieldComponent,\n FormFieldSelectComponent,\n FormFieldTextComponent,\n FormFieldTextareaComponent\n] as const;\n","import { NgModule } from '@angular/core';\n\nimport { FORM_FIELD_DIRECTIVES } from './form-field.directive';\n\n/**\n * @deprecated import the components directly or FORM_FIELD_DIRECTIVES for every components/directives\n */\n@NgModule({\n imports: [...FORM_FIELD_DIRECTIVES],\n exports: [...FORM_FIELD_DIRECTIVES]\n})\nexport class IgoFormFieldModule {}\n","import { NgClass, NgFor, NgIf } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, Input } from '@angular/core';\nimport { UntypedFormGroup } from '@angular/forms';\nimport { MatFormFieldModule } from '@angular/material/form-field';\n\nimport { IgoLanguageModule } from '@igo2/core/language';\n\nimport { FormFieldComponent } from '../form-field/form-field.component';\nimport { FormField, FormFieldGroup } from '../shared/form.interfaces';\nimport { getControlErrorMessage } from '../shared/form.utils';\n\n/**\n * A configurable form, optionnally bound to an entity\n * (for example in case of un update). Submitting that form\n * emits an event with the form data but no other operation is performed.\n */\n@Component({\n selector: 'igo-form-group',\n templateUrl: './form-group.component.html',\n styleUrls: ['./form-group.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [\n NgIf,\n NgFor,\n NgClass,\n FormFieldComponent,\n MatFormFieldModule,\n IgoLanguageModule\n ]\n})\nexport class FormGroupComponent {\n /**\n * Form field group\n */\n @Input() group: FormFieldGroup;\n\n /**\n * Field placeholder\n */\n @Input() errors: { [key: string]: string };\n\n /**\n * Form group control\n */\n get formControl(): UntypedFormGroup {\n return this.group.control;\n }\n\n constructor() {}\n\n /**\n * Return the number of columns a field should occupy.\n * The maximum allowed is 2, even if the field config says more.\n * @param field Field\n * @returns Number of columns\n * @internal\n */\n getFieldColSpan(field: FormField): number {\n let colSpan = 2;\n const options = field.options || {};\n if (options.cols && options.cols > 0) {\n colSpan = Math.min(options.cols, 2);\n }\n\n return colSpan;\n }\n\n /**\n * Return the number of columns a field should occupy.\n * The maximum allowed is 2, even if the field config says more.\n * @param field Field\n * @returns Number of columns\n * @internal\n */\n getFieldNgClass(field: FormField): { [key: string]: boolean } {\n const colspan = this.getFieldColSpan(field);\n return { [`igo-form-field-colspan-${colspan}`]: true };\n }\n\n /**\n * Get error message\n */\n getErrorMessage(): string {\n const options = this.group.options || {};\n return getControlErrorMessage(this.formControl, options.errors || {});\n }\n}\n","<div *ngIf=\"group && group.fields.length > 0\" class=\"igo-form-group-fields\">\n <div\n *ngFor=\"let field of group.fields\"\n class=\"igo-form-field-wrapper\"\n [ngClass]=\"getFieldNgClass(field)\"\n >\n <igo-form-field [field]=\"field\"></igo-form-field>\n </div>\n</div>\n\n<div class=\"igo-form-group-extra-content\">\n <ng-content></ng-content>\n</div>\n\n<mat-error *ngIf=\"formControl.errors\">{{\n getErrorMessage() | translate\n}}</mat-error>\n","import { NgModule } from '@angular/core';\n\nimport { FormGroupComponent } from './form-group.component';\n\n/**\n * @deprecated import the FormGroupComponent directly\n */\n@NgModule({\n imports: [FormGroupComponent],\n exports: [FormGroupComponent]\n})\nexport class IgoFormGroupModule {}\n","import { NgModule } from '@angular/core';\n\nimport { FormComponent } from './form';\nimport { FORM_FIELD_DIRECTIVES } from './form-field';\nimport { FormGroupComponent } from './form-group';\n\nexport const FORM_DIRECTIVES = [\n ...FORM_FIELD_DIRECTIVES,\n FormGroupComponent,\n FormComponent\n] as const;\n\n/**\n * @deprecated import the components directly or FORM_DIRECTIVES for every components/directives\n */\n@NgModule({\n imports: [...FORM_DIRECTIVES],\n exports: [...FORM_DIRECTIVES]\n})\nexport class IgoFormModule {}\n","import { AsyncPipe, NgFor, NgIf } from '@angular/common';\nimport { Component, Inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogRef,\n MatDialogTitle\n} from '@angular/material/dialog';\n\nimport { CustomHtmlComponent } from '@igo2/common/custom-html';\nimport { LanguageService } from '@igo2/core/language';\nimport { IgoLanguageModule } from '@igo2/core/language';\n\nimport { BehaviorSubject } from 'rxjs';\n\nimport { FormComponent } from '../form';\nimport { FormFieldComponent } from '../form-field';\nimport { FormGroupComponent } from '../form-group';\nimport {\n Form,\n FormField,\n FormFieldGroup,\n FormFieldInputs,\n FormService\n} from '../shared';\nimport { FormDialogData } from './form-dialog.interface';\n\n@Component({\n selector: 'igo-form-dialog',\n templateUrl: './form-dialog.component.html',\n styleUrls: ['./form-dialog.component.scss'],\n standalone: true,\n imports: [\n MatDialogTitle,\n NgIf,\n FormComponent,\n NgFor,\n FormFieldComponent,\n FormGroupComponent,\n MatDialogActions,\n MatButtonModule,\n CustomHtmlComponent,\n AsyncPipe,\n IgoLanguageModule\n ]\n})\nexport class FormDialogComponent {\n form$ = new BehaviorSubject<Form>(undefined);\n data$ = new BehaviorSubject<{ [key: string]: any }>(undefined);\n constructor(\n public languageService: LanguageService,\n public dialogRef: MatDialogRef<FormDialogComponent>,\n private formService: FormService,\n @Inject(MAT_DIALOG_DATA)\n public data: FormDialogData\n ) {\n this.data.processButtonText =\n this.data.processButtonText ?? 'igo.common.formDialog.processButtonText';\n this.data.cancelButtonText =\n this.data.cancelButtonText ?? 'igo.common.formDialog.cancelButtonText';\n this.data.title = this.data.title ?? 'igo.common.formDialog.title';\n this.data$ = this.data.data$;\n\n let fields: FormField<FormFieldInputs>[] = [];\n let groups: FormFieldGroup[] = [];\n this.data.formFieldConfigs?.map((config) =>\n fields.push(this.formService.field(config))\n );\n\n this.data.formGroupsConfigs?.map((formGroupsConfig) => {\n const fields = formGroupsConfig.formFieldConfigs?.map((config) =>\n this.formService.field(config)\n );\n groups.push(\n this.formService.group({ name: formGroupsConfig.name }, fields)\n );\n });\n const form = this.formService.form(fields, groups);\n\n this.form$.next(form);\n }\n\n onSubmit(data: { [key: string]: any }) {\n const form = this.form$.getValue();\n if (form.control.valid) {\n this.dialogRef.close(data);\n } else {\n if (form.groups?.length) {\n form.groups.map((group) => {\n Object.keys(group.control.controls).map((k) => {\n group.control.controls[k].markAsTouched();\n group.control.controls[k].updateValueAndValidity();\n });\n });\n } else {\n form.fields.map((f) => {\n f.control.markAsTouched();\n f.control.updateValueAndValidity();\n });\n }\n }\n }\n cancel() {\n this.dialogRef.close();\n }\n}\n","<h1 mat-dialog-title>{{ data.title | translate }}</h1>\n\n<igo-form\n *ngIf=\"form$ | async as form\"\n [form]=\"form\"\n [formData]=\"data$ | async\"\n (submitForm)=\"onSubmit($event)\"\n>\n <div *ngIf=\"form.fields.length\" class=\"form-dialog-container\">\n <igo-form-field\n *ngFor=\"let field of form.fields\"\n [field]=\"field\"\n ></igo-form-field>\n <igo-form-group\n *ngFor=\"let group of form.groups\"\n [group]=\"group\"\n ></igo-form-group>\n </div>\n\n <div formButtons mat-dialog-actions>\n <button mat-stroked-button type=\"button\" color=\"primary\" (click)=\"cancel()\">\n {{ data.cancelButtonText | translate }}\n </button>\n <button mat-flat-button type=\"submit\" color=\"primary\">\n {{ data.processButtonText | translate }}\n </button>\n </div>\n</igo-form>\n<div>\n <igo-custom-html\n *ngIf=\"data.notice && data.notice !== ''\"\n [html]=\"data.notice\"\n >\n </igo-custom-html>\n</div>\n","import { Injectable } from '@angular/core';\nimport { MatDialog } from '@angular/material/dialog';\n\nimport { Observable } from 'rxjs';\n\nimport { FormDialogComponent } from './form-dialog.component';\nimport {\n FormDialogData,\n FormDialogFormConfig,\n FormDialogOptions\n} from './form-dialog.interface';\n\n@Injectable()\nexport class FormDialogService {\n constructor(private dialog: MatDialog) {}\n\n public open(\n formDialogConfig?: FormDialogFormConfig,\n options?: FormDialogOptions\n ): Observable<{ [key: string]: any }> {\n const data: FormDialogData = {\n formFieldConfigs: formDialogConfig.formFieldConfigs,\n formGroupsConfigs: formDialogConfig.formGroupsConfigs,\n ...options\n };\n const dialogRef = this.dialog.open(FormDialogComponent, {\n disableClose: false,\n data,\n ...options\n });\n return dialogRef.afterClosed();\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\nimport { MatDialogModule } from '@angular/material/dialog';\n\nimport { FormDialogComponent } from './form-dialog.component';\nimport { FormDialogService } from './form-dialog.service';\n\n/**\n * @deprecated import the FlexibleComponent directly\n */\n@NgModule({\n imports: [MatDialogModule, FormDialogComponent],\n exports: [FormDialogComponent],\n providers: [FormDialogService]\n})\nexport class IgoFormDialogModule {\n /**\n * @deprecated it has no effect\n */\n static forRoot(): ModuleWithProviders<IgoFormDialogModule> {\n return {\n ngModule: IgoFormDialogModule,\n providers: []\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["i1","i3","i4","i5","i2","i1.FormFieldService","i1.FormFieldComponent","i2.FormFieldSelectComponent","i3.FormFieldTextComponent","i4.FormFieldTextareaComponent"],"mappings":"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"}
@@ -0,0 +1,49 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Component, Output, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/material/button';
4
+ import { MatButtonModule } from '@angular/material/button';
5
+ import * as i3 from '@angular/material/icon';
6
+ import { MatIconModule } from '@angular/material/icon';
7
+ import * as i2 from '@angular/material/tooltip';
8
+ import { MatTooltipModule } from '@angular/material/tooltip';
9
+ import { IgoLanguageModule } from '@igo2/core/language';
10
+ import * as i4 from '@ngx-translate/core';
11
+
12
+ class HomeButtonComponent {
13
+ unselectButton = new EventEmitter();
14
+ constructor() { }
15
+ onUnselectButtonClick() {
16
+ this.unselectButton.emit();
17
+ }
18
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: HomeButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
19
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: HomeButtonComponent, isStandalone: true, selector: "igo-home-button", outputs: { unselectButton: "unselectButton" }, ngImport: i0, template: "<button\n id=\"homeButton\"\n mat-icon-button\n tooltip-position=\"below\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"'igo.context.sidenav.mainMenu' | translate\"\n (click)=\"onUnselectButtonClick()\"\n>\n <mat-icon>home</mat-icon>\n</button>\n", styles: ["#homeButton{border-radius:0}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: IgoLanguageModule }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }] });
20
+ }
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: HomeButtonComponent, decorators: [{
22
+ type: Component,
23
+ args: [{ selector: 'igo-home-button', standalone: true, imports: [MatButtonModule, MatTooltipModule, MatIconModule, IgoLanguageModule], template: "<button\n id=\"homeButton\"\n mat-icon-button\n tooltip-position=\"below\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"'igo.context.sidenav.mainMenu' | translate\"\n (click)=\"onUnselectButtonClick()\"\n>\n <mat-icon>home</mat-icon>\n</button>\n", styles: ["#homeButton{border-radius:0}\n"] }]
24
+ }], ctorParameters: () => [], propDecorators: { unselectButton: [{
25
+ type: Output
26
+ }] } });
27
+
28
+ /**
29
+ * @deprecated import the HomeButtonComponent directly
30
+ */
31
+ class IgoHomeButtonModule {
32
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoHomeButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
33
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: IgoHomeButtonModule, imports: [HomeButtonComponent], exports: [HomeButtonComponent] });
34
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoHomeButtonModule, imports: [HomeButtonComponent] });
35
+ }
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoHomeButtonModule, decorators: [{
37
+ type: NgModule,
38
+ args: [{
39
+ imports: [HomeButtonComponent],
40
+ exports: [HomeButtonComponent]
41
+ }]
42
+ }] });
43
+
44
+ /**
45
+ * Generated bundle index. Do not edit.
46
+ */
47
+
48
+ export { HomeButtonComponent, IgoHomeButtonModule };
49
+ //# sourceMappingURL=igo2-common-home-button.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-home-button.mjs","sources":["../../../packages/common/home-button/src/home-button.component.ts","../../../packages/common/home-button/src/home-button.component.html","../../../packages/common/home-button/src/home-button.module.ts","../../../packages/common/home-button/src/igo2-common-home-button.ts"],"sourcesContent":["import { Component, EventEmitter, Output } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatTooltipModule } from '@angular/material/tooltip';\n\nimport { IgoLanguageModule } from '@igo2/core/language';\n\n@Component({\n selector: 'igo-home-button',\n templateUrl: './home-button.component.html',\n styleUrls: ['./home-button.component.scss'],\n standalone: true,\n imports: [MatButtonModule, MatTooltipModule, MatIconModule, IgoLanguageModule]\n})\nexport class HomeButtonComponent {\n @Output() unselectButton = new EventEmitter<any>();\n\n constructor() {}\n\n onUnselectButtonClick() {\n this.unselectButton.emit();\n }\n}\n","<button\n id=\"homeButton\"\n mat-icon-button\n tooltip-position=\"below\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"'igo.context.sidenav.mainMenu' | translate\"\n (click)=\"onUnselectButtonClick()\"\n>\n <mat-icon>home</mat-icon>\n</button>\n","import { NgModule } from '@angular/core';\n\nimport { HomeButtonComponent } from './home-button.component';\n\n/**\n * @deprecated import the HomeButtonComponent directly\n */\n@NgModule({\n imports: [HomeButtonComponent],\n exports: [HomeButtonComponent]\n})\nexport class IgoHomeButtonModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;;;;;;;;MAca,mBAAmB,CAAA;AACpB,IAAA,cAAc,GAAG,IAAI,YAAY,EAAO,CAAC;AAEnD,IAAA,WAAA,GAAA,GAAgB;IAEhB,qBAAqB,GAAA;AACnB,QAAA,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC;KAC5B;uGAPU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECdhC,iQAUA,EDEY,MAAA,EAAA,CAAA,gCAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,2IAAE,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,4BAAA,EAAA,oBAAA,EAAA,qBAAA,EAAA,qBAAA,EAAA,yBAAA,EAAA,YAAA,EAAA,iBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,iBAAiB,EAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,IAAA,EAAA,WAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAElE,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;+BACE,iBAAiB,EAAA,UAAA,EAGf,IAAI,EAAA,OAAA,EACP,CAAC,eAAe,EAAE,gBAAgB,EAAE,aAAa,EAAE,iBAAiB,CAAC,EAAA,QAAA,EAAA,iQAAA,EAAA,MAAA,EAAA,CAAA,gCAAA,CAAA,EAAA,CAAA;wDAGpE,cAAc,EAAA,CAAA;sBAAvB,MAAM;;;AEXT;;AAEG;MAKU,mBAAmB,CAAA;uGAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wGAAnB,mBAAmB,EAAA,OAAA,EAAA,CAHpB,mBAAmB,CAAA,EAAA,OAAA,EAAA,CACnB,mBAAmB,CAAA,EAAA,CAAA,CAAA;AAElB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mBAAmB,YAHpB,mBAAmB,CAAA,EAAA,CAAA,CAAA;;2FAGlB,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAJ/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,mBAAmB,CAAC;oBAC9B,OAAO,EAAE,CAAC,mBAAmB,CAAC;AAC/B,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,108 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, makeEnvironmentProviders, APP_INITIALIZER, Component, Input } from '@angular/core';
3
+ import * as i1 from '@angular/material/icon';
4
+ import { MatIconModule, MatIconRegistry } from '@angular/material/icon';
5
+ import * as i2 from '@angular/platform-browser';
6
+
7
+ /**
8
+ * Source: https://pictogrammers.com/library/mdi/
9
+ */
10
+ const MICROSOFT_ICON = {
11
+ name: 'microsoft',
12
+ svg: `
13
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>microsoft</title><path d="M2,3H11V12H2V3M11,22H2V13H11V22M21,3V12H12V3H21M21,22H12V13H21V22Z" /></svg>
14
+ `
15
+ };
16
+ const KEYBOARD_ESC_ICON = {
17
+ name: 'keyboard-esc',
18
+ svg: `
19
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>keyboard-esc</title><path d="M1 7H7V9H3V11H7V13H3V15H7V17H1V7M11 7H15V9H11V11H13C14.11 11 15 11.9 15 13V15C15 16.11 14.11 17 13 17H9V15H13V13H11C9.9 13 9 12.11 9 11V9C9 7.9 9.9 7 11 7M19 7H21C22.11 7 23 7.9 23 9V10H21V9H19V15H21V14H23V15C23 16.11 22.11 17 21 17H19C17.9 17 17 16.11 17 15V9C17 7.9 17.9 7 19 7Z" /></svg>
20
+ `
21
+ };
22
+ const ENGINE_ICON = {
23
+ name: 'engine',
24
+ svg: `
25
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>engine</title><path d="M7,4V6H10V8H7L5,10V13H3V10H1V18H3V15H5V18H8L10,20H18V16H20V19H23V9H20V12H18V8H12V6H15V4H7Z" /></svg>
26
+ `
27
+ };
28
+ const SELECTION_MARKER_ICON = {
29
+ name: 'selection-marker',
30
+ svg: `
31
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>selection-marker</title><path d="M2 4C2 2.89 2.9 2 4 2H7V4H4V7H2V4M22 4V7H20V4H17V2H20C21.1 2 22 2.89 22 4M2 20V17H4V20H7V22H4C2.9 22 2 21.11 2 20M10 2H14V4H10V2M10 20H14V22H10V20M2 10H4V14H2V10M18.5 13C20.4 13 22 14.6 22 16.5C22 19.1 18.5 23 18.5 23C18.5 23 15 19.1 15 16.5C15 14.6 16.6 13 18.5 13M18.5 17.8C19.2 17.8 19.8 17.2 19.7 16.6C19.7 16 19.1 15.4 18.5 15.4C17.9 15.4 17.3 15.9 17.3 16.6C17.3 17.2 17.8 17.8 18.5 17.8M20 10H22V12.34C21.42 11.84 20.74 11.45 20 11.23V10Z" /></svg>
32
+ `
33
+ };
34
+ const PRESENTATION_PLAY_ICON = {
35
+ name: 'presentation-play',
36
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>presentation-play</title><path d="M2,3H10A2,2 0 0,1 12,1A2,2 0 0,1 14,3H22V5H21V16H15.25L17,22H15L13.25,16H10.75L9,22H7L8.75,16H3V5H2V3M5,5V14H19V5H5M11.85,11.85C11.76,11.94 11.64,12 11.5,12A0.5,0.5 0 0,1 11,11.5V7.5A0.5,0.5 0 0,1 11.5,7C11.64,7 11.76,7.06 11.85,7.15L13.25,8.54C13.57,8.86 13.89,9.18 13.89,9.5C13.89,9.82 13.57,10.14 13.25,10.46L11.85,11.85Z" /></svg>`
37
+ };
38
+
39
+ class IconService {
40
+ iconRegistry;
41
+ sanitizer;
42
+ constructor(iconRegistry, sanitizer) {
43
+ this.iconRegistry = iconRegistry;
44
+ this.sanitizer = sanitizer;
45
+ }
46
+ registerSvg(icon) {
47
+ this.iconRegistry.addSvgIconLiteral(icon.name, this.sanitizer.bypassSecurityTrustHtml(icon.svg));
48
+ }
49
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IconService, deps: [{ token: i1.MatIconRegistry }, { token: i2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Injectable });
50
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IconService, providedIn: 'root' });
51
+ }
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IconService, decorators: [{
53
+ type: Injectable,
54
+ args: [{
55
+ providedIn: 'root'
56
+ }]
57
+ }], ctorParameters: () => [{ type: i1.MatIconRegistry }, { type: i2.DomSanitizer }] });
58
+
59
+ function provideIcon(style = 'outlined') {
60
+ return makeEnvironmentProviders([
61
+ MatIconModule,
62
+ {
63
+ provide: APP_INITIALIZER,
64
+ useFactory: (iconRegistry) => () => iconRegistry.setDefaultFontSetClass(`material-symbols-${style}`),
65
+ deps: [MatIconRegistry],
66
+ multi: true
67
+ }
68
+ ]);
69
+ }
70
+
71
+ class IgoIconComponent {
72
+ iconService;
73
+ set icon(icon) {
74
+ if (this.isSvg(icon)) {
75
+ this.registerSvg(icon);
76
+ }
77
+ this._icon = icon;
78
+ }
79
+ get icon() {
80
+ return this._icon;
81
+ }
82
+ _icon;
83
+ constructor(iconService) {
84
+ this.iconService = iconService;
85
+ }
86
+ registerSvg(icon) {
87
+ this.iconService.registerSvg(icon);
88
+ }
89
+ isSvg(icon) {
90
+ return typeof icon != 'string';
91
+ }
92
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoIconComponent, deps: [{ token: IconService }], target: i0.ɵɵFactoryTarget.Component });
93
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.9", type: IgoIconComponent, isStandalone: true, selector: "igo-icon", inputs: { icon: "icon" }, ngImport: i0, template: "@if (isSvg(icon)) {\n <mat-icon [svgIcon]=\"icon.name\"></mat-icon>\n} @else {\n <mat-icon>{{ icon }}</mat-icon>\n}\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] });
94
+ }
95
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoIconComponent, decorators: [{
96
+ type: Component,
97
+ args: [{ selector: 'igo-icon', standalone: true, imports: [MatIconModule], template: "@if (isSvg(icon)) {\n <mat-icon [svgIcon]=\"icon.name\"></mat-icon>\n} @else {\n <mat-icon>{{ icon }}</mat-icon>\n}\n" }]
98
+ }], ctorParameters: () => [{ type: IconService }], propDecorators: { icon: [{
99
+ type: Input,
100
+ args: [{ required: true }]
101
+ }] } });
102
+
103
+ /**
104
+ * Generated bundle index. Do not edit.
105
+ */
106
+
107
+ export { ENGINE_ICON, IconService, IgoIconComponent, KEYBOARD_ESC_ICON, MICROSOFT_ICON, PRESENTATION_PLAY_ICON, SELECTION_MARKER_ICON, provideIcon };
108
+ //# sourceMappingURL=igo2-common-icon.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-icon.mjs","sources":["../../../packages/common/icon/src/shared/icons.ts","../../../packages/common/icon/src/shared/icon.service.ts","../../../packages/common/icon/src/icon.provider.ts","../../../packages/common/icon/src/icon/icon.component.ts","../../../packages/common/icon/src/icon/icon.component.html","../../../packages/common/icon/src/igo2-common-icon.ts"],"sourcesContent":["import { IconSvg } from './icon.interface';\n\n/**\n * Source: https://pictogrammers.com/library/mdi/\n */\n\nexport const MICROSOFT_ICON: IconSvg = {\n name: 'microsoft',\n svg: `\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>microsoft</title><path d=\"M2,3H11V12H2V3M11,22H2V13H11V22M21,3V12H12V3H21M21,22H12V13H21V22Z\" /></svg>\n`\n};\n\nexport const KEYBOARD_ESC_ICON: IconSvg = {\n name: 'keyboard-esc',\n svg: `\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>keyboard-esc</title><path d=\"M1 7H7V9H3V11H7V13H3V15H7V17H1V7M11 7H15V9H11V11H13C14.11 11 15 11.9 15 13V15C15 16.11 14.11 17 13 17H9V15H13V13H11C9.9 13 9 12.11 9 11V9C9 7.9 9.9 7 11 7M19 7H21C22.11 7 23 7.9 23 9V10H21V9H19V15H21V14H23V15C23 16.11 22.11 17 21 17H19C17.9 17 17 16.11 17 15V9C17 7.9 17.9 7 19 7Z\" /></svg>\n`\n};\n\nexport const ENGINE_ICON: IconSvg = {\n name: 'engine',\n svg: `\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>engine</title><path d=\"M7,4V6H10V8H7L5,10V13H3V10H1V18H3V15H5V18H8L10,20H18V16H20V19H23V9H20V12H18V8H12V6H15V4H7Z\" /></svg>\n`\n};\n\nexport const SELECTION_MARKER_ICON: IconSvg = {\n name: 'selection-marker',\n svg: `\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>selection-marker</title><path d=\"M2 4C2 2.89 2.9 2 4 2H7V4H4V7H2V4M22 4V7H20V4H17V2H20C21.1 2 22 2.89 22 4M2 20V17H4V20H7V22H4C2.9 22 2 21.11 2 20M10 2H14V4H10V2M10 20H14V22H10V20M2 10H4V14H2V10M18.5 13C20.4 13 22 14.6 22 16.5C22 19.1 18.5 23 18.5 23C18.5 23 15 19.1 15 16.5C15 14.6 16.6 13 18.5 13M18.5 17.8C19.2 17.8 19.8 17.2 19.7 16.6C19.7 16 19.1 15.4 18.5 15.4C17.9 15.4 17.3 15.9 17.3 16.6C17.3 17.2 17.8 17.8 18.5 17.8M20 10H22V12.34C21.42 11.84 20.74 11.45 20 11.23V10Z\" /></svg>\n`\n};\n\nexport const PRESENTATION_PLAY_ICON: IconSvg = {\n name: 'presentation-play',\n svg: `<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>presentation-play</title><path d=\"M2,3H10A2,2 0 0,1 12,1A2,2 0 0,1 14,3H22V5H21V16H15.25L17,22H15L13.25,16H10.75L9,22H7L8.75,16H3V5H2V3M5,5V14H19V5H5M11.85,11.85C11.76,11.94 11.64,12 11.5,12A0.5,0.5 0 0,1 11,11.5V7.5A0.5,0.5 0 0,1 11.5,7C11.64,7 11.76,7.06 11.85,7.15L13.25,8.54C13.57,8.86 13.89,9.18 13.89,9.5C13.89,9.82 13.57,10.14 13.25,10.46L11.85,11.85Z\" /></svg>`\n};\n","import { Injectable } from '@angular/core';\nimport { MatIconRegistry } from '@angular/material/icon';\nimport { DomSanitizer } from '@angular/platform-browser';\n\nimport { IconSvg } from './icon.interface';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class IconService {\n constructor(\n private iconRegistry: MatIconRegistry,\n private sanitizer: DomSanitizer\n ) {}\n\n registerSvg(icon: IconSvg): void {\n this.iconRegistry.addSvgIconLiteral(\n icon.name,\n this.sanitizer.bypassSecurityTrustHtml(icon.svg)\n );\n }\n}\n","import {\n APP_INITIALIZER,\n EnvironmentProviders,\n makeEnvironmentProviders\n} from '@angular/core';\nimport { MatIconModule, MatIconRegistry } from '@angular/material/icon';\n\ntype MaterialSymbolStyle = 'outlined' | 'rounded' | 'sharp';\n\nexport function provideIcon(\n style: MaterialSymbolStyle = 'outlined'\n): EnvironmentProviders {\n return makeEnvironmentProviders([\n MatIconModule,\n {\n provide: APP_INITIALIZER,\n useFactory: (iconRegistry: MatIconRegistry) => () =>\n iconRegistry.setDefaultFontSetClass(`material-symbols-${style}`),\n deps: [MatIconRegistry],\n multi: true\n }\n ]);\n}\n","import { Component, Input } from '@angular/core';\nimport { MatIconModule } from '@angular/material/icon';\n\nimport { IconSvg } from '../shared';\nimport { IconService } from '../shared/icon.service';\n\n@Component({\n selector: 'igo-icon',\n standalone: true,\n imports: [MatIconModule],\n templateUrl: './icon.component.html'\n})\nexport class IgoIconComponent {\n @Input({ required: true })\n set icon(icon: string | IconSvg) {\n if (this.isSvg(icon)) {\n this.registerSvg(icon);\n }\n\n this._icon = icon;\n }\n get icon(): string | IconSvg {\n return this._icon;\n }\n private _icon: string | IconSvg;\n\n constructor(private iconService: IconService) {}\n\n registerSvg(icon: IconSvg): void {\n this.iconService.registerSvg(icon);\n }\n\n isSvg(icon: string | IconSvg): icon is IconSvg {\n return typeof icon != 'string';\n }\n}\n","@if (isSvg(icon)) {\n <mat-icon [svgIcon]=\"icon.name\"></mat-icon>\n} @else {\n <mat-icon>{{ icon }}</mat-icon>\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["i1.IconService","i2"],"mappings":"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"}
@@ -0,0 +1,129 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, Input, HostListener, Pipe, NgModule } from '@angular/core';
3
+ import { __decorate, __metadata } from 'tslib';
4
+ import * as i1 from '@angular/common/http';
5
+ import { HttpHeaders } from '@angular/common/http';
6
+ import * as i2 from '@igo2/core/config';
7
+ import { Observable } from 'rxjs';
8
+ import { catchError, switchMap } from 'rxjs/operators';
9
+ import { Cacheable } from 'ts-cacheable';
10
+
11
+ class ImageErrorDirective {
12
+ el;
13
+ errorImageUrl = './assets/igo2/common/images/na.png';
14
+ hideError = false;
15
+ constructor(el) {
16
+ this.el = el;
17
+ }
18
+ onError(event) {
19
+ if (this.hideError) {
20
+ this.el.nativeElement.style.display = 'none';
21
+ }
22
+ else {
23
+ event.target.src = this.errorImageUrl;
24
+ }
25
+ }
26
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ImageErrorDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ImageErrorDirective, isStandalone: true, selector: "[igoImageError]", inputs: { errorImageUrl: "errorImageUrl", hideError: "hideError" }, host: { listeners: { "error": "onError($event)" } }, ngImport: i0 });
28
+ }
29
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ImageErrorDirective, decorators: [{
30
+ type: Directive,
31
+ args: [{
32
+ selector: '[igoImageError]',
33
+ standalone: true
34
+ }]
35
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { errorImageUrl: [{
36
+ type: Input
37
+ }], hideError: [{
38
+ type: Input
39
+ }], onError: [{
40
+ type: HostListener,
41
+ args: ['error', ['$event']]
42
+ }] } });
43
+
44
+ class SecureImagePipe {
45
+ http;
46
+ configService;
47
+ constructor(http, configService) {
48
+ this.http = http;
49
+ this.configService = configService;
50
+ }
51
+ transform(url) {
52
+ const headers = new HttpHeaders({
53
+ 'Content-Type': 'text/plain',
54
+ activityInterceptor: 'false',
55
+ interceptError: 'false'
56
+ });
57
+ const regexDepot = new RegExp(this.configService?.getConfig('depot.url') + '.*?(?="|$)');
58
+ if (regexDepot.test(url)) {
59
+ url = url.match(regexDepot)[0];
60
+ }
61
+ return this.http
62
+ .get(url, {
63
+ headers,
64
+ responseType: 'blob'
65
+ })
66
+ .pipe(catchError((err) => {
67
+ err.error.caught = true;
68
+ err.error.toDisplay = false;
69
+ throw err;
70
+ }), switchMap((blob) => {
71
+ return new Observable((observer) => {
72
+ const reader = new FileReader();
73
+ reader.readAsDataURL(blob);
74
+ reader.onloadend = () => {
75
+ observer.next(reader.result);
76
+ observer.complete();
77
+ };
78
+ });
79
+ }));
80
+ }
81
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: SecureImagePipe, deps: [{ token: i1.HttpClient }, { token: i2.ConfigService }], target: i0.ɵɵFactoryTarget.Pipe });
82
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: SecureImagePipe, isStandalone: true, name: "secureImage" });
83
+ }
84
+ __decorate([
85
+ Cacheable({
86
+ maxCacheCount: 20
87
+ }),
88
+ __metadata("design:type", Function),
89
+ __metadata("design:paramtypes", [String]),
90
+ __metadata("design:returntype", Observable)
91
+ ], SecureImagePipe.prototype, "transform", null);
92
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: SecureImagePipe, decorators: [{
93
+ type: Pipe,
94
+ args: [{
95
+ name: 'secureImage',
96
+ standalone: true
97
+ }]
98
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: i2.ConfigService }], propDecorators: { transform: [] } });
99
+
100
+ /**
101
+ * @deprecated import the components/directives directly or IMAGE_DIRECTIVES for the set
102
+ */
103
+ class IgoImageModule {
104
+ static forRoot() {
105
+ return {
106
+ ngModule: IgoImageModule,
107
+ providers: []
108
+ };
109
+ }
110
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoImageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
111
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: IgoImageModule, imports: [SecureImagePipe, ImageErrorDirective], exports: [SecureImagePipe, ImageErrorDirective] });
112
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoImageModule });
113
+ }
114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IgoImageModule, decorators: [{
115
+ type: NgModule,
116
+ args: [{
117
+ imports: [SecureImagePipe, ImageErrorDirective],
118
+ exports: [SecureImagePipe, ImageErrorDirective]
119
+ }]
120
+ }] });
121
+
122
+ const IMAGE_DIRECTIVES = [SecureImagePipe, ImageErrorDirective];
123
+
124
+ /**
125
+ * Generated bundle index. Do not edit.
126
+ */
127
+
128
+ export { IMAGE_DIRECTIVES, IgoImageModule, ImageErrorDirective, SecureImagePipe };
129
+ //# sourceMappingURL=igo2-common-image.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-image.mjs","sources":["../../../packages/common/image/src/image-error.directive.ts","../../../packages/common/image/src/secure-image.pipe.ts","../../../packages/common/image/src/image.module.ts","../../../packages/common/image/src/public_api.ts","../../../packages/common/image/src/igo2-common-image.ts"],"sourcesContent":["import { Directive, ElementRef, HostListener, Input } from '@angular/core';\n\n@Directive({\n selector: '[igoImageError]',\n standalone: true\n})\nexport class ImageErrorDirective {\n @Input() errorImageUrl: string = './assets/igo2/common/images/na.png';\n @Input() hideError: boolean = false;\n\n constructor(private el: ElementRef) {}\n\n @HostListener('error', ['$event'])\n public onError(event: any): void {\n if (this.hideError) {\n this.el.nativeElement.style.display = 'none';\n } else {\n event.target.src = this.errorImageUrl;\n }\n }\n}\n","import { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Pipe, PipeTransform } from '@angular/core';\n\nimport { ConfigService } from '@igo2/core/config';\n\nimport { Observable } from 'rxjs';\nimport { catchError, switchMap } from 'rxjs/operators';\nimport { Cacheable } from 'ts-cacheable';\n\n@Pipe({\n name: 'secureImage',\n standalone: true\n})\nexport class SecureImagePipe implements PipeTransform {\n constructor(\n private http: HttpClient,\n private configService?: ConfigService\n ) {}\n\n @Cacheable({\n maxCacheCount: 20\n })\n transform(url: string): Observable<string> {\n const headers = new HttpHeaders({\n 'Content-Type': 'text/plain',\n activityInterceptor: 'false',\n interceptError: 'false'\n });\n\n const regexDepot = new RegExp(\n this.configService?.getConfig('depot.url') + '.*?(?=\"|$)'\n );\n if (regexDepot.test(url)) {\n url = url.match(regexDepot)[0];\n }\n\n return this.http\n .get(url, {\n headers,\n responseType: 'blob'\n })\n .pipe(\n catchError((err) => {\n err.error.caught = true;\n err.error.toDisplay = false;\n throw err;\n }),\n switchMap((blob) => {\n return new Observable((observer) => {\n const reader = new FileReader();\n reader.readAsDataURL(blob);\n reader.onloadend = () => {\n observer.next(reader.result);\n observer.complete();\n };\n });\n })\n ) as Observable<string>;\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { ImageErrorDirective } from './image-error.directive';\nimport { SecureImagePipe } from './secure-image.pipe';\n\n/**\n * @deprecated import the components/directives directly or IMAGE_DIRECTIVES for the set\n */\n@NgModule({\n imports: [SecureImagePipe, ImageErrorDirective],\n exports: [SecureImagePipe, ImageErrorDirective]\n})\nexport class IgoImageModule {\n static forRoot(): ModuleWithProviders<IgoImageModule> {\n return {\n ngModule: IgoImageModule,\n providers: []\n };\n }\n}\n","import { ImageErrorDirective } from './image-error.directive';\nimport { SecureImagePipe } from './secure-image.pipe';\n\nexport * from './image.module';\nexport * from './image-error.directive';\nexport * from './secure-image.pipe';\n\nexport const IMAGE_DIRECTIVES = [SecureImagePipe, ImageErrorDirective] as const;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}