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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (815) hide show
  1. package/action/index.d.ts +5 -0
  2. package/action/public_api.d.ts +4 -0
  3. package/action/shared/action.interfaces.d.ts +18 -0
  4. package/action/shared/store.d.ts +8 -0
  5. package/backdrop/index.d.ts +5 -0
  6. package/backdrop/public_api.d.ts +2 -0
  7. package/badge/index.d.ts +5 -0
  8. package/badge/public_api.d.ts +2 -0
  9. package/clickout/index.d.ts +5 -0
  10. package/clickout/public_api.d.ts +2 -0
  11. package/clone/index.d.ts +5 -0
  12. package/clone/public_api.d.ts +2 -0
  13. package/collapsible/index.d.ts +5 -0
  14. package/collapsible/public_api.d.ts +6 -0
  15. package/color/color-picker-form-field/index.d.ts +2 -0
  16. package/color/index.d.ts +5 -0
  17. package/color/public_api.d.ts +1 -0
  18. package/confirm-dialog/index.d.ts +5 -0
  19. package/confirm-dialog/public_api.d.ts +4 -0
  20. package/context-menu/index.d.ts +5 -0
  21. package/context-menu/public_api.d.ts +6 -0
  22. package/custom-html/index.d.ts +5 -0
  23. package/custom-html/public_api.d.ts +6 -0
  24. package/dom/index.d.ts +5 -0
  25. package/dom/public_api.d.ts +3 -0
  26. package/drag-drop/index.d.ts +5 -0
  27. package/drag-drop/public_api.d.ts +2 -0
  28. package/dynamic-component/index.d.ts +5 -0
  29. package/dynamic-component/public_api.d.ts +4 -0
  30. package/entity/entity-selector/index.d.ts +2 -0
  31. package/entity/entity-table/index.d.ts +2 -0
  32. package/entity/entity-table-paginator/index.d.ts +3 -0
  33. package/entity/entity.module.d.ts +16 -0
  34. package/entity/index.d.ts +5 -0
  35. package/entity/public_api.d.ts +5 -0
  36. package/environment/index.d.ts +5 -0
  37. package/esm2022/action/action.module.mjs +19 -0
  38. package/esm2022/action/actionbar/actionbar-item.component.mjs +192 -0
  39. package/esm2022/action/actionbar/actionbar.component.mjs +277 -0
  40. package/esm2022/action/actionbar/actionbar.module.mjs +19 -0
  41. package/esm2022/action/igo2-common-action.mjs +5 -0
  42. package/esm2022/action/public_api.mjs +5 -0
  43. package/esm2022/action/shared/action.enums.mjs +7 -0
  44. package/esm2022/action/shared/action.interfaces.mjs +2 -0
  45. package/esm2022/action/shared/index.mjs +4 -0
  46. package/esm2022/action/shared/store.mjs +8 -0
  47. package/esm2022/backdrop/backdrop.component.mjs +22 -0
  48. package/esm2022/backdrop/backdrop.module.mjs +25 -0
  49. package/esm2022/backdrop/igo2-common-backdrop.mjs +5 -0
  50. package/esm2022/backdrop/public_api.mjs +3 -0
  51. package/esm2022/badge/badge-icon.directive.mjs +149 -0
  52. package/esm2022/badge/badge-icon.module.mjs +25 -0
  53. package/esm2022/badge/igo2-common-badge.mjs +5 -0
  54. package/esm2022/badge/public_api.mjs +3 -0
  55. package/esm2022/clickout/clickout.directive.mjs +32 -0
  56. package/esm2022/clickout/clickout.module.mjs +25 -0
  57. package/esm2022/clickout/igo2-common-clickout.mjs +5 -0
  58. package/esm2022/clickout/public_api.mjs +3 -0
  59. package/esm2022/clone/clone.module.mjs +25 -0
  60. package/esm2022/clone/clone.pipe.mjs +25 -0
  61. package/esm2022/clone/igo2-common-clone.mjs +5 -0
  62. package/esm2022/clone/public_api.mjs +3 -0
  63. package/esm2022/collapsible/collapse.directive.mjs +57 -0
  64. package/esm2022/collapsible/collapsible.component.mjs +38 -0
  65. package/esm2022/collapsible/collapsible.module.mjs +26 -0
  66. package/esm2022/collapsible/igo2-common-collapsible.mjs +5 -0
  67. package/esm2022/collapsible/public_api.mjs +10 -0
  68. package/esm2022/color/color-picker-form-field/color-picker-form-field.component.mjs +104 -0
  69. package/esm2022/color/color-picker-form-field/color-picker-form-field.module.mjs +19 -0
  70. package/esm2022/color/color-picker-form-field/index.mjs +3 -0
  71. package/esm2022/color/igo2-common-color.mjs +5 -0
  72. package/esm2022/color/public_api.mjs +2 -0
  73. package/esm2022/confirm-dialog/confirm-dialog.component.mjs +31 -0
  74. package/esm2022/confirm-dialog/confirm-dialog.interface.mjs +2 -0
  75. package/esm2022/confirm-dialog/confirm-dialog.module.mjs +27 -0
  76. package/esm2022/confirm-dialog/confirm-dialog.service.mjs +35 -0
  77. package/esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs +5 -0
  78. package/esm2022/confirm-dialog/public_api.mjs +5 -0
  79. package/esm2022/context-menu/context-menu.directive.mjs +109 -0
  80. package/esm2022/context-menu/context-menu.module.mjs +26 -0
  81. package/esm2022/context-menu/igo2-common-context-menu.mjs +5 -0
  82. package/esm2022/context-menu/long-press.directive.mjs +66 -0
  83. package/esm2022/context-menu/public_api.mjs +10 -0
  84. package/esm2022/custom-html/custom-html.component.mjs +22 -0
  85. package/esm2022/custom-html/custom-html.module.mjs +25 -0
  86. package/esm2022/custom-html/custom-html.pipe.mjs +23 -0
  87. package/esm2022/custom-html/igo2-common-custom-html.mjs +5 -0
  88. package/esm2022/custom-html/public_api.mjs +10 -0
  89. package/esm2022/dom/dom.interfaces.mjs +2 -0
  90. package/esm2022/dom/dom.module.mjs +27 -0
  91. package/esm2022/dom/dom.service.mjs +35 -0
  92. package/esm2022/dom/igo2-common-dom.mjs +5 -0
  93. package/esm2022/dom/public_api.mjs +4 -0
  94. package/esm2022/drag-drop/drag-drop.directive.mjs +82 -0
  95. package/esm2022/drag-drop/drag-drop.module.mjs +25 -0
  96. package/esm2022/drag-drop/igo2-common-drag-drop.mjs +5 -0
  97. package/esm2022/drag-drop/public_api.mjs +3 -0
  98. package/esm2022/dynamic-component/dynamic-component.module.mjs +19 -0
  99. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +129 -0
  100. package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +19 -0
  101. package/esm2022/dynamic-component/igo2-common-dynamic-component.mjs +5 -0
  102. package/esm2022/dynamic-component/public_api.mjs +5 -0
  103. package/esm2022/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -0
  104. package/esm2022/dynamic-component/shared/dynamic-component.mjs +183 -0
  105. package/esm2022/dynamic-component/shared/dynamic-component.service.mjs +30 -0
  106. package/esm2022/dynamic-component/shared/index.mjs +4 -0
  107. package/esm2022/entity/entity-selector/entity-selector.component.mjs +174 -0
  108. package/esm2022/entity/entity-selector/entity-selector.module.mjs +19 -0
  109. package/esm2022/entity/entity-selector/index.mjs +3 -0
  110. package/esm2022/entity/entity-table/entity-table-row.directive.mjs +138 -0
  111. package/esm2022/entity/entity-table/entity-table.component.mjs +883 -0
  112. package/esm2022/entity/entity-table/entity-table.module.mjs +19 -0
  113. package/esm2022/entity/entity-table/index.mjs +3 -0
  114. package/esm2022/entity/entity-table-paginator/entity-table-paginator.component.mjs +158 -0
  115. package/esm2022/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
  116. package/esm2022/entity/entity-table-paginator/entity-table-paginator.module.mjs +19 -0
  117. package/esm2022/entity/entity-table-paginator/index.mjs +4 -0
  118. package/esm2022/entity/entity.module.mjs +30 -0
  119. package/esm2022/entity/igo2-common-entity.mjs +5 -0
  120. package/esm2022/entity/public_api.mjs +6 -0
  121. package/esm2022/entity/shared/entity.enums.mjs +28 -0
  122. package/esm2022/entity/shared/entity.interfaces.mjs +2 -0
  123. package/esm2022/entity/shared/entity.utils.mjs +73 -0
  124. package/esm2022/entity/shared/index.mjs +10 -0
  125. package/esm2022/entity/shared/state.mjs +194 -0
  126. package/esm2022/entity/shared/store.mjs +322 -0
  127. package/esm2022/entity/shared/strategies/filter-custom-function.mjs +80 -0
  128. package/esm2022/entity/shared/strategies/filter-selection.mjs +81 -0
  129. package/esm2022/entity/shared/strategies/index.mjs +4 -0
  130. package/esm2022/entity/shared/strategies/strategy.mjs +78 -0
  131. package/esm2022/entity/shared/transaction.mjs +329 -0
  132. package/esm2022/entity/shared/view.mjs +330 -0
  133. package/esm2022/entity/shared/watcher.mjs +135 -0
  134. package/esm2022/environment/environment.interface.mjs +2 -0
  135. package/esm2022/environment/igo2-common-environment.mjs +5 -0
  136. package/esm2022/environment/public_api.mjs +2 -0
  137. package/esm2022/flexible/flexible.component.mjs +135 -0
  138. package/esm2022/flexible/flexible.module.mjs +25 -0
  139. package/esm2022/flexible/flexible.type.mjs +2 -0
  140. package/esm2022/flexible/igo2-common-flexible.mjs +5 -0
  141. package/esm2022/flexible/public_api.mjs +4 -0
  142. package/esm2022/form/form/form.component.mjs +103 -0
  143. package/esm2022/form/form/form.module.mjs +19 -0
  144. package/esm2022/form/form/index.mjs +3 -0
  145. package/esm2022/form/form-dialog/form-dialog.component.mjs +94 -0
  146. package/esm2022/form/form-dialog/form-dialog.interface.mjs +2 -0
  147. package/esm2022/form/form-dialog/form-dialog.module.mjs +31 -0
  148. package/esm2022/form/form-dialog/form-dialog.service.mjs +30 -0
  149. package/esm2022/form/form-dialog/index.mjs +5 -0
  150. package/esm2022/form/form-field/form-field-select.component.mjs +117 -0
  151. package/esm2022/form/form-field/form-field-text.component.mjs +126 -0
  152. package/esm2022/form/form-field/form-field-textarea.component.mjs +95 -0
  153. package/esm2022/form/form-field/form-field.component.mjs +65 -0
  154. package/esm2022/form/form-field/form-field.directive.mjs +11 -0
  155. package/esm2022/form/form-field/form-field.module.mjs +23 -0
  156. package/esm2022/form/form-field/index.mjs +7 -0
  157. package/esm2022/form/form-group/form-group.component.mjs +82 -0
  158. package/esm2022/form/form-group/form-group.module.mjs +19 -0
  159. package/esm2022/form/form-group/index.mjs +3 -0
  160. package/esm2022/form/form.module.mjs +32 -0
  161. package/esm2022/form/igo2-common-form.mjs +5 -0
  162. package/esm2022/form/public_api.mjs +7 -0
  163. package/esm2022/form/shared/form-field-component.mjs +7 -0
  164. package/esm2022/form/shared/form-field.service.mjs +29 -0
  165. package/esm2022/form/shared/form.interfaces.mjs +2 -0
  166. package/esm2022/form/shared/form.service.mjs +82 -0
  167. package/esm2022/form/shared/form.utils.mjs +41 -0
  168. package/esm2022/form/shared/index.mjs +6 -0
  169. package/esm2022/home-button/home-button.component.mjs +26 -0
  170. package/esm2022/home-button/home-button.module.mjs +19 -0
  171. package/esm2022/home-button/igo2-common-home-button.mjs +5 -0
  172. package/esm2022/home-button/public_api.mjs +3 -0
  173. package/esm2022/icon/icon/icon.component.mjs +38 -0
  174. package/esm2022/icon/icon.provider.mjs +14 -0
  175. package/esm2022/icon/igo2-common-icon.mjs +5 -0
  176. package/esm2022/icon/public_api.mjs +4 -0
  177. package/esm2022/icon/shared/icon.interface.mjs +2 -0
  178. package/esm2022/icon/shared/icon.service.mjs +26 -0
  179. package/esm2022/icon/shared/icons.mjs +42 -0
  180. package/esm2022/icon/shared/index.mjs +4 -0
  181. package/esm2022/image/igo2-common-image.mjs +5 -0
  182. package/esm2022/image/image-error.directive.mjs +35 -0
  183. package/esm2022/image/image.module.mjs +26 -0
  184. package/esm2022/image/public_api.mjs +7 -0
  185. package/esm2022/image/secure-image.pipe.mjs +66 -0
  186. package/esm2022/interactive-tour/igo2-common-interactive-tour.mjs +5 -0
  187. package/esm2022/interactive-tour/interactive-tour.component.mjs +133 -0
  188. package/esm2022/interactive-tour/interactive-tour.interface.mjs +2 -0
  189. package/esm2022/interactive-tour/interactive-tour.loader.mjs +49 -0
  190. package/esm2022/interactive-tour/interactive-tour.module.mjs +19 -0
  191. package/esm2022/interactive-tour/interactive-tour.service.mjs +303 -0
  192. package/esm2022/interactive-tour/public_api.mjs +6 -0
  193. package/esm2022/json-dialog/igo2-common-json-dialog.mjs +5 -0
  194. package/esm2022/json-dialog/json-dialog.component.mjs +38 -0
  195. package/esm2022/json-dialog/json-dialog.module.mjs +26 -0
  196. package/esm2022/json-dialog/json-dialog.service.mjs +26 -0
  197. package/esm2022/json-dialog/public_api.mjs +4 -0
  198. package/esm2022/keyvalue/igo2-common-keyvalue.mjs +5 -0
  199. package/esm2022/keyvalue/keyvalue.module.mjs +25 -0
  200. package/esm2022/keyvalue/keyvalue.pipe.mjs +19 -0
  201. package/esm2022/keyvalue/public_api.mjs +3 -0
  202. package/esm2022/list/igo2-common-list.mjs +5 -0
  203. package/esm2022/list/list-item.directive.mjs +166 -0
  204. package/esm2022/list/list.component.mjs +252 -0
  205. package/esm2022/list/list.module.mjs +26 -0
  206. package/esm2022/list/public_api.mjs +7 -0
  207. package/esm2022/panel/igo2-common-panel.mjs +5 -0
  208. package/esm2022/panel/panel.component.mjs +30 -0
  209. package/esm2022/panel/panel.module.mjs +19 -0
  210. package/esm2022/panel/public_api.mjs +3 -0
  211. package/esm2022/public_api.mjs +17 -79
  212. package/esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs +5 -0
  213. package/esm2022/select-value-dialog/public_api.mjs +6 -0
  214. package/esm2022/select-value-dialog/select-value-check-radio-dialog.component.mjs +103 -0
  215. package/esm2022/select-value-dialog/select-value-dialog.enums.mjs +6 -0
  216. package/esm2022/select-value-dialog/select-value-dialog.interface.mjs +2 -0
  217. package/esm2022/select-value-dialog/select-value-dialog.module.mjs +27 -0
  218. package/esm2022/select-value-dialog/select-value-dialog.service.mjs +29 -0
  219. package/esm2022/sidenav/igo2-common-sidenav.mjs +5 -0
  220. package/esm2022/sidenav/public_api.mjs +3 -0
  221. package/esm2022/sidenav/sidenav-shim.directive.mjs +58 -0
  222. package/esm2022/sidenav/sidenav.module.mjs +25 -0
  223. package/esm2022/spinner/igo2-common-spinner.mjs +5 -0
  224. package/esm2022/spinner/public_api.mjs +4 -0
  225. package/esm2022/spinner/spinner-activity.directive.mjs +56 -0
  226. package/esm2022/spinner/spinner.component.mjs +30 -0
  227. package/esm2022/spinner/spinner.module.mjs +26 -0
  228. package/esm2022/stop-propagation/igo2-common-stop-propagation.mjs +5 -0
  229. package/esm2022/stop-propagation/public_api.mjs +10 -0
  230. package/esm2022/stop-propagation/stop-drop-propagation.directive.mjs +21 -0
  231. package/esm2022/stop-propagation/stop-propagation.directive.mjs +20 -0
  232. package/esm2022/stop-propagation/stop-propagation.module.mjs +26 -0
  233. package/esm2022/table/igo2-common-table.mjs +5 -0
  234. package/esm2022/table/public_api.mjs +7 -0
  235. package/esm2022/table/table-action-color.enum.mjs +7 -0
  236. package/esm2022/table/table-database.mjs +28 -0
  237. package/esm2022/table/table-datasource.mjs +64 -0
  238. package/esm2022/table/table-model.interface.mjs +2 -0
  239. package/esm2022/table/table.component.mjs +143 -0
  240. package/esm2022/table/table.module.mjs +25 -0
  241. package/esm2022/tool/igo2-common-tool.mjs +5 -0
  242. package/esm2022/tool/public_api.mjs +4 -0
  243. package/esm2022/tool/shared/index.mjs +6 -0
  244. package/esm2022/tool/shared/tool-component.mjs +9 -0
  245. package/esm2022/tool/shared/tool.interface.mjs +2 -0
  246. package/esm2022/tool/shared/tool.service.mjs +43 -0
  247. package/esm2022/tool/shared/toolbox.enums.mjs +2 -0
  248. package/esm2022/tool/shared/toolbox.mjs +192 -0
  249. package/esm2022/tool/tool.module.mjs +28 -0
  250. package/esm2022/tool/toolbox/index.mjs +3 -0
  251. package/esm2022/tool/toolbox/toolbox.animation.mjs +10 -0
  252. package/esm2022/tool/toolbox/toolbox.component.mjs +241 -0
  253. package/esm2022/tool/toolbox/toolbox.module.mjs +19 -0
  254. package/esm2022/widget/igo2-common-widget.mjs +5 -0
  255. package/esm2022/widget/public_api.mjs +4 -0
  256. package/esm2022/widget/shared/index.mjs +4 -0
  257. package/esm2022/widget/shared/widget.interfaces.mjs +2 -0
  258. package/esm2022/widget/shared/widget.mjs +4 -0
  259. package/esm2022/widget/shared/widget.service.mjs +22 -0
  260. package/esm2022/widget/widget-outlet/index.mjs +3 -0
  261. package/esm2022/widget/widget-outlet/widget-outlet.component.mjs +113 -0
  262. package/esm2022/widget/widget-outlet/widget-outlet.module.mjs +19 -0
  263. package/esm2022/widget/widget.module.mjs +22 -0
  264. package/esm2022/workspace/igo2-common-workspace.mjs +5 -0
  265. package/esm2022/workspace/public_api.mjs +5 -0
  266. package/esm2022/workspace/shared/index.mjs +4 -0
  267. package/esm2022/workspace/shared/store.mjs +37 -0
  268. package/esm2022/workspace/shared/workspace.interfaces.mjs +2 -0
  269. package/esm2022/workspace/shared/workspace.mjs +143 -0
  270. package/esm2022/workspace/workspace-selector/index.mjs +3 -0
  271. package/esm2022/workspace/workspace-selector/workspace-selector.component.mjs +51 -0
  272. package/esm2022/workspace/workspace-selector/workspace-selector.module.mjs +19 -0
  273. package/esm2022/workspace/workspace-widget-outlet/index.mjs +3 -0
  274. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +74 -0
  275. package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +19 -0
  276. package/esm2022/workspace/workspace.module.mjs +27 -0
  277. package/fesm2022/igo2-common-action.mjs +505 -0
  278. package/fesm2022/igo2-common-action.mjs.map +1 -0
  279. package/fesm2022/igo2-common-backdrop.mjs +51 -0
  280. package/fesm2022/igo2-common-backdrop.mjs.map +1 -0
  281. package/fesm2022/igo2-common-badge.mjs +178 -0
  282. package/fesm2022/igo2-common-badge.mjs.map +1 -0
  283. package/fesm2022/igo2-common-clickout.mjs +61 -0
  284. package/fesm2022/igo2-common-clickout.mjs.map +1 -0
  285. package/fesm2022/igo2-common-clone.mjs +54 -0
  286. package/fesm2022/igo2-common-clone.mjs.map +1 -0
  287. package/fesm2022/igo2-common-collapsible.mjs +126 -0
  288. package/fesm2022/igo2-common-collapsible.mjs.map +1 -0
  289. package/fesm2022/igo2-common-color.mjs +127 -0
  290. package/fesm2022/igo2-common-color.mjs.map +1 -0
  291. package/fesm2022/igo2-common-confirm-dialog.mjs +91 -0
  292. package/fesm2022/igo2-common-confirm-dialog.mjs.map +1 -0
  293. package/fesm2022/igo2-common-context-menu.mjs +206 -0
  294. package/fesm2022/igo2-common-context-menu.mjs.map +1 -0
  295. package/fesm2022/igo2-common-custom-html.mjs +74 -0
  296. package/fesm2022/igo2-common-custom-html.mjs.map +1 -0
  297. package/fesm2022/igo2-common-dom.mjs +65 -0
  298. package/fesm2022/igo2-common-dom.mjs.map +1 -0
  299. package/fesm2022/igo2-common-drag-drop.mjs +111 -0
  300. package/fesm2022/igo2-common-drag-drop.mjs.map +1 -0
  301. package/fesm2022/igo2-common-dynamic-component.mjs +375 -0
  302. package/fesm2022/igo2-common-dynamic-component.mjs.map +1 -0
  303. package/fesm2022/igo2-common-entity.mjs +3036 -0
  304. package/fesm2022/igo2-common-entity.mjs.map +1 -0
  305. package/fesm2022/igo2-common-environment.mjs +4 -0
  306. package/fesm2022/igo2-common-environment.mjs.map +1 -0
  307. package/fesm2022/igo2-common-flexible.mjs +163 -0
  308. package/fesm2022/igo2-common-flexible.mjs.map +1 -0
  309. package/fesm2022/igo2-common-form.mjs +898 -0
  310. package/fesm2022/igo2-common-form.mjs.map +1 -0
  311. package/fesm2022/igo2-common-home-button.mjs +49 -0
  312. package/fesm2022/igo2-common-home-button.mjs.map +1 -0
  313. package/fesm2022/igo2-common-icon.mjs +118 -0
  314. package/fesm2022/igo2-common-icon.mjs.map +1 -0
  315. package/fesm2022/igo2-common-image.mjs +129 -0
  316. package/fesm2022/igo2-common-image.mjs.map +1 -0
  317. package/fesm2022/igo2-common-interactive-tour.mjs +490 -0
  318. package/fesm2022/igo2-common-interactive-tour.mjs.map +1 -0
  319. package/fesm2022/igo2-common-json-dialog.mjs +88 -0
  320. package/fesm2022/igo2-common-json-dialog.mjs.map +1 -0
  321. package/fesm2022/igo2-common-keyvalue.mjs +48 -0
  322. package/fesm2022/igo2-common-keyvalue.mjs.map +1 -0
  323. package/fesm2022/igo2-common-list.mjs +446 -0
  324. package/fesm2022/igo2-common-list.mjs.map +1 -0
  325. package/fesm2022/igo2-common-panel.mjs +53 -0
  326. package/fesm2022/igo2-common-panel.mjs.map +1 -0
  327. package/fesm2022/igo2-common-select-value-dialog.mjs +161 -0
  328. package/fesm2022/igo2-common-select-value-dialog.mjs.map +1 -0
  329. package/fesm2022/igo2-common-sidenav.mjs +86 -0
  330. package/fesm2022/igo2-common-sidenav.mjs.map +1 -0
  331. package/fesm2022/igo2-common-spinner.mjs +110 -0
  332. package/fesm2022/igo2-common-spinner.mjs.map +1 -0
  333. package/fesm2022/igo2-common-stop-propagation.mjs +73 -0
  334. package/fesm2022/igo2-common-stop-propagation.mjs.map +1 -0
  335. package/fesm2022/igo2-common-table.mjs +264 -0
  336. package/fesm2022/igo2-common-table.mjs.map +1 -0
  337. package/fesm2022/igo2-common-tool.mjs +535 -0
  338. package/fesm2022/igo2-common-tool.mjs.map +1 -0
  339. package/fesm2022/igo2-common-widget.mjs +176 -0
  340. package/fesm2022/igo2-common-widget.mjs.map +1 -0
  341. package/fesm2022/igo2-common-workspace.mjs +361 -0
  342. package/fesm2022/igo2-common-workspace.mjs.map +1 -0
  343. package/fesm2022/igo2-common.mjs +16 -8817
  344. package/fesm2022/igo2-common.mjs.map +1 -1
  345. package/flexible/index.d.ts +5 -0
  346. package/flexible/public_api.d.ts +3 -0
  347. package/form/form/index.d.ts +2 -0
  348. package/form/form-dialog/form-dialog.component.d.ts +23 -0
  349. package/form/form-dialog/form-dialog.interface.d.ts +18 -0
  350. package/form/form-dialog/index.d.ts +4 -0
  351. package/form/form-field/form-field.directive.d.ts +5 -0
  352. package/form/form-field/index.d.ts +6 -0
  353. package/form/form-group/index.d.ts +2 -0
  354. package/form/form.module.d.ts +18 -0
  355. package/form/index.d.ts +5 -0
  356. package/form/public_api.d.ts +6 -0
  357. package/home-button/index.d.ts +5 -0
  358. package/home-button/public_api.d.ts +2 -0
  359. package/icon/icon/icon.component.d.ts +14 -0
  360. package/icon/index.d.ts +5 -0
  361. package/icon/shared/icon.service.d.ts +12 -0
  362. package/icon/shared/icons.d.ts +11 -0
  363. package/icon/shared/index.d.ts +3 -0
  364. package/image/index.d.ts +5 -0
  365. package/image/public_api.d.ts +6 -0
  366. package/interactive-tour/index.d.ts +5 -0
  367. package/interactive-tour/interactive-tour.component.d.ts +33 -0
  368. package/interactive-tour/public_api.d.ts +5 -0
  369. package/json-dialog/index.d.ts +5 -0
  370. package/json-dialog/public_api.d.ts +3 -0
  371. package/keyvalue/index.d.ts +5 -0
  372. package/keyvalue/public_api.d.ts +2 -0
  373. package/list/index.d.ts +5 -0
  374. package/list/public_api.d.ts +6 -0
  375. package/package.json +201 -3
  376. package/panel/index.d.ts +5 -0
  377. package/panel/public_api.d.ts +2 -0
  378. package/public_api.d.ts +16 -78
  379. package/select-value-dialog/index.d.ts +5 -0
  380. package/select-value-dialog/public_api.d.ts +5 -0
  381. package/sidenav/index.d.ts +5 -0
  382. package/sidenav/public_api.d.ts +2 -0
  383. package/spinner/index.d.ts +5 -0
  384. package/spinner/public_api.d.ts +3 -0
  385. package/spinner/spinner.module.d.ts +14 -0
  386. package/src/common-theme.scss +8 -8
  387. package/stop-propagation/index.d.ts +5 -0
  388. package/stop-propagation/public_api.d.ts +6 -0
  389. package/table/index.d.ts +5 -0
  390. package/table/public_api.d.ts +6 -0
  391. package/tool/index.d.ts +5 -0
  392. package/tool/public_api.d.ts +3 -0
  393. package/tool/shared/tool.interface.d.ts +18 -0
  394. package/tool/shared/toolbox.d.ts +98 -0
  395. package/tool/toolbox/index.d.ts +2 -0
  396. package/tool/toolbox/toolbox.component.d.ts +128 -0
  397. package/widget/index.d.ts +5 -0
  398. package/widget/public_api.d.ts +3 -0
  399. package/widget/shared/widget.d.ts +4 -0
  400. package/widget/shared/widget.service.d.ts +10 -0
  401. package/widget/widget-outlet/index.d.ts +2 -0
  402. package/widget/widget-outlet/widget-outlet.component.d.ts +71 -0
  403. package/workspace/index.d.ts +5 -0
  404. package/workspace/public_api.d.ts +4 -0
  405. package/workspace/shared/store.d.ts +20 -0
  406. package/workspace/shared/workspace.d.ts +108 -0
  407. package/workspace/shared/workspace.interfaces.d.ts +11 -0
  408. package/workspace/workspace-selector/index.d.ts +2 -0
  409. package/workspace/workspace-selector/workspace-selector.component.d.ts +38 -0
  410. package/workspace/workspace-widget-outlet/index.d.ts +2 -0
  411. package/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -0
  412. package/workspace/workspace.module.d.ts +14 -0
  413. package/esm2022/lib/action/action.module.mjs +0 -19
  414. package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +0 -192
  415. package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -277
  416. package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -19
  417. package/esm2022/lib/action/index.mjs +0 -3
  418. package/esm2022/lib/action/shared/action.enums.mjs +0 -7
  419. package/esm2022/lib/action/shared/action.interfaces.mjs +0 -2
  420. package/esm2022/lib/action/shared/index.mjs +0 -4
  421. package/esm2022/lib/action/shared/store.mjs +0 -8
  422. package/esm2022/lib/backdrop/backdrop.component.mjs +0 -22
  423. package/esm2022/lib/backdrop/backdrop.module.mjs +0 -25
  424. package/esm2022/lib/backdrop/index.mjs +0 -2
  425. package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -149
  426. package/esm2022/lib/badge-icon/badge-icon.module.mjs +0 -25
  427. package/esm2022/lib/badge-icon/index.mjs +0 -2
  428. package/esm2022/lib/clickout/clickout.directive.mjs +0 -32
  429. package/esm2022/lib/clickout/clickout.module.mjs +0 -25
  430. package/esm2022/lib/clickout/index.mjs +0 -2
  431. package/esm2022/lib/clone/clone.module.mjs +0 -25
  432. package/esm2022/lib/clone/clone.pipe.mjs +0 -25
  433. package/esm2022/lib/clone/index.mjs +0 -2
  434. package/esm2022/lib/collapsible/collapse.directive.mjs +0 -57
  435. package/esm2022/lib/collapsible/collapsible.component.mjs +0 -38
  436. package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
  437. package/esm2022/lib/collapsible/index.mjs +0 -9
  438. package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -104
  439. package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -19
  440. package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
  441. package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -31
  442. package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
  443. package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -27
  444. package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -35
  445. package/esm2022/lib/confirm-dialog/index.mjs +0 -4
  446. package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -109
  447. package/esm2022/lib/context-menu/context-menu.module.mjs +0 -26
  448. package/esm2022/lib/context-menu/index.mjs +0 -9
  449. package/esm2022/lib/context-menu/long-press.directive.mjs +0 -66
  450. package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
  451. package/esm2022/lib/custom-html/custom-html.module.mjs +0 -25
  452. package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -23
  453. package/esm2022/lib/custom-html/index.mjs +0 -9
  454. package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
  455. package/esm2022/lib/dom/dom.module.mjs +0 -27
  456. package/esm2022/lib/dom/dom.service.mjs +0 -35
  457. package/esm2022/lib/dom/index.mjs +0 -3
  458. package/esm2022/lib/drag-drop/drag-drop.directive.mjs +0 -82
  459. package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -25
  460. package/esm2022/lib/drag-drop/index.mjs +0 -2
  461. package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +0 -19
  462. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -129
  463. package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -19
  464. package/esm2022/lib/dynamic-component/index.mjs +0 -3
  465. package/esm2022/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +0 -2
  466. package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +0 -183
  467. package/esm2022/lib/dynamic-component/shared/dynamic-component.service.mjs +0 -30
  468. package/esm2022/lib/dynamic-component/shared/index.mjs +0 -4
  469. package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +0 -174
  470. package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -19
  471. package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -138
  472. package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -884
  473. package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -19
  474. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -158
  475. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
  476. package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -19
  477. package/esm2022/lib/entity/entity-table-paginator/index.mjs +0 -3
  478. package/esm2022/lib/entity/entity.module.mjs +0 -22
  479. package/esm2022/lib/entity/index.mjs +0 -14
  480. package/esm2022/lib/entity/shared/entity.enums.mjs +0 -28
  481. package/esm2022/lib/entity/shared/entity.interfaces.mjs +0 -2
  482. package/esm2022/lib/entity/shared/entity.utils.mjs +0 -73
  483. package/esm2022/lib/entity/shared/index.mjs +0 -10
  484. package/esm2022/lib/entity/shared/state.mjs +0 -194
  485. package/esm2022/lib/entity/shared/store.mjs +0 -322
  486. package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +0 -80
  487. package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +0 -81
  488. package/esm2022/lib/entity/shared/strategies/index.mjs +0 -4
  489. package/esm2022/lib/entity/shared/strategies/strategy.mjs +0 -78
  490. package/esm2022/lib/entity/shared/transaction.mjs +0 -329
  491. package/esm2022/lib/entity/shared/view.mjs +0 -330
  492. package/esm2022/lib/entity/shared/watcher.mjs +0 -135
  493. package/esm2022/lib/environment/environment.interface.mjs +0 -2
  494. package/esm2022/lib/environment/index.mjs +0 -2
  495. package/esm2022/lib/flexible/flexible.component.mjs +0 -135
  496. package/esm2022/lib/flexible/flexible.module.mjs +0 -25
  497. package/esm2022/lib/flexible/flexible.type.mjs +0 -2
  498. package/esm2022/lib/flexible/index.mjs +0 -3
  499. package/esm2022/lib/form/form/form.component.mjs +0 -103
  500. package/esm2022/lib/form/form/form.module.mjs +0 -19
  501. package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -117
  502. package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -126
  503. package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -95
  504. package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
  505. package/esm2022/lib/form/form-field/form-field.module.mjs +0 -23
  506. package/esm2022/lib/form/form-field/index.mjs +0 -15
  507. package/esm2022/lib/form/form-group/form-group.component.mjs +0 -82
  508. package/esm2022/lib/form/form-group/form-group.module.mjs +0 -19
  509. package/esm2022/lib/form/form.module.mjs +0 -25
  510. package/esm2022/lib/form/index.mjs +0 -13
  511. package/esm2022/lib/form/shared/form-field-component.mjs +0 -7
  512. package/esm2022/lib/form/shared/form-field.service.mjs +0 -29
  513. package/esm2022/lib/form/shared/form.interfaces.mjs +0 -2
  514. package/esm2022/lib/form/shared/form.service.mjs +0 -82
  515. package/esm2022/lib/form/shared/form.utils.mjs +0 -41
  516. package/esm2022/lib/form/shared/index.mjs +0 -6
  517. package/esm2022/lib/form-dialog/form-dialog.component.mjs +0 -94
  518. package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
  519. package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -31
  520. package/esm2022/lib/form-dialog/form-dialog.service.mjs +0 -30
  521. package/esm2022/lib/form-dialog/index.mjs +0 -4
  522. package/esm2022/lib/home-button/home-button.component.mjs +0 -26
  523. package/esm2022/lib/home-button/home-button.module.mjs +0 -19
  524. package/esm2022/lib/home-button/index.mjs +0 -2
  525. package/esm2022/lib/icons/icon/icon.component.mjs +0 -40
  526. package/esm2022/lib/icons/icon.provider.mjs +0 -14
  527. package/esm2022/lib/icons/index.mjs +0 -4
  528. package/esm2022/lib/icons/shared/icon.interface.mjs +0 -2
  529. package/esm2022/lib/icons/shared/icons.mjs +0 -34
  530. package/esm2022/lib/icons/shared/index.mjs +0 -3
  531. package/esm2022/lib/image/image-error.directive.mjs +0 -35
  532. package/esm2022/lib/image/image.module.mjs +0 -26
  533. package/esm2022/lib/image/index.mjs +0 -6
  534. package/esm2022/lib/image/secure-image.pipe.mjs +0 -66
  535. package/esm2022/lib/interactive-tour/index.mjs +0 -5
  536. package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -126
  537. package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
  538. package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +0 -49
  539. package/esm2022/lib/interactive-tour/interactive-tour.module.mjs +0 -19
  540. package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +0 -303
  541. package/esm2022/lib/json-dialog/index.mjs +0 -3
  542. package/esm2022/lib/json-dialog/json-dialog.component.mjs +0 -38
  543. package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -26
  544. package/esm2022/lib/json-dialog/json-dialog.service.mjs +0 -26
  545. package/esm2022/lib/keyvalue/index.mjs +0 -2
  546. package/esm2022/lib/keyvalue/keyvalue.module.mjs +0 -25
  547. package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -19
  548. package/esm2022/lib/list/index.mjs +0 -6
  549. package/esm2022/lib/list/list-item.directive.mjs +0 -166
  550. package/esm2022/lib/list/list.component.mjs +0 -252
  551. package/esm2022/lib/list/list.module.mjs +0 -26
  552. package/esm2022/lib/panel/index.mjs +0 -2
  553. package/esm2022/lib/panel/panel.component.mjs +0 -30
  554. package/esm2022/lib/panel/panel.module.mjs +0 -19
  555. package/esm2022/lib/select-value-dialog/index.mjs +0 -5
  556. package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -103
  557. package/esm2022/lib/select-value-dialog/select-value-dialog.enums.mjs +0 -6
  558. package/esm2022/lib/select-value-dialog/select-value-dialog.interface.mjs +0 -2
  559. package/esm2022/lib/select-value-dialog/select-value-dialog.module.mjs +0 -27
  560. package/esm2022/lib/select-value-dialog/select-value-dialog.service.mjs +0 -29
  561. package/esm2022/lib/sidenav/index.mjs +0 -2
  562. package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +0 -58
  563. package/esm2022/lib/sidenav/sidenav.module.mjs +0 -25
  564. package/esm2022/lib/spinner/index.mjs +0 -9
  565. package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -56
  566. package/esm2022/lib/spinner/spinner.component.mjs +0 -30
  567. package/esm2022/lib/spinner/spinner.module.mjs +0 -21
  568. package/esm2022/lib/stop-propagation/index.mjs +0 -9
  569. package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -21
  570. package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -20
  571. package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -26
  572. package/esm2022/lib/table/index.mjs +0 -6
  573. package/esm2022/lib/table/table-action-color.enum.mjs +0 -7
  574. package/esm2022/lib/table/table-database.mjs +0 -28
  575. package/esm2022/lib/table/table-datasource.mjs +0 -64
  576. package/esm2022/lib/table/table-model.interface.mjs +0 -2
  577. package/esm2022/lib/table/table.component.mjs +0 -143
  578. package/esm2022/lib/table/table.module.mjs +0 -25
  579. package/esm2022/lib/tool/index.mjs +0 -3
  580. package/esm2022/lib/tool/shared/index.mjs +0 -6
  581. package/esm2022/lib/tool/shared/tool-component.mjs +0 -9
  582. package/esm2022/lib/tool/shared/tool.interface.mjs +0 -2
  583. package/esm2022/lib/tool/shared/tool.service.mjs +0 -43
  584. package/esm2022/lib/tool/shared/toolbox.enums.mjs +0 -2
  585. package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
  586. package/esm2022/lib/tool/tool.module.mjs +0 -28
  587. package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
  588. package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -242
  589. package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -19
  590. package/esm2022/lib/widget/index.mjs +0 -3
  591. package/esm2022/lib/widget/shared/index.mjs +0 -4
  592. package/esm2022/lib/widget/shared/widget.interfaces.mjs +0 -2
  593. package/esm2022/lib/widget/shared/widget.mjs +0 -4
  594. package/esm2022/lib/widget/shared/widget.service.mjs +0 -22
  595. package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -114
  596. package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -19
  597. package/esm2022/lib/widget/widget.module.mjs +0 -22
  598. package/esm2022/lib/workspace/index.mjs +0 -10
  599. package/esm2022/lib/workspace/shared/index.mjs +0 -4
  600. package/esm2022/lib/workspace/shared/store.mjs +0 -37
  601. package/esm2022/lib/workspace/shared/workspace.interfaces.mjs +0 -2
  602. package/esm2022/lib/workspace/shared/workspace.mjs +0 -143
  603. package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -52
  604. package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -19
  605. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -74
  606. package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -19
  607. package/esm2022/lib/workspace/workspace.module.mjs +0 -22
  608. package/lib/action/index.d.ts +0 -2
  609. package/lib/action/shared/action.interfaces.d.ts +0 -18
  610. package/lib/action/shared/store.d.ts +0 -8
  611. package/lib/backdrop/index.d.ts +0 -1
  612. package/lib/badge-icon/index.d.ts +0 -1
  613. package/lib/clickout/index.d.ts +0 -1
  614. package/lib/clone/index.d.ts +0 -1
  615. package/lib/collapsible/index.d.ts +0 -5
  616. package/lib/color-picker-form-field/index.d.ts +0 -1
  617. package/lib/confirm-dialog/index.d.ts +0 -3
  618. package/lib/context-menu/index.d.ts +0 -5
  619. package/lib/custom-html/index.d.ts +0 -5
  620. package/lib/dom/index.d.ts +0 -2
  621. package/lib/drag-drop/index.d.ts +0 -1
  622. package/lib/dynamic-component/index.d.ts +0 -2
  623. package/lib/entity/entity-table-paginator/index.d.ts +0 -2
  624. package/lib/entity/entity.module.d.ts +0 -12
  625. package/lib/entity/index.d.ts +0 -9
  626. package/lib/flexible/index.d.ts +0 -2
  627. package/lib/form/form-field/index.d.ts +0 -9
  628. package/lib/form/form.module.d.ts +0 -15
  629. package/lib/form/index.d.ts +0 -7
  630. package/lib/form-dialog/form-dialog.component.d.ts +0 -24
  631. package/lib/form-dialog/form-dialog.interface.d.ts +0 -18
  632. package/lib/form-dialog/index.d.ts +0 -3
  633. package/lib/home-button/index.d.ts +0 -1
  634. package/lib/icons/icon/icon.component.d.ts +0 -16
  635. package/lib/icons/shared/icons.d.ts +0 -21
  636. package/lib/icons/shared/index.d.ts +0 -2
  637. package/lib/image/index.d.ts +0 -5
  638. package/lib/interactive-tour/index.d.ts +0 -4
  639. package/lib/interactive-tour/interactive-tour.component.d.ts +0 -30
  640. package/lib/json-dialog/index.d.ts +0 -2
  641. package/lib/keyvalue/index.d.ts +0 -1
  642. package/lib/list/index.d.ts +0 -5
  643. package/lib/panel/index.d.ts +0 -1
  644. package/lib/select-value-dialog/index.d.ts +0 -4
  645. package/lib/sidenav/index.d.ts +0 -1
  646. package/lib/spinner/index.d.ts +0 -5
  647. package/lib/spinner/spinner.module.d.ts +0 -11
  648. package/lib/stop-propagation/index.d.ts +0 -5
  649. package/lib/table/index.d.ts +0 -5
  650. package/lib/tool/index.d.ts +0 -2
  651. package/lib/tool/shared/tool.interface.d.ts +0 -18
  652. package/lib/tool/shared/toolbox.d.ts +0 -95
  653. package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
  654. package/lib/widget/index.d.ts +0 -2
  655. package/lib/widget/shared/widget.d.ts +0 -4
  656. package/lib/widget/shared/widget.service.d.ts +0 -10
  657. package/lib/widget/widget-outlet/widget-outlet.component.d.ts +0 -71
  658. package/lib/workspace/index.d.ts +0 -6
  659. package/lib/workspace/shared/store.d.ts +0 -20
  660. package/lib/workspace/shared/workspace.d.ts +0 -108
  661. package/lib/workspace/shared/workspace.interfaces.d.ts +0 -11
  662. package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +0 -38
  663. package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
  664. package/lib/workspace/workspace.module.d.ts +0 -11
  665. /package/{lib/action → action}/action.module.d.ts +0 -0
  666. /package/{lib/action → action}/actionbar/actionbar-item.component.d.ts +0 -0
  667. /package/{lib/action → action}/actionbar/actionbar.component.d.ts +0 -0
  668. /package/{lib/action → action}/actionbar/actionbar.module.d.ts +0 -0
  669. /package/{lib/action → action}/shared/action.enums.d.ts +0 -0
  670. /package/{lib/action → action}/shared/index.d.ts +0 -0
  671. /package/{src/lib/action → action/src}/action.theming.scss +0 -0
  672. /package/{src/lib/action → action/src}/actionbar/actionbar-item.theming.scss +0 -0
  673. /package/{src/lib/action → action/src}/actionbar/actionbar.theming.scss +0 -0
  674. /package/{lib/backdrop → backdrop}/backdrop.component.d.ts +0 -0
  675. /package/{lib/backdrop → backdrop}/backdrop.module.d.ts +0 -0
  676. /package/{lib/badge-icon → badge}/badge-icon.directive.d.ts +0 -0
  677. /package/{lib/badge-icon → badge}/badge-icon.module.d.ts +0 -0
  678. /package/{lib/clickout → clickout}/clickout.directive.d.ts +0 -0
  679. /package/{lib/clickout → clickout}/clickout.module.d.ts +0 -0
  680. /package/{lib/clone → clone}/clone.module.d.ts +0 -0
  681. /package/{lib/clone → clone}/clone.pipe.d.ts +0 -0
  682. /package/{lib/collapsible → collapsible}/collapse.directive.d.ts +0 -0
  683. /package/{lib/collapsible → collapsible}/collapsible.component.d.ts +0 -0
  684. /package/{lib/collapsible → collapsible}/collapsible.module.d.ts +0 -0
  685. /package/{src/lib/collapsible → collapsible/src}/collapsible.theming.scss +0 -0
  686. /package/{lib → color}/color-picker-form-field/color-picker-form-field.component.d.ts +0 -0
  687. /package/{lib → color}/color-picker-form-field/color-picker-form-field.module.d.ts +0 -0
  688. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.component.d.ts +0 -0
  689. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.interface.d.ts +0 -0
  690. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.module.d.ts +0 -0
  691. /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.service.d.ts +0 -0
  692. /package/{lib/context-menu → context-menu}/context-menu.directive.d.ts +0 -0
  693. /package/{lib/context-menu → context-menu}/context-menu.module.d.ts +0 -0
  694. /package/{lib/context-menu → context-menu}/long-press.directive.d.ts +0 -0
  695. /package/{lib/custom-html → custom-html}/custom-html.component.d.ts +0 -0
  696. /package/{lib/custom-html → custom-html}/custom-html.module.d.ts +0 -0
  697. /package/{lib/custom-html → custom-html}/custom-html.pipe.d.ts +0 -0
  698. /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
  699. /package/{lib/dom → dom}/dom.module.d.ts +0 -0
  700. /package/{lib/dom → dom}/dom.service.d.ts +0 -0
  701. /package/{lib/drag-drop → drag-drop}/drag-drop.directive.d.ts +0 -0
  702. /package/{lib/drag-drop → drag-drop}/drag-drop.module.d.ts +0 -0
  703. /package/{lib/dynamic-component → dynamic-component}/dynamic-component.module.d.ts +0 -0
  704. /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.component.d.ts +0 -0
  705. /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.module.d.ts +0 -0
  706. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.d.ts +0 -0
  707. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.interfaces.d.ts +0 -0
  708. /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.service.d.ts +0 -0
  709. /package/{lib/dynamic-component → dynamic-component}/shared/index.d.ts +0 -0
  710. /package/{lib/entity → entity}/entity-selector/entity-selector.component.d.ts +0 -0
  711. /package/{lib/entity → entity}/entity-selector/entity-selector.module.d.ts +0 -0
  712. /package/{lib/entity → entity}/entity-table/entity-table-row.directive.d.ts +0 -0
  713. /package/{lib/entity → entity}/entity-table/entity-table.component.d.ts +0 -0
  714. /package/{lib/entity → entity}/entity-table/entity-table.module.d.ts +0 -0
  715. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.component.d.ts +0 -0
  716. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.interface.d.ts +0 -0
  717. /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.module.d.ts +0 -0
  718. /package/{lib/entity → entity}/shared/entity.enums.d.ts +0 -0
  719. /package/{lib/entity → entity}/shared/entity.interfaces.d.ts +0 -0
  720. /package/{lib/entity → entity}/shared/entity.utils.d.ts +0 -0
  721. /package/{lib/entity → entity}/shared/index.d.ts +0 -0
  722. /package/{lib/entity → entity}/shared/state.d.ts +0 -0
  723. /package/{lib/entity → entity}/shared/store.d.ts +0 -0
  724. /package/{lib/entity → entity}/shared/strategies/filter-custom-function.d.ts +0 -0
  725. /package/{lib/entity → entity}/shared/strategies/filter-selection.d.ts +0 -0
  726. /package/{lib/entity → entity}/shared/strategies/index.d.ts +0 -0
  727. /package/{lib/entity → entity}/shared/strategies/strategy.d.ts +0 -0
  728. /package/{lib/entity → entity}/shared/transaction.d.ts +0 -0
  729. /package/{lib/entity → entity}/shared/view.d.ts +0 -0
  730. /package/{lib/entity → entity}/shared/watcher.d.ts +0 -0
  731. /package/{src/lib/entity → entity/src}/entity-selector/entity-selector.theming.scss +0 -0
  732. /package/{src/lib/entity → entity/src}/entity-table/entity-table.theming.scss +0 -0
  733. /package/{src/lib/entity → entity/src}/entity.theming.scss +0 -0
  734. /package/{lib/environment → environment}/environment.interface.d.ts +0 -0
  735. /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
  736. /package/{lib/flexible → flexible}/flexible.component.d.ts +0 -0
  737. /package/{lib/flexible → flexible}/flexible.module.d.ts +0 -0
  738. /package/{lib/flexible → flexible}/flexible.type.d.ts +0 -0
  739. /package/{lib/form → form}/form/form.component.d.ts +0 -0
  740. /package/{lib/form → form}/form/form.module.d.ts +0 -0
  741. /package/{lib → form}/form-dialog/form-dialog.module.d.ts +0 -0
  742. /package/{lib → form}/form-dialog/form-dialog.service.d.ts +0 -0
  743. /package/{lib/form → form}/form-field/form-field-select.component.d.ts +0 -0
  744. /package/{lib/form → form}/form-field/form-field-text.component.d.ts +0 -0
  745. /package/{lib/form → form}/form-field/form-field-textarea.component.d.ts +0 -0
  746. /package/{lib/form → form}/form-field/form-field.component.d.ts +0 -0
  747. /package/{lib/form → form}/form-field/form-field.module.d.ts +0 -0
  748. /package/{lib/form → form}/form-group/form-group.component.d.ts +0 -0
  749. /package/{lib/form → form}/form-group/form-group.module.d.ts +0 -0
  750. /package/{lib/form → form}/shared/form-field-component.d.ts +0 -0
  751. /package/{lib/form → form}/shared/form-field.service.d.ts +0 -0
  752. /package/{lib/form → form}/shared/form.interfaces.d.ts +0 -0
  753. /package/{lib/form → form}/shared/form.service.d.ts +0 -0
  754. /package/{lib/form → form}/shared/form.utils.d.ts +0 -0
  755. /package/{lib/form → form}/shared/index.d.ts +0 -0
  756. /package/{lib/home-button → home-button}/home-button.component.d.ts +0 -0
  757. /package/{lib/home-button → home-button}/home-button.module.d.ts +0 -0
  758. /package/{src/lib/home-button → home-button/src}/home-button.theming.scss +0 -0
  759. /package/{lib/icons → icon}/icon.provider.d.ts +0 -0
  760. /package/{lib/icons/index.d.ts → icon/public_api.d.ts} +0 -0
  761. /package/{lib/icons → icon}/shared/icon.interface.d.ts +0 -0
  762. /package/{lib/image → image}/image-error.directive.d.ts +0 -0
  763. /package/{lib/image → image}/image.module.d.ts +0 -0
  764. /package/{lib/image → image}/secure-image.pipe.d.ts +0 -0
  765. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
  766. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.loader.d.ts +0 -0
  767. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.module.d.ts +0 -0
  768. /package/{lib/interactive-tour → interactive-tour}/interactive-tour.service.d.ts +0 -0
  769. /package/{src/lib/interactive-tour → interactive-tour/src}/interactive-tour.theming.scss +0 -0
  770. /package/{lib/json-dialog → json-dialog}/json-dialog.component.d.ts +0 -0
  771. /package/{lib/json-dialog → json-dialog}/json-dialog.module.d.ts +0 -0
  772. /package/{lib/json-dialog → json-dialog}/json-dialog.service.d.ts +0 -0
  773. /package/{lib/keyvalue → keyvalue}/keyvalue.module.d.ts +0 -0
  774. /package/{lib/keyvalue → keyvalue}/keyvalue.pipe.d.ts +0 -0
  775. /package/{lib/list → list}/list-item.directive.d.ts +0 -0
  776. /package/{lib/list → list}/list.component.d.ts +0 -0
  777. /package/{lib/list → list}/list.module.d.ts +0 -0
  778. /package/{src/lib/list → list/src}/list.theming.scss +0 -0
  779. /package/{lib/panel → panel}/panel.component.d.ts +0 -0
  780. /package/{lib/panel → panel}/panel.module.d.ts +0 -0
  781. /package/{src/lib/panel → panel/src}/panel.theming.scss +0 -0
  782. /package/{lib/select-value-dialog → select-value-dialog}/select-value-check-radio-dialog.component.d.ts +0 -0
  783. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.enums.d.ts +0 -0
  784. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.interface.d.ts +0 -0
  785. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.module.d.ts +0 -0
  786. /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.service.d.ts +0 -0
  787. /package/{lib/sidenav → sidenav}/sidenav-shim.directive.d.ts +0 -0
  788. /package/{lib/sidenav → sidenav}/sidenav.module.d.ts +0 -0
  789. /package/{lib/spinner → spinner}/spinner-activity.directive.d.ts +0 -0
  790. /package/{lib/spinner → spinner}/spinner.component.d.ts +0 -0
  791. /package/{lib/stop-propagation → stop-propagation}/stop-drop-propagation.directive.d.ts +0 -0
  792. /package/{lib/stop-propagation → stop-propagation}/stop-propagation.directive.d.ts +0 -0
  793. /package/{lib/stop-propagation → stop-propagation}/stop-propagation.module.d.ts +0 -0
  794. /package/{lib/table → table}/table-action-color.enum.d.ts +0 -0
  795. /package/{lib/table → table}/table-database.d.ts +0 -0
  796. /package/{lib/table → table}/table-datasource.d.ts +0 -0
  797. /package/{lib/table → table}/table-model.interface.d.ts +0 -0
  798. /package/{lib/table → table}/table.component.d.ts +0 -0
  799. /package/{lib/table → table}/table.module.d.ts +0 -0
  800. /package/{lib/tool → tool}/shared/index.d.ts +0 -0
  801. /package/{lib/tool → tool}/shared/tool-component.d.ts +0 -0
  802. /package/{lib/tool → tool}/shared/tool.service.d.ts +0 -0
  803. /package/{lib/tool → tool}/shared/toolbox.enums.d.ts +0 -0
  804. /package/{src/lib/tool → tool/src}/tool.theming.scss +0 -0
  805. /package/{src/lib/tool → tool/src}/toolbox/toolbox.theming.scss +0 -0
  806. /package/{lib/tool → tool}/tool.module.d.ts +0 -0
  807. /package/{lib/tool → tool}/toolbox/toolbox.animation.d.ts +0 -0
  808. /package/{lib/tool → tool}/toolbox/toolbox.module.d.ts +0 -0
  809. /package/{lib/widget → widget}/shared/index.d.ts +0 -0
  810. /package/{lib/widget → widget}/shared/widget.interfaces.d.ts +0 -0
  811. /package/{lib/widget → widget}/widget-outlet/widget-outlet.module.d.ts +0 -0
  812. /package/{lib/widget → widget}/widget.module.d.ts +0 -0
  813. /package/{lib/workspace → workspace}/shared/index.d.ts +0 -0
  814. /package/{lib/workspace → workspace}/workspace-selector/workspace-selector.module.d.ts +0 -0
  815. /package/{lib/workspace → workspace}/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -0
@@ -0,0 +1,51 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, NgModule } from '@angular/core';
3
+ import { NgClass } from '@angular/common';
4
+
5
+ class BackdropComponent {
6
+ get shown() {
7
+ return this._shown;
8
+ }
9
+ set shown(value) {
10
+ this._shown = value;
11
+ }
12
+ _shown;
13
+ constructor() { }
14
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BackdropComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BackdropComponent, isStandalone: true, selector: "igo-backdrop", inputs: { shown: "shown" }, ngImport: i0, template: "<div [ngClass]=\"{ 'igo-backdrop-shown': shown }\"></div>\n", styles: [":host>div{position:absolute;inset:0;background-color:#64646480;z-index:2;display:none}:host>div.igo-backdrop-shown{display:block}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
16
+ }
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BackdropComponent, decorators: [{
18
+ type: Component,
19
+ args: [{ selector: 'igo-backdrop', standalone: true, imports: [NgClass], template: "<div [ngClass]=\"{ 'igo-backdrop-shown': shown }\"></div>\n", styles: [":host>div{position:absolute;inset:0;background-color:#64646480;z-index:2;display:none}:host>div.igo-backdrop-shown{display:block}\n"] }]
20
+ }], ctorParameters: () => [], propDecorators: { shown: [{
21
+ type: Input
22
+ }] } });
23
+
24
+ /**
25
+ * @deprecated import the BackdropComponent directly
26
+ */
27
+ class IgoBackdropModule {
28
+ static forRoot() {
29
+ return {
30
+ ngModule: IgoBackdropModule,
31
+ providers: []
32
+ };
33
+ }
34
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoBackdropModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
35
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoBackdropModule, imports: [BackdropComponent], exports: [BackdropComponent] });
36
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoBackdropModule });
37
+ }
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoBackdropModule, decorators: [{
39
+ type: NgModule,
40
+ args: [{
41
+ imports: [BackdropComponent],
42
+ exports: [BackdropComponent]
43
+ }]
44
+ }] });
45
+
46
+ /**
47
+ * Generated bundle index. Do not edit.
48
+ */
49
+
50
+ export { BackdropComponent, IgoBackdropModule };
51
+ //# sourceMappingURL=igo2-common-backdrop.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-backdrop.mjs","sources":["../../../packages/common/backdrop/src/backdrop.component.ts","../../../packages/common/backdrop/src/backdrop.component.html","../../../packages/common/backdrop/src/backdrop.module.ts","../../../packages/common/backdrop/src/igo2-common-backdrop.ts"],"sourcesContent":["import { NgClass } from '@angular/common';\nimport { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'igo-backdrop',\n templateUrl: './backdrop.component.html',\n styleUrls: ['./backdrop.component.scss'],\n standalone: true,\n imports: [NgClass]\n})\nexport class BackdropComponent {\n @Input()\n get shown(): boolean {\n return this._shown;\n }\n set shown(value: boolean) {\n this._shown = value;\n }\n private _shown: boolean;\n\n constructor() {}\n}\n","<div [ngClass]=\"{ 'igo-backdrop-shown': shown }\"></div>\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { BackdropComponent } from './backdrop.component';\n\n/**\n * @deprecated import the BackdropComponent directly\n */\n@NgModule({\n imports: [BackdropComponent],\n exports: [BackdropComponent]\n})\nexport class IgoBackdropModule {\n static forRoot(): ModuleWithProviders<IgoBackdropModule> {\n return {\n ngModule: IgoBackdropModule,\n providers: []\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;MAUa,iBAAiB,CAAA;AAC5B,IAAA,IACI,KAAK,GAAA;QACP,OAAO,IAAI,CAAC,MAAM,CAAC;KACpB;IACD,IAAI,KAAK,CAAC,KAAc,EAAA;AACtB,QAAA,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACrB;AACO,IAAA,MAAM,CAAU;AAExB,IAAA,WAAA,GAAA,GAAgB;uGAVL,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECV9B,6DACA,EAAA,MAAA,EAAA,CAAA,qIAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDOY,OAAO,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEN,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAP7B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,cAAc,EAGZ,UAAA,EAAA,IAAI,EACP,OAAA,EAAA,CAAC,OAAO,CAAC,EAAA,QAAA,EAAA,6DAAA,EAAA,MAAA,EAAA,CAAA,qIAAA,CAAA,EAAA,CAAA;wDAId,KAAK,EAAA,CAAA;sBADR,KAAK;;;AEPR;;AAEG;MAKU,iBAAiB,CAAA;AAC5B,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,iBAAiB;AAC3B,YAAA,SAAS,EAAE,EAAE;SACd,CAAC;KACH;uGANU,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wGAAjB,iBAAiB,EAAA,OAAA,EAAA,CAHlB,iBAAiB,CAAA,EAAA,OAAA,EAAA,CACjB,iBAAiB,CAAA,EAAA,CAAA,CAAA;wGAEhB,iBAAiB,EAAA,CAAA,CAAA;;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,iBAAiB,CAAC;oBAC5B,OAAO,EAAE,CAAC,iBAAiB,CAAC;AAC7B,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,178 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, Input, NgModule } from '@angular/core';
3
+ import { MatIconModule } from '@angular/material/icon';
4
+
5
+ /**
6
+ * This directive allow to add an icon inside a matBadge.
7
+ * A value must be set into the matBadge directive ex: matBadge="icon".
8
+ * The badge content will be overrided by this current directive.
9
+ */
10
+ class IgoBadgeIconDirective {
11
+ el;
12
+ set igoMatBadgeIcon(value) {
13
+ this.html = `
14
+ <mat-icon class="mat-icon material-symbols-outlined" style="height: 16px; width: 16px; font-size: 16px;">${value}</mat-icon>
15
+ `;
16
+ this.updateHtml();
17
+ }
18
+ html;
19
+ set matBadgeHidden(value) {
20
+ this.hidden = value;
21
+ this.updateHidden();
22
+ }
23
+ hidden = false;
24
+ set matBadgeDisabled(value) {
25
+ this.disabled = value;
26
+ this.updateDisabled();
27
+ }
28
+ disabled = false;
29
+ set igoMatBadgeInverseColor(value) {
30
+ this.inverseColor = value;
31
+ this.updateColor();
32
+ }
33
+ inverseColor = false;
34
+ set igoMatBadgeInheritColor(value) {
35
+ this.inheritColor = value;
36
+ this.updateColor();
37
+ }
38
+ inheritColor = false;
39
+ set igoMatBadgeColor(value) {
40
+ this.color = value;
41
+ this.updateColor();
42
+ }
43
+ color;
44
+ set igoMatBadgeBackgroundColor(value) {
45
+ this.backgroundColor = value;
46
+ this.updateColor();
47
+ }
48
+ backgroundColor;
49
+ get badge() {
50
+ return this.el.nativeElement.querySelector('.mat-badge-content');
51
+ }
52
+ originalColor;
53
+ constructor(el) {
54
+ this.el = el;
55
+ }
56
+ ngOnInit() {
57
+ this.badge.style.alignItems = 'center';
58
+ this.badge.style.justifyContent = 'center';
59
+ this.updateHidden();
60
+ this.updateColor();
61
+ this.updateHtml();
62
+ }
63
+ updateHtml() {
64
+ if (!this.badge) {
65
+ return;
66
+ }
67
+ this.badge.innerHTML = '';
68
+ if (this.html) {
69
+ this.badge.innerHTML = this.html;
70
+ }
71
+ }
72
+ updateColor() {
73
+ if (!this.badge) {
74
+ return;
75
+ }
76
+ if (this.color || this.backgroundColor) {
77
+ this.badge.style.color = this.color ? this.color : '';
78
+ this.badge.style.background = this.backgroundColor
79
+ ? this.backgroundColor
80
+ : '';
81
+ }
82
+ else if (this.inheritColor) {
83
+ if (this.inverseColor) {
84
+ this.badge.style.color = 'currentColor';
85
+ this.badge.style.background = 'none';
86
+ }
87
+ else {
88
+ this.badge.style.color = '';
89
+ this.badge.style.background = 'currentColor';
90
+ }
91
+ }
92
+ else if (!this.inheritColor) {
93
+ if (this.inverseColor) {
94
+ this.badge.style.color = window
95
+ .getComputedStyle(this.badge, null)
96
+ .getPropertyValue('background-color');
97
+ this.badge.style.background = 'none';
98
+ }
99
+ else {
100
+ this.badge.style.color = '';
101
+ this.badge.style.background = '';
102
+ }
103
+ }
104
+ this.originalColor = this.badge.style.color;
105
+ this.updateDisabled();
106
+ }
107
+ updateHidden() {
108
+ if (!this.badge) {
109
+ return;
110
+ }
111
+ this.badge.style.display = this.hidden ? 'none' : 'flex';
112
+ }
113
+ updateDisabled() {
114
+ if (!this.badge || !this.inverseColor) {
115
+ return;
116
+ }
117
+ if (this.disabled) {
118
+ this.originalColor = this.badge.style.color;
119
+ this.badge.style.color = '#b9b9b9';
120
+ }
121
+ else {
122
+ this.badge.style.color = this.originalColor;
123
+ }
124
+ }
125
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoBadgeIconDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
126
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: IgoBadgeIconDirective, isStandalone: true, selector: "[igoMatBadgeIcon]", inputs: { igoMatBadgeIcon: "igoMatBadgeIcon", matBadgeHidden: "matBadgeHidden", matBadgeDisabled: "matBadgeDisabled", igoMatBadgeInverseColor: "igoMatBadgeInverseColor", igoMatBadgeInheritColor: "igoMatBadgeInheritColor", igoMatBadgeColor: "igoMatBadgeColor", igoMatBadgeBackgroundColor: "igoMatBadgeBackgroundColor" }, providers: [MatIconModule], ngImport: i0 });
127
+ }
128
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoBadgeIconDirective, decorators: [{
129
+ type: Directive,
130
+ args: [{
131
+ selector: '[igoMatBadgeIcon]',
132
+ standalone: true,
133
+ providers: [MatIconModule]
134
+ }]
135
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { igoMatBadgeIcon: [{
136
+ type: Input
137
+ }], matBadgeHidden: [{
138
+ type: Input
139
+ }], matBadgeDisabled: [{
140
+ type: Input
141
+ }], igoMatBadgeInverseColor: [{
142
+ type: Input
143
+ }], igoMatBadgeInheritColor: [{
144
+ type: Input
145
+ }], igoMatBadgeColor: [{
146
+ type: Input
147
+ }], igoMatBadgeBackgroundColor: [{
148
+ type: Input
149
+ }] } });
150
+
151
+ /**
152
+ * @deprecated import the IgoBadgeIconDirective directly
153
+ */
154
+ class IgoMatBadgeIconModule {
155
+ static forRoot() {
156
+ return {
157
+ ngModule: IgoMatBadgeIconModule,
158
+ providers: []
159
+ };
160
+ }
161
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoMatBadgeIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
162
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoMatBadgeIconModule, imports: [IgoBadgeIconDirective], exports: [IgoBadgeIconDirective] });
163
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoMatBadgeIconModule });
164
+ }
165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoMatBadgeIconModule, decorators: [{
166
+ type: NgModule,
167
+ args: [{
168
+ imports: [IgoBadgeIconDirective],
169
+ exports: [IgoBadgeIconDirective]
170
+ }]
171
+ }] });
172
+
173
+ /**
174
+ * Generated bundle index. Do not edit.
175
+ */
176
+
177
+ export { IgoBadgeIconDirective, IgoMatBadgeIconModule };
178
+ //# sourceMappingURL=igo2-common-badge.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-badge.mjs","sources":["../../../packages/common/badge/src/badge-icon.directive.ts","../../../packages/common/badge/src/badge-icon.module.ts","../../../packages/common/badge/src/igo2-common-badge.ts"],"sourcesContent":["import { Directive, ElementRef, Input, OnInit } from '@angular/core';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * This directive allow to add an icon inside a matBadge.\n * A value must be set into the matBadge directive ex: matBadge=\"icon\".\n * The badge content will be overrided by this current directive.\n */\n@Directive({\n selector: '[igoMatBadgeIcon]',\n standalone: true,\n providers: [MatIconModule]\n})\nexport class IgoBadgeIconDirective implements OnInit {\n @Input()\n set igoMatBadgeIcon(value: string) {\n this.html = `\n <mat-icon class=\"mat-icon material-symbols-outlined\" style=\"height: 16px; width: 16px; font-size: 16px;\">${value}</mat-icon>\n `;\n this.updateHtml();\n }\n private html: string;\n\n @Input()\n set matBadgeHidden(value: boolean) {\n this.hidden = value;\n this.updateHidden();\n }\n private hidden = false;\n\n @Input()\n set matBadgeDisabled(value: boolean) {\n this.disabled = value;\n this.updateDisabled();\n }\n private disabled = false;\n\n @Input()\n set igoMatBadgeInverseColor(value: boolean) {\n this.inverseColor = value;\n this.updateColor();\n }\n private inverseColor = false;\n\n @Input()\n set igoMatBadgeInheritColor(value: boolean) {\n this.inheritColor = value;\n this.updateColor();\n }\n private inheritColor = false;\n\n @Input()\n set igoMatBadgeColor(value: string) {\n this.color = value;\n this.updateColor();\n }\n private color;\n\n @Input()\n set igoMatBadgeBackgroundColor(value: string) {\n this.backgroundColor = value;\n this.updateColor();\n }\n private backgroundColor;\n\n get badge() {\n return this.el.nativeElement.querySelector('.mat-badge-content');\n }\n\n private originalColor: string;\n\n constructor(private el: ElementRef) {}\n\n ngOnInit() {\n this.badge.style.alignItems = 'center';\n this.badge.style.justifyContent = 'center';\n\n this.updateHidden();\n this.updateColor();\n this.updateHtml();\n }\n\n private updateHtml() {\n if (!this.badge) {\n return;\n }\n this.badge.innerHTML = '';\n if (this.html) {\n this.badge.innerHTML = this.html;\n }\n }\n private updateColor() {\n if (!this.badge) {\n return;\n }\n\n if (this.color || this.backgroundColor) {\n this.badge.style.color = this.color ? this.color : '';\n this.badge.style.background = this.backgroundColor\n ? this.backgroundColor\n : '';\n } else if (this.inheritColor) {\n if (this.inverseColor) {\n this.badge.style.color = 'currentColor';\n this.badge.style.background = 'none';\n } else {\n this.badge.style.color = '';\n this.badge.style.background = 'currentColor';\n }\n } else if (!this.inheritColor) {\n if (this.inverseColor) {\n this.badge.style.color = window\n .getComputedStyle(this.badge, null)\n .getPropertyValue('background-color');\n this.badge.style.background = 'none';\n } else {\n this.badge.style.color = '';\n this.badge.style.background = '';\n }\n }\n this.originalColor = this.badge.style.color;\n this.updateDisabled();\n }\n\n private updateHidden() {\n if (!this.badge) {\n return;\n }\n this.badge.style.display = this.hidden ? 'none' : 'flex';\n }\n\n private updateDisabled() {\n if (!this.badge || !this.inverseColor) {\n return;\n }\n if (this.disabled) {\n this.originalColor = this.badge.style.color;\n this.badge.style.color = '#b9b9b9';\n } else {\n this.badge.style.color = this.originalColor;\n }\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { IgoBadgeIconDirective } from './badge-icon.directive';\n\n/**\n * @deprecated import the IgoBadgeIconDirective directly\n */\n@NgModule({\n imports: [IgoBadgeIconDirective],\n exports: [IgoBadgeIconDirective]\n})\nexport class IgoMatBadgeIconModule {\n static forRoot(): ModuleWithProviders<IgoMatBadgeIconModule> {\n return {\n ngModule: IgoMatBadgeIconModule,\n providers: []\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,61 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Directive, Output, HostListener, NgModule } from '@angular/core';
3
+
4
+ class ClickoutDirective {
5
+ el;
6
+ clickout = new EventEmitter();
7
+ handleMouseClick(event, target) {
8
+ if (!target) {
9
+ return;
10
+ }
11
+ if (!this.el.nativeElement.contains(target)) {
12
+ this.clickout.emit(event);
13
+ }
14
+ }
15
+ constructor(el) {
16
+ this.el = el;
17
+ }
18
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ClickoutDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
19
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: ClickoutDirective, isStandalone: true, selector: "[igoClickout]", outputs: { clickout: "clickout" }, host: { listeners: { "document:click": "handleMouseClick($event,$event.target)" } }, ngImport: i0 });
20
+ }
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ClickoutDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[igoClickout]',
25
+ standalone: true
26
+ }]
27
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { clickout: [{
28
+ type: Output
29
+ }], handleMouseClick: [{
30
+ type: HostListener,
31
+ args: ['document:click', ['$event', '$event.target']]
32
+ }] } });
33
+
34
+ /**
35
+ * @deprecated import the ClickoutDirective directly
36
+ */
37
+ class IgoClickoutModule {
38
+ static forRoot() {
39
+ return {
40
+ ngModule: IgoClickoutModule,
41
+ providers: []
42
+ };
43
+ }
44
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoClickoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
45
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoClickoutModule, imports: [ClickoutDirective], exports: [ClickoutDirective] });
46
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoClickoutModule });
47
+ }
48
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoClickoutModule, decorators: [{
49
+ type: NgModule,
50
+ args: [{
51
+ imports: [ClickoutDirective],
52
+ exports: [ClickoutDirective]
53
+ }]
54
+ }] });
55
+
56
+ /**
57
+ * Generated bundle index. Do not edit.
58
+ */
59
+
60
+ export { ClickoutDirective, IgoClickoutModule };
61
+ //# sourceMappingURL=igo2-common-clickout.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-clickout.mjs","sources":["../../../packages/common/clickout/src/clickout.directive.ts","../../../packages/common/clickout/src/clickout.module.ts","../../../packages/common/clickout/src/igo2-common-clickout.ts"],"sourcesContent":["import {\n Directive,\n ElementRef,\n EventEmitter,\n HostListener,\n Output\n} from '@angular/core';\n\n@Directive({\n selector: '[igoClickout]',\n standalone: true\n})\nexport class ClickoutDirective {\n @Output() clickout = new EventEmitter<MouseEvent>();\n\n @HostListener('document:click', ['$event', '$event.target'])\n handleMouseClick(event: MouseEvent, target: HTMLElement) {\n if (!target) {\n return;\n }\n\n if (!this.el.nativeElement.contains(target)) {\n this.clickout.emit(event);\n }\n }\n\n constructor(private el: ElementRef) {}\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { ClickoutDirective } from './clickout.directive';\n\n/**\n * @deprecated import the ClickoutDirective directly\n */\n@NgModule({\n imports: [ClickoutDirective],\n exports: [ClickoutDirective]\n})\nexport class IgoClickoutModule {\n static forRoot(): ModuleWithProviders<IgoClickoutModule> {\n return {\n ngModule: IgoClickoutModule,\n providers: []\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;MAYa,iBAAiB,CAAA;AAcR,IAAA,EAAA,CAAA;AAbV,IAAA,QAAQ,GAAG,IAAI,YAAY,EAAc,CAAC;IAGpD,gBAAgB,CAAC,KAAiB,EAAE,MAAmB,EAAA;QACrD,IAAI,CAAC,MAAM,EAAE;YACX,OAAO;SACR;AAED,QAAA,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;AAC3C,YAAA,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC3B;KACF;AAED,IAAA,WAAA,CAAoB,EAAc,EAAA;QAAd,IAAE,CAAA,EAAA,GAAF,EAAE,CAAY;KAAI;uGAd3B,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,gBAAA,EAAA,wCAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;AACzB,oBAAA,UAAU,EAAE,IAAI;AACjB,iBAAA,CAAA;+EAEW,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAGP,gBAAgB,EAAA,CAAA;sBADf,YAAY;AAAC,gBAAA,IAAA,EAAA,CAAA,gBAAgB,EAAE,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAA;;;ACX7D;;AAEG;MAKU,iBAAiB,CAAA;AAC5B,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,iBAAiB;AAC3B,YAAA,SAAS,EAAE,EAAE;SACd,CAAC;KACH;uGANU,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wGAAjB,iBAAiB,EAAA,OAAA,EAAA,CAHlB,iBAAiB,CAAA,EAAA,OAAA,EAAA,CACjB,iBAAiB,CAAA,EAAA,CAAA,CAAA;wGAEhB,iBAAiB,EAAA,CAAA,CAAA;;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,iBAAiB,CAAC;oBAC5B,OAAO,EAAE,CAAC,iBAAiB,CAAC;AAC7B,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,54 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Pipe, NgModule } from '@angular/core';
3
+
4
+ class ClonePipe {
5
+ transform(value, args) {
6
+ if (value === undefined) {
7
+ return value;
8
+ }
9
+ if (value instanceof Array) {
10
+ return value.map((obj) => Object.assign(Object.create(obj), obj));
11
+ }
12
+ else {
13
+ return Object.assign(Object.create(value), value);
14
+ }
15
+ }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ClonePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
17
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: ClonePipe, isStandalone: true, name: "clone" });
18
+ }
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ClonePipe, decorators: [{
20
+ type: Pipe,
21
+ args: [{
22
+ name: 'clone',
23
+ standalone: true
24
+ }]
25
+ }] });
26
+
27
+ /**
28
+ * @deprecated import the ClonePipe directly
29
+ */
30
+ class IgoCloneModule {
31
+ static forRoot() {
32
+ return {
33
+ ngModule: IgoCloneModule,
34
+ providers: []
35
+ };
36
+ }
37
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCloneModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
38
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoCloneModule, imports: [ClonePipe], exports: [ClonePipe] });
39
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCloneModule });
40
+ }
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCloneModule, decorators: [{
42
+ type: NgModule,
43
+ args: [{
44
+ imports: [ClonePipe],
45
+ exports: [ClonePipe]
46
+ }]
47
+ }] });
48
+
49
+ /**
50
+ * Generated bundle index. Do not edit.
51
+ */
52
+
53
+ export { ClonePipe, IgoCloneModule };
54
+ //# sourceMappingURL=igo2-common-clone.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-clone.mjs","sources":["../../../packages/common/clone/src/clone.pipe.ts","../../../packages/common/clone/src/clone.module.ts","../../../packages/common/clone/src/igo2-common-clone.ts"],"sourcesContent":["import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'clone',\n standalone: true\n})\nexport class ClonePipe implements PipeTransform {\n transform(value: any, args?: any): any {\n if (value === undefined) {\n return value;\n }\n\n if (value instanceof Array) {\n return value.map((obj) => Object.assign(Object.create(obj), obj));\n } else {\n return Object.assign(Object.create(value), value);\n }\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { ClonePipe } from './clone.pipe';\n\n/**\n * @deprecated import the ClonePipe directly\n */\n@NgModule({\n imports: [ClonePipe],\n exports: [ClonePipe]\n})\nexport class IgoCloneModule {\n static forRoot(): ModuleWithProviders<IgoCloneModule> {\n return {\n ngModule: IgoCloneModule,\n providers: []\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;MAMa,SAAS,CAAA;IACpB,SAAS,CAAC,KAAU,EAAE,IAAU,EAAA;AAC9B,QAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACvB,YAAA,OAAO,KAAK,CAAC;SACd;AAED,QAAA,IAAI,KAAK,YAAY,KAAK,EAAE;YAC1B,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;SACnE;aAAM;AACL,YAAA,OAAO,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC;SACnD;KACF;uGAXU,SAAS,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;qGAAT,SAAS,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,OAAA,EAAA,CAAA,CAAA;;2FAAT,SAAS,EAAA,UAAA,EAAA,CAAA;kBAJrB,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACJ,oBAAA,IAAI,EAAE,OAAO;AACb,oBAAA,UAAU,EAAE,IAAI;AACjB,iBAAA,CAAA;;;ACDD;;AAEG;MAKU,cAAc,CAAA;AACzB,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,cAAc;AACxB,YAAA,SAAS,EAAE,EAAE;SACd,CAAC;KACH;uGANU,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wGAAd,cAAc,EAAA,OAAA,EAAA,CAHf,SAAS,CAAA,EAAA,OAAA,EAAA,CACT,SAAS,CAAA,EAAA,CAAA,CAAA;wGAER,cAAc,EAAA,CAAA,CAAA;;2FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAJ1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,SAAS,CAAC;oBACpB,OAAO,EAAE,CAAC,SAAS,CAAC;AACrB,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,126 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Directive, Input, Output, HostListener, Component, NgModule } from '@angular/core';
3
+ import * as i2 from '@angular/material/icon';
4
+ import { MatIconModule } from '@angular/material/icon';
5
+ import * as i1 from '@angular/material/list';
6
+ import { MatListModule } from '@angular/material/list';
7
+
8
+ class CollapseDirective {
9
+ renderer;
10
+ el;
11
+ get target() {
12
+ return this._target;
13
+ }
14
+ set target(value) {
15
+ this._target = value;
16
+ }
17
+ _target;
18
+ get collapsed() {
19
+ return this._collapsed;
20
+ }
21
+ set collapsed(collapsed) {
22
+ collapsed ? this.collapseTarget() : this.expandTarget();
23
+ this._collapsed = collapsed;
24
+ this.toggle.emit(collapsed);
25
+ }
26
+ _collapsed = false;
27
+ toggle = new EventEmitter();
28
+ click() {
29
+ this.collapsed = !this.collapsed;
30
+ }
31
+ constructor(renderer, el) {
32
+ this.renderer = renderer;
33
+ this.el = el;
34
+ }
35
+ collapseTarget() {
36
+ this.renderer.addClass(this.target, 'igo-collapsed');
37
+ this.renderer.addClass(this.el.nativeElement, 'collapsed');
38
+ }
39
+ expandTarget() {
40
+ this.renderer.removeClass(this.target, 'igo-collapsed');
41
+ this.renderer.removeClass(this.el.nativeElement, 'collapsed');
42
+ }
43
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CollapseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
44
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: CollapseDirective, isStandalone: true, selector: "[igoCollapse]", inputs: { target: "target", collapsed: "collapsed" }, outputs: { toggle: "toggle" }, host: { listeners: { "click": "click()" } }, ngImport: i0 });
45
+ }
46
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CollapseDirective, decorators: [{
47
+ type: Directive,
48
+ args: [{
49
+ selector: '[igoCollapse]',
50
+ standalone: true
51
+ }]
52
+ }], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { target: [{
53
+ type: Input
54
+ }], collapsed: [{
55
+ type: Input
56
+ }], toggle: [{
57
+ type: Output
58
+ }], click: [{
59
+ type: HostListener,
60
+ args: ['click']
61
+ }] } });
62
+
63
+ class CollapsibleComponent {
64
+ get title() {
65
+ return this._title;
66
+ }
67
+ set title(value) {
68
+ this._title = value;
69
+ }
70
+ _title = '';
71
+ get collapsed() {
72
+ return this._collapsed;
73
+ }
74
+ set collapsed(value) {
75
+ this._collapsed = value;
76
+ this.toggle.emit(value);
77
+ }
78
+ _collapsed = false;
79
+ toggle = new EventEmitter();
80
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CollapsibleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: CollapsibleComponent, isStandalone: true, selector: "igo-collapsible", inputs: { title: "title", collapsed: "collapsed" }, outputs: { toggle: "toggle" }, ngImport: i0, template: "<mat-list-item>\n <mat-icon\n class=\"igo-chevron\"\n matListItemIcon\n igoCollapse\n [target]=\"content\"\n [collapsed]=\"collapsed\"\n (toggle)=\"collapsed = $event\"\n >\n expand_less\n </mat-icon>\n <span matListItemTitle>{{ title }}</span>\n</mat-list-item>\n\n<div #content>\n <ng-content></ng-content>\n</div>\n", styles: [":host ::ng-deep .mat-mdc-list .mat-mdc-list-item.mat-mdc-list-item-avatar{height:auto;width:auto;padding:0}mat-list-item{overflow:hidden}\n"], dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: CollapseDirective, selector: "[igoCollapse]", inputs: ["target", "collapsed"], outputs: ["toggle"] }] });
82
+ }
83
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: CollapsibleComponent, decorators: [{
84
+ type: Component,
85
+ args: [{ selector: 'igo-collapsible', standalone: true, imports: [MatListModule, MatIconModule, CollapseDirective], template: "<mat-list-item>\n <mat-icon\n class=\"igo-chevron\"\n matListItemIcon\n igoCollapse\n [target]=\"content\"\n [collapsed]=\"collapsed\"\n (toggle)=\"collapsed = $event\"\n >\n expand_less\n </mat-icon>\n <span matListItemTitle>{{ title }}</span>\n</mat-list-item>\n\n<div #content>\n <ng-content></ng-content>\n</div>\n", styles: [":host ::ng-deep .mat-mdc-list .mat-mdc-list-item.mat-mdc-list-item-avatar{height:auto;width:auto;padding:0}mat-list-item{overflow:hidden}\n"] }]
86
+ }], propDecorators: { title: [{
87
+ type: Input
88
+ }], collapsed: [{
89
+ type: Input
90
+ }], toggle: [{
91
+ type: Output
92
+ }] } });
93
+
94
+ /**
95
+ * @deprecated import the components/directives directly or COLLAPSIBLE_DIRECTIVES for the set
96
+ */
97
+ class IgoCollapsibleModule {
98
+ static forRoot() {
99
+ return {
100
+ ngModule: IgoCollapsibleModule,
101
+ providers: []
102
+ };
103
+ }
104
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCollapsibleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
105
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoCollapsibleModule, imports: [CollapsibleComponent, CollapseDirective], exports: [CollapsibleComponent, CollapseDirective] });
106
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCollapsibleModule, imports: [CollapsibleComponent] });
107
+ }
108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoCollapsibleModule, decorators: [{
109
+ type: NgModule,
110
+ args: [{
111
+ imports: [CollapsibleComponent, CollapseDirective],
112
+ exports: [CollapsibleComponent, CollapseDirective]
113
+ }]
114
+ }] });
115
+
116
+ const COLLAPSIBLE_DIRECTIVES = [
117
+ CollapsibleComponent,
118
+ CollapseDirective
119
+ ];
120
+
121
+ /**
122
+ * Generated bundle index. Do not edit.
123
+ */
124
+
125
+ export { COLLAPSIBLE_DIRECTIVES, CollapseDirective, CollapsibleComponent, IgoCollapsibleModule };
126
+ //# sourceMappingURL=igo2-common-collapsible.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"igo2-common-collapsible.mjs","sources":["../../../packages/common/collapsible/src/collapse.directive.ts","../../../packages/common/collapsible/src/collapsible.component.ts","../../../packages/common/collapsible/src/collapsible.component.html","../../../packages/common/collapsible/src/collapsible.module.ts","../../../packages/common/collapsible/src/public_api.ts","../../../packages/common/collapsible/src/igo2-common-collapsible.ts"],"sourcesContent":["import {\n Directive,\n ElementRef,\n EventEmitter,\n HostListener,\n Input,\n Output,\n Renderer2\n} from '@angular/core';\n\n@Directive({\n selector: '[igoCollapse]',\n standalone: true\n})\nexport class CollapseDirective {\n @Input()\n get target() {\n return this._target;\n }\n set target(value: Element) {\n this._target = value;\n }\n private _target: Element;\n\n @Input()\n get collapsed(): boolean {\n return this._collapsed;\n }\n set collapsed(collapsed: boolean) {\n collapsed ? this.collapseTarget() : this.expandTarget();\n this._collapsed = collapsed;\n this.toggle.emit(collapsed);\n }\n private _collapsed = false;\n\n @Output() toggle: EventEmitter<boolean> = new EventEmitter();\n\n @HostListener('click')\n click() {\n this.collapsed = !this.collapsed;\n }\n\n constructor(\n private renderer: Renderer2,\n private el: ElementRef\n ) {}\n\n private collapseTarget() {\n this.renderer.addClass(this.target, 'igo-collapsed');\n this.renderer.addClass(this.el.nativeElement, 'collapsed');\n }\n\n private expandTarget() {\n this.renderer.removeClass(this.target, 'igo-collapsed');\n this.renderer.removeClass(this.el.nativeElement, 'collapsed');\n }\n}\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatListModule } from '@angular/material/list';\n\nimport { CollapseDirective } from './collapse.directive';\n\n@Component({\n selector: 'igo-collapsible',\n templateUrl: './collapsible.component.html',\n styleUrls: ['./collapsible.component.scss'],\n standalone: true,\n imports: [MatListModule, MatIconModule, CollapseDirective]\n})\nexport class CollapsibleComponent {\n @Input()\n get title() {\n return this._title;\n }\n set title(value: string) {\n this._title = value;\n }\n private _title = '';\n\n @Input()\n get collapsed() {\n return this._collapsed;\n }\n set collapsed(value: boolean) {\n this._collapsed = value;\n this.toggle.emit(value);\n }\n private _collapsed = false;\n\n @Output() toggle: EventEmitter<boolean> = new EventEmitter();\n}\n","<mat-list-item>\n <mat-icon\n class=\"igo-chevron\"\n matListItemIcon\n igoCollapse\n [target]=\"content\"\n [collapsed]=\"collapsed\"\n (toggle)=\"collapsed = $event\"\n >\n expand_less\n </mat-icon>\n <span matListItemTitle>{{ title }}</span>\n</mat-list-item>\n\n<div #content>\n <ng-content></ng-content>\n</div>\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { CollapseDirective } from './collapse.directive';\nimport { CollapsibleComponent } from './collapsible.component';\n\n/**\n * @deprecated import the components/directives directly or COLLAPSIBLE_DIRECTIVES for the set\n */\n@NgModule({\n imports: [CollapsibleComponent, CollapseDirective],\n exports: [CollapsibleComponent, CollapseDirective]\n})\nexport class IgoCollapsibleModule {\n static forRoot(): ModuleWithProviders<IgoCollapsibleModule> {\n return {\n ngModule: IgoCollapsibleModule,\n providers: []\n };\n }\n}\n","import { CollapseDirective } from './collapse.directive';\nimport { CollapsibleComponent } from './collapsible.component';\n\nexport * from './collapsible.component';\nexport * from './collapsible.module';\nexport * from './collapse.directive';\n\nexport const COLLAPSIBLE_DIRECTIVES = [\n CollapsibleComponent,\n CollapseDirective\n] as const;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}