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.
- package/.eslintrc.json +81 -0
- package/karma.conf.js +86 -0
- package/ng-package.json +15 -0
- package/ng-package.prod.json +14 -0
- package/package.json +5 -19
- package/src/lib/about/soho-about.module.ts +18 -0
- package/src/lib/about/soho-about.ref.ts +250 -0
- package/src/lib/about/soho-about.service.ts +29 -0
- package/src/lib/accordion/README.md +101 -0
- package/src/lib/accordion/soho-accordion-header.component.html +5 -0
- package/src/lib/accordion/soho-accordion-header.component.ts +47 -0
- package/src/lib/accordion/soho-accordion-pane.component.html +1 -0
- package/src/lib/accordion/soho-accordion-pane.component.ts +14 -0
- package/src/lib/accordion/soho-accordion.component.css +4 -0
- package/src/lib/accordion/soho-accordion.component.html +9 -0
- package/src/lib/accordion/soho-accordion.component.ts +503 -0
- package/src/lib/accordion/soho-accordion.module.ts +22 -0
- package/src/lib/actionsheet/README.md +87 -0
- package/src/lib/actionsheet/soho-actionsheet.component.ts +266 -0
- package/src/lib/actionsheet/soho-actionsheet.module.ts +14 -0
- package/src/lib/alert/soho-alert-directive.spec.ts +59 -0
- package/src/lib/alert/soho-alert.directive.ts +182 -0
- package/src/lib/alert/soho-alert.module.ts +16 -0
- package/src/lib/application-menu/README.md +7 -0
- package/src/lib/application-menu/soho-application-menu.component.html +1 -0
- package/src/lib/application-menu/soho-application-menu.component.ts +378 -0
- package/src/lib/application-menu/soho-application-menu.module.ts +19 -0
- package/src/lib/arrange/soho-arrange.directive.ts +63 -0
- package/src/lib/arrange/soho-arrange.module.ts +13 -0
- package/src/lib/autocomplete/soho-autocomplete-reactive-form.spec.ts +112 -0
- package/src/lib/autocomplete/soho-autocomplete.component.ts +247 -0
- package/src/lib/autocomplete/soho-autocomplete.module.ts +17 -0
- package/src/lib/autocomplete/soho-autocomplete.spec.ts +111 -0
- package/src/lib/bar/soho-bar.component.ts +309 -0
- package/src/lib/bar/soho-bar.module.ts +17 -0
- package/src/lib/bar/soho-bar.spec.ts +217 -0
- package/src/lib/blockgrid/soho-blockgrid.component.ts +230 -0
- package/src/lib/blockgrid/soho-blockgrid.module.ts +17 -0
- package/src/lib/blockgrid/soho-blockgrid.spec.ts +205 -0
- package/src/lib/breadcrumb/soho-breadcrumb.component.html +1 -0
- package/src/lib/breadcrumb/soho-breadcrumb.component.ts +257 -0
- package/src/lib/breadcrumb/soho-breadcrumb.module.ts +19 -0
- package/src/lib/breadcrumb/soho-breadcrumb.spec.ts +99 -0
- package/src/lib/bullet/soho-bullet.component.ts +129 -0
- package/src/lib/bullet/soho-bullet.module.ts +17 -0
- package/src/lib/bullet/soho-bullet.spec.ts +126 -0
- package/src/lib/busyindicator/soho-busyindicator.directive.ts +304 -0
- package/src/lib/busyindicator/soho-busyindicator.module.ts +19 -0
- package/src/lib/button/soho-button.component.html +4 -0
- package/src/lib/button/soho-button.component.spec.ts +110 -0
- package/src/lib/button/soho-button.component.ts +560 -0
- package/src/lib/button/soho-button.module.ts +18 -0
- package/src/lib/buttonset/soho-buttonset.component.spec.ts +87 -0
- package/src/lib/buttonset/soho-buttonset.component.ts +305 -0
- package/src/lib/buttonset/soho-buttonset.module.ts +16 -0
- package/src/lib/calendar/soho-calendar.component.ts +708 -0
- package/src/lib/calendar/soho-calendar.module.ts +20 -0
- package/src/lib/calendar/soho-calendar.spec.ts +331 -0
- package/src/lib/card/soho-card.component.ts +412 -0
- package/src/lib/card/soho-card.module.ts +31 -0
- package/src/lib/chart/soho-chart.component.ts +209 -0
- package/src/lib/chart/soho-chart.module.ts +16 -0
- package/src/lib/checkbox/soho-checkbox-reactive-form.spec.ts +111 -0
- package/src/lib/checkbox/soho-checkbox.component.ts +107 -0
- package/src/lib/checkbox/soho-checkbox.module.ts +16 -0
- package/src/lib/circlepager/soho-circlepager.component.ts +111 -0
- package/src/lib/circlepager/soho-circlepager.module.ts +17 -0
- package/src/lib/circlepager/soho-circlepager.spec.ts +84 -0
- package/src/lib/colorpicker/soho-colorpicker-reactive-form.spec.ts +111 -0
- package/src/lib/colorpicker/soho-colorpicker.component.ts +450 -0
- package/src/lib/colorpicker/soho-colorpicker.module.ts +16 -0
- package/src/lib/column/soho-column.component.ts +289 -0
- package/src/lib/column/soho-column.module.ts +17 -0
- package/src/lib/column/soho-column.spec.ts +321 -0
- package/src/lib/context-menu/soho-context-menu.directive.ts +344 -0
- package/src/lib/context-menu/soho-context-menu.module.ts +31 -0
- package/src/lib/context-menu/soho-context-menu.spec.ts +84 -0
- package/src/lib/contextual-action-panel/README.md +124 -0
- package/src/lib/contextual-action-panel/soho-contextual-action-panel.module.ts +18 -0
- package/src/lib/contextual-action-panel/soho-contextual-action-panel.ref.ts +579 -0
- package/src/lib/contextual-action-panel/soho-contextual-action-panel.service.ts +62 -0
- package/src/lib/datagrid/README.md +131 -0
- package/src/lib/datagrid/index.ts +7 -0
- package/src/lib/datagrid/soho-datagrid.component.ts +3468 -0
- package/src/lib/datagrid/soho-datagrid.module.ts +16 -0
- package/src/lib/datagrid/soho-datagrid.service.ts +21 -0
- package/src/lib/datagrid/soho-datagrid.spec.ts +745 -0
- package/src/lib/datepicker/soho-datepicker-reactive-form.spec.ts +94 -0
- package/src/lib/datepicker/soho-datepicker.component.ts +711 -0
- package/src/lib/datepicker/soho-datepicker.module.ts +16 -0
- package/src/lib/datepicker/soho-datepicker.spec.ts +438 -0
- package/src/lib/drag/soho-drag.directive.ts +64 -0
- package/src/lib/drag/soho-drag.module.ts +17 -0
- package/src/lib/dropdown/soho-dropdown-reactive-form.spec.ts +104 -0
- package/src/lib/dropdown/soho-dropdown.component.ts +864 -0
- package/src/lib/dropdown/soho-dropdown.module.ts +16 -0
- package/src/lib/dropdown/soho-dropdown.spec.ts +142 -0
- package/src/lib/editor/soho-editor-reactive-form.spec.ts +110 -0
- package/src/lib/editor/soho-editor.component.spec.ts +78 -0
- package/src/lib/editor/soho-editor.component.ts +387 -0
- package/src/lib/editor/soho-editor.module.ts +17 -0
- package/src/lib/emptymessage/soho-emptymessage.directive.ts +215 -0
- package/src/lib/emptymessage/soho-emptymessage.module.ts +16 -0
- package/src/lib/error/soho-error.directive.ts +119 -0
- package/src/lib/error/soho-error.module.ts +16 -0
- package/src/lib/expandablearea/soho-expandablearea.component.html +22 -0
- package/src/lib/expandablearea/soho-expandablearea.component.ts +318 -0
- package/src/lib/expandablearea/soho-expandablearea.module.ts +25 -0
- package/src/lib/field-filter/soho-field-filter.directive.spec.ts +129 -0
- package/src/lib/field-filter/soho-field-filter.directive.ts +162 -0
- package/src/lib/field-filter/soho-field-filter.module.ts +16 -0
- package/src/lib/field-options/soho-field-options.directive.ts +56 -0
- package/src/lib/field-options/soho-field-options.module.ts +16 -0
- package/src/lib/fileupload/soho-fileupload.component.ts +159 -0
- package/src/lib/fileupload/soho-fileupload.module.ts +17 -0
- package/src/lib/fileupload/soho-fileupload.spec.ts +87 -0
- package/src/lib/fileupload-advanced/README.md +79 -0
- package/src/lib/fileupload-advanced/soho-fileupload-advanced.component.html +1 -0
- package/src/lib/fileupload-advanced/soho-fileupload-advanced.component.ts +473 -0
- package/src/lib/fileupload-advanced/soho-fileupload-advanced.module.ts +17 -0
- package/src/lib/fileupload-advanced/soho-fileupload-advanced.spec.ts +78 -0
- package/src/lib/form-compact/soho-form-compact.component.ts +66 -0
- package/src/lib/form-compact/soho-form-compact.module.ts +17 -0
- package/src/lib/form-compact/soho-form-compact.spec.ts +115 -0
- package/src/lib/header/soho-header.component.html +1 -0
- package/src/lib/header/soho-header.component.ts +74 -0
- package/src/lib/header/soho-header.module.ts +16 -0
- package/src/lib/hierarchy/soho-hierarchy.component.ts +140 -0
- package/src/lib/hierarchy/soho-hierarchy.module.ts +18 -0
- package/src/lib/homepage/soho-homepage-sizer.directive.ts +43 -0
- package/src/lib/homepage/soho-homepage.component.ts +286 -0
- package/src/lib/homepage/soho-homepage.module.ts +30 -0
- package/src/lib/homepage/soho-widget-content.component.ts +9 -0
- package/src/lib/homepage/soho-widget-header.component.ts +9 -0
- package/src/lib/homepage/soho-widget-title.component.ts +14 -0
- package/src/lib/homepage/soho-widget.component.ts +154 -0
- package/src/lib/hyperlink/soho-hyperlink.component.ts +91 -0
- package/src/lib/hyperlink/soho-hyperlink.module.ts +20 -0
- package/src/lib/hyperlink/soho-hyperlink.spec.ts +90 -0
- package/src/lib/icon/soho-icon.component.ts +79 -0
- package/src/lib/icon/soho-icon.module.ts +39 -0
- package/src/lib/icon/soho-icons-app.component.ts +13 -0
- package/src/lib/icon/soho-icons-empty-new.component.ts +16 -0
- package/src/lib/icon/soho-icons-empty-uplift.component.ts +13 -0
- package/src/lib/icon/soho-icons-empty.component.ts +28 -0
- package/src/lib/icon/soho-icons-extended.component.spec.ts +25 -0
- package/src/lib/icon/soho-icons-extended.component.ts +20 -0
- package/src/lib/icon/soho-icons-new.component.ts +13 -0
- package/src/lib/icon/soho-icons-uplift.component.ts +13 -0
- package/src/lib/icon/soho-icons.component.ts +13 -0
- package/src/lib/icon/svg-app.html +50 -0
- package/src/lib/icon/svg-empty.html +95 -0
- package/src/lib/icon/svg-extended.html +1 -0
- package/src/lib/icon/svg-patterns.html +79 -0
- package/src/lib/icon/svg.html +421 -0
- package/src/lib/icon/theme-classic-svg-empty.html +13 -0
- package/src/lib/icon/theme-classic-svg.html +422 -0
- package/src/lib/icon/theme-new-default-svg.html +768 -0
- package/src/lib/icon/theme-new-svg-empty.html +37 -0
- package/src/lib/icon/theme-new-svg.html +768 -0
- package/src/lib/icon/theme-uplift-svg-empty.html +1 -0
- package/src/lib/icon/theme-uplift-svg.html +768 -0
- package/src/lib/index.ts +97 -0
- package/src/lib/input/soho-input-reactive-form.spec.ts +113 -0
- package/src/lib/input/soho-input.component.ts +167 -0
- package/src/lib/input/soho-input.module.ts +16 -0
- package/src/lib/input-validate/README.md +158 -0
- package/src/lib/input-validate/soho-input-validate.directive.ts +126 -0
- package/src/lib/input-validate/soho-input-validate.module.ts +16 -0
- package/src/lib/label/soho-label.directive.ts +68 -0
- package/src/lib/label/soho-label.module.ts +16 -0
- package/src/lib/line/soho-line.component.ts +242 -0
- package/src/lib/line/soho-line.module.ts +17 -0
- package/src/lib/line/soho-line.spec.ts +204 -0
- package/src/lib/listbuilder/index.ts +2 -0
- package/src/lib/listbuilder/soho-listbuilder.component.html +21 -0
- package/src/lib/listbuilder/soho-listbuilder.component.ts +229 -0
- package/src/lib/listbuilder/soho-listbuilder.module.ts +24 -0
- package/src/lib/listbuilder/soho-listbuilder.spec.ts +24 -0
- package/src/lib/listview/README.md +72 -0
- package/src/lib/listview/soho-listview.component.html +12 -0
- package/src/lib/listview/soho-listview.component.ts +560 -0
- package/src/lib/listview/soho-listview.module.ts +37 -0
- package/src/lib/listview/soho-listview.spec.ts +149 -0
- package/src/lib/locale/soho-formatdate.pipe.ts +25 -0
- package/src/lib/locale/soho-formatdate.spec.ts +34 -0
- package/src/lib/locale/soho-formatnumber.pipe.ts +25 -0
- package/src/lib/locale/soho-formatnumber.spec.ts +43 -0
- package/src/lib/locale/soho-locale.module.ts +21 -0
- package/src/lib/locale/soho-locale.spec.ts +23 -0
- package/src/lib/locale/soho-translate.pipe.ts +29 -0
- package/src/lib/locale/soho-translate.spec.ts +43 -0
- package/src/lib/lookup/soho-lookup-disabled.spec.ts +167 -0
- package/src/lib/lookup/soho-lookup.component.ts +850 -0
- package/src/lib/lookup/soho-lookup.module.ts +16 -0
- package/src/lib/lookup/soho-lookup.spec.ts +300 -0
- package/src/lib/mask/soho-mask.directive.ts +424 -0
- package/src/lib/mask/soho-mask.module.ts +16 -0
- package/src/lib/mask/soho-mask.spec.ts +162 -0
- package/src/lib/masthead/soho-masthead.component.html +8 -0
- package/src/lib/masthead/soho-masthead.component.ts +18 -0
- package/src/lib/masthead/soho-masthead.module.ts +16 -0
- package/src/lib/menu-button/soho-menu-button.component.css +7 -0
- package/src/lib/menu-button/soho-menu-button.component.html +3 -0
- package/src/lib/menu-button/soho-menu-button.component.spec.ts +416 -0
- package/src/lib/menu-button/soho-menu-button.component.ts +333 -0
- package/src/lib/menu-button/soho-menu-button.module.ts +18 -0
- package/src/lib/message/soho-message.module.ts +18 -0
- package/src/lib/message/soho-message.ref.ts +308 -0
- package/src/lib/message/soho-message.service.ts +90 -0
- package/src/lib/modal-dialog/README.md +199 -0
- package/src/lib/modal-dialog/soho-modal-dialog.module.ts +18 -0
- package/src/lib/modal-dialog/soho-modal-dialog.ref.ts +834 -0
- package/src/lib/modal-dialog/soho-modal-dialog.service.ts +82 -0
- package/src/lib/module-nav/soho-module-nav.component.css +3 -0
- package/src/lib/module-nav/soho-module-nav.component.html +1 -0
- package/src/lib/module-nav/soho-module-nav.component.ts +274 -0
- package/src/lib/module-nav/soho-module-nav.module.ts +20 -0
- package/src/lib/module-nav-container/soho-module-nav-container.component.css +3 -0
- package/src/lib/module-nav-container/soho-module-nav-container.component.html +1 -0
- package/src/lib/module-nav-container/soho-module-nav-container.component.ts +19 -0
- package/src/lib/module-nav-container/soho-module-nav-container.module.ts +16 -0
- package/src/lib/module-nav-settings/soho-module-nav-settings.component.css +3 -0
- package/src/lib/module-nav-settings/soho-module-nav-settings.component.html +1 -0
- package/src/lib/module-nav-settings/soho-module-nav-settings.component.ts +114 -0
- package/src/lib/module-nav-settings/soho-module-nav-settings.module.ts +16 -0
- package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.css +3 -0
- package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.html +20 -0
- package/src/lib/module-nav-switcher/soho-module-nav-switcher.component.ts +280 -0
- package/src/lib/module-nav-switcher/soho-module-nav-switcher.module.ts +18 -0
- package/src/lib/monthview/soho-monthview.component.ts +664 -0
- package/src/lib/monthview/soho-monthview.module.ts +16 -0
- package/src/lib/notification/soho-notification.module.ts +13 -0
- package/src/lib/notification/soho-notification.service.ts +39 -0
- package/src/lib/notification-badge/soho-notification-badge.component.ts +94 -0
- package/src/lib/notification-badge/soho-notification-badge.module.ts +16 -0
- package/src/lib/pager/soho-pager.module.ts +18 -0
- package/src/lib/pager/soho-standalone-pager.component.spec.ts +139 -0
- package/src/lib/pager/soho-standalone-pager.component.ts +219 -0
- package/src/lib/personalize/soho-personalize.directive.ts +158 -0
- package/src/lib/personalize/soho-personalize.module.ts +16 -0
- package/src/lib/personalize/soho-personalize.spec.ts +74 -0
- package/src/lib/pie/soho-pie.component.ts +297 -0
- package/src/lib/pie/soho-pie.module.ts +17 -0
- package/src/lib/pie/soho-pie.spec.ts +205 -0
- package/src/lib/popdown/soho-popdown-contents.component.ts +11 -0
- package/src/lib/popdown/soho-popdown.directive.ts +82 -0
- package/src/lib/popdown/soho-popdown.module.ts +17 -0
- package/src/lib/popdown/soho-popdown.spec.ts +55 -0
- package/src/lib/popupmenu/soho-popupmenu.component.ts +459 -0
- package/src/lib/popupmenu/soho-popupmenu.module.ts +31 -0
- package/src/lib/popupmenu/soho-popupmenu.spec.ts +243 -0
- package/src/lib/progress/soho-progress.component.ts +80 -0
- package/src/lib/progress/soho-progress.module.ts +13 -0
- package/src/lib/progress/soho-progress.spec.ts +58 -0
- package/src/lib/radar/soho-radar.component.ts +329 -0
- package/src/lib/radar/soho-radar.module.ts +17 -0
- package/src/lib/radar/soho-radar.spec.ts +222 -0
- package/src/lib/radiobutton/soho-radiobutton-reactive-form.spec.ts +119 -0
- package/src/lib/radiobutton/soho-radiobutton.component.ts +106 -0
- package/src/lib/radiobutton/soho-radiobutton.module.ts +17 -0
- package/src/lib/rating/soho-rating.component.ts +70 -0
- package/src/lib/rating/soho-rating.module.ts +17 -0
- package/src/lib/rating/soho-rating.spec.ts +71 -0
- package/src/lib/renderLoop/soho-render-loop.module.ts +18 -0
- package/src/lib/renderLoop/soho-render-loop.service.ts +31 -0
- package/src/lib/searchfield/soho-searchfield.component.ts +166 -0
- package/src/lib/searchfield/soho-searchfield.module.ts +18 -0
- package/src/lib/slider/soho-slider.component.ts +277 -0
- package/src/lib/slider/soho-slider.module.ts +16 -0
- package/src/lib/slider/soho-slider.spec.ts +77 -0
- package/src/lib/soho-components.module.ts +290 -0
- package/src/lib/sparkline/soho-sparkline.component.ts +154 -0
- package/src/lib/sparkline/soho-sparkline.module.ts +16 -0
- package/src/lib/sparkline/soho-sparkline.spec.ts +145 -0
- package/src/lib/spinbox/soho-spinbox-reactive-form.spec.ts +111 -0
- package/src/lib/spinbox/soho-spinbox.component.ts +190 -0
- package/src/lib/spinbox/soho-spinbox.module.ts +13 -0
- package/src/lib/spinbox/soho-spinbox.spec.ts +70 -0
- package/src/lib/splitter/index.ts +2 -0
- package/src/lib/splitter/soho-splitter.component.ts +167 -0
- package/src/lib/splitter/soho-splitter.module.ts +18 -0
- package/src/lib/splitter/soho-splitter.spec.ts +52 -0
- package/src/lib/stepchart/soho-stepchart.component.ts +171 -0
- package/src/lib/stepchart/soho-stepchart.module.ts +17 -0
- package/src/lib/stepchart/soho-stepchart.spec.ts +24 -0
- package/src/lib/stepprocess/soho-stepprocess.component.html +36 -0
- package/src/lib/stepprocess/soho-stepprocess.component.ts +304 -0
- package/src/lib/stepprocess/soho-stepprocess.module.ts +51 -0
- package/src/lib/swaplist/index.ts +3 -0
- package/src/lib/swaplist/soho-swaplist.component.ts +440 -0
- package/src/lib/swaplist/soho-swaplist.html +13 -0
- package/src/lib/swaplist/soho-swaplist.module.ts +24 -0
- package/src/lib/swaplist/soho-swaplist.service.ts +11 -0
- package/src/lib/swaplist/soho-swaplist.spec.ts +222 -0
- package/src/lib/swipe-action/soho-swipe-action.component.ts +58 -0
- package/src/lib/swipe-action/soho-swipe-action.module.ts +19 -0
- package/src/lib/swipe-action/soho-swipe-action.spec.ts +110 -0
- package/src/lib/tabs/soho-tabs.component.ts +963 -0
- package/src/lib/tabs/soho-tabs.module.ts +40 -0
- package/src/lib/tabs/soho-tabs.spec.ts +168 -0
- package/src/lib/tag/README.md +42 -0
- package/src/lib/tag/index.ts +2 -0
- package/src/lib/tag/soho-tag.component.spec.ts +119 -0
- package/src/lib/tag/soho-tag.component.ts +287 -0
- package/src/lib/tag/soho-tag.module.ts +22 -0
- package/src/lib/textarea/soho-textarea-reactive-form.spec.ts +134 -0
- package/src/lib/textarea/soho-textarea.component.spec.ts +81 -0
- package/src/lib/textarea/soho-textarea.component.ts +327 -0
- package/src/lib/textarea/soho-textarea.module.ts +17 -0
- package/src/lib/timepicker/soho-timepicker-reactive-form.spec.ts +102 -0
- package/src/lib/timepicker/soho-timepicker.component.ts +372 -0
- package/src/lib/timepicker/soho-timepicker.module.ts +16 -0
- package/src/lib/timepicker/soho-timepicker.spec.ts +52 -0
- package/src/lib/toast/soho-toast.module.ts +13 -0
- package/src/lib/toast/soho-toast.service.ts +16 -0
- package/src/lib/toolbar/soho-toolbar.component.html +3 -0
- package/src/lib/toolbar/soho-toolbar.component.ts +534 -0
- package/src/lib/toolbar/soho-toolbar.module.ts +44 -0
- package/src/lib/toolbar-flex/soho-toolbar-flex.component.ts +449 -0
- package/src/lib/toolbar-flex/soho-toolbar-flex.module.ts +35 -0
- package/src/lib/toolbar-flex/soho-toolbar-flex.spec.ts +267 -0
- package/src/lib/tooltip/soho-tooltip.directive.ts +273 -0
- package/src/lib/tooltip/soho-tooltip.module.ts +17 -0
- package/src/lib/trackdirty/soho-trackdirty.directive.ts +95 -0
- package/src/lib/trackdirty/soho-trackdirty.module.ts +17 -0
- package/src/lib/tree/soho-tree.component.ts +506 -0
- package/src/lib/tree/soho-tree.module.ts +16 -0
- package/src/lib/tree/soho-tree.service.ts +27 -0
- package/src/lib/tree/soho-tree.spec.ts +198 -0
- package/src/lib/treemap/soho-treemap.component.ts +167 -0
- package/src/lib/treemap/soho-treemap.module.ts +17 -0
- package/src/lib/treemap/soho-treemap.spec.ts +175 -0
- package/src/lib/utils/argument.helper.ts +31 -0
- package/src/lib/utils/base-control-value-accessor.ts +93 -0
- package/src/lib/utils/deprecated-event-emitter.ts +18 -0
- package/src/lib/utils/soho-icon.utils.ts +22 -0
- package/src/lib/utils/test.helper.ts +19 -0
- package/src/lib/version/version-initializer.module.ts +23 -0
- package/src/lib/version/version-initializer.service.ts +24 -0
- package/src/lib/week-view/soho-week-view.component.ts +646 -0
- package/src/lib/week-view/soho-week-view.module.ts +16 -0
- package/src/lib/week-view/soho-week-view.spec.ts +191 -0
- package/src/lib/wizard/README.md +99 -0
- package/src/lib/wizard/index.ts +8 -0
- package/src/lib/wizard/soho-wizard-buttonbar.component.ts +114 -0
- package/src/lib/wizard/soho-wizard-header.component.ts +34 -0
- package/src/lib/wizard/soho-wizard-page.component.ts +75 -0
- package/src/lib/wizard/soho-wizard-pages.component.ts +29 -0
- package/src/lib/wizard/soho-wizard-tick.component.ts +88 -0
- package/src/lib/wizard/soho-wizard.component.ts +401 -0
- package/src/lib/wizard/soho-wizard.module.ts +36 -0
- package/src/lib/wizard/soho-wizard.spec.ts +173 -0
- package/src/public_api.ts +5 -0
- package/src/test.ts +25 -0
- package/src/version.json +3 -0
- package/tsconfig.json +36 -0
- package/tsconfig.lib.json +44 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +27 -0
- package/esm2022/ids-enterprise-ng.mjs +0 -5
- package/esm2022/lib/about/index.mjs +0 -4
- package/esm2022/lib/about/soho-about.module.mjs +0 -25
- package/esm2022/lib/about/soho-about.ref.mjs +0 -192
- package/esm2022/lib/about/soho-about.service.mjs +0 -34
- package/esm2022/lib/accordion/index.mjs +0 -5
- package/esm2022/lib/accordion/soho-accordion-header.component.mjs +0 -49
- package/esm2022/lib/accordion/soho-accordion-pane.component.mjs +0 -17
- package/esm2022/lib/accordion/soho-accordion.component.mjs +0 -480
- package/esm2022/lib/accordion/soho-accordion.module.mjs +0 -34
- package/esm2022/lib/actionsheet/index.mjs +0 -3
- package/esm2022/lib/actionsheet/soho-actionsheet.component.mjs +0 -253
- package/esm2022/lib/actionsheet/soho-actionsheet.module.mjs +0 -22
- package/esm2022/lib/alert/index.mjs +0 -3
- package/esm2022/lib/alert/soho-alert.directive.mjs +0 -168
- package/esm2022/lib/alert/soho-alert.module.mjs +0 -24
- package/esm2022/lib/application-menu/index.mjs +0 -3
- package/esm2022/lib/application-menu/soho-application-menu.component.mjs +0 -317
- package/esm2022/lib/application-menu/soho-application-menu.module.mjs +0 -27
- package/esm2022/lib/arrange/index.mjs +0 -3
- package/esm2022/lib/arrange/soho-arrange.directive.mjs +0 -50
- package/esm2022/lib/arrange/soho-arrange.module.mjs +0 -18
- package/esm2022/lib/autocomplete/index.mjs +0 -3
- package/esm2022/lib/autocomplete/soho-autocomplete.component.mjs +0 -224
- package/esm2022/lib/autocomplete/soho-autocomplete.module.mjs +0 -24
- package/esm2022/lib/bar/index.mjs +0 -3
- package/esm2022/lib/bar/soho-bar.component.mjs +0 -295
- package/esm2022/lib/bar/soho-bar.module.mjs +0 -24
- package/esm2022/lib/blockgrid/index.mjs +0 -3
- package/esm2022/lib/blockgrid/soho-blockgrid.component.mjs +0 -218
- package/esm2022/lib/blockgrid/soho-blockgrid.module.mjs +0 -24
- package/esm2022/lib/breadcrumb/index.mjs +0 -3
- package/esm2022/lib/breadcrumb/soho-breadcrumb.component.mjs +0 -228
- package/esm2022/lib/breadcrumb/soho-breadcrumb.module.mjs +0 -28
- package/esm2022/lib/bullet/index.mjs +0 -3
- package/esm2022/lib/bullet/soho-bullet.component.mjs +0 -116
- package/esm2022/lib/bullet/soho-bullet.module.mjs +0 -24
- package/esm2022/lib/busyindicator/index.mjs +0 -3
- package/esm2022/lib/busyindicator/soho-busyindicator.directive.mjs +0 -253
- package/esm2022/lib/busyindicator/soho-busyindicator.module.mjs +0 -27
- package/esm2022/lib/button/index.mjs +0 -3
- package/esm2022/lib/button/soho-button.component.mjs +0 -529
- package/esm2022/lib/button/soho-button.module.mjs +0 -28
- package/esm2022/lib/buttonset/index.mjs +0 -3
- package/esm2022/lib/buttonset/soho-buttonset.component.mjs +0 -274
- package/esm2022/lib/buttonset/soho-buttonset.module.mjs +0 -24
- package/esm2022/lib/calendar/index.mjs +0 -3
- package/esm2022/lib/calendar/soho-calendar.component.mjs +0 -694
- package/esm2022/lib/calendar/soho-calendar.module.mjs +0 -32
- package/esm2022/lib/card/index.mjs +0 -3
- package/esm2022/lib/card/soho-card.component.mjs +0 -456
- package/esm2022/lib/card/soho-card.module.mjs +0 -42
- package/esm2022/lib/chart/index.mjs +0 -3
- package/esm2022/lib/chart/soho-chart.component.mjs +0 -197
- package/esm2022/lib/chart/soho-chart.module.mjs +0 -24
- package/esm2022/lib/checkbox/index.mjs +0 -3
- package/esm2022/lib/checkbox/soho-checkbox.component.mjs +0 -104
- package/esm2022/lib/checkbox/soho-checkbox.module.mjs +0 -24
- package/esm2022/lib/circlepager/index.mjs +0 -3
- package/esm2022/lib/circlepager/soho-circlepager.component.mjs +0 -101
- package/esm2022/lib/circlepager/soho-circlepager.module.mjs +0 -24
- package/esm2022/lib/colorpicker/index.mjs +0 -3
- package/esm2022/lib/colorpicker/soho-colorpicker.component.mjs +0 -399
- package/esm2022/lib/colorpicker/soho-colorpicker.module.mjs +0 -24
- package/esm2022/lib/column/index.mjs +0 -3
- package/esm2022/lib/column/soho-column.component.mjs +0 -273
- package/esm2022/lib/column/soho-column.module.mjs +0 -24
- package/esm2022/lib/context-menu/index.mjs +0 -3
- package/esm2022/lib/context-menu/soho-context-menu.directive.mjs +0 -401
- package/esm2022/lib/context-menu/soho-context-menu.module.mjs +0 -42
- package/esm2022/lib/contextual-action-panel/index.mjs +0 -4
- package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.module.mjs +0 -25
- package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.ref.mjs +0 -488
- package/esm2022/lib/contextual-action-panel/soho-contextual-action-panel.service.mjs +0 -50
- package/esm2022/lib/datagrid/index.mjs +0 -4
- package/esm2022/lib/datagrid/soho-datagrid.component.mjs +0 -3149
- package/esm2022/lib/datagrid/soho-datagrid.module.mjs +0 -24
- package/esm2022/lib/datagrid/soho-datagrid.service.mjs +0 -6
- package/esm2022/lib/datepicker/index.mjs +0 -3
- package/esm2022/lib/datepicker/soho-datepicker.component.mjs +0 -684
- package/esm2022/lib/datepicker/soho-datepicker.module.mjs +0 -24
- package/esm2022/lib/drag/index.mjs +0 -3
- package/esm2022/lib/drag/soho-drag.directive.mjs +0 -53
- package/esm2022/lib/drag/soho-drag.module.mjs +0 -22
- package/esm2022/lib/dropdown/index.mjs +0 -3
- package/esm2022/lib/dropdown/soho-dropdown.component.mjs +0 -781
- package/esm2022/lib/dropdown/soho-dropdown.module.mjs +0 -24
- package/esm2022/lib/editor/index.mjs +0 -3
- package/esm2022/lib/editor/soho-editor.component.mjs +0 -344
- package/esm2022/lib/editor/soho-editor.module.mjs +0 -22
- package/esm2022/lib/emptymessage/index.mjs +0 -3
- package/esm2022/lib/emptymessage/soho-emptymessage.directive.mjs +0 -198
- package/esm2022/lib/emptymessage/soho-emptymessage.module.mjs +0 -24
- package/esm2022/lib/error/index.mjs +0 -3
- package/esm2022/lib/error/soho-error.directive.mjs +0 -113
- package/esm2022/lib/error/soho-error.module.mjs +0 -26
- package/esm2022/lib/expandablearea/index.mjs +0 -3
- package/esm2022/lib/expandablearea/soho-expandablearea.component.mjs +0 -311
- package/esm2022/lib/expandablearea/soho-expandablearea.module.mjs +0 -34
- package/esm2022/lib/field-filter/index.mjs +0 -3
- package/esm2022/lib/field-filter/soho-field-filter.directive.mjs +0 -145
- package/esm2022/lib/field-filter/soho-field-filter.module.mjs +0 -24
- package/esm2022/lib/field-options/index.mjs +0 -3
- package/esm2022/lib/field-options/soho-field-options.directive.mjs +0 -44
- package/esm2022/lib/field-options/soho-field-options.module.mjs +0 -24
- package/esm2022/lib/fileupload/index.mjs +0 -3
- package/esm2022/lib/fileupload/soho-fileupload.component.mjs +0 -131
- package/esm2022/lib/fileupload/soho-fileupload.module.mjs +0 -22
- package/esm2022/lib/fileupload-advanced/index.mjs +0 -3
- package/esm2022/lib/fileupload-advanced/soho-fileupload-advanced.component.mjs +0 -452
- package/esm2022/lib/fileupload-advanced/soho-fileupload-advanced.module.mjs +0 -22
- package/esm2022/lib/form-compact/index.mjs +0 -3
- package/esm2022/lib/form-compact/soho-form-compact.component.mjs +0 -56
- package/esm2022/lib/form-compact/soho-form-compact.module.mjs +0 -24
- package/esm2022/lib/header/index.mjs +0 -3
- package/esm2022/lib/header/soho-header.component.mjs +0 -70
- package/esm2022/lib/header/soho-header.module.mjs +0 -24
- package/esm2022/lib/hierarchy/index.mjs +0 -3
- package/esm2022/lib/hierarchy/soho-hierarchy.component.mjs +0 -142
- package/esm2022/lib/hierarchy/soho-hierarchy.module.mjs +0 -28
- package/esm2022/lib/homepage/index.mjs +0 -8
- package/esm2022/lib/homepage/soho-homepage-sizer.directive.mjs +0 -38
- package/esm2022/lib/homepage/soho-homepage.component.mjs +0 -268
- package/esm2022/lib/homepage/soho-homepage.module.mjs +0 -47
- package/esm2022/lib/homepage/soho-widget-content.component.mjs +0 -20
- package/esm2022/lib/homepage/soho-widget-header.component.mjs +0 -20
- package/esm2022/lib/homepage/soho-widget-title.component.mjs +0 -25
- package/esm2022/lib/homepage/soho-widget.component.mjs +0 -148
- package/esm2022/lib/hyperlink/index.mjs +0 -3
- package/esm2022/lib/hyperlink/soho-hyperlink.component.mjs +0 -103
- package/esm2022/lib/hyperlink/soho-hyperlink.module.mjs +0 -28
- package/esm2022/lib/icon/index.mjs +0 -11
- package/esm2022/lib/icon/soho-icon.component.mjs +0 -98
- package/esm2022/lib/icon/soho-icon.module.mjs +0 -64
- package/esm2022/lib/icon/soho-icons-app.component.mjs +0 -17
- package/esm2022/lib/icon/soho-icons-empty-new.component.mjs +0 -20
- package/esm2022/lib/icon/soho-icons-empty-uplift.component.mjs +0 -17
- package/esm2022/lib/icon/soho-icons-empty.component.mjs +0 -29
- package/esm2022/lib/icon/soho-icons-extended.component.mjs +0 -25
- package/esm2022/lib/icon/soho-icons-new.component.mjs +0 -17
- package/esm2022/lib/icon/soho-icons-uplift.component.mjs +0 -17
- package/esm2022/lib/icon/soho-icons.component.mjs +0 -17
- package/esm2022/lib/index.mjs +0 -97
- package/esm2022/lib/input/index.mjs +0 -3
- package/esm2022/lib/input/soho-input.component.mjs +0 -143
- package/esm2022/lib/input/soho-input.module.mjs +0 -24
- package/esm2022/lib/input-validate/index.mjs +0 -3
- package/esm2022/lib/input-validate/soho-input-validate.directive.mjs +0 -125
- package/esm2022/lib/input-validate/soho-input-validate.module.mjs +0 -24
- package/esm2022/lib/label/index.mjs +0 -3
- package/esm2022/lib/label/soho-label.directive.mjs +0 -60
- package/esm2022/lib/label/soho-label.module.mjs +0 -24
- package/esm2022/lib/line/index.mjs +0 -3
- package/esm2022/lib/line/soho-line.component.mjs +0 -226
- package/esm2022/lib/line/soho-line.module.mjs +0 -24
- package/esm2022/lib/listbuilder/index.mjs +0 -3
- package/esm2022/lib/listbuilder/soho-listbuilder.component.mjs +0 -234
- package/esm2022/lib/listbuilder/soho-listbuilder.module.mjs +0 -40
- package/esm2022/lib/listview/index.mjs +0 -3
- package/esm2022/lib/listview/soho-listview.component.mjs +0 -574
- package/esm2022/lib/listview/soho-listview.module.mjs +0 -48
- package/esm2022/lib/locale/index.mjs +0 -5
- package/esm2022/lib/locale/soho-formatdate.pipe.mjs +0 -27
- package/esm2022/lib/locale/soho-formatnumber.pipe.mjs +0 -27
- package/esm2022/lib/locale/soho-locale.module.mjs +0 -30
- package/esm2022/lib/locale/soho-translate.pipe.mjs +0 -31
- package/esm2022/lib/lookup/index.mjs +0 -3
- package/esm2022/lib/lookup/soho-lookup.component.mjs +0 -804
- package/esm2022/lib/lookup/soho-lookup.module.mjs +0 -24
- package/esm2022/lib/mask/index.mjs +0 -3
- package/esm2022/lib/mask/soho-mask.directive.mjs +0 -440
- package/esm2022/lib/mask/soho-mask.module.mjs +0 -24
- package/esm2022/lib/masthead/index.mjs +0 -3
- package/esm2022/lib/masthead/soho-masthead.component.mjs +0 -22
- package/esm2022/lib/masthead/soho-masthead.module.mjs +0 -24
- package/esm2022/lib/menu-button/index.mjs +0 -3
- package/esm2022/lib/menu-button/soho-menu-button.component.mjs +0 -300
- package/esm2022/lib/menu-button/soho-menu-button.module.mjs +0 -28
- package/esm2022/lib/message/index.mjs +0 -4
- package/esm2022/lib/message/soho-message.module.mjs +0 -25
- package/esm2022/lib/message/soho-message.ref.mjs +0 -259
- package/esm2022/lib/message/soho-message.service.mjs +0 -88
- package/esm2022/lib/modal-dialog/index.mjs +0 -4
- package/esm2022/lib/modal-dialog/soho-modal-dialog.module.mjs +0 -25
- package/esm2022/lib/modal-dialog/soho-modal-dialog.ref.mjs +0 -679
- package/esm2022/lib/modal-dialog/soho-modal-dialog.service.mjs +0 -69
- package/esm2022/lib/module-nav/index.mjs +0 -3
- package/esm2022/lib/module-nav/soho-module-nav.component.mjs +0 -249
- package/esm2022/lib/module-nav/soho-module-nav.module.mjs +0 -27
- package/esm2022/lib/module-nav-container/index.mjs +0 -3
- package/esm2022/lib/module-nav-container/soho-module-nav-container.component.mjs +0 -16
- package/esm2022/lib/module-nav-container/soho-module-nav-container.module.mjs +0 -24
- package/esm2022/lib/module-nav-settings/index.mjs +0 -3
- package/esm2022/lib/module-nav-settings/soho-module-nav-settings.component.mjs +0 -87
- package/esm2022/lib/module-nav-settings/soho-module-nav-settings.module.mjs +0 -24
- package/esm2022/lib/module-nav-switcher/index.mjs +0 -3
- package/esm2022/lib/module-nav-switcher/soho-module-nav-switcher.component.mjs +0 -251
- package/esm2022/lib/module-nav-switcher/soho-module-nav-switcher.module.mjs +0 -28
- package/esm2022/lib/monthview/index.mjs +0 -3
- package/esm2022/lib/monthview/soho-monthview.component.mjs +0 -639
- package/esm2022/lib/monthview/soho-monthview.module.mjs +0 -24
- package/esm2022/lib/notification/index.mjs +0 -3
- package/esm2022/lib/notification/soho-notification.module.mjs +0 -23
- package/esm2022/lib/notification/soho-notification.service.mjs +0 -40
- package/esm2022/lib/notification-badge/index.mjs +0 -3
- package/esm2022/lib/notification-badge/soho-notification-badge.component.mjs +0 -84
- package/esm2022/lib/notification-badge/soho-notification-badge.module.mjs +0 -24
- package/esm2022/lib/pager/index.mjs +0 -3
- package/esm2022/lib/pager/soho-pager.module.mjs +0 -28
- package/esm2022/lib/pager/soho-standalone-pager.component.mjs +0 -238
- package/esm2022/lib/personalize/index.mjs +0 -3
- package/esm2022/lib/personalize/soho-personalize.directive.mjs +0 -139
- package/esm2022/lib/personalize/soho-personalize.module.mjs +0 -24
- package/esm2022/lib/pie/index.mjs +0 -3
- package/esm2022/lib/pie/soho-pie.component.mjs +0 -281
- package/esm2022/lib/pie/soho-pie.module.mjs +0 -24
- package/esm2022/lib/popdown/index.mjs +0 -4
- package/esm2022/lib/popdown/soho-popdown-contents.component.mjs +0 -20
- package/esm2022/lib/popdown/soho-popdown.directive.mjs +0 -76
- package/esm2022/lib/popdown/soho-popdown.module.mjs +0 -27
- package/esm2022/lib/popupmenu/index.mjs +0 -3
- package/esm2022/lib/popupmenu/soho-popupmenu.component.mjs +0 -499
- package/esm2022/lib/popupmenu/soho-popupmenu.module.mjs +0 -42
- package/esm2022/lib/progress/index.mjs +0 -3
- package/esm2022/lib/progress/soho-progress.component.mjs +0 -66
- package/esm2022/lib/progress/soho-progress.module.mjs +0 -21
- package/esm2022/lib/radar/index.mjs +0 -3
- package/esm2022/lib/radar/soho-radar.component.mjs +0 -315
- package/esm2022/lib/radar/soho-radar.module.mjs +0 -24
- package/esm2022/lib/radiobutton/index.mjs +0 -3
- package/esm2022/lib/radiobutton/soho-radiobutton.component.mjs +0 -94
- package/esm2022/lib/radiobutton/soho-radiobutton.module.mjs +0 -22
- package/esm2022/lib/rating/index.mjs +0 -3
- package/esm2022/lib/rating/soho-rating.component.mjs +0 -64
- package/esm2022/lib/rating/soho-rating.module.mjs +0 -24
- package/esm2022/lib/renderLoop/index.mjs +0 -3
- package/esm2022/lib/renderLoop/soho-render-loop.module.mjs +0 -25
- package/esm2022/lib/renderLoop/soho-render-loop.service.mjs +0 -34
- package/esm2022/lib/searchfield/index.mjs +0 -3
- package/esm2022/lib/searchfield/soho-searchfield.component.mjs +0 -169
- package/esm2022/lib/searchfield/soho-searchfield.module.mjs +0 -24
- package/esm2022/lib/slider/index.mjs +0 -3
- package/esm2022/lib/slider/soho-slider.component.mjs +0 -267
- package/esm2022/lib/slider/soho-slider.module.mjs +0 -24
- package/esm2022/lib/soho-components.module.mjs +0 -666
- package/esm2022/lib/sparkline/index.mjs +0 -3
- package/esm2022/lib/sparkline/soho-sparkline.component.mjs +0 -140
- package/esm2022/lib/sparkline/soho-sparkline.module.mjs +0 -24
- package/esm2022/lib/spinbox/index.mjs +0 -3
- package/esm2022/lib/spinbox/soho-spinbox.component.mjs +0 -190
- package/esm2022/lib/spinbox/soho-spinbox.module.mjs +0 -21
- package/esm2022/lib/splitter/index.mjs +0 -3
- package/esm2022/lib/splitter/soho-splitter.component.mjs +0 -154
- package/esm2022/lib/splitter/soho-splitter.module.mjs +0 -24
- package/esm2022/lib/stepchart/index.mjs +0 -3
- package/esm2022/lib/stepchart/soho-stepchart.component.mjs +0 -168
- package/esm2022/lib/stepchart/soho-stepchart.module.mjs +0 -24
- package/esm2022/lib/stepprocess/index.mjs +0 -3
- package/esm2022/lib/stepprocess/soho-stepprocess.component.mjs +0 -412
- package/esm2022/lib/stepprocess/soho-stepprocess.module.mjs +0 -72
- package/esm2022/lib/swaplist/index.mjs +0 -4
- package/esm2022/lib/swaplist/soho-swaplist.component.mjs +0 -427
- package/esm2022/lib/swaplist/soho-swaplist.module.mjs +0 -32
- package/esm2022/lib/swaplist/soho-swaplist.service.mjs +0 -6
- package/esm2022/lib/swipe-action/index.mjs +0 -3
- package/esm2022/lib/swipe-action/soho-swipe-action.component.mjs +0 -53
- package/esm2022/lib/swipe-action/soho-swipe-action.module.mjs +0 -24
- package/esm2022/lib/tabs/index.mjs +0 -3
- package/esm2022/lib/tabs/soho-tabs.component.mjs +0 -987
- package/esm2022/lib/tabs/soho-tabs.module.mjs +0 -54
- package/esm2022/lib/tag/index.mjs +0 -3
- package/esm2022/lib/tag/soho-tag.component.mjs +0 -260
- package/esm2022/lib/tag/soho-tag.module.mjs +0 -28
- package/esm2022/lib/textarea/index.mjs +0 -3
- package/esm2022/lib/textarea/soho-textarea.component.mjs +0 -271
- package/esm2022/lib/textarea/soho-textarea.module.mjs +0 -22
- package/esm2022/lib/timepicker/index.mjs +0 -3
- package/esm2022/lib/timepicker/soho-timepicker.component.mjs +0 -349
- package/esm2022/lib/timepicker/soho-timepicker.module.mjs +0 -24
- package/esm2022/lib/toast/index.mjs +0 -3
- package/esm2022/lib/toast/soho-toast.module.mjs +0 -23
- package/esm2022/lib/toast/soho-toast.service.mjs +0 -20
- package/esm2022/lib/toolbar/index.mjs +0 -3
- package/esm2022/lib/toolbar/soho-toolbar.component.mjs +0 -609
- package/esm2022/lib/toolbar/soho-toolbar.module.mjs +0 -58
- package/esm2022/lib/toolbar-flex/index.mjs +0 -3
- package/esm2022/lib/toolbar-flex/soho-toolbar-flex.component.mjs +0 -507
- package/esm2022/lib/toolbar-flex/soho-toolbar-flex.module.mjs +0 -46
- package/esm2022/lib/tooltip/index.mjs +0 -3
- package/esm2022/lib/tooltip/soho-tooltip.directive.mjs +0 -272
- package/esm2022/lib/tooltip/soho-tooltip.module.mjs +0 -22
- package/esm2022/lib/trackdirty/index.mjs +0 -3
- package/esm2022/lib/trackdirty/soho-trackdirty.directive.mjs +0 -79
- package/esm2022/lib/trackdirty/soho-trackdirty.module.mjs +0 -24
- package/esm2022/lib/tree/index.mjs +0 -4
- package/esm2022/lib/tree/soho-tree.component.mjs +0 -454
- package/esm2022/lib/tree/soho-tree.module.mjs +0 -24
- package/esm2022/lib/tree/soho-tree.service.mjs +0 -9
- package/esm2022/lib/treemap/index.mjs +0 -3
- package/esm2022/lib/treemap/soho-treemap.component.mjs +0 -153
- package/esm2022/lib/treemap/soho-treemap.module.mjs +0 -24
- package/esm2022/lib/utils/argument.helper.mjs +0 -28
- package/esm2022/lib/utils/base-control-value-accessor.mjs +0 -74
- package/esm2022/lib/utils/deprecated-event-emitter.mjs +0 -14
- package/esm2022/lib/utils/index.mjs +0 -6
- package/esm2022/lib/utils/soho-icon.utils.mjs +0 -21
- package/esm2022/lib/utils/test.helper.mjs +0 -18
- package/esm2022/lib/version/index.mjs +0 -2
- package/esm2022/lib/version/version-initializer.module.mjs +0 -32
- package/esm2022/lib/version/version-initializer.service.mjs +0 -28
- package/esm2022/lib/week-view/index.mjs +0 -3
- package/esm2022/lib/week-view/soho-week-view.component.mjs +0 -602
- package/esm2022/lib/week-view/soho-week-view.module.mjs +0 -24
- package/esm2022/lib/wizard/index.mjs +0 -9
- package/esm2022/lib/wizard/soho-wizard-buttonbar.component.mjs +0 -115
- package/esm2022/lib/wizard/soho-wizard-header.component.mjs +0 -34
- package/esm2022/lib/wizard/soho-wizard-page.component.mjs +0 -61
- package/esm2022/lib/wizard/soho-wizard-pages.component.mjs +0 -19
- package/esm2022/lib/wizard/soho-wizard-tick.component.mjs +0 -87
- package/esm2022/lib/wizard/soho-wizard.component.mjs +0 -308
- package/esm2022/lib/wizard/soho-wizard.module.mjs +0 -53
- package/esm2022/public_api.mjs +0 -5
- package/fesm2022/ids-enterprise-ng.mjs +0 -31614
- package/fesm2022/ids-enterprise-ng.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/about/soho-about.module.d.ts +0 -7
- package/lib/about/soho-about.ref.d.ts +0 -156
- package/lib/about/soho-about.service.d.ts +0 -27
- package/lib/accordion/soho-accordion-header.component.d.ts +0 -24
- package/lib/accordion/soho-accordion-pane.component.d.ts +0 -6
- package/lib/accordion/soho-accordion.component.d.ts +0 -195
- package/lib/accordion/soho-accordion.module.d.ts +0 -10
- package/lib/actionsheet/soho-actionsheet.component.d.ts +0 -52
- package/lib/actionsheet/soho-actionsheet.module.d.ts +0 -8
- package/lib/alert/soho-alert.directive.d.ts +0 -86
- package/lib/alert/soho-alert.module.d.ts +0 -8
- package/lib/application-menu/soho-application-menu.component.d.ts +0 -122
- package/lib/application-menu/soho-application-menu.module.d.ts +0 -8
- package/lib/arrange/soho-arrange.directive.d.ts +0 -19
- package/lib/arrange/soho-arrange.module.d.ts +0 -8
- package/lib/autocomplete/soho-autocomplete.component.d.ts +0 -76
- package/lib/autocomplete/soho-autocomplete.module.d.ts +0 -8
- package/lib/bar/soho-bar.component.d.ts +0 -77
- package/lib/bar/soho-bar.module.d.ts +0 -8
- package/lib/blockgrid/soho-blockgrid.component.d.ts +0 -53
- package/lib/blockgrid/soho-blockgrid.module.d.ts +0 -8
- package/lib/breadcrumb/soho-breadcrumb.component.d.ts +0 -80
- package/lib/breadcrumb/soho-breadcrumb.module.d.ts +0 -8
- package/lib/bullet/soho-bullet.component.d.ts +0 -34
- package/lib/bullet/soho-bullet.module.d.ts +0 -8
- package/lib/busyindicator/soho-busyindicator.directive.d.ts +0 -97
- package/lib/busyindicator/soho-busyindicator.module.d.ts +0 -8
- package/lib/button/soho-button.component.d.ts +0 -163
- package/lib/button/soho-button.module.d.ts +0 -9
- package/lib/buttonset/soho-buttonset.component.d.ts +0 -106
- package/lib/buttonset/soho-buttonset.module.d.ts +0 -8
- package/lib/calendar/soho-calendar.component.d.ts +0 -225
- package/lib/calendar/soho-calendar.module.d.ts +0 -8
- package/lib/card/soho-card.component.d.ts +0 -108
- package/lib/card/soho-card.module.d.ts +0 -8
- package/lib/chart/soho-chart.component.d.ts +0 -40
- package/lib/chart/soho-chart.module.d.ts +0 -8
- package/lib/checkbox/soho-checkbox.component.d.ts +0 -50
- package/lib/checkbox/soho-checkbox.module.d.ts +0 -8
- package/lib/circlepager/soho-circlepager.component.d.ts +0 -28
- package/lib/circlepager/soho-circlepager.module.d.ts +0 -8
- package/lib/colorpicker/soho-colorpicker.component.d.ts +0 -133
- package/lib/colorpicker/soho-colorpicker.module.d.ts +0 -8
- package/lib/column/soho-column.component.d.ts +0 -71
- package/lib/column/soho-column.module.d.ts +0 -8
- package/lib/context-menu/soho-context-menu.directive.d.ts +0 -108
- package/lib/context-menu/soho-context-menu.module.d.ts +0 -8
- package/lib/contextual-action-panel/soho-contextual-action-panel.module.d.ts +0 -7
- package/lib/contextual-action-panel/soho-contextual-action-panel.ref.d.ts +0 -268
- package/lib/contextual-action-panel/soho-contextual-action-panel.service.d.ts +0 -44
- package/lib/datagrid/index.d.ts +0 -3
- package/lib/datagrid/soho-datagrid.component.d.ts +0 -1126
- package/lib/datagrid/soho-datagrid.module.d.ts +0 -8
- package/lib/datagrid/soho-datagrid.service.d.ts +0 -18
- package/lib/datepicker/soho-datepicker.component.d.ts +0 -220
- package/lib/datepicker/soho-datepicker.module.d.ts +0 -8
- package/lib/drag/soho-drag.directive.d.ts +0 -20
- package/lib/drag/soho-drag.module.d.ts +0 -8
- package/lib/dropdown/soho-dropdown.component.d.ts +0 -271
- package/lib/dropdown/soho-dropdown.module.d.ts +0 -8
- package/lib/editor/soho-editor.component.d.ts +0 -97
- package/lib/editor/soho-editor.module.d.ts +0 -8
- package/lib/emptymessage/soho-emptymessage.directive.d.ts +0 -48
- package/lib/emptymessage/soho-emptymessage.module.d.ts +0 -8
- package/lib/error/soho-error.directive.d.ts +0 -69
- package/lib/error/soho-error.module.d.ts +0 -8
- package/lib/expandablearea/soho-expandablearea.component.d.ts +0 -102
- package/lib/expandablearea/soho-expandablearea.module.d.ts +0 -8
- package/lib/field-filter/soho-field-filter.directive.d.ts +0 -40
- package/lib/field-filter/soho-field-filter.module.d.ts +0 -8
- package/lib/field-options/soho-field-options.directive.d.ts +0 -19
- package/lib/field-options/soho-field-options.module.d.ts +0 -8
- package/lib/fileupload/soho-fileupload.component.d.ts +0 -37
- package/lib/fileupload/soho-fileupload.module.d.ts +0 -8
- package/lib/fileupload-advanced/soho-fileupload-advanced.component.d.ts +0 -173
- package/lib/fileupload-advanced/soho-fileupload-advanced.module.d.ts +0 -8
- package/lib/form-compact/soho-form-compact.component.d.ts +0 -20
- package/lib/form-compact/soho-form-compact.module.d.ts +0 -8
- package/lib/header/soho-header.component.d.ts +0 -26
- package/lib/header/soho-header.module.d.ts +0 -8
- package/lib/hierarchy/soho-hierarchy.component.d.ts +0 -57
- package/lib/hierarchy/soho-hierarchy.module.d.ts +0 -8
- package/lib/homepage/soho-homepage-sizer.directive.d.ts +0 -17
- package/lib/homepage/soho-homepage.component.d.ts +0 -86
- package/lib/homepage/soho-homepage.module.d.ts +0 -13
- package/lib/homepage/soho-widget-content.component.d.ts +0 -6
- package/lib/homepage/soho-widget-header.component.d.ts +0 -6
- package/lib/homepage/soho-widget-title.component.d.ts +0 -7
- package/lib/homepage/soho-widget.component.d.ts +0 -34
- package/lib/hyperlink/soho-hyperlink.component.d.ts +0 -34
- package/lib/hyperlink/soho-hyperlink.module.d.ts +0 -9
- package/lib/icon/soho-icon.component.d.ts +0 -33
- package/lib/icon/soho-icon.module.d.ts +0 -16
- package/lib/icon/soho-icons-app.component.d.ts +0 -6
- package/lib/icon/soho-icons-empty-new.component.d.ts +0 -9
- package/lib/icon/soho-icons-empty-uplift.component.d.ts +0 -6
- package/lib/icon/soho-icons-empty.component.d.ts +0 -16
- package/lib/icon/soho-icons-extended.component.d.ts +0 -11
- package/lib/icon/soho-icons-new.component.d.ts +0 -6
- package/lib/icon/soho-icons-uplift.component.d.ts +0 -6
- package/lib/icon/soho-icons.component.d.ts +0 -6
- package/lib/index.d.ts +0 -96
- package/lib/input/soho-input.component.d.ts +0 -66
- package/lib/input/soho-input.module.d.ts +0 -8
- package/lib/input-validate/soho-input-validate.directive.d.ts +0 -48
- package/lib/input-validate/soho-input-validate.module.d.ts +0 -8
- package/lib/label/soho-label.directive.d.ts +0 -37
- package/lib/label/soho-label.module.d.ts +0 -8
- package/lib/line/soho-line.component.d.ts +0 -47
- package/lib/line/soho-line.module.d.ts +0 -8
- package/lib/listbuilder/index.d.ts +0 -2
- package/lib/listbuilder/soho-listbuilder.component.d.ts +0 -73
- package/lib/listbuilder/soho-listbuilder.module.d.ts +0 -12
- package/lib/listview/soho-listview.component.d.ts +0 -240
- package/lib/listview/soho-listview.module.d.ts +0 -9
- package/lib/locale/soho-formatdate.pipe.d.ts +0 -15
- package/lib/locale/soho-formatnumber.pipe.d.ts +0 -15
- package/lib/locale/soho-locale.module.d.ts +0 -9
- package/lib/locale/soho-translate.pipe.d.ts +0 -16
- package/lib/lookup/soho-lookup.component.d.ts +0 -246
- package/lib/lookup/soho-lookup.module.d.ts +0 -8
- package/lib/mask/soho-mask.directive.d.ts +0 -137
- package/lib/mask/soho-mask.module.d.ts +0 -8
- package/lib/masthead/soho-masthead.component.d.ts +0 -7
- package/lib/masthead/soho-masthead.module.d.ts +0 -8
- package/lib/menu-button/soho-menu-button.component.d.ts +0 -69
- package/lib/menu-button/soho-menu-button.module.d.ts +0 -9
- package/lib/message/soho-message.module.d.ts +0 -7
- package/lib/message/soho-message.ref.d.ts +0 -168
- package/lib/message/soho-message.service.d.ts +0 -70
- package/lib/modal-dialog/soho-modal-dialog.module.d.ts +0 -7
- package/lib/modal-dialog/soho-modal-dialog.ref.d.ts +0 -404
- package/lib/modal-dialog/soho-modal-dialog.service.d.ts +0 -56
- package/lib/module-nav/soho-module-nav.component.d.ts +0 -67
- package/lib/module-nav/soho-module-nav.module.d.ts +0 -8
- package/lib/module-nav-container/soho-module-nav-container.component.d.ts +0 -9
- package/lib/module-nav-container/soho-module-nav-container.module.d.ts +0 -8
- package/lib/module-nav-settings/soho-module-nav-settings.component.d.ts +0 -32
- package/lib/module-nav-settings/soho-module-nav-settings.module.d.ts +0 -8
- package/lib/module-nav-switcher/soho-module-nav-switcher.component.d.ts +0 -65
- package/lib/module-nav-switcher/soho-module-nav-switcher.module.d.ts +0 -9
- package/lib/monthview/soho-monthview.component.d.ts +0 -194
- package/lib/monthview/soho-monthview.module.d.ts +0 -8
- package/lib/notification/soho-notification.module.d.ts +0 -7
- package/lib/notification/soho-notification.service.d.ts +0 -27
- package/lib/notification-badge/soho-notification-badge.component.d.ts +0 -21
- package/lib/notification-badge/soho-notification-badge.module.d.ts +0 -8
- package/lib/pager/soho-pager.module.d.ts +0 -9
- package/lib/pager/soho-standalone-pager.component.d.ts +0 -45
- package/lib/personalize/soho-personalize.directive.d.ts +0 -53
- package/lib/personalize/soho-personalize.module.d.ts +0 -8
- package/lib/pie/soho-pie.component.d.ts +0 -70
- package/lib/pie/soho-pie.module.d.ts +0 -8
- package/lib/popdown/soho-popdown-contents.component.d.ts +0 -6
- package/lib/popdown/soho-popdown.directive.d.ts +0 -24
- package/lib/popdown/soho-popdown.module.d.ts +0 -9
- package/lib/popupmenu/soho-popupmenu.component.d.ts +0 -141
- package/lib/popupmenu/soho-popupmenu.module.d.ts +0 -8
- package/lib/progress/soho-progress.component.d.ts +0 -20
- package/lib/progress/soho-progress.module.d.ts +0 -7
- package/lib/radar/soho-radar.component.d.ts +0 -77
- package/lib/radar/soho-radar.module.d.ts +0 -8
- package/lib/radiobutton/soho-radiobutton.component.d.ts +0 -55
- package/lib/radiobutton/soho-radiobutton.module.d.ts +0 -8
- package/lib/rating/soho-rating.component.d.ts +0 -25
- package/lib/rating/soho-rating.module.d.ts +0 -8
- package/lib/renderLoop/soho-render-loop.module.d.ts +0 -7
- package/lib/renderLoop/soho-render-loop.service.d.ts +0 -18
- package/lib/searchfield/soho-searchfield.component.d.ts +0 -56
- package/lib/searchfield/soho-searchfield.module.d.ts +0 -7
- package/lib/slider/soho-slider.component.d.ts +0 -87
- package/lib/slider/soho-slider.module.d.ts +0 -8
- package/lib/soho-components.module.d.ts +0 -100
- package/lib/sparkline/soho-sparkline.component.d.ts +0 -39
- package/lib/sparkline/soho-sparkline.module.d.ts +0 -8
- package/lib/spinbox/soho-spinbox.component.d.ts +0 -58
- package/lib/spinbox/soho-spinbox.module.d.ts +0 -7
- package/lib/splitter/index.d.ts +0 -2
- package/lib/splitter/soho-splitter.component.d.ts +0 -40
- package/lib/splitter/soho-splitter.module.d.ts +0 -8
- package/lib/stepchart/soho-stepchart.component.d.ts +0 -45
- package/lib/stepchart/soho-stepchart.module.d.ts +0 -8
- package/lib/stepprocess/soho-stepprocess.component.d.ts +0 -122
- package/lib/stepprocess/soho-stepprocess.module.d.ts +0 -11
- package/lib/swaplist/index.d.ts +0 -3
- package/lib/swaplist/soho-swaplist.component.d.ts +0 -187
- package/lib/swaplist/soho-swaplist.module.d.ts +0 -9
- package/lib/swaplist/soho-swaplist.service.d.ts +0 -10
- package/lib/swipe-action/soho-swipe-action.component.d.ts +0 -16
- package/lib/swipe-action/soho-swipe-action.module.d.ts +0 -8
- package/lib/tabs/soho-tabs.component.d.ts +0 -380
- package/lib/tabs/soho-tabs.module.d.ts +0 -8
- package/lib/tag/index.d.ts +0 -2
- package/lib/tag/soho-tag.component.d.ts +0 -120
- package/lib/tag/soho-tag.module.d.ts +0 -8
- package/lib/textarea/soho-textarea.component.d.ts +0 -74
- package/lib/textarea/soho-textarea.module.d.ts +0 -8
- package/lib/timepicker/soho-timepicker.component.d.ts +0 -121
- package/lib/timepicker/soho-timepicker.module.d.ts +0 -8
- package/lib/toast/soho-toast.module.d.ts +0 -7
- package/lib/toast/soho-toast.service.d.ts +0 -13
- package/lib/toolbar/soho-toolbar.component.d.ts +0 -188
- package/lib/toolbar/soho-toolbar.module.d.ts +0 -8
- package/lib/toolbar-flex/soho-toolbar-flex.component.d.ts +0 -159
- package/lib/toolbar-flex/soho-toolbar-flex.module.d.ts +0 -8
- package/lib/tooltip/soho-tooltip.directive.d.ts +0 -118
- package/lib/tooltip/soho-tooltip.module.d.ts +0 -8
- package/lib/trackdirty/soho-trackdirty.directive.d.ts +0 -32
- package/lib/trackdirty/soho-trackdirty.module.d.ts +0 -8
- package/lib/tree/soho-tree.component.d.ts +0 -186
- package/lib/tree/soho-tree.module.d.ts +0 -8
- package/lib/tree/soho-tree.service.d.ts +0 -25
- package/lib/treemap/soho-treemap.component.d.ts +0 -40
- package/lib/treemap/soho-treemap.module.d.ts +0 -8
- package/lib/utils/argument.helper.d.ts +0 -9
- package/lib/utils/base-control-value-accessor.d.ts +0 -47
- package/lib/utils/deprecated-event-emitter.d.ts +0 -8
- package/lib/utils/soho-icon.utils.d.ts +0 -14
- package/lib/utils/test.helper.d.ts +0 -14
- package/lib/version/version-initializer.module.d.ts +0 -7
- package/lib/version/version-initializer.service.d.ts +0 -16
- package/lib/week-view/soho-week-view.component.d.ts +0 -184
- package/lib/week-view/soho-week-view.module.d.ts +0 -8
- package/lib/wizard/index.d.ts +0 -7
- package/lib/wizard/soho-wizard-buttonbar.component.d.ts +0 -18
- package/lib/wizard/soho-wizard-header.component.d.ts +0 -18
- package/lib/wizard/soho-wizard-page.component.d.ts +0 -44
- package/lib/wizard/soho-wizard-pages.component.d.ts +0 -11
- package/lib/wizard/soho-wizard-tick.component.d.ts +0 -52
- package/lib/wizard/soho-wizard.component.d.ts +0 -157
- package/lib/wizard/soho-wizard.module.d.ts +0 -14
- package/public_api.d.ts +0 -1
- /package/{lib/about/index.d.ts → src/lib/about/index.ts} +0 -0
- /package/{lib/accordion/index.d.ts → src/lib/accordion/index.ts} +0 -0
- /package/{lib/actionsheet/index.d.ts → src/lib/actionsheet/index.ts} +0 -0
- /package/{lib/alert/index.d.ts → src/lib/alert/index.ts} +0 -0
- /package/{lib/application-menu/index.d.ts → src/lib/application-menu/index.ts} +0 -0
- /package/{lib/arrange/index.d.ts → src/lib/arrange/index.ts} +0 -0
- /package/{lib/autocomplete/index.d.ts → src/lib/autocomplete/index.ts} +0 -0
- /package/{lib/bar/index.d.ts → src/lib/bar/index.ts} +0 -0
- /package/{lib/blockgrid/index.d.ts → src/lib/blockgrid/index.ts} +0 -0
- /package/{lib/breadcrumb/index.d.ts → src/lib/breadcrumb/index.ts} +0 -0
- /package/{lib/bullet/index.d.ts → src/lib/bullet/index.ts} +0 -0
- /package/{lib/busyindicator/index.d.ts → src/lib/busyindicator/index.ts} +0 -0
- /package/{lib/button/index.d.ts → src/lib/button/index.ts} +0 -0
- /package/{lib/buttonset/index.d.ts → src/lib/buttonset/index.ts} +0 -0
- /package/{lib/calendar/index.d.ts → src/lib/calendar/index.ts} +0 -0
- /package/{lib/card/index.d.ts → src/lib/card/index.ts} +0 -0
- /package/{lib/chart/index.d.ts → src/lib/chart/index.ts} +0 -0
- /package/{lib/checkbox/index.d.ts → src/lib/checkbox/index.ts} +0 -0
- /package/{lib/circlepager/index.d.ts → src/lib/circlepager/index.ts} +0 -0
- /package/{lib/colorpicker/index.d.ts → src/lib/colorpicker/index.ts} +0 -0
- /package/{lib/column/index.d.ts → src/lib/column/index.ts} +0 -0
- /package/{lib/context-menu/index.d.ts → src/lib/context-menu/index.ts} +0 -0
- /package/{lib/contextual-action-panel/index.d.ts → src/lib/contextual-action-panel/index.ts} +0 -0
- /package/{lib/datepicker/index.d.ts → src/lib/datepicker/index.ts} +0 -0
- /package/{lib/drag/index.d.ts → src/lib/drag/index.ts} +0 -0
- /package/{lib/dropdown/index.d.ts → src/lib/dropdown/index.ts} +0 -0
- /package/{lib/editor/index.d.ts → src/lib/editor/index.ts} +0 -0
- /package/{lib/emptymessage/index.d.ts → src/lib/emptymessage/index.ts} +0 -0
- /package/{lib/error/index.d.ts → src/lib/error/index.ts} +0 -0
- /package/{lib/expandablearea/index.d.ts → src/lib/expandablearea/index.ts} +0 -0
- /package/{lib/field-filter/index.d.ts → src/lib/field-filter/index.ts} +0 -0
- /package/{lib/field-options/index.d.ts → src/lib/field-options/index.ts} +0 -0
- /package/{lib/fileupload/index.d.ts → src/lib/fileupload/index.ts} +0 -0
- /package/{lib/fileupload-advanced/index.d.ts → src/lib/fileupload-advanced/index.ts} +0 -0
- /package/{lib/form-compact/index.d.ts → src/lib/form-compact/index.ts} +0 -0
- /package/{lib/header/index.d.ts → src/lib/header/index.ts} +0 -0
- /package/{lib/hierarchy/index.d.ts → src/lib/hierarchy/index.ts} +0 -0
- /package/{lib/homepage/index.d.ts → src/lib/homepage/index.ts} +0 -0
- /package/{lib/hyperlink/index.d.ts → src/lib/hyperlink/index.ts} +0 -0
- /package/{lib/icon/index.d.ts → src/lib/icon/index.ts} +0 -0
- /package/{lib/input/index.d.ts → src/lib/input/index.ts} +0 -0
- /package/{lib/input-validate/index.d.ts → src/lib/input-validate/index.ts} +0 -0
- /package/{lib/label/index.d.ts → src/lib/label/index.ts} +0 -0
- /package/{lib/line/index.d.ts → src/lib/line/index.ts} +0 -0
- /package/{lib/listview/index.d.ts → src/lib/listview/index.ts} +0 -0
- /package/{lib/locale/index.d.ts → src/lib/locale/index.ts} +0 -0
- /package/{lib/lookup/index.d.ts → src/lib/lookup/index.ts} +0 -0
- /package/{lib/mask/index.d.ts → src/lib/mask/index.ts} +0 -0
- /package/{lib/masthead/index.d.ts → src/lib/masthead/index.ts} +0 -0
- /package/{lib/menu-button/index.d.ts → src/lib/menu-button/index.ts} +0 -0
- /package/{lib/message/index.d.ts → src/lib/message/index.ts} +0 -0
- /package/{lib/modal-dialog/index.d.ts → src/lib/modal-dialog/index.ts} +0 -0
- /package/{lib/module-nav/index.d.ts → src/lib/module-nav/index.ts} +0 -0
- /package/{lib/module-nav-container/index.d.ts → src/lib/module-nav-container/index.ts} +0 -0
- /package/{lib/module-nav-settings/index.d.ts → src/lib/module-nav-settings/index.ts} +0 -0
- /package/{lib/module-nav-switcher/index.d.ts → src/lib/module-nav-switcher/index.ts} +0 -0
- /package/{lib/monthview/index.d.ts → src/lib/monthview/index.ts} +0 -0
- /package/{lib/notification/index.d.ts → src/lib/notification/index.ts} +0 -0
- /package/{lib/notification-badge/index.d.ts → src/lib/notification-badge/index.ts} +0 -0
- /package/{lib/pager/index.d.ts → src/lib/pager/index.ts} +0 -0
- /package/{lib/personalize/index.d.ts → src/lib/personalize/index.ts} +0 -0
- /package/{lib/pie/index.d.ts → src/lib/pie/index.ts} +0 -0
- /package/{lib/popdown/index.d.ts → src/lib/popdown/index.ts} +0 -0
- /package/{lib/popupmenu/index.d.ts → src/lib/popupmenu/index.ts} +0 -0
- /package/{lib/progress/index.d.ts → src/lib/progress/index.ts} +0 -0
- /package/{lib/radar/index.d.ts → src/lib/radar/index.ts} +0 -0
- /package/{lib/radiobutton/index.d.ts → src/lib/radiobutton/index.ts} +0 -0
- /package/{lib/rating/index.d.ts → src/lib/rating/index.ts} +0 -0
- /package/{lib/renderLoop/index.d.ts → src/lib/renderLoop/index.ts} +0 -0
- /package/{lib/searchfield/index.d.ts → src/lib/searchfield/index.ts} +0 -0
- /package/{lib/slider/index.d.ts → src/lib/slider/index.ts} +0 -0
- /package/{lib/sparkline/index.d.ts → src/lib/sparkline/index.ts} +0 -0
- /package/{lib/spinbox/index.d.ts → src/lib/spinbox/index.ts} +0 -0
- /package/{lib/stepchart/index.d.ts → src/lib/stepchart/index.ts} +0 -0
- /package/{lib/stepprocess/index.d.ts → src/lib/stepprocess/index.ts} +0 -0
- /package/{lib/swipe-action/index.d.ts → src/lib/swipe-action/index.ts} +0 -0
- /package/{lib/tabs/index.d.ts → src/lib/tabs/index.ts} +0 -0
- /package/{lib/textarea/index.d.ts → src/lib/textarea/index.ts} +0 -0
- /package/{lib/timepicker/index.d.ts → src/lib/timepicker/index.ts} +0 -0
- /package/{lib/toast/index.d.ts → src/lib/toast/index.ts} +0 -0
- /package/{lib/toolbar/index.d.ts → src/lib/toolbar/index.ts} +0 -0
- /package/{lib/toolbar-flex/index.d.ts → src/lib/toolbar-flex/index.ts} +0 -0
- /package/{lib/tooltip/index.d.ts → src/lib/tooltip/index.ts} +0 -0
- /package/{lib/trackdirty/index.d.ts → src/lib/trackdirty/index.ts} +0 -0
- /package/{lib/tree/index.d.ts → src/lib/tree/index.ts} +0 -0
- /package/{lib/treemap/index.d.ts → src/lib/treemap/index.ts} +0 -0
- /package/{lib/utils/index.d.ts → src/lib/utils/index.ts} +0 -0
- /package/{lib/version/index.d.ts → src/lib/version/index.ts} +0 -0
- /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
|
+
};
|
package/ng-package.json
ADDED
|
@@ -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.
|
|
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.
|
|
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
|
-
"
|
|
31
|
-
|
|
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 -->
|