@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
File without changes
@@ -74,5 +74,5 @@ export declare class ActionbarItemComponent implements OnInit, OnDestroy {
74
74
  private updateCheckCondition;
75
75
  private updateIcon;
76
76
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionbarItemComponent, never>;
77
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionbarItemComponent, "igo-actionbar-item", never, { "action": "action"; "color": "color"; "withTitle": "withTitle"; "withIcon": "withIcon"; "withTooltip": "withTooltip"; "disabled": "disabled"; "noDisplay": "noDisplay"; }, { "trigger": "trigger"; }, never, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionbarItemComponent, "igo-actionbar-item", never, { "action": "action"; "color": "color"; "withTitle": "withTitle"; "withIcon": "withIcon"; "withTooltip": "withTooltip"; "disabled": "disabled"; "noDisplay": "noDisplay"; }, { "trigger": "trigger"; }, never, never, false>;
78
78
  }
@@ -142,5 +142,5 @@ export declare class ActionbarComponent implements OnDestroy, OnChanges {
142
142
  scrollDown(): void;
143
143
  scrollUp(): void;
144
144
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionbarComponent, never>;
145
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionbarComponent, "igo-actionbar", never, { "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"; }, {}, never, never>;
145
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionbarComponent, "igo-actionbar", never, { "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"; }, {}, never, never, false>;
146
146
  }
@@ -5,5 +5,5 @@ export declare class BackdropComponent {
5
5
  private _shown;
6
6
  constructor();
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BackdropComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<BackdropComponent, "igo-backdrop", never, { "shown": "shown"; }, {}, never, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<BackdropComponent, "igo-backdrop", never, { "shown": "shown"; }, {}, never, never, false>;
9
9
  }
@@ -28,5 +28,5 @@ export declare class IgoBadgeIconDirective implements OnInit {
28
28
  private updateHidden;
29
29
  private updateDisabled;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<IgoBadgeIconDirective, never>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<IgoBadgeIconDirective, "[igoMatBadgeIcon]", never, { "igoMatBadgeIcon": "igoMatBadgeIcon"; "matBadgeHidden": "matBadgeHidden"; "matBadgeDisabled": "matBadgeDisabled"; "igoMatBadgeInverseColor": "igoMatBadgeInverseColor"; "igoMatBadgeInheritColor": "igoMatBadgeInheritColor"; }, {}, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IgoBadgeIconDirective, "[igoMatBadgeIcon]", never, { "igoMatBadgeIcon": "igoMatBadgeIcon"; "matBadgeHidden": "matBadgeHidden"; "matBadgeDisabled": "matBadgeDisabled"; "igoMatBadgeInverseColor": "igoMatBadgeInverseColor"; "igoMatBadgeInheritColor": "igoMatBadgeInheritColor"; }, {}, never, never, false>;
32
32
  }
@@ -6,5 +6,5 @@ export declare class ClickoutDirective {
6
6
  handleMouseClick(event: MouseEvent, target: HTMLElement): void;
7
7
  constructor(el: ElementRef);
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ClickoutDirective, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<ClickoutDirective, "[igoClickout]", never, {}, { "clickout": "clickout"; }, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickoutDirective, "[igoClickout]", never, {}, { "clickout": "clickout"; }, never, never, false>;
10
10
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class ClonePipe implements PipeTransform {
4
4
  transform(value: any, args?: any): any;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<ClonePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<ClonePipe, "clone">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ClonePipe, "clone", false>;
7
7
  }
@@ -15,5 +15,5 @@ export declare class CollapseDirective {
15
15
  private collapseTarget;
16
16
  private expandTarget;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<CollapseDirective, "[igoCollapse]", never, { "target": "target"; "collapsed": "collapsed"; }, { "toggle": "toggle"; }, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CollapseDirective, "[igoCollapse]", never, { "target": "target"; "collapsed": "collapsed"; }, { "toggle": "toggle"; }, never, never, false>;
19
19
  }
@@ -9,5 +9,5 @@ export declare class CollapsibleComponent {
9
9
  private _collapsed;
10
10
  toggle: EventEmitter<boolean>;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapsibleComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<CollapsibleComponent, "igo-collapsible", never, { "title": "title"; "collapsed": "collapsed"; }, { "toggle": "toggle"; }, never, ["*"]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapsibleComponent, "igo-collapsible", never, { "title": "title"; "collapsed": "collapsed"; }, { "toggle": "toggle"; }, never, ["*"], false>;
13
13
  }
@@ -5,5 +5,5 @@ export declare class ConfirmDialogComponent {
5
5
  confirmMessage: string;
6
6
  constructor(dialogRef: MatDialogRef<ConfirmDialogComponent>);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogComponent, "igo-confirm-dialog", never, {}, {}, never, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogComponent, "igo-confirm-dialog", never, {}, {}, never, never, false>;
9
9
  }
@@ -17,5 +17,5 @@ export declare class ContextMenuDirective {
17
17
  onContextMenu(e: MouseEvent): void;
18
18
  close(): void;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuDirective, never>;
20
- static ɵdir: i0.ɵɵDirectiveDeclaration<ContextMenuDirective, "[igoContextMenu]", never, { "menuContext": "igoContextMenu"; }, { "menuPosition": "menuPosition"; }, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ContextMenuDirective, "[igoContextMenu]", never, { "menuContext": "igoContextMenu"; }, { "menuPosition": "menuPosition"; }, never, never, false>;
21
21
  }
@@ -5,5 +5,5 @@ export declare class CustomHtmlComponent {
5
5
  private _html;
6
6
  constructor();
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomHtmlComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomHtmlComponent, "igo-custom-html", never, { "html": "html"; }, {}, never, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomHtmlComponent, "igo-custom-html", never, { "html": "html"; }, {}, never, never, false>;
9
9
  }
@@ -6,5 +6,5 @@ export declare class SanitizeHtmlPipe implements PipeTransform {
6
6
  constructor(_sanitizer: DomSanitizer);
7
7
  transform(v: string): SafeHtml;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
10
10
  }
@@ -0,0 +1,10 @@
1
+ export interface DOMOptions {
2
+ id?: number;
3
+ name?: string;
4
+ url?: string;
5
+ values?: DOMValue[];
6
+ }
7
+ export interface DOMValue {
8
+ id: number | string;
9
+ value: string;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IgoDOMModule {
4
+ static forRoot(): ModuleWithProviders<IgoDOMModule>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgoDOMModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgoDOMModule, never, never, never>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgoDOMModule>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { DOMOptions, DOMValue } from './dom.interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DOMService {
5
+ private http;
6
+ constructor(http: HttpClient);
7
+ getDom(dom: DOMOptions): Promise<DOMValue[]>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DOMService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<DOMService>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './dom.service';
2
+ export * from './dom.interfaces';
@@ -10,5 +10,5 @@ export declare class DragAndDropDirective {
10
10
  onDrop(evt: any): void;
11
11
  private validExtensions;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropDirective, "[igoDragAndDrop]", never, { "allowedExtensions": "allowedExtensions"; }, { "filesDropped": "filesDropped"; "filesInvalid": "filesInvalid"; }, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropDirective, "[igoDragAndDrop]", never, { "allowedExtensions": "allowedExtensions"; }, { "filesDropped": "filesDropped"; "filesInvalid": "filesInvalid"; }, never, never, false>;
14
14
  }
@@ -66,5 +66,5 @@ export declare class DynamicOutletComponent implements OnChanges, OnDestroy {
66
66
  */
67
67
  private updateSubscribers;
68
68
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOutletComponent, never>;
69
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicOutletComponent, "igo-dynamic-outlet", never, { "component": "component"; "inputs": "inputs"; "subscribers": "subscribers"; }, {}, never, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicOutletComponent, "igo-dynamic-outlet", never, { "component": "component"; "inputs": "inputs"; "subscribers": "subscribers"; }, {}, never, never, false>;
70
70
  }
@@ -88,5 +88,5 @@ export declare class EntitySelectorComponent implements OnInit, OnDestroy {
88
88
  private onSelectFromStore;
89
89
  private updateMultiToggleWithEntities;
90
90
  static ɵfac: i0.ɵɵFactoryDeclaration<EntitySelectorComponent, never>;
91
- static ɵcmp: i0.ɵɵComponentDeclaration<EntitySelectorComponent, "igo-entity-selector", never, { "store": "store"; "titleAccessor": "titleAccessor"; "emptyText": "emptyText"; "multi": "multi"; "multiAllText": "multiAllText"; "multiNoneText": "multiNoneText"; "placeholder": "placeholder"; "disabled": "disabled"; }, { "selectedChange": "selectedChange"; }, never, never>;
91
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntitySelectorComponent, "igo-entity-selector", never, { "store": "store"; "titleAccessor": "titleAccessor"; "emptyText": "emptyText"; "multi": "multi"; "multiAllText": "multiAllText"; "multiNoneText": "multiNoneText"; "placeholder": "placeholder"; "disabled": "disabled"; }, { "selectedChange": "selectedChange"; }, never, never, false>;
92
92
  }
@@ -65,5 +65,5 @@ export declare class EntityTableRowDirective {
65
65
  */
66
66
  private removeCls;
67
67
  static ɵfac: i0.ɵɵFactoryDeclaration<EntityTableRowDirective, never>;
68
- static ɵdir: i0.ɵɵDirectiveDeclaration<EntityTableRowDirective, "[igoEntityTableRow]", never, { "selection": "selection"; "selectOnClick": "selectOnClick"; "highlightSelection": "highlightSelection"; "selected": "selected"; "scrollBehavior": "scrollBehavior"; }, { "select": "select"; }, never>;
68
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EntityTableRowDirective, "[igoEntityTableRow]", never, { "selection": "selection"; "selectOnClick": "selectOnClick"; "highlightSelection": "highlightSelection"; "selected": "selected"; "scrollBehavior": "scrollBehavior"; }, { "select": "select"; }, never, never, false>;
69
69
  }
@@ -4,7 +4,7 @@ import { EntityRecord, EntityState, EntityStore, EntityTableTemplate, EntityTabl
4
4
  import { MatPaginator } from '@angular/material/paginator';
5
5
  import { MatTableDataSource } from '@angular/material/table';
6
6
  import { EntityTablePaginatorOptions } from '../entity-table-paginator/entity-table-paginator.interface';
7
- import { FormBuilder, NgControl, NgForm, FormControlName, FormGroup } from '@angular/forms';
7
+ import { UntypedFormBuilder, NgControl, NgForm, FormControlName, UntypedFormGroup } from '@angular/forms';
8
8
  import { FocusMonitor } from '@angular/cdk/a11y';
9
9
  import { DateAdapter, ErrorStateMatcher } from '@angular/material/core';
10
10
  import * as i0 from "@angular/core";
@@ -19,7 +19,7 @@ export declare class EntityTableComponent implements OnInit, OnChanges, OnDestro
19
19
  protected _defaultErrorStateMatcher: ErrorStateMatcher;
20
20
  private dateAdapter;
21
21
  entitySortChange$: BehaviorSubject<boolean>;
22
- formGroup: FormGroup;
22
+ formGroup: UntypedFormGroup;
23
23
  filteredOptions: Observable<any[]>;
24
24
  /**
25
25
  * Reference to the column renderer types
@@ -127,7 +127,7 @@ export declare class EntityTableComponent implements OnInit, OnChanges, OnDestro
127
127
  * @internal
128
128
  */
129
129
  get fixedHeader(): boolean;
130
- constructor(cdRef: ChangeDetectorRef, formBuilder: FormBuilder, _focusMonitor: FocusMonitor, _elementRef: ElementRef<HTMLElement>, ngControl: NgControl, _parentForm: NgForm, _controlName: FormControlName, _defaultErrorStateMatcher: ErrorStateMatcher, dateAdapter: DateAdapter<Date>);
130
+ constructor(cdRef: ChangeDetectorRef, formBuilder: UntypedFormBuilder, _focusMonitor: FocusMonitor, _elementRef: ElementRef<HTMLElement>, ngControl: NgControl, _parentForm: NgForm, _controlName: FormControlName, _defaultErrorStateMatcher: ErrorStateMatcher, dateAdapter: DateAdapter<Date>);
131
131
  /**
132
132
  * Track the selection state to properly display the selection checkboxes
133
133
  * @internal
@@ -322,5 +322,5 @@ export declare class EntityTableComponent implements OnInit, OnChanges, OnDestro
322
322
  */
323
323
  getColumnKeyWithoutPropertiesTag(column: string): string;
324
324
  static ɵfac: i0.ɵɵFactoryDeclaration<EntityTableComponent, [null, null, null, null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, null]>;
325
- static ɵcmp: i0.ɵɵComponentDeclaration<EntityTableComponent, "igo-entity-table", never, { "store": "store"; "paginator": "paginator"; "template": "template"; "scrollBehavior": "scrollBehavior"; "sortNullsFirst": "sortNullsFirst"; "withPaginator": "withPaginator"; "paginatorOptions": "paginatorOptions"; }, { "entityClick": "entityClick"; "entitySelectChange": "entitySelectChange"; "entitySortChange": "entitySortChange"; }, never, never>;
325
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntityTableComponent, "igo-entity-table", never, { "store": "store"; "paginator": "paginator"; "template": "template"; "scrollBehavior": "scrollBehavior"; "sortNullsFirst": "sortNullsFirst"; "withPaginator": "withPaginator"; "paginatorOptions": "paginatorOptions"; }, { "entityClick": "entityClick"; "entitySelectChange": "entitySelectChange"; "entitySortChange": "entitySortChange"; }, never, never, false>;
326
326
  }
@@ -45,5 +45,5 @@ export declare class EntityTablePaginatorComponent implements OnChanges, OnDestr
45
45
  ngOnDestroy(): void;
46
46
  emitPaginator(): void;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<EntityTablePaginatorComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<EntityTablePaginatorComponent, "igo-entity-table-paginator", never, { "entitySortChange$": "entitySortChange$"; "store": "store"; "paginatorOptions": "paginatorOptions"; }, { "page": "page"; "paginatorChange": "paginatorChange"; }, never, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntityTablePaginatorComponent, "igo-entity-table-paginator", never, { "entitySortChange$": "entitySortChange$"; "store": "store"; "paginatorOptions": "paginatorOptions"; }, { "page": "page"; "paginatorChange": "paginatorChange"; }, never, never, false>;
49
49
  }
@@ -88,6 +88,7 @@ export interface EntityTableColumn {
88
88
  renderer?: EntityTableColumnRenderer;
89
89
  valueAccessor?: (entity: object, record: EntityRecord<object>) => any;
90
90
  visible?: boolean;
91
+ linkColumnForce?: string;
91
92
  sort?: boolean;
92
93
  type?: string;
93
94
  multiple?: boolean;
@@ -37,5 +37,5 @@ export declare class FlexibleComponent implements OnInit, OnDestroy {
37
37
  ngOnDestroy(): void;
38
38
  private setSize;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<FlexibleComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<FlexibleComponent, "igo-flexible", never, { "initial": "initial"; "collapsed": "collapsed"; "expanded": "expanded"; "initialMobile": "initialMobile"; "collapsedMobile": "collapsedMobile"; "expandedMobile": "expandedMobile"; "direction": "direction"; "state": "state"; }, {}, never, ["*", "[igoFlexibleFill]"]>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<FlexibleComponent, "igo-flexible", never, { "initial": "initial"; "collapsed": "collapsed"; "expanded": "expanded"; "initialMobile": "initialMobile"; "collapsedMobile": "collapsedMobile"; "expandedMobile": "expandedMobile"; "direction": "direction"; "state": "state"; }, {}, never, ["*", "[igoFlexibleFill]"], false>;
41
41
  }
@@ -49,5 +49,5 @@ export declare class FormComponent implements OnChanges {
49
49
  */
50
50
  private clear;
51
51
  static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "igo-form", never, { "form": "form"; "formData": "formData"; "autocomplete": "autocomplete"; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"]>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "igo-form", never, { "form": "form"; "formData": "formData"; "autocomplete": "autocomplete"; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], false>;
53
53
  }
@@ -1,5 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import type { FormControl } from '@angular/forms';
2
+ import type { UntypedFormControl } from '@angular/forms';
3
3
  import { BehaviorSubject } from 'rxjs';
4
4
  import { FormFieldSelectChoice } from '../shared/form.interfaces';
5
5
  import * as i0 from "@angular/core";
@@ -17,7 +17,7 @@ export declare class FormFieldSelectComponent implements OnInit {
17
17
  /**
18
18
  * The field's form control
19
19
  */
20
- formControl: FormControl;
20
+ formControl: UntypedFormControl;
21
21
  /**
22
22
  * Field placeholder
23
23
  */
@@ -44,5 +44,5 @@ export declare class FormFieldSelectComponent implements OnInit {
44
44
  onDisableSwitchClick(): void;
45
45
  private toggleDisabled;
46
46
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldSelectComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldSelectComponent, "igo-form-field-select", never, { "choices": "choices"; "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldSelectComponent, "igo-form-field-select", never, { "choices": "choices"; "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never, false>;
48
48
  }
@@ -1,5 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import type { FormControl } from '@angular/forms';
2
+ import type { UntypedFormControl } from '@angular/forms';
3
3
  import { BehaviorSubject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
@@ -10,7 +10,7 @@ export declare class FormFieldTextComponent implements OnInit {
10
10
  /**
11
11
  * The field's form control
12
12
  */
13
- formControl: FormControl;
13
+ formControl: UntypedFormControl;
14
14
  /**
15
15
  * Field placeholder
16
16
  */
@@ -37,5 +37,5 @@ export declare class FormFieldTextComponent implements OnInit {
37
37
  onDisableSwitchClick(): void;
38
38
  private toggleDisabled;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTextComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTextComponent, "igo-form-field-text", never, { "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTextComponent, "igo-form-field-text", never, { "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never, false>;
41
41
  }
@@ -1,5 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import type { FormControl } from '@angular/forms';
2
+ import type { UntypedFormControl } from '@angular/forms';
3
3
  import { BehaviorSubject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
@@ -10,7 +10,7 @@ export declare class FormFieldTextareaComponent implements OnInit {
10
10
  /**
11
11
  * The field's form control
12
12
  */
13
- formControl: FormControl;
13
+ formControl: UntypedFormControl;
14
14
  /**
15
15
  * Field placeholder
16
16
  */
@@ -37,5 +37,5 @@ export declare class FormFieldTextareaComponent implements OnInit {
37
37
  onDisableSwitchClick(): void;
38
38
  private toggleDisabled;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTextareaComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTextareaComponent, "igo-form-field-textarea", never, { "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTextareaComponent, "igo-form-field-textarea", never, { "formControl": "formControl"; "placeholder": "placeholder"; "errors": "errors"; "disableSwitch": "disableSwitch"; }, {}, never, never, false>;
41
41
  }
@@ -30,5 +30,5 @@ export declare class FormFieldComponent {
30
30
  }) => void;
31
31
  };
32
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "igo-form-field", never, { "field": "field"; }, {}, never, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "igo-form-field", never, { "field": "field"; }, {}, never, never, false>;
34
34
  }
@@ -1,4 +1,4 @@
1
- import { FormGroup } from '@angular/forms';
1
+ import { UntypedFormGroup } from '@angular/forms';
2
2
  import { FormField, FormFieldGroup } from '../shared/form.interfaces';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
@@ -20,7 +20,7 @@ export declare class FormGroupComponent {
20
20
  /**
21
21
  * Form group control
22
22
  */
23
- get formControl(): FormGroup;
23
+ get formControl(): UntypedFormGroup;
24
24
  constructor();
25
25
  /**
26
26
  * Return the number of columns a field should occupy.
@@ -45,5 +45,5 @@ export declare class FormGroupComponent {
45
45
  */
46
46
  getErrorMessage(): string;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "igo-form-group", never, { "group": "group"; "errors": "errors"; }, {}, never, ["*"]>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "igo-form-group", never, { "group": "group"; "errors": "errors"; }, {}, never, ["*"], false>;
49
49
  }
@@ -1,9 +1,9 @@
1
- import { FormControl, FormGroup, ValidatorFn } from '@angular/forms';
1
+ import { UntypedFormControl, UntypedFormGroup, ValidatorFn } from '@angular/forms';
2
2
  import { BehaviorSubject } from 'rxjs';
3
3
  export interface Form {
4
4
  fields: FormField[];
5
5
  groups: FormFieldGroup[];
6
- control: FormGroup;
6
+ control: UntypedFormGroup;
7
7
  }
8
8
  export interface FormFieldGroupConfig {
9
9
  name: string;
@@ -12,7 +12,7 @@ export interface FormFieldGroupConfig {
12
12
  }
13
13
  export interface FormFieldGroup extends FormFieldGroupConfig {
14
14
  fields: FormField[];
15
- control: FormGroup;
15
+ control: UntypedFormGroup;
16
16
  }
17
17
  export interface FormFieldGroupOptions {
18
18
  validator?: ValidatorFn;
@@ -34,7 +34,7 @@ export interface FormFieldConfig<T extends FormFieldInputs = FormFieldInputs> {
34
34
  };
35
35
  }
36
36
  export interface FormField<T extends FormFieldInputs = FormFieldInputs> extends FormFieldConfig<T> {
37
- control: FormControl;
37
+ control: UntypedFormControl;
38
38
  }
39
39
  export interface FormFieldOptions {
40
40
  validator?: ValidatorFn;
@@ -1,9 +1,9 @@
1
- import { FormBuilder } from '@angular/forms';
1
+ import { UntypedFormBuilder } from '@angular/forms';
2
2
  import { Form, FormField, FormFieldConfig, FormFieldGroup, FormFieldGroupConfig } from './form.interfaces';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FormService {
5
5
  private formBuilder;
6
- constructor(formBuilder: FormBuilder);
6
+ constructor(formBuilder: UntypedFormBuilder);
7
7
  form(fields: FormField[], groups: FormFieldGroup[]): Form;
8
8
  group(config: FormFieldGroupConfig, fields: FormField[]): FormFieldGroup;
9
9
  field(config: FormFieldConfig): FormField;
@@ -5,5 +5,5 @@ export declare class HomeButtonComponent {
5
5
  constructor();
6
6
  onUnselectButtonClick(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<HomeButtonComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<HomeButtonComponent, "igo-home-button", never, {}, { "unselectButton": "unselectButton"; }, never, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<HomeButtonComponent, "igo-home-button", never, {}, { "unselectButton": "unselectButton"; }, never, never, false>;
9
9
  }
@@ -1,11 +1,13 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { HttpClient } from '@angular/common/http';
3
3
  import { Observable } from 'rxjs';
4
+ import { ConfigService } from '@igo2/core';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class SecureImagePipe implements PipeTransform {
6
7
  private http;
7
- constructor(http: HttpClient);
8
+ private configService?;
9
+ constructor(http: HttpClient, configService?: ConfigService);
8
10
  transform(url: string): Observable<string>;
9
11
  static ɵfac: i0.ɵɵFactoryDeclaration<SecureImagePipe, never>;
10
- static ɵpipe: i0.ɵɵPipeDeclaration<SecureImagePipe, "secureImage">;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<SecureImagePipe, "secureImage", false>;
11
13
  }
@@ -26,5 +26,5 @@ export declare class InteractiveTourComponent {
26
26
  constructor(interactiveTourService: InteractiveTourService, toolService: ToolService);
27
27
  startInteractiveTour(): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTourComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTourComponent, "igo-interactive-tour", never, { "tourToStart": "tourToStart"; "styleButton": "styleButton"; "discoverTitleInLocale$": "discoverTitleInLocale$"; }, {}, never, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTourComponent, "igo-interactive-tour", never, { "tourToStart": "tourToStart"; "styleButton": "styleButton"; "discoverTitleInLocale$": "discoverTitleInLocale$"; }, {}, never, never, false>;
30
30
  }
@@ -9,5 +9,5 @@ export declare class JsonDialogComponent {
9
9
  isObject(val: any): boolean;
10
10
  getKey(baseKey: any, key: any): string;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<JsonDialogComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<JsonDialogComponent, "igo-json-dialog", never, {}, {}, never, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<JsonDialogComponent, "igo-json-dialog", never, {}, {}, never, never, false>;
13
13
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class KeyValuePipe implements PipeTransform {
4
4
  transform(value: any, args?: any): any;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<KeyValuePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<KeyValuePipe, "keyvalue">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<KeyValuePipe, "keyvalue", false>;
7
7
  }
@@ -39,5 +39,5 @@ export declare class ListItemDirective {
39
39
  private addCls;
40
40
  private removeCls;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<ListItemDirective, never>;
42
- static ɵdir: i0.ɵɵDirectiveDeclaration<ListItemDirective, "[igoListItem]", never, { "color": "color"; "focused": "focused"; "selected": "selected"; "disabled": "disabled"; }, { "beforeSelect": "beforeSelect"; "beforeFocus": "beforeFocus"; "beforeUnselect": "beforeUnselect"; "beforeUnfocus": "beforeUnfocus"; "beforeDisable": "beforeDisable"; "beforeEnable": "beforeEnable"; "focus": "focus"; "unfocus": "unfocus"; "select": "select"; "unselect": "unselect"; "disable": "disable"; "enable": "enable"; }, never>;
42
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ListItemDirective, "[igoListItem]", never, { "color": "color"; "focused": "focused"; "selected": "selected"; "disabled": "disabled"; }, { "beforeSelect": "beforeSelect"; "beforeFocus": "beforeFocus"; "beforeUnselect": "beforeUnselect"; "beforeUnfocus": "beforeUnfocus"; "beforeDisable": "beforeDisable"; "beforeEnable": "beforeEnable"; "focus": "focus"; "unfocus": "unfocus"; "select": "select"; "unselect": "unselect"; "disable": "disable"; "enable": "enable"; }, never, never, false>;
43
43
  }
@@ -47,5 +47,5 @@ export declare class ListComponent implements AfterViewInit, OnInit, OnDestroy {
47
47
  private getFocusedIndex;
48
48
  private navigate;
49
49
  static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
50
- static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "igo-list", never, { "navigation": "navigation"; "selection": "selection"; }, {}, ["listItems"], ["*"]>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "igo-list", never, { "navigation": "navigation"; "selection": "selection"; }, {}, ["listItems"], ["*"], false>;
51
51
  }
@@ -7,5 +7,5 @@ export declare class PanelComponent {
7
7
  set withHeader(value: boolean);
8
8
  private _withHeader;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "igo-panel", never, { "title": "title"; "withHeader": "withHeader"; }, {}, never, ["[panelLeftButton]", "[panelHeader]", "[panelRightButton]", "*"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "igo-panel", never, { "title": "title"; "withHeader": "withHeader"; }, {}, never, ["[panelLeftButton]", "[panelHeader]", "[panelRightButton]", "*"], false>;
11
11
  }
@@ -16,5 +16,5 @@ export declare class SidenavShimDirective {
16
16
  onClose(): void;
17
17
  constructor(component: MatSidenav, renderer: Renderer2);
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavShimDirective, [{ self: true; }, null]>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavShimDirective, "[igoSidenavShim]", never, {}, {}, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavShimDirective, "[igoSidenavShim]", never, {}, {}, never, never, false>;
20
20
  }
@@ -28,5 +28,5 @@ export declare class SpinnerActivityDirective implements OnInit, OnDestroy {
28
28
  */
29
29
  ngOnDestroy(): void;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerActivityDirective, [{ self: true; }, null]>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<SpinnerActivityDirective, "[igoSpinnerActivity]", never, {}, {}, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SpinnerActivityDirective, "[igoSpinnerActivity]", never, {}, {}, never, never, false>;
32
32
  }
@@ -8,5 +8,5 @@ export declare class SpinnerComponent {
8
8
  show(): void;
9
9
  hide(): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "igo-spinner", never, { "shown": "shown"; }, {}, never, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "igo-spinner", never, { "shown": "shown"; }, {}, never, never, false>;
12
12
  }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class StopDropPropagationDirective {
3
3
  onDrop(event: any): void;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<StopDropPropagationDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<StopDropPropagationDirective, "[igoStopDropPropagation]", never, {}, {}, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StopDropPropagationDirective, "[igoStopDropPropagation]", never, {}, {}, never, never, false>;
6
6
  }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class StopPropagationDirective {
3
3
  onClick(event: any): void;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<StopPropagationDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[igoStopPropagation]", never, {}, {}, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[igoStopPropagation]", never, {}, {}, never, never, false>;
6
6
  }
@@ -36,5 +36,5 @@ export declare class TableComponent implements OnChanges, OnInit, AfterViewInit
36
36
  masterToggle(): void;
37
37
  handleClickAction(event: any, action: any, row: any): void;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "igo-table", never, { "database": "database"; "model": "model"; "hasFilterInput": "hasFilterInput"; }, { "select": "select"; }, never, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "igo-table", never, { "database": "database"; "model": "model"; "hasFilterInput": "hasFilterInput"; }, { "select": "select"; }, never, never, false>;
40
40
  }
@@ -123,5 +123,5 @@ export declare class ToolboxComponent implements OnInit, OnDestroy {
123
123
  */
124
124
  private unAnimate;
125
125
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxComponent, never>;
126
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxComponent, "igo-toolbox", never, { "toolbox": "toolbox"; "animate": "animate"; "color": "color"; }, {}, never, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxComponent, "igo-toolbox", never, { "toolbox": "toolbox"; "animate": "animate"; "color": "color"; }, {}, never, never, false>;
127
127
  }
@@ -67,5 +67,5 @@ export declare class WidgetOutletComponent implements OnDestroy {
67
67
  */
68
68
  private destroyWidget;
69
69
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetOutletComponent, never>;
70
- static ɵcmp: i0.ɵɵComponentDeclaration<WidgetOutletComponent, "igo-widget-outlet", never, { "widget": "widget"; "inputs": "inputs"; "subscribers": "subscribers"; }, { "complete": "complete"; "cancel": "cancel"; }, never, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetOutletComponent, "igo-widget-outlet", never, { "widget": "widget"; "inputs": "inputs"; "subscribers": "subscribers"; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, false>;
71
71
  }
@@ -35,5 +35,5 @@ export declare class WorkspaceSelectorComponent {
35
35
  value: Workspace;
36
36
  }): void;
37
37
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": "store"; "disabled": "disabled"; }, { "selectedChange": "selectedChange"; }, never, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": "store"; "disabled": "disabled"; }, { "selectedChange": "selectedChange"; }, never, never, false>;
39
39
  }
@@ -53,5 +53,5 @@ export declare class WorkspaceWidgetOutletComponent {
53
53
  */
54
54
  onWidgetComplete(widget: Widget): void;
55
55
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceWidgetOutletComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceWidgetOutletComponent, "igo-workspace-widget-outlet", never, { "workspace": "workspace"; }, { "deactivateWidget": "deactivateWidget"; }, never, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceWidgetOutletComponent, "igo-workspace-widget-outlet", never, { "workspace": "workspace"; }, { "deactivateWidget": "deactivateWidget"; }, never, never, false>;
57
57
  }