@igo2/common 1.11.1 → 1.13.0-alpha.0

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 (261) hide show
  1. package/{esm2015/igo2-common.js → esm2020/igo2-common.mjs} +0 -0
  2. package/{esm2015/lib/action/action.module.js → esm2020/lib/action/action.module.mjs} +3 -5
  3. package/esm2020/lib/action/actionbar/actionbar-item.component.mjs +252 -0
  4. package/esm2020/lib/action/actionbar/actionbar.component.mjs +370 -0
  5. package/{esm2015/lib/action/actionbar/actionbar.module.js → esm2020/lib/action/actionbar/actionbar.module.mjs} +10 -12
  6. package/{esm2015/lib/action/index.js → esm2020/lib/action/index.mjs} +1 -1
  7. package/{esm2015/lib/action/shared/action.enums.js → esm2020/lib/action/shared/action.enums.mjs} +1 -1
  8. package/esm2020/lib/action/shared/action.interfaces.mjs +2 -0
  9. package/{esm2015/lib/action/shared/index.js → esm2020/lib/action/shared/index.mjs} +1 -1
  10. package/{esm2015/lib/action/shared/store.js → esm2020/lib/action/shared/store.mjs} +1 -1
  11. package/{esm2015/lib/backdrop/backdrop.component.js → esm2020/lib/backdrop/backdrop.component.mjs} +3 -7
  12. package/{esm2015/lib/backdrop/backdrop.module.js → esm2020/lib/backdrop/backdrop.module.mjs} +2 -2
  13. package/{esm2015/lib/backdrop/index.js → esm2020/lib/backdrop/index.mjs} +1 -1
  14. package/{esm2015/lib/badge-icon/badge-icon.directive.js → esm2020/lib/badge-icon/badge-icon.directive.mjs} +1 -1
  15. package/{esm2015/lib/badge-icon/badge-icon.module.js → esm2020/lib/badge-icon/badge-icon.module.mjs} +2 -2
  16. package/{esm2015/lib/badge-icon/index.js → esm2020/lib/badge-icon/index.mjs} +1 -1
  17. package/{esm2015/lib/clickout/clickout.directive.js → esm2020/lib/clickout/clickout.directive.mjs} +1 -1
  18. package/{esm2015/lib/clickout/clickout.module.js → esm2020/lib/clickout/clickout.module.mjs} +2 -2
  19. package/{esm2015/lib/clickout/index.js → esm2020/lib/clickout/index.mjs} +1 -1
  20. package/{esm2015/lib/clone/clone.module.js → esm2020/lib/clone/clone.module.mjs} +2 -2
  21. package/{esm2015/lib/clone/clone.pipe.js → esm2020/lib/clone/clone.pipe.mjs} +1 -1
  22. package/{esm2015/lib/clone/index.js → esm2020/lib/clone/index.mjs} +1 -1
  23. package/{esm2015/lib/collapsible/collapse.directive.js → esm2020/lib/collapsible/collapse.directive.mjs} +1 -1
  24. package/{esm2015/lib/collapsible/collapsible.component.js → esm2020/lib/collapsible/collapsible.component.mjs} +9 -15
  25. package/{esm2015/lib/collapsible/collapsible.module.js → esm2020/lib/collapsible/collapsible.module.mjs} +2 -2
  26. package/{esm2015/lib/collapsible/index.js → esm2020/lib/collapsible/index.mjs} +1 -1
  27. package/{esm2015/lib/confirm-dialog/confirm-dialog.component.js → esm2020/lib/confirm-dialog/confirm-dialog.component.mjs} +5 -11
  28. package/{esm2015/lib/confirm-dialog/confirm-dialog.module.js → esm2020/lib/confirm-dialog/confirm-dialog.module.mjs} +2 -2
  29. package/{esm2015/lib/confirm-dialog/confirm-dialog.service.js → esm2020/lib/confirm-dialog/confirm-dialog.service.mjs} +1 -1
  30. package/{esm2015/lib/confirm-dialog/index.js → esm2020/lib/confirm-dialog/index.mjs} +1 -1
  31. package/{esm2015/lib/context-menu/context-menu.directive.js → esm2020/lib/context-menu/context-menu.directive.mjs} +1 -1
  32. package/{esm2015/lib/context-menu/context-menu.module.js → esm2020/lib/context-menu/context-menu.module.mjs} +2 -2
  33. package/{esm2015/lib/context-menu/index.js → esm2020/lib/context-menu/index.mjs} +1 -1
  34. package/{esm2015/lib/custom-html/custom-html.component.js → esm2020/lib/custom-html/custom-html.component.mjs} +3 -7
  35. package/{esm2015/lib/custom-html/custom-html.module.js → esm2020/lib/custom-html/custom-html.module.mjs} +7 -9
  36. package/{esm2015/lib/custom-html/custom-html.pipe.js → esm2020/lib/custom-html/custom-html.pipe.mjs} +1 -1
  37. package/{esm2015/lib/custom-html/index.js → esm2020/lib/custom-html/index.mjs} +1 -1
  38. package/esm2020/lib/dom/dom.interfaces.mjs +2 -0
  39. package/esm2020/lib/dom/dom.module.mjs +23 -0
  40. package/esm2020/lib/dom/dom.service.mjs +30 -0
  41. package/esm2020/lib/dom/index.mjs +3 -0
  42. package/{esm2015/lib/drag-drop/drag-drop.directive.js → esm2020/lib/drag-drop/drag-drop.directive.mjs} +0 -0
  43. package/{esm2015/lib/drag-drop/drag-drop.module.js → esm2020/lib/drag-drop/drag-drop.module.mjs} +2 -2
  44. package/{esm2015/lib/drag-drop/index.js → esm2020/lib/drag-drop/index.mjs} +1 -1
  45. package/{esm2015/lib/dynamic-component/dynamic-component.module.js → esm2020/lib/dynamic-component/dynamic-component.module.mjs} +3 -5
  46. package/{esm2015/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.js → esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs} +2 -7
  47. package/{esm2015/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.js → esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs} +2 -4
  48. package/{esm2015/lib/dynamic-component/index.js → esm2020/lib/dynamic-component/index.mjs} +1 -1
  49. package/{esm2015/lib/dynamic-component/shared/dynamic-component.interfaces.js → esm2020/lib/dynamic-component/shared/dynamic-component.interfaces.mjs} +1 -1
  50. package/{esm2015/lib/dynamic-component/shared/dynamic-component.js → esm2020/lib/dynamic-component/shared/dynamic-component.mjs} +1 -1
  51. package/{esm2015/lib/dynamic-component/shared/dynamic-component.service.js → esm2020/lib/dynamic-component/shared/dynamic-component.service.mjs} +1 -1
  52. package/{esm2015/lib/dynamic-component/shared/index.js → esm2020/lib/dynamic-component/shared/index.mjs} +1 -1
  53. package/{esm2015/lib/entity/entity-selector/entity-selector.component.js → esm2020/lib/entity/entity-selector/entity-selector.component.mjs} +8 -15
  54. package/{esm2015/lib/entity/entity-selector/entity-selector.module.js → esm2020/lib/entity/entity-selector/entity-selector.module.mjs} +4 -6
  55. package/{esm2015/lib/entity/entity-table/entity-table-row.directive.js → esm2020/lib/entity/entity-table/entity-table-row.directive.mjs} +1 -1
  56. package/esm2020/lib/entity/entity-table/entity-table.component.mjs +1339 -0
  57. package/{esm2015/lib/entity/entity-table/entity-table.module.js → esm2020/lib/entity/entity-table/entity-table.module.mjs} +20 -22
  58. package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +132 -0
  59. package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
  60. package/{esm2015/lib/entity/entity-table-paginator/entity-table-paginator.module.js → esm2020/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs} +2 -4
  61. package/{esm2015/lib/entity/entity.module.js → esm2020/lib/entity/entity.module.mjs} +2 -4
  62. package/{esm2015/lib/entity/index.js → esm2020/lib/entity/index.mjs} +1 -1
  63. package/{esm2015/lib/entity/shared/entity.enums.js → esm2020/lib/entity/shared/entity.enums.mjs} +1 -1
  64. package/esm2020/lib/entity/shared/entity.interfaces.mjs +2 -0
  65. package/esm2020/lib/entity/shared/entity.utils.mjs +67 -0
  66. package/{esm2015/lib/entity/shared/index.js → esm2020/lib/entity/shared/index.mjs} +1 -1
  67. package/{esm2015/lib/entity/shared/state.js → esm2020/lib/entity/shared/state.mjs} +1 -1
  68. package/{esm2015/lib/entity/shared/store.js → esm2020/lib/entity/shared/store.mjs} +1 -1
  69. package/{esm2015/lib/entity/shared/strategies/filter-custom-function.js → esm2020/lib/entity/shared/strategies/filter-custom-function.mjs} +1 -1
  70. package/{esm2015/lib/entity/shared/strategies/filter-selection.js → esm2020/lib/entity/shared/strategies/filter-selection.mjs} +1 -1
  71. package/{esm2015/lib/entity/shared/strategies/index.js → esm2020/lib/entity/shared/strategies/index.mjs} +1 -1
  72. package/{esm2015/lib/entity/shared/strategies/strategy.js → esm2020/lib/entity/shared/strategies/strategy.mjs} +1 -1
  73. package/{esm2015/lib/entity/shared/transaction.js → esm2020/lib/entity/shared/transaction.mjs} +1 -1
  74. package/{esm2015/lib/entity/shared/view.js → esm2020/lib/entity/shared/view.mjs} +1 -1
  75. package/{esm2015/lib/entity/shared/watcher.js → esm2020/lib/entity/shared/watcher.mjs} +1 -1
  76. package/{esm2015/lib/flexible/flexible.component.js → esm2020/lib/flexible/flexible.component.mjs} +7 -17
  77. package/{esm2015/lib/flexible/flexible.module.js → esm2020/lib/flexible/flexible.module.mjs} +2 -2
  78. package/{esm2015/lib/flexible/flexible.type.js → esm2020/lib/flexible/flexible.type.mjs} +1 -1
  79. package/{esm2015/lib/flexible/index.js → esm2020/lib/flexible/index.mjs} +1 -1
  80. package/esm2020/lib/form/form/form.component.mjs +117 -0
  81. package/{esm2015/lib/form/form/form.module.js → esm2020/lib/form/form/form.module.mjs} +4 -6
  82. package/esm2020/lib/form/form-field/form-field-select.component.mjs +127 -0
  83. package/esm2020/lib/form/form-field/form-field-text.component.mjs +104 -0
  84. package/esm2020/lib/form/form-field/form-field-textarea.component.mjs +105 -0
  85. package/{esm2015/lib/form/form-field/form-field.component.js → esm2020/lib/form/form-field/form-field.component.mjs} +3 -8
  86. package/{esm2015/lib/form/form-field/form-field.module.js → esm2020/lib/form/form-field/form-field.module.mjs} +10 -12
  87. package/{esm2015/lib/form/form-field/index.js → esm2020/lib/form/form-field/index.mjs} +1 -1
  88. package/{esm2015/lib/form/form-group/form-group.component.js → esm2020/lib/form/form-group/form-group.component.mjs} +5 -10
  89. package/{esm2015/lib/form/form-group/form-group.module.js → esm2020/lib/form/form-group/form-group.module.mjs} +5 -7
  90. package/{esm2015/lib/form/form.module.js → esm2020/lib/form/form.module.mjs} +4 -6
  91. package/{esm2015/lib/form/index.js → esm2020/lib/form/index.mjs} +1 -1
  92. package/{esm2015/lib/form/shared/form-field-component.js → esm2020/lib/form/shared/form-field-component.mjs} +1 -1
  93. package/{esm2015/lib/form/shared/form-field.service.js → esm2020/lib/form/shared/form-field.service.mjs} +1 -1
  94. package/esm2020/lib/form/shared/form.interfaces.mjs +2 -0
  95. package/esm2020/lib/form/shared/form.service.mjs +81 -0
  96. package/{esm2015/lib/form/shared/form.utils.js → esm2020/lib/form/shared/form.utils.mjs} +1 -1
  97. package/{esm2015/lib/form/shared/index.js → esm2020/lib/form/shared/index.mjs} +1 -1
  98. package/{esm2015/lib/home-button/home-button.component.js → esm2020/lib/home-button/home-button.component.mjs} +6 -10
  99. package/{esm2015/lib/home-button/home-button.module.js → esm2020/lib/home-button/home-button.module.mjs} +6 -8
  100. package/{esm2015/lib/home-button/index.js → esm2020/lib/home-button/index.mjs} +1 -1
  101. package/{esm2015/lib/image/image.module.js → esm2020/lib/image/image.module.mjs} +2 -2
  102. package/{esm2015/lib/image/index.js → esm2020/lib/image/index.mjs} +1 -1
  103. package/esm2020/lib/image/secure-image.pipe.mjs +54 -0
  104. package/{esm2015/lib/interactive-tour/index.js → esm2020/lib/interactive-tour/index.mjs} +1 -1
  105. package/esm2020/lib/interactive-tour/interactive-tour.component.mjs +135 -0
  106. package/esm2020/lib/interactive-tour/interactive-tour.interface.mjs +2 -0
  107. package/{esm2015/lib/interactive-tour/interactive-tour.loader.js → esm2020/lib/interactive-tour/interactive-tour.loader.mjs} +1 -1
  108. package/{esm2015/lib/interactive-tour/interactive-tour.module.js → esm2020/lib/interactive-tour/interactive-tour.module.mjs} +6 -8
  109. package/esm2020/lib/interactive-tour/interactive-tour.service.mjs +285 -0
  110. package/{esm2015/lib/json-dialog/index.js → esm2020/lib/json-dialog/index.mjs} +1 -1
  111. package/{esm2015/lib/json-dialog/json-dialog.component.js → esm2020/lib/json-dialog/json-dialog.component.mjs} +6 -13
  112. package/{esm2015/lib/json-dialog/json-dialog.module.js → esm2020/lib/json-dialog/json-dialog.module.mjs} +2 -2
  113. package/{esm2015/lib/json-dialog/json-dialog.service.js → esm2020/lib/json-dialog/json-dialog.service.mjs} +1 -1
  114. package/{esm2015/lib/keyvalue/index.js → esm2020/lib/keyvalue/index.mjs} +1 -1
  115. package/{esm2015/lib/keyvalue/keyvalue.module.js → esm2020/lib/keyvalue/keyvalue.module.mjs} +2 -2
  116. package/{esm2015/lib/keyvalue/keyvalue.pipe.js → esm2020/lib/keyvalue/keyvalue.pipe.mjs} +1 -1
  117. package/{esm2015/lib/list/index.js → esm2020/lib/list/index.mjs} +1 -1
  118. package/{esm2015/lib/list/list-item.directive.js → esm2020/lib/list/list-item.directive.mjs} +1 -1
  119. package/{esm2015/lib/list/list.component.js → esm2020/lib/list/list.component.mjs} +6 -10
  120. package/{esm2015/lib/list/list.module.js → esm2020/lib/list/list.module.mjs} +2 -2
  121. package/{esm2015/lib/panel/index.js → esm2020/lib/panel/index.mjs} +1 -1
  122. package/esm2020/lib/panel/panel.component.mjs +60 -0
  123. package/{esm2015/lib/panel/panel.module.js → esm2020/lib/panel/panel.module.mjs} +2 -2
  124. package/{esm2015/lib/sidenav/index.js → esm2020/lib/sidenav/index.mjs} +1 -1
  125. package/{esm2015/lib/sidenav/sidenav-shim.directive.js → esm2020/lib/sidenav/sidenav-shim.directive.mjs} +1 -1
  126. package/{esm2015/lib/sidenav/sidenav.module.js → esm2020/lib/sidenav/sidenav.module.mjs} +2 -2
  127. package/{esm2015/lib/spinner/index.js → esm2020/lib/spinner/index.mjs} +1 -1
  128. package/{esm2015/lib/spinner/spinner-activity.directive.js → esm2020/lib/spinner/spinner-activity.directive.mjs} +1 -1
  129. package/{esm2015/lib/spinner/spinner.component.js → esm2020/lib/spinner/spinner.component.mjs} +4 -9
  130. package/{esm2015/lib/spinner/spinner.module.js → esm2020/lib/spinner/spinner.module.mjs} +2 -2
  131. package/{esm2015/lib/stop-propagation/index.js → esm2020/lib/stop-propagation/index.mjs} +1 -1
  132. package/{esm2015/lib/stop-propagation/stop-drop-propagation.directive.js → esm2020/lib/stop-propagation/stop-drop-propagation.directive.mjs} +1 -1
  133. package/{esm2015/lib/stop-propagation/stop-propagation.directive.js → esm2020/lib/stop-propagation/stop-propagation.directive.mjs} +1 -1
  134. package/{esm2015/lib/stop-propagation/stop-propagation.module.js → esm2020/lib/stop-propagation/stop-propagation.module.mjs} +2 -2
  135. package/{esm2015/lib/table/index.js → esm2020/lib/table/index.mjs} +1 -1
  136. package/{esm2015/lib/table/table-action-color.enum.js → esm2020/lib/table/table-action-color.enum.mjs} +1 -1
  137. package/{esm2015/lib/table/table-database.js → esm2020/lib/table/table-database.mjs} +1 -1
  138. package/{esm2015/lib/table/table-datasource.js → esm2020/lib/table/table-datasource.mjs} +1 -1
  139. package/esm2020/lib/table/table-model.interface.mjs +2 -0
  140. package/esm2020/lib/table/table.component.mjs +297 -0
  141. package/{esm2015/lib/table/table.module.js → esm2020/lib/table/table.module.mjs} +12 -14
  142. package/{esm2015/lib/tool/index.js → esm2020/lib/tool/index.mjs} +1 -1
  143. package/{esm2015/lib/tool/shared/index.js → esm2020/lib/tool/shared/index.mjs} +1 -1
  144. package/{esm2015/lib/tool/shared/tool-component.js → esm2020/lib/tool/shared/tool-component.mjs} +1 -1
  145. package/esm2020/lib/tool/shared/tool.interface.mjs +2 -0
  146. package/{esm2015/lib/tool/shared/tool.service.js → esm2020/lib/tool/shared/tool.service.mjs} +1 -1
  147. package/{esm2015/lib/tool/shared/toolbox.enums.js → esm2020/lib/tool/shared/toolbox.enums.mjs} +1 -1
  148. package/{esm2015/lib/tool/shared/toolbox.js → esm2020/lib/tool/shared/toolbox.mjs} +1 -1
  149. package/{esm2015/lib/tool/tool.module.js → esm2020/lib/tool/tool.module.mjs} +2 -4
  150. package/{esm2015/lib/tool/toolbox/toolbox.animation.js → esm2020/lib/tool/toolbox/toolbox.animation.mjs} +1 -1
  151. package/esm2020/lib/tool/toolbox/toolbox.component.mjs +255 -0
  152. package/{esm2015/lib/tool/toolbox/toolbox.module.js → esm2020/lib/tool/toolbox/toolbox.module.mjs} +4 -6
  153. package/{esm2015/lib/widget/index.js → esm2020/lib/widget/index.mjs} +1 -1
  154. package/{esm2015/lib/widget/shared/index.js → esm2020/lib/widget/shared/index.mjs} +1 -1
  155. package/esm2020/lib/widget/shared/widget.interfaces.mjs +2 -0
  156. package/{esm2015/lib/widget/shared/widget.js → esm2020/lib/widget/shared/widget.mjs} +1 -1
  157. package/{esm2015/lib/widget/shared/widget.service.js → esm2020/lib/widget/shared/widget.service.mjs} +1 -1
  158. package/{esm2015/lib/widget/widget-outlet/widget-outlet.component.js → esm2020/lib/widget/widget-outlet/widget-outlet.component.mjs} +3 -8
  159. package/{esm2015/lib/widget/widget-outlet/widget-outlet.module.js → esm2020/lib/widget/widget-outlet/widget-outlet.module.mjs} +3 -5
  160. package/{esm2015/lib/widget/widget.module.js → esm2020/lib/widget/widget.module.mjs} +3 -5
  161. package/{esm2015/lib/workspace/index.js → esm2020/lib/workspace/index.mjs} +1 -1
  162. package/{esm2015/lib/workspace/shared/index.js → esm2020/lib/workspace/shared/index.mjs} +1 -1
  163. package/{esm2015/lib/workspace/shared/store.js → esm2020/lib/workspace/shared/store.mjs} +1 -1
  164. package/esm2020/lib/workspace/shared/workspace.interfaces.mjs +2 -0
  165. package/{esm2015/lib/workspace/shared/workspace.js → esm2020/lib/workspace/shared/workspace.mjs} +1 -1
  166. package/{esm2015/lib/workspace/workspace-selector/workspace-selector.component.js → esm2020/lib/workspace/workspace-selector/workspace-selector.component.mjs} +3 -8
  167. package/{esm2015/lib/workspace/workspace-selector/workspace-selector.module.js → esm2020/lib/workspace/workspace-selector/workspace-selector.module.mjs} +3 -5
  168. package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +88 -0
  169. package/{esm2015/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.js → esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs} +3 -5
  170. package/{esm2015/lib/workspace/workspace.module.js → esm2020/lib/workspace/workspace.module.mjs} +2 -4
  171. package/esm2020/public_api.mjs +74 -0
  172. package/fesm2015/igo2-common.mjs +10145 -0
  173. package/fesm2015/igo2-common.mjs.map +1 -0
  174. package/{fesm2015/igo2-common.js → fesm2020/igo2-common.mjs} +536 -702
  175. package/fesm2020/igo2-common.mjs.map +1 -0
  176. package/{igo2-common.d.ts → index.d.ts} +0 -0
  177. package/lib/action/actionbar/actionbar-item.component.d.ts +1 -1
  178. package/lib/action/actionbar/actionbar.component.d.ts +1 -1
  179. package/lib/backdrop/backdrop.component.d.ts +1 -1
  180. package/lib/badge-icon/badge-icon.directive.d.ts +1 -1
  181. package/lib/clickout/clickout.directive.d.ts +1 -1
  182. package/lib/clone/clone.pipe.d.ts +1 -1
  183. package/lib/collapsible/collapse.directive.d.ts +1 -1
  184. package/lib/collapsible/collapsible.component.d.ts +1 -1
  185. package/lib/confirm-dialog/confirm-dialog.component.d.ts +1 -1
  186. package/lib/context-menu/context-menu.directive.d.ts +1 -1
  187. package/lib/custom-html/custom-html.component.d.ts +1 -1
  188. package/lib/custom-html/custom-html.pipe.d.ts +1 -1
  189. package/lib/dom/dom.interfaces.d.ts +10 -0
  190. package/lib/dom/dom.module.d.ts +8 -0
  191. package/lib/dom/dom.service.d.ts +10 -0
  192. package/lib/dom/index.d.ts +2 -0
  193. package/lib/drag-drop/drag-drop.directive.d.ts +1 -1
  194. package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +1 -1
  195. package/lib/entity/entity-selector/entity-selector.component.d.ts +1 -1
  196. package/lib/entity/entity-table/entity-table-row.directive.d.ts +1 -1
  197. package/lib/entity/entity-table/entity-table.component.d.ts +4 -4
  198. package/lib/entity/entity-table-paginator/entity-table-paginator.component.d.ts +1 -1
  199. package/lib/entity/shared/entity.interfaces.d.ts +1 -0
  200. package/lib/flexible/flexible.component.d.ts +1 -1
  201. package/lib/form/form/form.component.d.ts +1 -1
  202. package/lib/form/form-field/form-field-select.component.d.ts +3 -3
  203. package/lib/form/form-field/form-field-text.component.d.ts +3 -3
  204. package/lib/form/form-field/form-field-textarea.component.d.ts +3 -3
  205. package/lib/form/form-field/form-field.component.d.ts +1 -1
  206. package/lib/form/form-group/form-group.component.d.ts +3 -3
  207. package/lib/form/shared/form.interfaces.d.ts +4 -4
  208. package/lib/form/shared/form.service.d.ts +2 -2
  209. package/lib/home-button/home-button.component.d.ts +1 -1
  210. package/lib/image/secure-image.pipe.d.ts +4 -2
  211. package/lib/interactive-tour/interactive-tour.component.d.ts +1 -1
  212. package/lib/json-dialog/json-dialog.component.d.ts +1 -1
  213. package/lib/keyvalue/keyvalue.pipe.d.ts +1 -1
  214. package/lib/list/list-item.directive.d.ts +1 -1
  215. package/lib/list/list.component.d.ts +1 -1
  216. package/lib/panel/panel.component.d.ts +1 -1
  217. package/lib/sidenav/sidenav-shim.directive.d.ts +1 -1
  218. package/lib/spinner/spinner-activity.directive.d.ts +1 -1
  219. package/lib/spinner/spinner.component.d.ts +1 -1
  220. package/lib/stop-propagation/stop-drop-propagation.directive.d.ts +1 -1
  221. package/lib/stop-propagation/stop-propagation.directive.d.ts +1 -1
  222. package/lib/table/table.component.d.ts +1 -1
  223. package/lib/tool/toolbox/toolbox.component.d.ts +1 -1
  224. package/lib/widget/widget-outlet/widget-outlet.component.d.ts +1 -1
  225. package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +1 -1
  226. package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +1 -1
  227. package/package.json +25 -12
  228. package/public_api.d.ts +2 -0
  229. package/style/common.theming.scss +12 -12
  230. package/style/partial/action.scss +18 -18
  231. package/style/partial/common.variables.scss +8 -8
  232. package/bundles/igo2-common.umd.js +0 -11459
  233. package/bundles/igo2-common.umd.js.map +0 -1
  234. package/esm2015/lib/action/actionbar/actionbar-item.component.js +0 -257
  235. package/esm2015/lib/action/actionbar/actionbar.component.js +0 -385
  236. package/esm2015/lib/action/shared/action.interfaces.js +0 -2
  237. package/esm2015/lib/entity/entity-table/entity-table.component.js +0 -1343
  238. package/esm2015/lib/entity/entity-table-paginator/entity-table-paginator.component.js +0 -138
  239. package/esm2015/lib/entity/entity-table-paginator/entity-table-paginator.interface.js +0 -2
  240. package/esm2015/lib/entity/shared/entity.interfaces.js +0 -2
  241. package/esm2015/lib/entity/shared/entity.utils.js +0 -67
  242. package/esm2015/lib/form/form/form.component.js +0 -125
  243. package/esm2015/lib/form/form-field/form-field-select.component.js +0 -132
  244. package/esm2015/lib/form/form-field/form-field-text.component.js +0 -108
  245. package/esm2015/lib/form/form-field/form-field-textarea.component.js +0 -110
  246. package/esm2015/lib/form/shared/form.interfaces.js +0 -2
  247. package/esm2015/lib/form/shared/form.service.js +0 -81
  248. package/esm2015/lib/image/secure-image.pipe.js +0 -48
  249. package/esm2015/lib/interactive-tour/interactive-tour.component.js +0 -140
  250. package/esm2015/lib/interactive-tour/interactive-tour.interface.js +0 -2
  251. package/esm2015/lib/interactive-tour/interactive-tour.service.js +0 -285
  252. package/esm2015/lib/panel/panel.component.js +0 -67
  253. package/esm2015/lib/table/table-model.interface.js +0 -2
  254. package/esm2015/lib/table/table.component.js +0 -310
  255. package/esm2015/lib/tool/shared/tool.interface.js +0 -2
  256. package/esm2015/lib/tool/toolbox/toolbox.component.js +0 -261
  257. package/esm2015/lib/widget/shared/widget.interfaces.js +0 -2
  258. package/esm2015/lib/workspace/shared/workspace.interfaces.js +0 -2
  259. package/esm2015/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.js +0 -93
  260. package/esm2015/public_api.js +0 -72
  261. package/fesm2015/igo2-common.js.map +0 -1
@@ -1,62 +1,62 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { EventEmitter, Component, ChangeDetectionStrategy, Input, Output, Directive, HostListener, ViewChild, Pipe, Optional, Self, HostBinding, NgModule, Injectable, ViewContainerRef, ViewEncapsulation, ContentChildren } from '@angular/core';
3
- import * as i1$1 from '@angular/common';
3
+ import * as i1 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
- import * as i4$1 from '@angular/material/button';
5
+ import * as i2$2 from '@angular/material/button';
6
6
  import { MatButtonModule } from '@angular/material/button';
7
- import * as i10$1 from '@angular/material/card';
7
+ import * as i9 from '@angular/material/card';
8
8
  import { MatCardModule } from '@angular/material/card';
9
- import * as i7 from '@angular/material/checkbox';
9
+ import * as i10 from '@angular/material/checkbox';
10
10
  import { MatCheckboxModule } from '@angular/material/checkbox';
11
- import * as i5$1 from '@angular/material/icon';
11
+ import * as i3$2 from '@angular/material/icon';
12
12
  import { MatIconModule } from '@angular/material/icon';
13
- import * as i1$6 from '@angular/material/list';
13
+ import * as i2$3 from '@angular/material/list';
14
14
  import { MatListModule } from '@angular/material/list';
15
- import * as i9$1 from '@angular/material/menu';
15
+ import * as i7$1 from '@angular/material/menu';
16
16
  import { MatMenuModule } from '@angular/material/menu';
17
- import * as i6 from '@angular/material/tooltip';
17
+ import * as i6$1 from '@angular/material/tooltip';
18
18
  import { MatTooltipModule } from '@angular/material/tooltip';
19
- import * as i1$2 from '@igo2/core';
19
+ import * as i1$1 from '@igo2/core';
20
20
  import { Media, IgoLanguageModule } from '@igo2/core';
21
- import t from 'typy';
22
- import { ReplaySubject, BehaviorSubject, combineLatest, of, Observable, isObservable, fromEvent, merge, Subject } from 'rxjs';
21
+ import { t } from 'typy';
22
+ import { ReplaySubject, BehaviorSubject, combineLatest, of, Observable, isObservable, fromEvent, throwError, merge, Subject } from 'rxjs';
23
23
  import { map, skip, debounceTime, catchError, tap, switchMap, filter, take, distinctUntilChanged } from 'rxjs/operators';
24
24
  import { uuid, ObjectUtils } from '@igo2/utils';
25
- import * as i1 from '@angular/material/form-field';
25
+ import * as i4 from '@angular/material/form-field';
26
26
  import { MatFormFieldControl, MatFormFieldModule } from '@angular/material/form-field';
27
- import * as i2 from '@angular/material/select';
27
+ import * as i3 from '@angular/material/select';
28
28
  import { MatSelectModule } from '@angular/material/select';
29
- import * as i3 from '@angular/material/core';
30
- import * as i4 from '@angular/material/table';
29
+ import * as i3$1 from '@angular/material/core';
30
+ import * as i5 from '@angular/material/table';
31
31
  import { MatTableDataSource, MatTableModule } from '@angular/material/table';
32
- import * as i1$5 from '@angular/forms';
33
- import { FormGroup, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms';
34
- import * as moment_ from 'moment';
35
- import * as i2$2 from '@angular/cdk/a11y';
36
- import * as i5 from '@angular/material/sort';
37
- import { MatSortModule, MatSort } from '@angular/material/sort';
38
- import * as i9 from '@angular/material/autocomplete';
32
+ import * as i1$4 from '@angular/forms';
33
+ import { UntypedFormGroup, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms';
34
+ import moment from 'moment';
35
+ import * as i2$1 from '@angular/cdk/a11y';
36
+ import * as i6 from '@angular/material/autocomplete';
39
37
  import { MatAutocompleteModule } from '@angular/material/autocomplete';
40
- import * as i10 from '@angular/material/datepicker';
41
- import { MatDatepickerModule } from '@angular/material/datepicker';
42
- import * as i2$3 from '@angular/material/input';
38
+ import * as i7 from '@angular/material/sort';
39
+ import { MatSortModule, MatSort } from '@angular/material/sort';
40
+ import * as i2 from '@angular/material/paginator';
41
+ import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
42
+ import * as i5$1 from '@angular/material/input';
43
43
  import { MatInputModule } from '@angular/material/input';
44
+ import * as i16 from '@angular/material/datepicker';
45
+ import { MatDatepickerModule } from '@angular/material/datepicker';
44
46
  import scrollIntoView from 'scroll-into-view-if-needed';
45
- import * as i2$1 from '@angular/material/paginator';
46
- import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
47
+ import * as i1$2 from '@angular/platform-browser';
47
48
  import { __decorate } from 'tslib';
48
49
  import * as i1$3 from '@angular/common/http';
49
50
  import { HttpHeaders } from '@angular/common/http';
50
51
  import { Cacheable } from 'ts-cacheable';
51
- import * as i6$1 from '@ngx-translate/core';
52
- import * as i1$4 from '@angular/platform-browser';
53
- import * as i1$7 from '@angular/cdk/overlay';
52
+ import * as i6$2 from '@ngx-translate/core';
53
+ import * as i1$5 from '@angular/cdk/overlay';
54
54
  import { MatBadgeModule } from '@angular/material/badge';
55
- import * as i1$8 from '@angular/material/dialog';
55
+ import * as i1$6 from '@angular/material/dialog';
56
56
  import { MatDialogModule } from '@angular/material/dialog';
57
57
  import { TemplatePortal } from '@angular/cdk/portal';
58
- import * as i3$1 from 'angular-shepherd';
59
- import * as i1$9 from '@angular/material/sidenav';
58
+ import * as i3$3 from 'angular-shepherd';
59
+ import * as i1$7 from '@angular/material/sidenav';
60
60
  import * as i2$4 from '@angular/material/progress-spinner';
61
61
  import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
62
62
  import { DataSource, CdkTableModule } from '@angular/cdk/table';
@@ -1749,16 +1749,14 @@ class EntitySelectorComponent {
1749
1749
  }
1750
1750
  EntitySelectorComponent.ɵfac = function EntitySelectorComponent_Factory(t) { return new (t || EntitySelectorComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
1751
1751
  EntitySelectorComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EntitySelectorComponent, selectors: [["igo-entity-selector"]], inputs: { store: "store", titleAccessor: "titleAccessor", emptyText: "emptyText", multi: "multi", multiAllText: "multiAllText", multiNoneText: "multiNoneText", placeholder: "placeholder", disabled: "disabled" }, outputs: { selectedChange: "selectedChange" }, decls: 7, vars: 11, consts: [[1, "igo-entity-selector"], [3, "disabled", "value", "multiple", "placeholder", "selectionChange"], [3, "value", 4, "ngIf"], ["ngFor", "", 3, "ngForOf"], [3, "value"]], template: function EntitySelectorComponent_Template(rf, ctx) { if (rf & 1) {
1752
- i0.ɵɵelementStart(0, "mat-form-field", 0);
1753
- i0.ɵɵelementStart(1, "mat-select", 1);
1752
+ i0.ɵɵelementStart(0, "mat-form-field", 0)(1, "mat-select", 1);
1754
1753
  i0.ɵɵlistener("selectionChange", function EntitySelectorComponent_Template_mat_select_selectionChange_1_listener($event) { return ctx.onSelectionChange($event); });
1755
1754
  i0.ɵɵpipe(2, "async");
1756
1755
  i0.ɵɵtemplate(3, EntitySelectorComponent_mat_option_3_Template, 2, 2, "mat-option", 2);
1757
1756
  i0.ɵɵtemplate(4, EntitySelectorComponent_mat_option_4_Template, 3, 4, "mat-option", 2);
1758
1757
  i0.ɵɵtemplate(5, EntitySelectorComponent_ng_template_5_Template, 2, 2, "ng-template", 3);
1759
1758
  i0.ɵɵpipe(6, "async");
1760
- i0.ɵɵelementEnd();
1761
- i0.ɵɵelementEnd();
1759
+ i0.ɵɵelementEnd()();
1762
1760
  } if (rf & 2) {
1763
1761
  i0.ɵɵadvance(1);
1764
1762
  i0.ɵɵproperty("disabled", ctx.disabled)("value", i0.ɵɵpipeBind1(2, 7, ctx.selected$))("multiple", ctx.multi)("placeholder", ctx.placeholder);
@@ -1768,15 +1766,10 @@ EntitySelectorComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Ent
1768
1766
  i0.ɵɵproperty("ngIf", ctx.multi === true);
1769
1767
  i0.ɵɵadvance(1);
1770
1768
  i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(6, 9, ctx.store.stateView.all$()));
1771
- } }, directives: [i1.MatFormField, i2.MatSelect, i1$1.NgIf, i1$1.NgForOf, i3.MatOption], pipes: [i1$1.AsyncPipe], styles: ["mat-form-field[_ngcontent-%COMP%]{width:100%}"], changeDetection: 0 });
1769
+ } }, dependencies: [i1.NgForOf, i1.NgIf, i4.MatFormField, i3.MatSelect, i3$1.MatOption, i1.AsyncPipe], styles: ["mat-form-field[_ngcontent-%COMP%]{width:100%}"], changeDetection: 0 });
1772
1770
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntitySelectorComponent, [{
1773
1771
  type: Component,
1774
- args: [{
1775
- selector: 'igo-entity-selector',
1776
- templateUrl: './entity-selector.component.html',
1777
- styleUrls: ['./entity-selector.component.scss'],
1778
- changeDetection: ChangeDetectionStrategy.OnPush
1779
- }]
1772
+ args: [{ selector: 'igo-entity-selector', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field class=\"igo-entity-selector\">\r\n <mat-select\r\n [disabled]=\"disabled\"\r\n [value]=\"selected$ | async\"\r\n [multiple]=\"multi\"\r\n [placeholder]=\"placeholder\"\r\n (selectionChange)=\"onSelectionChange($event)\">\r\n <mat-option *ngIf=\"emptyText !== undefined && multi === false\" [value]=\"emptyValue\">{{emptyText}}</mat-option>\r\n <mat-option *ngIf=\"multi === true\" [value]=\"multiSelectValue\">{{multiText$ | async}}</mat-option>\r\n <ng-template ngFor let-record [ngForOf]=\"store.stateView.all$() | async\">\r\n <mat-option [value]=\"record.entity\">\r\n {{titleAccessor(record.entity)}}\r\n </mat-option>\r\n </ng-template>\r\n </mat-select>\r\n</mat-form-field>\r\n", styles: ["mat-form-field{width:100%}\n"] }]
1780
1773
  }], function () { return [{ type: i0.ChangeDetectorRef }]; }, { store: [{
1781
1774
  type: Input
1782
1775
  }], titleAccessor: [{
@@ -1816,6 +1809,132 @@ StopPropagationDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: St
1816
1809
  args: ['click', ['$event']]
1817
1810
  }] }); })();
1818
1811
 
1812
+ class EntityTablePaginatorComponent {
1813
+ constructor(languageService, mediaService) {
1814
+ this.languageService = languageService;
1815
+ this.mediaService = mediaService;
1816
+ this.disabled = false;
1817
+ this.hidePageSize = false;
1818
+ this.pageIndex = 0;
1819
+ this.pageSize = 50;
1820
+ this.pageSizeOptions = [5, 10, 20, 50, 100, 200];
1821
+ this.showFirstLastButtons = true;
1822
+ this.paginationLabelTranslation$$ = [];
1823
+ this.entitySortChange$ = new BehaviorSubject(false);
1824
+ this.length = 0;
1825
+ /**
1826
+ * Paginator emitted.
1827
+ */
1828
+ this.paginatorChange = new EventEmitter();
1829
+ this.rangeLabel = (page, pageSize, length) => {
1830
+ const of = new BehaviorSubject('');
1831
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.of').subscribe((label) => {
1832
+ of.next(label);
1833
+ }));
1834
+ if (length === 0 || pageSize === 0) {
1835
+ return `0 ${of.value} ${length}`;
1836
+ }
1837
+ length = Math.max(length, 0);
1838
+ const startIndex = page * pageSize;
1839
+ const endIndex = startIndex < length ?
1840
+ Math.min(startIndex + pageSize, length) :
1841
+ startIndex + pageSize;
1842
+ return `${startIndex + 1} - ${endIndex} ${of.value} ${length}`;
1843
+ };
1844
+ }
1845
+ ngOnChanges() {
1846
+ this.unsubscribeAll();
1847
+ this.count$$ = this.store.stateView.count$.subscribe((count) => {
1848
+ this.length = count;
1849
+ this.emitPaginator();
1850
+ });
1851
+ this.entitySortChange$$ = this.entitySortChange$.subscribe(() => {
1852
+ if (this.paginator) {
1853
+ this.paginator.firstPage();
1854
+ }
1855
+ });
1856
+ this.initPaginatorOptions();
1857
+ this.translateLabels();
1858
+ }
1859
+ initPaginatorOptions() {
1860
+ this.disabled = this.paginatorOptions?.disabled || this.disabled;
1861
+ this.pageIndex = this.paginatorOptions?.pageIndex || this.pageIndex;
1862
+ this.pageSize = this.paginatorOptions?.pageSize || this.pageSize;
1863
+ this.pageSizeOptions = this.paginatorOptions?.pageSizeOptions || this.pageSizeOptions;
1864
+ if (this.mediaService.isMobile()) {
1865
+ this.showFirstLastButtons = false;
1866
+ this.hidePageSize = true;
1867
+ }
1868
+ else {
1869
+ this.showFirstLastButtons = this.paginatorOptions?.showFirstLastButtons || this.showFirstLastButtons;
1870
+ this.hidePageSize = this.paginatorOptions?.hidePageSize || this.hidePageSize;
1871
+ }
1872
+ }
1873
+ translateLabels() {
1874
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.firstPageLabel').subscribe((label) => {
1875
+ this.paginator._intl.firstPageLabel = label;
1876
+ }));
1877
+ this.paginator._intl.getRangeLabel = this.rangeLabel;
1878
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.itemsPerPageLabel').subscribe((label) => {
1879
+ this.paginator._intl.itemsPerPageLabel = label;
1880
+ }));
1881
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.lastPageLabel').subscribe((label) => {
1882
+ this.paginator._intl.lastPageLabel = label;
1883
+ }));
1884
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.nextPageLabel').subscribe((label) => {
1885
+ this.paginator._intl.nextPageLabel = label;
1886
+ }));
1887
+ this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.previousPageLabel').subscribe((label) => {
1888
+ this.paginator._intl.previousPageLabel = label;
1889
+ }));
1890
+ }
1891
+ unsubscribeAll() {
1892
+ this.paginationLabelTranslation$$.map(sub => sub.unsubscribe());
1893
+ if (this.count$$) {
1894
+ this.count$$.unsubscribe();
1895
+ }
1896
+ if (this.entitySortChange$$) {
1897
+ this.entitySortChange$$.unsubscribe();
1898
+ }
1899
+ }
1900
+ ngOnDestroy() {
1901
+ this.unsubscribeAll();
1902
+ }
1903
+ emitPaginator() {
1904
+ this.paginatorChange.emit(this.paginator);
1905
+ }
1906
+ }
1907
+ EntityTablePaginatorComponent.ɵfac = function EntityTablePaginatorComponent_Factory(t) { return new (t || EntityTablePaginatorComponent)(i0.ɵɵdirectiveInject(i1$1.LanguageService), i0.ɵɵdirectiveInject(i1$1.MediaService)); };
1908
+ EntityTablePaginatorComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EntityTablePaginatorComponent, selectors: [["igo-entity-table-paginator"]], viewQuery: function EntityTablePaginatorComponent_Query(rf, ctx) { if (rf & 1) {
1909
+ i0.ɵɵviewQuery(MatPaginator, 7);
1910
+ } if (rf & 2) {
1911
+ let _t;
1912
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.paginator = _t.first);
1913
+ } }, inputs: { entitySortChange$: "entitySortChange$", store: "store", paginatorOptions: "paginatorOptions" }, outputs: { page: "page", paginatorChange: "paginatorChange" }, features: [i0.ɵɵNgOnChangesFeature], decls: 1, vars: 7, consts: [[3, "disabled", "hidePageSize", "length", "pageIndex", "pageSize", "pageSizeOptions", "showFirstLastButtons", "page"]], template: function EntityTablePaginatorComponent_Template(rf, ctx) { if (rf & 1) {
1914
+ i0.ɵɵelementStart(0, "mat-paginator", 0);
1915
+ i0.ɵɵlistener("page", function EntityTablePaginatorComponent_Template_mat_paginator_page_0_listener() { return ctx.emitPaginator(); });
1916
+ i0.ɵɵelementEnd();
1917
+ } if (rf & 2) {
1918
+ i0.ɵɵproperty("disabled", ctx.disabled)("hidePageSize", ctx.hidePageSize)("length", ctx.length)("pageIndex", ctx.pageIndex)("pageSize", ctx.pageSize)("pageSizeOptions", ctx.pageSizeOptions)("showFirstLastButtons", ctx.showFirstLastButtons);
1919
+ } }, dependencies: [i2.MatPaginator], styles: ["[_nghost-%COMP%]{margin-top:-10px;padding-right:15px}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){[_nghost-%COMP%]{margin-top:0;padding-right:5px}}"], changeDetection: 0 });
1920
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntityTablePaginatorComponent, [{
1921
+ type: Component,
1922
+ args: [{ selector: 'igo-entity-table-paginator', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-paginator \r\n [disabled]=\"disabled\"\r\n [hidePageSize]=\"hidePageSize\"\r\n [length]=\"length\"\r\n [pageIndex]=\"pageIndex\"\r\n [pageSize]=\"pageSize\"\r\n [pageSizeOptions]=\"pageSizeOptions\"\r\n [showFirstLastButtons]=\"showFirstLastButtons\"\r\n (page)=\"emitPaginator()\">\r\n</mat-paginator>\r\n", styles: [":host{margin-top:-10px;padding-right:15px}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){:host{margin-top:0;padding-right:5px}}\n"] }]
1923
+ }], function () { return [{ type: i1$1.LanguageService }, { type: i1$1.MediaService }]; }, { entitySortChange$: [{
1924
+ type: Input
1925
+ }], store: [{
1926
+ type: Input
1927
+ }], paginatorOptions: [{
1928
+ type: Input
1929
+ }], page: [{
1930
+ type: Output
1931
+ }], paginatorChange: [{
1932
+ type: Output
1933
+ }], paginator: [{
1934
+ type: ViewChild,
1935
+ args: [MatPaginator, { static: true }]
1936
+ }] }); })();
1937
+
1819
1938
  /**
1820
1939
  * Directive that handles an entity table row click and selection.
1821
1940
  */
@@ -1949,147 +2068,35 @@ EntityTableRowDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Ent
1949
2068
  args: ['click']
1950
2069
  }] }); })();
1951
2070
 
1952
- class EntityTablePaginatorComponent {
1953
- constructor(languageService, mediaService) {
1954
- this.languageService = languageService;
1955
- this.mediaService = mediaService;
1956
- this.disabled = false;
1957
- this.hidePageSize = false;
1958
- this.pageIndex = 0;
1959
- this.pageSize = 50;
1960
- this.pageSizeOptions = [5, 10, 20, 50, 100, 200];
1961
- this.showFirstLastButtons = true;
1962
- this.paginationLabelTranslation$$ = [];
1963
- this.entitySortChange$ = new BehaviorSubject(false);
1964
- this.length = 0;
1965
- /**
1966
- * Paginator emitted.
1967
- */
1968
- this.paginatorChange = new EventEmitter();
1969
- this.rangeLabel = (page, pageSize, length) => {
1970
- const of = new BehaviorSubject('');
1971
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.of').subscribe((label) => {
1972
- of.next(label);
1973
- }));
1974
- if (length === 0 || pageSize === 0) {
1975
- return `0 ${of.value} ${length}`;
1976
- }
1977
- length = Math.max(length, 0);
1978
- const startIndex = page * pageSize;
1979
- const endIndex = startIndex < length ?
1980
- Math.min(startIndex + pageSize, length) :
1981
- startIndex + pageSize;
1982
- return `${startIndex + 1} - ${endIndex} ${of.value} ${length}`;
1983
- };
1984
- }
1985
- ngOnChanges() {
1986
- this.unsubscribeAll();
1987
- this.count$$ = this.store.stateView.count$.subscribe((count) => {
1988
- this.length = count;
1989
- this.emitPaginator();
1990
- });
1991
- this.entitySortChange$$ = this.entitySortChange$.subscribe(() => {
1992
- if (this.paginator) {
1993
- this.paginator.firstPage();
1994
- }
1995
- });
1996
- this.initPaginatorOptions();
1997
- this.translateLabels();
1998
- }
1999
- initPaginatorOptions() {
2000
- var _a, _b, _c, _d, _e, _f;
2001
- this.disabled = ((_a = this.paginatorOptions) === null || _a === void 0 ? void 0 : _a.disabled) || this.disabled;
2002
- this.pageIndex = ((_b = this.paginatorOptions) === null || _b === void 0 ? void 0 : _b.pageIndex) || this.pageIndex;
2003
- this.pageSize = ((_c = this.paginatorOptions) === null || _c === void 0 ? void 0 : _c.pageSize) || this.pageSize;
2004
- this.pageSizeOptions = ((_d = this.paginatorOptions) === null || _d === void 0 ? void 0 : _d.pageSizeOptions) || this.pageSizeOptions;
2005
- if (this.mediaService.isMobile()) {
2006
- this.showFirstLastButtons = false;
2007
- this.hidePageSize = true;
2008
- }
2009
- else {
2010
- this.showFirstLastButtons = ((_e = this.paginatorOptions) === null || _e === void 0 ? void 0 : _e.showFirstLastButtons) || this.showFirstLastButtons;
2011
- this.hidePageSize = ((_f = this.paginatorOptions) === null || _f === void 0 ? void 0 : _f.hidePageSize) || this.hidePageSize;
2012
- }
2013
- }
2014
- translateLabels() {
2015
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.firstPageLabel').subscribe((label) => {
2016
- this.paginator._intl.firstPageLabel = label;
2017
- }));
2018
- this.paginator._intl.getRangeLabel = this.rangeLabel;
2019
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.itemsPerPageLabel').subscribe((label) => {
2020
- this.paginator._intl.itemsPerPageLabel = label;
2021
- }));
2022
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.lastPageLabel').subscribe((label) => {
2023
- this.paginator._intl.lastPageLabel = label;
2024
- }));
2025
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.nextPageLabel').subscribe((label) => {
2026
- this.paginator._intl.nextPageLabel = label;
2027
- }));
2028
- this.paginationLabelTranslation$$.push(this.languageService.translate.get('igo.common.paginator.previousPageLabel').subscribe((label) => {
2029
- this.paginator._intl.previousPageLabel = label;
2030
- }));
2031
- }
2032
- unsubscribeAll() {
2033
- this.paginationLabelTranslation$$.map(sub => sub.unsubscribe());
2034
- if (this.count$$) {
2035
- this.count$$.unsubscribe();
2036
- }
2037
- if (this.entitySortChange$$) {
2038
- this.entitySortChange$$.unsubscribe();
2039
- }
2040
- }
2041
- ngOnDestroy() {
2042
- this.unsubscribeAll();
2071
+ class SanitizeHtmlPipe {
2072
+ constructor(_sanitizer) {
2073
+ this._sanitizer = _sanitizer;
2043
2074
  }
2044
- emitPaginator() {
2045
- this.paginatorChange.emit(this.paginator);
2075
+ transform(v) {
2076
+ return this._sanitizer.bypassSecurityTrustHtml(v);
2046
2077
  }
2047
2078
  }
2048
- EntityTablePaginatorComponent.ɵfac = function EntityTablePaginatorComponent_Factory(t) { return new (t || EntityTablePaginatorComponent)(i0.ɵɵdirectiveInject(i1$2.LanguageService), i0.ɵɵdirectiveInject(i1$2.MediaService)); };
2049
- EntityTablePaginatorComponentcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EntityTablePaginatorComponent, selectors: [["igo-entity-table-paginator"]], viewQuery: function EntityTablePaginatorComponent_Query(rf, ctx) { if (rf & 1) {
2050
- i0.ɵɵviewQuery(MatPaginator, 7);
2051
- } if (rf & 2) {
2052
- let _t;
2053
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.paginator = _t.first);
2054
- } }, inputs: { entitySortChange$: "entitySortChange$", store: "store", paginatorOptions: "paginatorOptions" }, outputs: { page: "page", paginatorChange: "paginatorChange" }, features: [i0.ɵɵNgOnChangesFeature], decls: 1, vars: 7, consts: [[3, "disabled", "hidePageSize", "length", "pageIndex", "pageSize", "pageSizeOptions", "showFirstLastButtons", "page"]], template: function EntityTablePaginatorComponent_Template(rf, ctx) { if (rf & 1) {
2055
- i0.ɵɵelementStart(0, "mat-paginator", 0);
2056
- i0.ɵɵlistener("page", function EntityTablePaginatorComponent_Template_mat_paginator_page_0_listener() { return ctx.emitPaginator(); });
2057
- i0.ɵɵelementEnd();
2058
- } if (rf & 2) {
2059
- i0.ɵɵproperty("disabled", ctx.disabled)("hidePageSize", ctx.hidePageSize)("length", ctx.length)("pageIndex", ctx.pageIndex)("pageSize", ctx.pageSize)("pageSizeOptions", ctx.pageSizeOptions)("showFirstLastButtons", ctx.showFirstLastButtons);
2060
- } }, directives: [i2$1.MatPaginator], styles: ["[_nghost-%COMP%]{margin-top:-10px;padding-right:15px}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){[_nghost-%COMP%]{margin-top:0;padding-right:5px}}"], changeDetection: 0 });
2061
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntityTablePaginatorComponent, [{
2062
- type: Component,
2063
- args: [{
2064
- selector: 'igo-entity-table-paginator',
2065
- templateUrl: './entity-table-paginator.component.html',
2066
- styleUrls: ['./entity-table-paginator.component.scss'],
2067
- changeDetection: ChangeDetectionStrategy.OnPush
2068
- }]
2069
- }], function () { return [{ type: i1$2.LanguageService }, { type: i1$2.MediaService }]; }, { entitySortChange$: [{
2070
- type: Input
2071
- }], store: [{
2072
- type: Input
2073
- }], paginatorOptions: [{
2074
- type: Input
2075
- }], page: [{
2076
- type: Output
2077
- }], paginatorChange: [{
2078
- type: Output
2079
- }], paginator: [{
2080
- type: ViewChild,
2081
- args: [MatPaginator, { static: true }]
2082
- }] }); })();
2079
+ SanitizeHtmlPipe.ɵfac = function SanitizeHtmlPipe_Factory(t) { return new (t || SanitizeHtmlPipe)(i0.ɵɵdirectiveInject(i1$2.DomSanitizer, 16)); };
2080
+ SanitizeHtmlPipepipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "sanitizeHtml", type: SanitizeHtmlPipe, pure: true });
2081
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SanitizeHtmlPipe, [{
2082
+ type: Pipe,
2083
+ args: [{ name: 'sanitizeHtml' }]
2084
+ }], function () { return [{ type: i1$2.DomSanitizer }]; }, null); })();
2083
2085
 
2084
2086
  class SecureImagePipe {
2085
- constructor(http) {
2087
+ constructor(http, configService) {
2086
2088
  this.http = http;
2089
+ this.configService = configService;
2087
2090
  }
2088
2091
  transform(url) {
2089
2092
  const headers = new HttpHeaders({
2090
2093
  'Content-Type': 'text/plain',
2091
2094
  activityInterceptor: 'false'
2092
2095
  });
2096
+ const regexDepot = new RegExp(this.configService?.getConfig('depot.url') + '.*?(?="|$)');
2097
+ if (regexDepot.test(url)) {
2098
+ url = url.match(regexDepot)[0];
2099
+ }
2093
2100
  return this.http
2094
2101
  .get(url, {
2095
2102
  headers,
@@ -2107,7 +2114,7 @@ class SecureImagePipe {
2107
2114
  }));
2108
2115
  }
2109
2116
  }
2110
- SecureImagePipe.ɵfac = function SecureImagePipe_Factory(t) { return new (t || SecureImagePipe)(i0.ɵɵdirectiveInject(i1$3.HttpClient, 16)); };
2117
+ SecureImagePipe.ɵfac = function SecureImagePipe_Factory(t) { return new (t || SecureImagePipe)(i0.ɵɵdirectiveInject(i1$3.HttpClient, 16), i0.ɵɵdirectiveInject(i1$1.ConfigService, 16)); };
2111
2118
  SecureImagePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "secureImage", type: SecureImagePipe, pure: true });
2112
2119
  __decorate([
2113
2120
  Cacheable({
@@ -2119,28 +2126,13 @@ __decorate([
2119
2126
  args: [{
2120
2127
  name: 'secureImage'
2121
2128
  }]
2122
- }], function () { return [{ type: i1$3.HttpClient }]; }, { transform: [] }); })();
2123
-
2124
- class SanitizeHtmlPipe {
2125
- constructor(_sanitizer) {
2126
- this._sanitizer = _sanitizer;
2127
- }
2128
- transform(v) {
2129
- return this._sanitizer.bypassSecurityTrustHtml(v);
2130
- }
2131
- }
2132
- SanitizeHtmlPipe.ɵfac = function SanitizeHtmlPipe_Factory(t) { return new (t || SanitizeHtmlPipe)(i0.ɵɵdirectiveInject(i1$4.DomSanitizer, 16)); };
2133
- SanitizeHtmlPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "sanitizeHtml", type: SanitizeHtmlPipe, pure: true });
2134
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SanitizeHtmlPipe, [{
2135
- type: Pipe,
2136
- args: [{ name: 'sanitizeHtml' }]
2137
- }], function () { return [{ type: i1$4.DomSanitizer }]; }, null); })();
2129
+ }], function () { return [{ type: i1$3.HttpClient }, { type: i1$1.ConfigService }]; }, { transform: [] }); })();
2138
2130
 
2139
2131
  function EntityTableComponent_th_3_ng_container_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
2140
2132
  const _r10 = i0.ɵɵgetCurrentView();
2141
2133
  i0.ɵɵelementContainerStart(0);
2142
2134
  i0.ɵɵelementStart(1, "mat-checkbox", 11);
2143
- i0.ɵɵlistener("change", function EntityTableComponent_th_3_ng_container_1_ng_container_1_Template_mat_checkbox_change_1_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(3); return ctx_r9.onToggleRows($event.checked); });
2135
+ i0.ɵɵlistener("change", function EntityTableComponent_th_3_ng_container_1_ng_container_1_Template_mat_checkbox_change_1_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r9.onToggleRows($event.checked)); });
2144
2136
  i0.ɵɵelementEnd();
2145
2137
  i0.ɵɵelementContainerEnd();
2146
2138
  } if (rf & 2) {
@@ -2170,11 +2162,9 @@ function EntityTableComponent_th_3_Template(rf, ctx) { if (rf & 1) {
2170
2162
  } }
2171
2163
  function EntityTableComponent_td_4_Template(rf, ctx) { if (rf & 1) {
2172
2164
  const _r14 = i0.ɵɵgetCurrentView();
2173
- i0.ɵɵelementStart(0, "td", 12);
2174
- i0.ɵɵelementStart(1, "mat-checkbox", 13);
2175
- i0.ɵɵlistener("mousedown", function EntityTableComponent_td_4_Template_mat_checkbox_mousedown_1_listener($event) { return $event.shiftKey ? $event.preventDefault() : null; })("click", function EntityTableComponent_td_4_Template_mat_checkbox_click_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r14); const record_r11 = restoredCtx.$implicit; const ctx_r13 = i0.ɵɵnextContext(); return $event.shiftKey ? ctx_r13.onShiftToggleRow(!ctx_r13.rowIsSelected(record_r11), record_r11, $event) : $event.stopPropagation(); })("change", function EntityTableComponent_td_4_Template_mat_checkbox_change_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r14); const record_r11 = restoredCtx.$implicit; const ctx_r15 = i0.ɵɵnextContext(); return ctx_r15.onToggleRow($event.checked, record_r11); });
2176
- i0.ɵɵelementEnd();
2177
- i0.ɵɵelementEnd();
2165
+ i0.ɵɵelementStart(0, "td", 12)(1, "mat-checkbox", 13);
2166
+ i0.ɵɵlistener("mousedown", function EntityTableComponent_td_4_Template_mat_checkbox_mousedown_1_listener($event) { return $event.shiftKey ? $event.preventDefault() : null; })("click", function EntityTableComponent_td_4_Template_mat_checkbox_click_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r14); const record_r11 = restoredCtx.$implicit; const ctx_r13 = i0.ɵɵnextContext(); return i0.ɵɵresetView($event.shiftKey ? ctx_r13.onShiftToggleRow(!ctx_r13.rowIsSelected(record_r11), record_r11, $event) : $event.stopPropagation()); })("change", function EntityTableComponent_td_4_Template_mat_checkbox_change_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r14); const record_r11 = restoredCtx.$implicit; const ctx_r15 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r15.onToggleRow($event.checked, record_r11)); });
2167
+ i0.ɵɵelementEnd()();
2178
2168
  } if (rf & 2) {
2179
2169
  const record_r11 = ctx.$implicit;
2180
2170
  const ctx_r1 = i0.ɵɵnextContext();
@@ -2243,13 +2233,11 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_1_ng_co
2243
2233
  i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(2, 1, "igo.common.entity-table.targetHtmlUrl"), " ");
2244
2234
  } }
2245
2235
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_1_ng_container_1_ng_template_2_Template(rf, ctx) { if (rf & 1) {
2246
- i0.ɵɵelementStart(0, "td", 22);
2247
- i0.ɵɵelementStart(1, "a", 23);
2236
+ i0.ɵɵelementStart(0, "td", 22)(1, "a", 23);
2248
2237
  i0.ɵɵlistener("click", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_1_ng_container_1_ng_template_2_Template_a_click_1_listener($event) { return $event.stopPropagation(); });
2249
2238
  i0.ɵɵtemplate(2, EntityTableComponent_ng_container_5_ng_container_3_ng_container_1_ng_container_1_ng_template_2_img_2_Template, 3, 5, "img", 24);
2250
2239
  i0.ɵɵtemplate(3, EntityTableComponent_ng_container_5_ng_container_3_ng_container_1_ng_container_1_ng_template_2_ng_template_3_Template, 3, 3, "ng-template", null, 25, i0.ɵɵtemplateRefExtractor);
2251
- i0.ɵɵelementEnd();
2252
- i0.ɵɵelementEnd();
2240
+ i0.ɵɵelementEnd()();
2253
2241
  } if (rf & 2) {
2254
2242
  const _r38 = i0.ɵɵreference(4);
2255
2243
  const record_r31 = i0.ɵɵnextContext().$implicit;
@@ -2307,13 +2295,11 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_2_ng_co
2307
2295
  i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(2, 1, "igo.geo.targetHtmlUrl"), " ");
2308
2296
  } }
2309
2297
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_2_ng_container_1_ng_template_2_Template(rf, ctx) { if (rf & 1) {
2310
- i0.ɵɵelementStart(0, "td", 22);
2311
- i0.ɵɵelementStart(1, "a", 23);
2298
+ i0.ɵɵelementStart(0, "td", 22)(1, "a", 23);
2312
2299
  i0.ɵɵlistener("click", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_2_ng_container_1_ng_template_2_Template_a_click_1_listener($event) { return $event.stopPropagation(); });
2313
2300
  i0.ɵɵtemplate(2, EntityTableComponent_ng_container_5_ng_container_3_ng_container_2_ng_container_1_ng_template_2_img_2_Template, 3, 5, "img", 24);
2314
2301
  i0.ɵɵtemplate(3, EntityTableComponent_ng_container_5_ng_container_3_ng_container_2_ng_container_1_ng_template_2_ng_template_3_Template, 3, 3, "ng-template", null, 25, i0.ɵɵtemplateRefExtractor);
2315
- i0.ɵɵelementEnd();
2316
- i0.ɵɵelementEnd();
2302
+ i0.ɵɵelementEnd()();
2317
2303
  } if (rf & 2) {
2318
2304
  const _r54 = i0.ɵɵreference(4);
2319
2305
  const record_r47 = i0.ɵɵnextContext().$implicit;
@@ -2348,7 +2334,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2348
2334
  i0.ɵɵelementStart(0, "div", 43);
2349
2335
  i0.ɵɵelement(1, "mat-datepicker-toggle", 44);
2350
2336
  i0.ɵɵelementStart(2, "input", 45);
2351
- i0.ɵɵlistener("dateChange", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_div_1_Template_input_dateChange_2_listener($event) { i0.ɵɵrestoreView(_r79); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r77 = i0.ɵɵnextContext(); return ctx_r77.onDateChange(column_r16.name, record_r63, $event); });
2337
+ i0.ɵɵlistener("dateChange", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_div_1_Template_input_dateChange_2_listener($event) { i0.ɵɵrestoreView(_r79); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r77 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r77.onDateChange(column_r16.name, record_r63, $event)); });
2352
2338
  i0.ɵɵelementEnd();
2353
2339
  i0.ɵɵelement(3, "mat-datepicker", null, 46);
2354
2340
  i0.ɵɵelementEnd();
@@ -2366,7 +2352,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2366
2352
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template(rf, ctx) { if (rf & 1) {
2367
2353
  const _r85 = i0.ɵɵgetCurrentView();
2368
2354
  i0.ɵɵelementStart(0, "input", 47);
2369
- i0.ɵɵlistener("focus", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_focus_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return column_r16.onFocus($event); })("keypress", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_keypress_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return column_r16.onChange($event); })("blur", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_blur_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return column_r16.onBlur($event); });
2355
+ i0.ɵɵlistener("focus", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_focus_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return i0.ɵɵresetView(column_r16.onFocus($event)); })("keypress", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_keypress_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return i0.ɵɵresetView(column_r16.onChange($event)); })("blur", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_2_Template_input_blur_0_listener($event) { i0.ɵɵrestoreView(_r85); const column_r16 = i0.ɵɵnextContext(5).$implicit; return i0.ɵɵresetView(column_r16.onBlur($event)); });
2370
2356
  i0.ɵɵelementEnd();
2371
2357
  } if (rf & 2) {
2372
2358
  const column_r16 = i0.ɵɵnextContext(5).$implicit;
@@ -2375,7 +2361,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2375
2361
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_3_Template(rf, ctx) { if (rf & 1) {
2376
2362
  const _r93 = i0.ɵɵgetCurrentView();
2377
2363
  i0.ɵɵelementStart(0, "input", 48);
2378
- i0.ɵɵlistener("input", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_3_Template_input_input_0_listener($event) { i0.ɵɵrestoreView(_r93); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r91 = i0.ɵɵnextContext(); return ctx_r91.onValueChange(column_r16.name, record_r63, $event); });
2364
+ i0.ɵɵlistener("input", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_3_Template_input_input_0_listener($event) { i0.ɵɵrestoreView(_r93); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r91 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r91.onValueChange(column_r16.name, record_r63, $event)); });
2379
2365
  i0.ɵɵelementEnd();
2380
2366
  } if (rf & 2) {
2381
2367
  const record_r63 = i0.ɵɵnextContext(2).$implicit;
@@ -2392,7 +2378,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2392
2378
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_4_Template(rf, ctx) { if (rf & 1) {
2393
2379
  const _r99 = i0.ɵɵgetCurrentView();
2394
2380
  i0.ɵɵelementStart(0, "input", 49);
2395
- i0.ɵɵlistener("input", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_4_Template_input_input_0_listener($event) { i0.ɵɵrestoreView(_r99); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r97 = i0.ɵɵnextContext(); return ctx_r97.onValueChange(column_r16.name, record_r63, $event); });
2381
+ i0.ɵɵlistener("input", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_4_Template_input_input_0_listener($event) { i0.ɵɵrestoreView(_r99); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r97 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r97.onValueChange(column_r16.name, record_r63, $event)); });
2396
2382
  i0.ɵɵelementEnd();
2397
2383
  } if (rf & 2) {
2398
2384
  const record_r63 = i0.ɵɵnextContext(2).$implicit;
@@ -2406,7 +2392,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2406
2392
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_checkbox_5_Template(rf, ctx) { if (rf & 1) {
2407
2393
  const _r105 = i0.ɵɵgetCurrentView();
2408
2394
  i0.ɵɵelementStart(0, "mat-checkbox", 50);
2409
- i0.ɵɵlistener("change", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_checkbox_5_Template_mat_checkbox_change_0_listener($event) { i0.ɵɵrestoreView(_r105); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r103 = i0.ɵɵnextContext(); return ctx_r103.onBooleanValueChange(column_r16.name, record_r63, $event); });
2395
+ i0.ɵɵlistener("change", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_checkbox_5_Template_mat_checkbox_change_0_listener($event) { i0.ɵɵrestoreView(_r105); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r103 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r103.onBooleanValueChange(column_r16.name, record_r63, $event)); });
2410
2396
  i0.ɵɵelementEnd();
2411
2397
  } if (rf & 2) {
2412
2398
  const record_r63 = i0.ɵɵnextContext(2).$implicit;
@@ -2427,7 +2413,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2427
2413
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_select_6_Template(rf, ctx) { if (rf & 1) {
2428
2414
  const _r113 = i0.ɵɵgetCurrentView();
2429
2415
  i0.ɵɵelementStart(0, "mat-select", 51);
2430
- i0.ɵɵlistener("selectionChange", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_select_6_Template_mat_select_selectionChange_0_listener($event) { i0.ɵɵrestoreView(_r113); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r111 = i0.ɵɵnextContext(); return ctx_r111.onSelectValueChange(column_r16.name, record_r63, $event); });
2416
+ i0.ɵɵlistener("selectionChange", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_select_6_Template_mat_select_selectionChange_0_listener($event) { i0.ɵɵrestoreView(_r113); const record_r63 = i0.ɵɵnextContext(2).$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r111 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r111.onSelectValueChange(column_r16.name, record_r63, $event)); });
2431
2417
  i0.ɵɵtemplate(1, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_select_6_mat_option_1_Template, 2, 3, "mat-option", 52);
2432
2418
  i0.ɵɵelementEnd();
2433
2419
  } if (rf & 2) {
@@ -2472,11 +2458,10 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2472
2458
  i0.ɵɵtemplate(6, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_select_6_Template, 2, 5, "mat-select", 38);
2473
2459
  i0.ɵɵtemplate(7, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_input_7_Template, 1, 4, "input", 39);
2474
2460
  i0.ɵɵelementStart(8, "mat-autocomplete", 40, 41);
2475
- i0.ɵɵlistener("optionSelected", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_Template_mat_autocomplete_optionSelected_8_listener($event) { i0.ɵɵrestoreView(_r122); const record_r63 = i0.ɵɵnextContext().$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r120 = i0.ɵɵnextContext(); return ctx_r120.onAutocompleteValueChange(column_r16.name, record_r63, $event); });
2461
+ i0.ɵɵlistener("optionSelected", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_Template_mat_autocomplete_optionSelected_8_listener($event) { i0.ɵɵrestoreView(_r122); const record_r63 = i0.ɵɵnextContext().$implicit; const column_r16 = i0.ɵɵnextContext(3).$implicit; const ctx_r120 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r120.onAutocompleteValueChange(column_r16.name, record_r63, $event)); });
2476
2462
  i0.ɵɵtemplate(10, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_td_1_mat_option_10_Template, 2, 2, "mat-option", 42);
2477
2463
  i0.ɵɵpipe(11, "async");
2478
- i0.ɵɵelementEnd();
2479
- i0.ɵɵelementEnd();
2464
+ i0.ɵɵelementEnd()();
2480
2465
  } if (rf & 2) {
2481
2466
  const record_r63 = i0.ɵɵnextContext().$implicit;
2482
2467
  const column_r16 = i0.ɵɵnextContext(3).$implicit;
@@ -2528,13 +2513,11 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_co
2528
2513
  i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(2, 1, "igo.geo.targetHtmlUrl"), " ");
2529
2514
  } }
2530
2515
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_ng_template_2_ng_template_1_Template(rf, ctx) { if (rf & 1) {
2531
- i0.ɵɵelementStart(0, "td", 22);
2532
- i0.ɵɵelementStart(1, "a", 23);
2516
+ i0.ɵɵelementStart(0, "td", 22)(1, "a", 23);
2533
2517
  i0.ɵɵlistener("click", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_ng_template_2_ng_template_1_Template_a_click_1_listener($event) { return $event.stopPropagation(); });
2534
2518
  i0.ɵɵtemplate(2, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_ng_template_2_ng_template_1_img_2_Template, 3, 5, "img", 24);
2535
2519
  i0.ɵɵtemplate(3, EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_ng_container_1_ng_template_2_ng_template_1_ng_template_3_Template, 3, 3, "ng-template", null, 25, i0.ɵɵtemplateRefExtractor);
2536
- i0.ɵɵelementEnd();
2537
- i0.ɵɵelementEnd();
2520
+ i0.ɵɵelementEnd()();
2538
2521
  } if (rf & 2) {
2539
2522
  const _r132 = i0.ɵɵreference(4);
2540
2523
  const record_r63 = i0.ɵɵnextContext(2).$implicit;
@@ -2575,11 +2558,9 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_3_Templ
2575
2558
  } }
2576
2559
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_4_td_1_Template(rf, ctx) { if (rf & 1) {
2577
2560
  const _r145 = i0.ɵɵgetCurrentView();
2578
- i0.ɵɵelementStart(0, "td", 22);
2579
- i0.ɵɵelementStart(1, "mat-icon", 58);
2580
- i0.ɵɵlistener("click", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_4_td_1_Template_mat_icon_click_1_listener($event) { i0.ɵɵrestoreView(_r145); const column_r16 = i0.ɵɵnextContext(3).$implicit; return column_r16.onClick($event); });
2581
- i0.ɵɵelementEnd();
2582
- i0.ɵɵelementEnd();
2561
+ i0.ɵɵelementStart(0, "td", 22)(1, "mat-icon", 58);
2562
+ i0.ɵɵlistener("click", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_4_td_1_Template_mat_icon_click_1_listener($event) { i0.ɵɵrestoreView(_r145); const column_r16 = i0.ɵɵnextContext(3).$implicit; return i0.ɵɵresetView(column_r16.onClick($event)); });
2563
+ i0.ɵɵelementEnd()();
2583
2564
  } if (rf & 2) {
2584
2565
  const record_r142 = ctx.$implicit;
2585
2566
  const column_r16 = i0.ɵɵnextContext(3).$implicit;
@@ -2596,7 +2577,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_4_Templ
2596
2577
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_1_Template(rf, ctx) { if (rf & 1) {
2597
2578
  const _r156 = i0.ɵɵgetCurrentView();
2598
2579
  i0.ɵɵelementStart(0, "button", 62);
2599
- i0.ɵɵlistener("mousedown", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_1_Template_button_mousedown_0_listener() { i0.ɵɵrestoreView(_r156); const button_r150 = i0.ɵɵnextContext(2).$implicit; const record_r148 = i0.ɵɵnextContext().$implicit; const ctx_r154 = i0.ɵɵnextContext(4); return ctx_r154.onButtonClick(button_r150.click, record_r148); });
2580
+ i0.ɵɵlistener("mousedown", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_1_Template_button_mousedown_0_listener() { i0.ɵɵrestoreView(_r156); const button_r150 = i0.ɵɵnextContext(2).$implicit; const record_r148 = i0.ɵɵnextContext().$implicit; const ctx_r154 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r154.onButtonClick(button_r150.click, record_r148)); });
2600
2581
  i0.ɵɵelement(1, "mat-icon", 63);
2601
2582
  i0.ɵɵelementEnd();
2602
2583
  } if (rf & 2) {
@@ -2608,7 +2589,7 @@ function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_co
2608
2589
  function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_2_Template(rf, ctx) { if (rf & 1) {
2609
2590
  const _r161 = i0.ɵɵgetCurrentView();
2610
2591
  i0.ɵɵelementStart(0, "button", 64);
2611
- i0.ɵɵlistener("mousedown", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_2_Template_button_mousedown_0_listener() { i0.ɵɵrestoreView(_r161); const button_r150 = i0.ɵɵnextContext(2).$implicit; const record_r148 = i0.ɵɵnextContext().$implicit; const ctx_r159 = i0.ɵɵnextContext(4); return ctx_r159.onButtonClick(button_r150.click, record_r148); });
2592
+ i0.ɵɵlistener("mousedown", function EntityTableComponent_ng_container_5_ng_container_3_ng_container_5_ng_container_1_span_2_ng_container_1_button_2_Template_button_mousedown_0_listener() { i0.ɵɵrestoreView(_r161); const button_r150 = i0.ɵɵnextContext(2).$implicit; const record_r148 = i0.ɵɵnextContext().$implicit; const ctx_r159 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r159.onButtonClick(button_r150.click, record_r148)); });
2612
2593
  i0.ɵɵelement(1, "mat-icon", 63);
2613
2594
  i0.ɵɵelementEnd();
2614
2595
  } if (rf & 2) {
@@ -2708,7 +2689,7 @@ function EntityTableComponent_tr_6_Template(rf, ctx) { if (rf & 1) {
2708
2689
  function EntityTableComponent_tr_7_Template(rf, ctx) { if (rf & 1) {
2709
2690
  const _r169 = i0.ɵɵgetCurrentView();
2710
2691
  i0.ɵɵelementStart(0, "tr", 66);
2711
- i0.ɵɵlistener("select", function EntityTableComponent_tr_7_Template_tr_select_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r169); const record_r167 = restoredCtx.$implicit; const ctx_r168 = i0.ɵɵnextContext(); return ctx_r168.onRowSelect(record_r167); })("click", function EntityTableComponent_tr_7_Template_tr_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r169); const record_r167 = restoredCtx.$implicit; const ctx_r170 = i0.ɵɵnextContext(); return ctx_r170.onRowClick(record_r167); });
2692
+ i0.ɵɵlistener("select", function EntityTableComponent_tr_7_Template_tr_select_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r169); const record_r167 = restoredCtx.$implicit; const ctx_r168 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r168.onRowSelect(record_r167)); })("click", function EntityTableComponent_tr_7_Template_tr_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r169); const record_r167 = restoredCtx.$implicit; const ctx_r170 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r170.onRowClick(record_r167)); });
2712
2693
  i0.ɵɵelementEnd();
2713
2694
  } if (rf & 2) {
2714
2695
  const record_r167 = ctx.$implicit;
@@ -2718,13 +2699,12 @@ function EntityTableComponent_tr_7_Template(rf, ctx) { if (rf & 1) {
2718
2699
  function EntityTableComponent_igo_entity_table_paginator_8_Template(rf, ctx) { if (rf & 1) {
2719
2700
  const _r172 = i0.ɵɵgetCurrentView();
2720
2701
  i0.ɵɵelementStart(0, "igo-entity-table-paginator", 67);
2721
- i0.ɵɵlistener("paginatorChange", function EntityTableComponent_igo_entity_table_paginator_8_Template_igo_entity_table_paginator_paginatorChange_0_listener($event) { i0.ɵɵrestoreView(_r172); const ctx_r171 = i0.ɵɵnextContext(); return ctx_r171.paginatorChange($event); });
2702
+ i0.ɵɵlistener("paginatorChange", function EntityTableComponent_igo_entity_table_paginator_8_Template_igo_entity_table_paginator_paginatorChange_0_listener($event) { i0.ɵɵrestoreView(_r172); const ctx_r171 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r171.paginatorChange($event)); });
2722
2703
  i0.ɵɵelementEnd();
2723
2704
  } if (rf & 2) {
2724
2705
  const ctx_r5 = i0.ɵɵnextContext();
2725
2706
  i0.ɵɵproperty("store", ctx_r5.store)("paginatorOptions", ctx_r5.paginatorOptions)("entitySortChange$", ctx_r5.entitySortChange$);
2726
2707
  } }
2727
- const moment = moment_;
2728
2708
  class EntityTableComponent {
2729
2709
  constructor(cdRef, formBuilder, _focusMonitor, _elementRef, ngControl, _parentForm, _controlName, _defaultErrorStateMatcher, dateAdapter) {
2730
2710
  this.cdRef = cdRef;
@@ -2737,7 +2717,7 @@ class EntityTableComponent {
2737
2717
  this._defaultErrorStateMatcher = _defaultErrorStateMatcher;
2738
2718
  this.dateAdapter = dateAdapter;
2739
2719
  this.entitySortChange$ = new BehaviorSubject(false);
2740
- this.formGroup = new FormGroup({});
2720
+ this.formGroup = new UntypedFormGroup({});
2741
2721
  /**
2742
2722
  * Reference to the column renderer types
2743
2723
  * @internal
@@ -2889,8 +2869,7 @@ class EntityTableComponent {
2889
2869
  enableEdit(record) {
2890
2870
  const item = record.entity.properties || record.entity;
2891
2871
  this.template.columns.forEach(column => {
2892
- var _a;
2893
- column.title = ((_a = column.validation) === null || _a === void 0 ? void 0 : _a.mandatory) && !column.title.includes('*') ? column.title + ' *' : column.title;
2872
+ column.title = column.validation?.mandatory && !column.title.includes('*') ? column.title + ' *' : column.title;
2894
2873
  const key = this.getColumnKeyWithoutPropertiesTag(column.name);
2895
2874
  if (column.type === 'boolean') {
2896
2875
  if (!item[key] || item[key] === null) {
@@ -2933,6 +2912,10 @@ class EntityTableComponent {
2933
2912
  }
2934
2913
  });
2935
2914
  this.formGroup.controls[column.name].setValue(formControlValue);
2915
+ if (this.isEdition(record) && column.linkColumnForce) {
2916
+ const entity = record.entity;
2917
+ this.formGroup.controls[column.name].setValue(entity?.properties[this.getColumnKeyWithoutPropertiesTag(column.linkColumnForce)]);
2918
+ }
2936
2919
  }
2937
2920
  else if (column.type === 'date') {
2938
2921
  if (column.visible) {
@@ -3221,6 +3204,7 @@ class EntityTableComponent {
3221
3204
  }
3222
3205
  }
3223
3206
  else if (column.type === 'list' && value && column.domainValues) {
3207
+ const entity = record.entity;
3224
3208
  if (column.multiple) {
3225
3209
  let list_id;
3226
3210
  typeof value === 'string' ? list_id = value.match(/[\w.-]+/g).map(Number) : list_id = value;
@@ -3237,27 +3221,38 @@ class EntityTableComponent {
3237
3221
  });
3238
3222
  this.isEdition(record) ? value = list_id : value = list_option;
3239
3223
  }
3224
+ else {
3225
+ if (!this.isEdition(record) && column.linkColumnForce) {
3226
+ value = entity?.properties[this.getColumnKeyWithoutPropertiesTag(column.linkColumnForce)];
3227
+ }
3228
+ else {
3229
+ column.domainValues.forEach(option => {
3230
+ if (typeof value === 'string' && /^\d+$/.test(value)) {
3231
+ value = parseInt(value);
3232
+ }
3233
+ if (option.value === value || option.id === value) {
3234
+ this.isEdition(record) ? value = option.id : value = option.value;
3235
+ }
3236
+ });
3237
+ }
3238
+ }
3239
+ }
3240
+ else if (column.type === 'autocomplete' && value && column.domainValues) {
3241
+ const entity = record.entity;
3242
+ if (!this.isEdition(record) && column.linkColumnForce) {
3243
+ value = entity?.properties[this.getColumnKeyWithoutPropertiesTag(column.linkColumnForce)];
3244
+ }
3240
3245
  else {
3241
3246
  column.domainValues.forEach(option => {
3242
3247
  if (typeof value === 'string' && /^\d+$/.test(value)) {
3243
3248
  value = parseInt(value);
3244
3249
  }
3245
3250
  if (option.value === value || option.id === value) {
3246
- this.isEdition(record) ? value = option.id : value = option.value;
3251
+ value = option.value;
3247
3252
  }
3248
3253
  });
3249
3254
  }
3250
3255
  }
3251
- else if (column.type === 'autocomplete' && value && column.domainValues) {
3252
- column.domainValues.forEach(option => {
3253
- if (typeof value === 'string' && /^\d+$/.test(value)) {
3254
- value = parseInt(value);
3255
- }
3256
- if (option.value === value || option.id === value) {
3257
- value = option.value;
3258
- }
3259
- });
3260
- }
3261
3256
  else if (column.type === 'date') {
3262
3257
  if (this.isEdition(record)) {
3263
3258
  if (value) {
@@ -3383,10 +3378,9 @@ class EntityTableComponent {
3383
3378
  return column;
3384
3379
  }
3385
3380
  }
3386
- EntityTableComponent.ɵfac = function EntityTableComponent_Factory(t) { return new (t || EntityTableComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$5.FormBuilder), i0.ɵɵdirectiveInject(i2$2.FocusMonitor), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$5.NgControl, 10), i0.ɵɵdirectiveInject(i1$5.NgForm, 8), i0.ɵɵdirectiveInject(i1$5.FormControlName, 8), i0.ɵɵdirectiveInject(i3.ErrorStateMatcher), i0.ɵɵdirectiveInject(i3.DateAdapter)); };
3381
+ EntityTableComponent.ɵfac = function EntityTableComponent_Factory(t) { return new (t || EntityTableComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$4.UntypedFormBuilder), i0.ɵɵdirectiveInject(i2$1.FocusMonitor), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$4.NgControl, 10), i0.ɵɵdirectiveInject(i1$4.NgForm, 8), i0.ɵɵdirectiveInject(i1$4.FormControlName, 8), i0.ɵɵdirectiveInject(i3$1.ErrorStateMatcher), i0.ɵɵdirectiveInject(i3$1.DateAdapter)); };
3387
3382
  EntityTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EntityTableComponent, selectors: [["igo-entity-table"]], inputs: { store: "store", paginator: "paginator", template: "template", scrollBehavior: "scrollBehavior", sortNullsFirst: "sortNullsFirst", withPaginator: "withPaginator", paginatorOptions: "paginatorOptions" }, outputs: { entityClick: "entityClick", entitySelectChange: "entitySelectChange", entitySortChange: "entitySortChange" }, features: [i0.ɵɵProvidersFeature([{ provide: MatFormFieldControl, useExisting: EntityTableComponent }]), i0.ɵɵNgOnChangesFeature], decls: 9, vars: 8, consts: [[1, "table-container"], ["mat-table", "", "matSort", "", 3, "ngClass", "dataSource", "trackBy", "matSortChange"], ["matColumnDef", "selectionCheckbox", 1, "mat-cell-checkbox"], ["mat-header-cell", "", 4, "matHeaderCellDef"], ["mat-cell", "", 4, "matCellDef"], [3, "matColumnDef", 4, "ngFor", "ngForOf"], ["mat-header-row", "", 3, "ngClass", 4, "matHeaderRowDef", "matHeaderRowDefSticky"], ["mat-row", "", "igoEntityTableRow", "", 3, "scrollBehavior", "ngClass", "selection", "selected", "select", "click", 4, "matRowDef", "matRowDefColumns"], [3, "store", "paginatorOptions", "entitySortChange$", "paginatorChange", 4, "ngIf"], ["mat-header-cell", ""], [4, "ngIf"], [3, "checked", "indeterminate", "change"], ["mat-cell", ""], [3, "checked", "mousedown", "click", "change"], [3, "matColumnDef"], ["mat-header-cell", "", "mat-sort-header", "", 3, "matTooltip", 4, "matHeaderCellDef"], ["mat-header-cell", "", "mat-sort-header", "", 3, "matTooltip"], ["mat-header-cell", "", 3, "matTooltip", 4, "matHeaderCellDef"], ["mat-header-cell", "", 3, "matTooltip"], [4, "matCellDef"], ["mat-cell", "", "class", "mat-cell-text", 3, "ngClass", 4, "ngIf", "ngIfElse"], ["isAnUrlDefault", ""], ["mat-cell", "", 1, "mat-cell-text", 3, "ngClass"], ["target", "_blank", "rel", "noopener noreferrer", 3, "href", "click"], ["width", "50", "heigth", "auto", 3, "src", 4, "ngIf", "ngIfElse"], ["notImg", ""], ["width", "50", "heigth", "auto", 3, "src"], ["mat-cell", "", "class", "mat-cell-text", 3, "ngClass", "innerHTML", 4, "ngIf", "ngIfElse"], ["isAnUrlHTML", ""], ["mat-cell", "", 1, "mat-cell-text", 3, "ngClass", "innerHTML"], ["mat-cell", "", "class", "mat-cell-text edition", 3, "formGroup", "ngClass", 4, "ngIf", "ngIfElse"], ["isUnsanitizedHTML", ""], ["mat-cell", "", 1, "mat-cell-text", "edition", 3, "formGroup", "ngClass"], ["class", "date-picker", 4, "ngIf"], ["matInput", "", "type", "time", "step", "900", 3, "formControlName", "focus", "keypress", "blur", 4, "ngIf"], ["matInput", "", "type", "number", "class", "class_number_edition", 3, "formControlName", "step", "value", "readonly", "required", "min", "max", "input", 4, "ngIf"], ["matInput", "", "type", "text", 3, "formControlName", "value", "readonly", "required", "input", 4, "ngIf"], [3, "formControlName", "checked", "change", 4, "ngIf"], [3, "required", "formControlName", "multiple", "value", "selectionChange", 4, "ngIf"], ["matInput", "", "type", "text", 3, "formControlName", "matAutocomplete", "required", "value", 4, "ngIf"], ["panelWidth", "430px", 3, "optionSelected"], ["auto", "matAutocomplete"], [3, "value", 4, "ngFor", "ngForOf"], [1, "date-picker"], ["matSuffix", "", 3, "for"], ["matInput", "", 3, "matDatepicker", "formControlName", "value", "dateChange"], ["picker", ""], ["matInput", "", "type", "time", "step", "900", 3, "formControlName", "focus", "keypress", "blur"], ["matInput", "", "type", "number", 1, "class_number_edition", 3, "formControlName", "step", "value", "readonly", "required", "min", "max", "input"], ["matInput", "", "type", "text", 3, "formControlName", "value", "readonly", "required", "input"], [3, "formControlName", "checked", "change"], [3, "required", "formControlName", "multiple", "value", "selectionChange"], [3, "value", "disabled", 4, "ngFor", "ngForOf"], [3, "value", "disabled"], ["matInput", "", "type", "text", 3, "formControlName", "matAutocomplete", "required", "value"], [3, "value"], ["isAnUrlUnsanitizedHTML", ""], ["mat-cell", "", "class", "mat-cell-text", 3, "ngClass", 4, "matCellDef"], [3, "svgIcon", "click"], [4, "ngFor", "ngForOf"], ["igoStopPropagation", "", "mat-icon-button", "", 3, "color", "disabled", "mousedown", 4, "ngIf"], ["igoStopPropagation", "", "mat-mini-fab", "", 3, "color", "disabled", "mousedown", 4, "ngIf"], ["igoStopPropagation", "", "mat-icon-button", "", 3, "color", "disabled", "mousedown"], [3, "svgIcon"], ["igoStopPropagation", "", "mat-mini-fab", "", 3, "color", "disabled", "mousedown"], ["mat-header-row", "", 3, "ngClass"], ["mat-row", "", "igoEntityTableRow", "", 3, "scrollBehavior", "ngClass", "selection", "selected", "select", "click"], [3, "store", "paginatorOptions", "entitySortChange$", "paginatorChange"]], template: function EntityTableComponent_Template(rf, ctx) { if (rf & 1) {
3388
- i0.ɵɵelementStart(0, "div", 0);
3389
- i0.ɵɵelementStart(1, "table", 1);
3383
+ i0.ɵɵelementStart(0, "div", 0)(1, "table", 1);
3390
3384
  i0.ɵɵlistener("matSortChange", function EntityTableComponent_Template_table_matSortChange_1_listener($event) { return ctx.onSort($event); });
3391
3385
  i0.ɵɵelementContainerStart(2, 2);
3392
3386
  i0.ɵɵtemplate(3, EntityTableComponent_th_3_Template, 2, 1, "th", 3);
@@ -3409,25 +3403,19 @@ EntityTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Entity
3409
3403
  i0.ɵɵproperty("matRowDefColumns", ctx.headers);
3410
3404
  i0.ɵɵadvance(1);
3411
3405
  i0.ɵɵproperty("ngIf", ctx.withPaginator);
3412
- } }, directives: [i4.MatTable, i5.MatSort, i1$1.NgClass, i4.MatColumnDef, i4.MatHeaderCellDef, i4.MatCellDef, i1$1.NgForOf, i4.MatHeaderRowDef, i4.MatRowDef, i1$1.NgIf, i4.MatHeaderCell, i7.MatCheckbox, i4.MatCell, i5.MatSortHeader, i6.MatTooltip, i1$5.NgControlStatusGroup, i1$5.FormGroupDirective, i9.MatAutocomplete, i10.MatDatepickerToggle, i1.MatSuffix, i2$3.MatInput, i10.MatDatepickerInput, i1$5.DefaultValueAccessor, i1$5.NgControlStatus, i1$5.FormControlName, i10.MatDatepicker, i1$5.NumberValueAccessor, i1$5.MinValidator, i1$5.MaxValidator, i1$5.RequiredValidator, i2.MatSelect, i3.MatOption, i9.MatAutocompleteTrigger, i5$1.MatIcon, i4$1.MatButton, StopPropagationDirective, i4.MatHeaderRow, i4.MatRow, EntityTableRowDirective, EntityTablePaginatorComponent], pipes: [i1$1.AsyncPipe, SecureImagePipe, i6$1.TranslatePipe, SanitizeHtmlPipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block}.table-compact[_nghost-%COMP%] tr.mat-header-row[_ngcontent-%COMP%], .table-compact[_nghost-%COMP%] .mat-checkbox .mat-checkbox-ripple{height:36px}.table-compact[_nghost-%COMP%] tr.mat-row[_ngcontent-%COMP%], .table-compact[_nghost-%COMP%] .mat-checkbox .mat-checkbox-ripple{height:28px}.table-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.mat-cell-text[_ngcontent-%COMP%]{overflow:hidden;word-wrap:break-word}th.mat-header-cell[_ngcontent-%COMP%], td.mat-cell[_ngcontent-%COMP%], td.mat-footer-cell[_ngcontent-%COMP%]{padding:0 3px}entity-table[_ngcontent-%COMP%] table.igo-entity-table-with-selection[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover{-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd;cursor:pointer}table[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{margin:7px}.class_boolean[_ngcontent-%COMP%], .class_icon[_ngcontent-%COMP%], .class_number[_ngcontent-%COMP%]{text-align:center;padding-right:35px!important}.class_sting[_ngcontent-%COMP%], .class_text[_ngcontent-%COMP%], .class_number_edition[_ngcontent-%COMP%]{text-align:left}td.edition[_ngcontent-%COMP%]{background:rgba(166,166,166,.2)}input[_ngcontent-%COMP%]{border-bottom:1px solid darkgrey}"], changeDetection: 0 });
3406
+ } }, dependencies: [i1.NgClass, i1.NgForOf, i1.NgIf, i5.MatTable, i5.MatHeaderCellDef, i5.MatHeaderRowDef, i5.MatColumnDef, i5.MatCellDef, i5.MatRowDef, i5.MatHeaderCell, i5.MatCell, i5.MatHeaderRow, i5.MatRow, i6.MatAutocomplete, i6.MatAutocompleteTrigger, i3$1.MatOption, i7.MatSort, i7.MatSortHeader, i3$2.MatIcon, i2$2.MatButton, i10.MatCheckbox, i4.MatSuffix, i3.MatSelect, StopPropagationDirective, EntityTablePaginatorComponent, i1$4.DefaultValueAccessor, i1$4.NumberValueAccessor, i1$4.NgControlStatus, i1$4.NgControlStatusGroup, i1$4.RequiredValidator, i1$4.MinValidator, i1$4.MaxValidator, i1$4.FormGroupDirective, i1$4.FormControlName, i5$1.MatInput, i16.MatDatepicker, i16.MatDatepickerInput, i16.MatDatepickerToggle, i6$1.MatTooltip, EntityTableRowDirective, i1.AsyncPipe, SanitizeHtmlPipe, SecureImagePipe, i6$2.TranslatePipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block}.table-compact[_nghost-%COMP%] tr.mat-header-row[_ngcontent-%COMP%], .table-compact[_nghost-%COMP%] .mat-checkbox .mat-checkbox-ripple{height:36px}.table-compact[_nghost-%COMP%] tr.mat-row[_ngcontent-%COMP%], .table-compact[_nghost-%COMP%] .mat-checkbox .mat-checkbox-ripple{height:28px}.table-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.mat-cell-text[_ngcontent-%COMP%]{overflow:hidden;word-wrap:break-word}th.mat-header-cell[_ngcontent-%COMP%], td.mat-cell[_ngcontent-%COMP%], td.mat-footer-cell[_ngcontent-%COMP%]{padding:0 3px}entity-table[_ngcontent-%COMP%] table.igo-entity-table-with-selection[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover{-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd;cursor:pointer}table[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{margin:7px}.class_hidden[_ngcontent-%COMP%]{visibility:hidden}.class_display_none[_ngcontent-%COMP%]{display:none}.class_boolean[_ngcontent-%COMP%], .class_icon[_ngcontent-%COMP%], .class_number[_ngcontent-%COMP%]{text-align:center;padding-right:35px!important}.class_sting[_ngcontent-%COMP%], .class_text[_ngcontent-%COMP%], .class_number_edition[_ngcontent-%COMP%]{text-align:left}td.edition[_ngcontent-%COMP%]{background:rgba(166,166,166,.2)}input[_ngcontent-%COMP%]{border-bottom:1px solid darkgrey}"], changeDetection: 0 });
3413
3407
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntityTableComponent, [{
3414
3408
  type: Component,
3415
- args: [{
3416
- selector: 'igo-entity-table',
3417
- templateUrl: './entity-table.component.html',
3418
- styleUrls: ['./entity-table.component.scss'],
3419
- changeDetection: ChangeDetectionStrategy.OnPush,
3420
- providers: [{ provide: MatFormFieldControl, useExisting: EntityTableComponent }]
3421
- }]
3422
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i1$5.FormBuilder }, { type: i2$2.FocusMonitor }, { type: i0.ElementRef }, { type: i1$5.NgControl, decorators: [{
3409
+ args: [{ selector: 'igo-entity-table', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: MatFormFieldControl, useExisting: EntityTableComponent }], template: "<div class=\"table-container\">\r\n <table mat-table matSort [ngClass]=\"getTableClass()\" [dataSource]=\"dataSource\" [trackBy]=\"getTrackByFunction()\" (matSortChange)=\"onSort($event)\">\r\n <ng-container matColumnDef=\"selectionCheckbox\" class=\"mat-cell-checkbox\">\r\n <th mat-header-cell *matHeaderCellDef>\r\n <ng-container *ngIf=\"selectMany\">\r\n <ng-container *ngIf=\"selectionState$ | async as selectionState\">\r\n <mat-checkbox (change)=\"onToggleRows($event.checked)\" [checked]=\"selectionState === entityTableSelectionState.All\"\r\n [indeterminate]=\"selectionState === entityTableSelectionState.Some\">\r\n </mat-checkbox>\r\n </ng-container>\r\n </ng-container>\r\n </th>\r\n <td mat-cell *matCellDef=\"let record\">\r\n <mat-checkbox (mousedown)=\"$event.shiftKey ? $event.preventDefault() : null\" (click)=\"$event.shiftKey ?\r\n onShiftToggleRow(!rowIsSelected(record), record, $event) : $event.stopPropagation()\" (change)=\"onToggleRow($event.checked,record)\"\r\n [checked]=\"rowIsSelected(record)\">\r\n </mat-checkbox>\r\n </td>\r\n </ng-container>\r\n\r\n <ng-container [matColumnDef]=\"column.name\" *ngFor=\"let column of template.columns\">\r\n <ng-container *ngIf=\"columnIsSortable(column)\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header [matTooltip]=\"column.tooltip ? column.tooltip : undefined\">\r\n {{column.title}}\r\n </th>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"!columnIsSortable(column)\">\r\n <th mat-header-cell *matHeaderCellDef [matTooltip]=\"column.tooltip ? column.tooltip : undefined\">\r\n {{column.title}}\r\n </th>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"getColumnRenderer(column) as columnRenderer\">\r\n <ng-container *ngIf=\"columnRenderer === entityTableColumnRenderer.Default\">\r\n <ng-container *matCellDef=\"let record\">\r\n <td mat-cell class=\"mat-cell-text\" *ngIf=\"!isUrl(getValue(record, column));else isAnUrlDefault\" [ngClass]=\"getCellClass(record, column)\">\r\n {{getValue(record, column)}}\r\n </td>\r\n <ng-template #isAnUrlDefault>\r\n <td mat-cell class=\"mat-cell-text\" [ngClass]=\"getCellClass(record, column)\">\r\n <a href=\"{{getValue(record, column)}}\" target='_blank' rel=\"noopener noreferrer\" (click)=\"$event.stopPropagation()\">\r\n <img *ngIf=\"isImg(getValue(record, column));else notImg\" src=\"{{(getValue(record, column) | secureImage) | async}}\" width=\"50\" heigth=\"auto\">\r\n <ng-template #notImg><span>{{\r\n 'igo.common.entity-table.targetHtmlUrl' | translate }}\r\n </span></ng-template>\r\n </a>\r\n </td>\r\n </ng-template>\r\n </ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"columnRenderer === entityTableColumnRenderer.HTML\">\r\n <ng-container *matCellDef=\"let record\">\r\n <td mat-cell class=\"mat-cell-text\" *ngIf=\"!isUrl(getValue(record, column));else isAnUrlHTML\" [ngClass]=\"getCellClass(record, column)\"\r\n [innerHTML]=\"getValue(record, column)\">\r\n </td>\r\n <ng-template #isAnUrlHTML>\r\n <td mat-cell class=\"mat-cell-text\" [ngClass]=\"getCellClass(record, column)\">\r\n <a href=\"{{getValue(record, column)}}\" target='_blank' rel=\"noopener noreferrer\" (click)=\"$event.stopPropagation()\">\r\n <img *ngIf=\"isImg(getValue(record, column));else notImg\" src=\"{{(getValue(record, column) | secureImage) | async}}\" width=\"50\" heigth=\"auto\">\r\n <ng-template #notImg><span>{{ 'igo.geo.targetHtmlUrl' |\r\n translate }} </span></ng-template>\r\n </a>\r\n </td>\r\n </ng-template>\r\n </ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"columnRenderer === entityTableColumnRenderer.UnsanitizedHTML\">\r\n <ng-container *matCellDef=\"let record\">\r\n <td mat-cell class=\"mat-cell-text edition\" [formGroup]=\"formGroup\" *ngIf=\"isEdition(record);else isUnsanitizedHTML\"\r\n [ngClass]=\"getCellClass(record, column)\">\r\n <div class=\"date-picker\" *ngIf=\"column.type === 'date'\">\r\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\r\n <input matInput [matDatepicker]=\"picker\" [formControlName]=\"column.name\" value=\"{{getValue(record, column)}}\"\r\n (dateChange)=\"onDateChange(column.name, record, $event)\">\r\n <mat-datepicker #picker></mat-datepicker>\r\n </div>\r\n <input matInput type=\"time\" *ngIf=\"column.type === 'time'\" [formControlName]=\"column.name\" step=\"900\" (focus)=\"column.onFocus($event)\"\r\n (keypress)=\"column.onChange($event)\" (blur)=\"column.onBlur($event)\">\r\n <input matInput type=\"number\" class=\"class_number_edition\" *ngIf=\"column.type === 'number'\" [formControlName]=\"column.name\" step=\"{{column.step}}\"\r\n value=\"{{getValue(record,column)}}\" (input)=\"onValueChange(column.name, record, $event)\"\r\n readonly=\"{{getValidationAttributeValue(column, 'readonly')}}\" required=\"{{getValidationAttributeValue(column, 'mandatory')}}\"\r\n min=\"{{getValidationAttributeValue(column, 'minValue')}}\" max=\"{{getValidationAttributeValue(column, 'maxValue')}}\">\r\n <input matInput type=\"text\" *ngIf=\"!column.type || column.type ==='string'\" [formControlName]=\"column.name\"\r\n value=\"{{getValue(record, column)}}\" (input)=\"onValueChange(column.name, record, $event)\"\r\n readonly=\"{{getValidationAttributeValue(column, 'readonly')}}\" required=\"{{getValidationAttributeValue(column, 'mandatory')}}\">\r\n <mat-checkbox *ngIf=\"column.type === 'boolean'\" [formControlName]=\"column.name\" [checked]=\"getValue(record,column)\"\r\n (change)=\"onBooleanValueChange(column.name, record,$event)\"></mat-checkbox>\r\n <mat-select *ngIf=\"column.type === 'list'\" required=\"{{getValidationAttributeValue(column, 'mandatory')}}\"\r\n [formControlName]=\"column.name\" [multiple]=\"column.multiple\" (selectionChange)=\"onSelectValueChange(column.name, record, $event)\"\r\n [value]=\"getValue(record, column)\">\r\n <mat-option *ngFor=\"let option of column.domainValues\" [value]=\"option.id\" [disabled]=\"option.disabled\">\r\n {{ option.value }}\r\n </mat-option>\r\n </mat-select>\r\n <input matInput type=\"text\" [formControlName]=\"column.name\" *ngIf=\"column.type === 'autocomplete'\"\r\n [matAutocomplete]=\"auto\" required=\"{{getValidationAttributeValue(column, 'mandatory')}}\" value=\"{{getValue(record, column)}}\">\r\n <mat-autocomplete #auto=\"matAutocomplete\" (optionSelected)=\"onAutocompleteValueChange(column.name, record, $event)\"\r\n panelWidth=\"430px\">\r\n <mat-option *ngFor=\"let option of filteredOptions | async\" [value]=\"option.id\">\r\n {{ option.value }}\r\n </mat-option>\r\n </mat-autocomplete>\r\n </td>\r\n <ng-template #isUnsanitizedHTML>\r\n <td mat-cell class=\"mat-cell-text\" *ngIf=\"!isUrl(getValue(record, column));else isAnUrlUnsanitizedHTML\" [ngClass]=\"getCellClass(record, column)\"\r\n [innerHTML]=\"getValue(record, column) | sanitizeHtml\">\r\n </td>\r\n <ng-template #isAnUrlUnsanitizedHTML>\r\n <td mat-cell class=\"mat-cell-text\" [ngClass]=\"getCellClass(record, column)\">\r\n <a href=\"{{getValue(record, column)}}\" target='_blank' rel=\"noopener noreferrer\" (click)=\"$event.stopPropagation()\">\r\n <img *ngIf=\"isImg(getValue(record, column));else notImg\" src=\"{{(getValue(record, column) | secureImage) | async}}\" width=\"50\" heigth=\"auto\">\r\n <ng-template #notImg><span>{{ 'igo.geo.targetHtmlUrl' | translate }} </span></ng-template>\r\n </a>\r\n </td>\r\n </ng-template>\r\n </ng-template>\r\n </ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"columnRenderer === entityTableColumnRenderer.Icon\">\r\n <td mat-cell *matCellDef=\"let record\" class=\"mat-cell-text\" [ngClass]=\"getCellClass(record, column)\">\r\n <mat-icon svgIcon=\"{{getValue(record, column)|| column.icon}}\" (click)=\"column.onClick($event)\"></mat-icon>\r\n </td>\r\n </ng-container>\r\n <ng-container *ngIf=\"columnRenderer === entityTableColumnRenderer.ButtonGroup\">\r\n <ng-container *matCellDef=\"let record\">\r\n <td mat-cell class=\"mat-cell-text\" [ngClass]=\"getCellClass(record, column)\">\r\n <span *ngFor=\"let button of getValue(record, column)\">\r\n <ng-container *ngIf=\"isEdition(record) === button.editMode\">\r\n <button *ngIf=\"button.style === 'mat-icon-button'\" igoStopPropagation mat-icon-button\r\n [color]=\"button.color\" (mousedown)=\"onButtonClick(button.click, record)\" [disabled]=\"button.disabled\">\r\n <mat-icon svgIcon=\"{{button.icon}}\"></mat-icon>\r\n </button>\r\n <button *ngIf=\"button.style !== 'mat-icon-button'\" igoStopPropagation mat-mini-fab\r\n [color]=\"button.color\" (mousedown)=\"onButtonClick(button.click, record)\" [disabled]=\"button.disabled\">\r\n <mat-icon svgIcon=\"{{button.icon}}\"></mat-icon>\r\n </button>\r\n </ng-container>\r\n </span>\r\n </td>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n\r\n <tr mat-header-row *matHeaderRowDef=\"headers; sticky: fixedHeader;\" [ngClass]=\"getHeaderClass()\">\r\n </tr>\r\n <tr mat-row igoEntityTableRow *matRowDef=\"let record; columns: headers;\" [scrollBehavior]=\"scrollBehavior\" [ngClass]=\"getRowClass(record)\" [selection]=\"selection\" [selected]=\"rowIsSelected(record)\" (select)=\"onRowSelect(record)\" (click)=\"onRowClick(record)\">\r\n </tr>\r\n </table>\r\n <igo-entity-table-paginator *ngIf=\"withPaginator\" [store]=\"store\" [paginatorOptions]=\"paginatorOptions\" [entitySortChange$]=\"entitySortChange$\" (paginatorChange)=\"paginatorChange($event)\">\r\n </igo-entity-table-paginator>\r\n</div>", styles: [":host{width:100%;height:100%;display:block}:host.table-compact tr.mat-header-row,:host.table-compact ::ng-deep .mat-checkbox .mat-checkbox-ripple{height:36px}:host.table-compact tr.mat-row,:host.table-compact ::ng-deep .mat-checkbox .mat-checkbox-ripple{height:28px}.table-container{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.mat-cell-text{overflow:hidden;word-wrap:break-word}th.mat-header-cell,td.mat-cell,td.mat-footer-cell{padding:0 3px}entity-table table.igo-entity-table-with-selection tr:hover{-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd;cursor:pointer}table button{margin:7px}.class_hidden{visibility:hidden}.class_display_none{display:none}.class_boolean,.class_icon,.class_number{text-align:center;padding-right:35px!important}.class_sting,.class_text,.class_number_edition{text-align:left}td.edition{background:rgba(166,166,166,.2)}input{border-bottom:1px solid darkgrey}\n"] }]
3410
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i1$4.UntypedFormBuilder }, { type: i2$1.FocusMonitor }, { type: i0.ElementRef }, { type: i1$4.NgControl, decorators: [{
3423
3411
  type: Optional
3424
3412
  }, {
3425
3413
  type: Self
3426
- }] }, { type: i1$5.NgForm, decorators: [{
3414
+ }] }, { type: i1$4.NgForm, decorators: [{
3427
3415
  type: Optional
3428
- }] }, { type: i1$5.FormControlName, decorators: [{
3416
+ }] }, { type: i1$4.FormControlName, decorators: [{
3429
3417
  type: Optional
3430
- }] }, { type: i3.ErrorStateMatcher }, { type: i3.DateAdapter }]; }, { store: [{
3418
+ }] }, { type: i3$1.ErrorStateMatcher }, { type: i3$1.DateAdapter }]; }, { store: [{
3431
3419
  type: Input
3432
3420
  }], paginator: [{
3433
3421
  type: Input
@@ -3487,7 +3475,7 @@ function ActionbarItemComponent_mat_list_item_0_h4_5_Template(rf, ctx) { if (rf
3487
3475
  function ActionbarItemComponent_mat_list_item_0_Template(rf, ctx) { if (rf & 1) {
3488
3476
  const _r6 = i0.ɵɵgetCurrentView();
3489
3477
  i0.ɵɵelementStart(0, "mat-list-item", 2);
3490
- i0.ɵɵlistener("click", function ActionbarItemComponent_mat_list_item_0_Template_mat_list_item_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(); return ctx_r5.onClick(); });
3478
+ i0.ɵɵlistener("click", function ActionbarItemComponent_mat_list_item_0_Template_mat_list_item_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r5.onClick()); });
3491
3479
  i0.ɵɵpipe(1, "translate");
3492
3480
  i0.ɵɵpipe(2, "async");
3493
3481
  i0.ɵɵpipe(3, "async");
@@ -3505,7 +3493,7 @@ function ActionbarItemComponent_mat_list_item_0_Template(rf, ctx) { if (rf & 1)
3505
3493
  function ActionbarItemComponent_mat_list_item_1_mat_checkbox_4_Template(rf, ctx) { if (rf & 1) {
3506
3494
  const _r9 = i0.ɵɵgetCurrentView();
3507
3495
  i0.ɵɵelementStart(0, "mat-checkbox", 11);
3508
- i0.ɵɵlistener("change", function ActionbarItemComponent_mat_list_item_1_mat_checkbox_4_Template_mat_checkbox_change_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(2); return ctx_r8.action.handler(); });
3496
+ i0.ɵɵlistener("change", function ActionbarItemComponent_mat_list_item_1_mat_checkbox_4_Template_mat_checkbox_change_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.action.handler()); });
3509
3497
  i0.ɵɵpipe(1, "async");
3510
3498
  i0.ɵɵtext(2);
3511
3499
  i0.ɵɵpipe(3, "translate");
@@ -3675,15 +3663,10 @@ ActionbarItemComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Acti
3675
3663
  i0.ɵɵproperty("ngIf", !ctx.action.checkbox);
3676
3664
  i0.ɵɵadvance(1);
3677
3665
  i0.ɵɵproperty("ngIf", ctx.action.checkbox);
3678
- } }, directives: [i1$1.NgIf, i1$6.MatListItem, i6.MatTooltip, i1$1.NgClass, i4$1.MatButton, i1$6.MatListAvatarCssMatStyler, i5$1.MatIcon, i3.MatLine, i7.MatCheckbox], pipes: [i6$1.TranslatePipe, i1$1.AsyncPipe], styles: ["mat-list-item.igo-actionbar-item-disabled[_ngcontent-%COMP%]{color:#00000042;cursor:default!important}mat-list-item.igo-actionbar-item-no-display[_ngcontent-%COMP%]{display:none}mat-checkbox[_ngcontent-%COMP%]{padding:12px}.item-checkbox[_ngcontent-%COMP%]{height:56px}.item-checkbox[_ngcontent-%COMP%] .mat-checkbox-label{margin-left:20px}"], changeDetection: 0 });
3666
+ } }, dependencies: [i1.NgClass, i1.NgIf, i2$2.MatButton, i3$2.MatIcon, i6$1.MatTooltip, i2$3.MatListItem, i2$3.MatListAvatarCssMatStyler, i3$1.MatLine, i10.MatCheckbox, i1.AsyncPipe, i6$2.TranslatePipe], styles: ["mat-list-item.igo-actionbar-item-disabled[_ngcontent-%COMP%]{color:#00000042;cursor:default!important}mat-list-item.igo-actionbar-item-no-display[_ngcontent-%COMP%]{display:none}mat-checkbox[_ngcontent-%COMP%]{padding:12px}.item-checkbox[_ngcontent-%COMP%]{height:56px}.item-checkbox[_ngcontent-%COMP%] .mat-checkbox-label{margin-left:20px}"], changeDetection: 0 });
3679
3667
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ActionbarItemComponent, [{
3680
3668
  type: Component,
3681
- args: [{
3682
- selector: 'igo-actionbar-item',
3683
- templateUrl: './actionbar-item.component.html',
3684
- styleUrls: ['./actionbar-item.component.scss'],
3685
- changeDetection: ChangeDetectionStrategy.OnPush
3686
- }]
3669
+ args: [{ selector: 'igo-actionbar-item', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-list-item *ngIf=\"!action.checkbox\"\r\n matTooltipClass=\"actionbarItemTooltip\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\r\n [ngClass]=\"ngClass$ | async\"\r\n (click)=\"onClick()\">\r\n <button *ngIf=\"withIcon\"\r\n mat-list-avatar\r\n mat-icon-button\r\n [color]=\"color\"\r\n [disabled]=\"disabled$ | async\">\r\n <mat-icon *ngIf=\"withIcon\" svgIcon=\"{{icon$ | async}}\"></mat-icon>\r\n </button>\r\n <h4 *ngIf=\"withTitle\" matLine>{{title | translate}}</h4>\r\n</mat-list-item>\r\n\r\n<mat-list-item class=\"item-checkbox\" *ngIf=\"action.checkbox\"\r\n matTooltipClass=\"actionbarItemTooltip\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\r\n [ngClass]=\"ngClass$ | async\">\r\n <mat-checkbox *ngIf=\"withTitle\"\r\n (change)=\"action.handler()\"\r\n [checked]=\"checkCondition$ | async\">\r\n {{title | translate}}\r\n </mat-checkbox>\r\n</mat-list-item>\r\n", styles: ["mat-list-item.igo-actionbar-item-disabled{color:#00000042;cursor:default!important}mat-list-item.igo-actionbar-item-no-display{display:none}mat-checkbox{padding:12px}.item-checkbox{height:56px}.item-checkbox ::ng-deep .mat-checkbox-label{margin-left:20px}\n"] }]
3687
3670
  }], function () { return []; }, { action: [{
3688
3671
  type: Input
3689
3672
  }], color: [{
@@ -3704,13 +3687,11 @@ ActionbarItemComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Acti
3704
3687
 
3705
3688
  function ActionbarComponent_mat_list_0_div_1_Template(rf, ctx) { if (rf & 1) {
3706
3689
  const _r8 = i0.ɵɵgetCurrentView();
3707
- i0.ɵɵelementStart(0, "div", 5);
3708
- i0.ɵɵelementStart(1, "button", 6);
3709
- i0.ɵɵlistener("click", function ActionbarComponent_mat_list_0_div_1_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(2); return ctx_r7.scrollUp(); });
3690
+ i0.ɵɵelementStart(0, "div", 5)(1, "button", 6);
3691
+ i0.ɵɵlistener("click", function ActionbarComponent_mat_list_0_div_1_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r7.scrollUp()); });
3710
3692
  i0.ɵɵpipe(2, "translate");
3711
3693
  i0.ɵɵelement(3, "mat-icon", 7);
3712
- i0.ɵɵelementEnd();
3713
- i0.ɵɵelementEnd();
3694
+ i0.ɵɵelementEnd()();
3714
3695
  } if (rf & 2) {
3715
3696
  i0.ɵɵadvance(1);
3716
3697
  i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1, "igo.common.actionbar.scrollUp"));
@@ -3718,7 +3699,7 @@ function ActionbarComponent_mat_list_0_div_1_Template(rf, ctx) { if (rf & 1) {
3718
3699
  function ActionbarComponent_mat_list_0_igo_actionbar_item_2_Template(rf, ctx) { if (rf & 1) {
3719
3700
  const _r10 = i0.ɵɵgetCurrentView();
3720
3701
  i0.ɵɵelementStart(0, "igo-actionbar-item", 8);
3721
- i0.ɵɵlistener("trigger", function ActionbarComponent_mat_list_0_igo_actionbar_item_2_Template_igo_actionbar_item_trigger_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(2); return ctx_r9.onTriggerAction(ctx_r9.toggleCollapseAction); });
3702
+ i0.ɵɵlistener("trigger", function ActionbarComponent_mat_list_0_igo_actionbar_item_2_Template_igo_actionbar_item_trigger_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r9.onTriggerAction(ctx_r9.toggleCollapseAction)); });
3722
3703
  i0.ɵɵelementEnd();
3723
3704
  } if (rf & 2) {
3724
3705
  const ctx_r4 = i0.ɵɵnextContext(2);
@@ -3727,7 +3708,7 @@ function ActionbarComponent_mat_list_0_igo_actionbar_item_2_Template(rf, ctx) {
3727
3708
  function ActionbarComponent_mat_list_0_3_ng_template_0_Template(rf, ctx) { if (rf & 1) {
3728
3709
  const _r15 = i0.ɵɵgetCurrentView();
3729
3710
  i0.ɵɵelementStart(0, "igo-actionbar-item", 11);
3730
- i0.ɵɵlistener("trigger", function ActionbarComponent_mat_list_0_3_ng_template_0_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r15); const action_r13 = restoredCtx.$implicit; const ctx_r14 = i0.ɵɵnextContext(3); return ctx_r14.onTriggerAction(action_r13); });
3711
+ i0.ɵɵlistener("trigger", function ActionbarComponent_mat_list_0_3_ng_template_0_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r15); const action_r13 = restoredCtx.$implicit; const ctx_r14 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r14.onTriggerAction(action_r13)); });
3731
3712
  i0.ɵɵelementEnd();
3732
3713
  } if (rf & 2) {
3733
3714
  const action_r13 = ctx.$implicit;
@@ -3743,13 +3724,11 @@ function ActionbarComponent_mat_list_0_3_Template(rf, ctx) { if (rf & 1) {
3743
3724
  } }
3744
3725
  function ActionbarComponent_mat_list_0_div_4_Template(rf, ctx) { if (rf & 1) {
3745
3726
  const _r17 = i0.ɵɵgetCurrentView();
3746
- i0.ɵɵelementStart(0, "div", 12);
3747
- i0.ɵɵelementStart(1, "button", 6);
3748
- i0.ɵɵlistener("click", function ActionbarComponent_mat_list_0_div_4_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r17); const ctx_r16 = i0.ɵɵnextContext(2); return ctx_r16.scrollDown(); });
3727
+ i0.ɵɵelementStart(0, "div", 12)(1, "button", 6);
3728
+ i0.ɵɵlistener("click", function ActionbarComponent_mat_list_0_div_4_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r17); const ctx_r16 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r16.scrollDown()); });
3749
3729
  i0.ɵɵpipe(2, "translate");
3750
3730
  i0.ɵɵelement(3, "mat-icon", 13);
3751
- i0.ɵɵelementEnd();
3752
- i0.ɵɵelementEnd();
3731
+ i0.ɵɵelementEnd()();
3753
3732
  } if (rf & 2) {
3754
3733
  i0.ɵɵadvance(1);
3755
3734
  i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1, "igo.common.actionbar.scrollDown"));
@@ -3758,7 +3737,7 @@ function ActionbarComponent_mat_list_0_Template(rf, ctx) { if (rf & 1) {
3758
3737
  i0.ɵɵelementStart(0, "mat-list");
3759
3738
  i0.ɵɵtemplate(1, ActionbarComponent_mat_list_0_div_1_Template, 4, 3, "div", 2);
3760
3739
  i0.ɵɵtemplate(2, ActionbarComponent_mat_list_0_igo_actionbar_item_2_Template, 1, 5, "igo-actionbar-item", 3);
3761
- i0.ɵɵtemplate(3, ActionbarComponent_mat_list_0_3_Template, 3, 3, undefined, 0);
3740
+ i0.ɵɵtemplate(3, ActionbarComponent_mat_list_0_3_Template, 3, 3, null, 0);
3762
3741
  i0.ɵɵtemplate(4, ActionbarComponent_mat_list_0_div_4_Template, 4, 3, "div", 4);
3763
3742
  i0.ɵɵelementEnd();
3764
3743
  } if (rf & 2) {
@@ -3775,7 +3754,7 @@ function ActionbarComponent_mat_list_0_Template(rf, ctx) { if (rf & 1) {
3775
3754
  function ActionbarComponent_div_1_ng_template_7_Template(rf, ctx) { if (rf & 1) {
3776
3755
  const _r22 = i0.ɵɵgetCurrentView();
3777
3756
  i0.ɵɵelementStart(0, "igo-actionbar-item", 18);
3778
- i0.ɵɵlistener("trigger", function ActionbarComponent_div_1_ng_template_7_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r22); const action_r20 = restoredCtx.$implicit; const ctx_r21 = i0.ɵɵnextContext(2); return ctx_r21.onTriggerAction(action_r20); });
3757
+ i0.ɵɵlistener("trigger", function ActionbarComponent_div_1_ng_template_7_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r22); const action_r20 = restoredCtx.$implicit; const ctx_r21 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r21.onTriggerAction(action_r20)); });
3779
3758
  i0.ɵɵelementEnd();
3780
3759
  } if (rf & 2) {
3781
3760
  const action_r20 = ctx.$implicit;
@@ -3783,18 +3762,14 @@ function ActionbarComponent_div_1_ng_template_7_Template(rf, ctx) { if (rf & 1)
3783
3762
  i0.ɵɵproperty("withTitle", ctx_r19.withTitle)("withIcon", ctx_r19.withIcon)("color", ctx_r19.color)("action", action_r20);
3784
3763
  } }
3785
3764
  function ActionbarComponent_div_1_Template(rf, ctx) { if (rf & 1) {
3786
- i0.ɵɵelementStart(0, "div");
3787
- i0.ɵɵelementStart(1, "button", 14);
3765
+ i0.ɵɵelementStart(0, "div")(1, "button", 14);
3788
3766
  i0.ɵɵpipe(2, "translate");
3789
3767
  i0.ɵɵelement(3, "mat-icon", 15);
3790
3768
  i0.ɵɵelementEnd();
3791
- i0.ɵɵelementStart(4, "mat-menu", 16, 17);
3792
- i0.ɵɵelementStart(6, "mat-list");
3769
+ i0.ɵɵelementStart(4, "mat-menu", 16, 17)(6, "mat-list");
3793
3770
  i0.ɵɵtemplate(7, ActionbarComponent_div_1_ng_template_7_Template, 1, 4, "ng-template", 9);
3794
3771
  i0.ɵɵpipe(8, "async");
3795
- i0.ɵɵelementEnd();
3796
- i0.ɵɵelementEnd();
3797
- i0.ɵɵelementEnd();
3772
+ i0.ɵɵelementEnd()()();
3798
3773
  } if (rf & 2) {
3799
3774
  const _r18 = i0.ɵɵreference(5);
3800
3775
  const ctx_r1 = i0.ɵɵnextContext();
@@ -3811,7 +3786,7 @@ function ActionbarComponent_div_1_Template(rf, ctx) { if (rf & 1) {
3811
3786
  function ActionbarComponent_mat_card_2_ng_template_2_Template(rf, ctx) { if (rf & 1) {
3812
3787
  const _r26 = i0.ɵɵgetCurrentView();
3813
3788
  i0.ɵɵelementStart(0, "igo-actionbar-item", 18);
3814
- i0.ɵɵlistener("trigger", function ActionbarComponent_mat_card_2_ng_template_2_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r26); const action_r24 = restoredCtx.$implicit; const ctx_r25 = i0.ɵɵnextContext(2); return ctx_r25.onTriggerAction(action_r24); });
3789
+ i0.ɵɵlistener("trigger", function ActionbarComponent_mat_card_2_ng_template_2_Template_igo_actionbar_item_trigger_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r26); const action_r24 = restoredCtx.$implicit; const ctx_r25 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r25.onTriggerAction(action_r24)); });
3815
3790
  i0.ɵɵelementEnd();
3816
3791
  i0.ɵɵelement(1, "br");
3817
3792
  } if (rf & 2) {
@@ -3820,12 +3795,10 @@ function ActionbarComponent_mat_card_2_ng_template_2_Template(rf, ctx) { if (rf
3820
3795
  i0.ɵɵproperty("withTitle", ctx_r23.withTitle)("withIcon", ctx_r23.withIcon)("color", ctx_r23.color)("action", action_r24);
3821
3796
  } }
3822
3797
  function ActionbarComponent_mat_card_2_Template(rf, ctx) { if (rf & 1) {
3823
- i0.ɵɵelementStart(0, "mat-card", 19);
3824
- i0.ɵɵelementStart(1, "mat-list");
3798
+ i0.ɵɵelementStart(0, "mat-card", 19)(1, "mat-list");
3825
3799
  i0.ɵɵtemplate(2, ActionbarComponent_mat_card_2_ng_template_2_Template, 2, 4, "ng-template", 9);
3826
3800
  i0.ɵɵpipe(3, "async");
3827
- i0.ɵɵelementEnd();
3828
- i0.ɵɵelementEnd();
3801
+ i0.ɵɵelementEnd()();
3829
3802
  } if (rf & 2) {
3830
3803
  const ctx_r2 = i0.ɵɵnextContext();
3831
3804
  i0.ɵɵadvance(2);
@@ -4009,7 +3982,7 @@ class ActionbarComponent {
4009
3982
  this.elRef.nativeElement.scrollBy(0, -52);
4010
3983
  }
4011
3984
  }
4012
- ActionbarComponent.ɵfac = function ActionbarComponent_Factory(t) { return new (t || ActionbarComponent)(i0.ɵɵdirectiveInject(i1$7.Overlay), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$2.MediaService)); };
3985
+ ActionbarComponent.ɵfac = function ActionbarComponent_Factory(t) { return new (t || ActionbarComponent)(i0.ɵɵdirectiveInject(i1$5.Overlay), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$1.MediaService)); };
4013
3986
  ActionbarComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ActionbarComponent, selectors: [["igo-actionbar"]], hostVars: 6, hostBindings: function ActionbarComponent_HostBindings(rf, ctx) { if (rf & 2) {
4014
3987
  i0.ɵɵclassProp("with-title", ctx.withTitleClass)("with-icon", ctx.withIconClass)("horizontal", ctx.horizontalClass);
4015
3988
  } }, inputs: { store: "store", mode: "mode", withToggleButton: "withToggleButton", horizontal: "horizontal", color: "color", iconColor: "iconColor", withTitle: "withTitle", withTooltip: "withTooltip", scrollActive: "scrollActive", withIcon: "withIcon", icon: "icon", xPosition: "xPosition", yPosition: "yPosition", overlayClass: "overlayClass" }, features: [i0.ɵɵNgOnChangesFeature], decls: 3, vars: 3, consts: [[4, "ngIf"], ["class", "context-menu-card mat-elevation-z4", 4, "ngIf"], ["id", "topChevron", 4, "ngIf"], ["color", "accent", 3, "withTitle", "withIcon", "color", "disabled", "action", "trigger", 4, "ngIf"], ["id", "lowChevron", 4, "ngIf"], ["id", "topChevron"], ["mat-icon-button", "", "tooltip-position", "below", "matTooltipShowDelay", "500", 3, "matTooltip", "click"], ["svgIcon", "chevron-up"], ["color", "accent", 3, "withTitle", "withIcon", "color", "disabled", "action", "trigger"], ["ngFor", "", 3, "ngForOf"], ["buttonContent", ""], ["color", "accent", 3, "withTitle", "withIcon", "withTooltip", "color", "disabled", "action", "trigger"], ["id", "lowChevron"], ["svgIcon", "chevron-down"], ["mat-icon-button", "", "tooltip-position", "below", "matTooltipShowDelay", "500", 1, "buttonOverlay", 3, "matTooltip", "matMenuTriggerFor", "disabled", "color"], [3, "svgIcon"], ["overlapTrigger", "true", 1, "igo-compact-menu", "igo-no-min-width-menu", 3, "xPosition", "yPosition"], ["actionbarMenu", "matMenu"], ["color", "accent", 3, "withTitle", "withIcon", "color", "action", "trigger"], [1, "context-menu-card", "mat-elevation-z4"]], template: function ActionbarComponent_Template(rf, ctx) { if (rf & 1) {
@@ -4022,16 +3995,11 @@ ActionbarComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Actionba
4022
3995
  i0.ɵɵproperty("ngIf", ctx.mode === ctx.actionbarMode.Overlay);
4023
3996
  i0.ɵɵadvance(1);
4024
3997
  i0.ɵɵproperty("ngIf", ctx.mode === ctx.actionbarMode.Context);
4025
- } }, directives: [i1$1.NgIf, i1$6.MatList, i4$1.MatButton, i6.MatTooltip, i5$1.MatIcon, ActionbarItemComponent, i1$1.NgForOf, i9$1.MatMenuTrigger, i9$1.MatMenu, i10$1.MatCard], pipes: [i6$1.TranslatePipe, i1$1.AsyncPipe], styles: ["[_nghost-%COMP%]{display:block;height:100%;overflow:auto;position:relative}button[_ngcontent-%COMP%]{margin:4px}.buttonOverlay[_ngcontent-%COMP%]{margin:0}mat-list[_ngcontent-%COMP%]{padding-top:0}.horizontal[_nghost-%COMP%]{max-width:100%;overflow:unset}.horizontal[_nghost-%COMP%] mat-list[_ngcontent-%COMP%]{width:auto;white-space:nowrap}.horizontal[_nghost-%COMP%] igo-actionbar-item[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar{height:46px}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content>mat-icon{padding:8px}igo-actionbar-item[_ngcontent-%COMP%] mat-list-item [mat-list-avatar]{height:auto;width:40px}igo-actionbar-item[_ngcontent-%COMP%] mat-list-item:hover{cursor:pointer}.context-menu-card[_ngcontent-%COMP%]{padding:8px 3px;margin:10px}#topChevron[_ngcontent-%COMP%]{position:sticky;top:0;background-color:#fff;z-index:3}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){#topChevron[_ngcontent-%COMP%]{position:fixed;top:unset}}@supports (-ms-accelerator: true){#topChevron[_ngcontent-%COMP%]{position:fixed;top:unset}}#lowChevron[_ngcontent-%COMP%]{position:fixed;position:sticky;bottom:0;background-color:#fff;z-index:3}"], changeDetection: 0 });
3998
+ } }, dependencies: [i1.NgForOf, i1.NgIf, i2$2.MatButton, i3$2.MatIcon, i6$1.MatTooltip, i7$1.MatMenu, i7$1.MatMenuTrigger, i2$3.MatList, i9.MatCard, ActionbarItemComponent, i1.AsyncPipe, i6$2.TranslatePipe], styles: ["[_nghost-%COMP%]{display:block;height:100%;overflow:auto;position:relative}button[_ngcontent-%COMP%]{margin:4px}.buttonOverlay[_ngcontent-%COMP%]{margin:0}mat-list[_ngcontent-%COMP%]{padding-top:0}.horizontal[_nghost-%COMP%]{max-width:100%;overflow:visible;overflow:initial}.horizontal[_nghost-%COMP%] mat-list[_ngcontent-%COMP%]{width:auto;white-space:nowrap}.horizontal[_nghost-%COMP%] igo-actionbar-item[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar{height:46px}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}[_nghost-%COMP%] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content>mat-icon{padding:8px}igo-actionbar-item[_ngcontent-%COMP%] mat-list-item [mat-list-avatar]{height:auto;width:40px}igo-actionbar-item[_ngcontent-%COMP%] mat-list-item:hover{cursor:pointer}.context-menu-card[_ngcontent-%COMP%]{padding:8px 3px;margin:10px}#topChevron[_ngcontent-%COMP%]{position:-webkit-sticky;position:sticky;top:0;background-color:#fff;z-index:3}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){#topChevron[_ngcontent-%COMP%]{position:fixed;top:auto;top:initial}}@supports (-ms-accelerator: true){#topChevron[_ngcontent-%COMP%]{position:fixed;top:auto;top:initial}}#lowChevron[_ngcontent-%COMP%]{position:fixed;position:-webkit-sticky;position:sticky;bottom:0;background-color:#fff;z-index:3}"], changeDetection: 0 });
4026
3999
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ActionbarComponent, [{
4027
4000
  type: Component,
4028
- args: [{
4029
- selector: 'igo-actionbar',
4030
- templateUrl: './actionbar.component.html',
4031
- styleUrls: ['./actionbar.component.scss'],
4032
- changeDetection: ChangeDetectionStrategy.OnPush
4033
- }]
4034
- }], function () { return [{ type: i1$7.Overlay }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$2.MediaService }]; }, { store: [{
4001
+ args: [{ selector: 'igo-actionbar', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-list *ngIf=\"mode === actionbarMode.Dock\">\r\n\r\n <div *ngIf=\"heightCondition && positionConditionTop && isDesktop\"\r\n id=\"topChevron\">\r\n <button\r\n mat-icon-button\r\n tooltip-position=\"below\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"'igo.common.actionbar.scrollUp' | translate\"\r\n (click)=\"scrollUp()\">\r\n <mat-icon svgIcon=\"chevron-up\"></mat-icon>\r\n </button>\r\n </div>\r\n\r\n <igo-actionbar-item\r\n *ngIf=\"withToggleButton\"\r\n color=\"accent\"\r\n [withTitle]=\"false\"\r\n [withIcon]=\"true\"\r\n [color]=\"color\"\r\n [disabled]=\"store.view.empty\"\r\n [action]=\"toggleCollapseAction\"\r\n (trigger)=\"onTriggerAction(toggleCollapseAction)\">\r\n </igo-actionbar-item>\r\n\r\n <ng-template #buttonContent *ngIf=\"!collapsed\" ngFor let-action [ngForOf]=\"store.view.all$() | async\">\r\n <igo-actionbar-item\r\n color=\"accent\"\r\n [withTitle]=\"withTitle\"\r\n [withIcon]=\"withIcon\"\r\n [withTooltip]=\"withTooltip\"\r\n [color]=\"color\"\r\n [disabled]=\"store.state.get(action).disabled\"\r\n [action]=\"action\"\r\n (trigger)=\"onTriggerAction(action)\">\r\n </igo-actionbar-item>\r\n </ng-template>\r\n\r\n <div *ngIf=\"heightCondition && positionConditionLow && isDesktop\"\r\n id=\"lowChevron\">\r\n <button\r\n mat-icon-button\r\n tooltip-position=\"below\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"'igo.common.actionbar.scrollDown' | translate\"\r\n (click)=\"scrollDown()\">\r\n <mat-icon svgIcon=\"chevron-down\"></mat-icon>\r\n </button>\r\n </div>\r\n\r\n</mat-list>\r\n\r\n<div *ngIf=\"mode === actionbarMode.Overlay\">\r\n <button class=\"buttonOverlay\"\r\n mat-icon-button\r\n tooltip-position=\"below\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"'igo.common.actionbar.icon' | translate\"\r\n [matMenuTriggerFor]=\"actionbarMenu\"\r\n [disabled]=\"store.view.empty\"\r\n [color]=\"iconColor\">\r\n <mat-icon [svgIcon]=\"icon\"></mat-icon>\r\n </button>\r\n\r\n <mat-menu\r\n #actionbarMenu=\"matMenu\"\r\n class=\"igo-compact-menu igo-no-min-width-menu\"\r\n overlapTrigger=\"true\"\r\n [xPosition]=\"xPosition\"\r\n [yPosition]=\"yPosition\"\r\n [class]=\"overlayClass\">\r\n\r\n <mat-list>\r\n <ng-template ngFor let-action [ngForOf]=\"store.view.all$() | async\">\r\n <igo-actionbar-item\r\n color=\"accent\"\r\n [withTitle]=\"withTitle\"\r\n [withIcon]=\"withIcon\"\r\n [color]=\"color\"\r\n [action]=\"action\"\r\n (trigger)=\"onTriggerAction(action)\">\r\n </igo-actionbar-item>\r\n </ng-template>\r\n </mat-list>\r\n </mat-menu>\r\n</div>\r\n<mat-card *ngIf=\"mode === actionbarMode.Context\" class=\"context-menu-card mat-elevation-z4\">\r\n <mat-list>\r\n <ng-template ngFor let-action [ngForOf]=\"store.view.all$() | async\">\r\n <igo-actionbar-item\r\n color=\"accent\"\r\n [withTitle]=\"withTitle\"\r\n [withIcon]=\"withIcon\"\r\n [color]=\"color\"\r\n [action]=\"action\"\r\n (trigger)=\"onTriggerAction(action)\">\r\n </igo-actionbar-item>\r\n <br/>\r\n </ng-template>\r\n </mat-list>\r\n</mat-card>\r\n", styles: [":host{display:block;height:100%;overflow:auto;position:relative}button{margin:4px}.buttonOverlay{margin:0}mat-list{padding-top:0}:host.horizontal{max-width:100%;overflow:visible;overflow:initial}:host.horizontal mat-list{width:auto;white-space:nowrap}:host.horizontal igo-actionbar-item{display:inline-block}:host ::ng-deep .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}:host ::ng-deep .mat-list-base .mat-list-item.mat-list-item-with-avatar{height:46px}:host ::ng-deep .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}:host ::ng-deep .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content>mat-icon{padding:8px}igo-actionbar-item ::ng-deep mat-list-item [mat-list-avatar]{height:auto;width:40px}igo-actionbar-item ::ng-deep mat-list-item:hover{cursor:pointer}.context-menu-card{padding:8px 3px;margin:10px}#topChevron{position:-webkit-sticky;position:sticky;top:0;background-color:#fff;z-index:3}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){#topChevron{position:fixed;top:auto;top:initial}}@supports (-ms-accelerator: true){#topChevron{position:fixed;top:auto;top:initial}}#lowChevron{position:fixed;position:-webkit-sticky;position:sticky;bottom:0;background-color:#fff;z-index:3}\n"] }]
4002
+ }], function () { return [{ type: i1$5.Overlay }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$1.MediaService }]; }, { store: [{
4035
4003
  type: Input
4036
4004
  }], mode: [{
4037
4005
  type: Input
@@ -4077,17 +4045,15 @@ class IgoActionbarModule {
4077
4045
  }
4078
4046
  IgoActionbarModule.ɵfac = function IgoActionbarModule_Factory(t) { return new (t || IgoActionbarModule)(); };
4079
4047
  IgoActionbarModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoActionbarModule });
4080
- IgoActionbarModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
4081
- CommonModule,
4082
- IgoLanguageModule,
4083
- MatButtonModule,
4084
- MatIconModule,
4085
- MatTooltipModule,
4086
- MatMenuModule,
4087
- MatListModule,
4088
- MatCardModule,
4089
- MatCheckboxModule
4090
- ]] });
4048
+ IgoActionbarModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
4049
+ IgoLanguageModule,
4050
+ MatButtonModule,
4051
+ MatIconModule,
4052
+ MatTooltipModule,
4053
+ MatMenuModule,
4054
+ MatListModule,
4055
+ MatCardModule,
4056
+ MatCheckboxModule] });
4091
4057
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoActionbarModule, [{
4092
4058
  type: NgModule,
4093
4059
  args: [{
@@ -4120,10 +4086,8 @@ class IgoActionModule {
4120
4086
  }
4121
4087
  IgoActionModule.ɵfac = function IgoActionModule_Factory(t) { return new (t || IgoActionModule)(); };
4122
4088
  IgoActionModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoActionModule });
4123
- IgoActionModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [], imports: [[
4124
- CommonModule,
4125
- IgoActionbarModule
4126
- ], IgoActionbarModule] });
4089
+ IgoActionModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
4090
+ IgoActionbarModule, IgoActionbarModule] });
4127
4091
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoActionModule, [{
4128
4092
  type: NgModule,
4129
4093
  args: [{
@@ -4156,14 +4120,10 @@ BackdropComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BackdropC
4156
4120
  i0.ɵɵelement(0, "div", 0);
4157
4121
  } if (rf & 2) {
4158
4122
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(1, _c0$b, ctx.shown));
4159
- } }, directives: [i1$1.NgClass], styles: ["[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0;background-color:#64646480;z-index:2;display:none}[_nghost-%COMP%] > div.igo-backdrop-shown[_ngcontent-%COMP%]{display:block}"] });
4123
+ } }, dependencies: [i1.NgClass], styles: ["[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0;background-color:#64646480;z-index:2;display:none}[_nghost-%COMP%] > div.igo-backdrop-shown[_ngcontent-%COMP%]{display:block}"] });
4160
4124
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BackdropComponent, [{
4161
4125
  type: Component,
4162
- args: [{
4163
- selector: 'igo-backdrop',
4164
- templateUrl: './backdrop.component.html',
4165
- styleUrls: ['./backdrop.component.scss']
4166
- }]
4126
+ args: [{ selector: 'igo-backdrop', template: "<div [ngClass]=\"{'igo-backdrop-shown': shown}\"></div>\r\n", styles: [":host>div{position:absolute;top:0;bottom:0;left:0;right:0;background-color:#64646480;z-index:2;display:none}:host>div.igo-backdrop-shown{display:block}\n"] }]
4167
4127
  }], function () { return []; }, { shown: [{
4168
4128
  type: Input
4169
4129
  }] }); })();
@@ -4178,7 +4138,7 @@ class IgoBackdropModule {
4178
4138
  }
4179
4139
  IgoBackdropModule.ɵfac = function IgoBackdropModule_Factory(t) { return new (t || IgoBackdropModule)(); };
4180
4140
  IgoBackdropModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoBackdropModule });
4181
- IgoBackdropModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
4141
+ IgoBackdropModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule] });
4182
4142
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoBackdropModule, [{
4183
4143
  type: NgModule,
4184
4144
  args: [{
@@ -4292,14 +4252,14 @@ class IgoBadgeIconDirective {
4292
4252
  }
4293
4253
  }
4294
4254
  }
4295
- IgoBadgeIconDirective.ɵfac = function IgoBadgeIconDirective_Factory(t) { return new (t || IgoBadgeIconDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i5$1.MatIconRegistry)); };
4255
+ IgoBadgeIconDirective.ɵfac = function IgoBadgeIconDirective_Factory(t) { return new (t || IgoBadgeIconDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i3$2.MatIconRegistry)); };
4296
4256
  IgoBadgeIconDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: IgoBadgeIconDirective, selectors: [["", "igoMatBadgeIcon", ""]], inputs: { igoMatBadgeIcon: "igoMatBadgeIcon", matBadgeHidden: "matBadgeHidden", matBadgeDisabled: "matBadgeDisabled", igoMatBadgeInverseColor: "igoMatBadgeInverseColor", igoMatBadgeInheritColor: "igoMatBadgeInheritColor" } });
4297
4257
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoBadgeIconDirective, [{
4298
4258
  type: Directive,
4299
4259
  args: [{
4300
4260
  selector: '[igoMatBadgeIcon]'
4301
4261
  }]
4302
- }], function () { return [{ type: i0.ElementRef }, { type: i5$1.MatIconRegistry }]; }, { igoMatBadgeIcon: [{
4262
+ }], function () { return [{ type: i0.ElementRef }, { type: i3$2.MatIconRegistry }]; }, { igoMatBadgeIcon: [{
4303
4263
  type: Input
4304
4264
  }], matBadgeHidden: [{
4305
4265
  type: Input
@@ -4321,7 +4281,7 @@ class IgoMatBadgeIconModule {
4321
4281
  }
4322
4282
  IgoMatBadgeIconModule.ɵfac = function IgoMatBadgeIconModule_Factory(t) { return new (t || IgoMatBadgeIconModule)(); };
4323
4283
  IgoMatBadgeIconModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoMatBadgeIconModule });
4324
- IgoMatBadgeIconModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[MatBadgeModule, MatIconModule], MatBadgeModule] });
4284
+ IgoMatBadgeIconModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatBadgeModule, MatIconModule, MatBadgeModule] });
4325
4285
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoMatBadgeIconModule, [{
4326
4286
  type: NgModule,
4327
4287
  args: [{
@@ -4372,7 +4332,7 @@ class IgoClickoutModule {
4372
4332
  }
4373
4333
  IgoClickoutModule.ɵfac = function IgoClickoutModule_Factory(t) { return new (t || IgoClickoutModule)(); };
4374
4334
  IgoClickoutModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoClickoutModule });
4375
- IgoClickoutModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
4335
+ IgoClickoutModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
4376
4336
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoClickoutModule, [{
4377
4337
  type: NgModule,
4378
4338
  args: [{
@@ -4415,7 +4375,7 @@ class IgoCloneModule {
4415
4375
  }
4416
4376
  IgoCloneModule.ɵfac = function IgoCloneModule_Factory(t) { return new (t || IgoCloneModule)(); };
4417
4377
  IgoCloneModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoCloneModule });
4418
- IgoCloneModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
4378
+ IgoCloneModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
4419
4379
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoCloneModule, [{
4420
4380
  type: NgModule,
4421
4381
  args: [{
@@ -4503,14 +4463,12 @@ class CollapsibleComponent {
4503
4463
  CollapsibleComponent.ɵfac = function CollapsibleComponent_Factory(t) { return new (t || CollapsibleComponent)(); };
4504
4464
  CollapsibleComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CollapsibleComponent, selectors: [["igo-collapsible"]], inputs: { title: "title", collapsed: "collapsed" }, outputs: { toggle: "toggle" }, ngContentSelectors: _c0$a, decls: 7, vars: 3, consts: [["svgIcon", "chevron-up", "mat-list-avatar", "", "igoCollapse", "", 1, "igo-chevron", 3, "target", "collapsed", "toggle"], ["matLine", ""], ["content", ""]], template: function CollapsibleComponent_Template(rf, ctx) { if (rf & 1) {
4505
4465
  i0.ɵɵprojectionDef();
4506
- i0.ɵɵelementStart(0, "mat-list-item");
4507
- i0.ɵɵelementStart(1, "mat-icon", 0);
4466
+ i0.ɵɵelementStart(0, "mat-list-item")(1, "mat-icon", 0);
4508
4467
  i0.ɵɵlistener("toggle", function CollapsibleComponent_Template_mat_icon_toggle_1_listener($event) { return ctx.collapsed = $event; });
4509
4468
  i0.ɵɵelementEnd();
4510
4469
  i0.ɵɵelementStart(2, "h4", 1);
4511
4470
  i0.ɵɵtext(3);
4512
- i0.ɵɵelementEnd();
4513
- i0.ɵɵelementEnd();
4471
+ i0.ɵɵelementEnd()();
4514
4472
  i0.ɵɵelementStart(4, "div", null, 2);
4515
4473
  i0.ɵɵprojection(6);
4516
4474
  i0.ɵɵelementEnd();
@@ -4520,14 +4478,10 @@ CollapsibleComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Collap
4520
4478
  i0.ɵɵproperty("target", _r0)("collapsed", ctx.collapsed);
4521
4479
  i0.ɵɵadvance(2);
4522
4480
  i0.ɵɵtextInterpolate(ctx.title);
4523
- } }, directives: [i1$6.MatListItem, i5$1.MatIcon, i1$6.MatListAvatarCssMatStyler, CollapseDirective, i3.MatLine], styles: ["[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-avatar{height:auto;width:auto;padding:0}mat-list-item[_ngcontent-%COMP%]{overflow:hidden}"] });
4481
+ } }, dependencies: [i3$2.MatIcon, i2$3.MatListItem, i2$3.MatListAvatarCssMatStyler, i3$1.MatLine, CollapseDirective], styles: ["[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-avatar{height:auto;width:auto;padding:0}mat-list-item[_ngcontent-%COMP%]{overflow:hidden}"] });
4524
4482
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CollapsibleComponent, [{
4525
4483
  type: Component,
4526
- args: [{
4527
- selector: 'igo-collapsible',
4528
- templateUrl: './collapsible.component.html',
4529
- styleUrls: ['./collapsible.component.scss']
4530
- }]
4484
+ args: [{ selector: 'igo-collapsible', template: "<mat-list-item>\r\n <mat-icon\r\n svgIcon=\"chevron-up\" \r\n class=\"igo-chevron\"\r\n mat-list-avatar\r\n igoCollapse\r\n [target]=\"content\"\r\n [collapsed]=\"collapsed\"\r\n (toggle)=\"collapsed = $event\">\r\n </mat-icon>\r\n <h4 matLine>{{title}}</h4>\r\n</mat-list-item>\r\n\r\n<div #content>\r\n <ng-content></ng-content>\r\n</div>\r\n", styles: [":host ::ng-deep .mat-list .mat-list-item.mat-list-avatar{height:auto;width:auto;padding:0}mat-list-item{overflow:hidden}\n"] }]
4531
4485
  }], null, { title: [{
4532
4486
  type: Input
4533
4487
  }], collapsed: [{
@@ -4546,7 +4500,7 @@ class IgoCollapsibleModule {
4546
4500
  }
4547
4501
  IgoCollapsibleModule.ɵfac = function IgoCollapsibleModule_Factory(t) { return new (t || IgoCollapsibleModule)(); };
4548
4502
  IgoCollapsibleModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoCollapsibleModule });
4549
- IgoCollapsibleModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[MatIconModule, MatListModule]] });
4503
+ IgoCollapsibleModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatIconModule, MatListModule] });
4550
4504
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoCollapsibleModule, [{
4551
4505
  type: NgModule,
4552
4506
  args: [{
@@ -4562,7 +4516,7 @@ class ConfirmDialogComponent {
4562
4516
  this.dialogRef = dialogRef;
4563
4517
  }
4564
4518
  }
4565
- ConfirmDialogComponent.ɵfac = function ConfirmDialogComponent_Factory(t) { return new (t || ConfirmDialogComponent)(i0.ɵɵdirectiveInject(i1$8.MatDialogRef)); };
4519
+ ConfirmDialogComponent.ɵfac = function ConfirmDialogComponent_Factory(t) { return new (t || ConfirmDialogComponent)(i0.ɵɵdirectiveInject(i1$6.MatDialogRef)); };
4566
4520
  ConfirmDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConfirmDialogComponent, selectors: [["igo-confirm-dialog"]], decls: 12, vars: 10, consts: [["mat-dialog-title", "", 1, "mat-typography"], ["mat-dialog-content", "", 1, "mat-typography"], ["mat-dialog-actions", ""], ["mat-button", "", "color", "primary", 3, "click"], ["mat-button", "", 3, "click"]], template: function ConfirmDialogComponent_Template(rf, ctx) { if (rf & 1) {
4567
4521
  i0.ɵɵelementStart(0, "h2", 0);
4568
4522
  i0.ɵɵtext(1);
@@ -4571,8 +4525,7 @@ ConfirmDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Conf
4571
4525
  i0.ɵɵelementStart(3, "div", 1);
4572
4526
  i0.ɵɵtext(4);
4573
4527
  i0.ɵɵelementEnd();
4574
- i0.ɵɵelementStart(5, "div", 2);
4575
- i0.ɵɵelementStart(6, "button", 3);
4528
+ i0.ɵɵelementStart(5, "div", 2)(6, "button", 3);
4576
4529
  i0.ɵɵlistener("click", function ConfirmDialogComponent_Template_button_click_6_listener() { return ctx.dialogRef.close(true); });
4577
4530
  i0.ɵɵtext(7);
4578
4531
  i0.ɵɵpipe(8, "translate");
@@ -4581,8 +4534,7 @@ ConfirmDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Conf
4581
4534
  i0.ɵɵlistener("click", function ConfirmDialogComponent_Template_button_click_9_listener() { return ctx.dialogRef.close(false); });
4582
4535
  i0.ɵɵtext(10);
4583
4536
  i0.ɵɵpipe(11, "translate");
4584
- i0.ɵɵelementEnd();
4585
- i0.ɵɵelementEnd();
4537
+ i0.ɵɵelementEnd()();
4586
4538
  } if (rf & 2) {
4587
4539
  i0.ɵɵadvance(1);
4588
4540
  i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 4, "igo.common.confirmDialog.title"));
@@ -4592,15 +4544,11 @@ ConfirmDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Conf
4592
4544
  i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 6, "igo.common.confirmDialog.confirmBtn"));
4593
4545
  i0.ɵɵadvance(3);
4594
4546
  i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 8, "igo.common.confirmDialog.cancelBtn"));
4595
- } }, directives: [i1$8.MatDialogTitle, i1$8.MatDialogContent, i1$8.MatDialogActions, i4$1.MatButton], pipes: [i6$1.TranslatePipe], styles: ["h2[_ngcontent-%COMP%]{margin:5px 0 10px}div[mat-dialog-content][_ngcontent-%COMP%]{max-width:200px}div[mat-dialog-actions][_ngcontent-%COMP%]{margin:10px 0 0}"] });
4547
+ } }, dependencies: [i2$2.MatButton, i1$6.MatDialogTitle, i1$6.MatDialogContent, i1$6.MatDialogActions, i6$2.TranslatePipe], styles: ["h2[_ngcontent-%COMP%]{margin:5px 0 10px}div[mat-dialog-content][_ngcontent-%COMP%]{max-width:200px}div[mat-dialog-actions][_ngcontent-%COMP%]{margin:10px 0 0}"] });
4596
4548
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfirmDialogComponent, [{
4597
4549
  type: Component,
4598
- args: [{
4599
- selector: 'igo-confirm-dialog',
4600
- templateUrl: './confirm-dialog.component.html',
4601
- styleUrls: ['./confirm-dialog.component.scss']
4602
- }]
4603
- }], function () { return [{ type: i1$8.MatDialogRef }]; }, null); })();
4550
+ args: [{ selector: 'igo-confirm-dialog', template: "<h2 mat-dialog-title class=\"mat-typography\">{{'igo.common.confirmDialog.title' |\u00A0translate}}</h2>\r\n<div mat-dialog-content class=\"mat-typography\">{{confirmMessage}}</div>\r\n<div mat-dialog-actions>\r\n <button mat-button color=\"primary\" (click)=\"dialogRef.close(true)\">{{'igo.common.confirmDialog.confirmBtn' | translate}}</button>\r\n <button mat-button (click)=\"dialogRef.close(false)\">{{'igo.common.confirmDialog.cancelBtn' |\u00A0translate}}</button>\r\n</div>\r\n", styles: ["h2{margin:5px 0 10px}div[mat-dialog-content]{max-width:200px}div[mat-dialog-actions]{margin:10px 0 0}\n"] }]
4551
+ }], function () { return [{ type: i1$6.MatDialogRef }]; }, null); })();
4604
4552
 
4605
4553
  class ConfirmDialogService {
4606
4554
  constructor(dialog) {
@@ -4614,11 +4562,11 @@ class ConfirmDialogService {
4614
4562
  return dialogRef.afterClosed();
4615
4563
  }
4616
4564
  }
4617
- ConfirmDialogService.ɵfac = function ConfirmDialogService_Factory(t) { return new (t || ConfirmDialogService)(i0.ɵɵinject(i1$8.MatDialog)); };
4565
+ ConfirmDialogService.ɵfac = function ConfirmDialogService_Factory(t) { return new (t || ConfirmDialogService)(i0.ɵɵinject(i1$6.MatDialog)); };
4618
4566
  ConfirmDialogService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConfirmDialogService, factory: ConfirmDialogService.ɵfac });
4619
4567
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfirmDialogService, [{
4620
4568
  type: Injectable
4621
- }], function () { return [{ type: i1$8.MatDialog }]; }, null); })();
4569
+ }], function () { return [{ type: i1$6.MatDialog }]; }, null); })();
4622
4570
 
4623
4571
  class IgoConfirmDialogModule {
4624
4572
  static forRoot() {
@@ -4630,7 +4578,7 @@ class IgoConfirmDialogModule {
4630
4578
  }
4631
4579
  IgoConfirmDialogModule.ɵfac = function IgoConfirmDialogModule_Factory(t) { return new (t || IgoConfirmDialogModule)(); };
4632
4580
  IgoConfirmDialogModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoConfirmDialogModule });
4633
- IgoConfirmDialogModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [ConfirmDialogService], imports: [[MatButtonModule, MatDialogModule, IgoLanguageModule]] });
4581
+ IgoConfirmDialogModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [ConfirmDialogService], imports: [MatButtonModule, MatDialogModule, IgoLanguageModule] });
4634
4582
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoConfirmDialogModule, [{
4635
4583
  type: NgModule,
4636
4584
  args: [{
@@ -4705,7 +4653,7 @@ class ContextMenuDirective {
4705
4653
  }
4706
4654
  }
4707
4655
  }
4708
- ContextMenuDirective.ɵfac = function ContextMenuDirective_Factory(t) { return new (t || ContextMenuDirective)(i0.ɵɵdirectiveInject(i1$7.Overlay), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4656
+ ContextMenuDirective.ɵfac = function ContextMenuDirective_Factory(t) { return new (t || ContextMenuDirective)(i0.ɵɵdirectiveInject(i1$5.Overlay), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4709
4657
  ContextMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: ContextMenuDirective, selectors: [["", "igoContextMenu", ""]], hostBindings: function ContextMenuDirective_HostBindings(rf, ctx) { if (rf & 1) {
4710
4658
  i0.ɵɵlistener("contextmenu", function ContextMenuDirective_contextmenu_HostBindingHandler($event) { return ctx.onContextMenu($event); });
4711
4659
  } }, inputs: { menuContext: ["igoContextMenu", "menuContext"] }, outputs: { menuPosition: "menuPosition" } });
@@ -4714,7 +4662,7 @@ ContextMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Contex
4714
4662
  args: [{
4715
4663
  selector: '[igoContextMenu]'
4716
4664
  }]
4717
- }], function () { return [{ type: i1$7.Overlay }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }]; }, { menuContext: [{
4665
+ }], function () { return [{ type: i1$5.Overlay }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }]; }, { menuContext: [{
4718
4666
  type: Input,
4719
4667
  args: ['igoContextMenu']
4720
4668
  }], menuPosition: [{
@@ -4734,7 +4682,7 @@ class IgoContextMenuModule {
4734
4682
  }
4735
4683
  IgoContextMenuModule.ɵfac = function IgoContextMenuModule_Factory(t) { return new (t || IgoContextMenuModule)(); };
4736
4684
  IgoContextMenuModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoContextMenuModule });
4737
- IgoContextMenuModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
4685
+ IgoContextMenuModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
4738
4686
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoContextMenuModule, [{
4739
4687
  type: NgModule,
4740
4688
  args: [{
@@ -4762,14 +4710,10 @@ CustomHtmlComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CustomH
4762
4710
  i0.ɵɵpipe(1, "sanitizeHtml");
4763
4711
  } if (rf & 2) {
4764
4712
  i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, ctx.html), i0.ɵɵsanitizeHtml);
4765
- } }, pipes: [SanitizeHtmlPipe], styles: [".custom-html[_ngcontent-%COMP%]{padding:20px}"] });
4713
+ } }, dependencies: [SanitizeHtmlPipe], styles: [".custom-html[_ngcontent-%COMP%]{padding:20px}"] });
4766
4714
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CustomHtmlComponent, [{
4767
4715
  type: Component,
4768
- args: [{
4769
- selector: 'igo-custom-html',
4770
- templateUrl: './custom-html.component.html',
4771
- styleUrls: ['./custom-html.component.scss']
4772
- }]
4716
+ args: [{ selector: 'igo-custom-html', template: "<div class=\"custom-html\" [innerHTML]=\"html | sanitizeHtml\"></div>\r\n", styles: [".custom-html{padding:20px}\n"] }]
4773
4717
  }], function () { return []; }, { html: [{
4774
4718
  type: Input
4775
4719
  }] }); })();
@@ -4783,14 +4727,12 @@ class IgoCustomHtmlModule {
4783
4727
  }
4784
4728
  IgoCustomHtmlModule.ɵfac = function IgoCustomHtmlModule_Factory(t) { return new (t || IgoCustomHtmlModule)(); };
4785
4729
  IgoCustomHtmlModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoCustomHtmlModule });
4786
- IgoCustomHtmlModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
4787
- CommonModule,
4788
- MatIconModule,
4789
- MatTooltipModule,
4790
- MatInputModule,
4791
- MatButtonModule,
4792
- IgoLanguageModule
4793
- ]] });
4730
+ IgoCustomHtmlModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
4731
+ MatIconModule,
4732
+ MatTooltipModule,
4733
+ MatInputModule,
4734
+ MatButtonModule,
4735
+ IgoLanguageModule] });
4794
4736
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoCustomHtmlModule, [{
4795
4737
  type: NgModule,
4796
4738
  args: [{
@@ -4813,6 +4755,51 @@ IgoCustomHtmlModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
4813
4755
  MatButtonModule,
4814
4756
  IgoLanguageModule], exports: [SanitizeHtmlPipe, CustomHtmlComponent] }); })();
4815
4757
 
4758
+ class DOMService {
4759
+ constructor(http) {
4760
+ this.http = http;
4761
+ }
4762
+ async getDom(dom) {
4763
+ const url = dom.url;
4764
+ let result;
4765
+ await this.http.get(url).pipe(map(response => {
4766
+ result = response;
4767
+ return response;
4768
+ }), catchError((err) => {
4769
+ return throwError(err);
4770
+ })).toPromise();
4771
+ return result;
4772
+ }
4773
+ }
4774
+ DOMService.ɵfac = function DOMService_Factory(t) { return new (t || DOMService)(i0.ɵɵinject(i1$3.HttpClient)); };
4775
+ DOMService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: DOMService, factory: DOMService.ɵfac, providedIn: 'root' });
4776
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DOMService, [{
4777
+ type: Injectable,
4778
+ args: [{
4779
+ providedIn: 'root'
4780
+ }]
4781
+ }], function () { return [{ type: i1$3.HttpClient }]; }, null); })();
4782
+
4783
+ class IgoDOMModule {
4784
+ static forRoot() {
4785
+ return {
4786
+ ngModule: IgoDOMModule,
4787
+ providers: [
4788
+ DOMService
4789
+ ]
4790
+ };
4791
+ }
4792
+ }
4793
+ IgoDOMModule.ɵfac = function IgoDOMModule_Factory(t) { return new (t || IgoDOMModule)(); };
4794
+ IgoDOMModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoDOMModule });
4795
+ IgoDOMModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [DOMService] });
4796
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoDOMModule, [{
4797
+ type: NgModule,
4798
+ args: [{
4799
+ providers: [DOMService]
4800
+ }]
4801
+ }], null, null); })();
4802
+
4816
4803
  class DragAndDropDirective {
4817
4804
  constructor() {
4818
4805
  this.allowedExtensions = [];
@@ -4909,7 +4896,7 @@ class IgoDrapDropModule {
4909
4896
  }
4910
4897
  IgoDrapDropModule.ɵfac = function IgoDrapDropModule_Factory(t) { return new (t || IgoDrapDropModule)(); };
4911
4898
  IgoDrapDropModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoDrapDropModule });
4912
- IgoDrapDropModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
4899
+ IgoDrapDropModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
4913
4900
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoDrapDropModule, [{
4914
4901
  type: NgModule,
4915
4902
  args: [{
@@ -5224,12 +5211,7 @@ DynamicOutletComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Dyna
5224
5211
  } }, styles: ["[_nghost-%COMP%]{display:block;width:100%;height:100%}"], changeDetection: 0 });
5225
5212
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DynamicOutletComponent, [{
5226
5213
  type: Component,
5227
- args: [{
5228
- selector: 'igo-dynamic-outlet',
5229
- templateUrl: 'dynamic-outlet.component.html',
5230
- styleUrls: ['dynamic-outlet.component.scss'],
5231
- changeDetection: ChangeDetectionStrategy.OnPush
5232
- }]
5214
+ args: [{ selector: 'igo-dynamic-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template #target></ng-template>\r\n", styles: [":host{display:block;width:100%;height:100%}\n"] }]
5233
5215
  }], function () { return [{ type: DynamicComponentService }, { type: i0.ChangeDetectorRef }]; }, { component: [{
5234
5216
  type: Input
5235
5217
  }], inputs: [{
@@ -5248,9 +5230,7 @@ class IgoDynamicOutletModule {
5248
5230
  }
5249
5231
  IgoDynamicOutletModule.ɵfac = function IgoDynamicOutletModule_Factory(t) { return new (t || IgoDynamicOutletModule)(); };
5250
5232
  IgoDynamicOutletModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoDynamicOutletModule });
5251
- IgoDynamicOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
5252
- CommonModule
5253
- ]] });
5233
+ IgoDynamicOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule] });
5254
5234
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoDynamicOutletModule, [{
5255
5235
  type: NgModule,
5256
5236
  args: [{
@@ -5273,10 +5253,8 @@ IgoDynamicComponentModule.ɵfac = function IgoDynamicComponentModule_Factory(t)
5273
5253
  IgoDynamicComponentModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoDynamicComponentModule });
5274
5254
  IgoDynamicComponentModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
5275
5255
  DynamicComponentService
5276
- ], imports: [[
5277
- CommonModule,
5278
- IgoDynamicOutletModule
5279
- ], IgoDynamicOutletModule] });
5256
+ ], imports: [CommonModule,
5257
+ IgoDynamicOutletModule, IgoDynamicOutletModule] });
5280
5258
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoDynamicComponentModule, [{
5281
5259
  type: NgModule,
5282
5260
  args: [{
@@ -5399,7 +5377,7 @@ class FlexibleComponent {
5399
5377
  }
5400
5378
  }
5401
5379
  FlexibleComponent.transitionTime = 250;
5402
- FlexibleComponent.ɵfac = function FlexibleComponent_Factory(t) { return new (t || FlexibleComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$2.MediaService)); };
5380
+ FlexibleComponent.ɵfac = function FlexibleComponent_Factory(t) { return new (t || FlexibleComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$1.MediaService)); };
5403
5381
  FlexibleComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FlexibleComponent, selectors: [["igo-flexible"]], viewQuery: function FlexibleComponent_Query(rf, ctx) { if (rf & 1) {
5404
5382
  i0.ɵɵviewQuery(_c0$8, 7);
5405
5383
  } if (rf & 2) {
@@ -5407,29 +5385,19 @@ FlexibleComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FlexibleC
5407
5385
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.main = _t.first);
5408
5386
  } }, inputs: { initial: "initial", collapsed: "collapsed", expanded: "expanded", initialMobile: "initialMobile", collapsedMobile: "collapsedMobile", expandedMobile: "expandedMobile", direction: "direction", state: "state" }, ngContentSelectors: _c2$1, decls: 8, vars: 4, consts: [["flexibleMain", ""], [1, "igo-container"], [1, "igo-flexible-fill"]], template: function FlexibleComponent_Template(rf, ctx) { if (rf & 1) {
5409
5387
  i0.ɵɵprojectionDef(_c1$5);
5410
- i0.ɵɵelementStart(0, "div", null, 0);
5411
- i0.ɵɵelementStart(2, "div", 1);
5388
+ i0.ɵɵelementStart(0, "div", null, 0)(2, "div", 1);
5412
5389
  i0.ɵɵprojection(3);
5413
- i0.ɵɵelementEnd();
5414
- i0.ɵɵelementEnd();
5415
- i0.ɵɵelementStart(4, "div", 2);
5416
- i0.ɵɵelementStart(5, "div");
5417
- i0.ɵɵelementStart(6, "div", 1);
5390
+ i0.ɵɵelementEnd()();
5391
+ i0.ɵɵelementStart(4, "div", 2)(5, "div")(6, "div", 1);
5418
5392
  i0.ɵɵprojection(7, 1);
5419
- i0.ɵɵelementEnd();
5420
- i0.ɵɵelementEnd();
5421
- i0.ɵɵelementEnd();
5393
+ i0.ɵɵelementEnd()()();
5422
5394
  } if (rf & 2) {
5423
5395
  i0.ɵɵclassMapInterpolate2("igo-flexible-main ", ctx.state, " ", ctx.direction, "");
5424
- } }, styles: ["[_nghost-%COMP%]{display:flex;height:100%;width:100%}.column[_nghost-%COMP%]{flex-direction:column}.row[_nghost-%COMP%]{flex-direction:row}.igo-flexible-main[_ngcontent-%COMP%]{flex:0 0 auto;overflow:hidden}.igo-flexible-main.column[_ngcontent-%COMP%]{transition:height .25s ease-in}.igo-flexible-main.row[_ngcontent-%COMP%]{transition:width .25s ease-in}.igo-flexible-fill[_ngcontent-%COMP%] > div[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0}.igo-container[_ngcontent-%COMP%]{width:calc(100% - 2 * 5px);height:100%;padding:5px 0;margin:0 5px;overflow:hidden;position:relative} .igo-flexible-fill{flex:1 1 auto;overflow:hidden;position:relative} .igo-content{height:100%;width:100%;overflow:auto} igo-panel{height:100%}"] });
5396
+ } }, styles: ["[_nghost-%COMP%]{display:flex;height:100%;width:100%}.column[_nghost-%COMP%]{flex-direction:column}.row[_nghost-%COMP%]{flex-direction:row}.igo-flexible-main[_ngcontent-%COMP%]{flex:0 0 auto;overflow:hidden}.igo-flexible-main.column[_ngcontent-%COMP%]{transition:height .25s ease-in}.igo-flexible-main.row[_ngcontent-%COMP%]{transition:width .25s ease-in}.igo-flexible-fill[_ngcontent-%COMP%] > div[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0}.igo-container[_ngcontent-%COMP%]{width:calc(100% - 10px);height:100%;padding:5px 0;margin:0 5px;overflow:hidden;position:relative} .igo-flexible-fill{flex:1 1 auto;overflow:hidden;position:relative} .igo-content{height:100%;width:100%;overflow:auto} igo-panel{height:100%}"] });
5425
5397
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FlexibleComponent, [{
5426
5398
  type: Component,
5427
- args: [{
5428
- selector: 'igo-flexible',
5429
- templateUrl: './flexible.component.html',
5430
- styleUrls: ['./flexible.component.scss']
5431
- }]
5432
- }], function () { return [{ type: i0.ElementRef }, { type: i1$2.MediaService }]; }, { main: [{
5399
+ args: [{ selector: 'igo-flexible', template: "<div #flexibleMain class=\"igo-flexible-main {{state}} {{direction}}\">\r\n <div class=\"igo-container\">\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n<div class=\"igo-flexible-fill\">\r\n <div>\r\n \t<div class=\"igo-container\">\r\n <ng-content select=\"[igoFlexibleFill]\"></ng-content>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [":host{display:flex;height:100%;width:100%}:host.column{flex-direction:column}:host.row{flex-direction:row}.igo-flexible-main{flex:0 0 auto;overflow:hidden}.igo-flexible-main.column{transition:height .25s ease-in}.igo-flexible-main.row{transition:width .25s ease-in}.igo-flexible-fill>div{position:absolute;top:0;bottom:0;left:0;right:0}.igo-container{width:calc(100% - 10px);height:100%;padding:5px 0;margin:0 5px;overflow:hidden;position:relative}::ng-deep .igo-flexible-fill{flex:1 1 auto;overflow:hidden;position:relative}::ng-deep .igo-content{height:100%;width:100%;overflow:auto}::ng-deep igo-panel{height:100%}\n"] }]
5400
+ }], function () { return [{ type: i0.ElementRef }, { type: i1$1.MediaService }]; }, { main: [{
5433
5401
  type: ViewChild,
5434
5402
  args: ['flexibleMain', { static: true }]
5435
5403
  }], initial: [{
@@ -5460,7 +5428,7 @@ class IgoFlexibleModule {
5460
5428
  }
5461
5429
  IgoFlexibleModule.ɵfac = function IgoFlexibleModule_Factory(t) { return new (t || IgoFlexibleModule)(); };
5462
5430
  IgoFlexibleModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoFlexibleModule });
5463
- IgoFlexibleModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
5431
+ IgoFlexibleModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
5464
5432
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoFlexibleModule, [{
5465
5433
  type: NgModule,
5466
5434
  args: [{
@@ -5595,28 +5563,20 @@ FormComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormComponent
5595
5563
  i0.ɵɵprojectionDef(_c1$4);
5596
5564
  i0.ɵɵelementStart(0, "form", 0);
5597
5565
  i0.ɵɵlistener("ngSubmit", function FormComponent_Template_form_ngSubmit_0_listener() { return ctx.onSubmit(); });
5598
- i0.ɵɵelementStart(1, "div", 1);
5599
- i0.ɵɵelementStart(2, "div", 2);
5566
+ i0.ɵɵelementStart(1, "div", 1)(2, "div", 2);
5600
5567
  i0.ɵɵprojection(3);
5601
5568
  i0.ɵɵelementEnd();
5602
5569
  i0.ɵɵelementStart(4, "div", 3, 4);
5603
5570
  i0.ɵɵprojection(6, 1);
5604
- i0.ɵɵelementEnd();
5605
- i0.ɵɵelementEnd();
5606
- i0.ɵɵelementEnd();
5571
+ i0.ɵɵelementEnd()()();
5607
5572
  } if (rf & 2) {
5608
5573
  i0.ɵɵproperty("autocomplete", ctx.autocomplete)("formGroup", ctx.form.control);
5609
5574
  i0.ɵɵadvance(1);
5610
5575
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c2, ctx.hasButtons));
5611
- } }, directives: [i1$5.ɵNgNoValidate, i1$5.NgControlStatusGroup, i1$5.FormGroupDirective, i1$1.NgClass], styles: ["[_nghost-%COMP%]{display:block}form[_ngcontent-%COMP%]{width:100%;height:100%}.igo-form-body[_ngcontent-%COMP%], .igo-form-content[_ngcontent-%COMP%]{height:100%}.igo-form-body-with-buttons[_ngcontent-%COMP%] .igo-form-content[_ngcontent-%COMP%]{height:calc(100% - 56px)}.igo-form-content[_ngcontent-%COMP%]{display:flex}"], changeDetection: 0 });
5576
+ } }, dependencies: [i1.NgClass, i1$4.ɵNgNoValidate, i1$4.NgControlStatusGroup, i1$4.FormGroupDirective], styles: ["[_nghost-%COMP%]{display:block}form[_ngcontent-%COMP%]{width:100%;height:100%}.igo-form-body[_ngcontent-%COMP%], .igo-form-content[_ngcontent-%COMP%]{height:100%}.igo-form-body-with-buttons[_ngcontent-%COMP%] .igo-form-content[_ngcontent-%COMP%]{height:calc(100% - 56px)}.igo-form-content[_ngcontent-%COMP%]{display:flex}"], changeDetection: 0 });
5612
5577
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormComponent, [{
5613
5578
  type: Component,
5614
- args: [{
5615
- selector: 'igo-form',
5616
- templateUrl: './form.component.html',
5617
- styleUrls: ['./form.component.scss'],
5618
- changeDetection: ChangeDetectionStrategy.OnPush
5619
- }]
5579
+ args: [{ selector: 'igo-form', changeDetection: ChangeDetectionStrategy.OnPush, template: "\r\n<form\r\n [autocomplete]=\"autocomplete\"\r\n [formGroup]=\"form.control\"\r\n (ngSubmit)=\"onSubmit()\">\r\n <div class=\"igo-form-body\" [ngClass]=\"{'igo-form-body-with-buttons': hasButtons}\">\r\n <div class=\"igo-form-content\">\r\n <ng-content></ng-content>\r\n </div>\r\n <div #buttons class=\"igo-form-buttons\">\r\n <ng-content select=\"[formButtons]\"></ng-content>\r\n </div>\r\n </div>\r\n</form>\r\n", styles: [":host{display:block}form{width:100%;height:100%}.igo-form-body,.igo-form-content{height:100%}.igo-form-body-with-buttons .igo-form-content{height:calc(100% - 56px)}.igo-form-content{display:flex}\n"] }]
5620
5580
  }], function () { return []; }, { form: [{
5621
5581
  type: Input
5622
5582
  }], formData: [{
@@ -5637,11 +5597,9 @@ class IgoFormFormModule {
5637
5597
  }
5638
5598
  IgoFormFormModule.ɵfac = function IgoFormFormModule_Factory(t) { return new (t || IgoFormFormModule)(); };
5639
5599
  IgoFormFormModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoFormFormModule });
5640
- IgoFormFormModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
5641
- CommonModule,
5642
- FormsModule,
5643
- ReactiveFormsModule
5644
- ], FormsModule,
5600
+ IgoFormFormModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
5601
+ FormsModule,
5602
+ ReactiveFormsModule, FormsModule,
5645
5603
  ReactiveFormsModule] });
5646
5604
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoFormFormModule, [{
5647
5605
  type: NgModule,
@@ -5735,14 +5693,14 @@ class FormService {
5735
5693
  return Validators[name](args);
5736
5694
  }
5737
5695
  }
5738
- FormService.ɵfac = function FormService_Factory(t) { return new (t || FormService)(i0.ɵɵinject(i1$5.FormBuilder)); };
5696
+ FormService.ɵfac = function FormService_Factory(t) { return new (t || FormService)(i0.ɵɵinject(i1$4.UntypedFormBuilder)); };
5739
5697
  FormService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FormService, factory: FormService.ɵfac, providedIn: 'root' });
5740
5698
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormService, [{
5741
5699
  type: Injectable,
5742
5700
  args: [{
5743
5701
  providedIn: 'root'
5744
5702
  }]
5745
- }], function () { return [{ type: i1$5.FormBuilder }]; }, null); })();
5703
+ }], function () { return [{ type: i1$4.UntypedFormBuilder }]; }, null); })();
5746
5704
 
5747
5705
  /**
5748
5706
  * Service where all available form fields are registered.
@@ -5835,15 +5793,10 @@ FormFieldComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormFiel
5835
5793
  i0.ɵɵtemplate(0, FormFieldComponent_ng_container_0_Template, 2, 3, "ng-container", 0);
5836
5794
  } if (rf & 2) {
5837
5795
  i0.ɵɵproperty("ngIf", ctx.field !== undefined);
5838
- } }, directives: [i1$1.NgIf, DynamicOutletComponent], styles: ["mat-form-field{width:100%} .igo-form-disable-switch{margin-right:8px}"], changeDetection: 0 });
5796
+ } }, dependencies: [i1.NgIf, DynamicOutletComponent], styles: ["mat-form-field{width:100%} .igo-form-disable-switch{margin-right:8px}"], changeDetection: 0 });
5839
5797
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormFieldComponent, [{
5840
5798
  type: Component,
5841
- args: [{
5842
- selector: 'igo-form-field',
5843
- templateUrl: './form-field.component.html',
5844
- styleUrls: ['./form-field.component.scss'],
5845
- changeDetection: ChangeDetectionStrategy.OnPush
5846
- }]
5799
+ args: [{ selector: 'igo-form-field', changeDetection: ChangeDetectionStrategy.OnPush, template: "\r\n\r\n<ng-container *ngIf=\"field !== undefined\">\r\n <igo-dynamic-outlet\r\n [component]=\"getFieldComponent()\"\r\n [inputs]=\"getFieldInputs()\"\r\n [subscribers]=\"getFieldSubscribers()\">\r\n </igo-dynamic-outlet>\r\n</ng-container>\r\n", styles: ["::ng-deep mat-form-field{width:100%}::ng-deep .igo-form-disable-switch{margin-right:8px}\n"] }]
5847
5800
  }], function () { return [{ type: FormFieldService }]; }, { field: [{
5848
5801
  type: Input
5849
5802
  }] }); })();
@@ -5861,7 +5814,7 @@ function FormFieldSelectComponent_mat_option_2_Template(rf, ctx) { if (rf & 1) {
5861
5814
  function FormFieldSelectComponent_mat_icon_4_Template(rf, ctx) { if (rf & 1) {
5862
5815
  const _r5 = i0.ɵɵgetCurrentView();
5863
5816
  i0.ɵɵelementStart(0, "mat-icon", 5);
5864
- i0.ɵɵlistener("click", function FormFieldSelectComponent_mat_icon_4_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.onDisableSwitchClick(); });
5817
+ i0.ɵɵlistener("click", function FormFieldSelectComponent_mat_icon_4_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.onDisableSwitchClick()); });
5865
5818
  i0.ɵɵpipe(1, "async");
5866
5819
  i0.ɵɵelementEnd();
5867
5820
  } if (rf & 2) {
@@ -5926,8 +5879,7 @@ let FormFieldSelectComponent = class FormFieldSelectComponent {
5926
5879
  };
5927
5880
  FormFieldSelectComponent.ɵfac = function FormFieldSelectComponent_Factory(t) { return new (t || FormFieldSelectComponent)(); };
5928
5881
  FormFieldSelectComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormFieldSelectComponent, selectors: [["igo-form-field-select"]], inputs: { choices: "choices", formControl: "formControl", placeholder: "placeholder", errors: "errors", disableSwitch: "disableSwitch" }, decls: 6, vars: 8, consts: [[3, "required", "placeholder", "formControl"], [3, "value", 4, "ngFor", "ngForOf"], ["class", "igo-form-disable-switch", "matPrefix", "", 3, "svgIcon", "click", 4, "ngIf"], [4, "ngIf"], [3, "value"], ["matPrefix", "", 1, "igo-form-disable-switch", 3, "svgIcon", "click"]], template: function FormFieldSelectComponent_Template(rf, ctx) { if (rf & 1) {
5929
- i0.ɵɵelementStart(0, "mat-form-field");
5930
- i0.ɵɵelementStart(1, "mat-select", 0);
5882
+ i0.ɵɵelementStart(0, "mat-form-field")(1, "mat-select", 0);
5931
5883
  i0.ɵɵtemplate(2, FormFieldSelectComponent_mat_option_2_Template, 2, 2, "mat-option", 1);
5932
5884
  i0.ɵɵpipe(3, "async");
5933
5885
  i0.ɵɵelementEnd();
@@ -5943,17 +5895,13 @@ FormFieldSelectComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Fo
5943
5895
  i0.ɵɵproperty("ngIf", ctx.disableSwitch === true);
5944
5896
  i0.ɵɵadvance(1);
5945
5897
  i0.ɵɵproperty("ngIf", ctx.formControl.errors);
5946
- } }, directives: [i1.MatFormField, i2.MatSelect, i1$5.RequiredValidator, i1$5.NgControlStatus, i1$5.FormControlDirective, i1$1.NgForOf, i1$1.NgIf, i3.MatOption, i5$1.MatIcon, i1.MatPrefix, i1.MatError], pipes: [i1$1.AsyncPipe, i6$1.TranslatePipe], encapsulation: 2, changeDetection: 0 });
5898
+ } }, dependencies: [i1.NgForOf, i1.NgIf, i1$4.NgControlStatus, i1$4.RequiredValidator, i1$4.FormControlDirective, i3$2.MatIcon, i4.MatError, i4.MatFormField, i4.MatPrefix, i3.MatSelect, i3$1.MatOption, i1.AsyncPipe, i6$2.TranslatePipe], encapsulation: 2, changeDetection: 0 });
5947
5899
  FormFieldSelectComponent = __decorate([
5948
5900
  IgoFormFieldComponent('select')
5949
5901
  ], FormFieldSelectComponent);
5950
5902
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormFieldSelectComponent, [{
5951
5903
  type: Component,
5952
- args: [{
5953
- selector: 'igo-form-field-select',
5954
- templateUrl: './form-field-select.component.html',
5955
- changeDetection: ChangeDetectionStrategy.OnPush
5956
- }]
5904
+ args: [{ selector: 'igo-form-field-select', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field>\r\n <mat-select\r\n [required]=\"required\"\r\n [placeholder]=\"placeholder\"\r\n [formControl]=\"formControl\">\r\n <mat-option *ngFor=\"let choice of choices$ | async\" [value]=\"choice.value\">\r\n {{choice.title}}\r\n </mat-option>\r\n </mat-select>\r\n <mat-icon\r\n *ngIf=\"disableSwitch === true\"\r\n class=\"igo-form-disable-switch\"\r\n [svgIcon]=\"(disabled$ | async) === true ? 'checkbox-blank-outline' : 'checkbox-marked-outline'\"\r\n (click)=\"onDisableSwitchClick()\"\r\n matPrefix>\r\n </mat-icon>\r\n <mat-error *ngIf=\"formControl.errors\">{{getErrorMessage() | translate}}</mat-error>\r\n</mat-form-field>\r\n" }]
5957
5905
  }], null, { choices: [{
5958
5906
  type: Input
5959
5907
  }], formControl: [{
@@ -5969,7 +5917,7 @@ FormFieldSelectComponent = __decorate([
5969
5917
  function FormFieldTextComponent_mat_icon_2_Template(rf, ctx) { if (rf & 1) {
5970
5918
  const _r3 = i0.ɵɵgetCurrentView();
5971
5919
  i0.ɵɵelementStart(0, "mat-icon", 3);
5972
- i0.ɵɵlistener("click", function FormFieldTextComponent_mat_icon_2_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.onDisableSwitchClick(); });
5920
+ i0.ɵɵlistener("click", function FormFieldTextComponent_mat_icon_2_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onDisableSwitchClick()); });
5973
5921
  i0.ɵɵpipe(1, "async");
5974
5922
  i0.ɵɵelementEnd();
5975
5923
  } if (rf & 2) {
@@ -6040,17 +5988,13 @@ FormFieldTextComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Form
6040
5988
  i0.ɵɵproperty("ngIf", ctx.disableSwitch === true);
6041
5989
  i0.ɵɵadvance(1);
6042
5990
  i0.ɵɵproperty("ngIf", ctx.formControl.errors);
6043
- } }, directives: [i1.MatFormField, i2$3.MatInput, i1$5.DefaultValueAccessor, i1$5.RequiredValidator, i1$5.NgControlStatus, i1$5.FormControlDirective, i1$1.NgIf, i5$1.MatIcon, i1.MatPrefix, i1.MatError], pipes: [i1$1.AsyncPipe, i6$1.TranslatePipe], encapsulation: 2, changeDetection: 0 });
5991
+ } }, dependencies: [i1.NgIf, i1$4.DefaultValueAccessor, i1$4.NgControlStatus, i1$4.RequiredValidator, i1$4.FormControlDirective, i3$2.MatIcon, i4.MatError, i4.MatFormField, i4.MatPrefix, i5$1.MatInput, i1.AsyncPipe, i6$2.TranslatePipe], encapsulation: 2, changeDetection: 0 });
6044
5992
  FormFieldTextComponent = __decorate([
6045
5993
  IgoFormFieldComponent('text')
6046
5994
  ], FormFieldTextComponent);
6047
5995
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormFieldTextComponent, [{
6048
5996
  type: Component,
6049
- args: [{
6050
- selector: 'igo-form-field-text',
6051
- templateUrl: './form-field-text.component.html',
6052
- changeDetection: ChangeDetectionStrategy.OnPush
6053
- }]
5997
+ args: [{ selector: 'igo-form-field-text', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field>\r\n <input\r\n matInput\r\n [required]=\"required\"\r\n [placeholder]=\"placeholder\"\r\n [formControl]=\"formControl\">\r\n <mat-icon\r\n *ngIf=\"disableSwitch === true\"\r\n class=\"igo-form-disable-switch\"\r\n [svgIcon]=\"(disabled$ | async) === true ? 'checkbox-blank-outline' : 'checkbox-marked-outline'\"\r\n (click)=\"onDisableSwitchClick()\"\r\n matPrefix>\r\n </mat-icon>\r\n <mat-error *ngIf=\"formControl.errors\">{{getErrorMessage() | translate}}</mat-error>\r\n</mat-form-field>\r\n" }]
6054
5998
  }], null, { formControl: [{
6055
5999
  type: Input
6056
6000
  }], placeholder: [{
@@ -6064,7 +6008,7 @@ FormFieldTextComponent = __decorate([
6064
6008
  function FormFieldTextareaComponent_mat_icon_3_Template(rf, ctx) { if (rf & 1) {
6065
6009
  const _r3 = i0.ɵɵgetCurrentView();
6066
6010
  i0.ɵɵelementStart(0, "mat-icon", 3);
6067
- i0.ɵɵlistener("click", function FormFieldTextareaComponent_mat_icon_3_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.onDisableSwitchClick(); });
6011
+ i0.ɵɵlistener("click", function FormFieldTextareaComponent_mat_icon_3_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onDisableSwitchClick()); });
6068
6012
  i0.ɵɵpipe(1, "async");
6069
6013
  i0.ɵɵelementEnd();
6070
6014
  } if (rf & 2) {
@@ -6123,8 +6067,7 @@ let FormFieldTextareaComponent = class FormFieldTextareaComponent {
6123
6067
  };
6124
6068
  FormFieldTextareaComponent.ɵfac = function FormFieldTextareaComponent_Factory(t) { return new (t || FormFieldTextareaComponent)(); };
6125
6069
  FormFieldTextareaComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormFieldTextareaComponent, selectors: [["igo-form-field-textarea"]], inputs: { formControl: "formControl", placeholder: "placeholder", errors: "errors", disableSwitch: "disableSwitch" }, decls: 5, vars: 5, consts: [["matInput", "", 3, "required", "placeholder", "formControl"], ["class", "igo-form-disable-switch", "matPrefix", "", 3, "svgIcon", "click", 4, "ngIf"], [4, "ngIf"], ["matPrefix", "", 1, "igo-form-disable-switch", 3, "svgIcon", "click"]], template: function FormFieldTextareaComponent_Template(rf, ctx) { if (rf & 1) {
6126
- i0.ɵɵelementStart(0, "mat-form-field");
6127
- i0.ɵɵelementStart(1, "textarea", 0);
6070
+ i0.ɵɵelementStart(0, "mat-form-field")(1, "textarea", 0);
6128
6071
  i0.ɵɵtext(2, " ");
6129
6072
  i0.ɵɵelementEnd();
6130
6073
  i0.ɵɵtemplate(3, FormFieldTextareaComponent_mat_icon_3_Template, 2, 3, "mat-icon", 1);
@@ -6137,17 +6080,13 @@ FormFieldTextareaComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
6137
6080
  i0.ɵɵproperty("ngIf", ctx.disableSwitch === true);
6138
6081
  i0.ɵɵadvance(1);
6139
6082
  i0.ɵɵproperty("ngIf", ctx.formControl.errors);
6140
- } }, directives: [i1.MatFormField, i2$3.MatInput, i1$5.DefaultValueAccessor, i1$5.RequiredValidator, i1$5.NgControlStatus, i1$5.FormControlDirective, i1$1.NgIf, i5$1.MatIcon, i1.MatPrefix, i1.MatError], pipes: [i1$1.AsyncPipe, i6$1.TranslatePipe], encapsulation: 2, changeDetection: 0 });
6083
+ } }, dependencies: [i1.NgIf, i1$4.DefaultValueAccessor, i1$4.NgControlStatus, i1$4.RequiredValidator, i1$4.FormControlDirective, i3$2.MatIcon, i4.MatError, i4.MatFormField, i4.MatPrefix, i5$1.MatInput, i1.AsyncPipe, i6$2.TranslatePipe], encapsulation: 2, changeDetection: 0 });
6141
6084
  FormFieldTextareaComponent = __decorate([
6142
6085
  IgoFormFieldComponent('textarea')
6143
6086
  ], FormFieldTextareaComponent);
6144
6087
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormFieldTextareaComponent, [{
6145
6088
  type: Component,
6146
- args: [{
6147
- selector: 'igo-form-field-textarea',
6148
- templateUrl: './form-field-textarea.component.html',
6149
- changeDetection: ChangeDetectionStrategy.OnPush
6150
- }]
6089
+ args: [{ selector: 'igo-form-field-textarea', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field>\r\n <textarea\r\n matInput\r\n [required]=\"required\"\r\n [placeholder]=\"placeholder\"\r\n [formControl]=\"formControl\">\r\n </textarea>\r\n <mat-icon\r\n *ngIf=\"disableSwitch === true\"\r\n class=\"igo-form-disable-switch\"\r\n [svgIcon]=\"(disabled$ | async) === true ? 'checkbox-blank-outline' : 'checkbox-marked-outline'\"\r\n (click)=\"onDisableSwitchClick()\"\r\n matPrefix>\r\n </mat-icon>\r\n <mat-error *ngIf=\"formControl.errors\">{{getErrorMessage() | translate}}</mat-error>\r\n</mat-form-field>\r\n" }]
6151
6090
  }], null, { formControl: [{
6152
6091
  type: Input
6153
6092
  }], placeholder: [{
@@ -6165,17 +6104,15 @@ class IgoFormFieldModule {
6165
6104
  }
6166
6105
  IgoFormFieldModule.ɵfac = function IgoFormFieldModule_Factory(t) { return new (t || IgoFormFieldModule)(); };
6167
6106
  IgoFormFieldModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoFormFieldModule });
6168
- IgoFormFieldModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6169
- CommonModule,
6170
- FormsModule,
6171
- ReactiveFormsModule,
6172
- MatIconModule,
6173
- MatFormFieldModule,
6174
- MatInputModule,
6175
- MatSelectModule,
6176
- IgoLanguageModule,
6177
- IgoDynamicOutletModule
6178
- ]] });
6107
+ IgoFormFieldModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
6108
+ FormsModule,
6109
+ ReactiveFormsModule,
6110
+ MatIconModule,
6111
+ MatFormFieldModule,
6112
+ MatInputModule,
6113
+ MatSelectModule,
6114
+ IgoLanguageModule,
6115
+ IgoDynamicOutletModule] });
6179
6116
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoFormFieldModule, [{
6180
6117
  type: NgModule,
6181
6118
  args: [{
@@ -6308,15 +6245,10 @@ FormGroupComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormGrou
6308
6245
  i0.ɵɵproperty("ngIf", ctx.group && ctx.group.fields.length > 0);
6309
6246
  i0.ɵɵadvance(3);
6310
6247
  i0.ɵɵproperty("ngIf", ctx.formControl.errors);
6311
- } }, directives: [i1$1.NgIf, i1$1.NgForOf, i1$1.NgClass, FormFieldComponent, i1.MatError], pipes: [i6$1.TranslatePipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block;overflow:auto;padding:10px 5px}.igo-form-field-wrapper[_ngcontent-%COMP%]{display:inline-block;padding:0 5px}.igo-form-field-colspan-2[_ngcontent-%COMP%]{width:100%}.igo-form-field-colspan-1[_ngcontent-%COMP%]{width:50%}"], changeDetection: 0 });
6248
+ } }, dependencies: [i1.NgClass, i1.NgForOf, i1.NgIf, i4.MatError, FormFieldComponent, i6$2.TranslatePipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block;overflow:auto;padding:10px 5px}.igo-form-field-wrapper[_ngcontent-%COMP%]{display:inline-block;padding:0 5px}.igo-form-field-colspan-2[_ngcontent-%COMP%]{width:100%}.igo-form-field-colspan-1[_ngcontent-%COMP%]{width:50%}"], changeDetection: 0 });
6312
6249
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormGroupComponent, [{
6313
6250
  type: Component,
6314
- args: [{
6315
- selector: 'igo-form-group',
6316
- templateUrl: './form-group.component.html',
6317
- styleUrls: ['./form-group.component.scss'],
6318
- changeDetection: ChangeDetectionStrategy.OnPush
6319
- }]
6251
+ args: [{ selector: 'igo-form-group', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\r\n *ngIf=\"group && group.fields.length > 0\"\r\n class=\"igo-form-group-fields\">\r\n <div\r\n *ngFor=\"let field of group.fields\"\r\n class=\"igo-form-field-wrapper\"\r\n [ngClass]=\"getFieldNgClass(field)\">\r\n <igo-form-field [field]=\"field\"></igo-form-field>\r\n </div>\r\n</div>\r\n\r\n<div class=\"igo-form-group-extra-content\">\r\n <ng-content></ng-content>\r\n</div>\r\n\r\n<mat-error *ngIf=\"formControl.errors\">{{getErrorMessage() | translate}}</mat-error>\r\n", styles: [":host{width:100%;height:100%;display:block;overflow:auto;padding:10px 5px}.igo-form-field-wrapper{display:inline-block;padding:0 5px}.igo-form-field-colspan-2{width:100%}.igo-form-field-colspan-1{width:50%}\n"] }]
6320
6252
  }], function () { return []; }, { group: [{
6321
6253
  type: Input
6322
6254
  }], errors: [{
@@ -6330,12 +6262,10 @@ class IgoFormGroupModule {
6330
6262
  }
6331
6263
  IgoFormGroupModule.ɵfac = function IgoFormGroupModule_Factory(t) { return new (t || IgoFormGroupModule)(); };
6332
6264
  IgoFormGroupModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoFormGroupModule });
6333
- IgoFormGroupModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6334
- CommonModule,
6335
- MatFormFieldModule,
6336
- IgoLanguageModule,
6337
- IgoFormFieldModule
6338
- ]] });
6265
+ IgoFormGroupModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
6266
+ MatFormFieldModule,
6267
+ IgoLanguageModule,
6268
+ IgoFormFieldModule] });
6339
6269
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoFormGroupModule, [{
6340
6270
  type: NgModule,
6341
6271
  args: [{
@@ -6368,11 +6298,9 @@ IgoFormModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoFormModule
6368
6298
  IgoFormModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
6369
6299
  FormService,
6370
6300
  FormFieldService
6371
- ], imports: [[
6372
- CommonModule,
6373
- IgoFormGroupModule,
6374
- IgoFormFieldModule
6375
- ], IgoFormFormModule,
6301
+ ], imports: [CommonModule,
6302
+ IgoFormGroupModule,
6303
+ IgoFormFieldModule, IgoFormFormModule,
6376
6304
  IgoFormGroupModule,
6377
6305
  IgoFormFieldModule] });
6378
6306
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoFormModule, [{
@@ -6418,14 +6346,10 @@ HomeButtonComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HomeBut
6418
6346
  i0.ɵɵelementEnd();
6419
6347
  } if (rf & 2) {
6420
6348
  i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(1, 1, "igo.context.sidenav.mainMenu"));
6421
- } }, directives: [i4$1.MatButton, i6.MatTooltip, i5$1.MatIcon], pipes: [i6$1.TranslatePipe], styles: ["#homeButton[_ngcontent-%COMP%]{position:absolute;top:50px;left:0px;border-radius:0;height:46px;width:48px}"] });
6349
+ } }, dependencies: [i3$2.MatIcon, i2$2.MatButton, i6$1.MatTooltip, i6$2.TranslatePipe], styles: ["#homeButton[_ngcontent-%COMP%]{position:absolute;top:50px;left:0px;border-radius:0;height:46px;width:48px}"] });
6422
6350
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HomeButtonComponent, [{
6423
6351
  type: Component,
6424
- args: [{
6425
- selector: 'igo-home-button',
6426
- templateUrl: './home-button.component.html',
6427
- styleUrls: ['./home-button.component.scss']
6428
- }]
6352
+ args: [{ selector: 'igo-home-button', template: "<button\r\n id=\"homeButton\"\r\n mat-icon-button\r\n tooltip-position=\"below\"\r\n matTooltipShowDelay=\"500\"\r\n [matTooltip]=\"'igo.context.sidenav.mainMenu' | translate\"\r\n (click)=\"onUnselectButtonClick()\">\r\n <mat-icon svgIcon=\"home\"></mat-icon>\r\n</button>\r\n", styles: ["#homeButton{position:absolute;top:50px;left:0px;border-radius:0;height:46px;width:48px}\n"] }]
6429
6353
  }], function () { return []; }, { unselectButton: [{
6430
6354
  type: Output
6431
6355
  }] }); })();
@@ -6437,13 +6361,11 @@ class IgoHomeButtonModule {
6437
6361
  }
6438
6362
  IgoHomeButtonModule.ɵfac = function IgoHomeButtonModule_Factory(t) { return new (t || IgoHomeButtonModule)(); };
6439
6363
  IgoHomeButtonModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoHomeButtonModule });
6440
- IgoHomeButtonModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [], imports: [[
6441
- CommonModule,
6442
- MatIconModule,
6443
- MatButtonModule,
6444
- MatTooltipModule,
6445
- IgoLanguageModule
6446
- ]] });
6364
+ IgoHomeButtonModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
6365
+ MatIconModule,
6366
+ MatButtonModule,
6367
+ MatTooltipModule,
6368
+ IgoLanguageModule] });
6447
6369
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoHomeButtonModule, [{
6448
6370
  type: NgModule,
6449
6371
  args: [{
@@ -6472,11 +6394,9 @@ class IgoEntitySelectorModule {
6472
6394
  }
6473
6395
  IgoEntitySelectorModule.ɵfac = function IgoEntitySelectorModule_Factory(t) { return new (t || IgoEntitySelectorModule)(); };
6474
6396
  IgoEntitySelectorModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntitySelectorModule });
6475
- IgoEntitySelectorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6476
- CommonModule,
6477
- FormsModule,
6478
- MatSelectModule
6479
- ]] });
6397
+ IgoEntitySelectorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
6398
+ FormsModule,
6399
+ MatSelectModule] });
6480
6400
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntitySelectorModule, [{
6481
6401
  type: NgModule,
6482
6402
  args: [{
@@ -6523,7 +6443,7 @@ class IgoStopPropagationModule {
6523
6443
  }
6524
6444
  IgoStopPropagationModule.ɵfac = function IgoStopPropagationModule_Factory(t) { return new (t || IgoStopPropagationModule)(); };
6525
6445
  IgoStopPropagationModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoStopPropagationModule });
6526
- IgoStopPropagationModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
6446
+ IgoStopPropagationModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
6527
6447
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoStopPropagationModule, [{
6528
6448
  type: NgModule,
6529
6449
  args: [{
@@ -6541,9 +6461,7 @@ class IgoEntityTablePaginatorModule {
6541
6461
  }
6542
6462
  IgoEntityTablePaginatorModule.ɵfac = function IgoEntityTablePaginatorModule_Factory(t) { return new (t || IgoEntityTablePaginatorModule)(); };
6543
6463
  IgoEntityTablePaginatorModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntityTablePaginatorModule });
6544
- IgoEntityTablePaginatorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6545
- MatPaginatorModule,
6546
- ]] });
6464
+ IgoEntityTablePaginatorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatPaginatorModule] });
6547
6465
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntityTablePaginatorModule, [{
6548
6466
  type: NgModule,
6549
6467
  args: [{
@@ -6570,7 +6488,7 @@ class IgoImageModule {
6570
6488
  }
6571
6489
  IgoImageModule.ɵfac = function IgoImageModule_Factory(t) { return new (t || IgoImageModule)(); };
6572
6490
  IgoImageModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoImageModule });
6573
- IgoImageModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
6491
+ IgoImageModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
6574
6492
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoImageModule, [{
6575
6493
  type: NgModule,
6576
6494
  args: [{
@@ -6588,27 +6506,25 @@ class IgoEntityTableModule {
6588
6506
  }
6589
6507
  IgoEntityTableModule.ɵfac = function IgoEntityTableModule_Factory(t) { return new (t || IgoEntityTableModule)(); };
6590
6508
  IgoEntityTableModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntityTableModule });
6591
- IgoEntityTableModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6592
- CommonModule,
6593
- MatTableModule,
6594
- MatAutocompleteModule,
6595
- MatSortModule,
6596
- MatIconModule,
6597
- MatButtonModule,
6598
- MatCheckboxModule,
6599
- MatPaginatorModule,
6600
- MatSelectModule,
6601
- IgoStopPropagationModule,
6602
- IgoCustomHtmlModule,
6603
- IgoEntityTablePaginatorModule,
6604
- IgoImageModule,
6605
- IgoLanguageModule,
6606
- FormsModule,
6607
- ReactiveFormsModule,
6608
- MatInputModule,
6609
- MatDatepickerModule,
6610
- MatTooltipModule
6611
- ]] });
6509
+ IgoEntityTableModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
6510
+ MatTableModule,
6511
+ MatAutocompleteModule,
6512
+ MatSortModule,
6513
+ MatIconModule,
6514
+ MatButtonModule,
6515
+ MatCheckboxModule,
6516
+ MatPaginatorModule,
6517
+ MatSelectModule,
6518
+ IgoStopPropagationModule,
6519
+ IgoCustomHtmlModule,
6520
+ IgoEntityTablePaginatorModule,
6521
+ IgoImageModule,
6522
+ IgoLanguageModule,
6523
+ FormsModule,
6524
+ ReactiveFormsModule,
6525
+ MatInputModule,
6526
+ MatDatepickerModule,
6527
+ MatTooltipModule] });
6612
6528
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntityTableModule, [{
6613
6529
  type: NgModule,
6614
6530
  args: [{
@@ -6667,9 +6583,7 @@ class IgoEntityModule {
6667
6583
  }
6668
6584
  IgoEntityModule.ɵfac = function IgoEntityModule_Factory(t) { return new (t || IgoEntityModule)(); };
6669
6585
  IgoEntityModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntityModule });
6670
- IgoEntityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
6671
- CommonModule
6672
- ], IgoEntitySelectorModule,
6586
+ IgoEntityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoEntitySelectorModule,
6673
6587
  IgoEntityTableModule,
6674
6588
  IgoEntityTablePaginatorModule] });
6675
6589
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntityModule, [{
@@ -6723,11 +6637,11 @@ class InteractiveTourLoader {
6723
6637
  return this.allToursOptions[nameInConfigFile];
6724
6638
  }
6725
6639
  }
6726
- InteractiveTourLoader.ɵfac = function InteractiveTourLoader_Factory(t) { return new (t || InteractiveTourLoader)(i0.ɵɵinject(i1$3.HttpClient), i0.ɵɵinject(i1$2.ConfigService)); };
6640
+ InteractiveTourLoader.ɵfac = function InteractiveTourLoader_Factory(t) { return new (t || InteractiveTourLoader)(i0.ɵɵinject(i1$3.HttpClient), i0.ɵɵinject(i1$1.ConfigService)); };
6727
6641
  InteractiveTourLoader.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: InteractiveTourLoader, factory: InteractiveTourLoader.ɵfac });
6728
6642
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InteractiveTourLoader, [{
6729
6643
  type: Injectable
6730
- }], function () { return [{ type: i1$3.HttpClient }, { type: i1$2.ConfigService }]; }, null); })();
6644
+ }], function () { return [{ type: i1$3.HttpClient }, { type: i1$1.ConfigService }]; }, null); })();
6731
6645
 
6732
6646
  class InteractiveTourService {
6733
6647
  constructor(configService, mediaService, languageService, interactiveTourLoader, shepherdService) {
@@ -6761,8 +6675,8 @@ class InteractiveTourService {
6761
6675
  }
6762
6676
  disabledTourButton(toolName) {
6763
6677
  const stepConfig = this.interactiveTourLoader.getTourOptionData(toolName);
6764
- if (stepConfig === null || stepConfig === void 0 ? void 0 : stepConfig.conditions) {
6765
- for (const condition of stepConfig === null || stepConfig === void 0 ? void 0 : stepConfig.conditions) {
6678
+ if (stepConfig?.conditions) {
6679
+ for (const condition of stepConfig?.conditions) {
6766
6680
  if (document.querySelector(condition) === null) {
6767
6681
  return true;
6768
6682
  }
@@ -7000,14 +6914,14 @@ class InteractiveTourService {
7000
6914
  this.shepherdService.start();
7001
6915
  }
7002
6916
  }
7003
- InteractiveTourService.ɵfac = function InteractiveTourService_Factory(t) { return new (t || InteractiveTourService)(i0.ɵɵinject(i1$2.ConfigService), i0.ɵɵinject(i1$2.MediaService), i0.ɵɵinject(i1$2.LanguageService), i0.ɵɵinject(InteractiveTourLoader), i0.ɵɵinject(i3$1.ShepherdService)); };
6917
+ InteractiveTourService.ɵfac = function InteractiveTourService_Factory(t) { return new (t || InteractiveTourService)(i0.ɵɵinject(i1$1.ConfigService), i0.ɵɵinject(i1$1.MediaService), i0.ɵɵinject(i1$1.LanguageService), i0.ɵɵinject(InteractiveTourLoader), i0.ɵɵinject(i3$3.ShepherdService)); };
7004
6918
  InteractiveTourService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: InteractiveTourService, factory: InteractiveTourService.ɵfac, providedIn: 'root' });
7005
6919
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InteractiveTourService, [{
7006
6920
  type: Injectable,
7007
6921
  args: [{
7008
6922
  providedIn: 'root'
7009
6923
  }]
7010
- }], function () { return [{ type: i1$2.ConfigService }, { type: i1$2.MediaService }, { type: i1$2.LanguageService }, { type: InteractiveTourLoader }, { type: i3$1.ShepherdService }]; }, null); })();
6924
+ }], function () { return [{ type: i1$1.ConfigService }, { type: i1$1.MediaService }, { type: i1$1.LanguageService }, { type: InteractiveTourLoader }, { type: i3$3.ShepherdService }]; }, null); })();
7011
6925
 
7012
6926
  /**
7013
6927
  * Service where all available tools and their component are registered.
@@ -7229,7 +7143,7 @@ ToolService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ToolService,
7229
7143
  function InteractiveTourComponent_button_0_Template(rf, ctx) { if (rf & 1) {
7230
7144
  const _r2 = i0.ɵɵgetCurrentView();
7231
7145
  i0.ɵɵelementStart(0, "button", 1);
7232
- i0.ɵɵlistener("click", function InteractiveTourComponent_button_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r1 = i0.ɵɵnextContext(); return ctx_r1.startInteractiveTour(); });
7146
+ i0.ɵɵlistener("click", function InteractiveTourComponent_button_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.startInteractiveTour()); });
7233
7147
  i0.ɵɵelementStart(1, "span", 2);
7234
7148
  i0.ɵɵtext(2);
7235
7149
  i0.ɵɵpipe(3, "translate");
@@ -7339,15 +7253,10 @@ InteractiveTourComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: In
7339
7253
  i0.ɵɵtemplate(0, InteractiveTourComponent_button_0_Template, 9, 15, "button", 0);
7340
7254
  } if (rf & 2) {
7341
7255
  i0.ɵɵproperty("ngIf", ctx.showTourButton);
7342
- } }, directives: [i1$1.NgIf, i4$1.MatButton, i1$1.NgClass, i5$1.MatIcon, i6.MatTooltip], pipes: [i6$1.TranslatePipe, i1$1.AsyncPipe], styles: [".shepherd-has-title .shepherd-content .shepherd-header{padding:.5em .75em}.shepherd-title{margin:0!important;font-weight:revert!important}.shepherd-progress{margin-right:15px;color:#737373}.shepherd-text{font-size:14px!important}.shepherd-element{border:1px solid;border-color:#474747;box-shadow:4px 5px #65656599}\n"], encapsulation: 2 });
7256
+ } }, dependencies: [i1.NgClass, i1.NgIf, i3$2.MatIcon, i2$2.MatButton, i6$1.MatTooltip, i1.AsyncPipe, i6$2.TranslatePipe], styles: [".shepherd-has-title .shepherd-content .shepherd-header{padding:.5em .75em}.shepherd-title{margin:0!important;font-weight:revert!important}.shepherd-progress{margin-right:15px;color:#737373}.shepherd-text{font-size:14px!important}.shepherd-element{border:1px solid;border-color:#474747;box-shadow:4px 5px #65656599}\n"], encapsulation: 2 });
7343
7257
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InteractiveTourComponent, [{
7344
7258
  type: Component,
7345
- args: [{
7346
- selector: 'igo-interactive-tour',
7347
- templateUrl: './interactive-tour.component.html',
7348
- styleUrls: ['./interactive-tour.component.scss'],
7349
- encapsulation: ViewEncapsulation.None
7350
- }]
7259
+ args: [{ selector: 'igo-interactive-tour', encapsulation: ViewEncapsulation.None, template: "<button *ngIf=\"showTourButton\"\r\n (click) = \"startInteractiveTour()\"\r\n [ngClass]=\"getClass()\"\r\n mat-raised-button\r\n tooltip-position=\"below\"\r\n matTooltipShowDelay=\"500\"\r\n [disabled]=disabledTourButton>\r\n <span class=\"interactive-tour-button-title\">{{'igo.common.interactiveTour.buttonTitle' | translate}} {{(discoverTitleInLocale$ | async) | translate}}</span>\r\n <mat-icon\r\n svgIcon=\"presentation-play\"\r\n [matTooltip]=\"disabledTourButton ?\r\n ('igo.common.interactiveTour.disaledTooltipTourToolButton' | translate) :\r\n ('igo.common.interactiveTour.tooltipTourToolButton' | translate)\">\r\n </mat-icon>\r\n</button>\r\n", styles: [".shepherd-has-title .shepherd-content .shepherd-header{padding:.5em .75em}.shepherd-title{margin:0!important;font-weight:revert!important}.shepherd-progress{margin-right:15px;color:#737373}.shepherd-text{font-size:14px!important}.shepherd-element{border:1px solid;border-color:#474747;box-shadow:4px 5px #65656599}\n"] }]
7351
7260
  }], function () { return [{ type: InteractiveTourService }, { type: ToolService }]; }, { tourToStart: [{
7352
7261
  type: Input
7353
7262
  }], styleButton: [{
@@ -7360,13 +7269,11 @@ class IgoInteractiveTourModule {
7360
7269
  }
7361
7270
  IgoInteractiveTourModule.ɵfac = function IgoInteractiveTourModule_Factory(t) { return new (t || IgoInteractiveTourModule)(); };
7362
7271
  IgoInteractiveTourModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoInteractiveTourModule });
7363
- IgoInteractiveTourModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [InteractiveTourService, InteractiveTourLoader], imports: [[
7364
- CommonModule,
7365
- MatIconModule,
7366
- MatButtonModule,
7367
- MatTooltipModule,
7368
- IgoLanguageModule
7369
- ]] });
7272
+ IgoInteractiveTourModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [InteractiveTourService, InteractiveTourLoader], imports: [CommonModule,
7273
+ MatIconModule,
7274
+ MatButtonModule,
7275
+ MatTooltipModule,
7276
+ IgoLanguageModule] });
7370
7277
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoInteractiveTourModule, [{
7371
7278
  type: NgModule,
7372
7279
  args: [{
@@ -7414,7 +7321,7 @@ class IgoKeyValueModule {
7414
7321
  }
7415
7322
  IgoKeyValueModule.ɵfac = function IgoKeyValueModule_Factory(t) { return new (t || IgoKeyValueModule)(); };
7416
7323
  IgoKeyValueModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoKeyValueModule });
7417
- IgoKeyValueModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
7324
+ IgoKeyValueModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
7418
7325
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoKeyValueModule, [{
7419
7326
  type: NgModule,
7420
7327
  args: [{
@@ -7445,9 +7352,7 @@ function JsonDialogComponent_ng_template_4_ng_container_0_ng_container_1_ng_cont
7445
7352
  i0.ɵɵproperty("ngTemplateOutlet", _r1)("ngTemplateOutletContext", i0.ɵɵpureFunction2(2, _c0$5, property_r6.value, ctx_r8.getKey(baseKey_r4, property_r6.key)));
7446
7353
  } }
7447
7354
  function JsonDialogComponent_ng_template_4_ng_container_0_ng_container_1_ng_template_2_Template(rf, ctx) { if (rf & 1) {
7448
- i0.ɵɵelementStart(0, "p");
7449
- i0.ɵɵelementStart(1, "span");
7450
- i0.ɵɵelementStart(2, "b");
7355
+ i0.ɵɵelementStart(0, "p")(1, "span")(2, "b");
7451
7356
  i0.ɵɵtext(3);
7452
7357
  i0.ɵɵelementEnd();
7453
7358
  i0.ɵɵtext(4, " : ");
@@ -7505,7 +7410,7 @@ class JsonDialogComponent {
7505
7410
  return (baseKey ? baseKey + '.' : '') + key;
7506
7411
  }
7507
7412
  }
7508
- JsonDialogComponent.ɵfac = function JsonDialogComponent_Factory(t) { return new (t || JsonDialogComponent)(i0.ɵɵdirectiveInject(i1$8.MatDialogRef)); };
7413
+ JsonDialogComponent.ɵfac = function JsonDialogComponent_Factory(t) { return new (t || JsonDialogComponent)(i0.ɵɵdirectiveInject(i1$6.MatDialogRef)); };
7509
7414
  JsonDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: JsonDialogComponent, selectors: [["igo-json-dialog"]], decls: 9, vars: 5, consts: [["mat-dialog-title", "", 1, "mat-typography"], ["mat-dialog-content", "", 1, "mat-typography"], [4, "ngTemplateOutlet", "ngTemplateOutletContext"], ["loopObject", ""], ["mat-dialog-actions", ""], ["mat-button", "", "color", "primary", 3, "click"], [4, "ngFor", "ngForOf"], [4, "ngIf"], [4, "ngIf", "ngIfElse"], ["notObject", ""], [1, "propertyValue", 3, "innerHtml"]], template: function JsonDialogComponent_Template(rf, ctx) { if (rf & 1) {
7510
7415
  i0.ɵɵelementStart(0, "h1", 0);
7511
7416
  i0.ɵɵtext(1);
@@ -7514,26 +7419,21 @@ JsonDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: JsonDia
7514
7419
  i0.ɵɵtemplate(3, JsonDialogComponent_ng_container_3_Template, 1, 0, "ng-container", 2);
7515
7420
  i0.ɵɵtemplate(4, JsonDialogComponent_ng_template_4_Template, 2, 3, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
7516
7421
  i0.ɵɵelementEnd();
7517
- i0.ɵɵelementStart(6, "div", 4);
7518
- i0.ɵɵelementStart(7, "button", 5);
7422
+ i0.ɵɵelementStart(6, "div", 4)(7, "button", 5);
7519
7423
  i0.ɵɵlistener("click", function JsonDialogComponent_Template_button_click_7_listener() { return ctx.dialogRef.close(false); });
7520
7424
  i0.ɵɵtext(8, " OK ");
7521
- i0.ɵɵelementEnd();
7522
- i0.ɵɵelementEnd();
7425
+ i0.ɵɵelementEnd()();
7523
7426
  } if (rf & 2) {
7524
7427
  const _r1 = i0.ɵɵreference(5);
7525
7428
  i0.ɵɵadvance(1);
7526
7429
  i0.ɵɵtextInterpolate(ctx.title);
7527
7430
  i0.ɵɵadvance(2);
7528
7431
  i0.ɵɵproperty("ngTemplateOutlet", _r1)("ngTemplateOutletContext", i0.ɵɵpureFunction1(3, _c1$3, ctx.data));
7529
- } }, directives: [i1$8.MatDialogTitle, i1$8.MatDialogContent, i1$1.NgTemplateOutlet, i1$8.MatDialogActions, i4$1.MatButton, i1$1.NgForOf, i1$1.NgIf], pipes: [KeyValuePipe], encapsulation: 2 });
7432
+ } }, dependencies: [i1.NgForOf, i1.NgIf, i1.NgTemplateOutlet, i2$2.MatButton, i1$6.MatDialogTitle, i1$6.MatDialogContent, i1$6.MatDialogActions, KeyValuePipe], encapsulation: 2 });
7530
7433
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(JsonDialogComponent, [{
7531
7434
  type: Component,
7532
- args: [{
7533
- selector: 'igo-json-dialog',
7534
- templateUrl: './json-dialog.component.html'
7535
- }]
7536
- }], function () { return [{ type: i1$8.MatDialogRef }]; }, null); })();
7435
+ args: [{ selector: 'igo-json-dialog', template: "<h1 mat-dialog-title class=\"mat-typography\">{{ title }}</h1>\r\n\r\n<div mat-dialog-content class=\"mat-typography\">\r\n <ng-container *ngTemplateOutlet=\"loopObject;context:{ obj: data }\"></ng-container>\r\n\r\n <ng-template #loopObject let-obj='obj' let-baseKey='baseKey'>\r\n <ng-container *ngFor=\"let property of obj | keyvalue\">\r\n <ng-container *ngIf=\"ignoreKeys.indexOf(getKey(baseKey, property.key)) === -1\">\r\n\r\n <ng-container *ngIf=\"isObject(property.value); else notObject\">\r\n <ng-container *ngTemplateOutlet=\"loopObject;context:{ obj: property.value, baseKey: getKey(baseKey, property.key) }\"></ng-container>\r\n </ng-container>\r\n\r\n <ng-template #notObject>\r\n <p><span><b>{{getKey(baseKey, property.key)}}</b> : </span><span class=\"propertyValue\" [innerHtml]=\"property.value\"></span></p>\r\n </ng-template>\r\n\r\n </ng-container>\r\n </ng-container>\r\n </ng-template>\r\n</div>\r\n\r\n<div mat-dialog-actions>\r\n <button mat-button color=\"primary\"\r\n (click)=\"dialogRef.close(false)\">\r\n OK\r\n </button>\r\n</div>\r\n" }]
7436
+ }], function () { return [{ type: i1$6.MatDialogRef }]; }, null); })();
7537
7437
 
7538
7438
  class JsonDialogService {
7539
7439
  constructor(dialog) {
@@ -7549,11 +7449,11 @@ class JsonDialogService {
7549
7449
  return dialogRef.afterClosed();
7550
7450
  }
7551
7451
  }
7552
- JsonDialogService.ɵfac = function JsonDialogService_Factory(t) { return new (t || JsonDialogService)(i0.ɵɵinject(i1$8.MatDialog)); };
7452
+ JsonDialogService.ɵfac = function JsonDialogService_Factory(t) { return new (t || JsonDialogService)(i0.ɵɵinject(i1$6.MatDialog)); };
7553
7453
  JsonDialogService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: JsonDialogService, factory: JsonDialogService.ɵfac });
7554
7454
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(JsonDialogService, [{
7555
7455
  type: Injectable
7556
- }], function () { return [{ type: i1$8.MatDialog }]; }, null); })();
7456
+ }], function () { return [{ type: i1$6.MatDialog }]; }, null); })();
7557
7457
 
7558
7458
  class IgoJsonDialogModule {
7559
7459
  static forRoot() {
@@ -7564,7 +7464,7 @@ class IgoJsonDialogModule {
7564
7464
  }
7565
7465
  IgoJsonDialogModule.ɵfac = function IgoJsonDialogModule_Factory(t) { return new (t || IgoJsonDialogModule)(); };
7566
7466
  IgoJsonDialogModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoJsonDialogModule });
7567
- IgoJsonDialogModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [JsonDialogService], imports: [[CommonModule, MatButtonModule, MatDialogModule, IgoKeyValueModule]] });
7467
+ IgoJsonDialogModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [JsonDialogService], imports: [CommonModule, MatButtonModule, MatDialogModule, IgoKeyValueModule] });
7568
7468
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoJsonDialogModule, [{
7569
7469
  type: NgModule,
7570
7470
  args: [{
@@ -7976,14 +7876,10 @@ ListComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ListComponent
7976
7876
  i0.ɵɵelementEnd();
7977
7877
  } if (rf & 2) {
7978
7878
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(1, _c0$4, ctx.selection));
7979
- } }, directives: [i1$6.MatList, ClickoutDirective, i1$1.NgClass], styles: ["[_nghost-%COMP%]{display:block;height:100%;overflow:auto;position:relative}mat-list[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%]{position:static}[_nghost-%COMP%] .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-avatar{height:46px}[_nghost-%COMP%] .mat-list igo-collapsible>.mat-list-item>.mat-list-item-content>.mat-list-text>.mat-line{font-weight:bold;opacity:.9}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-avatar .mat-list-item-content>mat-icon{padding:8px}[_nghost-%COMP%] [igolistitem] mat-list-item [mat-list-avatar]{height:auto;width:40px}[_nghost-%COMP%] mat-list.selectable[_ngcontent-%COMP%] [igolistitem]:not(.igo-list-item-disabled) mat-list-item:hover{cursor:pointer}[_nghost-%COMP%] [igolistitem]:focus{outline:none}"] });
7879
+ } }, dependencies: [i1.NgClass, i2$3.MatList, ClickoutDirective], styles: ["[_nghost-%COMP%]{display:block;height:100%;overflow:auto;position:relative}mat-list[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%]{position:static}[_nghost-%COMP%] .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-with-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-with-avatar{height:46px}[_nghost-%COMP%] .mat-list igo-collapsible>.mat-list-item>.mat-list-item-content>.mat-list-text>.mat-line{font-weight:700;opacity:.9}[_nghost-%COMP%] .mat-list .mat-list-item.mat-list-item-with-avatar .mat-list-item-content>mat-icon{padding:8px}[_nghost-%COMP%] [igolistitem] mat-list-item [mat-list-avatar]{height:auto;width:40px}[_nghost-%COMP%] mat-list.selectable[_ngcontent-%COMP%] [igolistitem]:not(.igo-list-item-disabled) mat-list-item:hover{cursor:pointer}[_nghost-%COMP%] [igolistitem]:focus{outline:none}"] });
7980
7880
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ListComponent, [{
7981
7881
  type: Component,
7982
- args: [{
7983
- selector: 'igo-list',
7984
- templateUrl: './list.component.html',
7985
- styleUrls: ['./list.component.scss']
7986
- }]
7882
+ args: [{ selector: 'igo-list', template: "<mat-list\r\n igoClickout\r\n [ngClass]=\"{'selectable': selection}\"\r\n (clickout)=\"disableNavigation()\"\r\n (click)=\"enableNavigation()\">\r\n <ng-content></ng-content>\r\n</mat-list>\r\n", styles: [":host{display:block;height:100%;overflow:auto;position:relative}mat-list{padding-top:0}:host{position:static}:host ::ng-deep .mat-list .mat-list-item .mat-list-text>*{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:36px;line-height:18px;-webkit-box-orient:vertical;-webkit-line-clamp:2}:host ::ng-deep .mat-list .mat-list-item.mat-list-item-with-avatar .mat-list-item-content{display:-webkit-flex;height:46px;padding:3px}:host ::ng-deep .mat-list .mat-list-item.mat-list-item-with-avatar{height:46px}:host ::ng-deep .mat-list ::ng-deep igo-collapsible>.mat-list-item>.mat-list-item-content>.mat-list-text>.mat-line{font-weight:700;opacity:.9}:host ::ng-deep .mat-list .mat-list-item.mat-list-item-with-avatar .mat-list-item-content>mat-icon{padding:8px}:host ::ng-deep [igolistitem] mat-list-item [mat-list-avatar]{height:auto;width:40px}:host mat-list.selectable ::ng-deep [igolistitem]:not(.igo-list-item-disabled) mat-list-item:hover{cursor:pointer}:host ::ng-deep [igolistitem]:focus{outline:none}\n"] }]
7987
7883
  }], function () { return [{ type: i0.ElementRef }]; }, { navigation: [{
7988
7884
  type: Input
7989
7885
  }], selection: [{
@@ -8009,7 +7905,7 @@ class IgoListModule {
8009
7905
  }
8010
7906
  IgoListModule.ɵfac = function IgoListModule_Factory(t) { return new (t || IgoListModule)(); };
8011
7907
  IgoListModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoListModule });
8012
- IgoListModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonModule, MatIconModule, MatListModule, IgoClickoutModule]] });
7908
+ IgoListModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, MatIconModule, MatListModule, IgoClickoutModule] });
8013
7909
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoListModule, [{
8014
7910
  type: NgModule,
8015
7911
  args: [{
@@ -8021,16 +7917,14 @@ IgoListModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonMod
8021
7917
  (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoListModule, { declarations: [ListItemDirective, ListComponent], imports: [CommonModule, MatIconModule, MatListModule, IgoClickoutModule], exports: [ListItemDirective, ListComponent] }); })();
8022
7918
 
8023
7919
  function PanelComponent_div_0_Template(rf, ctx) { if (rf & 1) {
8024
- i0.ɵɵelementStart(0, "div", 2);
8025
- i0.ɵɵelementStart(1, "h3");
7920
+ i0.ɵɵelementStart(0, "div", 2)(1, "h3");
8026
7921
  i0.ɵɵprojection(2, 1);
8027
7922
  i0.ɵɵelementStart(3, "div", 3);
8028
7923
  i0.ɵɵtext(4);
8029
7924
  i0.ɵɵprojection(5, 2);
8030
7925
  i0.ɵɵelementEnd();
8031
7926
  i0.ɵɵprojection(6, 3);
8032
- i0.ɵɵelementEnd();
8033
- i0.ɵɵelementEnd();
7927
+ i0.ɵɵelementEnd()();
8034
7928
  } if (rf & 2) {
8035
7929
  const ctx_r0 = i0.ɵɵnextContext();
8036
7930
  i0.ɵɵadvance(4);
@@ -8066,15 +7960,10 @@ PanelComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PanelCompone
8066
7960
  i0.ɵɵelementEnd();
8067
7961
  } if (rf & 2) {
8068
7962
  i0.ɵɵproperty("ngIf", ctx.withHeader);
8069
- } }, directives: [i1$1.NgIf], styles: ["[_nghost-%COMP%]{display:block}.igo-panel-header[_ngcontent-%COMP%]{height:46px;padding:3px;text-align:center}.igo-panel-header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{margin:0;height:40px}.igo-panel-header[_ngcontent-%COMP%] [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header[_ngcontent-%COMP%] [panelrightbutton]{float:right}.igo-panel-content[_ngcontent-%COMP%]{overflow:auto}.igo-panel-with-header[_nghost-%COMP%] .igo-panel-content[_ngcontent-%COMP%]{height:calc(100% - 46px)}[_nghost-%COMP%]:not(.igo-panel-with-header) .igo-panel-content[_ngcontent-%COMP%]{height:100%}.igo-panel-title[_ngcontent-%COMP%]{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:bold;font-size:1.17em}"], changeDetection: 0 });
7963
+ } }, dependencies: [i1.NgIf], styles: ["[_nghost-%COMP%]{display:block}.igo-panel-header[_ngcontent-%COMP%]{height:46px;padding:3px;text-align:center}.igo-panel-header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{margin:0;height:40px}.igo-panel-header[_ngcontent-%COMP%] [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header[_ngcontent-%COMP%] [panelrightbutton]{float:right}.igo-panel-content[_ngcontent-%COMP%]{overflow:auto}.igo-panel-with-header[_nghost-%COMP%] .igo-panel-content[_ngcontent-%COMP%]{height:calc(100% - 46px)}[_nghost-%COMP%]:not(.igo-panel-with-header) .igo-panel-content[_ngcontent-%COMP%]{height:100%}.igo-panel-title[_ngcontent-%COMP%]{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}"], changeDetection: 0 });
8070
7964
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PanelComponent, [{
8071
7965
  type: Component,
8072
- args: [{
8073
- selector: 'igo-panel',
8074
- templateUrl: './panel.component.html',
8075
- styleUrls: ['./panel.component.scss'],
8076
- changeDetection: ChangeDetectionStrategy.OnPush
8077
- }]
7966
+ args: [{ selector: 'igo-panel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"withHeader\" class=\"igo-panel-header mat-typography\" title=\"\">\r\n <h3>\r\n <ng-content select=\"[panelLeftButton]\"></ng-content>\r\n <div class=\"igo-panel-title\">\r\n {{ title }}\r\n <ng-content select=\"[panelHeader]\"></ng-content>\r\n </div>\r\n <ng-content select=\"[panelRightButton]\"></ng-content>\r\n </h3>\r\n</div>\r\n<div class=\"igo-panel-content\" title=\"\">\r\n <ng-content></ng-content>\r\n</div>\r\n", styles: [":host{display:block}.igo-panel-header{height:46px;padding:3px;text-align:center}.igo-panel-header h3{margin:0;height:40px}.igo-panel-header ::ng-deep [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header ::ng-deep [panelrightbutton]{float:right}.igo-panel-content{overflow:auto}:host.igo-panel-with-header .igo-panel-content{height:calc(100% - 46px)}:host:not(.igo-panel-with-header) .igo-panel-content{height:100%}.igo-panel-title{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}\n"] }]
8078
7967
  }], null, { title: [{
8079
7968
  type: Input
8080
7969
  }], withHeader: [{
@@ -8088,7 +7977,7 @@ class IgoPanelModule {
8088
7977
  }
8089
7978
  IgoPanelModule.ɵfac = function IgoPanelModule_Factory(t) { return new (t || IgoPanelModule)(); };
8090
7979
  IgoPanelModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoPanelModule });
8091
- IgoPanelModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
7980
+ IgoPanelModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule] });
8092
7981
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoPanelModule, [{
8093
7982
  type: NgModule,
8094
7983
  args: [{
@@ -8129,7 +8018,7 @@ class SidenavShimDirective {
8129
8018
  this.focusedElement = undefined;
8130
8019
  }
8131
8020
  }
8132
- SidenavShimDirective.ɵfac = function SidenavShimDirective_Factory(t) { return new (t || SidenavShimDirective)(i0.ɵɵdirectiveInject(i1$9.MatSidenav, 2), i0.ɵɵdirectiveInject(i0.Renderer2)); };
8021
+ SidenavShimDirective.ɵfac = function SidenavShimDirective_Factory(t) { return new (t || SidenavShimDirective)(i0.ɵɵdirectiveInject(i1$7.MatSidenav, 2), i0.ɵɵdirectiveInject(i0.Renderer2)); };
8133
8022
  SidenavShimDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SidenavShimDirective, selectors: [["", "igoSidenavShim", ""]], hostBindings: function SidenavShimDirective_HostBindings(rf, ctx) { if (rf & 1) {
8134
8023
  i0.ɵɵlistener("open", function SidenavShimDirective_open_HostBindingHandler($event) { return ctx.onOpen($event); })("close-start", function SidenavShimDirective_close_start_HostBindingHandler($event) { return ctx.onCloseStart($event); })("close", function SidenavShimDirective_close_HostBindingHandler($event) { return ctx.onClose($event); });
8135
8024
  } } });
@@ -8138,7 +8027,7 @@ SidenavShimDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Sidena
8138
8027
  args: [{
8139
8028
  selector: '[igoSidenavShim]'
8140
8029
  }]
8141
- }], function () { return [{ type: i1$9.MatSidenav, decorators: [{
8030
+ }], function () { return [{ type: i1$7.MatSidenav, decorators: [{
8142
8031
  type: Self
8143
8032
  }] }, { type: i0.Renderer2 }]; }, { onOpen: [{
8144
8033
  type: HostListener,
@@ -8161,7 +8050,7 @@ class IgoSidenavModule {
8161
8050
  }
8162
8051
  IgoSidenavModule.ɵfac = function IgoSidenavModule_Factory(t) { return new (t || IgoSidenavModule)(); };
8163
8052
  IgoSidenavModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSidenavModule });
8164
- IgoSidenavModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[]] });
8053
+ IgoSidenavModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
8165
8054
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSidenavModule, [{
8166
8055
  type: NgModule,
8167
8056
  args: [{
@@ -8190,19 +8079,14 @@ SpinnerComponent.ɵfac = function SpinnerComponent_Factory(t) { return new (t ||
8190
8079
  SpinnerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SpinnerComponent, selectors: [["igo-spinner"]], inputs: { shown: "shown" }, decls: 4, vars: 5, consts: [[3, "ngClass"], [1, "igo-spinner-background"], ["diameter", "40", "mode", "indeterminate"]], template: function SpinnerComponent_Template(rf, ctx) { if (rf & 1) {
8191
8080
  i0.ɵɵelementStart(0, "div", 0);
8192
8081
  i0.ɵɵpipe(1, "async");
8193
- i0.ɵɵelement(2, "div", 1);
8194
- i0.ɵɵelement(3, "mat-progress-spinner", 2);
8082
+ i0.ɵɵelement(2, "div", 1)(3, "mat-progress-spinner", 2);
8195
8083
  i0.ɵɵelementEnd();
8196
8084
  } if (rf & 2) {
8197
8085
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c0$2, i0.ɵɵpipeBind1(1, 1, ctx.shown$)));
8198
- } }, directives: [i1$1.NgClass, i2$4.MatProgressSpinner], pipes: [i1$1.AsyncPipe], styles: [".igo-spinner-container[_ngcontent-%COMP%]{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown[_ngcontent-%COMP%]{display:block}mat-progress-spinner[_ngcontent-%COMP%]{height:40px;width:40px;border-radius:50%}.igo-spinner-background[_ngcontent-%COMP%]{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}"] });
8086
+ } }, dependencies: [i1.NgClass, i2$4.MatProgressSpinner, i1.AsyncPipe], styles: [".igo-spinner-container[_ngcontent-%COMP%]{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown[_ngcontent-%COMP%]{display:block}mat-progress-spinner[_ngcontent-%COMP%]{height:40px;width:40px;border-radius:50%}.igo-spinner-background[_ngcontent-%COMP%]{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}"] });
8199
8087
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerComponent, [{
8200
8088
  type: Component,
8201
- args: [{
8202
- selector: 'igo-spinner',
8203
- templateUrl: './spinner.component.html',
8204
- styleUrls: ['./spinner.component.scss']
8205
- }]
8089
+ args: [{ selector: 'igo-spinner', template: "<div\r\n [ngClass]=\"{'igo-spinner-container': true, 'igo-spinner-shown': (shown$ | async)}\">\r\n <div class=\"igo-spinner-background\"></div>\r\n <mat-progress-spinner diameter=\"40\" mode=\"indeterminate\"></mat-progress-spinner>\r\n</div>\r\n", styles: [".igo-spinner-container{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown{display:block}mat-progress-spinner{height:40px;width:40px;border-radius:50%}.igo-spinner-background{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}\n"] }]
8206
8090
  }], function () { return []; }, { shown: [{
8207
8091
  type: Input
8208
8092
  }] }); })();
@@ -8238,7 +8122,7 @@ class SpinnerActivityDirective {
8238
8122
  this.counter$$.unsubscribe();
8239
8123
  }
8240
8124
  }
8241
- SpinnerActivityDirective.ɵfac = function SpinnerActivityDirective_Factory(t) { return new (t || SpinnerActivityDirective)(i0.ɵɵdirectiveInject(SpinnerComponent, 2), i0.ɵɵdirectiveInject(i1$2.ActivityService)); };
8125
+ SpinnerActivityDirective.ɵfac = function SpinnerActivityDirective_Factory(t) { return new (t || SpinnerActivityDirective)(i0.ɵɵdirectiveInject(SpinnerComponent, 2), i0.ɵɵdirectiveInject(i1$1.ActivityService)); };
8242
8126
  SpinnerActivityDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SpinnerActivityDirective, selectors: [["", "igoSpinnerActivity", ""]] });
8243
8127
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerActivityDirective, [{
8244
8128
  type: Directive,
@@ -8247,13 +8131,13 @@ SpinnerActivityDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Sp
8247
8131
  }]
8248
8132
  }], function () { return [{ type: SpinnerComponent, decorators: [{
8249
8133
  type: Self
8250
- }] }, { type: i1$2.ActivityService }]; }, null); })();
8134
+ }] }, { type: i1$1.ActivityService }]; }, null); })();
8251
8135
 
8252
8136
  class IgoSpinnerModule {
8253
8137
  }
8254
8138
  IgoSpinnerModule.ɵfac = function IgoSpinnerModule_Factory(t) { return new (t || IgoSpinnerModule)(); };
8255
8139
  IgoSpinnerModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSpinnerModule });
8256
- IgoSpinnerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonModule, MatProgressSpinnerModule]] });
8140
+ IgoSpinnerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, MatProgressSpinnerModule] });
8257
8141
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSpinnerModule, [{
8258
8142
  type: NgModule,
8259
8143
  args: [{
@@ -8330,23 +8214,19 @@ var TableActionColor;
8330
8214
 
8331
8215
  const _c0$1 = ["filter"];
8332
8216
  function TableComponent_div_1_Template(rf, ctx) { if (rf & 1) {
8333
- i0.ɵɵelementStart(0, "div", 12);
8334
- i0.ɵɵelementStart(1, "mat-form-field", 13);
8217
+ i0.ɵɵelementStart(0, "div", 12)(1, "mat-form-field", 13);
8335
8218
  i0.ɵɵelement(2, "input", 14, 15);
8336
8219
  i0.ɵɵpipe(4, "translate");
8337
- i0.ɵɵelementEnd();
8338
- i0.ɵɵelementEnd();
8220
+ i0.ɵɵelementEnd()();
8339
8221
  } if (rf & 2) {
8340
8222
  i0.ɵɵadvance(2);
8341
8223
  i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(4, 1, "igo.common.table.filter"));
8342
8224
  } }
8343
8225
  function TableComponent_th_6_Template(rf, ctx) { if (rf & 1) {
8344
8226
  const _r11 = i0.ɵɵgetCurrentView();
8345
- i0.ɵɵelementStart(0, "th", 16);
8346
- i0.ɵɵelementStart(1, "mat-checkbox", 17);
8347
- i0.ɵɵlistener("change", function TableComponent_th_6_Template_mat_checkbox_change_1_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return $event ? ctx_r10.masterToggle() : null; });
8348
- i0.ɵɵelementEnd();
8349
- i0.ɵɵelementEnd();
8227
+ i0.ɵɵelementStart(0, "th", 16)(1, "mat-checkbox", 17);
8228
+ i0.ɵɵlistener("change", function TableComponent_th_6_Template_mat_checkbox_change_1_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return i0.ɵɵresetView($event ? ctx_r10.masterToggle() : null); });
8229
+ i0.ɵɵelementEnd()();
8350
8230
  } if (rf & 2) {
8351
8231
  const ctx_r2 = i0.ɵɵnextContext();
8352
8232
  i0.ɵɵadvance(1);
@@ -8354,11 +8234,9 @@ function TableComponent_th_6_Template(rf, ctx) { if (rf & 1) {
8354
8234
  } }
8355
8235
  function TableComponent_td_7_Template(rf, ctx) { if (rf & 1) {
8356
8236
  const _r15 = i0.ɵɵgetCurrentView();
8357
- i0.ɵɵelementStart(0, "td", 18);
8358
- i0.ɵɵelementStart(1, "mat-checkbox", 19);
8359
- i0.ɵɵlistener("click", function TableComponent_td_7_Template_mat_checkbox_click_1_listener($event) { return $event.stopPropagation(); })("change", function TableComponent_td_7_Template_mat_checkbox_change_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r15); const row_r12 = restoredCtx.$implicit; const ctx_r14 = i0.ɵɵnextContext(); return $event ? ctx_r14.selection.toggle(row_r12) : null; });
8360
- i0.ɵɵelementEnd();
8361
- i0.ɵɵelementEnd();
8237
+ i0.ɵɵelementStart(0, "td", 18)(1, "mat-checkbox", 19);
8238
+ i0.ɵɵlistener("click", function TableComponent_td_7_Template_mat_checkbox_click_1_listener($event) { return $event.stopPropagation(); })("change", function TableComponent_td_7_Template_mat_checkbox_change_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r15); const row_r12 = restoredCtx.$implicit; const ctx_r14 = i0.ɵɵnextContext(); return i0.ɵɵresetView($event ? ctx_r14.selection.toggle(row_r12) : null); });
8239
+ i0.ɵɵelementEnd()();
8362
8240
  } if (rf & 2) {
8363
8241
  const row_r12 = ctx.$implicit;
8364
8242
  const ctx_r3 = i0.ɵɵnextContext();
@@ -8446,7 +8324,7 @@ function TableComponent_th_10_Template(rf, ctx) { if (rf & 1) {
8446
8324
  function TableComponent_td_11_button_1_Template(rf, ctx) { if (rf & 1) {
8447
8325
  const _r36 = i0.ɵɵgetCurrentView();
8448
8326
  i0.ɵɵelementStart(0, "button", 31);
8449
- i0.ɵɵlistener("click", function TableComponent_td_11_button_1_Template_button_click_0_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r36); const action_r34 = restoredCtx.$implicit; const row_r32 = i0.ɵɵnextContext().$implicit; const ctx_r35 = i0.ɵɵnextContext(); return ctx_r35.handleClickAction($event, action_r34, row_r32); });
8327
+ i0.ɵɵlistener("click", function TableComponent_td_11_button_1_Template_button_click_0_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r36); const action_r34 = restoredCtx.$implicit; const row_r32 = i0.ɵɵnextContext().$implicit; const ctx_r35 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r35.handleClickAction($event, action_r34, row_r32)); });
8450
8328
  i0.ɵɵelement(1, "mat-icon", 32);
8451
8329
  i0.ɵɵelementEnd();
8452
8330
  } if (rf & 2) {
@@ -8471,7 +8349,7 @@ function TableComponent_tr_12_Template(rf, ctx) { if (rf & 1) {
8471
8349
  function TableComponent_tr_13_Template(rf, ctx) { if (rf & 1) {
8472
8350
  const _r40 = i0.ɵɵgetCurrentView();
8473
8351
  i0.ɵɵelementStart(0, "tr", 34);
8474
- i0.ɵɵlistener("click", function TableComponent_tr_13_Template_tr_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r40); const row_r38 = restoredCtx.$implicit; const ctx_r39 = i0.ɵɵnextContext(); return ctx_r39.selection.toggle(row_r38); });
8352
+ i0.ɵɵlistener("click", function TableComponent_tr_13_Template_tr_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r40); const row_r38 = restoredCtx.$implicit; const ctx_r39 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r39.selection.toggle(row_r38)); });
8475
8353
  i0.ɵɵelementEnd();
8476
8354
  } if (rf & 2) {
8477
8355
  const row_r38 = ctx.$implicit;
@@ -8569,8 +8447,7 @@ TableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TableCompone
8569
8447
  } }, inputs: { database: "database", model: "model", hasFilterInput: "hasFilterInput" }, outputs: { select: "select" }, features: [i0.ɵɵNgOnChangesFeature], decls: 14, vars: 5, consts: [[1, "table-box"], ["class", "table-header", 4, "ngIf"], [1, "table-container"], ["mat-table", "", "matSort", "", 3, "dataSource"], ["table", ""], ["matColumnDef", "selectionCheckbox"], ["mat-header-cell", "", 4, "matHeaderCellDef"], ["mat-cell", "", 4, "matCellDef"], [3, "matColumnDef", 4, "ngFor", "ngForOf"], ["matColumnDef", "action"], ["mat-header-row", "", 4, "matHeaderRowDef"], ["mat-row", "", 3, "ngClass", "click", 4, "matRowDef", "matRowDefColumns"], [1, "table-header"], ["floatPlaceholder", "never"], ["matInput", "", 3, "placeholder"], ["filter", ""], ["mat-header-cell", ""], [3, "checked", "indeterminate", "change"], ["mat-cell", ""], [3, "checked", "click", "change"], [3, "matColumnDef"], [4, "ngIf"], [4, "ngIf", "ngIfElse"], ["cellHTML", ""], ["mat-header-cell", "", "mat-sort-header", "", 4, "matHeaderCellDef"], ["mat-header-cell", "", "mat-sort-header", ""], ["mat-cell", "", "class", "mat-cell-text", 3, "ngClass", 4, "matCellDef"], ["mat-cell", "", 1, "mat-cell-text", 3, "ngClass"], ["mat-cell", "", "class", "mat-cell-text", 3, "ngClass", "innerHTML", 4, "matCellDef"], ["mat-cell", "", 1, "mat-cell-text", 3, "ngClass", "innerHTML"], ["mat-mini-fab", "", 3, "color", "click", 4, "ngFor", "ngForOf"], ["mat-mini-fab", "", 3, "color", "click"], [3, "svgIcon"], ["mat-header-row", ""], ["mat-row", "", 3, "ngClass", "click"]], template: function TableComponent_Template(rf, ctx) { if (rf & 1) {
8570
8448
  i0.ɵɵelementStart(0, "div", 0);
8571
8449
  i0.ɵɵtemplate(1, TableComponent_div_1_Template, 5, 3, "div", 1);
8572
- i0.ɵɵelementStart(2, "div", 2);
8573
- i0.ɵɵelementStart(3, "table", 3, 4);
8450
+ i0.ɵɵelementStart(2, "div", 2)(3, "table", 3, 4);
8574
8451
  i0.ɵɵelementContainerStart(5, 5);
8575
8452
  i0.ɵɵtemplate(6, TableComponent_th_6_Template, 2, 2, "th", 6);
8576
8453
  i0.ɵɵtemplate(7, TableComponent_td_7_Template, 2, 1, "td", 7);
@@ -8582,9 +8459,7 @@ TableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TableCompone
8582
8459
  i0.ɵɵelementContainerEnd();
8583
8460
  i0.ɵɵtemplate(12, TableComponent_tr_12_Template, 1, 0, "tr", 10);
8584
8461
  i0.ɵɵtemplate(13, TableComponent_tr_13_Template, 1, 2, "tr", 11);
8585
- i0.ɵɵelementEnd();
8586
- i0.ɵɵelementEnd();
8587
- i0.ɵɵelementEnd();
8462
+ i0.ɵɵelementEnd()()();
8588
8463
  } if (rf & 2) {
8589
8464
  i0.ɵɵadvance(1);
8590
8465
  i0.ɵɵproperty("ngIf", ctx.hasFilterInput);
@@ -8596,14 +8471,10 @@ TableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TableCompone
8596
8471
  i0.ɵɵproperty("matHeaderRowDef", ctx.displayedColumns);
8597
8472
  i0.ɵɵadvance(1);
8598
8473
  i0.ɵɵproperty("matRowDefColumns", ctx.displayedColumns);
8599
- } }, directives: [i1$1.NgIf, i4.MatTable, i5.MatSort, i4.MatColumnDef, i4.MatHeaderCellDef, i4.MatCellDef, i1$1.NgForOf, i4.MatHeaderRowDef, i4.MatRowDef, i1.MatFormField, i2$3.MatInput, i4.MatHeaderCell, i7.MatCheckbox, i4.MatCell, i5.MatSortHeader, i1$1.NgClass, i4$1.MatButton, i5$1.MatIcon, i4.MatHeaderRow, i4.MatRow], pipes: [i6$1.TranslatePipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block}.table-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.table-box[_ngcontent-%COMP%]{height:100%;display:flex;flex-direction:column}.table-header[_ngcontent-%COMP%]{min-height:64px;max-width:500px;display:flex;flex:0 1 auto;align-items:baseline;padding:8px 24px 0;font-size:20px;justify-content:space-between}tr[mat-header-row][_ngcontent-%COMP%], tr[mat-row][_ngcontent-%COMP%]{height:60px}.mat-cell-text[_ngcontent-%COMP%]{overflow:hidden;word-wrap:break-word}td[mat-cell][_ngcontent-%COMP%]{padding-right:15px}th.mat-header-cell[_ngcontent-%COMP%]{padding-right:5px}button[_ngcontent-%COMP%]{margin-right:10px}"] });
8474
+ } }, dependencies: [i1.NgClass, i1.NgForOf, i1.NgIf, i3$2.MatIcon, i2$2.MatButton, i5.MatTable, i5.MatHeaderCellDef, i5.MatHeaderRowDef, i5.MatColumnDef, i5.MatCellDef, i5.MatRowDef, i5.MatHeaderCell, i5.MatCell, i5.MatHeaderRow, i5.MatRow, i4.MatFormField, i5$1.MatInput, i7.MatSort, i7.MatSortHeader, i10.MatCheckbox, i6$2.TranslatePipe], styles: ["[_nghost-%COMP%]{width:100%;height:100%;display:block}.table-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.table-box[_ngcontent-%COMP%]{height:100%;display:flex;flex-direction:column}.table-header[_ngcontent-%COMP%]{min-height:64px;max-width:500px;display:flex;flex:0 1 auto;align-items:baseline;padding:8px 24px 0;font-size:20px;justify-content:space-between}tr[mat-header-row][_ngcontent-%COMP%], tr[mat-row][_ngcontent-%COMP%]{height:60px}.mat-cell-text[_ngcontent-%COMP%]{overflow:hidden;word-wrap:break-word}td[mat-cell][_ngcontent-%COMP%]{padding-right:15px}th.mat-header-cell[_ngcontent-%COMP%]{padding-right:5px}button[_ngcontent-%COMP%]{margin-right:10px}"] });
8600
8475
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableComponent, [{
8601
8476
  type: Component,
8602
- args: [{
8603
- selector: 'igo-table',
8604
- templateUrl: './table.component.html',
8605
- styleUrls: ['./table.component.scss']
8606
- }]
8477
+ args: [{ selector: 'igo-table', template: "<div class='table-box'>\r\n <div class='table-header' *ngIf=\"hasFilterInput\">\r\n <mat-form-field floatPlaceholder='never'>\r\n <input matInput #filter [placeholder]=\"'igo.common.table.filter' | translate\">\r\n </mat-form-field>\r\n </div>\r\n\r\n <div class='table-container'>\r\n <table mat-table #table [dataSource]='dataSource' matSort>\r\n\r\n <!-- Checkbox Column -->\r\n <ng-container matColumnDef=\"selectionCheckbox\">\r\n <th mat-header-cell *matHeaderCellDef>\r\n <mat-checkbox (change)=\"$event ? masterToggle() : null\"\r\n [checked]=\"selection.hasValue() && isAllSelected()\"\r\n [indeterminate]=\"selection.hasValue() && !isAllSelected()\">\r\n </mat-checkbox>\r\n </th>\r\n <td mat-cell *matCellDef=\"let row\">\r\n <mat-checkbox (click)=\"$event.stopPropagation()\"\r\n (change)=\"$event ? selection.toggle(row) : null\"\r\n [checked]=\"selection.isSelected(row)\">\r\n </mat-checkbox>\r\n </td>\r\n </ng-container>\r\n\r\n <ng-container [matColumnDef]='column.name' *ngFor='let column of model.columns'>\r\n <ng-container *ngIf='column.sortable'>\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header> {{column.title}} </th>\r\n </ng-container>\r\n\r\n <ng-container *ngIf='!column.sortable'>\r\n <th mat-header-cell *matHeaderCellDef> {{column.title}} </th>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"!column.html; else cellHTML\">\r\n <td mat-cell *matCellDef='let row' class=\"mat-cell-text\"\r\n [ngClass]=\"model.cellClassFunc ? model.cellClassFunc(row, column) : {}\">\r\n {{getValue(row, column.name)}}\r\n </td>\r\n </ng-container>\r\n\r\n <ng-template #cellHTML>\r\n <td mat-cell *matCellDef='let row' class=\"mat-cell-text\"\r\n [ngClass]=\"model.cellClassFunc ? model.cellClassFunc(row, column) : {}\"\r\n [innerHTML]=\"getValue(row, column.name)\">\r\n </td>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <!-- Action Column -->\r\n <ng-container matColumnDef='action'>\r\n <th mat-header-cell *matHeaderCellDef></th>\r\n <td mat-cell *matCellDef='let row'>\r\n <button *ngFor='let action of model.actions'\r\n mat-mini-fab\r\n [color]='getActionColor(action.color)'\r\n (click)='handleClickAction($event, action, row)'>\r\n <mat-icon svgIcon=\"{{action.icon}}\"></mat-icon>\r\n </button>\r\n </td>\r\n </ng-container>\r\n\r\n <tr mat-header-row *matHeaderRowDef='displayedColumns;'></tr>\r\n <tr mat-row\r\n *matRowDef='let row; columns: displayedColumns;'\r\n [ngClass]=\"model.rowClassFunc ? model.rowClassFunc(row) : {}\"\r\n (click)=\"selection.toggle(row)\">\r\n </tr>\r\n\r\n </table>\r\n </div>\r\n\r\n</div>\r\n", styles: [":host{width:100%;height:100%;display:block}.table-container{display:flex;flex-direction:column;height:100%;overflow:auto;flex:1 1 auto}.table-box{height:100%;display:flex;flex-direction:column}.table-header{min-height:64px;max-width:500px;display:flex;flex:0 1 auto;align-items:baseline;padding:8px 24px 0;font-size:20px;justify-content:space-between}tr[mat-header-row],tr[mat-row]{height:60px}.mat-cell-text{overflow:hidden;word-wrap:break-word}td[mat-cell]{padding-right:15px}th.mat-header-cell{padding-right:5px}button{margin-right:10px}\n"] }]
8607
8478
  }], null, { database: [{
8608
8479
  type: Input
8609
8480
  }], model: [{
@@ -8630,19 +8501,17 @@ class IgoTableModule {
8630
8501
  }
8631
8502
  IgoTableModule.ɵfac = function IgoTableModule_Factory(t) { return new (t || IgoTableModule)(); };
8632
8503
  IgoTableModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoTableModule });
8633
- IgoTableModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
8634
- CommonModule,
8635
- FormsModule,
8636
- CdkTableModule,
8637
- MatIconModule,
8638
- MatButtonModule,
8639
- MatTableModule,
8640
- MatFormFieldModule,
8641
- MatInputModule,
8642
- MatSortModule,
8643
- MatCheckboxModule,
8644
- IgoLanguageModule
8645
- ]] });
8504
+ IgoTableModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
8505
+ FormsModule,
8506
+ CdkTableModule,
8507
+ MatIconModule,
8508
+ MatButtonModule,
8509
+ MatTableModule,
8510
+ MatFormFieldModule,
8511
+ MatInputModule,
8512
+ MatSortModule,
8513
+ MatCheckboxModule,
8514
+ IgoLanguageModule] });
8646
8515
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoTableModule, [{
8647
8516
  type: NgModule,
8648
8517
  args: [{
@@ -8711,7 +8580,7 @@ const _c0 = function (a0, a1) { return { "igo-tool-container-with-toolbar": a0,
8711
8580
  function ToolboxComponent_div_2_Template(rf, ctx) { if (rf & 1) {
8712
8581
  const _r4 = i0.ɵɵgetCurrentView();
8713
8582
  i0.ɵɵelementStart(0, "div", 3);
8714
- i0.ɵɵlistener("@toolSlideInOut.start", function ToolboxComponent_div_2_Template_div_animation_toolSlideInOut_start_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r3 = i0.ɵɵnextContext(); return ctx_r3.onAnimationStart(); })("@toolSlideInOut.done", function ToolboxComponent_div_2_Template_div_animation_toolSlideInOut_done_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r5 = i0.ɵɵnextContext(); return ctx_r5.onAnimationComplete(); });
8583
+ i0.ɵɵlistener("@toolSlideInOut.start", function ToolboxComponent_div_2_Template_div_animation_toolSlideInOut_start_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.onAnimationStart()); })("@toolSlideInOut.done", function ToolboxComponent_div_2_Template_div_animation_toolSlideInOut_done_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r5 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r5.onAnimationComplete()); });
8715
8584
  i0.ɵɵpipe(1, "async");
8716
8585
  i0.ɵɵelement(2, "igo-dynamic-outlet", 4);
8717
8586
  i0.ɵɵelementEnd();
@@ -8925,16 +8794,10 @@ ToolboxComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ToolboxCom
8925
8794
  i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(1, 2, ctx.toolbar$).length > 0);
8926
8795
  i0.ɵɵadvance(2);
8927
8796
  i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(3, 4, ctx.activeTool$));
8928
- } }, directives: [i1$1.NgIf, ActionbarComponent, i1$1.NgClass, DynamicOutletComponent], pipes: [i1$1.AsyncPipe], styles: ["[_nghost-%COMP%]{display:block;position:relative;overflow:hidden;width:100%;height:100%}.igo-tool-container[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0}.igo-tool-container-with-animation[_ngcontent-%COMP%]{transform:translate(100%)}.igo-tool-container-with-toolbar[_ngcontent-%COMP%]{left:50px}igo-actionbar[_ngcontent-%COMP%]{height:100%}igo-actionbar.with-title[_ngcontent-%COMP%]{width:100%;overflow:auto}igo-actionbar[_ngcontent-%COMP%]:not(.with-title){width:48px;overflow:hidden;-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){igo-actionbar[_ngcontent-%COMP%]:not(.with-title){overflow:auto}}igo-dynamic-outlet[_ngcontent-%COMP%]{overflow:auto}"], data: { animation: [toolSlideInOut()] }, changeDetection: 0 });
8797
+ } }, dependencies: [i1.NgClass, i1.NgIf, ActionbarComponent, DynamicOutletComponent, i1.AsyncPipe], styles: ["[_nghost-%COMP%]{display:block;position:relative;overflow:hidden;width:100%;height:100%}.igo-tool-container[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0}.igo-tool-container-with-animation[_ngcontent-%COMP%]{transform:translate3d(100%,0,0)}.igo-tool-container-with-toolbar[_ngcontent-%COMP%]{left:50px}igo-actionbar[_ngcontent-%COMP%]{height:100%}igo-actionbar.with-title[_ngcontent-%COMP%]{width:100%;overflow:auto}igo-actionbar[_ngcontent-%COMP%]:not(.with-title){width:48px;overflow:hidden;-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){igo-actionbar[_ngcontent-%COMP%]:not(.with-title){overflow:auto}}igo-dynamic-outlet[_ngcontent-%COMP%]{overflow:auto}"], data: { animation: [toolSlideInOut()] }, changeDetection: 0 });
8929
8798
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ToolboxComponent, [{
8930
8799
  type: Component,
8931
- args: [{
8932
- selector: 'igo-toolbox',
8933
- templateUrl: 'toolbox.component.html',
8934
- styleUrls: ['toolbox.component.scss'],
8935
- animations: [toolSlideInOut()],
8936
- changeDetection: ChangeDetectionStrategy.OnPush
8937
- }]
8800
+ args: [{ selector: 'igo-toolbox', animations: [toolSlideInOut()], changeDetection: ChangeDetectionStrategy.OnPush, template: "<igo-actionbar\r\n *ngIf=\"(toolbar$ | async).length > 0\"\r\n [store]=\"actionStore\"\r\n [withIcon]=\"true\"\r\n [withTitle]=\"toolbarWithTitle$ | async\"\r\n [withTooltip]=\"(toolbarWithTitle$ | async) === false\"\r\n [scrollActive]=\"toolbarWithTitle$ | async\"\r\n [horizontal]=\"false\">\r\n</igo-actionbar>\r\n\r\n<div\r\n *ngIf=\"activeTool$ | async as tool\"\r\n class=\"igo-tool-container\"\r\n [ngClass]=\"{'igo-tool-container-with-toolbar': !actionStore.empty, 'igo-tool-container-with-animation': animate}\"\r\n [@toolSlideInOut]=\"animation$ | async\"\r\n (@toolSlideInOut.start)=\"onAnimationStart()\"\r\n (@toolSlideInOut.done)=\"onAnimationComplete()\">\r\n\r\n <igo-dynamic-outlet\r\n [component]=\"tool.component\"\r\n [inputs]=\"getToolInputs(tool)\">\r\n </igo-dynamic-outlet>\r\n\r\n</div>\r\n", styles: [":host{display:block;position:relative;overflow:hidden;width:100%;height:100%}.igo-tool-container{position:absolute;top:0;bottom:0;left:0;right:0}.igo-tool-container-with-animation{transform:translate3d(100%,0,0)}.igo-tool-container-with-toolbar{left:50px}igo-actionbar{height:100%}igo-actionbar.with-title{width:100%;overflow:auto}igo-actionbar:not(.with-title){width:48px;overflow:hidden;-o-box-shadow:2px 0px 2px 0px #dddddd;box-shadow:2px 0 2px #ddd}@media only screen and (orientation:portrait) and (max-width: 599px),only screen and (orientation:landscape) and (max-width: 959px){igo-actionbar:not(.with-title){overflow:auto}}igo-dynamic-outlet{overflow:auto}\n"] }]
8938
8801
  }], null, { toolbox: [{
8939
8802
  type: Input
8940
8803
  }], animate: [{
@@ -8956,11 +8819,9 @@ class IgoToolboxModule {
8956
8819
  }
8957
8820
  IgoToolboxModule.ɵfac = function IgoToolboxModule_Factory(t) { return new (t || IgoToolboxModule)(); };
8958
8821
  IgoToolboxModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoToolboxModule });
8959
- IgoToolboxModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
8960
- CommonModule,
8961
- IgoActionModule,
8962
- IgoDynamicComponentModule
8963
- ]] });
8822
+ IgoToolboxModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
8823
+ IgoActionModule,
8824
+ IgoDynamicComponentModule] });
8964
8825
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoToolboxModule, [{
8965
8826
  type: NgModule,
8966
8827
  args: [{
@@ -8993,9 +8854,7 @@ class IgoToolModule {
8993
8854
  }
8994
8855
  IgoToolModule.ɵfac = function IgoToolModule_Factory(t) { return new (t || IgoToolModule)(); };
8995
8856
  IgoToolModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoToolModule });
8996
- IgoToolModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
8997
- CommonModule
8998
- ], IgoToolboxModule] });
8857
+ IgoToolModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoToolboxModule] });
8999
8858
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoToolModule, [{
9000
8859
  type: NgModule,
9001
8860
  args: [{
@@ -9106,15 +8965,10 @@ WidgetOutletComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Widge
9106
8965
  i0.ɵɵtemplate(0, WidgetOutletComponent_igo_dynamic_outlet_0_Template, 1, 3, "igo-dynamic-outlet", 0);
9107
8966
  } if (rf & 2) {
9108
8967
  i0.ɵɵproperty("ngIf", ctx.widget);
9109
- } }, directives: [i1$1.NgIf, DynamicOutletComponent], styles: ["igo-dynamic-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
8968
+ } }, dependencies: [i1.NgIf, DynamicOutletComponent], styles: ["igo-dynamic-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
9110
8969
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WidgetOutletComponent, [{
9111
8970
  type: Component,
9112
- args: [{
9113
- selector: 'igo-widget-outlet',
9114
- templateUrl: './widget-outlet.component.html',
9115
- styleUrls: ['./widget-outlet.component.scss'],
9116
- changeDetection: ChangeDetectionStrategy.OnPush
9117
- }]
8971
+ args: [{ selector: 'igo-widget-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<igo-dynamic-outlet\r\n *ngIf=\"widget\"\r\n [component]=\"widget\"\r\n [inputs]=\"inputs\"\r\n [subscribers]=\"getEffectiveSubscribers()\">\r\n</igo-dynamic-outlet>\r\n", styles: ["igo-dynamic-outlet{height:100%}\n"] }]
9118
8972
  }], function () { return []; }, { widget: [{
9119
8973
  type: Input
9120
8974
  }], inputs: [{
@@ -9134,10 +8988,8 @@ class IgoWidgetOutletModule {
9134
8988
  }
9135
8989
  IgoWidgetOutletModule.ɵfac = function IgoWidgetOutletModule_Factory(t) { return new (t || IgoWidgetOutletModule)(); };
9136
8990
  IgoWidgetOutletModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWidgetOutletModule });
9137
- IgoWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
9138
- CommonModule,
9139
- IgoDynamicComponentModule
9140
- ]] });
8991
+ IgoWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
8992
+ IgoDynamicComponentModule] });
9141
8993
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWidgetOutletModule, [{
9142
8994
  type: NgModule,
9143
8995
  args: [{
@@ -9179,10 +9031,8 @@ IgoWidgetModule.ɵfac = function IgoWidgetModule_Factory(t) { return new (t || I
9179
9031
  IgoWidgetModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWidgetModule });
9180
9032
  IgoWidgetModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
9181
9033
  WidgetService
9182
- ], imports: [[
9183
- CommonModule,
9184
- IgoWidgetOutletModule
9185
- ], IgoWidgetOutletModule] });
9034
+ ], imports: [CommonModule,
9035
+ IgoWidgetOutletModule, IgoWidgetOutletModule] });
9186
9036
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWidgetModule, [{
9187
9037
  type: NgModule,
9188
9038
  args: [{
@@ -9237,15 +9087,10 @@ WorkspaceSelectorComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
9237
9087
  i0.ɵɵelementEnd();
9238
9088
  } if (rf & 2) {
9239
9089
  i0.ɵɵproperty("store", ctx.store)("multi", false)("titleAccessor", ctx.getWorkspaceTitle)("disabled", ctx.disabled);
9240
- } }, directives: [EntitySelectorComponent], styles: ["igo-entity-selector[_ngcontent-%COMP%] mat-form-field .mat-form-field-infix{padding:0}igo-entity-selector[_ngcontent-%COMP%] mat-form-field .mat-form-field-wrapper{padding-bottom:1.75em}"], changeDetection: 0 });
9090
+ } }, dependencies: [EntitySelectorComponent], styles: ["igo-entity-selector[_ngcontent-%COMP%] mat-form-field .mat-form-field-infix{padding:0}igo-entity-selector[_ngcontent-%COMP%] mat-form-field .mat-form-field-wrapper{padding-bottom:1.75em}"], changeDetection: 0 });
9241
9091
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WorkspaceSelectorComponent, [{
9242
9092
  type: Component,
9243
- args: [{
9244
- selector: 'igo-workspace-selector',
9245
- templateUrl: './workspace-selector.component.html',
9246
- styleUrls: ['./workspace-selector.component.scss'],
9247
- changeDetection: ChangeDetectionStrategy.OnPush
9248
- }]
9093
+ args: [{ selector: 'igo-workspace-selector', changeDetection: ChangeDetectionStrategy.OnPush, template: "<igo-entity-selector\r\n [store]=\"store\"\r\n [multi]=\"false\"\r\n [titleAccessor]=\"getWorkspaceTitle\"\r\n [disabled]=\"disabled\"\r\n (selectedChange)=\"onSelectedChange($event)\">\r\n</igo-entity-selector>\r\n", styles: ["igo-entity-selector ::ng-deep mat-form-field .mat-form-field-infix{padding:0}igo-entity-selector ::ng-deep mat-form-field .mat-form-field-wrapper{padding-bottom:1.75em}\n"] }]
9249
9094
  }], null, { store: [{
9250
9095
  type: Input
9251
9096
  }], disabled: [{
@@ -9261,10 +9106,8 @@ class IgoWorkspaceSelectorModule {
9261
9106
  }
9262
9107
  IgoWorkspaceSelectorModule.ɵfac = function IgoWorkspaceSelectorModule_Factory(t) { return new (t || IgoWorkspaceSelectorModule)(); };
9263
9108
  IgoWorkspaceSelectorModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceSelectorModule });
9264
- IgoWorkspaceSelectorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
9265
- CommonModule,
9266
- IgoEntitySelectorModule
9267
- ]] });
9109
+ IgoWorkspaceSelectorModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
9110
+ IgoEntitySelectorModule] });
9268
9111
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceSelectorModule, [{
9269
9112
  type: NgModule,
9270
9113
  args: [{
@@ -9287,7 +9130,7 @@ function WorkspaceWidgetOutletComponent_ng_container_0_Template(rf, ctx) { if (r
9287
9130
  const _r3 = i0.ɵɵgetCurrentView();
9288
9131
  i0.ɵɵelementContainerStart(0);
9289
9132
  i0.ɵɵelementStart(1, "igo-widget-outlet", 1);
9290
- i0.ɵɵlistener("cancel", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_cancel_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.onWidgetCancel(widget_r1); })("complete", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_complete_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.onWidgetComplete(widget_r1); });
9133
+ i0.ɵɵlistener("cancel", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_cancel_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onWidgetCancel(widget_r1)); })("complete", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_complete_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.onWidgetComplete(widget_r1)); });
9291
9134
  i0.ɵɵpipe(2, "async");
9292
9135
  i0.ɵɵpipe(3, "async");
9293
9136
  i0.ɵɵelementEnd();
@@ -9357,15 +9200,10 @@ WorkspaceWidgetOutletComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ ty
9357
9200
  i0.ɵɵpipe(1, "async");
9358
9201
  } if (rf & 2) {
9359
9202
  i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(1, 1, ctx.widget$));
9360
- } }, directives: [i1$1.NgIf, WidgetOutletComponent], pipes: [i1$1.AsyncPipe], styles: ["igo-widget-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
9203
+ } }, dependencies: [i1.NgIf, WidgetOutletComponent, i1.AsyncPipe], styles: ["igo-widget-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
9361
9204
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WorkspaceWidgetOutletComponent, [{
9362
9205
  type: Component,
9363
- args: [{
9364
- selector: 'igo-workspace-widget-outlet',
9365
- templateUrl: './workspace-widget-outlet.component.html',
9366
- styleUrls: ['./workspace-widget-outlet.component.scss'],
9367
- changeDetection: ChangeDetectionStrategy.OnPush
9368
- }]
9206
+ args: [{ selector: 'igo-workspace-widget-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"widget$ | async as widget\">\r\n <igo-widget-outlet\r\n [widget]=\"widget\"\r\n [inputs]=\"widgetInputs$ | async\"\r\n [subscribers]=\"widgetSubscribers$ | async\"\r\n (cancel)=\"onWidgetCancel(widget)\"\r\n (complete)=\"onWidgetComplete(widget)\">\r\n </igo-widget-outlet>\r\n</ng-container>\r\n", styles: ["igo-widget-outlet{height:100%}\n"] }]
9369
9207
  }], function () { return []; }, { workspace: [{
9370
9208
  type: Input
9371
9209
  }], deactivateWidget: [{
@@ -9379,10 +9217,8 @@ class IgoWorkspaceWidgetOutletModule {
9379
9217
  }
9380
9218
  IgoWorkspaceWidgetOutletModule.ɵfac = function IgoWorkspaceWidgetOutletModule_Factory(t) { return new (t || IgoWorkspaceWidgetOutletModule)(); };
9381
9219
  IgoWorkspaceWidgetOutletModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceWidgetOutletModule });
9382
- IgoWorkspaceWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
9383
- CommonModule,
9384
- IgoWidgetOutletModule
9385
- ]] });
9220
+ IgoWorkspaceWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
9221
+ IgoWidgetOutletModule] });
9386
9222
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceWidgetOutletModule, [{
9387
9223
  type: NgModule,
9388
9224
  args: [{
@@ -9405,9 +9241,7 @@ class IgoWorkspaceModule {
9405
9241
  }
9406
9242
  IgoWorkspaceModule.ɵfac = function IgoWorkspaceModule_Factory(t) { return new (t || IgoWorkspaceModule)(); };
9407
9243
  IgoWorkspaceModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceModule });
9408
- IgoWorkspaceModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[
9409
- CommonModule
9410
- ], IgoWorkspaceSelectorModule,
9244
+ IgoWorkspaceModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoWorkspaceSelectorModule,
9411
9245
  IgoWorkspaceWidgetOutletModule] });
9412
9246
  (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceModule, [{
9413
9247
  type: NgModule,
@@ -9625,5 +9459,5 @@ class Workspace {
9625
9459
  * Generated bundle index. Do not edit.
9626
9460
  */
9627
9461
 
9628
- export { ActionStore, ActionbarComponent, ActionbarMode, BackdropComponent, ClickoutDirective, ClonePipe, CollapseDirective, CollapsibleComponent, ConfirmDialogComponent, ConfirmDialogService, ContextMenuDirective, CustomHtmlComponent, DragAndDropDirective, DynamicComponent, DynamicComponentService, DynamicOutletComponent, EntityOperationType, EntitySelectorComponent, EntityStateManager, EntityStore, EntityStoreFilterCustomFuncStrategy, EntityStoreFilterSelectionStrategy, EntityStoreStrategy, EntityStoreWatcher, EntityTableColumnRenderer, EntityTableComponent, EntityTablePaginatorComponent, EntityTableScrollBehavior, EntityTableSelectionState, EntityTransaction, EntityView, FlexibleComponent, FormComponent, FormFieldComponent, FormFieldSelectComponent, FormFieldService, FormFieldTextComponent, FormFieldTextareaComponent, FormGroupComponent, FormService, HomeButtonComponent, IgoActionModule, IgoActionbarModule, IgoBackdropModule, IgoBadgeIconDirective, IgoClickoutModule, IgoCloneModule, IgoCollapsibleModule, IgoConfirmDialogModule, IgoContextMenuModule, IgoCustomHtmlModule, IgoDrapDropModule, IgoDynamicComponentModule, IgoDynamicOutletModule, IgoEntityModule, IgoEntitySelectorModule, IgoEntityTableModule, IgoEntityTablePaginatorModule, IgoFlexibleModule, IgoFormFieldComponent, IgoFormFieldModule, IgoFormFormModule, IgoFormGroupModule, IgoFormModule, IgoHomeButtonModule, IgoImageModule, IgoInteractiveTourModule, IgoJsonDialogModule, IgoKeyValueModule, IgoListModule, IgoMatBadgeIconModule, IgoPanelModule, IgoSidenavModule, IgoSpinnerModule, IgoStopPropagationModule, IgoTableModule, IgoToolModule, IgoToolboxModule, IgoWidgetModule, IgoWidgetOutletModule, IgoWorkspaceModule, IgoWorkspaceSelectorModule, IgoWorkspaceWidgetOutletModule, InteractiveTourComponent, InteractiveTourLoader, InteractiveTourService, JsonDialogComponent, JsonDialogService, KeyValuePipe, ListComponent, ListItemDirective, PanelComponent, SanitizeHtmlPipe, SecureImagePipe, SidenavShimDirective, SpinnerActivityDirective, SpinnerComponent, StopDropPropagationDirective, StopPropagationDirective, TableActionColor, TableComponent, TableDataSource, TableDatabase, ToolComponent, ToolService, Toolbox, ToolboxColor, ToolboxComponent, Widget, WidgetOutletComponent, WidgetService, Workspace, WorkspaceSelectorComponent, WorkspaceStore, WorkspaceWidgetOutletComponent, formControlIsRequired, getAllFormFields, getControlErrorMessage, getDefaultErrorMessages, getEntityIcon, getEntityId, getEntityProperty, getEntityRevision, getEntityTitle, getEntityTitleHtml, getFormFieldByName };
9629
- //# sourceMappingURL=igo2-common.js.map
9462
+ export { ActionStore, ActionbarComponent, ActionbarMode, BackdropComponent, ClickoutDirective, ClonePipe, CollapseDirective, CollapsibleComponent, ConfirmDialogComponent, ConfirmDialogService, ContextMenuDirective, CustomHtmlComponent, DOMService, DragAndDropDirective, DynamicComponent, DynamicComponentService, DynamicOutletComponent, EntityOperationType, EntitySelectorComponent, EntityStateManager, EntityStore, EntityStoreFilterCustomFuncStrategy, EntityStoreFilterSelectionStrategy, EntityStoreStrategy, EntityStoreWatcher, EntityTableColumnRenderer, EntityTableComponent, EntityTablePaginatorComponent, EntityTableScrollBehavior, EntityTableSelectionState, EntityTransaction, EntityView, FlexibleComponent, FormComponent, FormFieldComponent, FormFieldSelectComponent, FormFieldService, FormFieldTextComponent, FormFieldTextareaComponent, FormGroupComponent, FormService, HomeButtonComponent, IgoActionModule, IgoActionbarModule, IgoBackdropModule, IgoBadgeIconDirective, IgoClickoutModule, IgoCloneModule, IgoCollapsibleModule, IgoConfirmDialogModule, IgoContextMenuModule, IgoCustomHtmlModule, IgoDOMModule, IgoDrapDropModule, IgoDynamicComponentModule, IgoDynamicOutletModule, IgoEntityModule, IgoEntitySelectorModule, IgoEntityTableModule, IgoEntityTablePaginatorModule, IgoFlexibleModule, IgoFormFieldComponent, IgoFormFieldModule, IgoFormFormModule, IgoFormGroupModule, IgoFormModule, IgoHomeButtonModule, IgoImageModule, IgoInteractiveTourModule, IgoJsonDialogModule, IgoKeyValueModule, IgoListModule, IgoMatBadgeIconModule, IgoPanelModule, IgoSidenavModule, IgoSpinnerModule, IgoStopPropagationModule, IgoTableModule, IgoToolModule, IgoToolboxModule, IgoWidgetModule, IgoWidgetOutletModule, IgoWorkspaceModule, IgoWorkspaceSelectorModule, IgoWorkspaceWidgetOutletModule, InteractiveTourComponent, InteractiveTourLoader, InteractiveTourService, JsonDialogComponent, JsonDialogService, KeyValuePipe, ListComponent, ListItemDirective, PanelComponent, SanitizeHtmlPipe, SecureImagePipe, SidenavShimDirective, SpinnerActivityDirective, SpinnerComponent, StopDropPropagationDirective, StopPropagationDirective, TableActionColor, TableComponent, TableDataSource, TableDatabase, ToolComponent, ToolService, Toolbox, ToolboxColor, ToolboxComponent, Widget, WidgetOutletComponent, WidgetService, Workspace, WorkspaceSelectorComponent, WorkspaceStore, WorkspaceWidgetOutletComponent, formControlIsRequired, getAllFormFields, getControlErrorMessage, getDefaultErrorMessages, getEntityIcon, getEntityId, getEntityProperty, getEntityRevision, getEntityTitle, getEntityTitleHtml, getFormFieldByName };
9463
+ //# sourceMappingURL=igo2-common.mjs.map