@colijnit/corecomponents_v12 12.2.21 → 12.2.22
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/bundles/colijnit-corecomponents_v12.umd.js +14029 -0
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -0
- package/colijnit-corecomponents_v12.d.ts +43 -0
- package/colijnit-corecomponents_v12.metadata.json +1 -0
- package/esm2015/colijnit-corecomponents_v12.js +44 -0
- package/esm2015/lib/components/article-tile/article-tile.component.js +80 -0
- package/esm2015/lib/components/article-tile/article-tile.module.js +35 -0
- package/esm2015/lib/components/base/base-input.component.js +834 -0
- package/esm2015/lib/components/base/base.module.js +22 -0
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +103 -0
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.module.js +21 -0
- package/esm2015/lib/components/base/dialog-base.component.js +6 -0
- package/esm2015/lib/components/base-input-date-picker/base-input-date-picker.directive.js +25 -0
- package/esm2015/lib/components/button/button.component.js +79 -0
- package/esm2015/lib/components/button/button.module.js +19 -0
- package/esm2015/lib/components/calendar/calendar-template.component.js +342 -0
- package/esm2015/lib/components/calendar/calendar.component.js +45 -0
- package/esm2015/lib/components/calendar/calendar.module.js +28 -0
- package/esm2015/lib/components/card/card.component.js +72 -0
- package/esm2015/lib/components/card/card.module.js +35 -0
- package/esm2015/lib/components/carousel/carousel.component.js +130 -0
- package/esm2015/lib/components/carousel/carousel.module.js +32 -0
- package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +315 -0
- package/esm2015/lib/components/carousel-3d/carousel-3d.module.js +19 -0
- package/esm2015/lib/components/carousel-3d/carouselItem.js +54 -0
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.component.js +87 -0
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.module.js +19 -0
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +113 -0
- package/esm2015/lib/components/co-dialog/co-dialog.module.js +19 -0
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +51 -0
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.module.js +17 -0
- package/esm2015/lib/components/collapsible/collapsible.component.js +92 -0
- package/esm2015/lib/components/collapsible/collapsible.module.js +19 -0
- package/esm2015/lib/components/color-picker/color-picker.component.js +41 -0
- package/esm2015/lib/components/color-picker/color-picker.module.js +21 -0
- package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +79 -0
- package/esm2015/lib/components/core-dialog/core-dialog.module.js +39 -0
- package/esm2015/lib/components/core-dialog/core-dialog.service.js +67 -0
- package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +93 -0
- package/esm2015/lib/components/double-calendar/double-calendar.component.js +80 -0
- package/esm2015/lib/components/double-calendar/double-calendar.module.js +25 -0
- package/esm2015/lib/components/filter-item/filter-item-viewmodel.js +13 -0
- package/esm2015/lib/components/filter-item/filter-item.component.js +646 -0
- package/esm2015/lib/components/filter-item/filter-item.module.js +43 -0
- package/esm2015/lib/components/filter-item/filter-viewmodel.js +11 -0
- package/esm2015/lib/components/form/form.component.js +184 -0
- package/esm2015/lib/components/form/form.module.js +23 -0
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.component.js +57 -0
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.module.js +23 -0
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +28 -0
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +19 -0
- package/esm2015/lib/components/icon/icon-cache.service.js +52 -0
- package/esm2015/lib/components/icon/icon.component.js +48 -0
- package/esm2015/lib/components/icon/icon.module.js +25 -0
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +64 -0
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +23 -0
- package/esm2015/lib/components/image/image.component.js +42 -0
- package/esm2015/lib/components/image/image.module.js +14 -0
- package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +79 -0
- package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +19 -0
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +91 -0
- package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +26 -0
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +134 -0
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +27 -0
- package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +314 -0
- package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +23 -0
- package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +84 -0
- package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +19 -0
- package/esm2015/lib/components/input-scanner/bar-code-scanner.js +23 -0
- package/esm2015/lib/components/input-scanner/input-scanner.component.js +69 -0
- package/esm2015/lib/components/input-scanner/input-scanner.module.js +21 -0
- package/esm2015/lib/components/input-scanner/scanner.service.js +28 -0
- package/esm2015/lib/components/input-search/input-search.component.js +76 -0
- package/esm2015/lib/components/input-search/input-search.module.js +21 -0
- package/esm2015/lib/components/input-text/input-text.component.js +224 -0
- package/esm2015/lib/components/input-text/input-text.module.js +33 -0
- package/esm2015/lib/components/input-textarea/input-textarea.component.js +78 -0
- package/esm2015/lib/components/input-textarea/input-textarea.module.js +27 -0
- package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +7 -0
- package/esm2015/lib/components/level-indicator/level-indicator.component.js +36 -0
- package/esm2015/lib/components/level-indicator/level-indicator.module.js +15 -0
- package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +112 -0
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +242 -0
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +233 -0
- package/esm2015/lib/components/list-of-values/list-of-values.module.js +38 -0
- package/esm2015/lib/components/loader/loader.component.js +84 -0
- package/esm2015/lib/components/loader/loader.module.js +19 -0
- package/esm2015/lib/components/pagination/paginate.pipe.js +99 -0
- package/esm2015/lib/components/pagination/pagination-instance.js +2 -0
- package/esm2015/lib/components/pagination/pagination.component.js +126 -0
- package/esm2015/lib/components/pagination/pagination.module.js +28 -0
- package/esm2015/lib/components/pagination/pagination.service.js +88 -0
- package/esm2015/lib/components/pagination-bar/pagination-bar.component.js +151 -0
- package/esm2015/lib/components/pagination-bar/pagination-bar.module.js +19 -0
- package/esm2015/lib/components/popup/const/popup-window-token.js +3 -0
- package/esm2015/lib/components/popup/interface/popup-button.js +8 -0
- package/esm2015/lib/components/popup/interface/popup-close-event.js +2 -0
- package/esm2015/lib/components/popup/interface/popup-settings.js +42 -0
- package/esm2015/lib/components/popup/interface/popup.js +2 -0
- package/esm2015/lib/components/popup/model/popup-button-globals.js +11 -0
- package/esm2015/lib/components/popup/model/popup-window.js +38 -0
- package/esm2015/lib/components/popup/popup-buttons.component.js +53 -0
- package/esm2015/lib/components/popup/popup-message-display.component.js +47 -0
- package/esm2015/lib/components/popup/popup-window-shell.component.js +159 -0
- package/esm2015/lib/components/popup/popup.module.js +49 -0
- package/esm2015/lib/components/popup/service/popup-shower.service.js +90 -0
- package/esm2015/lib/components/popup/service/prompt.service.js +127 -0
- package/esm2015/lib/components/popup/text-input-popup.component.js +36 -0
- package/esm2015/lib/components/responsive-text/responsive-text.component.js +24 -0
- package/esm2015/lib/components/responsive-text/responsive-text.module.js +19 -0
- package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +164 -0
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +172 -0
- package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +111 -0
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +465 -0
- package/esm2015/lib/components/simple-grid/simple-grid.module.js +41 -0
- package/esm2015/lib/components/tile/tile.component.js +73 -0
- package/esm2015/lib/components/tile/tile.module.js +23 -0
- package/esm2015/lib/components/tile-select/tile-select.component.js +36 -0
- package/esm2015/lib/components/tile-select/tile-select.module.js +21 -0
- package/esm2015/lib/components/tooltip/tooltip.component.js +77 -0
- package/esm2015/lib/components/tooltip/tooltip.module.js +19 -0
- package/esm2015/lib/components/validation-error/validation-error.component.js +38 -0
- package/esm2015/lib/components/validation-error/validation-error.module.js +25 -0
- package/esm2015/lib/components/view-mode-buttons/content-view-mode.enum.js +11 -0
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +61 -0
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.module.js +21 -0
- package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +4 -0
- package/esm2015/lib/core/constant/java-max-int.js +2 -0
- package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +45 -0
- package/esm2015/lib/core/decorator/input-boolean.decorator.js +34 -0
- package/esm2015/lib/core/enum/co-direction.js +9 -0
- package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +7 -0
- package/esm2015/lib/core/enum/co-document-type.enum.js +11 -0
- package/esm2015/lib/core/enum/co-orientation.js +17 -0
- package/esm2015/lib/core/enum/core-components-icon.enum.js +300 -0
- package/esm2015/lib/core/enum/file-type-internal.enum.js +17 -0
- package/esm2015/lib/core/enum/file-type.enum.js +11 -0
- package/esm2015/lib/core/enum/filterItem-mode.enum.js +43 -0
- package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +8 -0
- package/esm2015/lib/core/enum/keyboard-code.enum.js +74 -0
- package/esm2015/lib/core/enum/keyboard-key.enum.js +76 -0
- package/esm2015/lib/core/enum/object-right-type.enum.js +7 -0
- package/esm2015/lib/core/enum/popup-button-type.enum.js +12 -0
- package/esm2015/lib/core/enum/popup-type.enum.js +11 -0
- package/esm2015/lib/core/enum/table-name.enum.js +81 -0
- package/esm2015/lib/core/function/any-nill.function.js +6 -0
- package/esm2015/lib/core/function/is-nill.function.js +5 -0
- package/esm2015/lib/core/function/none-nill.function.js +17 -0
- package/esm2015/lib/core/function/not-nill.function.js +5 -0
- package/esm2015/lib/core/model/bounds-constrained-number-value.js +171 -0
- package/esm2015/lib/core/model/check-precision-and-scale-result.js +2 -0
- package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +2 -0
- package/esm2015/lib/core/model/co-document-right.bo.js +3 -0
- package/esm2015/lib/core/model/co-document.bo.js +121 -0
- package/esm2015/lib/core/model/core-components-icon-svg.js +299 -0
- package/esm2015/lib/core/model/element-position.js +10 -0
- package/esm2015/lib/core/model/event/string-prompt-result-event.js +8 -0
- package/esm2015/lib/core/service/form-input-user-change-listener.service.js +25 -0
- package/esm2015/lib/core/service/form-master.service.js +102 -0
- package/esm2015/lib/core/service/ng-zone-wrapper.service.js +20 -0
- package/esm2015/lib/core/utils/array-utils.js +264 -0
- package/esm2015/lib/core/utils/browser-utils.js +100 -0
- package/esm2015/lib/core/utils/direction-enum-utils.js +14 -0
- package/esm2015/lib/core/utils/event-utils.js +53 -0
- package/esm2015/lib/core/utils/file-utils.js +267 -0
- package/esm2015/lib/core/utils/number-utils.js +309 -0
- package/esm2015/lib/core/utils/object-utils.js +186 -0
- package/esm2015/lib/core/utils/string-utils.js +94 -0
- package/esm2015/lib/core/validator/email.validator.js +6 -0
- package/esm2015/lib/core/validator/equal.validator.js +11 -0
- package/esm2015/lib/core/validator/max-string-length.validator.js +10 -0
- package/esm2015/lib/core/validator/password.validator.js +31 -0
- package/esm2015/lib/core/validator/precision-scale.validator.js +11 -0
- package/esm2015/lib/core/validator/required.validator.js +5 -0
- package/esm2015/lib/directives/clickoutside/click-outside-master.service.js +57 -0
- package/esm2015/lib/directives/clickoutside/click-outside.directive.js +71 -0
- package/esm2015/lib/directives/clickoutside/clickoutside.module.js +19 -0
- package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +53 -0
- package/esm2015/lib/directives/observe-visibility/observe-visibility.module.js +15 -0
- package/esm2015/lib/directives/overlay/overlay-parent.directive.js +19 -0
- package/esm2015/lib/directives/overlay/overlay.directive.js +161 -0
- package/esm2015/lib/directives/overlay/overlay.module.js +18 -0
- package/esm2015/lib/directives/ripple/ripple-ref.js +26 -0
- package/esm2015/lib/directives/ripple/ripple-renderer.js +160 -0
- package/esm2015/lib/directives/ripple/ripple.directive.js +80 -0
- package/esm2015/lib/directives/ripple/ripple.module.js +24 -0
- package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +108 -0
- package/esm2015/lib/directives/ripple/scrollable.directive.js +40 -0
- package/esm2015/lib/directives/ripple/viewport-ruler.service.js +73 -0
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +158 -0
- package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +19 -0
- package/esm2015/lib/directives/stopclick/stop-click.directive.js +38 -0
- package/esm2015/lib/directives/stopclick/stop-click.module.js +15 -0
- package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +68 -0
- package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +15 -0
- package/esm2015/lib/directives/tooltip/tooltip-directive.module.js +19 -0
- package/esm2015/lib/directives/tooltip/tooltip.directive.js +78 -0
- package/esm2015/lib/interfaces/dialog-response.interface.js +2 -0
- package/esm2015/lib/interfaces/scanner-input.interface.js +2 -0
- package/esm2015/lib/interfaces/screen-config-adapter-component-interface-name.js +4 -0
- package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +2 -0
- package/esm2015/lib/model/enum/app-button-type.enum.js +11 -0
- package/esm2015/lib/model/enum/app-popup-type.enum.js +8 -0
- package/esm2015/lib/pipes/append.pipe.js +17 -0
- package/esm2015/lib/pipes/append.pipe.module.js +15 -0
- package/esm2015/lib/pipes/filter.pipe.js +16 -0
- package/esm2015/lib/pipes/filter.pipe.module.js +15 -0
- package/esm2015/lib/pipes/prepend.pipe.js +17 -0
- package/esm2015/lib/pipes/prepend.pipe.module.js +15 -0
- package/esm2015/lib/pipes/price-display-pipe.module.js +15 -0
- package/esm2015/lib/pipes/price-display.pipe.js +20 -0
- package/esm2015/lib/service/base-module-screen-config.service.js +205 -0
- package/esm2015/lib/service/base-module.service.js +42 -0
- package/esm2015/lib/service/color-sequence.service.js +23 -0
- package/esm2015/lib/service/overlay.service.js +73 -0
- package/esm2015/lib/translation/core-components-translation.module.js +29 -0
- package/esm2015/lib/translation/core-components-translation.service.js +17 -0
- package/esm2015/lib/translation/core-dictionary.service.js +29 -0
- package/esm2015/lib/translation/core-localize.pipe.js +26 -0
- package/esm2015/public-api.js +130 -0
- package/fesm2015/colijnit-corecomponents_v12.js +13366 -0
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -0
- package/lib/components/article-tile/article-tile.component.d.ts +22 -0
- package/lib/components/article-tile/article-tile.module.d.ts +2 -0
- package/lib/components/base/base-input.component.d.ts +182 -0
- package/lib/components/base/base.module.d.ts +2 -0
- package/lib/components/base/commit-buttons/commit-buttons.component.d.ts +21 -0
- package/lib/components/base/commit-buttons/commit-buttons.module.d.ts +2 -0
- package/lib/components/base/dialog-base.component.d.ts +4 -0
- package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +15 -0
- package/lib/components/button/button.component.d.ts +29 -0
- package/lib/components/button/button.module.d.ts +2 -0
- package/lib/components/calendar/calendar-template.component.d.ts +60 -0
- package/lib/components/calendar/calendar.component.d.ts +13 -0
- package/lib/components/calendar/calendar.module.d.ts +2 -0
- package/lib/components/card/card.component.d.ts +23 -0
- package/lib/components/card/card.module.d.ts +2 -0
- package/lib/components/carousel/carousel.component.d.ts +23 -0
- package/lib/components/carousel/carousel.module.d.ts +6 -0
- package/lib/components/carousel-3d/carousel-3d.component.d.ts +55 -0
- package/lib/components/carousel-3d/carousel-3d.module.d.ts +2 -0
- package/lib/components/carousel-3d/carouselItem.d.ts +13 -0
- package/lib/components/checkmark-overlay/checkmark-overlay.component.d.ts +17 -0
- package/lib/components/checkmark-overlay/checkmark-overlay.module.d.ts +2 -0
- package/lib/components/co-dialog/co-dialog.component.d.ts +23 -0
- package/lib/components/co-dialog/co-dialog.module.d.ts +2 -0
- package/lib/components/co-dialog-wizard/co-dialog-wizard.component.d.ts +9 -0
- package/lib/components/co-dialog-wizard/co-dialog-wizard.module.d.ts +2 -0
- package/lib/components/collapsible/collapsible.component.d.ts +22 -0
- package/lib/components/collapsible/collapsible.module.d.ts +2 -0
- package/lib/components/color-picker/color-picker.component.d.ts +6 -0
- package/lib/components/color-picker/color-picker.module.d.ts +2 -0
- package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +20 -0
- package/lib/components/core-dialog/core-dialog.module.d.ts +4 -0
- package/lib/components/core-dialog/core-dialog.service.d.ts +15 -0
- package/lib/components/core-dialog/core-dynamic-component.service.d.ts +12 -0
- package/lib/components/double-calendar/double-calendar.component.d.ts +18 -0
- package/lib/components/double-calendar/double-calendar.module.d.ts +2 -0
- package/lib/components/filter-item/filter-item-viewmodel.d.ts +9 -0
- package/lib/components/filter-item/filter-item.component.d.ts +80 -0
- package/lib/components/filter-item/filter-item.module.d.ts +2 -0
- package/lib/components/filter-item/filter-viewmodel.d.ts +8 -0
- package/lib/components/form/form.component.d.ts +39 -0
- package/lib/components/form/form.module.d.ts +2 -0
- package/lib/components/grid-toolbar/grid-toolbar.component.d.ts +19 -0
- package/lib/components/grid-toolbar/grid-toolbar.module.d.ts +2 -0
- package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +8 -0
- package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +2 -0
- package/lib/components/icon/icon-cache.service.d.ts +20 -0
- package/lib/components/icon/icon.component.d.ts +17 -0
- package/lib/components/icon/icon.module.d.ts +2 -0
- package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +21 -0
- package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +2 -0
- package/lib/components/image/image.component.d.ts +20 -0
- package/lib/components/image/image.module.d.ts +2 -0
- package/lib/components/input-checkbox/input-checkbox.component.d.ts +24 -0
- package/lib/components/input-checkbox/input-checkbox.module.d.ts +2 -0
- package/lib/components/input-date-picker/input-date-picker.component.d.ts +12 -0
- package/lib/components/input-date-picker/input-date-picker.module.d.ts +2 -0
- package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +20 -0
- package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +2 -0
- package/lib/components/input-number-picker/input-number-picker.component.d.ts +73 -0
- package/lib/components/input-number-picker/input-number-picker.module.d.ts +2 -0
- package/lib/components/input-radio-button/input-radio-button.component.d.ts +19 -0
- package/lib/components/input-radio-button/input-radio-button.module.d.ts +2 -0
- package/lib/components/input-scanner/bar-code-scanner.d.ts +7 -0
- package/lib/components/input-scanner/input-scanner.component.d.ts +23 -0
- package/lib/components/input-scanner/input-scanner.module.d.ts +2 -0
- package/lib/components/input-scanner/scanner.service.d.ts +11 -0
- package/lib/components/input-search/input-search.component.d.ts +18 -0
- package/lib/components/input-search/input-search.module.d.ts +2 -0
- package/lib/components/input-text/input-text.component.d.ts +62 -0
- package/lib/components/input-text/input-text.module.d.ts +2 -0
- package/lib/components/input-textarea/input-textarea.component.d.ts +19 -0
- package/lib/components/input-textarea/input-textarea.module.d.ts +2 -0
- package/lib/components/level-indicator/level-indicator-level.enum.d.ts +5 -0
- package/lib/components/level-indicator/level-indicator.component.d.ts +10 -0
- package/lib/components/level-indicator/level-indicator.module.d.ts +2 -0
- package/lib/components/list-of-values/list-of-values-multiselect-popup.component.d.ts +25 -0
- package/lib/components/list-of-values/list-of-values-popup.component.d.ts +47 -0
- package/lib/components/list-of-values/list-of-values.component.d.ts +37 -0
- package/lib/components/list-of-values/list-of-values.module.d.ts +2 -0
- package/lib/components/loader/loader.component.d.ts +3 -0
- package/lib/components/loader/loader.module.d.ts +2 -0
- package/lib/components/pagination/paginate.pipe.d.ts +15 -0
- package/lib/components/pagination/pagination-instance.d.ts +14 -0
- package/lib/components/pagination/pagination.component.d.ts +38 -0
- package/lib/components/pagination/pagination.module.d.ts +2 -0
- package/lib/components/pagination/pagination.service.d.ts +24 -0
- package/lib/components/pagination-bar/pagination-bar.component.d.ts +33 -0
- package/lib/components/pagination-bar/pagination-bar.module.d.ts +2 -0
- package/lib/components/popup/const/popup-window-token.d.ts +3 -0
- package/lib/components/popup/interface/popup-button.d.ts +8 -0
- package/lib/components/popup/interface/popup-close-event.d.ts +5 -0
- package/lib/components/popup/interface/popup-settings.d.ts +21 -0
- package/lib/components/popup/interface/popup.d.ts +9 -0
- package/lib/components/popup/model/popup-button-globals.d.ts +9 -0
- package/lib/components/popup/model/popup-window.d.ts +21 -0
- package/lib/components/popup/popup-buttons.component.d.ts +13 -0
- package/lib/components/popup/popup-message-display.component.d.ts +12 -0
- package/lib/components/popup/popup-window-shell.component.d.ts +42 -0
- package/lib/components/popup/popup.module.d.ts +4 -0
- package/lib/components/popup/service/popup-shower.service.d.ts +17 -0
- package/lib/components/popup/service/prompt.service.d.ts +17 -0
- package/lib/components/popup/text-input-popup.component.d.ts +12 -0
- package/lib/components/responsive-text/responsive-text.component.d.ts +4 -0
- package/lib/components/responsive-text/responsive-text.module.d.ts +2 -0
- package/lib/components/simple-grid/base-simple-grid.component.d.ts +52 -0
- package/lib/components/simple-grid/simple-grid-cell.component.d.ts +30 -0
- package/lib/components/simple-grid/simple-grid-column.directive.d.ts +42 -0
- package/lib/components/simple-grid/simple-grid.component.d.ts +64 -0
- package/lib/components/simple-grid/simple-grid.module.d.ts +2 -0
- package/lib/components/tile/tile.component.d.ts +16 -0
- package/lib/components/tile/tile.module.d.ts +2 -0
- package/lib/components/tile-select/tile-select.component.d.ts +8 -0
- package/lib/components/tile-select/tile-select.module.d.ts +2 -0
- package/lib/components/tooltip/tooltip.component.d.ts +18 -0
- package/lib/components/tooltip/tooltip.module.d.ts +2 -0
- package/lib/components/validation-error/validation-error.component.d.ts +12 -0
- package/lib/components/validation-error/validation-error.module.d.ts +2 -0
- package/lib/components/view-mode-buttons/content-view-mode.enum.d.ts +8 -0
- package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +17 -0
- package/lib/components/view-mode-buttons/view-mode-buttons.module.d.ts +2 -0
- package/lib/core/constant/default-upper-bound-for-range-components.d.ts +2 -0
- package/lib/core/constant/java-max-int.d.ts +1 -0
- package/lib/core/constant/number-inputs-key-down-white-list.d.ts +2 -0
- package/lib/core/decorator/input-boolean.decorator.d.ts +8 -0
- package/lib/core/enum/co-direction.d.ts +6 -0
- package/lib/core/enum/co-document-image-display-kind.enum.d.ts +5 -0
- package/lib/core/enum/co-document-type.enum.d.ts +5 -0
- package/lib/core/enum/co-orientation.d.ts +6 -0
- package/lib/core/enum/core-components-icon.enum.d.ts +298 -0
- package/lib/core/enum/file-type-internal.enum.d.ts +15 -0
- package/lib/core/enum/file-type.enum.d.ts +5 -0
- package/lib/core/enum/filterItem-mode.enum.d.ts +15 -0
- package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +5 -0
- package/lib/core/enum/keyboard-code.enum.d.ts +71 -0
- package/lib/core/enum/keyboard-key.enum.d.ts +70 -0
- package/lib/core/enum/object-right-type.enum.d.ts +5 -0
- package/lib/core/enum/popup-button-type.enum.d.ts +9 -0
- package/lib/core/enum/popup-type.enum.d.ts +9 -0
- package/lib/core/enum/table-name.enum.d.ts +79 -0
- package/lib/core/function/any-nill.function.d.ts +1 -0
- package/lib/core/function/is-nill.function.d.ts +1 -0
- package/lib/core/function/none-nill.function.d.ts +1 -0
- package/lib/core/function/not-nill.function.d.ts +1 -0
- package/lib/core/model/bounds-constrained-number-value.d.ts +46 -0
- package/lib/core/model/check-precision-and-scale-result.d.ts +4 -0
- package/lib/core/model/check-within-stepped-bounds-result.d.ts +8 -0
- package/lib/core/model/co-document-right.bo.d.ts +6 -0
- package/lib/core/model/co-document.bo.d.ts +61 -0
- package/lib/core/model/core-components-icon-svg.d.ts +4 -0
- package/lib/core/model/element-position.d.ts +7 -0
- package/lib/core/model/event/string-prompt-result-event.d.ts +6 -0
- package/lib/core/service/form-input-user-change-listener.service.d.ts +10 -0
- package/lib/core/service/form-master.service.d.ts +26 -0
- package/lib/core/service/ng-zone-wrapper.service.d.ts +6 -0
- package/lib/core/utils/array-utils.d.ts +85 -0
- package/lib/core/utils/browser-utils.d.ts +15 -0
- package/lib/core/utils/direction-enum-utils.d.ts +5 -0
- package/lib/core/utils/event-utils.d.ts +12 -0
- package/lib/core/utils/file-utils.d.ts +29 -0
- package/lib/core/utils/number-utils.d.ts +89 -0
- package/lib/core/utils/object-utils.d.ts +31 -0
- package/lib/core/utils/string-utils.d.ts +25 -0
- package/lib/core/validator/email.validator.d.ts +2 -0
- package/lib/core/validator/equal.validator.d.ts +2 -0
- package/lib/core/validator/max-string-length.validator.d.ts +2 -0
- package/lib/core/validator/password.validator.d.ts +3 -0
- package/lib/core/validator/precision-scale.validator.d.ts +2 -0
- package/lib/core/validator/required.validator.d.ts +2 -0
- package/lib/directives/clickoutside/click-outside-master.service.d.ts +15 -0
- package/lib/directives/clickoutside/click-outside.directive.d.ts +18 -0
- package/lib/directives/clickoutside/clickoutside.module.d.ts +2 -0
- package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +14 -0
- package/lib/directives/observe-visibility/observe-visibility.module.d.ts +2 -0
- package/lib/directives/overlay/overlay-parent.directive.d.ts +6 -0
- package/lib/directives/overlay/overlay.directive.d.ts +25 -0
- package/lib/directives/overlay/overlay.module.d.ts +2 -0
- package/lib/directives/ripple/ripple-ref.d.ts +21 -0
- package/lib/directives/ripple/ripple-renderer.d.ts +56 -0
- package/lib/directives/ripple/ripple.directive.d.ts +56 -0
- package/lib/directives/ripple/ripple.module.d.ts +2 -0
- package/lib/directives/ripple/scroll-dispatcher.service.d.ts +51 -0
- package/lib/directives/ripple/scrollable.directive.d.ts +20 -0
- package/lib/directives/ripple/viewport-ruler.service.d.ts +29 -0
- package/lib/directives/screen-configuration/screen-configuration.directive.d.ts +32 -0
- package/lib/directives/screen-configuration/screen-configuration.module.d.ts +2 -0
- package/lib/directives/stopclick/stop-click.directive.d.ts +10 -0
- package/lib/directives/stopclick/stop-click.module.d.ts +2 -0
- package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +13 -0
- package/lib/directives/template-wrapper/template-wrapper.module.d.ts +2 -0
- package/lib/directives/tooltip/tooltip-directive.module.d.ts +2 -0
- package/lib/directives/tooltip/tooltip.directive.d.ts +20 -0
- package/lib/interfaces/dialog-response.interface.d.ts +6 -0
- package/lib/interfaces/scanner-input.interface.d.ts +3 -0
- package/lib/interfaces/screen-config-adapter-component-interface-name.d.ts +3 -0
- package/lib/interfaces/screen-config-adapter.component.interface.d.ts +10 -0
- package/lib/model/enum/app-button-type.enum.d.ts +9 -0
- package/lib/model/enum/app-popup-type.enum.d.ts +6 -0
- package/lib/pipes/append.pipe.d.ts +4 -0
- package/lib/pipes/append.pipe.module.d.ts +2 -0
- package/lib/pipes/filter.pipe.d.ts +4 -0
- package/lib/pipes/filter.pipe.module.d.ts +2 -0
- package/lib/pipes/prepend.pipe.d.ts +4 -0
- package/lib/pipes/prepend.pipe.module.d.ts +2 -0
- package/lib/pipes/price-display-pipe.module.d.ts +2 -0
- package/lib/pipes/price-display.pipe.d.ts +4 -0
- package/lib/service/base-module-screen-config.service.d.ts +47 -0
- package/lib/service/base-module.service.d.ts +22 -0
- package/lib/service/color-sequence.service.d.ts +4 -0
- package/lib/service/overlay.service.d.ts +13 -0
- package/lib/translation/core-components-translation.module.d.ts +4 -0
- package/lib/translation/core-components-translation.service.d.ts +6 -0
- package/lib/translation/core-dictionary.service.d.ts +12 -0
- package/lib/translation/core-localize.pipe.d.ts +7 -0
- package/package.json +11 -3
- package/public-api.d.ts +126 -0
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -10
- package/src/lib/components/article-tile/article-tile.component.ts +0 -95
- package/src/lib/components/article-tile/article-tile.module.ts +0 -34
- package/src/lib/components/base/base-input.component.ts +0 -988
- package/src/lib/components/base/base.module.ts +0 -22
- package/src/lib/components/base/commit-buttons/commit-buttons.component.ts +0 -120
- package/src/lib/components/base/commit-buttons/commit-buttons.module.ts +0 -19
- package/src/lib/components/base/dialog-base.component.ts +0 -8
- package/src/lib/components/base-input-date-picker/base-input-date-picker.directive.ts +0 -32
- package/src/lib/components/base-input-time/base-input-time-directive.ts +0 -31
- package/src/lib/components/button/button.component.ts +0 -117
- package/src/lib/components/button/button.module.ts +0 -18
- package/src/lib/components/calendar/calendar-template.component.ts +0 -392
- package/src/lib/components/calendar/calendar.component.ts +0 -54
- package/src/lib/components/calendar/calendar.module.ts +0 -26
- package/src/lib/components/card/card.component.ts +0 -94
- package/src/lib/components/card/card.module.ts +0 -34
- package/src/lib/components/carousel/carousel.component.ts +0 -128
- package/src/lib/components/carousel/carousel.module.ts +0 -28
- package/src/lib/components/carousel-3d/carousel-3d.component.ts +0 -392
- package/src/lib/components/carousel-3d/carousel-3d.module.ts +0 -17
- package/src/lib/components/carousel-3d/carouselItem.ts +0 -77
- package/src/lib/components/checkmark-overlay/checkmark-overlay.component.ts +0 -99
- package/src/lib/components/checkmark-overlay/checkmark-overlay.module.ts +0 -18
- package/src/lib/components/co-dialog/animation.ts +0 -2
- package/src/lib/components/co-dialog/co-dialog.component.ts +0 -130
- package/src/lib/components/co-dialog/co-dialog.module.ts +0 -17
- package/src/lib/components/co-dialog-wizard/co-dialog-wizard.component.ts +0 -50
- package/src/lib/components/co-dialog-wizard/co-dialog-wizard.module.ts +0 -15
- package/src/lib/components/collapsible/collapsible.component.ts +0 -114
- package/src/lib/components/collapsible/collapsible.module.ts +0 -17
- package/src/lib/components/color-picker/color-picker.component.ts +0 -40
- package/src/lib/components/color-picker/color-picker.module.ts +0 -19
- package/src/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.ts +0 -86
- package/src/lib/components/core-dialog/core-dialog.module.ts +0 -37
- package/src/lib/components/core-dialog/core-dialog.service.ts +0 -61
- package/src/lib/components/core-dialog/core-dynamic-component.service.ts +0 -101
- package/src/lib/components/double-calendar/double-calendar.component.ts +0 -102
- package/src/lib/components/double-calendar/double-calendar.module.ts +0 -23
- package/src/lib/components/filter-item/filter-item-viewmodel.ts +0 -20
- package/src/lib/components/filter-item/filter-item.component.ts +0 -715
- package/src/lib/components/filter-item/filter-item.module.ts +0 -42
- package/src/lib/components/filter-item/filter-viewmodel.ts +0 -11
- package/src/lib/components/form/form.component.ts +0 -211
- package/src/lib/components/form/form.module.ts +0 -22
- package/src/lib/components/grid-toolbar/grid-toolbar.component.ts +0 -62
- package/src/lib/components/grid-toolbar/grid-toolbar.module.ts +0 -21
- package/src/lib/components/grid-toolbar-button/grid-toolbar-button.component.ts +0 -28
- package/src/lib/components/grid-toolbar-button/grid-toolbar-button.module.ts +0 -17
- package/src/lib/components/icon/icon-cache.service.ts +0 -57
- package/src/lib/components/icon/icon.component.ts +0 -54
- package/src/lib/components/icon/icon.module.ts +0 -24
- package/src/lib/components/icon-collapse-handle/icon-collapse-handle.component.ts +0 -75
- package/src/lib/components/icon-collapse-handle/icon-collapse-handle.module.ts +0 -21
- package/src/lib/components/image/image.component.ts +0 -51
- package/src/lib/components/image/image.module.ts +0 -12
- package/src/lib/components/input-checkbox/input-checkbox.component.ts +0 -85
- package/src/lib/components/input-checkbox/input-checkbox.module.ts +0 -17
- package/src/lib/components/input-date-picker/input-date-picker.component.ts +0 -103
- package/src/lib/components/input-date-picker/input-date-picker.module.ts +0 -24
- package/src/lib/components/input-date-range-picker/input-date-range-picker.component.ts +0 -155
- package/src/lib/components/input-date-range-picker/input-date-range-picker.module.ts +0 -25
- package/src/lib/components/input-number-picker/input-number-picker.component.ts +0 -378
- package/src/lib/components/input-number-picker/input-number-picker.module.ts +0 -20
- package/src/lib/components/input-radio-button/input-radio-button.component.ts +0 -86
- package/src/lib/components/input-radio-button/input-radio-button.module.ts +0 -17
- package/src/lib/components/input-scanner/bar-code-scanner.ts +0 -25
- package/src/lib/components/input-scanner/input-scanner.component.ts +0 -85
- package/src/lib/components/input-scanner/input-scanner.module.ts +0 -19
- package/src/lib/components/input-scanner/scanner.service.ts +0 -28
- package/src/lib/components/input-search/input-search.component.ts +0 -81
- package/src/lib/components/input-search/input-search.module.ts +0 -20
- package/src/lib/components/input-text/input-text.component.ts +0 -276
- package/src/lib/components/input-text/input-text.module.ts +0 -31
- package/src/lib/components/input-textarea/input-textarea.component.ts +0 -81
- package/src/lib/components/input-textarea/input-textarea.module.ts +0 -25
- package/src/lib/components/input-time/input-time.component.ts +0 -72
- package/src/lib/components/input-time/input-time.module.ts +0 -22
- package/src/lib/components/level-indicator/level-indicator-level.enum.ts +0 -5
- package/src/lib/components/level-indicator/level-indicator.component.ts +0 -42
- package/src/lib/components/level-indicator/level-indicator.module.ts +0 -13
- package/src/lib/components/list-of-values/list-of-values-multiselect-popup.component.ts +0 -132
- package/src/lib/components/list-of-values/list-of-values-popup.component.ts +0 -281
- package/src/lib/components/list-of-values/list-of-values.component.ts +0 -257
- package/src/lib/components/list-of-values/list-of-values.module.ts +0 -35
- package/src/lib/components/loader/loader.component.ts +0 -82
- package/src/lib/components/loader/loader.module.ts +0 -17
- package/src/lib/components/pagination/paginate.pipe.ts +0 -116
- package/src/lib/components/pagination/pagination-instance.ts +0 -18
- package/src/lib/components/pagination/pagination.component.ts +0 -160
- package/src/lib/components/pagination/pagination.module.ts +0 -26
- package/src/lib/components/pagination/pagination.service.ts +0 -99
- package/src/lib/components/pagination-bar/pagination-bar.component.ts +0 -178
- package/src/lib/components/pagination-bar/pagination-bar.module.ts +0 -17
- package/src/lib/components/popup/const/popup-window-token.ts +0 -4
- package/src/lib/components/popup/interface/popup-button.ts +0 -14
- package/src/lib/components/popup/interface/popup-close-event.ts +0 -8
- package/src/lib/components/popup/interface/popup-settings.ts +0 -70
- package/src/lib/components/popup/interface/popup.ts +0 -17
- package/src/lib/components/popup/model/popup-button-globals.ts +0 -11
- package/src/lib/components/popup/model/popup-window.ts +0 -51
- package/src/lib/components/popup/popup-buttons.component.ts +0 -61
- package/src/lib/components/popup/popup-message-display.component.ts +0 -49
- package/src/lib/components/popup/popup-window-shell.component.ts +0 -222
- package/src/lib/components/popup/popup.module.ts +0 -48
- package/src/lib/components/popup/service/popup-shower.service.ts +0 -98
- package/src/lib/components/popup/service/prompt.service.ts +0 -127
- package/src/lib/components/popup/text-input-popup.component.ts +0 -36
- package/src/lib/components/responsive-text/responsive-text.component.ts +0 -24
- package/src/lib/components/responsive-text/responsive-text.module.ts +0 -17
- package/src/lib/components/simple-grid/base-simple-grid.component.ts +0 -194
- package/src/lib/components/simple-grid/simple-grid-cell.component.ts +0 -192
- package/src/lib/components/simple-grid/simple-grid-column.directive.ts +0 -143
- package/src/lib/components/simple-grid/simple-grid.component.ts +0 -489
- package/src/lib/components/simple-grid/simple-grid.module.ts +0 -38
- package/src/lib/components/tile/tile.component.ts +0 -71
- package/src/lib/components/tile/tile.module.ts +0 -21
- package/src/lib/components/tile-select/tile-select.component.ts +0 -36
- package/src/lib/components/tile-select/tile-select.module.ts +0 -19
- package/src/lib/components/tooltip/tooltip.component.ts +0 -96
- package/src/lib/components/tooltip/tooltip.module.ts +0 -17
- package/src/lib/components/validation-error/validation-error.component.ts +0 -45
- package/src/lib/components/validation-error/validation-error.module.ts +0 -24
- package/src/lib/components/view-mode-buttons/content-view-mode.enum.ts +0 -9
- package/src/lib/components/view-mode-buttons/view-mode-buttons.component.ts +0 -63
- package/src/lib/components/view-mode-buttons/view-mode-buttons.module.ts +0 -19
- package/src/lib/core/abstract/collection-based-component.ts +0 -488
- package/src/lib/core/config/device-environment.ts +0 -26
- package/src/lib/core/constant/default-upper-bound-for-range-components.ts +0 -4
- package/src/lib/core/constant/java-max-int.ts +0 -1
- package/src/lib/core/constant/number-inputs-key-down-white-list.ts +0 -46
- package/src/lib/core/decorator/input-boolean.decorator.ts +0 -35
- package/src/lib/core/enum/co-direction.ts +0 -7
- package/src/lib/core/enum/co-document-image-display-kind.enum.ts +0 -5
- package/src/lib/core/enum/co-document-type.enum.ts +0 -9
- package/src/lib/core/enum/co-orientation.ts +0 -18
- package/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +0 -10
- package/src/lib/core/enum/color-sequence-name.enum.ts +0 -5
- package/src/lib/core/enum/core-components-icon.enum.ts +0 -299
- package/src/lib/core/enum/file-type-internal.enum.ts +0 -15
- package/src/lib/core/enum/file-type.enum.ts +0 -9
- package/src/lib/core/enum/filterItem-mode.enum.ts +0 -57
- package/src/lib/core/enum/float-label-type.enum.ts +0 -5
- package/src/lib/core/enum/input-number-picker-show-mode.enum.ts +0 -6
- package/src/lib/core/enum/input-text-type.enum.ts +0 -4
- package/src/lib/core/enum/keyboard-code.enum.ts +0 -72
- package/src/lib/core/enum/keyboard-key.enum.ts +0 -78
- package/src/lib/core/enum/logical-operator-type.enum.ts +0 -5
- package/src/lib/core/enum/object-right-type.enum.ts +0 -5
- package/src/lib/core/enum/popup-button-type.enum.ts +0 -10
- package/src/lib/core/enum/popup-type.enum.ts +0 -9
- package/src/lib/core/enum/schedule-view.enum.ts +0 -14
- package/src/lib/core/enum/search-data-type.ts +0 -4
- package/src/lib/core/enum/search-property-state.ts +0 -5
- package/src/lib/core/enum/sort-data-type.ts +0 -6
- package/src/lib/core/enum/sort-direction.ts +0 -9
- package/src/lib/core/enum/table-name.enum.ts +0 -79
- package/src/lib/core/enum/value-comparison-type.ts +0 -11
- package/src/lib/core/function/any-nill.function.ts +0 -6
- package/src/lib/core/function/is-nill.function.ts +0 -4
- package/src/lib/core/function/none-nill.function.ts +0 -16
- package/src/lib/core/function/not-nill.function.ts +0 -4
- package/src/lib/core/interface/search-property.ts +0 -15
- package/src/lib/core/interface/sort-property.ts +0 -16
- package/src/lib/core/model/bounds-constrained-number-value.ts +0 -222
- package/src/lib/core/model/check-precision-and-scale-result.ts +0 -5
- package/src/lib/core/model/check-within-stepped-bounds-result.ts +0 -8
- package/src/lib/core/model/co-document-right.bo.ts +0 -9
- package/src/lib/core/model/co-document.bo.ts +0 -193
- package/src/lib/core/model/color-sequence.ts +0 -39
- package/src/lib/core/model/color.ts +0 -29
- package/src/lib/core/model/core-components-icon-svg.ts +0 -299
- package/src/lib/core/model/element-position.ts +0 -14
- package/src/lib/core/model/event/number-prompt-result-event.ts +0 -10
- package/src/lib/core/model/event/string-prompt-result-event.ts +0 -10
- package/src/lib/core/model/numerical-range.ts +0 -19
- package/src/lib/core/service/form-input-user-change-listener.service.ts +0 -31
- package/src/lib/core/service/form-master.service.ts +0 -119
- package/src/lib/core/service/ng-zone-wrapper.service.ts +0 -15
- package/src/lib/core/utils/array-utils.spec.ts +0 -588
- package/src/lib/core/utils/array-utils.ts +0 -301
- package/src/lib/core/utils/browser-utils.ts +0 -123
- package/src/lib/core/utils/business-object-utils.ts +0 -42
- package/src/lib/core/utils/css-utils.ts +0 -276
- package/src/lib/core/utils/direction-enum-utils.ts +0 -15
- package/src/lib/core/utils/element-ref.utils.ts +0 -12
- package/src/lib/core/utils/event-utils.ts +0 -61
- package/src/lib/core/utils/file-utils.ts +0 -291
- package/src/lib/core/utils/number-utils.spec.ts +0 -657
- package/src/lib/core/utils/number-utils.ts +0 -350
- package/src/lib/core/utils/object-utils.ts +0 -205
- package/src/lib/core/utils/parameter-value-conversion-utils.ts +0 -116
- package/src/lib/core/utils/search-utils.ts +0 -121
- package/src/lib/core/utils/sort-utils.ts +0 -108
- package/src/lib/core/utils/string-utils.ts +0 -100
- package/src/lib/core/validator/email.validator.ts +0 -10
- package/src/lib/core/validator/equal.validator.ts +0 -14
- package/src/lib/core/validator/max-string-length.validator.ts +0 -11
- package/src/lib/core/validator/password.validator.ts +0 -35
- package/src/lib/core/validator/precision-scale.validator.ts +0 -14
- package/src/lib/core/validator/required.validator.ts +0 -9
- package/src/lib/directives/align-with/align-with.directive.ts +0 -158
- package/src/lib/directives/align-with/align-with.module.ts +0 -13
- package/src/lib/directives/clickoutside/click-outside-master.service.ts +0 -64
- package/src/lib/directives/clickoutside/click-outside.directive.ts +0 -72
- package/src/lib/directives/clickoutside/clickoutside.module.ts +0 -17
- package/src/lib/directives/observe-visibility/observe-visibility.directive.ts +0 -55
- package/src/lib/directives/observe-visibility/observe-visibility.module.ts +0 -13
- package/src/lib/directives/overlay/overlay-parent.directive.ts +0 -20
- package/src/lib/directives/overlay/overlay.directive.ts +0 -170
- package/src/lib/directives/overlay/overlay.module.ts +0 -16
- package/src/lib/directives/parsevalue/parse-value.directive.ts +0 -42
- package/src/lib/directives/parsevalue/parse-value.module.ts +0 -13
- package/src/lib/directives/resize/resize-detect.directive.ts +0 -54
- package/src/lib/directives/resize/resize-detect.module.ts +0 -13
- package/src/lib/directives/ripple/ripple-ref.ts +0 -28
- package/src/lib/directives/ripple/ripple-renderer.ts +0 -217
- package/src/lib/directives/ripple/ripple.directive.ts +0 -116
- package/src/lib/directives/ripple/ripple.module.ts +0 -24
- package/src/lib/directives/ripple/scroll-dispatcher.service.ts +0 -129
- package/src/lib/directives/ripple/scrollable.directive.ts +0 -37
- package/src/lib/directives/ripple/viewport-ruler.service.ts +0 -84
- package/src/lib/directives/screen-configuration/screen-configuration.directive.ts +0 -170
- package/src/lib/directives/screen-configuration/screen-configuration.module.ts +0 -16
- package/src/lib/directives/stopclick/stop-click.directive.ts +0 -35
- package/src/lib/directives/stopclick/stop-click.module.ts +0 -14
- package/src/lib/directives/template-wrapper/template-wrapper.directive.ts +0 -71
- package/src/lib/directives/template-wrapper/template-wrapper.module.ts +0 -13
- package/src/lib/directives/tooltip/tooltip-directive.module.ts +0 -17
- package/src/lib/directives/tooltip/tooltip.directive.ts +0 -94
- package/src/lib/interfaces/dialog-response.interface.ts +0 -7
- package/src/lib/interfaces/lov-options.component.interface.ts +0 -4
- package/src/lib/interfaces/scanner-input.interface.ts +0 -3
- package/src/lib/interfaces/screen-config-adapter-component-interface-name.ts +0 -6
- package/src/lib/interfaces/screen-config-adapter.component.interface.ts +0 -10
- package/src/lib/model/data-item.ts +0 -9
- package/src/lib/model/enum/app-button-type.enum.ts +0 -9
- package/src/lib/model/enum/app-popup-type.enum.ts +0 -6
- package/src/lib/model/enum/currency-code.enum.ts +0 -7
- package/src/lib/model/enum/language-code.enum.ts +0 -8
- package/src/lib/model/map/currencies.map.ts +0 -6
- package/src/lib/modules/drag-drop/drag-drop-container.component.ts +0 -115
- package/src/lib/modules/drag-drop/drag-drop-container.css +0 -34
- package/src/lib/modules/drag-drop/drag-drop-manager.service.ts +0 -414
- package/src/lib/modules/drag-drop/drag-drop.module.ts +0 -20
- package/src/lib/modules/drag-drop/draggable.directive.ts +0 -70
- package/src/lib/modules/drag-drop/model/co-drag-event.ts +0 -5
- package/src/lib/modules/drag-drop/model/co-drop-event.ts +0 -9
- package/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +0 -7
- package/src/lib/modules/drag-drop/model/drag-drop-container.ts +0 -9
- package/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +0 -5
- package/src/lib/modules/media-monitor/media-monitor.module.ts +0 -14
- package/src/lib/modules/media-monitor/media-monitor.service.ts +0 -36
- package/src/lib/modules/pagination/paginate.pipe.ts +0 -116
- package/src/lib/modules/pagination/pagination-instance.ts +0 -18
- package/src/lib/modules/pagination/pagination.component.ts +0 -229
- package/src/lib/modules/pagination/pagination.module.ts +0 -25
- package/src/lib/modules/pagination/pagination.service.ts +0 -98
- package/src/lib/pipes/append.pipe.module.ts +0 -13
- package/src/lib/pipes/append.pipe.ts +0 -17
- package/src/lib/pipes/co-currency-pipe.module.ts +0 -13
- package/src/lib/pipes/co-currency.pipe.ts +0 -45
- package/src/lib/pipes/emun-keys.pipe.ts +0 -20
- package/src/lib/pipes/enum-keys-pipe.module.ts +0 -13
- package/src/lib/pipes/file-type-image-pipe.module.ts +0 -13
- package/src/lib/pipes/file-type-image.pipe.ts +0 -45
- package/src/lib/pipes/filter.pipe.module.ts +0 -13
- package/src/lib/pipes/filter.pipe.ts +0 -14
- package/src/lib/pipes/master-pipe.module.ts +0 -13
- package/src/lib/pipes/master.pipe.ts +0 -71
- package/src/lib/pipes/prepend.pipe.module.ts +0 -13
- package/src/lib/pipes/prepend.pipe.ts +0 -17
- package/src/lib/pipes/price-display-pipe.module.ts +0 -14
- package/src/lib/pipes/price-display.pipe.ts +0 -20
- package/src/lib/pipes/safe-style.pipe.module.ts +0 -13
- package/src/lib/pipes/safe-style.pipe.ts +0 -14
- package/src/lib/pipes/ucfirst-pipe.module.ts +0 -13
- package/src/lib/pipes/ucfirst.pipe.ts +0 -14
- package/src/lib/service/base-module-screen-config.service.ts +0 -241
- package/src/lib/service/base-module.service.ts +0 -50
- package/src/lib/service/color-sequence.service.ts +0 -20
- package/src/lib/service/overlay.service.ts +0 -81
- package/src/lib/translation/core-components-translation.module.ts +0 -27
- package/src/lib/translation/core-components-translation.service.ts +0 -15
- package/src/lib/translation/core-dictionary.service.ts +0 -27
- package/src/lib/translation/core-localize.pipe.ts +0 -21
- package/src/public-api.ts +0 -137
- package/src/res/icons/Barcode.svg +0 -1
- package/src/res/icons/CashRegister.svg +0 -1
- package/src/res/icons/CirclePlusSkinny.svg +0 -1
- package/src/res/icons/CrossSkinny.svg +0 -1
- package/src/res/icons/FolderArrow.svg +0 -1
- package/src/res/icons/Home.svg +0 -1
- package/src/res/icons/POS.svg +0 -1
- package/src/res/icons/Shop.svg +0 -1
- package/src/res/icons/SinglePerson.svg +0 -1
- package/src/res/icons/Star.svg +0 -1
- package/src/res/icons/TrashBin.svg +0 -1
- package/src/res/icons/account.svg +0 -1
- package/src/res/icons/account_round_open.svg +0 -1
- package/src/res/icons/activities.svg +0 -1
- package/src/res/icons/add_to_cart_drop.svg +0 -1
- package/src/res/icons/arrow_down.svg +0 -1
- package/src/res/icons/arrow_fat_left.svg +0 -1
- package/src/res/icons/arrow_fat_right.svg +0 -1
- package/src/res/icons/arrow_left.svg +0 -4
- package/src/res/icons/arrow_left_round_open.svg +0 -1
- package/src/res/icons/arrow_point_down.svg +0 -6
- package/src/res/icons/arrow_point_left.svg +0 -8
- package/src/res/icons/arrow_point_right.svg +0 -8
- package/src/res/icons/arrow_point_up.svg +0 -8
- package/src/res/icons/arrow_right_round_open.svg +0 -1
- package/src/res/icons/arrow_scroll_down.svg +0 -6
- package/src/res/icons/arrow_scroll_left.svg +0 -22
- package/src/res/icons/arrow_scroll_right.svg +0 -22
- package/src/res/icons/arrow_scroll_up.svg +0 -6
- package/src/res/icons/arrow_up.svg +0 -3
- package/src/res/icons/article.svg +0 -1
- package/src/res/icons/article_with_fold.svg +0 -1
- package/src/res/icons/asterisk_small.svg +0 -1
- package/src/res/icons/attachments.svg +0 -1
- package/src/res/icons/back_to_top.svg +0 -1
- package/src/res/icons/big_mac.svg +0 -6
- package/src/res/icons/boxes.svg +0 -1
- package/src/res/icons/brush.svg +0 -1
- package/src/res/icons/brush_round_open.svg +0 -1
- package/src/res/icons/building_columns.svg +0 -1
- package/src/res/icons/businessrules.svg +0 -1
- package/src/res/icons/calendar.svg +0 -1
- package/src/res/icons/calendar_day.svg +0 -37
- package/src/res/icons/calendar_day_regular.svg +0 -1
- package/src/res/icons/calendar_empty.svg +0 -16
- package/src/res/icons/calendar_range.svg +0 -1
- package/src/res/icons/calendar_round_open.svg +0 -16
- package/src/res/icons/camera.svg +0 -1
- package/src/res/icons/cancel.svg +0 -1
- package/src/res/icons/cancel_round_filled.svg +0 -1
- package/src/res/icons/cancel_round_open.svg +0 -1
- package/src/res/icons/cart.svg +0 -1
- package/src/res/icons/cart_open.svg +0 -8
- package/src/res/icons/case_manager.svg +0 -1
- package/src/res/icons/cash_register_simple.svg +0 -1
- package/src/res/icons/change_location.svg +0 -1
- package/src/res/icons/check.svg +0 -1
- package/src/res/icons/check_duotone.svg +0 -1
- package/src/res/icons/check_round.svg +0 -1
- package/src/res/icons/check_round_open.svg +0 -10
- package/src/res/icons/check_simple.svg +0 -3
- package/src/res/icons/check_thin.svg +0 -1
- package/src/res/icons/chevron_down_regular.svg +0 -1
- package/src/res/icons/chevron_up_regular.svg +0 -1
- package/src/res/icons/client.svg +0 -1
- package/src/res/icons/clock.svg +0 -1
- package/src/res/icons/clockArrow.svg +0 -1
- package/src/res/icons/cogWheelPlus.svg +0 -1
- package/src/res/icons/cogWheels.svg +0 -1
- package/src/res/icons/column_options.svg +0 -18
- package/src/res/icons/company.svg +0 -1
- package/src/res/icons/company_flat.svg +0 -4
- package/src/res/icons/configurable.svg +0 -1
- package/src/res/icons/consultant.svg +0 -1
- package/src/res/icons/copy.svg +0 -1
- package/src/res/icons/crosshair_1.svg +0 -1
- package/src/res/icons/dashboard.svg +0 -1
- package/src/res/icons/delivery_method.svg +0 -32
- package/src/res/icons/delivery_status_uncheck.svg +0 -9
- package/src/res/icons/delivery_truck.svg +0 -1
- package/src/res/icons/detail_record.svg +0 -1
- package/src/res/icons/detail_view.svg +0 -1
- package/src/res/icons/dictionary.svg +0 -1
- package/src/res/icons/documentWrench.svg +0 -1
- package/src/res/icons/documents.svg +0 -1
- package/src/res/icons/dollar.svg +0 -1
- package/src/res/icons/download.svg +0 -1
- package/src/res/icons/dropdown.svg +0 -4
- package/src/res/icons/dropzone.svg +0 -1
- package/src/res/icons/edit_pencil.svg +0 -1
- package/src/res/icons/edit_pencil_circle.svg +0 -1
- package/src/res/icons/edit_pencil_round.svg +0 -11
- package/src/res/icons/edit_pencil_simple.svg +0 -16
- package/src/res/icons/email.svg +0 -1
- package/src/res/icons/email_round_open.svg +0 -6
- package/src/res/icons/employee.svg +0 -1
- package/src/res/icons/employee_two.svg +0 -1
- package/src/res/icons/employer.svg +0 -1
- package/src/res/icons/employment.svg +0 -1
- package/src/res/icons/employment_end.svg +0 -7
- package/src/res/icons/equal.svg +0 -1
- package/src/res/icons/euro.svg +0 -1
- package/src/res/icons/exclamation.svg +0 -1
- package/src/res/icons/exclamation_round_open.svg +0 -1
- package/src/res/icons/eye_circle.svg +0 -1
- package/src/res/icons/eye_circle_large.svg +0 -1
- package/src/res/icons/eye_round_filled.svg +0 -11
- package/src/res/icons/factory.svg +0 -1
- package/src/res/icons/fasttrack.svg +0 -1
- package/src/res/icons/filter.svg +0 -1
- package/src/res/icons/finish.svg +0 -1
- package/src/res/icons/fixed_option_value_tree.svg +0 -1
- package/src/res/icons/fixed_tree_option_value.svg +0 -1
- package/src/res/icons/floppy_disk_solid.svg +0 -1
- package/src/res/icons/folder_arrow_in.svg +0 -8
- package/src/res/icons/formula.svg +0 -1
- package/src/res/icons/fullscreen.svg +0 -6
- package/src/res/icons/gear_double.svg +0 -21
- package/src/res/icons/global_search.svg +0 -45
- package/src/res/icons/globe.svg +0 -1
- package/src/res/icons/greater_than.svg +0 -1
- package/src/res/icons/groupby.svg +0 -1
- package/src/res/icons/hamburger.svg +0 -1
- package/src/res/icons/hand_pointer.svg +0 -1
- package/src/res/icons/hbarchart.svg +0 -6
- package/src/res/icons/home_circle.svg +0 -9
- package/src/res/icons/home_open.svg +0 -7
- package/src/res/icons/home_round_open.svg +0 -11
- package/src/res/icons/hourglass.svg +0 -1
- package/src/res/icons/icon_3d.svg +0 -1
- package/src/res/icons/id.svg +0 -1
- package/src/res/icons/image.svg +0 -1
- package/src/res/icons/incoming_storage.svg +0 -1
- package/src/res/icons/information.svg +0 -1
- package/src/res/icons/information_round_open.svg +0 -6
- package/src/res/icons/input_multiplechoice.svg +0 -1
- package/src/res/icons/input_text.svg +0 -1
- package/src/res/icons/input_textarea.svg +0 -1
- package/src/res/icons/inventory.svg +0 -1
- package/src/res/icons/invoice.svg +0 -20
- package/src/res/icons/ione_logo.svg +0 -1
- package/src/res/icons/ione_logo_fat.svg +0 -1
- package/src/res/icons/ione_status_next.svg +0 -43
- package/src/res/icons/ione_workflow.svg +0 -62
- package/src/res/icons/keyboard.svg +0 -1
- package/src/res/icons/keychain.svg +0 -1
- package/src/res/icons/label.svg +0 -5
- package/src/res/icons/label_round_open.svg +0 -6
- package/src/res/icons/landmark_flag.svg +0 -1
- package/src/res/icons/library.svg +0 -21
- package/src/res/icons/linechart.svg +0 -1
- package/src/res/icons/link_circle.svg +0 -1
- package/src/res/icons/linked_products.svg +0 -1
- package/src/res/icons/list_view.svg +0 -8
- package/src/res/icons/location.svg +0 -1
- package/src/res/icons/lock.svg +0 -1
- package/src/res/icons/lock_round_open.svg +0 -8
- package/src/res/icons/logo.svg +0 -1
- package/src/res/icons/logout.svg +0 -1
- package/src/res/icons/magic_wand.svg +0 -1
- package/src/res/icons/magnifier.svg +0 -5
- package/src/res/icons/manager.svg +0 -12
- package/src/res/icons/mask.svg +0 -1
- package/src/res/icons/master_detail.svg +0 -1
- package/src/res/icons/material_circle_large.svg +0 -1
- package/src/res/icons/medal_bronze.svg +0 -23
- package/src/res/icons/medal_gold.svg +0 -23
- package/src/res/icons/medal_silver.svg +0 -23
- package/src/res/icons/medical_officer.svg +0 -14
- package/src/res/icons/microphone.svg +0 -1
- package/src/res/icons/minus_round_open.svg +0 -1
- package/src/res/icons/minus_simple.svg +0 -1
- package/src/res/icons/mobile.svg +0 -1
- package/src/res/icons/multi_select_check.svg +0 -10
- package/src/res/icons/new_task.svg +0 -1
- package/src/res/icons/not_equal.svg +0 -4
- package/src/res/icons/note.svg +0 -1
- package/src/res/icons/note_bordered.svg +0 -1
- package/src/res/icons/notification.svg +0 -1
- package/src/res/icons/option.svg +0 -1
- package/src/res/icons/optionset.svg +0 -1
- package/src/res/icons/order.svg +0 -1
- package/src/res/icons/orderpicking.svg +0 -1
- package/src/res/icons/outgoing_storage.svg +0 -1
- package/src/res/icons/over_booking.svg +0 -1
- package/src/res/icons/pause_circle.svg +0 -12
- package/src/res/icons/pen_to_square_solid.svg +0 -1
- package/src/res/icons/pencil_round_open.svg +0 -10
- package/src/res/icons/phone.svg +0 -1
- package/src/res/icons/phone_round_open.svg +0 -10
- package/src/res/icons/piechart.svg +0 -24
- package/src/res/icons/pin.svg +0 -9
- package/src/res/icons/pin_round_open.svg +0 -11
- package/src/res/icons/play_circle.svg +0 -1
- package/src/res/icons/plus_round.svg +0 -9
- package/src/res/icons/plus_round_open.svg +0 -1
- package/src/res/icons/plus_simple.svg +0 -1
- package/src/res/icons/plus_skinny.svg +0 -8
- package/src/res/icons/plus_solid.svg +0 -1
- package/src/res/icons/plus_stars.svg +0 -1
- package/src/res/icons/pointer.svg +0 -7
- package/src/res/icons/pointer_3d.svg +0 -8
- package/src/res/icons/pointer_filled.svg +0 -6
- package/src/res/icons/positioning.svg +0 -1
- package/src/res/icons/pregnancy.svg +0 -18
- package/src/res/icons/preset.svg +0 -1
- package/src/res/icons/print.svg +0 -1
- package/src/res/icons/product_properties.svg +0 -1
- package/src/res/icons/purchase.svg +0 -15
- package/src/res/icons/qrcode.svg +0 -59
- package/src/res/icons/question.svg +0 -1
- package/src/res/icons/radio_uncheck.svg +0 -1
- package/src/res/icons/range.svg +0 -1
- package/src/res/icons/range_select.svg +0 -1
- package/src/res/icons/rectangles.svg +0 -15
- package/src/res/icons/refresh.svg +0 -1
- package/src/res/icons/relations.svg +0 -20
- package/src/res/icons/remark.svg +0 -1
- package/src/res/icons/remark_round_open.svg +0 -6
- package/src/res/icons/report_in_type.svg +0 -1
- package/src/res/icons/resize.svg +0 -3
- package/src/res/icons/resize_down.svg +0 -1
- package/src/res/icons/resize_up.svg +0 -1
- package/src/res/icons/return_goods.svg +0 -4
- package/src/res/icons/returns.svg +0 -1
- package/src/res/icons/rotate_left_solid.svg +0 -1
- package/src/res/icons/save_disk.svg +0 -15
- package/src/res/icons/save_skinny.svg +0 -3
- package/src/res/icons/scale_balanced.svg +0 -1
- package/src/res/icons/scanner.svg +0 -1
- package/src/res/icons/search_round_open.svg +0 -9
- package/src/res/icons/sections.svg +0 -1
- package/src/res/icons/select_all_round.svg +0 -5
- package/src/res/icons/services.svg +0 -1
- package/src/res/icons/settings.svg +0 -20
- package/src/res/icons/shopping_cart.svg +0 -1
- package/src/res/icons/shopping_cart_nr.svg +0 -1
- package/src/res/icons/shortcut.svg +0 -1
- package/src/res/icons/skills.svg +0 -1
- package/src/res/icons/slide_in.svg +0 -1
- package/src/res/icons/slider_panel.svg +0 -7
- package/src/res/icons/small_tiles.svg +0 -1
- package/src/res/icons/smaller_than.svg +0 -1
- package/src/res/icons/sort_asc.svg +0 -1
- package/src/res/icons/sort_desc.svg +0 -1
- package/src/res/icons/star_round_open.svg +0 -6
- package/src/res/icons/status_active.svg +0 -1
- package/src/res/icons/status_adoption.svg +0 -1
- package/src/res/icons/status_fostercare.svg +0 -1
- package/src/res/icons/status_ill.svg +0 -10
- package/src/res/icons/status_leave.svg +0 -1
- package/src/res/icons/status_pregnancy.svg +0 -10
- package/src/res/icons/stock.svg +0 -1
- package/src/res/icons/stock_management.svg +0 -25
- package/src/res/icons/storage.svg +0 -1
- package/src/res/icons/supervisor.svg +0 -1
- package/src/res/icons/supplier.svg +0 -18
- package/src/res/icons/surgery.svg +0 -35
- package/src/res/icons/tablechart.svg +0 -15
- package/src/res/icons/tag.svg +0 -1
- package/src/res/icons/talk_too_much.svg +0 -7
- package/src/res/icons/target.svg +0 -1
- package/src/res/icons/task.svg +0 -1
- package/src/res/icons/thick_lines.svg +0 -1
- package/src/res/icons/thin_lines.svg +0 -1
- package/src/res/icons/three_sixty_view.svg +0 -1
- package/src/res/icons/thumb_bronze.svg +0 -29
- package/src/res/icons/thumb_gold.svg +0 -29
- package/src/res/icons/thumb_silver.svg +0 -29
- package/src/res/icons/timeline.svg +0 -1
- package/src/res/icons/transaction_detail.svg +0 -19
- package/src/res/icons/transactions.svg +0 -12
- package/src/res/icons/trash_can_solid.svg +0 -1
- package/src/res/icons/triangle_down.svg +0 -1
- package/src/res/icons/triangle_large.svg +0 -5
- package/src/res/icons/triangle_left.svg +0 -1
- package/src/res/icons/triangle_right.svg +0 -1
- package/src/res/icons/triangle_up.svg +0 -1
- package/src/res/icons/truck.svg +0 -1
- package/src/res/icons/truck_calendar.svg +0 -15
- package/src/res/icons/undo_round_open.svg +0 -1
- package/src/res/icons/user.svg +0 -9
- package/src/res/icons/variants.svg +0 -1
- package/src/res/icons/vbarchart.svg +0 -6
- package/src/res/icons/view.svg +0 -1
- package/src/res/icons/warehouse.svg +0 -1
- package/src/res/icons/watermark.svg +0 -10
- package/src/res/icons/website.svg +0 -1
- package/src/res/icons/wizard.svg +0 -18
- package/src/res/icons/wms.svg +0 -24
- package/src/res/icons/work_in_progress.svg +0 -10
- package/src/res/icons/work_in_progress_round_open.svg +0 -9
- package/src/res/icons/wrench.svg +0 -4
- package/src/res/icons/x_axis.svg +0 -5
- package/src/res/icons/y_axis.svg +0 -5
- package/src/test.ts +0 -28
- package/tsconfig.lib.json +0 -20
- package/tsconfig.lib.prod.json +0 -16
- package/tsconfig.spec.json +0 -17
- /package/{src/lib → lib}/components/article-tile/article-tile.component.scss +0 -0
- /package/{src/lib → lib}/components/base/commit-buttons/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/base/commit-buttons/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/base/commit-buttons/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/base/commit-buttons/style/material.scss +0 -0
- /package/{src/lib → lib}/components/button/style/_co-ripple.scss +0 -0
- /package/{src/lib → lib}/components/button/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/button/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/button/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/button/style/material.scss +0 -0
- /package/{src/lib → lib}/components/calendar/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/calendar/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/calendar/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/calendar/style/material.scss +0 -0
- /package/{src/lib → lib}/components/card/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/card/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/card/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/card/style/material.scss +0 -0
- /package/{src/lib → lib}/components/carousel/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/carousel/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/carousel/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/carousel/style/material.scss +0 -0
- /package/{src/lib → lib}/components/carousel-3d/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/carousel-3d/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/carousel-3d/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/carousel-3d/style/material.scss +0 -0
- /package/{src/lib → lib}/components/checkmark-overlay/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/checkmark-overlay/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/checkmark-overlay/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/checkmark-overlay/style/material.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog/style/material.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog-wizard/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog-wizard/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog-wizard/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/co-dialog-wizard/style/material.scss +0 -0
- /package/{src/lib → lib}/components/collapsible/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/collapsible/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/collapsible/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/collapsible/style/material.scss +0 -0
- /package/{src/lib → lib}/components/color-picker/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/color-picker/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/color-picker/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/color-picker/style/material.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/confirmation-dialog/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/confirmation-dialog/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/confirmation-dialog/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/confirmation-dialog/style/material.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/core-dialog/style/material.scss +0 -0
- /package/{src/lib → lib}/components/double-calendar/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/double-calendar/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/double-calendar/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/double-calendar/style/material.scss +0 -0
- /package/{src/lib → lib}/components/filter-item/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/filter-item/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/filter-item/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/filter-item/style/material.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar/style/material.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar-button/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar-button/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar-button/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/grid-toolbar-button/style/material.scss +0 -0
- /package/{src/lib → lib}/components/icon/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/icon/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/icon/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/icon/style/material.scss +0 -0
- /package/{src/lib → lib}/components/icon-collapse-handle/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/icon-collapse-handle/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/icon-collapse-handle/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/icon-collapse-handle/style/material.scss +0 -0
- /package/{src/lib → lib}/components/image/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/image/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/image/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/image/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-checkbox/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-checkbox/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-checkbox/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-checkbox/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-date-picker/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-date-picker/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-date-picker/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-date-picker/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-date-range-picker/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-date-range-picker/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-date-range-picker/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-date-range-picker/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-number-picker/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-number-picker/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-number-picker/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-number-picker/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-radio-button/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-radio-button/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-radio-button/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-radio-button/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-scanner/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-scanner/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-scanner/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-scanner/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-search/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-search/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-search/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-search/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-text/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-text/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-text/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-text/style/material.scss +0 -0
- /package/{src/lib → lib}/components/input-textarea/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/input-textarea/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/input-textarea/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/input-textarea/style/material.scss +0 -0
- /package/{src/lib → lib}/components/level-indicator/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/level-indicator/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/level-indicator/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/level-indicator/style/material.scss +0 -0
- /package/{src/lib → lib}/components/list-of-values/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/list-of-values/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/list-of-values/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/list-of-values/style/material.scss +0 -0
- /package/{src/lib → lib}/components/loader/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/loader/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/loader/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/loader/style/material.scss +0 -0
- /package/{src/lib → lib}/components/pagination/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/pagination/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/pagination/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/pagination/style/material.scss +0 -0
- /package/{src/lib → lib}/components/pagination-bar/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/pagination-bar/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/pagination-bar/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/pagination-bar/style/material.scss +0 -0
- /package/{src/lib → lib}/components/popup/popup-buttons.component.scss +0 -0
- /package/{src/lib → lib}/components/popup/popup-window-shell.component.scss +0 -0
- /package/{src/lib → lib}/components/responsive-text/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/responsive-text/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/responsive-text/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/responsive-text/style/material.scss +0 -0
- /package/{src/lib → lib}/components/simple-grid/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/simple-grid/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/simple-grid/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/simple-grid/style/material.scss +0 -0
- /package/{src/lib → lib}/components/tile/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/tile/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/tile/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/tile/style/material.scss +0 -0
- /package/{src/lib → lib}/components/tile-select/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/tile-select/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/tile-select/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/tile-select/style/material.scss +0 -0
- /package/{src/lib → lib}/components/tooltip/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/tooltip/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/tooltip/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/tooltip/style/material.scss +0 -0
- /package/{src/lib → lib}/components/validation-error/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/validation-error/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/validation-error/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/validation-error/style/material.scss +0 -0
- /package/{src/lib → lib}/components/view-mode-buttons/style/_layout.scss +0 -0
- /package/{src/lib → lib}/components/view-mode-buttons/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/components/view-mode-buttons/style/_theme.scss +0 -0
- /package/{src/lib → lib}/components/view-mode-buttons/style/material.scss +0 -0
- /package/{src/lib → lib}/modules/pagination/style/_layout.scss +0 -0
- /package/{src/lib → lib}/modules/pagination/style/_material-definition.scss +0 -0
- /package/{src/lib → lib}/modules/pagination/style/_theme.scss +0 -0
- /package/{src/lib → lib}/modules/pagination/style/material.scss +0 -0
- /package/{src/lib → lib}/style/_input.mixins.scss +0 -0
- /package/{src/lib → lib}/style/_mixin.scss +0 -0
- /package/{src/lib → lib}/style/_variables.scss +0 -0
- /package/{src/lib → lib}/style/corecomponents-globals.scss +0 -0
- /package/{src/lib → lib}/style/material2/_core.scss +0 -0
- /package/{src/lib → lib}/style/material2/_material2-scss-barrel.scss +0 -0
- /package/{src/lib → lib}/style/material2/ripple/_co-ripple.scss +0 -0
- /package/{src/lib → lib}/style/material2/style/_elevation.scss +0 -0
- /package/{src/lib → lib}/style/material2/style/_list-common.scss +0 -0
- /package/{src/lib → lib}/style/material2/style/_variables.scss +0 -0
- /package/{src/lib → lib}/style/material2/theming/_palette.scss +0 -0
- /package/{src/lib → lib}/style/material2/theming/_theming.scss +0 -0
- /package/{src/lib → lib}/style/material2/typography/_typography.scss +0 -0
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
import {Component, ContentChildren, ElementRef, HostBinding, OnDestroy, ViewChild, ViewEncapsulation} from '@angular/core';
|
|
2
|
-
import 'hammerjs';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'co-carousel',
|
|
6
|
-
template: `
|
|
7
|
-
<div class="carousel-wrapper" #container (swipeleft)="handleButtonRightClick()" (swiperight)="handleButtonLeftClick()">
|
|
8
|
-
<ng-content></ng-content>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="carousel-navigate-button left">
|
|
11
|
-
<div class="carousel-navigate-button-wrapper" *ngIf="canNavigateLeft" (click)="handleButtonLeftClick()">
|
|
12
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
|
|
13
|
-
<path
|
|
14
|
-
d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"></path>
|
|
15
|
-
</svg>
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
18
|
-
<div class="carousel-navigate-button right">
|
|
19
|
-
<div class="carousel-navigate-button-wrapper" *ngIf="canNavigateRight" (click)="handleButtonRightClick()">
|
|
20
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
|
|
21
|
-
<path
|
|
22
|
-
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path>
|
|
23
|
-
</svg>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
`,
|
|
27
|
-
encapsulation: ViewEncapsulation.None
|
|
28
|
-
})
|
|
29
|
-
export class CarouselComponent implements OnDestroy {
|
|
30
|
-
@ViewChild('container', { read: ElementRef }) set containerChild(child) {
|
|
31
|
-
if (child) {
|
|
32
|
-
this.container = child;
|
|
33
|
-
this._checkNavigationButtons();
|
|
34
|
-
this.ro.observe(this.container.nativeElement);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@ContentChildren('carouselItem', { read: ElementRef, descendants: true }) set contentChildren(content) {
|
|
39
|
-
if (content) {
|
|
40
|
-
this.carouselItems = content.toArray();
|
|
41
|
-
}
|
|
42
|
-
this._checkNavigationButtons();
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@HostBinding('class.co-carousel')
|
|
46
|
-
public showClass() {
|
|
47
|
-
return true;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
public carouselItems: ElementRef[];
|
|
51
|
-
public canNavigateLeft: boolean = false;
|
|
52
|
-
public canNavigateRight: boolean = false;
|
|
53
|
-
public container: ElementRef;
|
|
54
|
-
public activeIndex: number = 0;
|
|
55
|
-
public ro: ResizeObserver = new ResizeObserver(entries => {
|
|
56
|
-
this._checkNavigationButtons();
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
private _disableButtons: boolean = false;
|
|
60
|
-
|
|
61
|
-
ngOnDestroy(): void {
|
|
62
|
-
for (let i = this.carouselItems.length - 1; i >= 0; i--) {
|
|
63
|
-
this.carouselItems[i] = undefined;
|
|
64
|
-
}
|
|
65
|
-
this.container = undefined;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
public handlePress(event): void {
|
|
69
|
-
console.log(event);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
public handleSwipe(event): void {
|
|
73
|
-
const x = Math.abs(event.deltaX) > 40 ? (event.deltaX > 0 ? 'right' : 'left'):'';
|
|
74
|
-
const y = Math.abs(event.deltaY) > 40 ? (event.deltaY > 0 ? 'down' : 'up') : '';
|
|
75
|
-
|
|
76
|
-
console.log(`${x} ${y}`);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
public async handleButtonLeftClick(): Promise<void> {
|
|
80
|
-
this._navigate();
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
public async handleButtonRightClick(): Promise<void> {
|
|
84
|
-
this._navigate(true);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
private async _navigate(right: boolean = false): Promise<void> {
|
|
88
|
-
if (this._disableButtons) {
|
|
89
|
-
return;
|
|
90
|
-
}
|
|
91
|
-
this._disableButtons = true;
|
|
92
|
-
const wantedIndex: number = this.activeIndex + (right ? 1 : -1);
|
|
93
|
-
const left: number = this._getLeftPositionFromActiveItem(wantedIndex);
|
|
94
|
-
if (left !== null) {
|
|
95
|
-
if (await this._scrollWrapper(left)) {
|
|
96
|
-
this.activeIndex = wantedIndex;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
this._checkNavigationButtons();
|
|
100
|
-
this._disableButtons = false;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
private _checkNavigationButtons(): void {
|
|
104
|
-
if (this.container && this.container.nativeElement) {
|
|
105
|
-
this.canNavigateLeft = this.container.nativeElement.scrollLeft > 0;
|
|
106
|
-
this.canNavigateRight = this.container.nativeElement.scrollLeft + this.container.nativeElement.clientWidth < this.container.nativeElement.scrollWidth;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
private _getLeftPositionFromActiveItem(index: number): number {
|
|
111
|
-
const element = this.carouselItems[index];
|
|
112
|
-
return element ? element.nativeElement.offsetLeft : null;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
private async _scrollWrapper(left: number): Promise<boolean> {
|
|
116
|
-
return new Promise((resolve: Function) => {
|
|
117
|
-
if (this.container && this.container.nativeElement) {
|
|
118
|
-
const oldScroll: number = this.container.nativeElement.scrollLeft;
|
|
119
|
-
this.container.nativeElement.scrollLeft = left;
|
|
120
|
-
setTimeout(() => {
|
|
121
|
-
return resolve(oldScroll !== this.container.nativeElement.scrollLeft);
|
|
122
|
-
}, 400)
|
|
123
|
-
} else {
|
|
124
|
-
return resolve(false);
|
|
125
|
-
}
|
|
126
|
-
});
|
|
127
|
-
}
|
|
128
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import {Injectable, NgModule} from '@angular/core';
|
|
2
|
-
import {CommonModule} from '@angular/common';
|
|
3
|
-
import {CarouselComponent} from './carousel.component';
|
|
4
|
-
import {HAMMER_GESTURE_CONFIG, HammerGestureConfig, HammerModule} from '@angular/platform-browser';
|
|
5
|
-
|
|
6
|
-
export class CarouselHammerConfig extends HammerGestureConfig {
|
|
7
|
-
overrides = <any> {
|
|
8
|
-
swipe: { direction: Hammer.DIRECTION_HORIZONTAL },
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@NgModule({
|
|
13
|
-
imports: [
|
|
14
|
-
CommonModule,
|
|
15
|
-
HammerModule
|
|
16
|
-
],
|
|
17
|
-
declarations: [
|
|
18
|
-
CarouselComponent
|
|
19
|
-
],
|
|
20
|
-
exports: [
|
|
21
|
-
CarouselComponent
|
|
22
|
-
],
|
|
23
|
-
providers: [
|
|
24
|
-
{provide: HAMMER_GESTURE_CONFIG, useClass: CarouselHammerConfig},
|
|
25
|
-
]
|
|
26
|
-
})
|
|
27
|
-
export class CarouselModule {
|
|
28
|
-
}
|
|
@@ -1,392 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
AfterViewInit,
|
|
3
|
-
Component,
|
|
4
|
-
ContentChildren,
|
|
5
|
-
ElementRef,
|
|
6
|
-
EventEmitter,
|
|
7
|
-
HostBinding,
|
|
8
|
-
Input,
|
|
9
|
-
OnDestroy,
|
|
10
|
-
Output,
|
|
11
|
-
ViewChild,
|
|
12
|
-
ViewEncapsulation
|
|
13
|
-
} from "@angular/core";
|
|
14
|
-
import {
|
|
15
|
-
AmbientLight,
|
|
16
|
-
Box3,
|
|
17
|
-
Color,
|
|
18
|
-
Fog,
|
|
19
|
-
Mesh,
|
|
20
|
-
MeshPhongMaterial,
|
|
21
|
-
PerspectiveCamera,
|
|
22
|
-
PlaneGeometry,
|
|
23
|
-
Scene,
|
|
24
|
-
SpotLight,
|
|
25
|
-
Vector2,
|
|
26
|
-
Vector3,
|
|
27
|
-
WebGLRenderer
|
|
28
|
-
} from "three";
|
|
29
|
-
import {CarouselItem} from "./carouselItem";
|
|
30
|
-
import {CSS3DObject, CSS3DRenderer} from "three/examples/jsm/renderers/CSS3DRenderer";
|
|
31
|
-
import * as TWEEN from "@tweenjs/tween.js";
|
|
32
|
-
|
|
33
|
-
@Component({
|
|
34
|
-
selector: "co-carousel-3d",
|
|
35
|
-
template: `
|
|
36
|
-
<div class="carousel-3d-canvas-wrapper" #canvasContainer>
|
|
37
|
-
<div class="carousel-wrapper" #carouselWrapper>
|
|
38
|
-
<div class="carousel-navigate-button left">
|
|
39
|
-
<div class="carousel-navigate-button-wrapper" *ngIf="canNavigateLeft" (click)="handleButtonLeftClick()">
|
|
40
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
|
|
41
|
-
<path
|
|
42
|
-
d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"></path>
|
|
43
|
-
</svg>
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
<div class="carousel-navigate-button right">
|
|
47
|
-
<div class="carousel-navigate-button-wrapper" *ngIf="canNavigateRight" (click)="handleButtonRightClick()">
|
|
48
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
|
|
49
|
-
<path
|
|
50
|
-
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path>
|
|
51
|
-
</svg>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
`,
|
|
57
|
-
encapsulation: ViewEncapsulation.None
|
|
58
|
-
})
|
|
59
|
-
export class Carousel3dComponent implements AfterViewInit, OnDestroy {
|
|
60
|
-
@ViewChild("canvasContainer", {read: ElementRef})
|
|
61
|
-
public canvasContainer: ElementRef;
|
|
62
|
-
|
|
63
|
-
@ViewChild("carouselWrapper", {read: ElementRef})
|
|
64
|
-
public carouselWrapper: ElementRef;
|
|
65
|
-
|
|
66
|
-
@ContentChildren("carouselItem", {read: ElementRef, descendants: true}) set children(children) {
|
|
67
|
-
this._elementsCreated = false;
|
|
68
|
-
this._tileElements = children.toArray();
|
|
69
|
-
this._buildCarousel();
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@Input()
|
|
73
|
-
public tileWidth: number;
|
|
74
|
-
|
|
75
|
-
@Input()
|
|
76
|
-
public tileHeight: number;
|
|
77
|
-
|
|
78
|
-
@Input()
|
|
79
|
-
public cameraHeight: number = 50;
|
|
80
|
-
|
|
81
|
-
@Input()
|
|
82
|
-
public shadow: boolean = false;
|
|
83
|
-
|
|
84
|
-
@Input()
|
|
85
|
-
public selectedIndex: number = 0;
|
|
86
|
-
|
|
87
|
-
@Output()
|
|
88
|
-
public indexSelected: EventEmitter<number> = new EventEmitter<number>();
|
|
89
|
-
|
|
90
|
-
@HostBinding("class.co-carousel-3d")
|
|
91
|
-
public showClass(): boolean {
|
|
92
|
-
return true;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
private _camera: PerspectiveCamera;
|
|
96
|
-
private _cameraZoom: number = 0;
|
|
97
|
-
private _backgroundColor = 0xffffff;
|
|
98
|
-
private _sceneCss: Scene;
|
|
99
|
-
private _scene: Scene;
|
|
100
|
-
private _rendererCss: CSS3DRenderer;
|
|
101
|
-
private _renderer: WebGLRenderer;
|
|
102
|
-
private _ambientLight: boolean = true;
|
|
103
|
-
private _tileSize: Vector2 = new Vector2();
|
|
104
|
-
private _tileMargin: number = 20;
|
|
105
|
-
private _targetPositions = [];
|
|
106
|
-
private _tileElements: ElementRef[] = [];
|
|
107
|
-
private _tileOffset = 0;
|
|
108
|
-
private _tiles3D: CarouselItem[] = [];
|
|
109
|
-
private _planeColor = 0xffffff;
|
|
110
|
-
private _planeHeight = -46;
|
|
111
|
-
private _spotLightPosition: Vector3 = new Vector3(0, 250, -200);
|
|
112
|
-
private _fullCircle: boolean = false;
|
|
113
|
-
private _initialized: boolean = false;
|
|
114
|
-
private _elementsCreated: boolean = false;
|
|
115
|
-
|
|
116
|
-
public canNavigateLeft: boolean = false;
|
|
117
|
-
public canNavigateRight: boolean = false;
|
|
118
|
-
|
|
119
|
-
ngAfterViewInit(): void {
|
|
120
|
-
this._buildCarousel();
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
ngOnDestroy(): void {
|
|
124
|
-
this.canvasContainer = undefined;
|
|
125
|
-
this.carouselWrapper = undefined;
|
|
126
|
-
this._clearScenes();
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
public handleButtonLeftClick(): void {
|
|
130
|
-
this._tileOffset -= 1;
|
|
131
|
-
this._rotate(400);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
public handleButtonRightClick(): void {
|
|
135
|
-
this._tileOffset += 1;
|
|
136
|
-
this._rotate(400);
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
private _buildCarousel(): void {
|
|
140
|
-
if (!this._initialized) {
|
|
141
|
-
this._init();
|
|
142
|
-
}
|
|
143
|
-
if (this._initialized && !this._elementsCreated) {
|
|
144
|
-
this._createTiles();
|
|
145
|
-
}
|
|
146
|
-
this._checkNavigationButtons();
|
|
147
|
-
this._resizeCanvasToDisplaySize();
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
private _init(): void {
|
|
151
|
-
if (!this.canvasContainer || !this.canvasContainer.nativeElement) {
|
|
152
|
-
return;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
this._initCamera();
|
|
156
|
-
this._initScene();
|
|
157
|
-
this._initRenderer();
|
|
158
|
-
|
|
159
|
-
if (this.shadow) {
|
|
160
|
-
const geometry = new PlaneGeometry(10000, 10000);
|
|
161
|
-
const material = new MeshPhongMaterial({color: this._planeColor, shininess: 100});
|
|
162
|
-
const plane = new Mesh(geometry, material);
|
|
163
|
-
plane.receiveShadow = true;
|
|
164
|
-
plane.rotation.x = -Math.PI / 2;
|
|
165
|
-
plane.position.y = this._planeHeight;
|
|
166
|
-
this._scene.add(plane);
|
|
167
|
-
|
|
168
|
-
const spotLight = new SpotLight(0xffffff, 0.5);
|
|
169
|
-
spotLight.position.copy(this._spotLightPosition);
|
|
170
|
-
spotLight.castShadow = true;
|
|
171
|
-
spotLight.shadow.mapSize.width = 512;
|
|
172
|
-
spotLight.shadow.mapSize.height = 512;
|
|
173
|
-
spotLight.shadow.camera.near = 50;
|
|
174
|
-
spotLight.shadow.camera.far = 1200;
|
|
175
|
-
spotLight.shadow.camera.fov = 30;
|
|
176
|
-
spotLight.penumbra = 1;
|
|
177
|
-
this._scene.add(spotLight);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
this.carouselWrapper.nativeElement.appendChild(this._rendererCss.domElement);
|
|
181
|
-
this.canvasContainer.nativeElement.appendChild(this.carouselWrapper.nativeElement);
|
|
182
|
-
this.canvasContainer.nativeElement.appendChild(this._renderer.domElement);
|
|
183
|
-
|
|
184
|
-
this._render();
|
|
185
|
-
this._animate();
|
|
186
|
-
|
|
187
|
-
window.addEventListener("resize", () => {
|
|
188
|
-
this._resizeCanvasToDisplaySize();
|
|
189
|
-
}, false);
|
|
190
|
-
|
|
191
|
-
this._initialized = true;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
private _initCamera(): void {
|
|
195
|
-
this._camera = new PerspectiveCamera(50, this.canvasContainer.nativeElement.clientWidth / this.canvasContainer.nativeElement.clientHeight, 1, 10000);
|
|
196
|
-
this._camera.position.z = 600 - this._cameraZoom;
|
|
197
|
-
this._camera.position.y = this.cameraHeight;
|
|
198
|
-
this._camera.lookAt(new Vector3());
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
private _initScene(): void {
|
|
202
|
-
this._sceneCss = new Scene();
|
|
203
|
-
this._scene = new Scene();
|
|
204
|
-
this._scene.background = new Color(this._backgroundColor);
|
|
205
|
-
|
|
206
|
-
if (this._ambientLight) {
|
|
207
|
-
const light = new AmbientLight(0xaaaaaa); // soft white light
|
|
208
|
-
this._scene.add(light);
|
|
209
|
-
|
|
210
|
-
this._scene.fog = new Fog(this._backgroundColor, 70, 2500);
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
private _initRenderer(): void {
|
|
215
|
-
this._rendererCss = new CSS3DRenderer();
|
|
216
|
-
this._rendererCss.setSize(this.canvasContainer.nativeElement.clientWidth, this.canvasContainer.nativeElement.clientHeight);
|
|
217
|
-
this._rendererCss.domElement.style.position = "absolute";
|
|
218
|
-
|
|
219
|
-
this._renderer = new WebGLRenderer({antialias: true});
|
|
220
|
-
this._renderer.setPixelRatio(window.devicePixelRatio);
|
|
221
|
-
this._renderer.setSize(this.canvasContainer.nativeElement.clientWidth, this.canvasContainer.nativeElement.clientHeight);
|
|
222
|
-
this._renderer.shadowMap.enabled = true;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
private _disposeObject(obj: Mesh | CSS3DObject): void {
|
|
226
|
-
if (obj instanceof Mesh) {
|
|
227
|
-
if (obj.geometry) {
|
|
228
|
-
obj.geometry.dispose();
|
|
229
|
-
}
|
|
230
|
-
if (obj.material) {
|
|
231
|
-
Array.isArray(obj.material)? obj.material.map(m => m.dispose()) : obj.material.dispose();
|
|
232
|
-
}
|
|
233
|
-
obj = undefined;
|
|
234
|
-
} else {
|
|
235
|
-
obj.element = undefined;
|
|
236
|
-
obj = undefined;
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
private _clearScenes(): void {
|
|
241
|
-
const meshes: Mesh[] = this._tiles3D.map(t => t.mesh);
|
|
242
|
-
const cssObjs: CSS3DObject[] = this._tiles3D.map(t => t.object);
|
|
243
|
-
this._scene.remove(...meshes);
|
|
244
|
-
meshes.map(m => this._disposeObject(m));
|
|
245
|
-
meshes.length = 0;
|
|
246
|
-
this._sceneCss.remove(...cssObjs);
|
|
247
|
-
cssObjs.map(o => this._disposeObject(o));
|
|
248
|
-
cssObjs.length = 0;
|
|
249
|
-
this._tiles3D.length = 0;
|
|
250
|
-
this._targetPositions.length = 0;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
private _createTiles(): void {
|
|
254
|
-
this._clearScenes();
|
|
255
|
-
this._tileSize.x = this.tileWidth;
|
|
256
|
-
this._tileSize.y = this.tileHeight;
|
|
257
|
-
const tileWidth = this._tileSize.x + this._tileMargin;
|
|
258
|
-
const numItems: number = Math.max(this._tileElements.length, 20);
|
|
259
|
-
this._fullCircle = this._tileElements.length >= 20;
|
|
260
|
-
let angleTileDeg: number = 360 / numItems;
|
|
261
|
-
const circumference: number = numItems * tileWidth;
|
|
262
|
-
const radius: number = circumference / (Math.PI * 2);
|
|
263
|
-
const y = this.shadow ? 75 : 45;
|
|
264
|
-
|
|
265
|
-
const len: number = numItems;
|
|
266
|
-
let angleDeg: number = 90;
|
|
267
|
-
const position: Vector3 = new Vector3();
|
|
268
|
-
for (var i = 0; i < len; i++) {
|
|
269
|
-
const angle = angleDeg * ( Math.PI / 180 ); // Radians
|
|
270
|
-
const x = radius * Math.cos(angle);
|
|
271
|
-
const z = -radius + radius * Math.sin(angle);
|
|
272
|
-
position.set(x, y, z);
|
|
273
|
-
this._targetPositions.push(position.clone());
|
|
274
|
-
if (i < this._tileElements.length) {
|
|
275
|
-
const tile: CarouselItem = new CarouselItem({tileSize: this._tileSize}, i, (idx: number) => this._rotateTo(idx));
|
|
276
|
-
tile.setPosition(position);
|
|
277
|
-
tile.setContent(this._tileElements[i].nativeElement);
|
|
278
|
-
this._scene.add(tile.mesh);
|
|
279
|
-
this._sceneCss.add(tile.object);
|
|
280
|
-
this._tiles3D.push(tile);
|
|
281
|
-
}
|
|
282
|
-
angleDeg = angleDeg - angleTileDeg; // CW instead of CCW
|
|
283
|
-
}
|
|
284
|
-
this._adjustCameraZoom();
|
|
285
|
-
this._tileOffset = this.selectedIndex;
|
|
286
|
-
this._rotate(0);
|
|
287
|
-
this._render();
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
private _adjustCameraZoom(): void {
|
|
291
|
-
if (this._tiles3D.length === 0) {
|
|
292
|
-
return;
|
|
293
|
-
}
|
|
294
|
-
const object = this._tiles3D[0].mesh;
|
|
295
|
-
// offset = offset || 1.15;
|
|
296
|
-
|
|
297
|
-
// get bounding box of object - this will be used to setup controls and camera
|
|
298
|
-
const boundingBox = new Box3();
|
|
299
|
-
boundingBox.setFromObject(object);
|
|
300
|
-
const center: Vector3 = new Vector3();
|
|
301
|
-
boundingBox.getCenter(center);
|
|
302
|
-
const size: Vector3 = new Vector3();
|
|
303
|
-
boundingBox.getSize(size);
|
|
304
|
-
|
|
305
|
-
// get the max side of the bounding box (fits to width OR height as needed )
|
|
306
|
-
const maxDim = Math.max(size.x, size.y, size.z);
|
|
307
|
-
this._camera.position.z = Math.abs((maxDim / 2) * Math.atan(this._camera.fov / 2));
|
|
308
|
-
this._camera.lookAt(center);
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
private _checkNavigationButtons(): void {
|
|
312
|
-
const currentIdx: number = this._getSelectedIndex();
|
|
313
|
-
this.canNavigateLeft = (currentIdx > 0) || this._fullCircle;
|
|
314
|
-
this.canNavigateRight = (currentIdx < this._tileElements.length - 1) || this._fullCircle;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
private _animate() {
|
|
318
|
-
TWEEN.update();
|
|
319
|
-
setTimeout(() => {
|
|
320
|
-
this._renderer.setAnimationLoop(() => this._animate());
|
|
321
|
-
}, 200);
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
private _getSelectedIndex() {
|
|
325
|
-
return Math.max(0, Math.min(this.selectedIndex, this._tileElements.length - 1));
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
private _rotate(duration) {
|
|
329
|
-
TWEEN.removeAll();
|
|
330
|
-
|
|
331
|
-
for (let i: number = 0; i < this._tiles3D.length; i++) {
|
|
332
|
-
const tile = this._tiles3D[i];
|
|
333
|
-
|
|
334
|
-
if (Math.abs(this._tileOffset) > this._targetPositions.length) { // full circle
|
|
335
|
-
this._tileOffset = this._tileOffset > 0 ? 1 : -1;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
let positionIdx: number = i - this._tileOffset;
|
|
339
|
-
if (positionIdx > this._targetPositions.length - 1) {
|
|
340
|
-
positionIdx = positionIdx - this._targetPositions.length;
|
|
341
|
-
} else if (positionIdx < 0) {
|
|
342
|
-
positionIdx = this._targetPositions.length + positionIdx;
|
|
343
|
-
}
|
|
344
|
-
const target = this._targetPositions[positionIdx];
|
|
345
|
-
|
|
346
|
-
new TWEEN.Tween(tile.object.position)
|
|
347
|
-
.to(target, duration)
|
|
348
|
-
.easing(TWEEN.Easing.Quartic.Out)
|
|
349
|
-
.start();
|
|
350
|
-
new TWEEN.Tween(tile.mesh.position)
|
|
351
|
-
.to(target, duration)
|
|
352
|
-
.easing(TWEEN.Easing.Quartic.Out)
|
|
353
|
-
.start();
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
new TWEEN.Tween()
|
|
357
|
-
.to({}, duration * 2)
|
|
358
|
-
.onUpdate(() => {
|
|
359
|
-
this._render();
|
|
360
|
-
})
|
|
361
|
-
.start();
|
|
362
|
-
|
|
363
|
-
this.selectedIndex = this._tileOffset;
|
|
364
|
-
this._checkNavigationButtons();
|
|
365
|
-
this.indexSelected.next(this._getSelectedIndex());
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
private _rotateTo(index: number) {
|
|
369
|
-
const current = this._getSelectedIndex();
|
|
370
|
-
this._tileOffset += index - current;
|
|
371
|
-
this._rotate(800);
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
private _resizeCanvasToDisplaySize() {
|
|
375
|
-
setTimeout(() => {
|
|
376
|
-
if (!this.canvasContainer || !this.canvasContainer.nativeElement) {
|
|
377
|
-
return;
|
|
378
|
-
}
|
|
379
|
-
this._camera.aspect = this.canvasContainer.nativeElement.clientWidth / this.canvasContainer.nativeElement.clientHeight;
|
|
380
|
-
this._camera.updateProjectionMatrix();
|
|
381
|
-
this._rendererCss.setSize(this.canvasContainer.nativeElement.clientWidth, this.canvasContainer.nativeElement.clientHeight);
|
|
382
|
-
this._renderer.setSize(this.canvasContainer.nativeElement.clientWidth, this.canvasContainer.nativeElement.clientHeight);
|
|
383
|
-
this._render();
|
|
384
|
-
});
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
private _render() {
|
|
388
|
-
this._rendererCss.render(this._sceneCss, this._camera);
|
|
389
|
-
this._renderer.render(this._scene, this._camera);
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import {NgModule} from "@angular/core";
|
|
2
|
-
import {CommonModule} from "@angular/common";
|
|
3
|
-
import {Carousel3dComponent} from "./carousel-3d.component";
|
|
4
|
-
|
|
5
|
-
@NgModule({
|
|
6
|
-
imports: [
|
|
7
|
-
CommonModule
|
|
8
|
-
],
|
|
9
|
-
declarations: [
|
|
10
|
-
Carousel3dComponent
|
|
11
|
-
],
|
|
12
|
-
exports: [
|
|
13
|
-
Carousel3dComponent
|
|
14
|
-
]
|
|
15
|
-
})
|
|
16
|
-
export class Carousel3dModule {
|
|
17
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import {CSS3DObject} from "three/examples/jsm/renderers/CSS3DRenderer";
|
|
2
|
-
import {Mesh, PlaneBufferGeometry, Vector2, Vector3} from "three";
|
|
3
|
-
|
|
4
|
-
export class CarouselItem {
|
|
5
|
-
|
|
6
|
-
public object: CSS3DObject;
|
|
7
|
-
public mesh: Mesh;
|
|
8
|
-
public index: number;
|
|
9
|
-
|
|
10
|
-
private _options: {
|
|
11
|
-
tileSize: Vector2,
|
|
12
|
-
tileBackgroundColor: any,
|
|
13
|
-
textSelectable: boolean,
|
|
14
|
-
tileBorderColor: any
|
|
15
|
-
};
|
|
16
|
-
private _element: HTMLDivElement;
|
|
17
|
-
|
|
18
|
-
constructor(options, index, onClick) {
|
|
19
|
-
this._options = options || {};
|
|
20
|
-
this.index = index;
|
|
21
|
-
|
|
22
|
-
const width = this._options.tileSize?.x || 0;
|
|
23
|
-
const height = this._options.tileSize?.y || 0;
|
|
24
|
-
|
|
25
|
-
this._element = document.createElement('div');
|
|
26
|
-
// this._element.style.backgroundColor = this._options.tileBackgroundColor;
|
|
27
|
-
this._element.style.width = width + "px";
|
|
28
|
-
this._element.style.height = height + "px";
|
|
29
|
-
|
|
30
|
-
this._element.addEventListener("click", () => {
|
|
31
|
-
if (onClick) {
|
|
32
|
-
onClick(this.index);
|
|
33
|
-
}
|
|
34
|
-
}, false);
|
|
35
|
-
|
|
36
|
-
this.object = new CSS3DObject(this._element);
|
|
37
|
-
|
|
38
|
-
const geometry = new PlaneBufferGeometry(width, height);
|
|
39
|
-
this.mesh = new Mesh(geometry, options.tileMaterial);
|
|
40
|
-
this.mesh.castShadow = true;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
public setPosition(position: Vector3): void {
|
|
44
|
-
if (this.mesh) {
|
|
45
|
-
this.mesh.position.copy(position);
|
|
46
|
-
}
|
|
47
|
-
if (this.object) {
|
|
48
|
-
this.object.position.copy(position);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
public setContent(content): void {
|
|
53
|
-
if (this._element) {
|
|
54
|
-
|
|
55
|
-
// remove any exising tile content before setting new content
|
|
56
|
-
while (this._element.lastElementChild) {
|
|
57
|
-
this._element.removeChild(this._element.lastElementChild);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
try {
|
|
61
|
-
this._element.appendChild(content);
|
|
62
|
-
}
|
|
63
|
-
catch (err) {
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
public setVisible(visible: boolean): void {
|
|
69
|
-
if (this.mesh) {
|
|
70
|
-
this.mesh.visible = visible;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
if (this.object) {
|
|
74
|
-
this.object.visible = visible;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|