ids-enterprise-ng 18.6.0-dev.17 → 18.6.0-dev.18

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 (1006) hide show
  1. package/.eslintrc.json +81 -0
  2. package/karma.conf.js +86 -0
  3. package/ng-package.json +15 -0
  4. package/ng-package.prod.json +14 -0
  5. package/package.json +5 -19
  6. package/src/lib/about/soho-about.module.ts +18 -0
  7. package/src/lib/about/soho-about.ref.ts +250 -0
  8. package/src/lib/about/soho-about.service.ts +29 -0
  9. package/src/lib/accordion/README.md +101 -0
  10. package/src/lib/accordion/soho-accordion-header.component.html +5 -0
  11. package/src/lib/accordion/soho-accordion-header.component.ts +47 -0
  12. package/src/lib/accordion/soho-accordion-pane.component.html +1 -0
  13. package/src/lib/accordion/soho-accordion-pane.component.ts +14 -0
  14. package/src/lib/accordion/soho-accordion.component.css +4 -0
  15. package/src/lib/accordion/soho-accordion.component.html +9 -0
  16. package/src/lib/accordion/soho-accordion.component.ts +503 -0
  17. package/src/lib/accordion/soho-accordion.module.ts +22 -0
  18. package/src/lib/actionsheet/README.md +87 -0
  19. package/src/lib/actionsheet/soho-actionsheet.component.ts +266 -0
  20. package/src/lib/actionsheet/soho-actionsheet.module.ts +14 -0
  21. package/src/lib/alert/soho-alert-directive.spec.ts +59 -0
  22. package/src/lib/alert/soho-alert.directive.ts +182 -0
  23. package/src/lib/alert/soho-alert.module.ts +16 -0
  24. package/src/lib/application-menu/README.md +7 -0
  25. package/src/lib/application-menu/soho-application-menu.component.html +1 -0
  26. package/src/lib/application-menu/soho-application-menu.component.ts +378 -0
  27. package/src/lib/application-menu/soho-application-menu.module.ts +19 -0
  28. package/src/lib/arrange/soho-arrange.directive.ts +63 -0
  29. package/src/lib/arrange/soho-arrange.module.ts +13 -0
  30. package/src/lib/autocomplete/soho-autocomplete-reactive-form.spec.ts +112 -0
  31. package/src/lib/autocomplete/soho-autocomplete.component.ts +247 -0
  32. package/src/lib/autocomplete/soho-autocomplete.module.ts +17 -0
  33. package/src/lib/autocomplete/soho-autocomplete.spec.ts +111 -0
  34. package/src/lib/bar/soho-bar.component.ts +309 -0
  35. package/src/lib/bar/soho-bar.module.ts +17 -0
  36. package/src/lib/bar/soho-bar.spec.ts +217 -0
  37. package/src/lib/blockgrid/soho-blockgrid.component.ts +230 -0
  38. package/src/lib/blockgrid/soho-blockgrid.module.ts +17 -0
  39. package/src/lib/blockgrid/soho-blockgrid.spec.ts +205 -0
  40. package/src/lib/breadcrumb/soho-breadcrumb.component.html +1 -0
  41. package/src/lib/breadcrumb/soho-breadcrumb.component.ts +257 -0
  42. package/src/lib/breadcrumb/soho-breadcrumb.module.ts +19 -0
  43. package/src/lib/breadcrumb/soho-breadcrumb.spec.ts +99 -0
  44. package/src/lib/bullet/soho-bullet.component.ts +129 -0
  45. package/src/lib/bullet/soho-bullet.module.ts +17 -0
  46. package/src/lib/bullet/soho-bullet.spec.ts +126 -0
  47. package/src/lib/busyindicator/soho-busyindicator.directive.ts +304 -0
  48. package/src/lib/busyindicator/soho-busyindicator.module.ts +19 -0
  49. package/src/lib/button/soho-button.component.html +4 -0
  50. package/src/lib/button/soho-button.component.spec.ts +110 -0
  51. package/src/lib/button/soho-button.component.ts +560 -0
  52. package/src/lib/button/soho-button.module.ts +18 -0
  53. package/src/lib/buttonset/soho-buttonset.component.spec.ts +87 -0
  54. package/src/lib/buttonset/soho-buttonset.component.ts +305 -0
  55. package/src/lib/buttonset/soho-buttonset.module.ts +16 -0
  56. package/src/lib/calendar/soho-calendar.component.ts +708 -0
  57. package/src/lib/calendar/soho-calendar.module.ts +20 -0
  58. package/src/lib/calendar/soho-calendar.spec.ts +331 -0
  59. package/src/lib/card/soho-card.component.ts +412 -0
  60. package/src/lib/card/soho-card.module.ts +31 -0
  61. package/src/lib/chart/soho-chart.component.ts +209 -0
  62. package/src/lib/chart/soho-chart.module.ts +16 -0
  63. package/src/lib/checkbox/soho-checkbox-reactive-form.spec.ts +111 -0
  64. package/src/lib/checkbox/soho-checkbox.component.ts +107 -0
  65. package/src/lib/checkbox/soho-checkbox.module.ts +16 -0
  66. package/src/lib/circlepager/soho-circlepager.component.ts +111 -0
  67. package/src/lib/circlepager/soho-circlepager.module.ts +17 -0
  68. package/src/lib/circlepager/soho-circlepager.spec.ts +84 -0
  69. package/src/lib/colorpicker/soho-colorpicker-reactive-form.spec.ts +111 -0
  70. package/src/lib/colorpicker/soho-colorpicker.component.ts +450 -0
  71. package/src/lib/colorpicker/soho-colorpicker.module.ts +16 -0
  72. package/src/lib/column/soho-column.component.ts +289 -0
  73. package/src/lib/column/soho-column.module.ts +17 -0
  74. package/src/lib/column/soho-column.spec.ts +321 -0
  75. package/src/lib/context-menu/soho-context-menu.directive.ts +344 -0
  76. package/src/lib/context-menu/soho-context-menu.module.ts +31 -0
  77. package/src/lib/context-menu/soho-context-menu.spec.ts +84 -0
  78. package/src/lib/contextual-action-panel/README.md +124 -0
  79. package/src/lib/contextual-action-panel/soho-contextual-action-panel.module.ts +18 -0
  80. package/src/lib/contextual-action-panel/soho-contextual-action-panel.ref.ts +579 -0
  81. package/src/lib/contextual-action-panel/soho-contextual-action-panel.service.ts +62 -0
  82. package/src/lib/datagrid/README.md +131 -0
  83. package/src/lib/datagrid/index.ts +7 -0
  84. package/src/lib/datagrid/soho-datagrid.component.ts +3468 -0
  85. package/src/lib/datagrid/soho-datagrid.module.ts +16 -0
  86. package/src/lib/datagrid/soho-datagrid.service.ts +21 -0
  87. package/src/lib/datagrid/soho-datagrid.spec.ts +745 -0
  88. package/src/lib/datepicker/soho-datepicker-reactive-form.spec.ts +94 -0
  89. package/src/lib/datepicker/soho-datepicker.component.ts +711 -0
  90. package/src/lib/datepicker/soho-datepicker.module.ts +16 -0
  91. package/src/lib/datepicker/soho-datepicker.spec.ts +438 -0
  92. package/src/lib/drag/soho-drag.directive.ts +64 -0
  93. package/src/lib/drag/soho-drag.module.ts +17 -0
  94. package/src/lib/dropdown/soho-dropdown-reactive-form.spec.ts +104 -0
  95. package/src/lib/dropdown/soho-dropdown.component.ts +864 -0
  96. package/src/lib/dropdown/soho-dropdown.module.ts +16 -0
  97. package/src/lib/dropdown/soho-dropdown.spec.ts +142 -0
  98. package/src/lib/editor/soho-editor-reactive-form.spec.ts +110 -0
  99. package/src/lib/editor/soho-editor.component.spec.ts +78 -0
  100. package/src/lib/editor/soho-editor.component.ts +387 -0
  101. package/src/lib/editor/soho-editor.module.ts +17 -0
  102. package/src/lib/emptymessage/soho-emptymessage.directive.ts +215 -0
  103. package/src/lib/emptymessage/soho-emptymessage.module.ts +16 -0
  104. package/src/lib/error/soho-error.directive.ts +119 -0
  105. package/src/lib/error/soho-error.module.ts +16 -0
  106. package/src/lib/expandablearea/soho-expandablearea.component.html +22 -0
  107. package/src/lib/expandablearea/soho-expandablearea.component.ts +318 -0
  108. package/src/lib/expandablearea/soho-expandablearea.module.ts +25 -0
  109. package/src/lib/field-filter/soho-field-filter.directive.spec.ts +129 -0
  110. package/src/lib/field-filter/soho-field-filter.directive.ts +162 -0
  111. package/src/lib/field-filter/soho-field-filter.module.ts +16 -0
  112. package/src/lib/field-options/soho-field-options.directive.ts +56 -0
  113. package/src/lib/field-options/soho-field-options.module.ts +16 -0
  114. package/src/lib/fileupload/soho-fileupload.component.ts +159 -0
  115. package/src/lib/fileupload/soho-fileupload.module.ts +17 -0
  116. package/src/lib/fileupload/soho-fileupload.spec.ts +87 -0
  117. package/src/lib/fileupload-advanced/README.md +79 -0
  118. package/src/lib/fileupload-advanced/soho-fileupload-advanced.component.html +1 -0
  119. package/src/lib/fileupload-advanced/soho-fileupload-advanced.component.ts +473 -0
  120. package/src/lib/fileupload-advanced/soho-fileupload-advanced.module.ts +17 -0
  121. package/src/lib/fileupload-advanced/soho-fileupload-advanced.spec.ts +78 -0
  122. package/src/lib/form-compact/soho-form-compact.component.ts +66 -0
  123. package/src/lib/form-compact/soho-form-compact.module.ts +17 -0
  124. package/src/lib/form-compact/soho-form-compact.spec.ts +115 -0
  125. package/src/lib/header/soho-header.component.html +1 -0
  126. package/src/lib/header/soho-header.component.ts +74 -0
  127. package/src/lib/header/soho-header.module.ts +16 -0
  128. package/src/lib/hierarchy/soho-hierarchy.component.ts +140 -0
  129. package/src/lib/hierarchy/soho-hierarchy.module.ts +18 -0
  130. package/src/lib/homepage/soho-homepage-sizer.directive.ts +43 -0
  131. package/src/lib/homepage/soho-homepage.component.ts +286 -0
  132. package/src/lib/homepage/soho-homepage.module.ts +30 -0
  133. package/src/lib/homepage/soho-widget-content.component.ts +9 -0
  134. package/src/lib/homepage/soho-widget-header.component.ts +9 -0
  135. package/src/lib/homepage/soho-widget-title.component.ts +14 -0
  136. package/src/lib/homepage/soho-widget.component.ts +154 -0
  137. package/src/lib/hyperlink/soho-hyperlink.component.ts +91 -0
  138. package/src/lib/hyperlink/soho-hyperlink.module.ts +20 -0
  139. package/src/lib/hyperlink/soho-hyperlink.spec.ts +90 -0
  140. package/src/lib/icon/soho-icon.component.ts +79 -0
  141. package/src/lib/icon/soho-icon.module.ts +39 -0
  142. package/src/lib/icon/soho-icons-app.component.ts +13 -0
  143. package/src/lib/icon/soho-icons-empty-new.component.ts +16 -0
  144. package/src/lib/icon/soho-icons-empty-uplift.component.ts +13 -0
  145. package/src/lib/icon/soho-icons-empty.component.ts +28 -0
  146. package/src/lib/icon/soho-icons-extended.component.spec.ts +25 -0
  147. package/src/lib/icon/soho-icons-extended.component.ts +20 -0
  148. package/src/lib/icon/soho-icons-new.component.ts +13 -0
  149. package/src/lib/icon/soho-icons-uplift.component.ts +13 -0
  150. package/src/lib/icon/soho-icons.component.ts +13 -0
  151. package/src/lib/icon/svg-app.html +50 -0
  152. package/src/lib/icon/svg-empty.html +95 -0
  153. package/src/lib/icon/svg-extended.html +1 -0
  154. package/src/lib/icon/svg-patterns.html +79 -0
  155. package/src/lib/icon/svg.html +421 -0
  156. package/src/lib/icon/theme-classic-svg-empty.html +13 -0
  157. package/src/lib/icon/theme-classic-svg.html +422 -0
  158. package/src/lib/icon/theme-new-default-svg.html +768 -0
  159. package/src/lib/icon/theme-new-svg-empty.html +37 -0
  160. package/src/lib/icon/theme-new-svg.html +768 -0
  161. package/src/lib/icon/theme-uplift-svg-empty.html +1 -0
  162. package/src/lib/icon/theme-uplift-svg.html +768 -0
  163. package/src/lib/index.ts +97 -0
  164. package/src/lib/input/soho-input-reactive-form.spec.ts +113 -0
  165. package/src/lib/input/soho-input.component.ts +167 -0
  166. package/src/lib/input/soho-input.module.ts +16 -0
  167. package/src/lib/input-validate/README.md +158 -0
  168. package/src/lib/input-validate/soho-input-validate.directive.ts +126 -0
  169. package/src/lib/input-validate/soho-input-validate.module.ts +16 -0
  170. package/src/lib/label/soho-label.directive.ts +68 -0
  171. package/src/lib/label/soho-label.module.ts +16 -0
  172. package/src/lib/line/soho-line.component.ts +242 -0
  173. package/src/lib/line/soho-line.module.ts +17 -0
  174. package/src/lib/line/soho-line.spec.ts +204 -0
  175. package/src/lib/listbuilder/index.ts +2 -0
  176. package/src/lib/listbuilder/soho-listbuilder.component.html +21 -0
  177. package/src/lib/listbuilder/soho-listbuilder.component.ts +229 -0
  178. package/src/lib/listbuilder/soho-listbuilder.module.ts +24 -0
  179. package/src/lib/listbuilder/soho-listbuilder.spec.ts +24 -0
  180. package/src/lib/listview/README.md +72 -0
  181. package/src/lib/listview/soho-listview.component.html +12 -0
  182. package/src/lib/listview/soho-listview.component.ts +560 -0
  183. package/src/lib/listview/soho-listview.module.ts +37 -0
  184. package/src/lib/listview/soho-listview.spec.ts +149 -0
  185. package/src/lib/locale/soho-formatdate.pipe.ts +25 -0
  186. package/src/lib/locale/soho-formatdate.spec.ts +34 -0
  187. package/src/lib/locale/soho-formatnumber.pipe.ts +25 -0
  188. package/src/lib/locale/soho-formatnumber.spec.ts +43 -0
  189. package/src/lib/locale/soho-locale.module.ts +21 -0
  190. package/src/lib/locale/soho-locale.spec.ts +23 -0
  191. package/src/lib/locale/soho-translate.pipe.ts +29 -0
  192. package/src/lib/locale/soho-translate.spec.ts +43 -0
  193. package/src/lib/lookup/soho-lookup-disabled.spec.ts +167 -0
  194. package/src/lib/lookup/soho-lookup.component.ts +850 -0
  195. package/src/lib/lookup/soho-lookup.module.ts +16 -0
  196. package/src/lib/lookup/soho-lookup.spec.ts +300 -0
  197. package/src/lib/mask/soho-mask.directive.ts +424 -0
  198. package/src/lib/mask/soho-mask.module.ts +16 -0
  199. package/src/lib/mask/soho-mask.spec.ts +162 -0
  200. package/src/lib/masthead/soho-masthead.component.html +8 -0
  201. package/src/lib/masthead/soho-masthead.component.ts +18 -0
  202. package/src/lib/masthead/soho-masthead.module.ts +16 -0
  203. package/src/lib/menu-button/soho-menu-button.component.css +7 -0
  204. package/src/lib/menu-button/soho-menu-button.component.html +3 -0
  205. package/src/lib/menu-button/soho-menu-button.component.spec.ts +416 -0
  206. package/src/lib/menu-button/soho-menu-button.component.ts +333 -0
  207. package/src/lib/menu-button/soho-menu-button.module.ts +18 -0
  208. package/src/lib/message/soho-message.module.ts +18 -0
  209. package/src/lib/message/soho-message.ref.ts +308 -0
  210. package/src/lib/message/soho-message.service.ts +90 -0
  211. package/src/lib/modal-dialog/README.md +199 -0
  212. package/src/lib/modal-dialog/soho-modal-dialog.module.ts +18 -0
  213. package/src/lib/modal-dialog/soho-modal-dialog.ref.ts +834 -0
  214. package/src/lib/modal-dialog/soho-modal-dialog.service.ts +82 -0
  215. package/src/lib/module-nav/soho-module-nav.component.css +3 -0
  216. package/src/lib/module-nav/soho-module-nav.component.html +1 -0
  217. package/src/lib/module-nav/soho-module-nav.component.ts +274 -0
  218. package/src/lib/module-nav/soho-module-nav.module.ts +20 -0
  219. package/src/lib/module-nav-container/soho-module-nav-container.component.css +3 -0
  220. package/src/lib/module-nav-container/soho-module-nav-container.component.html +1 -0
  221. package/src/lib/module-nav-container/soho-module-nav-container.component.ts +19 -0
  222. package/src/lib/module-nav-container/soho-module-nav-container.module.ts +16 -0
  223. package/src/lib/module-nav-settings/soho-module-nav-settings.component.css +3 -0
  224. package/src/lib/module-nav-settings/soho-module-nav-settings.component.html +1 -0
  225. package/src/lib/module-nav-settings/soho-module-nav-settings.component.ts +114 -0
  226. package/src/lib/module-nav-settings/soho-module-nav-settings.module.ts +16 -0
  227. package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.css +3 -0
  228. package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.html +20 -0
  229. package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.ts +280 -0
  230. package/src/lib/module-nav-switcher/soho-module-nav-switcher.module.ts +18 -0
  231. package/src/lib/monthview/soho-monthview.component.ts +664 -0
  232. package/src/lib/monthview/soho-monthview.module.ts +16 -0
  233. package/src/lib/notification/soho-notification.module.ts +13 -0
  234. package/src/lib/notification/soho-notification.service.ts +39 -0
  235. package/src/lib/notification-badge/soho-notification-badge.component.ts +94 -0
  236. package/src/lib/notification-badge/soho-notification-badge.module.ts +16 -0
  237. package/src/lib/pager/soho-pager.module.ts +18 -0
  238. package/src/lib/pager/soho-standalone-pager.component.spec.ts +139 -0
  239. package/src/lib/pager/soho-standalone-pager.component.ts +219 -0
  240. package/src/lib/personalize/soho-personalize.directive.ts +158 -0
  241. package/src/lib/personalize/soho-personalize.module.ts +16 -0
  242. package/src/lib/personalize/soho-personalize.spec.ts +74 -0
  243. package/src/lib/pie/soho-pie.component.ts +297 -0
  244. package/src/lib/pie/soho-pie.module.ts +17 -0
  245. package/src/lib/pie/soho-pie.spec.ts +205 -0
  246. package/src/lib/popdown/soho-popdown-contents.component.ts +11 -0
  247. package/src/lib/popdown/soho-popdown.directive.ts +82 -0
  248. package/src/lib/popdown/soho-popdown.module.ts +17 -0
  249. package/src/lib/popdown/soho-popdown.spec.ts +55 -0
  250. package/src/lib/popupmenu/soho-popupmenu.component.ts +459 -0
  251. package/src/lib/popupmenu/soho-popupmenu.module.ts +31 -0
  252. package/src/lib/popupmenu/soho-popupmenu.spec.ts +243 -0
  253. package/src/lib/progress/soho-progress.component.ts +80 -0
  254. package/src/lib/progress/soho-progress.module.ts +13 -0
  255. package/src/lib/progress/soho-progress.spec.ts +58 -0
  256. package/src/lib/radar/soho-radar.component.ts +329 -0
  257. package/src/lib/radar/soho-radar.module.ts +17 -0
  258. package/src/lib/radar/soho-radar.spec.ts +222 -0
  259. package/src/lib/radiobutton/soho-radiobutton-reactive-form.spec.ts +119 -0
  260. package/src/lib/radiobutton/soho-radiobutton.component.ts +106 -0
  261. package/src/lib/radiobutton/soho-radiobutton.module.ts +17 -0
  262. package/src/lib/rating/soho-rating.component.ts +70 -0
  263. package/src/lib/rating/soho-rating.module.ts +17 -0
  264. package/src/lib/rating/soho-rating.spec.ts +71 -0
  265. package/src/lib/renderLoop/soho-render-loop.module.ts +18 -0
  266. package/src/lib/renderLoop/soho-render-loop.service.ts +31 -0
  267. package/src/lib/searchfield/soho-searchfield.component.ts +166 -0
  268. package/src/lib/searchfield/soho-searchfield.module.ts +18 -0
  269. package/src/lib/slider/soho-slider.component.ts +277 -0
  270. package/src/lib/slider/soho-slider.module.ts +16 -0
  271. package/src/lib/slider/soho-slider.spec.ts +77 -0
  272. package/src/lib/soho-components.module.ts +290 -0
  273. package/src/lib/sparkline/soho-sparkline.component.ts +154 -0
  274. package/src/lib/sparkline/soho-sparkline.module.ts +16 -0
  275. package/src/lib/sparkline/soho-sparkline.spec.ts +145 -0
  276. package/src/lib/spinbox/soho-spinbox-reactive-form.spec.ts +111 -0
  277. package/src/lib/spinbox/soho-spinbox.component.ts +190 -0
  278. package/src/lib/spinbox/soho-spinbox.module.ts +13 -0
  279. package/src/lib/spinbox/soho-spinbox.spec.ts +70 -0
  280. package/src/lib/splitter/index.ts +2 -0
  281. package/src/lib/splitter/soho-splitter.component.ts +167 -0
  282. package/src/lib/splitter/soho-splitter.module.ts +18 -0
  283. package/src/lib/splitter/soho-splitter.spec.ts +52 -0
  284. package/src/lib/stepchart/soho-stepchart.component.ts +171 -0
  285. package/src/lib/stepchart/soho-stepchart.module.ts +17 -0
  286. package/src/lib/stepchart/soho-stepchart.spec.ts +24 -0
  287. package/src/lib/stepprocess/soho-stepprocess.component.html +36 -0
  288. package/src/lib/stepprocess/soho-stepprocess.component.ts +304 -0
  289. package/src/lib/stepprocess/soho-stepprocess.module.ts +51 -0
  290. package/src/lib/swaplist/index.ts +3 -0
  291. package/src/lib/swaplist/soho-swaplist.component.ts +440 -0
  292. package/src/lib/swaplist/soho-swaplist.html +13 -0
  293. package/src/lib/swaplist/soho-swaplist.module.ts +24 -0
  294. package/src/lib/swaplist/soho-swaplist.service.ts +11 -0
  295. package/src/lib/swaplist/soho-swaplist.spec.ts +222 -0
  296. package/src/lib/swipe-action/soho-swipe-action.component.ts +58 -0
  297. package/src/lib/swipe-action/soho-swipe-action.module.ts +19 -0
  298. package/src/lib/swipe-action/soho-swipe-action.spec.ts +110 -0
  299. package/src/lib/tabs/soho-tabs.component.ts +963 -0
  300. package/src/lib/tabs/soho-tabs.module.ts +40 -0
  301. package/src/lib/tabs/soho-tabs.spec.ts +168 -0
  302. package/src/lib/tag/README.md +42 -0
  303. package/src/lib/tag/index.ts +2 -0
  304. package/src/lib/tag/soho-tag.component.spec.ts +119 -0
  305. package/src/lib/tag/soho-tag.component.ts +287 -0
  306. package/src/lib/tag/soho-tag.module.ts +22 -0
  307. package/src/lib/textarea/soho-textarea-reactive-form.spec.ts +134 -0
  308. package/src/lib/textarea/soho-textarea.component.spec.ts +81 -0
  309. package/src/lib/textarea/soho-textarea.component.ts +327 -0
  310. package/src/lib/textarea/soho-textarea.module.ts +17 -0
  311. package/src/lib/timepicker/soho-timepicker-reactive-form.spec.ts +102 -0
  312. package/src/lib/timepicker/soho-timepicker.component.ts +372 -0
  313. package/src/lib/timepicker/soho-timepicker.module.ts +16 -0
  314. package/src/lib/timepicker/soho-timepicker.spec.ts +52 -0
  315. package/src/lib/toast/soho-toast.module.ts +13 -0
  316. package/src/lib/toast/soho-toast.service.ts +16 -0
  317. package/src/lib/toolbar/soho-toolbar.component.html +3 -0
  318. package/src/lib/toolbar/soho-toolbar.component.ts +534 -0
  319. package/src/lib/toolbar/soho-toolbar.module.ts +44 -0
  320. package/src/lib/toolbar-flex/soho-toolbar-flex.component.ts +449 -0
  321. package/src/lib/toolbar-flex/soho-toolbar-flex.module.ts +35 -0
  322. package/src/lib/toolbar-flex/soho-toolbar-flex.spec.ts +267 -0
  323. package/src/lib/tooltip/soho-tooltip.directive.ts +273 -0
  324. package/src/lib/tooltip/soho-tooltip.module.ts +17 -0
  325. package/src/lib/trackdirty/soho-trackdirty.directive.ts +95 -0
  326. package/src/lib/trackdirty/soho-trackdirty.module.ts +17 -0
  327. package/src/lib/tree/soho-tree.component.ts +506 -0
  328. package/src/lib/tree/soho-tree.module.ts +16 -0
  329. package/src/lib/tree/soho-tree.service.ts +27 -0
  330. package/src/lib/tree/soho-tree.spec.ts +198 -0
  331. package/src/lib/treemap/soho-treemap.component.ts +167 -0
  332. package/src/lib/treemap/soho-treemap.module.ts +17 -0
  333. package/src/lib/treemap/soho-treemap.spec.ts +175 -0
  334. package/src/lib/utils/argument.helper.ts +31 -0
  335. package/src/lib/utils/base-control-value-accessor.ts +93 -0
  336. package/src/lib/utils/deprecated-event-emitter.ts +18 -0
  337. package/src/lib/utils/soho-icon.utils.ts +22 -0
  338. package/src/lib/utils/test.helper.ts +19 -0
  339. package/src/lib/version/version-initializer.module.ts +23 -0
  340. package/src/lib/version/version-initializer.service.ts +24 -0
  341. package/src/lib/week-view/soho-week-view.component.ts +646 -0
  342. package/src/lib/week-view/soho-week-view.module.ts +16 -0
  343. package/src/lib/week-view/soho-week-view.spec.ts +191 -0
  344. package/src/lib/wizard/README.md +99 -0
  345. package/src/lib/wizard/index.ts +8 -0
  346. package/src/lib/wizard/soho-wizard-buttonbar.component.ts +114 -0
  347. package/src/lib/wizard/soho-wizard-header.component.ts +34 -0
  348. package/src/lib/wizard/soho-wizard-page.component.ts +75 -0
  349. package/src/lib/wizard/soho-wizard-pages.component.ts +29 -0
  350. package/src/lib/wizard/soho-wizard-tick.component.ts +88 -0
  351. package/src/lib/wizard/soho-wizard.component.ts +401 -0
  352. package/src/lib/wizard/soho-wizard.module.ts +36 -0
  353. package/src/lib/wizard/soho-wizard.spec.ts +173 -0
  354. package/src/public_api.ts +5 -0
  355. package/src/test.ts +25 -0
  356. package/src/version.json +3 -0
  357. package/tsconfig.json +36 -0
  358. package/tsconfig.lib.json +44 -0
  359. package/tsconfig.lib.prod.json +10 -0
  360. package/tsconfig.spec.json +27 -0
  361. package/esm2022/ids-enterprise-ng.mjs +0 -5
  362. package/esm2022/lib/about/index.mjs +0 -4
  363. package/esm2022/lib/about/soho-about.module.mjs +0 -25
  364. package/esm2022/lib/about/soho-about.ref.mjs +0 -192
  365. package/esm2022/lib/about/soho-about.service.mjs +0 -34
  366. package/esm2022/lib/accordion/index.mjs +0 -5
  367. package/esm2022/lib/accordion/soho-accordion-header.component.mjs +0 -49
  368. package/esm2022/lib/accordion/soho-accordion-pane.component.mjs +0 -17
  369. package/esm2022/lib/accordion/soho-accordion.component.mjs +0 -480
  370. package/esm2022/lib/accordion/soho-accordion.module.mjs +0 -34
  371. package/esm2022/lib/actionsheet/index.mjs +0 -3
  372. package/esm2022/lib/actionsheet/soho-actionsheet.component.mjs +0 -253
  373. package/esm2022/lib/actionsheet/soho-actionsheet.module.mjs +0 -22
  374. package/esm2022/lib/alert/index.mjs +0 -3
  375. package/esm2022/lib/alert/soho-alert.directive.mjs +0 -168
  376. package/esm2022/lib/alert/soho-alert.module.mjs +0 -24
  377. package/esm2022/lib/application-menu/index.mjs +0 -3
  378. package/esm2022/lib/application-menu/soho-application-menu.component.mjs +0 -317
  379. package/esm2022/lib/application-menu/soho-application-menu.module.mjs +0 -27
  380. package/esm2022/lib/arrange/index.mjs +0 -3
  381. package/esm2022/lib/arrange/soho-arrange.directive.mjs +0 -50
  382. package/esm2022/lib/arrange/soho-arrange.module.mjs +0 -18
  383. package/esm2022/lib/autocomplete/index.mjs +0 -3
  384. package/esm2022/lib/autocomplete/soho-autocomplete.component.mjs +0 -224
  385. package/esm2022/lib/autocomplete/soho-autocomplete.module.mjs +0 -24
  386. package/esm2022/lib/bar/index.mjs +0 -3
  387. package/esm2022/lib/bar/soho-bar.component.mjs +0 -295
  388. package/esm2022/lib/bar/soho-bar.module.mjs +0 -24
  389. package/esm2022/lib/blockgrid/index.mjs +0 -3
  390. package/esm2022/lib/blockgrid/soho-blockgrid.component.mjs +0 -218
  391. package/esm2022/lib/blockgrid/soho-blockgrid.module.mjs +0 -24
  392. package/esm2022/lib/breadcrumb/index.mjs +0 -3
  393. package/esm2022/lib/breadcrumb/soho-breadcrumb.component.mjs +0 -228
  394. package/esm2022/lib/breadcrumb/soho-breadcrumb.module.mjs +0 -28
  395. package/esm2022/lib/bullet/index.mjs +0 -3
  396. package/esm2022/lib/bullet/soho-bullet.component.mjs +0 -116
  397. package/esm2022/lib/bullet/soho-bullet.module.mjs +0 -24
  398. package/esm2022/lib/busyindicator/index.mjs +0 -3
  399. package/esm2022/lib/busyindicator/soho-busyindicator.directive.mjs +0 -253
  400. package/esm2022/lib/busyindicator/soho-busyindicator.module.mjs +0 -27
  401. package/esm2022/lib/button/index.mjs +0 -3
  402. package/esm2022/lib/button/soho-button.component.mjs +0 -529
  403. package/esm2022/lib/button/soho-button.module.mjs +0 -28
  404. package/esm2022/lib/buttonset/index.mjs +0 -3
  405. package/esm2022/lib/buttonset/soho-buttonset.component.mjs +0 -274
  406. package/esm2022/lib/buttonset/soho-buttonset.module.mjs +0 -24
  407. package/esm2022/lib/calendar/index.mjs +0 -3
  408. package/esm2022/lib/calendar/soho-calendar.component.mjs +0 -694
  409. package/esm2022/lib/calendar/soho-calendar.module.mjs +0 -32
  410. package/esm2022/lib/card/index.mjs +0 -3
  411. package/esm2022/lib/card/soho-card.component.mjs +0 -456
  412. package/esm2022/lib/card/soho-card.module.mjs +0 -42
  413. package/esm2022/lib/chart/index.mjs +0 -3
  414. package/esm2022/lib/chart/soho-chart.component.mjs +0 -197
  415. package/esm2022/lib/chart/soho-chart.module.mjs +0 -24
  416. package/esm2022/lib/checkbox/index.mjs +0 -3
  417. package/esm2022/lib/checkbox/soho-checkbox.component.mjs +0 -104
  418. package/esm2022/lib/checkbox/soho-checkbox.module.mjs +0 -24
  419. package/esm2022/lib/circlepager/index.mjs +0 -3
  420. package/esm2022/lib/circlepager/soho-circlepager.component.mjs +0 -101
  421. package/esm2022/lib/circlepager/soho-circlepager.module.mjs +0 -24
  422. package/esm2022/lib/colorpicker/index.mjs +0 -3
  423. package/esm2022/lib/colorpicker/soho-colorpicker.component.mjs +0 -399
  424. package/esm2022/lib/colorpicker/soho-colorpicker.module.mjs +0 -24
  425. package/esm2022/lib/column/index.mjs +0 -3
  426. package/esm2022/lib/column/soho-column.component.mjs +0 -273
  427. package/esm2022/lib/column/soho-column.module.mjs +0 -24
  428. package/esm2022/lib/context-menu/index.mjs +0 -3
  429. package/esm2022/lib/context-menu/soho-context-menu.directive.mjs +0 -401
  430. package/esm2022/lib/context-menu/soho-context-menu.module.mjs +0 -42
  431. package/esm2022/lib/contextual-action-panel/index.mjs +0 -4
  432. package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.module.mjs +0 -25
  433. package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.ref.mjs +0 -488
  434. package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.service.mjs +0 -50
  435. package/esm2022/lib/datagrid/index.mjs +0 -4
  436. package/esm2022/lib/datagrid/soho-datagrid.component.mjs +0 -3149
  437. package/esm2022/lib/datagrid/soho-datagrid.module.mjs +0 -24
  438. package/esm2022/lib/datagrid/soho-datagrid.service.mjs +0 -6
  439. package/esm2022/lib/datepicker/index.mjs +0 -3
  440. package/esm2022/lib/datepicker/soho-datepicker.component.mjs +0 -684
  441. package/esm2022/lib/datepicker/soho-datepicker.module.mjs +0 -24
  442. package/esm2022/lib/drag/index.mjs +0 -3
  443. package/esm2022/lib/drag/soho-drag.directive.mjs +0 -53
  444. package/esm2022/lib/drag/soho-drag.module.mjs +0 -22
  445. package/esm2022/lib/dropdown/index.mjs +0 -3
  446. package/esm2022/lib/dropdown/soho-dropdown.component.mjs +0 -781
  447. package/esm2022/lib/dropdown/soho-dropdown.module.mjs +0 -24
  448. package/esm2022/lib/editor/index.mjs +0 -3
  449. package/esm2022/lib/editor/soho-editor.component.mjs +0 -344
  450. package/esm2022/lib/editor/soho-editor.module.mjs +0 -22
  451. package/esm2022/lib/emptymessage/index.mjs +0 -3
  452. package/esm2022/lib/emptymessage/soho-emptymessage.directive.mjs +0 -198
  453. package/esm2022/lib/emptymessage/soho-emptymessage.module.mjs +0 -24
  454. package/esm2022/lib/error/index.mjs +0 -3
  455. package/esm2022/lib/error/soho-error.directive.mjs +0 -113
  456. package/esm2022/lib/error/soho-error.module.mjs +0 -26
  457. package/esm2022/lib/expandablearea/index.mjs +0 -3
  458. package/esm2022/lib/expandablearea/soho-expandablearea.component.mjs +0 -311
  459. package/esm2022/lib/expandablearea/soho-expandablearea.module.mjs +0 -34
  460. package/esm2022/lib/field-filter/index.mjs +0 -3
  461. package/esm2022/lib/field-filter/soho-field-filter.directive.mjs +0 -145
  462. package/esm2022/lib/field-filter/soho-field-filter.module.mjs +0 -24
  463. package/esm2022/lib/field-options/index.mjs +0 -3
  464. package/esm2022/lib/field-options/soho-field-options.directive.mjs +0 -44
  465. package/esm2022/lib/field-options/soho-field-options.module.mjs +0 -24
  466. package/esm2022/lib/fileupload/index.mjs +0 -3
  467. package/esm2022/lib/fileupload/soho-fileupload.component.mjs +0 -131
  468. package/esm2022/lib/fileupload/soho-fileupload.module.mjs +0 -22
  469. package/esm2022/lib/fileupload-advanced/index.mjs +0 -3
  470. package/esm2022/lib/fileupload-advanced/soho-fileupload-advanced.component.mjs +0 -452
  471. package/esm2022/lib/fileupload-advanced/soho-fileupload-advanced.module.mjs +0 -22
  472. package/esm2022/lib/form-compact/index.mjs +0 -3
  473. package/esm2022/lib/form-compact/soho-form-compact.component.mjs +0 -56
  474. package/esm2022/lib/form-compact/soho-form-compact.module.mjs +0 -24
  475. package/esm2022/lib/header/index.mjs +0 -3
  476. package/esm2022/lib/header/soho-header.component.mjs +0 -70
  477. package/esm2022/lib/header/soho-header.module.mjs +0 -24
  478. package/esm2022/lib/hierarchy/index.mjs +0 -3
  479. package/esm2022/lib/hierarchy/soho-hierarchy.component.mjs +0 -142
  480. package/esm2022/lib/hierarchy/soho-hierarchy.module.mjs +0 -28
  481. package/esm2022/lib/homepage/index.mjs +0 -8
  482. package/esm2022/lib/homepage/soho-homepage-sizer.directive.mjs +0 -38
  483. package/esm2022/lib/homepage/soho-homepage.component.mjs +0 -268
  484. package/esm2022/lib/homepage/soho-homepage.module.mjs +0 -47
  485. package/esm2022/lib/homepage/soho-widget-content.component.mjs +0 -20
  486. package/esm2022/lib/homepage/soho-widget-header.component.mjs +0 -20
  487. package/esm2022/lib/homepage/soho-widget-title.component.mjs +0 -25
  488. package/esm2022/lib/homepage/soho-widget.component.mjs +0 -148
  489. package/esm2022/lib/hyperlink/index.mjs +0 -3
  490. package/esm2022/lib/hyperlink/soho-hyperlink.component.mjs +0 -103
  491. package/esm2022/lib/hyperlink/soho-hyperlink.module.mjs +0 -28
  492. package/esm2022/lib/icon/index.mjs +0 -11
  493. package/esm2022/lib/icon/soho-icon.component.mjs +0 -98
  494. package/esm2022/lib/icon/soho-icon.module.mjs +0 -64
  495. package/esm2022/lib/icon/soho-icons-app.component.mjs +0 -17
  496. package/esm2022/lib/icon/soho-icons-empty-new.component.mjs +0 -20
  497. package/esm2022/lib/icon/soho-icons-empty-uplift.component.mjs +0 -17
  498. package/esm2022/lib/icon/soho-icons-empty.component.mjs +0 -29
  499. package/esm2022/lib/icon/soho-icons-extended.component.mjs +0 -25
  500. package/esm2022/lib/icon/soho-icons-new.component.mjs +0 -17
  501. package/esm2022/lib/icon/soho-icons-uplift.component.mjs +0 -17
  502. package/esm2022/lib/icon/soho-icons.component.mjs +0 -17
  503. package/esm2022/lib/index.mjs +0 -97
  504. package/esm2022/lib/input/index.mjs +0 -3
  505. package/esm2022/lib/input/soho-input.component.mjs +0 -143
  506. package/esm2022/lib/input/soho-input.module.mjs +0 -24
  507. package/esm2022/lib/input-validate/index.mjs +0 -3
  508. package/esm2022/lib/input-validate/soho-input-validate.directive.mjs +0 -125
  509. package/esm2022/lib/input-validate/soho-input-validate.module.mjs +0 -24
  510. package/esm2022/lib/label/index.mjs +0 -3
  511. package/esm2022/lib/label/soho-label.directive.mjs +0 -60
  512. package/esm2022/lib/label/soho-label.module.mjs +0 -24
  513. package/esm2022/lib/line/index.mjs +0 -3
  514. package/esm2022/lib/line/soho-line.component.mjs +0 -226
  515. package/esm2022/lib/line/soho-line.module.mjs +0 -24
  516. package/esm2022/lib/listbuilder/index.mjs +0 -3
  517. package/esm2022/lib/listbuilder/soho-listbuilder.component.mjs +0 -234
  518. package/esm2022/lib/listbuilder/soho-listbuilder.module.mjs +0 -40
  519. package/esm2022/lib/listview/index.mjs +0 -3
  520. package/esm2022/lib/listview/soho-listview.component.mjs +0 -574
  521. package/esm2022/lib/listview/soho-listview.module.mjs +0 -48
  522. package/esm2022/lib/locale/index.mjs +0 -5
  523. package/esm2022/lib/locale/soho-formatdate.pipe.mjs +0 -27
  524. package/esm2022/lib/locale/soho-formatnumber.pipe.mjs +0 -27
  525. package/esm2022/lib/locale/soho-locale.module.mjs +0 -30
  526. package/esm2022/lib/locale/soho-translate.pipe.mjs +0 -31
  527. package/esm2022/lib/lookup/index.mjs +0 -3
  528. package/esm2022/lib/lookup/soho-lookup.component.mjs +0 -804
  529. package/esm2022/lib/lookup/soho-lookup.module.mjs +0 -24
  530. package/esm2022/lib/mask/index.mjs +0 -3
  531. package/esm2022/lib/mask/soho-mask.directive.mjs +0 -440
  532. package/esm2022/lib/mask/soho-mask.module.mjs +0 -24
  533. package/esm2022/lib/masthead/index.mjs +0 -3
  534. package/esm2022/lib/masthead/soho-masthead.component.mjs +0 -22
  535. package/esm2022/lib/masthead/soho-masthead.module.mjs +0 -24
  536. package/esm2022/lib/menu-button/index.mjs +0 -3
  537. package/esm2022/lib/menu-button/soho-menu-button.component.mjs +0 -300
  538. package/esm2022/lib/menu-button/soho-menu-button.module.mjs +0 -28
  539. package/esm2022/lib/message/index.mjs +0 -4
  540. package/esm2022/lib/message/soho-message.module.mjs +0 -25
  541. package/esm2022/lib/message/soho-message.ref.mjs +0 -259
  542. package/esm2022/lib/message/soho-message.service.mjs +0 -88
  543. package/esm2022/lib/modal-dialog/index.mjs +0 -4
  544. package/esm2022/lib/modal-dialog/soho-modal-dialog.module.mjs +0 -25
  545. package/esm2022/lib/modal-dialog/soho-modal-dialog.ref.mjs +0 -679
  546. package/esm2022/lib/modal-dialog/soho-modal-dialog.service.mjs +0 -69
  547. package/esm2022/lib/module-nav/index.mjs +0 -3
  548. package/esm2022/lib/module-nav/soho-module-nav.component.mjs +0 -249
  549. package/esm2022/lib/module-nav/soho-module-nav.module.mjs +0 -27
  550. package/esm2022/lib/module-nav-container/index.mjs +0 -3
  551. package/esm2022/lib/module-nav-container/soho-module-nav-container.component.mjs +0 -16
  552. package/esm2022/lib/module-nav-container/soho-module-nav-container.module.mjs +0 -24
  553. package/esm2022/lib/module-nav-settings/index.mjs +0 -3
  554. package/esm2022/lib/module-nav-settings/soho-module-nav-settings.component.mjs +0 -87
  555. package/esm2022/lib/module-nav-settings/soho-module-nav-settings.module.mjs +0 -24
  556. package/esm2022/lib/module-nav-switcher/index.mjs +0 -3
  557. package/esm2022/lib/module-nav-switcher/soho-module-nav-switcher.component.mjs +0 -251
  558. package/esm2022/lib/module-nav-switcher/soho-module-nav-switcher.module.mjs +0 -28
  559. package/esm2022/lib/monthview/index.mjs +0 -3
  560. package/esm2022/lib/monthview/soho-monthview.component.mjs +0 -639
  561. package/esm2022/lib/monthview/soho-monthview.module.mjs +0 -24
  562. package/esm2022/lib/notification/index.mjs +0 -3
  563. package/esm2022/lib/notification/soho-notification.module.mjs +0 -23
  564. package/esm2022/lib/notification/soho-notification.service.mjs +0 -40
  565. package/esm2022/lib/notification-badge/index.mjs +0 -3
  566. package/esm2022/lib/notification-badge/soho-notification-badge.component.mjs +0 -84
  567. package/esm2022/lib/notification-badge/soho-notification-badge.module.mjs +0 -24
  568. package/esm2022/lib/pager/index.mjs +0 -3
  569. package/esm2022/lib/pager/soho-pager.module.mjs +0 -28
  570. package/esm2022/lib/pager/soho-standalone-pager.component.mjs +0 -238
  571. package/esm2022/lib/personalize/index.mjs +0 -3
  572. package/esm2022/lib/personalize/soho-personalize.directive.mjs +0 -139
  573. package/esm2022/lib/personalize/soho-personalize.module.mjs +0 -24
  574. package/esm2022/lib/pie/index.mjs +0 -3
  575. package/esm2022/lib/pie/soho-pie.component.mjs +0 -281
  576. package/esm2022/lib/pie/soho-pie.module.mjs +0 -24
  577. package/esm2022/lib/popdown/index.mjs +0 -4
  578. package/esm2022/lib/popdown/soho-popdown-contents.component.mjs +0 -20
  579. package/esm2022/lib/popdown/soho-popdown.directive.mjs +0 -76
  580. package/esm2022/lib/popdown/soho-popdown.module.mjs +0 -27
  581. package/esm2022/lib/popupmenu/index.mjs +0 -3
  582. package/esm2022/lib/popupmenu/soho-popupmenu.component.mjs +0 -499
  583. package/esm2022/lib/popupmenu/soho-popupmenu.module.mjs +0 -42
  584. package/esm2022/lib/progress/index.mjs +0 -3
  585. package/esm2022/lib/progress/soho-progress.component.mjs +0 -66
  586. package/esm2022/lib/progress/soho-progress.module.mjs +0 -21
  587. package/esm2022/lib/radar/index.mjs +0 -3
  588. package/esm2022/lib/radar/soho-radar.component.mjs +0 -315
  589. package/esm2022/lib/radar/soho-radar.module.mjs +0 -24
  590. package/esm2022/lib/radiobutton/index.mjs +0 -3
  591. package/esm2022/lib/radiobutton/soho-radiobutton.component.mjs +0 -94
  592. package/esm2022/lib/radiobutton/soho-radiobutton.module.mjs +0 -22
  593. package/esm2022/lib/rating/index.mjs +0 -3
  594. package/esm2022/lib/rating/soho-rating.component.mjs +0 -64
  595. package/esm2022/lib/rating/soho-rating.module.mjs +0 -24
  596. package/esm2022/lib/renderLoop/index.mjs +0 -3
  597. package/esm2022/lib/renderLoop/soho-render-loop.module.mjs +0 -25
  598. package/esm2022/lib/renderLoop/soho-render-loop.service.mjs +0 -34
  599. package/esm2022/lib/searchfield/index.mjs +0 -3
  600. package/esm2022/lib/searchfield/soho-searchfield.component.mjs +0 -169
  601. package/esm2022/lib/searchfield/soho-searchfield.module.mjs +0 -24
  602. package/esm2022/lib/slider/index.mjs +0 -3
  603. package/esm2022/lib/slider/soho-slider.component.mjs +0 -267
  604. package/esm2022/lib/slider/soho-slider.module.mjs +0 -24
  605. package/esm2022/lib/soho-components.module.mjs +0 -666
  606. package/esm2022/lib/sparkline/index.mjs +0 -3
  607. package/esm2022/lib/sparkline/soho-sparkline.component.mjs +0 -140
  608. package/esm2022/lib/sparkline/soho-sparkline.module.mjs +0 -24
  609. package/esm2022/lib/spinbox/index.mjs +0 -3
  610. package/esm2022/lib/spinbox/soho-spinbox.component.mjs +0 -190
  611. package/esm2022/lib/spinbox/soho-spinbox.module.mjs +0 -21
  612. package/esm2022/lib/splitter/index.mjs +0 -3
  613. package/esm2022/lib/splitter/soho-splitter.component.mjs +0 -154
  614. package/esm2022/lib/splitter/soho-splitter.module.mjs +0 -24
  615. package/esm2022/lib/stepchart/index.mjs +0 -3
  616. package/esm2022/lib/stepchart/soho-stepchart.component.mjs +0 -168
  617. package/esm2022/lib/stepchart/soho-stepchart.module.mjs +0 -24
  618. package/esm2022/lib/stepprocess/index.mjs +0 -3
  619. package/esm2022/lib/stepprocess/soho-stepprocess.component.mjs +0 -412
  620. package/esm2022/lib/stepprocess/soho-stepprocess.module.mjs +0 -72
  621. package/esm2022/lib/swaplist/index.mjs +0 -4
  622. package/esm2022/lib/swaplist/soho-swaplist.component.mjs +0 -427
  623. package/esm2022/lib/swaplist/soho-swaplist.module.mjs +0 -32
  624. package/esm2022/lib/swaplist/soho-swaplist.service.mjs +0 -6
  625. package/esm2022/lib/swipe-action/index.mjs +0 -3
  626. package/esm2022/lib/swipe-action/soho-swipe-action.component.mjs +0 -53
  627. package/esm2022/lib/swipe-action/soho-swipe-action.module.mjs +0 -24
  628. package/esm2022/lib/tabs/index.mjs +0 -3
  629. package/esm2022/lib/tabs/soho-tabs.component.mjs +0 -987
  630. package/esm2022/lib/tabs/soho-tabs.module.mjs +0 -54
  631. package/esm2022/lib/tag/index.mjs +0 -3
  632. package/esm2022/lib/tag/soho-tag.component.mjs +0 -260
  633. package/esm2022/lib/tag/soho-tag.module.mjs +0 -28
  634. package/esm2022/lib/textarea/index.mjs +0 -3
  635. package/esm2022/lib/textarea/soho-textarea.component.mjs +0 -271
  636. package/esm2022/lib/textarea/soho-textarea.module.mjs +0 -22
  637. package/esm2022/lib/timepicker/index.mjs +0 -3
  638. package/esm2022/lib/timepicker/soho-timepicker.component.mjs +0 -349
  639. package/esm2022/lib/timepicker/soho-timepicker.module.mjs +0 -24
  640. package/esm2022/lib/toast/index.mjs +0 -3
  641. package/esm2022/lib/toast/soho-toast.module.mjs +0 -23
  642. package/esm2022/lib/toast/soho-toast.service.mjs +0 -20
  643. package/esm2022/lib/toolbar/index.mjs +0 -3
  644. package/esm2022/lib/toolbar/soho-toolbar.component.mjs +0 -609
  645. package/esm2022/lib/toolbar/soho-toolbar.module.mjs +0 -58
  646. package/esm2022/lib/toolbar-flex/index.mjs +0 -3
  647. package/esm2022/lib/toolbar-flex/soho-toolbar-flex.component.mjs +0 -507
  648. package/esm2022/lib/toolbar-flex/soho-toolbar-flex.module.mjs +0 -46
  649. package/esm2022/lib/tooltip/index.mjs +0 -3
  650. package/esm2022/lib/tooltip/soho-tooltip.directive.mjs +0 -272
  651. package/esm2022/lib/tooltip/soho-tooltip.module.mjs +0 -22
  652. package/esm2022/lib/trackdirty/index.mjs +0 -3
  653. package/esm2022/lib/trackdirty/soho-trackdirty.directive.mjs +0 -79
  654. package/esm2022/lib/trackdirty/soho-trackdirty.module.mjs +0 -24
  655. package/esm2022/lib/tree/index.mjs +0 -4
  656. package/esm2022/lib/tree/soho-tree.component.mjs +0 -454
  657. package/esm2022/lib/tree/soho-tree.module.mjs +0 -24
  658. package/esm2022/lib/tree/soho-tree.service.mjs +0 -9
  659. package/esm2022/lib/treemap/index.mjs +0 -3
  660. package/esm2022/lib/treemap/soho-treemap.component.mjs +0 -153
  661. package/esm2022/lib/treemap/soho-treemap.module.mjs +0 -24
  662. package/esm2022/lib/utils/argument.helper.mjs +0 -28
  663. package/esm2022/lib/utils/base-control-value-accessor.mjs +0 -74
  664. package/esm2022/lib/utils/deprecated-event-emitter.mjs +0 -14
  665. package/esm2022/lib/utils/index.mjs +0 -6
  666. package/esm2022/lib/utils/soho-icon.utils.mjs +0 -21
  667. package/esm2022/lib/utils/test.helper.mjs +0 -18
  668. package/esm2022/lib/version/index.mjs +0 -2
  669. package/esm2022/lib/version/version-initializer.module.mjs +0 -32
  670. package/esm2022/lib/version/version-initializer.service.mjs +0 -28
  671. package/esm2022/lib/week-view/index.mjs +0 -3
  672. package/esm2022/lib/week-view/soho-week-view.component.mjs +0 -602
  673. package/esm2022/lib/week-view/soho-week-view.module.mjs +0 -24
  674. package/esm2022/lib/wizard/index.mjs +0 -9
  675. package/esm2022/lib/wizard/soho-wizard-buttonbar.component.mjs +0 -115
  676. package/esm2022/lib/wizard/soho-wizard-header.component.mjs +0 -34
  677. package/esm2022/lib/wizard/soho-wizard-page.component.mjs +0 -61
  678. package/esm2022/lib/wizard/soho-wizard-pages.component.mjs +0 -19
  679. package/esm2022/lib/wizard/soho-wizard-tick.component.mjs +0 -87
  680. package/esm2022/lib/wizard/soho-wizard.component.mjs +0 -308
  681. package/esm2022/lib/wizard/soho-wizard.module.mjs +0 -53
  682. package/esm2022/public_api.mjs +0 -5
  683. package/fesm2022/ids-enterprise-ng.mjs +0 -31614
  684. package/fesm2022/ids-enterprise-ng.mjs.map +0 -1
  685. package/index.d.ts +0 -5
  686. package/lib/about/soho-about.module.d.ts +0 -7
  687. package/lib/about/soho-about.ref.d.ts +0 -156
  688. package/lib/about/soho-about.service.d.ts +0 -27
  689. package/lib/accordion/soho-accordion-header.component.d.ts +0 -24
  690. package/lib/accordion/soho-accordion-pane.component.d.ts +0 -6
  691. package/lib/accordion/soho-accordion.component.d.ts +0 -195
  692. package/lib/accordion/soho-accordion.module.d.ts +0 -10
  693. package/lib/actionsheet/soho-actionsheet.component.d.ts +0 -52
  694. package/lib/actionsheet/soho-actionsheet.module.d.ts +0 -8
  695. package/lib/alert/soho-alert.directive.d.ts +0 -86
  696. package/lib/alert/soho-alert.module.d.ts +0 -8
  697. package/lib/application-menu/soho-application-menu.component.d.ts +0 -122
  698. package/lib/application-menu/soho-application-menu.module.d.ts +0 -8
  699. package/lib/arrange/soho-arrange.directive.d.ts +0 -19
  700. package/lib/arrange/soho-arrange.module.d.ts +0 -8
  701. package/lib/autocomplete/soho-autocomplete.component.d.ts +0 -76
  702. package/lib/autocomplete/soho-autocomplete.module.d.ts +0 -8
  703. package/lib/bar/soho-bar.component.d.ts +0 -77
  704. package/lib/bar/soho-bar.module.d.ts +0 -8
  705. package/lib/blockgrid/soho-blockgrid.component.d.ts +0 -53
  706. package/lib/blockgrid/soho-blockgrid.module.d.ts +0 -8
  707. package/lib/breadcrumb/soho-breadcrumb.component.d.ts +0 -80
  708. package/lib/breadcrumb/soho-breadcrumb.module.d.ts +0 -8
  709. package/lib/bullet/soho-bullet.component.d.ts +0 -34
  710. package/lib/bullet/soho-bullet.module.d.ts +0 -8
  711. package/lib/busyindicator/soho-busyindicator.directive.d.ts +0 -97
  712. package/lib/busyindicator/soho-busyindicator.module.d.ts +0 -8
  713. package/lib/button/soho-button.component.d.ts +0 -163
  714. package/lib/button/soho-button.module.d.ts +0 -9
  715. package/lib/buttonset/soho-buttonset.component.d.ts +0 -106
  716. package/lib/buttonset/soho-buttonset.module.d.ts +0 -8
  717. package/lib/calendar/soho-calendar.component.d.ts +0 -225
  718. package/lib/calendar/soho-calendar.module.d.ts +0 -8
  719. package/lib/card/soho-card.component.d.ts +0 -108
  720. package/lib/card/soho-card.module.d.ts +0 -8
  721. package/lib/chart/soho-chart.component.d.ts +0 -40
  722. package/lib/chart/soho-chart.module.d.ts +0 -8
  723. package/lib/checkbox/soho-checkbox.component.d.ts +0 -50
  724. package/lib/checkbox/soho-checkbox.module.d.ts +0 -8
  725. package/lib/circlepager/soho-circlepager.component.d.ts +0 -28
  726. package/lib/circlepager/soho-circlepager.module.d.ts +0 -8
  727. package/lib/colorpicker/soho-colorpicker.component.d.ts +0 -133
  728. package/lib/colorpicker/soho-colorpicker.module.d.ts +0 -8
  729. package/lib/column/soho-column.component.d.ts +0 -71
  730. package/lib/column/soho-column.module.d.ts +0 -8
  731. package/lib/context-menu/soho-context-menu.directive.d.ts +0 -108
  732. package/lib/context-menu/soho-context-menu.module.d.ts +0 -8
  733. package/lib/contextual-action-panel/soho-contextual-action-panel.module.d.ts +0 -7
  734. package/lib/contextual-action-panel/soho-contextual-action-panel.ref.d.ts +0 -268
  735. package/lib/contextual-action-panel/soho-contextual-action-panel.service.d.ts +0 -44
  736. package/lib/datagrid/index.d.ts +0 -3
  737. package/lib/datagrid/soho-datagrid.component.d.ts +0 -1126
  738. package/lib/datagrid/soho-datagrid.module.d.ts +0 -8
  739. package/lib/datagrid/soho-datagrid.service.d.ts +0 -18
  740. package/lib/datepicker/soho-datepicker.component.d.ts +0 -220
  741. package/lib/datepicker/soho-datepicker.module.d.ts +0 -8
  742. package/lib/drag/soho-drag.directive.d.ts +0 -20
  743. package/lib/drag/soho-drag.module.d.ts +0 -8
  744. package/lib/dropdown/soho-dropdown.component.d.ts +0 -271
  745. package/lib/dropdown/soho-dropdown.module.d.ts +0 -8
  746. package/lib/editor/soho-editor.component.d.ts +0 -97
  747. package/lib/editor/soho-editor.module.d.ts +0 -8
  748. package/lib/emptymessage/soho-emptymessage.directive.d.ts +0 -48
  749. package/lib/emptymessage/soho-emptymessage.module.d.ts +0 -8
  750. package/lib/error/soho-error.directive.d.ts +0 -69
  751. package/lib/error/soho-error.module.d.ts +0 -8
  752. package/lib/expandablearea/soho-expandablearea.component.d.ts +0 -102
  753. package/lib/expandablearea/soho-expandablearea.module.d.ts +0 -8
  754. package/lib/field-filter/soho-field-filter.directive.d.ts +0 -40
  755. package/lib/field-filter/soho-field-filter.module.d.ts +0 -8
  756. package/lib/field-options/soho-field-options.directive.d.ts +0 -19
  757. package/lib/field-options/soho-field-options.module.d.ts +0 -8
  758. package/lib/fileupload/soho-fileupload.component.d.ts +0 -37
  759. package/lib/fileupload/soho-fileupload.module.d.ts +0 -8
  760. package/lib/fileupload-advanced/soho-fileupload-advanced.component.d.ts +0 -173
  761. package/lib/fileupload-advanced/soho-fileupload-advanced.module.d.ts +0 -8
  762. package/lib/form-compact/soho-form-compact.component.d.ts +0 -20
  763. package/lib/form-compact/soho-form-compact.module.d.ts +0 -8
  764. package/lib/header/soho-header.component.d.ts +0 -26
  765. package/lib/header/soho-header.module.d.ts +0 -8
  766. package/lib/hierarchy/soho-hierarchy.component.d.ts +0 -57
  767. package/lib/hierarchy/soho-hierarchy.module.d.ts +0 -8
  768. package/lib/homepage/soho-homepage-sizer.directive.d.ts +0 -17
  769. package/lib/homepage/soho-homepage.component.d.ts +0 -86
  770. package/lib/homepage/soho-homepage.module.d.ts +0 -13
  771. package/lib/homepage/soho-widget-content.component.d.ts +0 -6
  772. package/lib/homepage/soho-widget-header.component.d.ts +0 -6
  773. package/lib/homepage/soho-widget-title.component.d.ts +0 -7
  774. package/lib/homepage/soho-widget.component.d.ts +0 -34
  775. package/lib/hyperlink/soho-hyperlink.component.d.ts +0 -34
  776. package/lib/hyperlink/soho-hyperlink.module.d.ts +0 -9
  777. package/lib/icon/soho-icon.component.d.ts +0 -33
  778. package/lib/icon/soho-icon.module.d.ts +0 -16
  779. package/lib/icon/soho-icons-app.component.d.ts +0 -6
  780. package/lib/icon/soho-icons-empty-new.component.d.ts +0 -9
  781. package/lib/icon/soho-icons-empty-uplift.component.d.ts +0 -6
  782. package/lib/icon/soho-icons-empty.component.d.ts +0 -16
  783. package/lib/icon/soho-icons-extended.component.d.ts +0 -11
  784. package/lib/icon/soho-icons-new.component.d.ts +0 -6
  785. package/lib/icon/soho-icons-uplift.component.d.ts +0 -6
  786. package/lib/icon/soho-icons.component.d.ts +0 -6
  787. package/lib/index.d.ts +0 -96
  788. package/lib/input/soho-input.component.d.ts +0 -66
  789. package/lib/input/soho-input.module.d.ts +0 -8
  790. package/lib/input-validate/soho-input-validate.directive.d.ts +0 -48
  791. package/lib/input-validate/soho-input-validate.module.d.ts +0 -8
  792. package/lib/label/soho-label.directive.d.ts +0 -37
  793. package/lib/label/soho-label.module.d.ts +0 -8
  794. package/lib/line/soho-line.component.d.ts +0 -47
  795. package/lib/line/soho-line.module.d.ts +0 -8
  796. package/lib/listbuilder/index.d.ts +0 -2
  797. package/lib/listbuilder/soho-listbuilder.component.d.ts +0 -73
  798. package/lib/listbuilder/soho-listbuilder.module.d.ts +0 -12
  799. package/lib/listview/soho-listview.component.d.ts +0 -240
  800. package/lib/listview/soho-listview.module.d.ts +0 -9
  801. package/lib/locale/soho-formatdate.pipe.d.ts +0 -15
  802. package/lib/locale/soho-formatnumber.pipe.d.ts +0 -15
  803. package/lib/locale/soho-locale.module.d.ts +0 -9
  804. package/lib/locale/soho-translate.pipe.d.ts +0 -16
  805. package/lib/lookup/soho-lookup.component.d.ts +0 -246
  806. package/lib/lookup/soho-lookup.module.d.ts +0 -8
  807. package/lib/mask/soho-mask.directive.d.ts +0 -137
  808. package/lib/mask/soho-mask.module.d.ts +0 -8
  809. package/lib/masthead/soho-masthead.component.d.ts +0 -7
  810. package/lib/masthead/soho-masthead.module.d.ts +0 -8
  811. package/lib/menu-button/soho-menu-button.component.d.ts +0 -69
  812. package/lib/menu-button/soho-menu-button.module.d.ts +0 -9
  813. package/lib/message/soho-message.module.d.ts +0 -7
  814. package/lib/message/soho-message.ref.d.ts +0 -168
  815. package/lib/message/soho-message.service.d.ts +0 -70
  816. package/lib/modal-dialog/soho-modal-dialog.module.d.ts +0 -7
  817. package/lib/modal-dialog/soho-modal-dialog.ref.d.ts +0 -404
  818. package/lib/modal-dialog/soho-modal-dialog.service.d.ts +0 -56
  819. package/lib/module-nav/soho-module-nav.component.d.ts +0 -67
  820. package/lib/module-nav/soho-module-nav.module.d.ts +0 -8
  821. package/lib/module-nav-container/soho-module-nav-container.component.d.ts +0 -9
  822. package/lib/module-nav-container/soho-module-nav-container.module.d.ts +0 -8
  823. package/lib/module-nav-settings/soho-module-nav-settings.component.d.ts +0 -32
  824. package/lib/module-nav-settings/soho-module-nav-settings.module.d.ts +0 -8
  825. package/lib/module-nav-switcher/soho-module-nav-switcher.component.d.ts +0 -65
  826. package/lib/module-nav-switcher/soho-module-nav-switcher.module.d.ts +0 -9
  827. package/lib/monthview/soho-monthview.component.d.ts +0 -194
  828. package/lib/monthview/soho-monthview.module.d.ts +0 -8
  829. package/lib/notification/soho-notification.module.d.ts +0 -7
  830. package/lib/notification/soho-notification.service.d.ts +0 -27
  831. package/lib/notification-badge/soho-notification-badge.component.d.ts +0 -21
  832. package/lib/notification-badge/soho-notification-badge.module.d.ts +0 -8
  833. package/lib/pager/soho-pager.module.d.ts +0 -9
  834. package/lib/pager/soho-standalone-pager.component.d.ts +0 -45
  835. package/lib/personalize/soho-personalize.directive.d.ts +0 -53
  836. package/lib/personalize/soho-personalize.module.d.ts +0 -8
  837. package/lib/pie/soho-pie.component.d.ts +0 -70
  838. package/lib/pie/soho-pie.module.d.ts +0 -8
  839. package/lib/popdown/soho-popdown-contents.component.d.ts +0 -6
  840. package/lib/popdown/soho-popdown.directive.d.ts +0 -24
  841. package/lib/popdown/soho-popdown.module.d.ts +0 -9
  842. package/lib/popupmenu/soho-popupmenu.component.d.ts +0 -141
  843. package/lib/popupmenu/soho-popupmenu.module.d.ts +0 -8
  844. package/lib/progress/soho-progress.component.d.ts +0 -20
  845. package/lib/progress/soho-progress.module.d.ts +0 -7
  846. package/lib/radar/soho-radar.component.d.ts +0 -77
  847. package/lib/radar/soho-radar.module.d.ts +0 -8
  848. package/lib/radiobutton/soho-radiobutton.component.d.ts +0 -55
  849. package/lib/radiobutton/soho-radiobutton.module.d.ts +0 -8
  850. package/lib/rating/soho-rating.component.d.ts +0 -25
  851. package/lib/rating/soho-rating.module.d.ts +0 -8
  852. package/lib/renderLoop/soho-render-loop.module.d.ts +0 -7
  853. package/lib/renderLoop/soho-render-loop.service.d.ts +0 -18
  854. package/lib/searchfield/soho-searchfield.component.d.ts +0 -56
  855. package/lib/searchfield/soho-searchfield.module.d.ts +0 -7
  856. package/lib/slider/soho-slider.component.d.ts +0 -87
  857. package/lib/slider/soho-slider.module.d.ts +0 -8
  858. package/lib/soho-components.module.d.ts +0 -100
  859. package/lib/sparkline/soho-sparkline.component.d.ts +0 -39
  860. package/lib/sparkline/soho-sparkline.module.d.ts +0 -8
  861. package/lib/spinbox/soho-spinbox.component.d.ts +0 -58
  862. package/lib/spinbox/soho-spinbox.module.d.ts +0 -7
  863. package/lib/splitter/index.d.ts +0 -2
  864. package/lib/splitter/soho-splitter.component.d.ts +0 -40
  865. package/lib/splitter/soho-splitter.module.d.ts +0 -8
  866. package/lib/stepchart/soho-stepchart.component.d.ts +0 -45
  867. package/lib/stepchart/soho-stepchart.module.d.ts +0 -8
  868. package/lib/stepprocess/soho-stepprocess.component.d.ts +0 -122
  869. package/lib/stepprocess/soho-stepprocess.module.d.ts +0 -11
  870. package/lib/swaplist/index.d.ts +0 -3
  871. package/lib/swaplist/soho-swaplist.component.d.ts +0 -187
  872. package/lib/swaplist/soho-swaplist.module.d.ts +0 -9
  873. package/lib/swaplist/soho-swaplist.service.d.ts +0 -10
  874. package/lib/swipe-action/soho-swipe-action.component.d.ts +0 -16
  875. package/lib/swipe-action/soho-swipe-action.module.d.ts +0 -8
  876. package/lib/tabs/soho-tabs.component.d.ts +0 -380
  877. package/lib/tabs/soho-tabs.module.d.ts +0 -8
  878. package/lib/tag/index.d.ts +0 -2
  879. package/lib/tag/soho-tag.component.d.ts +0 -120
  880. package/lib/tag/soho-tag.module.d.ts +0 -8
  881. package/lib/textarea/soho-textarea.component.d.ts +0 -74
  882. package/lib/textarea/soho-textarea.module.d.ts +0 -8
  883. package/lib/timepicker/soho-timepicker.component.d.ts +0 -121
  884. package/lib/timepicker/soho-timepicker.module.d.ts +0 -8
  885. package/lib/toast/soho-toast.module.d.ts +0 -7
  886. package/lib/toast/soho-toast.service.d.ts +0 -13
  887. package/lib/toolbar/soho-toolbar.component.d.ts +0 -188
  888. package/lib/toolbar/soho-toolbar.module.d.ts +0 -8
  889. package/lib/toolbar-flex/soho-toolbar-flex.component.d.ts +0 -159
  890. package/lib/toolbar-flex/soho-toolbar-flex.module.d.ts +0 -8
  891. package/lib/tooltip/soho-tooltip.directive.d.ts +0 -118
  892. package/lib/tooltip/soho-tooltip.module.d.ts +0 -8
  893. package/lib/trackdirty/soho-trackdirty.directive.d.ts +0 -32
  894. package/lib/trackdirty/soho-trackdirty.module.d.ts +0 -8
  895. package/lib/tree/soho-tree.component.d.ts +0 -186
  896. package/lib/tree/soho-tree.module.d.ts +0 -8
  897. package/lib/tree/soho-tree.service.d.ts +0 -25
  898. package/lib/treemap/soho-treemap.component.d.ts +0 -40
  899. package/lib/treemap/soho-treemap.module.d.ts +0 -8
  900. package/lib/utils/argument.helper.d.ts +0 -9
  901. package/lib/utils/base-control-value-accessor.d.ts +0 -47
  902. package/lib/utils/deprecated-event-emitter.d.ts +0 -8
  903. package/lib/utils/soho-icon.utils.d.ts +0 -14
  904. package/lib/utils/test.helper.d.ts +0 -14
  905. package/lib/version/version-initializer.module.d.ts +0 -7
  906. package/lib/version/version-initializer.service.d.ts +0 -16
  907. package/lib/week-view/soho-week-view.component.d.ts +0 -184
  908. package/lib/week-view/soho-week-view.module.d.ts +0 -8
  909. package/lib/wizard/index.d.ts +0 -7
  910. package/lib/wizard/soho-wizard-buttonbar.component.d.ts +0 -18
  911. package/lib/wizard/soho-wizard-header.component.d.ts +0 -18
  912. package/lib/wizard/soho-wizard-page.component.d.ts +0 -44
  913. package/lib/wizard/soho-wizard-pages.component.d.ts +0 -11
  914. package/lib/wizard/soho-wizard-tick.component.d.ts +0 -52
  915. package/lib/wizard/soho-wizard.component.d.ts +0 -157
  916. package/lib/wizard/soho-wizard.module.d.ts +0 -14
  917. package/public_api.d.ts +0 -1
  918. /package/{lib/about/index.d.ts → src/lib/about/index.ts} +0 -0
  919. /package/{lib/accordion/index.d.ts → src/lib/accordion/index.ts} +0 -0
  920. /package/{lib/actionsheet/index.d.ts → src/lib/actionsheet/index.ts} +0 -0
  921. /package/{lib/alert/index.d.ts → src/lib/alert/index.ts} +0 -0
  922. /package/{lib/application-menu/index.d.ts → src/lib/application-menu/index.ts} +0 -0
  923. /package/{lib/arrange/index.d.ts → src/lib/arrange/index.ts} +0 -0
  924. /package/{lib/autocomplete/index.d.ts → src/lib/autocomplete/index.ts} +0 -0
  925. /package/{lib/bar/index.d.ts → src/lib/bar/index.ts} +0 -0
  926. /package/{lib/blockgrid/index.d.ts → src/lib/blockgrid/index.ts} +0 -0
  927. /package/{lib/breadcrumb/index.d.ts → src/lib/breadcrumb/index.ts} +0 -0
  928. /package/{lib/bullet/index.d.ts → src/lib/bullet/index.ts} +0 -0
  929. /package/{lib/busyindicator/index.d.ts → src/lib/busyindicator/index.ts} +0 -0
  930. /package/{lib/button/index.d.ts → src/lib/button/index.ts} +0 -0
  931. /package/{lib/buttonset/index.d.ts → src/lib/buttonset/index.ts} +0 -0
  932. /package/{lib/calendar/index.d.ts → src/lib/calendar/index.ts} +0 -0
  933. /package/{lib/card/index.d.ts → src/lib/card/index.ts} +0 -0
  934. /package/{lib/chart/index.d.ts → src/lib/chart/index.ts} +0 -0
  935. /package/{lib/checkbox/index.d.ts → src/lib/checkbox/index.ts} +0 -0
  936. /package/{lib/circlepager/index.d.ts → src/lib/circlepager/index.ts} +0 -0
  937. /package/{lib/colorpicker/index.d.ts → src/lib/colorpicker/index.ts} +0 -0
  938. /package/{lib/column/index.d.ts → src/lib/column/index.ts} +0 -0
  939. /package/{lib/context-menu/index.d.ts → src/lib/context-menu/index.ts} +0 -0
  940. /package/{lib/contextual-action-panel/index.d.ts → src/lib/contextual-action-panel/index.ts} +0 -0
  941. /package/{lib/datepicker/index.d.ts → src/lib/datepicker/index.ts} +0 -0
  942. /package/{lib/drag/index.d.ts → src/lib/drag/index.ts} +0 -0
  943. /package/{lib/dropdown/index.d.ts → src/lib/dropdown/index.ts} +0 -0
  944. /package/{lib/editor/index.d.ts → src/lib/editor/index.ts} +0 -0
  945. /package/{lib/emptymessage/index.d.ts → src/lib/emptymessage/index.ts} +0 -0
  946. /package/{lib/error/index.d.ts → src/lib/error/index.ts} +0 -0
  947. /package/{lib/expandablearea/index.d.ts → src/lib/expandablearea/index.ts} +0 -0
  948. /package/{lib/field-filter/index.d.ts → src/lib/field-filter/index.ts} +0 -0
  949. /package/{lib/field-options/index.d.ts → src/lib/field-options/index.ts} +0 -0
  950. /package/{lib/fileupload/index.d.ts → src/lib/fileupload/index.ts} +0 -0
  951. /package/{lib/fileupload-advanced/index.d.ts → src/lib/fileupload-advanced/index.ts} +0 -0
  952. /package/{lib/form-compact/index.d.ts → src/lib/form-compact/index.ts} +0 -0
  953. /package/{lib/header/index.d.ts → src/lib/header/index.ts} +0 -0
  954. /package/{lib/hierarchy/index.d.ts → src/lib/hierarchy/index.ts} +0 -0
  955. /package/{lib/homepage/index.d.ts → src/lib/homepage/index.ts} +0 -0
  956. /package/{lib/hyperlink/index.d.ts → src/lib/hyperlink/index.ts} +0 -0
  957. /package/{lib/icon/index.d.ts → src/lib/icon/index.ts} +0 -0
  958. /package/{lib/input/index.d.ts → src/lib/input/index.ts} +0 -0
  959. /package/{lib/input-validate/index.d.ts → src/lib/input-validate/index.ts} +0 -0
  960. /package/{lib/label/index.d.ts → src/lib/label/index.ts} +0 -0
  961. /package/{lib/line/index.d.ts → src/lib/line/index.ts} +0 -0
  962. /package/{lib/listview/index.d.ts → src/lib/listview/index.ts} +0 -0
  963. /package/{lib/locale/index.d.ts → src/lib/locale/index.ts} +0 -0
  964. /package/{lib/lookup/index.d.ts → src/lib/lookup/index.ts} +0 -0
  965. /package/{lib/mask/index.d.ts → src/lib/mask/index.ts} +0 -0
  966. /package/{lib/masthead/index.d.ts → src/lib/masthead/index.ts} +0 -0
  967. /package/{lib/menu-button/index.d.ts → src/lib/menu-button/index.ts} +0 -0
  968. /package/{lib/message/index.d.ts → src/lib/message/index.ts} +0 -0
  969. /package/{lib/modal-dialog/index.d.ts → src/lib/modal-dialog/index.ts} +0 -0
  970. /package/{lib/module-nav/index.d.ts → src/lib/module-nav/index.ts} +0 -0
  971. /package/{lib/module-nav-container/index.d.ts → src/lib/module-nav-container/index.ts} +0 -0
  972. /package/{lib/module-nav-settings/index.d.ts → src/lib/module-nav-settings/index.ts} +0 -0
  973. /package/{lib/module-nav-switcher/index.d.ts → src/lib/module-nav-switcher/index.ts} +0 -0
  974. /package/{lib/monthview/index.d.ts → src/lib/monthview/index.ts} +0 -0
  975. /package/{lib/notification/index.d.ts → src/lib/notification/index.ts} +0 -0
  976. /package/{lib/notification-badge/index.d.ts → src/lib/notification-badge/index.ts} +0 -0
  977. /package/{lib/pager/index.d.ts → src/lib/pager/index.ts} +0 -0
  978. /package/{lib/personalize/index.d.ts → src/lib/personalize/index.ts} +0 -0
  979. /package/{lib/pie/index.d.ts → src/lib/pie/index.ts} +0 -0
  980. /package/{lib/popdown/index.d.ts → src/lib/popdown/index.ts} +0 -0
  981. /package/{lib/popupmenu/index.d.ts → src/lib/popupmenu/index.ts} +0 -0
  982. /package/{lib/progress/index.d.ts → src/lib/progress/index.ts} +0 -0
  983. /package/{lib/radar/index.d.ts → src/lib/radar/index.ts} +0 -0
  984. /package/{lib/radiobutton/index.d.ts → src/lib/radiobutton/index.ts} +0 -0
  985. /package/{lib/rating/index.d.ts → src/lib/rating/index.ts} +0 -0
  986. /package/{lib/renderLoop/index.d.ts → src/lib/renderLoop/index.ts} +0 -0
  987. /package/{lib/searchfield/index.d.ts → src/lib/searchfield/index.ts} +0 -0
  988. /package/{lib/slider/index.d.ts → src/lib/slider/index.ts} +0 -0
  989. /package/{lib/sparkline/index.d.ts → src/lib/sparkline/index.ts} +0 -0
  990. /package/{lib/spinbox/index.d.ts → src/lib/spinbox/index.ts} +0 -0
  991. /package/{lib/stepchart/index.d.ts → src/lib/stepchart/index.ts} +0 -0
  992. /package/{lib/stepprocess/index.d.ts → src/lib/stepprocess/index.ts} +0 -0
  993. /package/{lib/swipe-action/index.d.ts → src/lib/swipe-action/index.ts} +0 -0
  994. /package/{lib/tabs/index.d.ts → src/lib/tabs/index.ts} +0 -0
  995. /package/{lib/textarea/index.d.ts → src/lib/textarea/index.ts} +0 -0
  996. /package/{lib/timepicker/index.d.ts → src/lib/timepicker/index.ts} +0 -0
  997. /package/{lib/toast/index.d.ts → src/lib/toast/index.ts} +0 -0
  998. /package/{lib/toolbar/index.d.ts → src/lib/toolbar/index.ts} +0 -0
  999. /package/{lib/toolbar-flex/index.d.ts → src/lib/toolbar-flex/index.ts} +0 -0
  1000. /package/{lib/tooltip/index.d.ts → src/lib/tooltip/index.ts} +0 -0
  1001. /package/{lib/trackdirty/index.d.ts → src/lib/trackdirty/index.ts} +0 -0
  1002. /package/{lib/tree/index.d.ts → src/lib/tree/index.ts} +0 -0
  1003. /package/{lib/treemap/index.d.ts → src/lib/treemap/index.ts} +0 -0
  1004. /package/{lib/utils/index.d.ts → src/lib/utils/index.ts} +0 -0
  1005. /package/{lib/version/index.d.ts → src/lib/version/index.ts} +0 -0
  1006. /package/{lib/week-view/index.d.ts → src/lib/week-view/index.ts} +0 -0
package/.eslintrc.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "extends": "../../.eslintrc.json",
3
+ "ignorePatterns": [
4
+ "!**/*"
5
+ ],
6
+ "overrides": [
7
+ {
8
+ "files": [
9
+ "*.ts"
10
+ ],
11
+ "parserOptions": {
12
+ "ecmaVersion": "latest",
13
+ "sourceType": "module",
14
+ "allowImportExportEverywhere": true,
15
+ "project": [
16
+ "projects/ids-enterprise-ng/tsconfig.lib.json",
17
+ "projects/ids-enterprise-ng/tsconfig.spec.json"
18
+ ],
19
+ "createDefaultProgram": true
20
+ },
21
+ "rules": {
22
+ "@angular-eslint/component-class-suffix": [
23
+ "error",
24
+ {
25
+ "suffixes": [
26
+ "Component"
27
+ ]
28
+ }
29
+ ],
30
+ "@angular-eslint/component-selector": [
31
+ "error",
32
+ {
33
+ "type": "element",
34
+ "prefix": "soho",
35
+ "style": "kebab-case"
36
+ }
37
+ ],
38
+ "@angular-eslint/directive-class-suffix": [
39
+ "error",
40
+ {
41
+ "suffixes": [
42
+ "Directive"
43
+ ]
44
+ }
45
+ ],
46
+ "@angular-eslint/directive-selector": [
47
+ "error",
48
+ {
49
+ "type": "attribute",
50
+ "prefix": "soho",
51
+ "style": "kebab-case"
52
+ }
53
+ ],
54
+ "@angular-eslint/no-attribute-decorator": "error",
55
+ "@angular-eslint/no-forward-ref": "error",
56
+ "@typescript-eslint/dot-notation": "off",
57
+ "@typescript-eslint/explicit-member-accessibility": [
58
+ "off",
59
+ {
60
+ "accessibility": "explicit"
61
+ }
62
+ ],
63
+ "brace-style": [
64
+ "error",
65
+ "1tbs"
66
+ ],
67
+ "id-blacklist": "off",
68
+ "id-match": "off",
69
+ "no-multiple-empty-lines": "error",
70
+ "no-redeclare": "error",
71
+ "no-underscore-dangle": "off"
72
+ }
73
+ },
74
+ {
75
+ "files": [
76
+ "*.html"
77
+ ],
78
+ "rules": {}
79
+ }
80
+ ]
81
+ }
package/karma.conf.js ADDED
@@ -0,0 +1,86 @@
1
+ // Karma configuration file, see link for more information
2
+ // https://karma-runner.github.io/1.0/config/configuration-file.html
3
+ const process = require('process');
4
+ process.env.CHROME_BIN = require('puppeteer').executablePath();
5
+
6
+ module.exports = function (config) {
7
+ config.set({
8
+ basePath: '',
9
+ frameworks: ['jasmine', '@angular-devkit/build-angular'],
10
+ plugins: [
11
+ require('karma-jasmine'),
12
+ require('karma-chrome-launcher'),
13
+ require('karma-jasmine-html-reporter'),
14
+ require('karma-coverage'),
15
+ require('@angular-devkit/build-angular/plugins/karma'),
16
+ require('karma-phantomjs-launcher'),
17
+ require('karma-mocha-reporter')
18
+ ],
19
+ client: {
20
+ jasmine: {
21
+ // you can add configuration options for Jasmine here
22
+ // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
23
+ // for example, you can disable the random execution with `random: false`
24
+ // or set a specific seed with `seed: 4321`
25
+ },
26
+ clearContext: false // leave Jasmine Spec Runner output visible in browser
27
+ },
28
+ mochaReporter: {
29
+ output: 'autowatch',
30
+ },
31
+ files: [
32
+ { pattern: '../../node_modules/jquery/dist/jquery.js', watched: false },
33
+ { pattern: '../../node_modules/d3/dist/d3.js', watched: false },
34
+ { pattern: '../../node_modules/ids-enterprise/dist/js/sohoxi.js', watched: false },
35
+ { pattern: '../../node_modules/ids-enterprise/dist/js/cultures/en-US.js', watched: false },
36
+ { pattern: '../../node_modules/ids-enterprise/dist/js/cultures/it-IT.js', watched: false },
37
+ { pattern: '../../node_modules/ids-enterprise/dist/js/cultures/nl-NL.js', watched: false },
38
+ { pattern: '../../node_modules/ids-enterprise/dist/js/cultures/hi-IN.js', watched: false },
39
+ { pattern: '../../node_modules/ids-enterprise/dist/js/cultures/sv-SE.js', watched: false },
40
+ { pattern: '../../node_modules/ids-enterprise/dist/css/theme-classic-light.css', watched: false },
41
+ ],
42
+ preprocessors: {
43
+ },
44
+ mime: {
45
+ 'text/x-typescript': ['ts','tsx']
46
+ },
47
+ coverageReporter: {
48
+ dir: require('path').join(__dirname, '../../coverage'),
49
+ subdir: '.',
50
+ reporters: [
51
+ { type: 'html' },
52
+ { type: 'text-summary' },
53
+ { type: 'lcov' }
54
+ ]
55
+ },
56
+ reporters: config.angularCli && config.angularCli.codeCoverage
57
+ ? ['progress', 'coverage-istanbul', 'kjhtml', 'mocha']
58
+ : ['progress', 'kjhtml', 'mocha'],
59
+ mocha:{
60
+ outputFile: 'tests/results.txt'
61
+ },
62
+ customLaunchers: {
63
+ ChromeDebug: {
64
+ base: 'Chrome',
65
+ flags: [ '--remote-debugging-port=9333' ]
66
+ },
67
+ ChromeHeadlessNoSandbox: {
68
+ base: 'ChromeHeadless',
69
+ flags: [
70
+ '--no-sandbox',
71
+ '--headless'
72
+ ]
73
+ }
74
+ },
75
+ port: 9876,
76
+ logLevel: config.LOG_ERROR,
77
+ autoWatch: true,
78
+ browsers: ['ChromeHeadlessNoSandbox'],
79
+ captureTimeout: 23000,
80
+ browserDisconnectTolerance: 12, //this one helps
81
+ browserDisconnectTimeout : 23000,
82
+ browserNoActivityTimeout : 23000,
83
+ singleRun: true,
84
+ restartOnFileChange: true
85
+ });
86
+ };
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/ids-enterprise-ng",
4
+ "deleteDestPath": false,
5
+ "lib": {
6
+ "entryFile": "src/public_api.ts"
7
+ },
8
+ "allowedNonPeerDependencies": [
9
+ "angular",
10
+ "classlist.js",
11
+ "d3",
12
+ "ids-enterprise",
13
+ "jquery"
14
+ ]
15
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/ids-enterprise-ng",
4
+ "lib": {
5
+ "entryFile": "src/public_api.ts"
6
+ },
7
+ "allowedNonPeerDependencies": [
8
+ "angular",
9
+ "classlist.js",
10
+ "d3",
11
+ "ids-enterprise",
12
+ "jquery"
13
+ ]
14
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-ng",
3
3
  "slug": "ids-enterprise-ng",
4
- "version": "18.6.0-dev.17",
4
+ "version": "18.6.0-dev.18",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.7",
7
7
  "@angular/core": "^18.2.7",
@@ -10,7 +10,7 @@
10
10
  "ids-enterprise": "^4.99.1",
11
11
  "@types/jquery": "3.5.16",
12
12
  "@types/d3": "7.4.0",
13
- "ids-enterprise-typings": "18.6.0-dev.16"
13
+ "ids-enterprise-typings": "18.6.0-dev.18"
14
14
  },
15
15
  "description": "Infor Design System (IDS) Enterprise Angular Components",
16
16
  "repository": {
@@ -27,21 +27,7 @@
27
27
  "url": "https://inforwiki.atlassian.net/jira/software/c/projects/IDS/issues"
28
28
  },
29
29
  "homepage": "https://oxford.awsdev.infor.com/infor-design/enterprise-ng",
30
- "module": "fesm2022/ids-enterprise-ng.mjs",
31
- "typings": "index.d.ts",
32
- "exports": {
33
- "./package.json": {
34
- "default": "./package.json"
35
- },
36
- ".": {
37
- "types": "./index.d.ts",
38
- "esm2022": "./esm2022/ids-enterprise-ng.mjs",
39
- "esm": "./esm2022/ids-enterprise-ng.mjs",
40
- "default": "./fesm2022/ids-enterprise-ng.mjs"
41
- }
42
- },
43
- "sideEffects": false,
44
- "dependencies": {
45
- "tslib": "^2.3.0"
30
+ "scripts": {
31
+ "test": "echo \"Error: no test specified\" && exit 1"
46
32
  }
47
- }
33
+ }
@@ -0,0 +1,18 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+
4
+ import { SohoAboutService } from './soho-about.service';
5
+
6
+ @NgModule({
7
+ imports: [
8
+ CommonModule
9
+ ],
10
+ declarations: [
11
+ ],
12
+ exports: [
13
+ ],
14
+ providers: [
15
+ SohoAboutService
16
+ ]
17
+ })
18
+ export class SohoAboutModule {}
@@ -0,0 +1,250 @@
1
+ import { NgZone } from "@angular/core";
2
+ /**
3
+ * Wrapper for the jQuery about control.
4
+ */
5
+ export class SohoAboutRef {
6
+ private eventGuard: SohoAboutDialogEventGuard | null | undefined = {};
7
+
8
+ /** Selector referencing the about-dialog after it has been moved to the dialog container. */
9
+ private jQueryElement?: JQuery;
10
+
11
+ /** Soho Control Api */
12
+ private _about?: SohoAboutStatic;
13
+
14
+ /** Dialog placeholder, defaults to $('body')*/
15
+ private _placeholder: JQuery;
16
+
17
+ // -------------------------------------------
18
+ // Default options block
19
+ // -------------------------------------------
20
+
21
+ /**
22
+ * Cached options.
23
+ */
24
+ private _options: SohoAboutOptions = {};
25
+
26
+ /**
27
+ * Sets the whole options block for this modal dialog.
28
+ *
29
+ * @param options - the options to set.
30
+ */
31
+ options(options?: SohoAboutOptions): SohoAboutRef {
32
+ this._options = options || {};
33
+ return this;
34
+ }
35
+
36
+ /**
37
+ * Sets the appName on the about dialog
38
+ *
39
+ * @param appName - the application name
40
+ */
41
+ appName(appName: string): SohoAboutRef {
42
+ this._options.appName = appName;
43
+ return this;
44
+ }
45
+
46
+ /**
47
+ * Sets the additional 'content' that the about dialog displays.
48
+ *
49
+ * @param content - the additional text content
50
+ */
51
+ content(content: string): SohoAboutRef {
52
+ this._options.content = content;
53
+ return this;
54
+ }
55
+
56
+ /**
57
+ * Sets the copyrightYear of the about dialog.
58
+ */
59
+ copyrightYear(copyrightYear: string): SohoAboutRef {
60
+ this._options.copyrightYear = copyrightYear;
61
+ return this;
62
+ }
63
+
64
+ /**
65
+ * Sets Whether or not to show the deviceSpecs
66
+ *
67
+ * @param deviceSpecs - if true; the about dialog will show device info
68
+ */
69
+ deviceSpecs(deviceSpecs: boolean): SohoAboutRef {
70
+ this._options.deviceSpecs = deviceSpecs;
71
+ return this;
72
+ }
73
+
74
+ /**
75
+ * Sets The Additional productName
76
+ *
77
+ * @param productName - the product name
78
+ */
79
+ productName(productName: string): SohoAboutRef {
80
+ this._options.productName = productName;
81
+ return this;
82
+ }
83
+
84
+ /**
85
+ * Sets The Additional productName
86
+ *
87
+ * @param productName - the product name
88
+ */
89
+ useDefaultCopyright(useDefaultCopyright: boolean): SohoAboutRef {
90
+ this._options.useDefaultCopyright = useDefaultCopyright;
91
+ return this;
92
+ }
93
+
94
+ /**
95
+ * Sets about dialog version
96
+ *
97
+ * @param version - the semantic version no fx 4.0.1
98
+ */
99
+ version(version: string): SohoAboutRef {
100
+ this._options.version = version;
101
+ return this;
102
+ }
103
+
104
+ /**
105
+ * Add extra attributes like id's to the component
106
+ *
107
+ * @param attributes - the array or object of attributes to add
108
+ */
109
+ attributes(attributes: Array<Object> | Object): SohoAboutRef {
110
+ this._options.attributes = attributes;
111
+ return this;
112
+ }
113
+
114
+ /**
115
+ * Constructor.
116
+ *
117
+ * @param placeholder for the about dialog; defaults to the body.
118
+ */
119
+ constructor(private ngZone: NgZone) {
120
+ this._placeholder = $('body');
121
+ }
122
+
123
+ /**
124
+ * Displays the about dialog.
125
+ *
126
+ * @return the dialog ref.
127
+ */
128
+ open(): SohoAboutRef {
129
+ // Returns the body!
130
+ this._placeholder.about(this._options);
131
+
132
+ // Need a better way of locating the about dialog dialog.
133
+ this.jQueryElement = this._placeholder.find('.about');
134
+ this._about = this.jQueryElement.data('about');
135
+
136
+ this.jQueryElement?.off('beforeopen.about').on('beforeopen.about', ((event: any) => this.ngZone.run(() => this.onBeforeOpen(event))));
137
+ this.jQueryElement?.off('close.about').on('close.about', ((event: any) => this.ngZone.run(() => this.onClose(event))));
138
+ this.jQueryElement?.off('afterclose.about').on('afterclose.about', ((event: any) => this.ngZone.run(() => this.onAfterClose(event))));
139
+
140
+ return this;
141
+ }
142
+
143
+ /**
144
+ * Closes the about dialog, if open.
145
+ *
146
+ * @param dialogResult - optional result - held for the caller.
147
+ */
148
+ close(): SohoAboutRef {
149
+ if (this._about) {
150
+ this._about.close();
151
+ }
152
+ return this;
153
+ }
154
+
155
+ /**
156
+ * Registers a before open guard.
157
+ *
158
+ * @param eventFn - the function to call before openning the dialog.
159
+ */
160
+ beforeOpen(eventFn: (dialogRef?: SohoAboutRef) => boolean): SohoAboutRef {
161
+ (this.eventGuard as any).beforeOpen = eventFn;
162
+ return this;
163
+ }
164
+
165
+ /**
166
+ * Registers a closed guard.
167
+ *
168
+ * @param eventFn - the function to call before openning the dialog.
169
+ */
170
+ closed(eventFn: (dialogRef?: SohoAboutRef) => boolean): SohoAboutRef {
171
+ (this.eventGuard as any).closed = eventFn;
172
+ return this;
173
+ }
174
+
175
+ /**
176
+ * Registers a after close guard.
177
+ *
178
+ * @param eventFn - the function to call before openning the dialog.
179
+ */
180
+ afterClose(eventFn: (dialogRef?: SohoAboutRef) => boolean): SohoAboutRef {
181
+ (this.eventGuard as any).afterClose = eventFn;
182
+ return this;
183
+ }
184
+
185
+ /**
186
+ * Handles the 'beforeOpen' event, fired before the modal dialog
187
+ * has been opened.
188
+ *
189
+ * @param event - full event object.
190
+ *
191
+ * @return true if the dialog can be opened; otherwise false if veoted.
192
+ */
193
+ private onBeforeOpen(_event: any): boolean {
194
+ const fn: Function = (this.eventGuard?.beforeOpen as any);
195
+ return fn ? fn.call(this.eventGuard, this) : true;
196
+ }
197
+
198
+ /**
199
+ * Handles the 'closed' event, fired before the modal dialog
200
+ * has been opened.
201
+ *
202
+ * @param event - full event object.
203
+ *
204
+ * @return true if the dialog can be opened; otherwise false if veoted.
205
+ */
206
+ private onClose(_event: any): boolean {
207
+ const fn: Function = (this.eventGuard?.closed as any);
208
+ return fn ? fn.call(this.eventGuard, this) : true;
209
+ }
210
+
211
+ /**
212
+ * Handles the 'afterClose' event, fired before the modal dialog
213
+ * has been opened.
214
+ *
215
+ * @param event - full event object.
216
+ *
217
+ * @return true if the dialog can be opened; otherwise false if veoted.
218
+ */
219
+ private onAfterClose(_event: any): boolean {
220
+ const fn: Function = (this.eventGuard?.afterClose as any);
221
+ return fn ? fn.call(this.eventGuard, this) : true;
222
+ }
223
+ }
224
+
225
+
226
+ /**
227
+ * Event Handlers.
228
+ */
229
+ export interface SohoAboutDialogEventGuard {
230
+ /**
231
+ * Invoked before a modal is opened.
232
+ *
233
+ * @return false to veto the open action; otherwise true.
234
+ */
235
+ beforeOpen?(dialogRef: SohoAboutRef): boolean;
236
+
237
+ /**
238
+ * Invoked when closing a modal.
239
+ *
240
+ * @return false to veto the open action; otherwise true.
241
+ */
242
+ closed?(dialogRef: SohoAboutRef): boolean;
243
+
244
+ /**
245
+ * Invoked after the modal is closed.
246
+ *
247
+ * @return false to veto the open action; otherwise true.
248
+ */
249
+ afterClose?(dialogRef: SohoAboutRef): boolean;
250
+ }
@@ -0,0 +1,29 @@
1
+ import { Injectable, NgZone } from '@angular/core';
2
+ import { SohoAboutRef } from './soho-about.ref';
3
+
4
+ /**
5
+ * This service is used to create about dialogs.
6
+ */
7
+ @Injectable()
8
+ export class SohoAboutService {
9
+ /**
10
+ * Constructor.
11
+ */
12
+ constructor(private readonly ngZone: NgZone) {
13
+ }
14
+
15
+ /**
16
+ * Creates a about defined by the given info, returning a reference to the
17
+ * associated about dialog that can be interacted with.
18
+ *
19
+ * The about dialog won't be open until open is called on the returned instance,
20
+ * see the about ref api for further methods.
21
+ *
22
+ * @parent options - a compete set of options; can be null.
23
+ *
24
+ * @return the about reference.
25
+ */
26
+ about(options?: SohoAboutOptions): SohoAboutRef {
27
+ return new SohoAboutRef(this.ngZone).options(options);
28
+ }
29
+ }
@@ -0,0 +1,101 @@
1
+ # SoHoXi Angular Component : Accordion
2
+
3
+ ## Description
4
+
5
+ This component provides access from Angular to the SoHoXi `accordion` control.
6
+
7
+ The Accordion is a grouped set of collapsible panels used to navigate sections of
8
+ related content. Each panel consists of two levels: the top level identifies the
9
+ category or section header, and the second level provides the associated options.
10
+
11
+ ### Usage
12
+
13
+ To use the Soho accordion, you must make sure the `SohoComponentsModule` is included in
14
+ the application your component resides in.
15
+
16
+ In the markup for you angular component, simply add elements named `soho-accordion`, for example:
17
+
18
+ ```html
19
+ <soho-accordion>
20
+ <soho-accordion-header>Header Content</soho-accordion-header>
21
+ <soho-accordion-pane>
22
+ <span>Pane Content</span>
23
+ </soho-accordion-pane>
24
+
25
+ <soho-accordion-header>Header Content</soho-accordion-header>
26
+ <soho-accordion-pane>
27
+ <div class="radio-group">
28
+ ...
29
+ </div>
30
+ </soho-accordion-pane>
31
+ ...
32
+ </soho-accordion>
33
+ ```
34
+
35
+ ## Inputs
36
+
37
+ The 'accordion' component provides a number of options to control its behavior, and presentation.
38
+
39
+ | Name | Description |
40
+ | --- | --- |
41
+ | `allowOnePane` | If set to true, allows only one pane of the Accordion to be open at a time. If an Accordion pane is open, and that pane contains sub-headers, only one of the pane's sub-headers can be open at a time. (default true) |
42
+ | `displayChevron` | Displays a "Chevron" icon that sits off to the right-most side of a top-level accordion header. Used in place of an Expander (+/-) if enabled. |
43
+ | `rerouteOnLinkClick` | Can be set to false if routing is externally handled. |
44
+ | `source` | A callback function that when implemented provided a call back for `ajax` loading of tab contents on open. |
45
+
46
+ Changes to these properties will dynamically update the component.
47
+
48
+ ## Methods
49
+
50
+ | Name | Description |
51
+ | --- | --- |
52
+ | `collapse(h: SohoHeaderComponent)` | Collapses the specified header. |
53
+ | `collapseAll` | Collapses all accordion headers. |
54
+ | `disable` | Disable the accordion. |
55
+ | `enable` | Enable the accordion. |
56
+ | `expand(h: SohoHeaderComponent)` | Expand the given Panel on the Accordion. |
57
+ | `expandAll` | Expands all accordion headers, if possible. |
58
+ | `isDisabled(h: SohoHeaderComponent)` | Checks if a particular header is disabled, or if the entire accordion is disabled. |
59
+ | `isExpanded(h: SohoHeaderComponent)` | Checks if a particular header is expanded. |
60
+ | `toggle(h: SohoHeaderComponent)` | Toggle the given Panel on the Accordion between expanded and collapsed. |
61
+ | `updated` | Update the control with changes. |
62
+
63
+ ## Outputs
64
+
65
+ This component fires the following events.
66
+
67
+ | Name | Description |
68
+ | --- | --- |
69
+ | `aftercollapse` | Fires after a pane is collapsed. |
70
+ | `afterexpand` | Fires after a pane is expanded. |
71
+ | `beforecollapse` | Fires before a pane is collapsed. |
72
+ | `beforeexpand` | Fires before a pane is expanded. |
73
+ | `beforeselect` | Fires before a pane is selected. |
74
+ | `collapse` | Fires when collapsed a pane is initiated. |
75
+ | `expand` | Fires when expanding a pane is initiated. |
76
+ | `followLink` | If the anchor is a real link, follow the link and die here. This indicates the link has been followed. |
77
+ | `selected` | Fires when a panel is opened. |
78
+
79
+ ## Examples
80
+
81
+ <!-- markdownlint-disable MD013 -->
82
+
83
+ ```html
84
+ <soho-accordion [allowOnePane]="false" (selected)="onSelected($event)">
85
+ <soho-accordion-header>Favourites</soho-accordion-header>
86
+ <soho-accordion-pane>
87
+ </soho-accordion-pane>
88
+
89
+ <soho-accordion-header>Process Reports</soho-accordion-header>
90
+ <soho-accordion-pane>
91
+ </soho-accordion-pane>
92
+
93
+ <soho-accordion-header>Brand Name</soho-accordion-header>
94
+ <soho-accordion-pane>Magnetic holistic, integrate envisioneer value podcasting leverage, "granular supply-chains systems supply-chains repurpose transform rss-capable seamless; robust disintermediate." Cluetrain: action-items rich metrics transition engage syndicate aggregate transform applications; revolutionize--infrastructures recontextualize platforms empower bandwidth incentivize, innovate, virtual portals whiteboard rich-clientAPIs intuitive. Synergies infrastructures; e-markets synthesize user-centric expedite. ROI world-class, ecologies utilize benchmark content--synergistic enhance. Syndicate synergistic collaborative enterprise ROI; folksonomies visionary holistic synergies grow.</soho-accordion-pane>
95
+
96
+ <soho-accordion-header>Material</soho-accordion-header>
97
+ <soho-accordion-pane>Revolutionize implement infrastructures social front-end, world-class bricks-and-clicks extensible recontextualize? User-contributed e-business relationships widgets bleeding-edge transform, "viral world-class, unleash sexy embrace cross-media best-of-breed wireless, functionalities." Markets, "transition architectures, redefine infomediaries world-class back-end harness, mindshare blogospheres; schemas disintermediate rich," benchmark integrated markets blogging synergies dynamic social back-end convergence. Reinvent A-list A-list B2C rss-capable, mesh bandwidth mission-critical disintermediate strategize networks distributed integrated bleeding-edge rss-capable partnerships incubate, web-enabled e-markets. A-list channels enhance citizen-media, value solutions beta-test platforms enable interfaces, transition interfaces one-to-one expedite scalable.</soho-accordion-pane>
98
+ </soho-accordion>
99
+ ```
100
+
101
+ <!-- markdownlint-enable MD013 -->
@@ -0,0 +1,5 @@
1
+ <a href="#" aria-haspopup="true" role="button" [attr.aria-expanded]="isExpanded">
2
+ <span>
3
+ <ng-content></ng-content>
4
+ </span>
5
+ </a>