@mozaic-ds/angular 0.21.0 → 0.22.0-beta
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/LICENSE +22 -0
- package/README.md +92 -0
- package/dist/mozaic-angular/README.md +0 -0
- package/dist/mozaic-angular/adeo/README.md +0 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/android/colors.xml +482 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/android/font_dimens.xml +18 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/css/_variables.scss +626 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/css/root.scss +478 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/js/tokens.js +574 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/js/tokensObject.js +9637 -0
- package/dist/mozaic-angular/adeo/assets/tokens/adeo/scss/_tokens.scss +1617 -0
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.module.mjs +15 -0
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.service.mjs +30 -0
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/common/index.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/boolean-property.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/generate-id.mjs +7 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/get-random-number.mjs +6 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/index.mjs +5 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/overwrite-style.mjs +5 -0
- package/dist/mozaic-angular/adeo/esm2020/common/utils/public-api.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.component.mjs +30 -0
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/badge/index.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.component.mjs +53 -0
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/button/index.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.component.mjs +58 -0
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.module.mjs +21 -0
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-config.mjs +9 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-injector.mjs +22 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-ref.mjs +49 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/index.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog-animation.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.component.mjs +57 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.module.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.service.mjs +67 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-config.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-di-params.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-ref.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/index.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/public-api.mjs +6 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-config.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-data.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-ref.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/index.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/field/directives/input-icon.directive.mjs +15 -0
- package/dist/mozaic-angular/adeo/esm2020/components/field/field-error.component.mjs +13 -0
- package/dist/mozaic-angular/adeo/esm2020/components/field/field.component.mjs +40 -0
- package/dist/mozaic-angular/adeo/esm2020/components/field/field.module.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/field/public-api.mjs +5 -0
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon-size.mjs +8 -0
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.component.mjs +49 -0
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.service.mjs +42 -0
- package/dist/mozaic-angular/adeo/esm2020/components/icon/public-api.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-injector.mjs +22 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-ref.mjs +38 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/index.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-config.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-di-params.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-ref.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer-animation.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.component.mjs +40 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.module.mjs +21 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.service.mjs +56 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/public-api.mjs +6 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/index.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-config.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-data.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-ref.token.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.component.mjs +47 -0
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.mjs +11 -0
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.module.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.service.mjs +53 -0
- package/dist/mozaic-angular/adeo/esm2020/components/loader/public-api.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-animation.mjs +21 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-container.component.mjs +38 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-footer.mjs +11 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-message.mjs +11 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-title.mjs +11 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.component.mjs +29 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.mjs +8 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.module.mjs +66 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.service.mjs +40 -0
- package/dist/mozaic-angular/adeo/esm2020/components/notification/public-api.mjs +9 -0
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.component.mjs +133 -0
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.module.mjs +23 -0
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-size.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-theme.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +38 -0
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/public-api.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/select/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/select/select-size.mjs +6 -0
- package/dist/mozaic-angular/adeo/esm2020/components/select/select.component.mjs +25 -0
- package/dist/mozaic-angular/adeo/esm2020/components/select/select.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/public-api.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/step-state.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/step.component.mjs +51 -0
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.component.mjs +79 -0
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.module.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/public-api.mjs +4 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab-selectors.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab.component.mjs +53 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.component.mjs +126 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.module.mjs +19 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tag/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag-type.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.component.mjs +61 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.module.mjs +19 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.component.mjs +43 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.module.mjs +16 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.component.mjs +64 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.module.mjs +20 -0
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle-size.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.component.mjs +59 -0
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip-position.mjs +2 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.component.mjs +32 -0
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.module.mjs +18 -0
- package/dist/mozaic-angular/adeo/esm2020/mozaic-ds-angular.mjs +5 -0
- package/dist/mozaic-angular/adeo/esm2020/public-api.mjs +3 -0
- package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs +2052 -0
- package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs.map +1 -0
- package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs +2025 -0
- package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs.map +1 -0
- package/dist/mozaic-angular/adeo/package.json +31 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_64px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_24px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_32px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_48px.svg +1 -0
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_64px.svg +1 -0
- package/dist/mozaic-angular/assets/special-icons/checkbox-checked-disabled.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/checkbox-checked.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate-disabled.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/invalid-cross.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/layer-cross.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/notification-danger-m.svg +4 -0
- package/dist/mozaic-angular/assets/special-icons/notification-danger-s.svg +4 -0
- package/dist/mozaic-angular/assets/special-icons/notification-information-m.svg +5 -0
- package/dist/mozaic-angular/assets/special-icons/notification-information-s.svg +5 -0
- package/dist/mozaic-angular/assets/special-icons/notification-success-m.svg +4 -0
- package/dist/mozaic-angular/assets/special-icons/notification-success-s.svg +4 -0
- package/dist/mozaic-angular/assets/special-icons/notification-warning-m.svg +5 -0
- package/dist/mozaic-angular/assets/special-icons/notification-warning-s.svg +5 -0
- package/dist/mozaic-angular/assets/special-icons/remove-tag.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/toggle-checked-disabled.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/toggle-checked.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/toggle-cross-disabled.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/toggle-cross.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/tooltip-triangle.svg +3 -0
- package/dist/mozaic-angular/assets/special-icons/valid-check-mark.svg +11 -0
- package/dist/mozaic-angular/assets/tokens/adeo/android/colors.xml +482 -0
- package/dist/mozaic-angular/assets/tokens/adeo/android/font_dimens.xml +18 -0
- package/dist/mozaic-angular/assets/tokens/adeo/css/_variables.scss +626 -0
- package/dist/mozaic-angular/assets/tokens/adeo/css/root.scss +478 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
- package/dist/mozaic-angular/assets/tokens/adeo/js/tokens.js +574 -0
- package/dist/mozaic-angular/assets/tokens/adeo/js/tokensObject.js +9637 -0
- package/dist/mozaic-angular/assets/tokens/adeo/scss/_tokens.scss +1617 -0
- package/dist/mozaic-angular/common/global-events/global-events.module.d.ts +6 -0
- package/dist/mozaic-angular/common/global-events/global-events.service.d.ts +11 -0
- package/dist/mozaic-angular/common/global-events/public-api.d.ts +2 -0
- package/dist/mozaic-angular/common/index.d.ts +2 -0
- package/dist/mozaic-angular/common/utils/boolean-property.d.ts +1 -0
- package/dist/mozaic-angular/common/utils/generate-id.d.ts +1 -0
- package/dist/mozaic-angular/common/utils/get-random-number.d.ts +1 -0
- package/dist/mozaic-angular/common/utils/index.d.ts +4 -0
- package/dist/mozaic-angular/common/utils/overwrite-style.d.ts +2 -0
- package/dist/mozaic-angular/common/utils/public-api.d.ts +1 -0
- package/dist/mozaic-angular/components/badge/badge.component.d.ts +8 -0
- package/dist/mozaic-angular/components/badge/badge.d.ts +3 -0
- package/dist/mozaic-angular/components/badge/badge.module.d.ts +8 -0
- package/dist/mozaic-angular/components/badge/index.d.ts +2 -0
- package/dist/mozaic-angular/components/button/button.component.d.ts +16 -0
- package/dist/mozaic-angular/components/button/button.d.ts +7 -0
- package/dist/mozaic-angular/components/button/button.module.d.ts +8 -0
- package/dist/mozaic-angular/components/button/index.d.ts +2 -0
- package/dist/mozaic-angular/components/checkbox/checkbox.component.d.ts +21 -0
- package/dist/mozaic-angular/components/checkbox/checkbox.module.d.ts +8 -0
- package/dist/mozaic-angular/components/checkbox/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/dialog/classes/dialog-config.d.ts +9 -0
- package/dist/mozaic-angular/components/dialog/classes/dialog-injector.d.ts +10 -0
- package/dist/mozaic-angular/components/dialog/classes/dialog-ref.d.ts +25 -0
- package/dist/mozaic-angular/components/dialog/classes/index.d.ts +3 -0
- package/dist/mozaic-angular/components/dialog/dialog-animation.d.ts +1 -0
- package/dist/mozaic-angular/components/dialog/dialog.component.d.ts +23 -0
- package/dist/mozaic-angular/components/dialog/dialog.module.d.ts +8 -0
- package/dist/mozaic-angular/components/dialog/dialog.service.d.ts +20 -0
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-config.d.ts +7 -0
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-di-params.d.ts +6 -0
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-ref.d.ts +18 -0
- package/dist/mozaic-angular/components/dialog/interfaces/index.d.ts +3 -0
- package/dist/mozaic-angular/components/dialog/public-api.d.ts +5 -0
- package/dist/mozaic-angular/components/dialog/tokens/dialog-config.token.d.ts +2 -0
- package/dist/mozaic-angular/components/dialog/tokens/dialog-data.token.d.ts +2 -0
- package/dist/mozaic-angular/components/dialog/tokens/dialog-ref.token.d.ts +2 -0
- package/dist/mozaic-angular/components/dialog/tokens/index.d.ts +3 -0
- package/dist/mozaic-angular/components/field/directives/input-icon.directive.d.ts +7 -0
- package/dist/mozaic-angular/components/field/field-error.component.d.ts +5 -0
- package/dist/mozaic-angular/components/field/field.component.d.ts +16 -0
- package/dist/mozaic-angular/components/field/field.module.d.ts +10 -0
- package/dist/mozaic-angular/components/field/public-api.d.ts +4 -0
- package/dist/mozaic-angular/components/icon/icon-size.d.ts +6 -0
- package/dist/mozaic-angular/components/icon/icon.component.d.ts +15 -0
- package/dist/mozaic-angular/components/icon/icon.module.d.ts +8 -0
- package/dist/mozaic-angular/components/icon/icon.service.d.ts +13 -0
- package/dist/mozaic-angular/components/icon/public-api.d.ts +3 -0
- package/dist/mozaic-angular/components/layer/classes/layer-injector.d.ts +10 -0
- package/dist/mozaic-angular/components/layer/classes/layer-ref.d.ts +21 -0
- package/dist/mozaic-angular/components/layer/interfaces/index.d.ts +3 -0
- package/dist/mozaic-angular/components/layer/interfaces/layer-config.d.ts +4 -0
- package/dist/mozaic-angular/components/layer/interfaces/layer-di-params.d.ts +6 -0
- package/dist/mozaic-angular/components/layer/interfaces/layer-ref.d.ts +15 -0
- package/dist/mozaic-angular/components/layer/layer-animation.d.ts +1 -0
- package/dist/mozaic-angular/components/layer/layer.component.d.ts +19 -0
- package/dist/mozaic-angular/components/layer/layer.module.d.ts +9 -0
- package/dist/mozaic-angular/components/layer/layer.service.d.ts +19 -0
- package/dist/mozaic-angular/components/layer/public-api.d.ts +5 -0
- package/dist/mozaic-angular/components/layer/tokens/index.d.ts +3 -0
- package/dist/mozaic-angular/components/layer/tokens/layer-config.token.d.ts +2 -0
- package/dist/mozaic-angular/components/layer/tokens/layer-data.token.d.ts +2 -0
- package/dist/mozaic-angular/components/layer/tokens/layer-ref.token.d.ts +2 -0
- package/dist/mozaic-angular/components/loader/loader.component.d.ts +25 -0
- package/dist/mozaic-angular/components/loader/loader.d.ts +16 -0
- package/dist/mozaic-angular/components/loader/loader.module.d.ts +8 -0
- package/dist/mozaic-angular/components/loader/loader.service.d.ts +18 -0
- package/dist/mozaic-angular/components/loader/public-api.d.ts +3 -0
- package/dist/mozaic-angular/components/notification/notification-animation.d.ts +1 -0
- package/dist/mozaic-angular/components/notification/notification-container.component.d.ts +12 -0
- package/dist/mozaic-angular/components/notification/notification-footer.d.ts +5 -0
- package/dist/mozaic-angular/components/notification/notification-message.d.ts +5 -0
- package/dist/mozaic-angular/components/notification/notification-title.d.ts +5 -0
- package/dist/mozaic-angular/components/notification/notification.component.d.ts +9 -0
- package/dist/mozaic-angular/components/notification/notification.d.ts +15 -0
- package/dist/mozaic-angular/components/notification/notification.module.d.ts +15 -0
- package/dist/mozaic-angular/components/notification/notification.service.d.ts +16 -0
- package/dist/mozaic-angular/components/notification/public-api.d.ts +8 -0
- package/dist/mozaic-angular/components/pagination/pagination.component.d.ts +46 -0
- package/dist/mozaic-angular/components/pagination/pagination.d.ts +7 -0
- package/dist/mozaic-angular/components/pagination/pagination.module.d.ts +13 -0
- package/dist/mozaic-angular/components/pagination/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/progress-bar/progress-bar-size.d.ts +1 -0
- package/dist/mozaic-angular/components/progress-bar/progress-bar-theme.d.ts +1 -0
- package/dist/mozaic-angular/components/progress-bar/progress-bar.component.d.ts +15 -0
- package/dist/mozaic-angular/components/progress-bar/progress-bar.module.d.ts +8 -0
- package/dist/mozaic-angular/components/progress-bar/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/public-api.d.ts +19 -0
- package/dist/mozaic-angular/components/select/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/select/select-size.d.ts +5 -0
- package/dist/mozaic-angular/components/select/select.component.d.ts +8 -0
- package/dist/mozaic-angular/components/select/select.module.d.ts +8 -0
- package/dist/mozaic-angular/components/stepper/public-api.d.ts +3 -0
- package/dist/mozaic-angular/components/stepper/step-state.d.ts +1 -0
- package/dist/mozaic-angular/components/stepper/step.component.d.ts +20 -0
- package/dist/mozaic-angular/components/stepper/stepper.component.d.ts +20 -0
- package/dist/mozaic-angular/components/stepper/stepper.module.d.ts +10 -0
- package/dist/mozaic-angular/components/tabs/public-api.d.ts +3 -0
- package/dist/mozaic-angular/components/tabs/tab-selectors.d.ts +2 -0
- package/dist/mozaic-angular/components/tabs/tab.component.d.ts +16 -0
- package/dist/mozaic-angular/components/tabs/tabs.component.d.ts +36 -0
- package/dist/mozaic-angular/components/tabs/tabs.module.d.ts +9 -0
- package/dist/mozaic-angular/components/tag/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/tag/tag-type.d.ts +1 -0
- package/dist/mozaic-angular/components/tag/tag.component.d.ts +23 -0
- package/dist/mozaic-angular/components/tag/tag.module.d.ts +9 -0
- package/dist/mozaic-angular/components/text-area/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/text-area/text-area.component.d.ts +12 -0
- package/dist/mozaic-angular/components/text-area/text-area.module.d.ts +7 -0
- package/dist/mozaic-angular/components/text-input/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/text-input/text-input.component.d.ts +21 -0
- package/dist/mozaic-angular/components/text-input/text-input.d.ts +1 -0
- package/dist/mozaic-angular/components/text-input/text-input.module.d.ts +10 -0
- package/dist/mozaic-angular/components/toggle/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/toggle/toggle-size.d.ts +1 -0
- package/dist/mozaic-angular/components/toggle/toggle.component.d.ts +22 -0
- package/dist/mozaic-angular/components/toggle/toggle.module.d.ts +8 -0
- package/dist/mozaic-angular/components/tooltip/public-api.d.ts +2 -0
- package/dist/mozaic-angular/components/tooltip/tooltip-position.d.ts +1 -0
- package/dist/mozaic-angular/components/tooltip/tooltip.component.d.ts +11 -0
- package/dist/mozaic-angular/components/tooltip/tooltip.module.d.ts +8 -0
- package/dist/mozaic-angular/esm2020/common/global-events/global-events.module.mjs +15 -0
- package/dist/mozaic-angular/esm2020/common/global-events/global-events.service.mjs +30 -0
- package/dist/mozaic-angular/esm2020/components/badge/badge.component.mjs +30 -0
- package/dist/mozaic-angular/esm2020/components/badge/badge.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/button/button.component.mjs +53 -0
- package/dist/mozaic-angular/esm2020/components/button/button.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.component.mjs +58 -0
- package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.module.mjs +21 -0
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.component.mjs +57 -0
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.module.mjs +20 -0
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.service.mjs +67 -0
- package/dist/mozaic-angular/esm2020/components/field/directives/input-icon.directive.mjs +15 -0
- package/dist/mozaic-angular/esm2020/components/field/field-error.component.mjs +13 -0
- package/dist/mozaic-angular/esm2020/components/field/field.component.mjs +40 -0
- package/dist/mozaic-angular/esm2020/components/field/field.module.mjs +20 -0
- package/dist/mozaic-angular/esm2020/components/icon/icon.component.mjs +49 -0
- package/dist/mozaic-angular/esm2020/components/icon/icon.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/icon/icon.service.mjs +42 -0
- package/dist/mozaic-angular/esm2020/components/layer/layer.component.mjs +40 -0
- package/dist/mozaic-angular/esm2020/components/layer/layer.module.mjs +21 -0
- package/dist/mozaic-angular/esm2020/components/layer/layer.service.mjs +56 -0
- package/dist/mozaic-angular/esm2020/components/loader/loader.component.mjs +47 -0
- package/dist/mozaic-angular/esm2020/components/loader/loader.module.mjs +20 -0
- package/dist/mozaic-angular/esm2020/components/loader/loader.service.mjs +53 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification-container.component.mjs +38 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification-footer.mjs +11 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification-message.mjs +11 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification-title.mjs +11 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification.component.mjs +29 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification.module.mjs +66 -0
- package/dist/mozaic-angular/esm2020/components/notification/notification.service.mjs +40 -0
- package/dist/mozaic-angular/esm2020/components/pagination/pagination.component.mjs +133 -0
- package/dist/mozaic-angular/esm2020/components/pagination/pagination.module.mjs +23 -0
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.component.mjs +38 -0
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/select/select.component.mjs +25 -0
- package/dist/mozaic-angular/esm2020/components/select/select.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/stepper/step.component.mjs +51 -0
- package/dist/mozaic-angular/esm2020/components/stepper/stepper.component.mjs +79 -0
- package/dist/mozaic-angular/esm2020/components/stepper/stepper.module.mjs +20 -0
- package/dist/mozaic-angular/esm2020/components/tabs/tab.component.mjs +53 -0
- package/dist/mozaic-angular/esm2020/components/tabs/tabs.component.mjs +126 -0
- package/dist/mozaic-angular/esm2020/components/tabs/tabs.module.mjs +19 -0
- package/dist/mozaic-angular/esm2020/components/tag/tag.component.mjs +61 -0
- package/dist/mozaic-angular/esm2020/components/tag/tag.module.mjs +19 -0
- package/dist/mozaic-angular/esm2020/components/text-area/text-area.component.mjs +43 -0
- package/dist/mozaic-angular/esm2020/components/text-area/text-area.module.mjs +16 -0
- package/dist/mozaic-angular/esm2020/components/text-input/text-input.component.mjs +64 -0
- package/dist/mozaic-angular/esm2020/components/text-input/text-input.module.mjs +20 -0
- package/dist/mozaic-angular/esm2020/components/toggle/toggle.component.mjs +59 -0
- package/dist/mozaic-angular/esm2020/components/toggle/toggle.module.mjs +18 -0
- package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.component.mjs +32 -0
- package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.module.mjs +18 -0
- package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs +2052 -0
- package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs.map +1 -0
- package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs +2025 -0
- package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs.map +1 -0
- package/dist/mozaic-angular/index.d.ts +5 -0
- package/dist/mozaic-angular/package.json +31 -0
- package/dist/mozaic-angular/public-api.d.ts +2 -0
- package/package.json +105 -26
- package/assets/moz-icons/Universe_Floor_24px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_32px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_48px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_64px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_24px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_32px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_48px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_64px.svg +0 -1
- package/esm2020/common/global-events/global-events.module.mjs +0 -15
- package/esm2020/common/global-events/global-events.service.mjs +0 -30
- package/esm2020/components/badge/badge.component.mjs +0 -30
- package/esm2020/components/badge/badge.module.mjs +0 -18
- package/esm2020/components/button/button.component.mjs +0 -53
- package/esm2020/components/button/button.module.mjs +0 -18
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -58
- package/esm2020/components/checkbox/checkbox.module.mjs +0 -21
- package/esm2020/components/dialog/dialog.component.mjs +0 -57
- package/esm2020/components/dialog/dialog.module.mjs +0 -20
- package/esm2020/components/dialog/dialog.service.mjs +0 -67
- package/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
- package/esm2020/components/field/field-error.component.mjs +0 -13
- package/esm2020/components/field/field.component.mjs +0 -40
- package/esm2020/components/field/field.module.mjs +0 -20
- package/esm2020/components/icon/icon.component.mjs +0 -49
- package/esm2020/components/icon/icon.module.mjs +0 -18
- package/esm2020/components/icon/icon.service.mjs +0 -42
- package/esm2020/components/layer/layer.component.mjs +0 -40
- package/esm2020/components/layer/layer.module.mjs +0 -21
- package/esm2020/components/layer/layer.service.mjs +0 -56
- package/esm2020/components/loader/loader.component.mjs +0 -47
- package/esm2020/components/loader/loader.module.mjs +0 -20
- package/esm2020/components/loader/loader.service.mjs +0 -53
- package/esm2020/components/notification/notification-container.component.mjs +0 -38
- package/esm2020/components/notification/notification-footer.mjs +0 -11
- package/esm2020/components/notification/notification-message.mjs +0 -11
- package/esm2020/components/notification/notification-title.mjs +0 -11
- package/esm2020/components/notification/notification.component.mjs +0 -29
- package/esm2020/components/notification/notification.module.mjs +0 -66
- package/esm2020/components/notification/notification.service.mjs +0 -40
- package/esm2020/components/pagination/pagination.component.mjs +0 -133
- package/esm2020/components/pagination/pagination.module.mjs +0 -23
- package/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
- package/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
- package/esm2020/components/select/select.component.mjs +0 -25
- package/esm2020/components/select/select.module.mjs +0 -18
- package/esm2020/components/stepper/step.component.mjs +0 -51
- package/esm2020/components/stepper/stepper.component.mjs +0 -79
- package/esm2020/components/stepper/stepper.module.mjs +0 -20
- package/esm2020/components/tabs/tab.component.mjs +0 -53
- package/esm2020/components/tabs/tabs.component.mjs +0 -126
- package/esm2020/components/tabs/tabs.module.mjs +0 -19
- package/esm2020/components/tag/tag.component.mjs +0 -61
- package/esm2020/components/tag/tag.module.mjs +0 -19
- package/esm2020/components/text-area/text-area.component.mjs +0 -43
- package/esm2020/components/text-area/text-area.module.mjs +0 -16
- package/esm2020/components/text-input/text-input.component.mjs +0 -64
- package/esm2020/components/text-input/text-input.module.mjs +0 -20
- package/esm2020/components/toggle/toggle.component.mjs +0 -59
- package/esm2020/components/toggle/toggle.module.mjs +0 -18
- package/esm2020/components/tooltip/tooltip.component.mjs +0 -32
- package/esm2020/components/tooltip/tooltip.module.mjs +0 -18
- package/fesm2015/mozaic-ds-angular.mjs +0 -2052
- package/fesm2015/mozaic-ds-angular.mjs.map +0 -1
- package/fesm2020/mozaic-ds-angular.mjs +0 -2025
- package/fesm2020/mozaic-ds-angular.mjs.map +0 -1
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-checked-disabled.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-checked.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-indeterminate-disabled.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-indeterminate.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/invalid-cross.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/layer-cross.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-danger-m.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-danger-s.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-information-m.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-information-s.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-success-m.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-success-s.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-warning-m.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-warning-s.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/remove-tag.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-checked-disabled.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-checked.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-cross-disabled.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-cross.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/tooltip-triangle.svg +0 -0
- /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/valid-check-mark.svg +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/global-events/global-events.module.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/global-events/global-events.service.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/global-events/public-api.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/index.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/boolean-property.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/generate-id.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/get-random-number.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/index.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/overwrite-style.d.ts +0 -0
- /package/{common → dist/mozaic-angular/adeo/common}/utils/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/badge/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/button/button.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/button/button.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/button/button.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/button/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/checkbox/checkbox.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/checkbox/checkbox.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/checkbox/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-config.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-injector.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-ref.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog-animation.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.service.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-config.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-di-params.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-ref.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-config.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-data.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-ref.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/field/directives/input-icon.directive.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/field/field-error.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/field/field.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/field/field.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/field/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/icon/icon-size.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.service.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/icon/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/classes/layer-injector.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/classes/layer-ref.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-config.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-di-params.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-ref.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/layer-animation.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.service.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/index.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-config.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-data.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-ref.token.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.service.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/loader/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-animation.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-container.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-footer.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-message.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-title.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.service.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/notification/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/pagination/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar-size.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar-theme.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/select/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/select/select-size.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/select/select.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/select/select.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/stepper/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/stepper/step-state.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/stepper/step.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/stepper/stepper.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/stepper/stepper.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tabs/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tabs/tab-selectors.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tabs/tab.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tabs/tabs.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tabs/tabs.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tag/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tag/tag-type.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tag/tag.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tag/tag.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-area/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-area/text-area.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-area/text-area.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-input/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/toggle/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle-size.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle.module.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tooltip/public-api.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip-position.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip.component.d.ts +0 -0
- /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip.module.d.ts +0 -0
- /package/{index.d.ts → dist/mozaic-angular/adeo/index.d.ts} +0 -0
- /package/{public-api.d.ts → dist/mozaic-angular/adeo/public-api.d.ts} +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_96px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_96px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_16px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_64px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_24px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_32px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_48px.svg +0 -0
- /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_64px.svg +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/global-events/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/boolean-property.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/generate-id.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/get-random-number.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/overwrite-style.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/badge/badge.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/badge/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/button/button.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/button/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-config.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-injector.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-ref.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/dialog-animation.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-config.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-di-params.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-ref.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-config.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-data.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-ref.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/field/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/icon/icon-size.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/icon/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/classes/layer-injector.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/classes/layer-ref.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-config.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-di-params.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-ref.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/layer-animation.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/index.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-config.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-data.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-ref.token.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/loader/loader.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/loader/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/notification-animation.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/notification.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/pagination/pagination.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/pagination/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/progress-bar-size.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/progress-bar-theme.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/select/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/select/select-size.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/stepper/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/stepper/step-state.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tabs/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tabs/tab-selectors.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tag/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tag/tag-type.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-area/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-input/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-input/text-input.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/toggle/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/toggle/toggle-size.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tooltip/tooltip-position.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/mozaic-ds-angular.mjs +0 -0
- /package/{esm2020 → dist/mozaic-angular/esm2020}/public-api.mjs +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class NotificationMessageComponent {
|
|
4
|
+
}
|
|
5
|
+
NotificationMessageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
NotificationMessageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationMessageComponent, selector: "[mozNotificationMessage]", host: { properties: { "class.mc-notification__message": "true" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ template: '<ng-content></ng-content>', selector: '[mozNotificationMessage]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification__message]': 'true' }, styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"] }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLW1lc3NhZ2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9ub3RpZmljYXRpb24vbm90aWZpY2F0aW9uLW1lc3NhZ2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFVdEYsTUFBTSxPQUFPLDRCQUE0Qjs7eUhBQTVCLDRCQUE0Qjs2R0FBNUIsNEJBQTRCLG9JQVA3QiwyQkFBMkI7MkZBTzFCLDRCQUE0QjtrQkFSeEMsU0FBUzsrQkFDRSwyQkFBMkIsWUFDM0IsMEJBQTBCLG1CQUVuQix1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CLEVBQUUsa0NBQWtDLEVBQUUsTUFBTSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PicsXG4gIHNlbGVjdG9yOiAnW21vek5vdGlmaWNhdGlvbk1lc3NhZ2VdJyxcbiAgc3R5bGVVcmxzOiBbJy4vbm90aWZpY2F0aW9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7ICdbY2xhc3MubWMtbm90aWZpY2F0aW9uX19tZXNzYWdlXSc6ICd0cnVlJyB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3RpZmljYXRpb25NZXNzYWdlQ29tcG9uZW50IHt9XG4iXX0=
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class NotificationTitleComponent {
|
|
4
|
+
}
|
|
5
|
+
NotificationTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
NotificationTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationTitleComponent, selector: "[mozNotificationTitle]", host: { properties: { "class.mc-notification__title": "true" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationTitleComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ template: '<ng-content></ng-content>', selector: '[mozNotificationTitle]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification__title]': 'true' }, styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"] }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLXRpdGxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvbm90aWZpY2F0aW9uL25vdGlmaWNhdGlvbi10aXRsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVV0RixNQUFNLE9BQU8sMEJBQTBCOzt1SEFBMUIsMEJBQTBCOzJHQUExQiwwQkFBMEIsZ0lBUDNCLDJCQUEyQjsyRkFPMUIsMEJBQTBCO2tCQVJ0QyxTQUFTOytCQUNFLDJCQUEyQixZQUMzQix3QkFBd0IsbUJBRWpCLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0IsRUFBRSxnQ0FBZ0MsRUFBRSxNQUFNLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+JyxcbiAgc2VsZWN0b3I6ICdbbW96Tm90aWZpY2F0aW9uVGl0bGVdJyxcbiAgc3R5bGVVcmxzOiBbJy4vbm90aWZpY2F0aW9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7ICdbY2xhc3MubWMtbm90aWZpY2F0aW9uX190aXRsZV0nOiAndHJ1ZScgfSxcbn0pXG5leHBvcnQgY2xhc3MgTm90aWZpY2F0aW9uVGl0bGVDb21wb25lbnQge31cbiJdfQ==
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class NotificationComponent {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.type = 'information';
|
|
6
|
+
this.size = 'm';
|
|
7
|
+
}
|
|
8
|
+
get hostCssClasses() {
|
|
9
|
+
const staticClasses = 'mc-notification';
|
|
10
|
+
const sizeCssClass = `mc-notification--${this.size}`;
|
|
11
|
+
const typeCssClass = `mc-notification--${this.type}`;
|
|
12
|
+
const dynamicClasses = `${sizeCssClass} ${typeCssClass}`;
|
|
13
|
+
return `${staticClasses} ${dynamicClasses}`;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
NotificationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
NotificationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationComponent, selector: "moz-notification", inputs: { type: "type", size: "size" }, host: { properties: { "class.mc-notification": "true", "class": "this.hostCssClasses" } }, ngImport: i0, template: "<div class=\"mc-notification__content\">\n <ng-content select=\"[mozNotificationTitle]\"></ng-content>\n <ng-content select=\"[mozNotificationMessage]\"></ng-content>\n <ng-content select=\"[mozNotificationFooter]\"></ng-content>\n</div>\n", styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'moz-notification', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification]': 'true' }, template: "<div class=\"mc-notification__content\">\n <ng-content select=\"[mozNotificationTitle]\"></ng-content>\n <ng-content select=\"[mozNotificationMessage]\"></ng-content>\n <ng-content select=\"[mozNotificationFooter]\"></ng-content>\n</div>\n", styles: [".mc-notification{font-family:Roboto,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:Roboto,sans-serif;font-weight:700;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #758992;box-shadow:0 0 0 .125rem #758992}\n"] }]
|
|
21
|
+
}], propDecorators: { type: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}], size: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], hostCssClasses: [{
|
|
26
|
+
type: HostBinding,
|
|
27
|
+
args: ['class']
|
|
28
|
+
}] } });
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL25vdGlmaWNhdGlvbi9ub3RpZmljYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvbm90aWZpY2F0aW9uL25vdGlmaWNhdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7QUFXdkIsTUFBTSxPQUFPLHFCQUFxQjtJQVJsQztRQVNXLFNBQUksR0FBc0IsYUFBYSxDQUFDO1FBQ3hDLFNBQUksR0FBcUIsR0FBRyxDQUFDO0tBVXZDO0lBUkMsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sYUFBYSxHQUFHLGlCQUFpQixDQUFDO1FBQ3hDLE1BQU0sWUFBWSxHQUFHLG9CQUFvQixJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDckQsTUFBTSxZQUFZLEdBQUcsb0JBQW9CLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyRCxNQUFNLGNBQWMsR0FBRyxHQUFHLFlBQVksSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUN6RCxPQUFPLEdBQUcsYUFBYSxJQUFJLGNBQWMsRUFBRSxDQUFDO0lBQzlDLENBQUM7O2tIQVhVLHFCQUFxQjtzR0FBckIscUJBQXFCLDJMQ2pCbEMsb1BBS0E7MkZEWWEscUJBQXFCO2tCQVJqQyxTQUFTOytCQUNFLGtCQUFrQixtQkFHWCx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxFQUFFOzhCQUdsQyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUdLLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uU2l6ZSwgTm90aWZpY2F0aW9uVHlwZSB9IGZyb20gJy4vbm90aWZpY2F0aW9uJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbW96LW5vdGlmaWNhdGlvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9ub3RpZmljYXRpb24uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9ub3RpZmljYXRpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHsgJ1tjbGFzcy5tYy1ub3RpZmljYXRpb25dJzogJ3RydWUnIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdGlmaWNhdGlvbkNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHR5cGU/OiBOb3RpZmljYXRpb25UeXBlID0gJ2luZm9ybWF0aW9uJztcbiAgQElucHV0KCkgc2l6ZTogTm90aWZpY2F0aW9uU2l6ZSA9ICdtJztcblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHVibGljIGdldCBob3N0Q3NzQ2xhc3NlcygpIHtcbiAgICBjb25zdCBzdGF0aWNDbGFzc2VzID0gJ21jLW5vdGlmaWNhdGlvbic7XG4gICAgY29uc3Qgc2l6ZUNzc0NsYXNzID0gYG1jLW5vdGlmaWNhdGlvbi0tJHt0aGlzLnNpemV9YDtcbiAgICBjb25zdCB0eXBlQ3NzQ2xhc3MgPSBgbWMtbm90aWZpY2F0aW9uLS0ke3RoaXMudHlwZX1gO1xuICAgIGNvbnN0IGR5bmFtaWNDbGFzc2VzID0gYCR7c2l6ZUNzc0NsYXNzfSAke3R5cGVDc3NDbGFzc31gO1xuICAgIHJldHVybiBgJHtzdGF0aWNDbGFzc2VzfSAke2R5bmFtaWNDbGFzc2VzfWA7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJtYy1ub3RpZmljYXRpb25fX2NvbnRlbnRcIj5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW21vek5vdGlmaWNhdGlvblRpdGxlXVwiPjwvbmctY29udGVudD5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW21vek5vdGlmaWNhdGlvbk1lc3NhZ2VdXCI+PC9uZy1jb250ZW50PlxuICA8bmctY29udGVudCBzZWxlY3Q9XCJbbW96Tm90aWZpY2F0aW9uRm9vdGVyXVwiPjwvbmctY29udGVudD5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
export const NOTIFICATION_CONFIG = new InjectionToken('NOTIFICATION_CONFIG');
|
|
3
|
+
export class NotificationConfigFactory {
|
|
4
|
+
static create(config = {}) {
|
|
5
|
+
return { duration: 3000, ...config };
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvbm90aWZpY2F0aW9uL25vdGlmaWNhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBYy9DLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLElBQUksY0FBYyxDQUFxQixxQkFBcUIsQ0FBQyxDQUFDO0FBRWpHLE1BQU0sT0FBTyx5QkFBeUI7SUFDcEMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFzQyxFQUFFO1FBQ3BELE9BQU8sRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLEdBQUcsTUFBTSxFQUFFLENBQUM7SUFDdkMsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IHR5cGUgTm90aWZpY2F0aW9uVHlwZSA9ICdpbmZvcm1hdGlvbicgfCAnc3VjY2VzcycgfCAnd2FybmluZycgfCAnZGFuZ2VyJztcblxuZXhwb3J0IHR5cGUgTm90aWZpY2F0aW9uU2l6ZSA9ICdtJyB8ICdzJztcblxuZXhwb3J0IHR5cGUgTm90aWZpY2F0aW9uID0ge1xuICB0eXBlPzogTm90aWZpY2F0aW9uVHlwZTtcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIG1lc3NhZ2U6IHN0cmluZztcbn07XG5cbmV4cG9ydCB0eXBlIE5vdGlmaWNhdGlvbkNvbmZpZyA9IHsgZHVyYXRpb246IG51bWJlciB9O1xuXG5leHBvcnQgY29uc3QgTk9USUZJQ0FUSU9OX0NPTkZJRyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxOb3RpZmljYXRpb25Db25maWc+KCdOT1RJRklDQVRJT05fQ09ORklHJyk7XG5cbmV4cG9ydCBjbGFzcyBOb3RpZmljYXRpb25Db25maWdGYWN0b3J5IHtcbiAgc3RhdGljIGNyZWF0ZShjb25maWc6IFBhcnRpYWw8Tm90aWZpY2F0aW9uQ29uZmlnPiA9IHt9KTogTm90aWZpY2F0aW9uQ29uZmlnIHtcbiAgICByZXR1cm4geyBkdXJhdGlvbjogMzAwMCwgLi4uY29uZmlnIH07XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { NotificationConfigFactory, NOTIFICATION_CONFIG } from './notification';
|
|
4
|
+
import { NotificationContainerComponent } from './notification-container.component';
|
|
5
|
+
import { NotificationFooterComponent } from './notification-footer';
|
|
6
|
+
import { NotificationMessageComponent } from './notification-message';
|
|
7
|
+
import { NotificationTitleComponent } from './notification-title';
|
|
8
|
+
import { NotificationComponent } from './notification.component';
|
|
9
|
+
import { NotificationService } from './notification.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export class NotificationModule {
|
|
12
|
+
static forRoot(config = {}) {
|
|
13
|
+
return {
|
|
14
|
+
ngModule: NotificationModule,
|
|
15
|
+
providers: [
|
|
16
|
+
{
|
|
17
|
+
provide: NOTIFICATION_CONFIG,
|
|
18
|
+
useValue: NotificationConfigFactory.create(config),
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
NotificationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
25
|
+
NotificationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, declarations: [NotificationComponent,
|
|
26
|
+
NotificationTitleComponent,
|
|
27
|
+
NotificationMessageComponent,
|
|
28
|
+
NotificationFooterComponent,
|
|
29
|
+
NotificationContainerComponent], imports: [CommonModule], exports: [NotificationComponent,
|
|
30
|
+
NotificationTitleComponent,
|
|
31
|
+
NotificationMessageComponent,
|
|
32
|
+
NotificationFooterComponent] });
|
|
33
|
+
NotificationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, providers: [
|
|
34
|
+
NotificationService,
|
|
35
|
+
{
|
|
36
|
+
provide: NOTIFICATION_CONFIG,
|
|
37
|
+
useValue: NotificationConfigFactory.create(),
|
|
38
|
+
},
|
|
39
|
+
], imports: [CommonModule] });
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, decorators: [{
|
|
41
|
+
type: NgModule,
|
|
42
|
+
args: [{
|
|
43
|
+
imports: [CommonModule],
|
|
44
|
+
declarations: [
|
|
45
|
+
NotificationComponent,
|
|
46
|
+
NotificationTitleComponent,
|
|
47
|
+
NotificationMessageComponent,
|
|
48
|
+
NotificationFooterComponent,
|
|
49
|
+
NotificationContainerComponent,
|
|
50
|
+
],
|
|
51
|
+
providers: [
|
|
52
|
+
NotificationService,
|
|
53
|
+
{
|
|
54
|
+
provide: NOTIFICATION_CONFIG,
|
|
55
|
+
useValue: NotificationConfigFactory.create(),
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
exports: [
|
|
59
|
+
NotificationComponent,
|
|
60
|
+
NotificationTitleComponent,
|
|
61
|
+
NotificationMessageComponent,
|
|
62
|
+
NotificationFooterComponent,
|
|
63
|
+
],
|
|
64
|
+
}]
|
|
65
|
+
}] });
|
|
66
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL25vdGlmaWNhdGlvbi9ub3RpZmljYXRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQXVCLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RCxPQUFPLEVBQXNCLHlCQUF5QixFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDcEcsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDcEYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDcEUsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdEUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDbEUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDakUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7O0FBeUI3RCxNQUFNLE9BQU8sa0JBQWtCO0lBQzdCLE1BQU0sQ0FBQyxPQUFPLENBQ1osU0FBc0MsRUFBRTtRQUV4QyxPQUFPO1lBQ0wsUUFBUSxFQUFFLGtCQUFrQjtZQUM1QixTQUFTLEVBQUU7Z0JBQ1Q7b0JBQ0UsT0FBTyxFQUFFLG1CQUFtQjtvQkFDNUIsUUFBUSxFQUFFLHlCQUF5QixDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUM7aUJBQ25EO2FBQ0Y7U0FDRixDQUFDO0lBQ0osQ0FBQzs7K0dBYlUsa0JBQWtCO2dIQUFsQixrQkFBa0IsaUJBcEIzQixxQkFBcUI7UUFDckIsMEJBQTBCO1FBQzFCLDRCQUE0QjtRQUM1QiwyQkFBMkI7UUFDM0IsOEJBQThCLGFBTnRCLFlBQVksYUFnQnBCLHFCQUFxQjtRQUNyQiwwQkFBMEI7UUFDMUIsNEJBQTRCO1FBQzVCLDJCQUEyQjtnSEFHbEIsa0JBQWtCLGFBZGxCO1FBQ1QsbUJBQW1CO1FBQ25CO1lBQ0UsT0FBTyxFQUFFLG1CQUFtQjtZQUM1QixRQUFRLEVBQUUseUJBQXlCLENBQUMsTUFBTSxFQUFFO1NBQzdDO0tBQ0YsWUFkUyxZQUFZOzJGQXNCWCxrQkFBa0I7a0JBdkI5QixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsWUFBWSxFQUFFO3dCQUNaLHFCQUFxQjt3QkFDckIsMEJBQTBCO3dCQUMxQiw0QkFBNEI7d0JBQzVCLDJCQUEyQjt3QkFDM0IsOEJBQThCO3FCQUMvQjtvQkFDRCxTQUFTLEVBQUU7d0JBQ1QsbUJBQW1CO3dCQUNuQjs0QkFDRSxPQUFPLEVBQUUsbUJBQW1COzRCQUM1QixRQUFRLEVBQUUseUJBQXlCLENBQUMsTUFBTSxFQUFFO3lCQUM3QztxQkFDRjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AscUJBQXFCO3dCQUNyQiwwQkFBMEI7d0JBQzFCLDRCQUE0Qjt3QkFDNUIsMkJBQTJCO3FCQUM1QjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBNb2R1bGVXaXRoUHJvdmlkZXJzLCBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uQ29uZmlnLCBOb3RpZmljYXRpb25Db25maWdGYWN0b3J5LCBOT1RJRklDQVRJT05fQ09ORklHIH0gZnJvbSAnLi9ub3RpZmljYXRpb24nO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uQ29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9ub3RpZmljYXRpb24tY29udGFpbmVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBOb3RpZmljYXRpb25Gb290ZXJDb21wb25lbnQgfSBmcm9tICcuL25vdGlmaWNhdGlvbi1mb290ZXInO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uTWVzc2FnZUNvbXBvbmVudCB9IGZyb20gJy4vbm90aWZpY2F0aW9uLW1lc3NhZ2UnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uVGl0bGVDb21wb25lbnQgfSBmcm9tICcuL25vdGlmaWNhdGlvbi10aXRsZSc7XG5pbXBvcnQgeyBOb3RpZmljYXRpb25Db21wb25lbnQgfSBmcm9tICcuL25vdGlmaWNhdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uU2VydmljZSB9IGZyb20gJy4vbm90aWZpY2F0aW9uLnNlcnZpY2UnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgTm90aWZpY2F0aW9uQ29tcG9uZW50LFxuICAgIE5vdGlmaWNhdGlvblRpdGxlQ29tcG9uZW50LFxuICAgIE5vdGlmaWNhdGlvbk1lc3NhZ2VDb21wb25lbnQsXG4gICAgTm90aWZpY2F0aW9uRm9vdGVyQ29tcG9uZW50LFxuICAgIE5vdGlmaWNhdGlvbkNvbnRhaW5lckNvbXBvbmVudCxcbiAgXSxcbiAgcHJvdmlkZXJzOiBbXG4gICAgTm90aWZpY2F0aW9uU2VydmljZSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBOT1RJRklDQVRJT05fQ09ORklHLFxuICAgICAgdXNlVmFsdWU6IE5vdGlmaWNhdGlvbkNvbmZpZ0ZhY3RvcnkuY3JlYXRlKCksXG4gICAgfSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIE5vdGlmaWNhdGlvbkNvbXBvbmVudCxcbiAgICBOb3RpZmljYXRpb25UaXRsZUNvbXBvbmVudCxcbiAgICBOb3RpZmljYXRpb25NZXNzYWdlQ29tcG9uZW50LFxuICAgIE5vdGlmaWNhdGlvbkZvb3RlckNvbXBvbmVudCxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgTm90aWZpY2F0aW9uTW9kdWxlIHtcbiAgc3RhdGljIGZvclJvb3QoXG4gICAgY29uZmlnOiBQYXJ0aWFsPE5vdGlmaWNhdGlvbkNvbmZpZz4gPSB7fVxuICApOiBNb2R1bGVXaXRoUHJvdmlkZXJzPE5vdGlmaWNhdGlvbk1vZHVsZT4ge1xuICAgIHJldHVybiB7XG4gICAgICBuZ01vZHVsZTogTm90aWZpY2F0aW9uTW9kdWxlLFxuICAgICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBOT1RJRklDQVRJT05fQ09ORklHLFxuICAgICAgICAgIHVzZVZhbHVlOiBOb3RpZmljYXRpb25Db25maWdGYWN0b3J5LmNyZWF0ZShjb25maWcpLFxuICAgICAgICB9LFxuICAgICAgXSxcbiAgICB9O1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { DOCUMENT } from '@angular/common';
|
|
2
|
+
import { Inject, Injectable, } from '@angular/core';
|
|
3
|
+
import { NotificationContainerComponent } from './notification-container.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class NotificationService {
|
|
6
|
+
constructor(applicationRef, componentFactoryResolver, injector, document) {
|
|
7
|
+
this.applicationRef = applicationRef;
|
|
8
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
9
|
+
this.injector = injector;
|
|
10
|
+
this.document = document;
|
|
11
|
+
this.container = this.createContainer();
|
|
12
|
+
this.appendNotificationContainerToBody(this.container);
|
|
13
|
+
}
|
|
14
|
+
add(notification) {
|
|
15
|
+
this.container.instance.add(notification);
|
|
16
|
+
}
|
|
17
|
+
createContainer() {
|
|
18
|
+
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(NotificationContainerComponent);
|
|
19
|
+
const componentRef = componentFactory.create(this.injector);
|
|
20
|
+
return componentRef;
|
|
21
|
+
}
|
|
22
|
+
appendNotificationContainerToBody(componentRef) {
|
|
23
|
+
const componentHostView = componentRef.hostView;
|
|
24
|
+
const componentHtmlElement = componentHostView.rootNodes[0];
|
|
25
|
+
this.applicationRef.attachView(componentHostView);
|
|
26
|
+
this.document.body.appendChild(componentHtmlElement);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
NotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
30
|
+
NotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, providedIn: 'root' });
|
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, decorators: [{
|
|
32
|
+
type: Injectable,
|
|
33
|
+
args: [{
|
|
34
|
+
providedIn: 'root',
|
|
35
|
+
}]
|
|
36
|
+
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: Document, decorators: [{
|
|
37
|
+
type: Inject,
|
|
38
|
+
args: [DOCUMENT]
|
|
39
|
+
}] }]; } });
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9ub3RpZmljYXRpb24vbm90aWZpY2F0aW9uLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzNDLE9BQU8sRUFLTCxNQUFNLEVBQ04sVUFBVSxHQUVYLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDOztBQUtwRixNQUFNLE9BQU8sbUJBQW1CO0lBRzlCLFlBQ21CLGNBQThCLEVBQzlCLHdCQUFrRCxFQUNsRCxRQUFrQixFQUNBLFFBQWtCO1FBSHBDLG1CQUFjLEdBQWQsY0FBYyxDQUFnQjtRQUM5Qiw2QkFBd0IsR0FBeEIsd0JBQXdCLENBQTBCO1FBQ2xELGFBQVEsR0FBUixRQUFRLENBQVU7UUFDQSxhQUFRLEdBQVIsUUFBUSxDQUFVO1FBRXJELElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQ3hDLElBQUksQ0FBQyxpQ0FBaUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDekQsQ0FBQztJQUVNLEdBQUcsQ0FBQyxZQUEwQjtRQUNuQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVPLGVBQWU7UUFDckIsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsdUJBQXVCLENBQzVFLDhCQUE4QixDQUMvQixDQUFDO1FBQ0YsTUFBTSxZQUFZLEdBQUcsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUM1RCxPQUFPLFlBQVksQ0FBQztJQUN0QixDQUFDO0lBRU8saUNBQWlDLENBQ3ZDLFlBQTBEO1FBRTFELE1BQU0saUJBQWlCLEdBQUcsWUFBWSxDQUFDLFFBQW9DLENBQUM7UUFDNUUsTUFBTSxvQkFBb0IsR0FBRyxpQkFBaUIsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFnQixDQUFDO1FBQzNFLElBQUksQ0FBQyxjQUFjLENBQUMsVUFBVSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDbEQsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLG9CQUFvQixDQUFDLENBQUM7SUFDdkQsQ0FBQzs7Z0hBaENVLG1CQUFtQixnSEFPcEIsUUFBUTtvSEFQUCxtQkFBbUIsY0FGbEIsTUFBTTsyRkFFUCxtQkFBbUI7a0JBSC9CLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25COzswQkFRSSxNQUFNOzJCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBET0NVTUVOVCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBBcHBsaWNhdGlvblJlZixcbiAgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLFxuICBDb21wb25lbnRSZWYsXG4gIEVtYmVkZGVkVmlld1JlZixcbiAgSW5qZWN0LFxuICBJbmplY3RhYmxlLFxuICBJbmplY3Rvcixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOb3RpZmljYXRpb24gfSBmcm9tICcuL25vdGlmaWNhdGlvbic7XG5pbXBvcnQgeyBOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL25vdGlmaWNhdGlvbi1jb250YWluZXIuY29tcG9uZW50JztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIE5vdGlmaWNhdGlvblNlcnZpY2Uge1xuICBwcml2YXRlIHJlYWRvbmx5IGNvbnRhaW5lciE6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+O1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVhZG9ubHkgYXBwbGljYXRpb25SZWY6IEFwcGxpY2F0aW9uUmVmLFxuICAgIHByaXZhdGUgcmVhZG9ubHkgY29tcG9uZW50RmFjdG9yeVJlc29sdmVyOiBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIsXG4gICAgcHJpdmF0ZSByZWFkb25seSBpbmplY3RvcjogSW5qZWN0b3IsXG4gICAgQEluamVjdChET0NVTUVOVCkgcHJpdmF0ZSByZWFkb25seSBkb2N1bWVudDogRG9jdW1lbnRcbiAgKSB7XG4gICAgdGhpcy5jb250YWluZXIgPSB0aGlzLmNyZWF0ZUNvbnRhaW5lcigpO1xuICAgIHRoaXMuYXBwZW5kTm90aWZpY2F0aW9uQ29udGFpbmVyVG9Cb2R5KHRoaXMuY29udGFpbmVyKTtcbiAgfVxuXG4gIHB1YmxpYyBhZGQobm90aWZpY2F0aW9uOiBOb3RpZmljYXRpb24pIHtcbiAgICB0aGlzLmNvbnRhaW5lci5pbnN0YW5jZS5hZGQobm90aWZpY2F0aW9uKTtcbiAgfVxuXG4gIHByaXZhdGUgY3JlYXRlQ29udGFpbmVyKCk6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+IHtcbiAgICBjb25zdCBjb21wb25lbnRGYWN0b3J5ID0gdGhpcy5jb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIucmVzb2x2ZUNvbXBvbmVudEZhY3RvcnkoXG4gICAgICBOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnRcbiAgICApO1xuICAgIGNvbnN0IGNvbXBvbmVudFJlZiA9IGNvbXBvbmVudEZhY3RvcnkuY3JlYXRlKHRoaXMuaW5qZWN0b3IpO1xuICAgIHJldHVybiBjb21wb25lbnRSZWY7XG4gIH1cblxuICBwcml2YXRlIGFwcGVuZE5vdGlmaWNhdGlvbkNvbnRhaW5lclRvQm9keShcbiAgICBjb21wb25lbnRSZWY6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+XG4gICk6IHZvaWQge1xuICAgIGNvbnN0IGNvbXBvbmVudEhvc3RWaWV3ID0gY29tcG9uZW50UmVmLmhvc3RWaWV3IGFzIEVtYmVkZGVkVmlld1JlZjx1bmtub3duPjtcbiAgICBjb25zdCBjb21wb25lbnRIdG1sRWxlbWVudCA9IGNvbXBvbmVudEhvc3RWaWV3LnJvb3ROb2Rlc1swXSBhcyBIVE1MRWxlbWVudDtcbiAgICB0aGlzLmFwcGxpY2F0aW9uUmVmLmF0dGFjaFZpZXcoY29tcG9uZW50SG9zdFZpZXcpO1xuICAgIHRoaXMuZG9jdW1lbnQuYm9keS5hcHBlbmRDaGlsZChjb21wb25lbnRIdG1sRWxlbWVudCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './notification';
|
|
2
|
+
export * from './notification-container.component';
|
|
3
|
+
export * from './notification-footer';
|
|
4
|
+
export * from './notification-message';
|
|
5
|
+
export * from './notification-title';
|
|
6
|
+
export * from './notification.component';
|
|
7
|
+
export * from './notification.module';
|
|
8
|
+
export * from './notification.service';
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL25vdGlmaWNhdGlvbi9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbm90aWZpY2F0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vbm90aWZpY2F0aW9uLWNvbnRhaW5lci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9ub3RpZmljYXRpb24tZm9vdGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbm90aWZpY2F0aW9uLW1lc3NhZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9ub3RpZmljYXRpb24tdGl0bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9ub3RpZmljYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbm90aWZpY2F0aW9uLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL25vdGlmaWNhdGlvbi5zZXJ2aWNlJztcbiJdfQ==
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef, Input, } from '@angular/core';
|
|
2
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
+
import { debounceTime, map, shareReplay, startWith } from 'rxjs';
|
|
4
|
+
import { IconSize } from '../icon/icon-size';
|
|
5
|
+
import { SELECT_SIZE } from '../select/select-size';
|
|
6
|
+
import { PAGINATION_FIRST_PAGE, PAGINATION_MIN_NUMBER_OF_PAGES, PAGINATION_PAGE_STEP, } from './pagination';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../common";
|
|
9
|
+
import * as i2 from "@angular/common";
|
|
10
|
+
import * as i3 from "@angular/forms";
|
|
11
|
+
import * as i4 from "../button/button.component";
|
|
12
|
+
import * as i5 from "../select/select.component";
|
|
13
|
+
import * as i6 from "../icon/icon.component";
|
|
14
|
+
export const PAGINATION_CONTROL_VALUE_ACCESSOR = {
|
|
15
|
+
provide: NG_VALUE_ACCESSOR,
|
|
16
|
+
useExisting: forwardRef(() => PaginationComponent),
|
|
17
|
+
multi: true,
|
|
18
|
+
};
|
|
19
|
+
export class PaginationComponent {
|
|
20
|
+
constructor(globalEventService, cd) {
|
|
21
|
+
this.globalEventService = globalEventService;
|
|
22
|
+
this.cd = cd;
|
|
23
|
+
this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
|
|
24
|
+
this.light = false;
|
|
25
|
+
this.pageTitleMask = (page, numberOfPages) => `Page ${page} of ${numberOfPages}`;
|
|
26
|
+
this.onChange = () => { };
|
|
27
|
+
this.onTouch = () => { };
|
|
28
|
+
this.currentPage = PAGINATION_FIRST_PAGE;
|
|
29
|
+
this.pages = [];
|
|
30
|
+
this.smallResolution = 1024;
|
|
31
|
+
const isSmall = this.displayIsSmall().pipe(shareReplay({ refCount: true, bufferSize: 1 }));
|
|
32
|
+
this.initializeIcons(isSmall);
|
|
33
|
+
this.selectSize = isSmall.pipe(map((isSmall) => this.chooseSelectSize(isSmall)));
|
|
34
|
+
}
|
|
35
|
+
ngAfterViewInit() {
|
|
36
|
+
this.reinitializeNumberOfPagesAtInvalidValue();
|
|
37
|
+
if (this.viewSelect) {
|
|
38
|
+
this.pages = this.initializePages(this.numberOfPages);
|
|
39
|
+
}
|
|
40
|
+
this.reinitializeCurrentPageAtOverflow();
|
|
41
|
+
this.cd.detectChanges();
|
|
42
|
+
}
|
|
43
|
+
ngOnChanges({ numberOfPages, pageTitleMask }) {
|
|
44
|
+
if (this.needRenderPages(this.viewSelect, numberOfPages?.currentValue, numberOfPages?.previousValue, pageTitleMask?.currentValue, pageTitleMask?.previousValue)) {
|
|
45
|
+
this.reinitializeNumberOfPagesAtInvalidValue();
|
|
46
|
+
this.pages = this.initializePages(this.numberOfPages);
|
|
47
|
+
}
|
|
48
|
+
this.reinitializeCurrentPageAtOverflow();
|
|
49
|
+
}
|
|
50
|
+
get viewSelect() {
|
|
51
|
+
return !this.light;
|
|
52
|
+
}
|
|
53
|
+
get isFirstPage() {
|
|
54
|
+
return this.currentPage <= PAGINATION_FIRST_PAGE;
|
|
55
|
+
}
|
|
56
|
+
get isLastPage() {
|
|
57
|
+
return this.currentPage >= this.numberOfPages;
|
|
58
|
+
}
|
|
59
|
+
get disabledSelect() {
|
|
60
|
+
return this.numberOfPages <= PAGINATION_MIN_NUMBER_OF_PAGES;
|
|
61
|
+
}
|
|
62
|
+
writeValue(value) {
|
|
63
|
+
if (!value || value === this.currentPage || value > this.numberOfPages)
|
|
64
|
+
return;
|
|
65
|
+
this.currentPage = value;
|
|
66
|
+
this.onChange(value);
|
|
67
|
+
}
|
|
68
|
+
registerOnChange(fn) {
|
|
69
|
+
this.onChange = fn;
|
|
70
|
+
}
|
|
71
|
+
registerOnTouched(fn) {
|
|
72
|
+
this.onTouch = fn;
|
|
73
|
+
}
|
|
74
|
+
nextPage() {
|
|
75
|
+
this.writeValue(this.currentPage + PAGINATION_PAGE_STEP);
|
|
76
|
+
}
|
|
77
|
+
previousPage() {
|
|
78
|
+
this.writeValue(this.currentPage - PAGINATION_PAGE_STEP);
|
|
79
|
+
}
|
|
80
|
+
compareWithPages(page, currentPage) {
|
|
81
|
+
return page === currentPage;
|
|
82
|
+
}
|
|
83
|
+
initializePages(numberOfPages) {
|
|
84
|
+
return new Array(numberOfPages).fill(null).map((_, index) => ({
|
|
85
|
+
title: this.pageTitleMask(index + 1, numberOfPages),
|
|
86
|
+
value: index + 1,
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
initializeIcons(isSmall) {
|
|
90
|
+
const iconSize = isSmall.pipe(map((isSmall) => this.chooseIconSize(isSmall)), shareReplay({ refCount: true, bufferSize: 1 }));
|
|
91
|
+
this.leftIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Left_${iconSize}`));
|
|
92
|
+
this.rightIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Right_${iconSize}`));
|
|
93
|
+
}
|
|
94
|
+
displayIsSmall() {
|
|
95
|
+
const resizeEvent = this.globalEventService.getWindowEvent('resize').pipe(debounceTime(100));
|
|
96
|
+
const displayWidth = resizeEvent.pipe(map((event) => event?.target?.innerWidth), startWith(this.globalEventService.window.innerWidth));
|
|
97
|
+
return displayWidth.pipe(map((width) => width < this.smallResolution));
|
|
98
|
+
}
|
|
99
|
+
reinitializeCurrentPageAtOverflow() {
|
|
100
|
+
if (this.numberOfPages < this.currentPage) {
|
|
101
|
+
this.writeValue(PAGINATION_FIRST_PAGE);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
reinitializeNumberOfPagesAtInvalidValue() {
|
|
105
|
+
if (!this.numberOfPages || this.numberOfPages < PAGINATION_MIN_NUMBER_OF_PAGES) {
|
|
106
|
+
this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
chooseIconSize(isSmall) {
|
|
110
|
+
return isSmall ? IconSize.L : IconSize.M;
|
|
111
|
+
}
|
|
112
|
+
chooseSelectSize(isSmall) {
|
|
113
|
+
return isSmall ? SELECT_SIZE.M : SELECT_SIZE.S;
|
|
114
|
+
}
|
|
115
|
+
needRenderPages(viewSelect, numberOfPagesPrevious, numberOfPagesCurrent, pageTitleMaskPrevious, pageTitleMaskCurrent) {
|
|
116
|
+
const numberOfPageHasChanges = numberOfPagesPrevious !== numberOfPagesCurrent;
|
|
117
|
+
const maskHasChanges = pageTitleMaskPrevious !== pageTitleMaskCurrent;
|
|
118
|
+
return viewSelect && (numberOfPageHasChanges || maskHasChanges);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
PaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationComponent, deps: [{ token: i1.GlobalEventsService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
122
|
+
PaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PaginationComponent, selector: "moz-pagination", inputs: { numberOfPages: "numberOfPages", light: "light", pageTitleMask: "pageTitleMask" }, providers: [PAGINATION_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: "<nav class=\"mc-pagination\" role=\"navigation\" aria-label=\"pagination\">\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isFirstPage\"\n [onlyIcon]=\"true\"\n (click)=\"previousPage()\"\n *ngIf=\"leftIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n <div *ngIf=\"viewSelect\">\n <select\n moz-select\n [ngModel]=\"currentPage\"\n (ngModelChange)=\"writeValue($event)\"\n [compareWith]=\"compareWithPages\"\n [size]=\"(selectSize | async)!\"\n [disabled]=\"disabledSelect\"\n >\n <option *ngFor=\"let page of pages\" [ngValue]=\"page.value\">{{ page.title }}</option>\n </select>\n </div>\n\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isLastPage\"\n (click)=\"nextPage()\"\n [onlyIcon]=\"true\"\n *ngIf=\"rightIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n</nav>\n", styles: [".mc-pagination{align-items:center;display:flex;justify-content:center;gap:1rem}.mc-pagination__select{font-size:1rem;line-height:1.125;padding:.875rem 3rem .875rem calc(.75rem - 1px)}@media screen and (min-width: 1024px){.mc-pagination__select{font-size:.875rem;line-height:1.1428571429;padding:calc(.5rem - 1px) 2.25rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-pagination{gap:1rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i4.ButtonComponent, selector: "button[moz-button]", inputs: ["iconPosition", "onlyIcon", "theme", "variation", "widthBehavior", "size"] }, { kind: "component", type: i5.SelectComponent, selector: "select[moz-`select`]", inputs: ["size"] }, { kind: "component", type: i6.IconComponent, selector: "moz-icon", inputs: ["iconName"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationComponent, decorators: [{
|
|
124
|
+
type: Component,
|
|
125
|
+
args: [{ selector: 'moz-pagination', changeDetection: ChangeDetectionStrategy.OnPush, providers: [PAGINATION_CONTROL_VALUE_ACCESSOR], template: "<nav class=\"mc-pagination\" role=\"navigation\" aria-label=\"pagination\">\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isFirstPage\"\n [onlyIcon]=\"true\"\n (click)=\"previousPage()\"\n *ngIf=\"leftIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n <div *ngIf=\"viewSelect\">\n <select\n moz-select\n [ngModel]=\"currentPage\"\n (ngModelChange)=\"writeValue($event)\"\n [compareWith]=\"compareWithPages\"\n [size]=\"(selectSize | async)!\"\n [disabled]=\"disabledSelect\"\n >\n <option *ngFor=\"let page of pages\" [ngValue]=\"page.value\">{{ page.title }}</option>\n </select>\n </div>\n\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isLastPage\"\n (click)=\"nextPage()\"\n [onlyIcon]=\"true\"\n *ngIf=\"rightIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n</nav>\n", styles: [".mc-pagination{align-items:center;display:flex;justify-content:center;gap:1rem}.mc-pagination__select{font-size:1rem;line-height:1.125;padding:.875rem 3rem .875rem calc(.75rem - 1px)}@media screen and (min-width: 1024px){.mc-pagination__select{font-size:.875rem;line-height:1.1428571429;padding:calc(.5rem - 1px) 2.25rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-pagination{gap:1rem}\n"] }]
|
|
126
|
+
}], ctorParameters: function () { return [{ type: i1.GlobalEventsService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { numberOfPages: [{
|
|
127
|
+
type: Input
|
|
128
|
+
}], light: [{
|
|
129
|
+
type: Input
|
|
130
|
+
}], pageTitleMask: [{
|
|
131
|
+
type: Input
|
|
132
|
+
}] } });
|
|
133
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcGFnaW5hdGlvbi9wYWdpbmF0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFFdkIsU0FBUyxFQUNULFVBQVUsRUFDVixLQUFLLEdBRU4sTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUF3QixpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSxZQUFZLEVBQUUsR0FBRyxFQUFjLFdBQVcsRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFN0UsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQzdDLE9BQU8sRUFBYyxXQUFXLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNoRSxPQUFPLEVBRUwscUJBQXFCLEVBQ3JCLDhCQUE4QixFQUM5QixvQkFBb0IsR0FDckIsTUFBTSxjQUFjLENBQUM7Ozs7Ozs7O0FBRXRCLE1BQU0sQ0FBQyxNQUFNLGlDQUFpQyxHQUFRO0lBQ3BELE9BQU8sRUFBRSxpQkFBaUI7SUFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztJQUNsRCxLQUFLLEVBQUUsSUFBSTtDQUNaLENBQUM7QUFTRixNQUFNLE9BQU8sbUJBQW1CO0lBd0I5QixZQUNtQixrQkFBdUMsRUFDdkMsRUFBcUI7UUFEckIsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFxQjtRQUN2QyxPQUFFLEdBQUYsRUFBRSxDQUFtQjtRQXpCL0Isa0JBQWEsR0FBRyw4QkFBOEIsQ0FBQztRQUUvQyxVQUFLLEdBQUcsS0FBSyxDQUFDO1FBRWQsa0JBQWEsR0FBRyxDQUFDLElBQVksRUFBRSxhQUFxQixFQUFFLEVBQUUsQ0FDL0QsUUFBUSxJQUFJLE9BQU8sYUFBYSxFQUFFLENBQUM7UUFFOUIsYUFBUSxHQUFRLEdBQUcsRUFBRSxHQUFFLENBQUMsQ0FBQztRQUV6QixZQUFPLEdBQVEsR0FBRyxFQUFFLEdBQUUsQ0FBQyxDQUFDO1FBRXhCLGdCQUFXLEdBQUcscUJBQXFCLENBQUM7UUFFcEMsVUFBSyxHQUFXLEVBQUUsQ0FBQztRQVFULG9CQUFlLEdBQUcsSUFBSSxDQUFDO1FBTXRDLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQzNGLElBQUksQ0FBQyxlQUFlLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDOUIsSUFBSSxDQUFDLFVBQVUsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNuRixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyx1Q0FBdUMsRUFBRSxDQUFDO1FBQy9DLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNuQixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ3ZEO1FBQ0QsSUFBSSxDQUFDLGlDQUFpQyxFQUFFLENBQUM7UUFDekMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBRUQsV0FBVyxDQUFDLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBaUI7UUFDekQsSUFDRSxJQUFJLENBQUMsZUFBZSxDQUNsQixJQUFJLENBQUMsVUFBVSxFQUNmLGFBQWEsRUFBRSxZQUFZLEVBQzNCLGFBQWEsRUFBRSxhQUFhLEVBQzVCLGFBQWEsRUFBRSxZQUFZLEVBQzNCLGFBQWEsRUFBRSxhQUFhLENBQzdCLEVBQ0Q7WUFDQSxJQUFJLENBQUMsdUNBQXVDLEVBQUUsQ0FBQztZQUMvQyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ3ZEO1FBQ0QsSUFBSSxDQUFDLGlDQUFpQyxFQUFFLENBQUM7SUFDM0MsQ0FBQztJQUVELElBQVcsVUFBVTtRQUNuQixPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxXQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxxQkFBcUIsQ0FBQztJQUNuRCxDQUFDO0lBRUQsSUFBVyxVQUFVO1FBQ25CLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsYUFBYSxDQUFDO0lBQ2hELENBQUM7SUFFRCxJQUFXLGNBQWM7UUFDdkIsT0FBTyxJQUFJLENBQUMsYUFBYSxJQUFJLDhCQUE4QixDQUFDO0lBQzlELENBQUM7SUFFTSxVQUFVLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsS0FBSyxJQUFJLEtBQUssS0FBSyxJQUFJLENBQUMsV0FBVyxJQUFJLEtBQUssR0FBRyxJQUFJLENBQUMsYUFBYTtZQUFFLE9BQU87UUFDL0UsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2QixDQUFDO0lBRU0sZ0JBQWdCLENBQUMsRUFBTztRQUM3QixJQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBRU0saUJBQWlCLENBQUMsRUFBTztRQUM5QixJQUFJLENBQUMsT0FBTyxHQUFHLEVBQUUsQ0FBQztJQUNwQixDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxvQkFBb0IsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFTSxZQUFZO1FBQ2pCLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxvQkFBb0IsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxJQUFZLEVBQUUsV0FBb0I7UUFDeEQsT0FBTyxJQUFJLEtBQUssV0FBVyxDQUFDO0lBQzlCLENBQUM7SUFFTyxlQUFlLENBQUMsYUFBcUI7UUFDM0MsT0FBTyxJQUFJLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztZQUM1RCxLQUFLLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxFQUFFLGFBQWEsQ0FBQztZQUNuRCxLQUFLLEVBQUUsS0FBSyxHQUFHLENBQUM7U0FDakIsQ0FBQyxDQUFDLENBQUM7SUFDTixDQUFDO0lBRU8sZUFBZSxDQUFDLE9BQTRCO1FBQ2xELE1BQU0sUUFBUSxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQzNCLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxFQUM5QyxXQUFXLENBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUMvQyxDQUFDO1FBRUYsSUFBSSxDQUFDLFlBQVksR0FBRyxRQUFRLENBQUMsSUFBSSxDQUMvQixHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLGdDQUFnQyxRQUFRLEVBQUUsQ0FBQyxDQUM5RCxDQUFDO1FBRUYsSUFBSSxDQUFDLGFBQWEsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUNoQyxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLGlDQUFpQyxRQUFRLEVBQUUsQ0FBQyxDQUMvRCxDQUFDO0lBQ0osQ0FBQztJQUVPLGNBQWM7UUFDcEIsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7UUFDN0YsTUFBTSxZQUFZLEdBQUcsV0FBVyxDQUFDLElBQUksQ0FDbkMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBRSxLQUFLLEVBQUUsTUFBaUIsRUFBRSxVQUFVLENBQUMsRUFDckQsU0FBUyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQ3JELENBQUM7UUFDRixPQUFPLFlBQVksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDLENBQUM7SUFDekUsQ0FBQztJQUVPLGlDQUFpQztRQUN2QyxJQUFJLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUN6QyxJQUFJLENBQUMsVUFBVSxDQUFDLHFCQUFxQixDQUFDLENBQUM7U0FDeEM7SUFDSCxDQUFDO0lBRU8sdUNBQXVDO1FBQzdDLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxJQUFJLElBQUksQ0FBQyxhQUFhLEdBQUcsOEJBQThCLEVBQUU7WUFDOUUsSUFBSSxDQUFDLGFBQWEsR0FBRyw4QkFBOEIsQ0FBQztTQUNyRDtJQUNILENBQUM7SUFFTyxjQUFjLENBQUMsT0FBZ0I7UUFDckMsT0FBTyxPQUFPLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVPLGdCQUFnQixDQUFDLE9BQWdCO1FBQ3ZDLE9BQU8sT0FBTyxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7SUFFTyxlQUFlLENBQ3JCLFVBQW1CLEVBQ25CLHFCQUE4QixFQUM5QixvQkFBNkIsRUFDN0IscUJBQStCLEVBQy9CLG9CQUE4QjtRQUU5QixNQUFNLHNCQUFzQixHQUFHLHFCQUFxQixLQUFLLG9CQUFvQixDQUFDO1FBQzlFLE1BQU0sY0FBYyxHQUFHLHFCQUFxQixLQUFLLG9CQUFvQixDQUFDO1FBQ3RFLE9BQU8sVUFBVSxJQUFJLENBQUMsc0JBQXNCLElBQUksY0FBYyxDQUFDLENBQUM7SUFDbEUsQ0FBQzs7Z0hBaktVLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHFJQUZuQixDQUFDLGlDQUFpQyxDQUFDLCtDQy9CaEQscWhDQXFDQTsyRkRKYSxtQkFBbUI7a0JBUC9CLFNBQVM7K0JBQ0UsZ0JBQWdCLG1CQUdULHVCQUF1QixDQUFDLE1BQU0sYUFDcEMsQ0FBQyxpQ0FBaUMsQ0FBQzswSUFHckMsYUFBYTtzQkFBckIsS0FBSztnQkFFRyxLQUFLO3NCQUFiLEtBQUs7Z0JBRUcsYUFBYTtzQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBmb3J3YXJkUmVmLFxuICBJbnB1dCxcbiAgU2ltcGxlQ2hhbmdlcyxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBkZWJvdW5jZVRpbWUsIG1hcCwgT2JzZXJ2YWJsZSwgc2hhcmVSZXBsYXksIHN0YXJ0V2l0aCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgR2xvYmFsRXZlbnRzU2VydmljZSB9IGZyb20gJy4uLy4uL2NvbW1vbic7XG5pbXBvcnQgeyBJY29uU2l6ZSB9IGZyb20gJy4uL2ljb24vaWNvbi1zaXplJztcbmltcG9ydCB7IFNlbGVjdFNpemUsIFNFTEVDVF9TSVpFIH0gZnJvbSAnLi4vc2VsZWN0L3NlbGVjdC1zaXplJztcbmltcG9ydCB7XG4gIFBhZ2UsXG4gIFBBR0lOQVRJT05fRklSU1RfUEFHRSxcbiAgUEFHSU5BVElPTl9NSU5fTlVNQkVSX09GX1BBR0VTLFxuICBQQUdJTkFUSU9OX1BBR0VfU1RFUCxcbn0gZnJvbSAnLi9wYWdpbmF0aW9uJztcblxuZXhwb3J0IGNvbnN0IFBBR0lOQVRJT05fQ09OVFJPTF9WQUxVRV9BQ0NFU1NPUjogYW55ID0ge1xuICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcbiAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gUGFnaW5hdGlvbkNvbXBvbmVudCksXG4gIG11bHRpOiB0cnVlLFxufTtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbW96LXBhZ2luYXRpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnaW5hdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhZ2luYXRpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW1BBR0lOQVRJT05fQ09OVFJPTF9WQUxVRV9BQ0NFU1NPUl0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25Db21wb25lbnQgaW1wbGVtZW50cyBDb250cm9sVmFsdWVBY2Nlc3NvciB7XG4gIEBJbnB1dCgpIG51bWJlck9mUGFnZXMgPSBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVM7XG5cbiAgQElucHV0KCkgbGlnaHQgPSBmYWxzZTtcblxuICBASW5wdXQoKSBwYWdlVGl0bGVNYXNrID0gKHBhZ2U6IG51bWJlciwgbnVtYmVyT2ZQYWdlczogbnVtYmVyKSA9PlxuICAgIGBQYWdlICR7cGFnZX0gb2YgJHtudW1iZXJPZlBhZ2VzfWA7XG5cbiAgcHVibGljIG9uQ2hhbmdlOiBhbnkgPSAoKSA9PiB7fTtcblxuICBwdWJsaWMgb25Ub3VjaDogYW55ID0gKCkgPT4ge307XG5cbiAgcHVibGljIGN1cnJlbnRQYWdlID0gUEFHSU5BVElPTl9GSVJTVF9QQUdFO1xuXG4gIHB1YmxpYyBwYWdlczogUGFnZVtdID0gW107XG5cbiAgcHVibGljIHJpZ2h0SWNvbk5hbWUhOiBPYnNlcnZhYmxlPHN0cmluZz47XG5cbiAgcHVibGljIGxlZnRJY29uTmFtZSE6IE9ic2VydmFibGU8c3RyaW5nPjtcblxuICBwdWJsaWMgc2VsZWN0U2l6ZTogT2JzZXJ2YWJsZTxTZWxlY3RTaXplPjtcblxuICBwcml2YXRlIHJlYWRvbmx5IHNtYWxsUmVzb2x1dGlvbiA9IDEwMjQ7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSByZWFkb25seSBnbG9iYWxFdmVudFNlcnZpY2U6IEdsb2JhbEV2ZW50c1NlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSBjZDogQ2hhbmdlRGV0ZWN0b3JSZWZcbiAgKSB7XG4gICAgY29uc3QgaXNTbWFsbCA9IHRoaXMuZGlzcGxheUlzU21hbGwoKS5waXBlKHNoYXJlUmVwbGF5KHsgcmVmQ291bnQ6IHRydWUsIGJ1ZmZlclNpemU6IDEgfSkpO1xuICAgIHRoaXMuaW5pdGlhbGl6ZUljb25zKGlzU21hbGwpO1xuICAgIHRoaXMuc2VsZWN0U2l6ZSA9IGlzU21hbGwucGlwZShtYXAoKGlzU21hbGwpID0+IHRoaXMuY2hvb3NlU2VsZWN0U2l6ZShpc1NtYWxsKSkpO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIHRoaXMucmVpbml0aWFsaXplTnVtYmVyT2ZQYWdlc0F0SW52YWxpZFZhbHVlKCk7XG4gICAgaWYgKHRoaXMudmlld1NlbGVjdCkge1xuICAgICAgdGhpcy5wYWdlcyA9IHRoaXMuaW5pdGlhbGl6ZVBhZ2VzKHRoaXMubnVtYmVyT2ZQYWdlcyk7XG4gICAgfVxuICAgIHRoaXMucmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCk7XG4gICAgdGhpcy5jZC5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICBuZ09uQ2hhbmdlcyh7IG51bWJlck9mUGFnZXMsIHBhZ2VUaXRsZU1hc2sgfTogU2ltcGxlQ2hhbmdlcykge1xuICAgIGlmIChcbiAgICAgIHRoaXMubmVlZFJlbmRlclBhZ2VzKFxuICAgICAgICB0aGlzLnZpZXdTZWxlY3QsXG4gICAgICAgIG51bWJlck9mUGFnZXM/LmN1cnJlbnRWYWx1ZSxcbiAgICAgICAgbnVtYmVyT2ZQYWdlcz8ucHJldmlvdXNWYWx1ZSxcbiAgICAgICAgcGFnZVRpdGxlTWFzaz8uY3VycmVudFZhbHVlLFxuICAgICAgICBwYWdlVGl0bGVNYXNrPy5wcmV2aW91c1ZhbHVlXG4gICAgICApXG4gICAgKSB7XG4gICAgICB0aGlzLnJlaW5pdGlhbGl6ZU51bWJlck9mUGFnZXNBdEludmFsaWRWYWx1ZSgpO1xuICAgICAgdGhpcy5wYWdlcyA9IHRoaXMuaW5pdGlhbGl6ZVBhZ2VzKHRoaXMubnVtYmVyT2ZQYWdlcyk7XG4gICAgfVxuICAgIHRoaXMucmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCk7XG4gIH1cblxuICBwdWJsaWMgZ2V0IHZpZXdTZWxlY3QoKSB7XG4gICAgcmV0dXJuICF0aGlzLmxpZ2h0O1xuICB9XG5cbiAgcHVibGljIGdldCBpc0ZpcnN0UGFnZSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5jdXJyZW50UGFnZSA8PSBQQUdJTkFUSU9OX0ZJUlNUX1BBR0U7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGlzTGFzdFBhZ2UoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuY3VycmVudFBhZ2UgPj0gdGhpcy5udW1iZXJPZlBhZ2VzO1xuICB9XG5cbiAgcHVibGljIGdldCBkaXNhYmxlZFNlbGVjdCgpIHtcbiAgICByZXR1cm4gdGhpcy5udW1iZXJPZlBhZ2VzIDw9IFBBR0lOQVRJT05fTUlOX05VTUJFUl9PRl9QQUdFUztcbiAgfVxuXG4gIHB1YmxpYyB3cml0ZVZhbHVlKHZhbHVlOiBhbnkpIHtcbiAgICBpZiAoIXZhbHVlIHx8IHZhbHVlID09PSB0aGlzLmN1cnJlbnRQYWdlIHx8IHZhbHVlID4gdGhpcy5udW1iZXJPZlBhZ2VzKSByZXR1cm47XG4gICAgdGhpcy5jdXJyZW50UGFnZSA9IHZhbHVlO1xuICAgIHRoaXMub25DaGFuZ2UodmFsdWUpO1xuICB9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSkge1xuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcbiAgfVxuXG4gIHB1YmxpYyByZWdpc3Rlck9uVG91Y2hlZChmbjogYW55KSB7XG4gICAgdGhpcy5vblRvdWNoID0gZm47XG4gIH1cblxuICBwdWJsaWMgbmV4dFBhZ2UoKSB7XG4gICAgdGhpcy53cml0ZVZhbHVlKHRoaXMuY3VycmVudFBhZ2UgKyBQQUdJTkFUSU9OX1BBR0VfU1RFUCk7XG4gIH1cblxuICBwdWJsaWMgcHJldmlvdXNQYWdlKCkge1xuICAgIHRoaXMud3JpdGVWYWx1ZSh0aGlzLmN1cnJlbnRQYWdlIC0gUEFHSU5BVElPTl9QQUdFX1NURVApO1xuICB9XG5cbiAgcHVibGljIGNvbXBhcmVXaXRoUGFnZXMocGFnZTogbnVtYmVyLCBjdXJyZW50UGFnZT86IG51bWJlcik6IGJvb2xlYW4ge1xuICAgIHJldHVybiBwYWdlID09PSBjdXJyZW50UGFnZTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdGlhbGl6ZVBhZ2VzKG51bWJlck9mUGFnZXM6IG51bWJlcik6IFBhZ2VbXSB7XG4gICAgcmV0dXJuIG5ldyBBcnJheShudW1iZXJPZlBhZ2VzKS5maWxsKG51bGwpLm1hcCgoXywgaW5kZXgpID0+ICh7XG4gICAgICB0aXRsZTogdGhpcy5wYWdlVGl0bGVNYXNrKGluZGV4ICsgMSwgbnVtYmVyT2ZQYWdlcyksXG4gICAgICB2YWx1ZTogaW5kZXggKyAxLFxuICAgIH0pKTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdGlhbGl6ZUljb25zKGlzU21hbGw6IE9ic2VydmFibGU8Ym9vbGVhbj4pIHtcbiAgICBjb25zdCBpY29uU2l6ZSA9IGlzU21hbGwucGlwZShcbiAgICAgIG1hcCgoaXNTbWFsbCkgPT4gdGhpcy5jaG9vc2VJY29uU2l6ZShpc1NtYWxsKSksXG4gICAgICBzaGFyZVJlcGxheSh7IHJlZkNvdW50OiB0cnVlLCBidWZmZXJTaXplOiAxIH0pXG4gICAgKTtcblxuICAgIHRoaXMubGVmdEljb25OYW1lID0gaWNvblNpemUucGlwZShcbiAgICAgIG1hcCgoaWNvblNpemUpID0+IGBOYXZpZ2F0aW9uX0Fycm93X0Fycm93LS1MZWZ0XyR7aWNvblNpemV9YClcbiAgICApO1xuXG4gICAgdGhpcy5yaWdodEljb25OYW1lID0gaWNvblNpemUucGlwZShcbiAgICAgIG1hcCgoaWNvblNpemUpID0+IGBOYXZpZ2F0aW9uX0Fycm93X0Fycm93LS1SaWdodF8ke2ljb25TaXplfWApXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgZGlzcGxheUlzU21hbGwoKTogT2JzZXJ2YWJsZTxib29sZWFuPiB7XG4gICAgY29uc3QgcmVzaXplRXZlbnQgPSB0aGlzLmdsb2JhbEV2ZW50U2VydmljZS5nZXRXaW5kb3dFdmVudCgncmVzaXplJykucGlwZShkZWJvdW5jZVRpbWUoMTAwKSk7XG4gICAgY29uc3QgZGlzcGxheVdpZHRoID0gcmVzaXplRXZlbnQucGlwZShcbiAgICAgIG1hcCgoZXZlbnQpID0+IChldmVudD8udGFyZ2V0IGFzIFdpbmRvdyk/LmlubmVyV2lkdGgpLFxuICAgICAgc3RhcnRXaXRoKHRoaXMuZ2xvYmFsRXZlbnRTZXJ2aWNlLndpbmRvdy5pbm5lcldpZHRoKVxuICAgICk7XG4gICAgcmV0dXJuIGRpc3BsYXlXaWR0aC5waXBlKG1hcCgod2lkdGgpID0+IHdpZHRoIDwgdGhpcy5zbWFsbFJlc29sdXRpb24pKTtcbiAgfVxuXG4gIHByaXZhdGUgcmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCkge1xuICAgIGlmICh0aGlzLm51bWJlck9mUGFnZXMgPCB0aGlzLmN1cnJlbnRQYWdlKSB7XG4gICAgICB0aGlzLndyaXRlVmFsdWUoUEFHSU5BVElPTl9GSVJTVF9QQUdFKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHJlaW5pdGlhbGl6ZU51bWJlck9mUGFnZXNBdEludmFsaWRWYWx1ZSgpIHtcbiAgICBpZiAoIXRoaXMubnVtYmVyT2ZQYWdlcyB8fCB0aGlzLm51bWJlck9mUGFnZXMgPCBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVMpIHtcbiAgICAgIHRoaXMubnVtYmVyT2ZQYWdlcyA9IFBBR0lOQVRJT05fTUlOX05VTUJFUl9PRl9QQUdFUztcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGNob29zZUljb25TaXplKGlzU21hbGw6IGJvb2xlYW4pOiBJY29uU2l6ZSB7XG4gICAgcmV0dXJuIGlzU21hbGwgPyBJY29uU2l6ZS5MIDogSWNvblNpemUuTTtcbiAgfVxuXG4gIHByaXZhdGUgY2hvb3NlU2VsZWN0U2l6ZShpc1NtYWxsOiBib29sZWFuKTogU2VsZWN0U2l6ZSB7XG4gICAgcmV0dXJuIGlzU21hbGwgPyBTRUxFQ1RfU0laRS5NIDogU0VMRUNUX1NJWkUuUztcbiAgfVxuXG4gIHByaXZhdGUgbmVlZFJlbmRlclBhZ2VzKFxuICAgIHZpZXdTZWxlY3Q6IGJvb2xlYW4sXG4gICAgbnVtYmVyT2ZQYWdlc1ByZXZpb3VzPzogbnVtYmVyLFxuICAgIG51bWJlck9mUGFnZXNDdXJyZW50PzogbnVtYmVyLFxuICAgIHBhZ2VUaXRsZU1hc2tQcmV2aW91cz86IHVua25vd24sXG4gICAgcGFnZVRpdGxlTWFza0N1cnJlbnQ/OiB1bmtub3duXG4gICk6IGJvb2xlYW4ge1xuICAgIGNvbnN0IG51bWJlck9mUGFnZUhhc0NoYW5nZXMgPSBudW1iZXJPZlBhZ2VzUHJldmlvdXMgIT09IG51bWJlck9mUGFnZXNDdXJyZW50O1xuICAgIGNvbnN0IG1hc2tIYXNDaGFuZ2VzID0gcGFnZVRpdGxlTWFza1ByZXZpb3VzICE9PSBwYWdlVGl0bGVNYXNrQ3VycmVudDtcbiAgICByZXR1cm4gdmlld1NlbGVjdCAmJiAobnVtYmVyT2ZQYWdlSGFzQ2hhbmdlcyB8fCBtYXNrSGFzQ2hhbmdlcyk7XG4gIH1cbn1cbiIsIjxuYXYgY2xhc3M9XCJtYy1wYWdpbmF0aW9uXCIgcm9sZT1cIm5hdmlnYXRpb25cIiBhcmlhLWxhYmVsPVwicGFnaW5hdGlvblwiPlxuICA8YnV0dG9uXG4gICAgbW96LWJ1dHRvblxuICAgIHRoZW1lPVwibmV1dHJhbFwiXG4gICAgY2xhc3M9XCJtYy1wYWdpbmF0aW9uX19idXR0b25cIlxuICAgIFtkaXNhYmxlZF09XCJpc0ZpcnN0UGFnZVwiXG4gICAgW29ubHlJY29uXT1cInRydWVcIlxuICAgIChjbGljayk9XCJwcmV2aW91c1BhZ2UoKVwiXG4gICAgKm5nSWY9XCJsZWZ0SWNvbk5hbWUgfCBhc3luYzsgbGV0IGljb25cIlxuICA+XG4gICAgPG1vei1pY29uIFtpY29uTmFtZV09XCJpY29uXCI+PC9tb3otaWNvbj5cbiAgPC9idXR0b24+XG4gIDxkaXYgKm5nSWY9XCJ2aWV3U2VsZWN0XCI+XG4gICAgPHNlbGVjdFxuICAgICAgbW96LXNlbGVjdFxuICAgICAgW25nTW9kZWxdPVwiY3VycmVudFBhZ2VcIlxuICAgICAgKG5nTW9kZWxDaGFuZ2UpPVwid3JpdGVWYWx1ZSgkZXZlbnQpXCJcbiAgICAgIFtjb21wYXJlV2l0aF09XCJjb21wYXJlV2l0aFBhZ2VzXCJcbiAgICAgIFtzaXplXT1cIihzZWxlY3RTaXplIHwgYXN5bmMpIVwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRTZWxlY3RcIlxuICAgID5cbiAgICAgIDxvcHRpb24gKm5nRm9yPVwibGV0IHBhZ2Ugb2YgcGFnZXNcIiBbbmdWYWx1ZV09XCJwYWdlLnZhbHVlXCI+e3sgcGFnZS50aXRsZSB9fTwvb3B0aW9uPlxuICAgIDwvc2VsZWN0PlxuICA8L2Rpdj5cblxuICA8YnV0dG9uXG4gICAgbW96LWJ1dHRvblxuICAgIHRoZW1lPVwibmV1dHJhbFwiXG4gICAgY2xhc3M9XCJtYy1wYWdpbmF0aW9uX19idXR0b25cIlxuICAgIFtkaXNhYmxlZF09XCJpc0xhc3RQYWdlXCJcbiAgICAoY2xpY2spPVwibmV4dFBhZ2UoKVwiXG4gICAgW29ubHlJY29uXT1cInRydWVcIlxuICAgICpuZ0lmPVwicmlnaHRJY29uTmFtZSB8IGFzeW5jOyBsZXQgaWNvblwiXG4gID5cbiAgICA8bW96LWljb24gW2ljb25OYW1lXT1cImljb25cIj48L21vei1pY29uPlxuICA8L2J1dHRvbj5cbjwvbmF2PlxuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export const PAGINATION_FIRST_PAGE = 1;
|
|
2
|
+
export const PAGINATION_MIN_NUMBER_OF_PAGES = 1;
|
|
3
|
+
export const PAGINATION_PAGE_STEP = 1;
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3BhZ2luYXRpb24vcGFnaW5hdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxDQUFDLENBQUM7QUFFdkMsTUFBTSxDQUFDLE1BQU0sOEJBQThCLEdBQUcsQ0FBQyxDQUFDO0FBRWhELE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFBhZ2UgPSB7IHRpdGxlOiBzdHJpbmc7IHZhbHVlOiBudW1iZXIgfTtcblxuZXhwb3J0IGNvbnN0IFBBR0lOQVRJT05fRklSU1RfUEFHRSA9IDE7XG5cbmV4cG9ydCBjb25zdCBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVMgPSAxO1xuXG5leHBvcnQgY29uc3QgUEFHSU5BVElPTl9QQUdFX1NURVAgPSAxO1xuIl19
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FormsModule } from '@angular/forms';
|
|
4
|
+
import { GlobalEventsModule } from '../../common';
|
|
5
|
+
import { ButtonModule } from '../button';
|
|
6
|
+
import { IconModule } from '../icon/public-api';
|
|
7
|
+
import { SelectModule } from '../select/public-api';
|
|
8
|
+
import { PaginationComponent } from './pagination.component';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export class PaginationModule {
|
|
11
|
+
}
|
|
12
|
+
PaginationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
13
|
+
PaginationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, declarations: [PaginationComponent], imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule], exports: [PaginationComponent] });
|
|
14
|
+
PaginationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule] });
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, decorators: [{
|
|
16
|
+
type: NgModule,
|
|
17
|
+
args: [{
|
|
18
|
+
imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule],
|
|
19
|
+
declarations: [PaginationComponent],
|
|
20
|
+
exports: [PaginationComponent],
|
|
21
|
+
}]
|
|
22
|
+
}] });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDbEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUN6QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3BELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sZ0JBQWdCOzs2R0FBaEIsZ0JBQWdCOzhHQUFoQixnQkFBZ0IsaUJBSFosbUJBQW1CLGFBRHhCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCLGFBRXJGLG1CQUFtQjs4R0FFbEIsZ0JBQWdCLFlBSmpCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCOzJGQUlwRixnQkFBZ0I7a0JBTDVCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxrQkFBa0IsQ0FBQztvQkFDaEcsWUFBWSxFQUFFLENBQUMsbUJBQW1CLENBQUM7b0JBQ25DLE9BQU8sRUFBRSxDQUFDLG1CQUFtQixDQUFDO2lCQUMvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBHbG9iYWxFdmVudHNNb2R1bGUgfSBmcm9tICcuLi8uLi9jb21tb24nO1xuaW1wb3J0IHsgQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uJztcbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICcuLi9pY29uL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgU2VsZWN0TW9kdWxlIH0gZnJvbSAnLi4vc2VsZWN0L3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgUGFnaW5hdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZSwgQnV0dG9uTW9kdWxlLCBTZWxlY3RNb2R1bGUsIEljb25Nb2R1bGUsIEdsb2JhbEV2ZW50c01vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1BhZ2luYXRpb25Db21wb25lbnRdLFxuICBleHBvcnRzOiBbUGFnaW5hdGlvbkNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25Nb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './pagination.component';
|
|
2
|
+
export * from './pagination.module';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3BhZ2luYXRpb24vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BhZ2luYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcGFnaW5hdGlvbi5tb2R1bGUnO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLXNpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wcm9ncmVzcy1iYXIvcHJvZ3Jlc3MtYmFyLXNpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFByb2dyZXNzQmFyU2l6ZSA9ICd4cycgfCAncycgfCAnbSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLXRoZW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcHJvZ3Jlc3MtYmFyL3Byb2dyZXNzLWJhci10aGVtZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgUHJvZ3Jlc3NCYXJUaGVtZSA9ICdkZWZhdWx0JyB8ICdicmFuZGVkJztcbiJdfQ==
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
export class ProgressBarComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.size = 'm';
|
|
7
|
+
this.theme = 'default';
|
|
8
|
+
this.percent = 0;
|
|
9
|
+
this.text = '';
|
|
10
|
+
}
|
|
11
|
+
get indicatorWidth() {
|
|
12
|
+
return { width: `${this.percent}%` };
|
|
13
|
+
}
|
|
14
|
+
get hostCssClasses() {
|
|
15
|
+
const sizeClass = `mc-progressbar--${this.size}`;
|
|
16
|
+
const themeClass = `mc-progressbar--${this.theme}`;
|
|
17
|
+
const textClass = !!this.text ? `mc-progressbar--percent` : '';
|
|
18
|
+
return `mc-progressbar ${sizeClass} ${themeClass} ${textClass}`;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
22
|
+
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ProgressBarComponent, selector: "moz-progress-bar", inputs: { size: "size", theme: "theme", percent: "percent", text: "text" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:Roboto,sans-serif;align-items:center;background-color:#cdd4d8;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#007f8c;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:700;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
24
|
+
type: Component,
|
|
25
|
+
args: [{ selector: 'moz-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:Roboto,sans-serif;align-items:center;background-color:#cdd4d8;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#007f8c;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:700;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}\n"] }]
|
|
26
|
+
}], propDecorators: { size: [{
|
|
27
|
+
type: Input
|
|
28
|
+
}], theme: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], percent: [{
|
|
31
|
+
type: Input
|
|
32
|
+
}], text: [{
|
|
33
|
+
type: Input
|
|
34
|
+
}], hostCssClasses: [{
|
|
35
|
+
type: HostBinding,
|
|
36
|
+
args: ['class']
|
|
37
|
+
}] } });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcHJvZ3Jlc3MtYmFyL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7O0FBV3ZCLE1BQU0sT0FBTyxvQkFBb0I7SUFQakM7UUFRa0IsU0FBSSxHQUFvQixHQUFHLENBQUM7UUFFNUIsVUFBSyxHQUFxQixTQUFTLENBQUM7UUFFcEMsWUFBTyxHQUFHLENBQUMsQ0FBQztRQUVaLFNBQUksR0FBRyxFQUFFLENBQUM7S0FhM0I7SUFYQyxJQUFXLGNBQWM7UUFDdkIsT0FBTyxFQUFFLEtBQUssRUFBRSxHQUFHLElBQUksQ0FBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxJQUNXLGNBQWM7UUFDdkIsTUFBTSxTQUFTLEdBQUcsbUJBQW1CLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNqRCxNQUFNLFVBQVUsR0FBRyxtQkFBbUIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ25ELE1BQU0sU0FBUyxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQy9ELE9BQU8sa0JBQWtCLFNBQVMsSUFBSSxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7SUFDbEUsQ0FBQzs7aUhBbkJVLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDhMQ2pCakMsK1FBU0E7MkZEUWEsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNFLGtCQUFrQixtQkFHWCx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJOzhCQUdyQixJQUFJO3NCQUFuQixLQUFLO2dCQUVVLEtBQUs7c0JBQXBCLEtBQUs7Z0JBRVUsT0FBTztzQkFBdEIsS0FBSztnQkFFVSxJQUFJO3NCQUFuQixLQUFLO2dCQU9LLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJTaXplIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItc2l6ZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhclRoZW1lIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItdGhlbWUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb3otcHJvZ3Jlc3MtYmFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgc2l6ZTogUHJvZ3Jlc3NCYXJTaXplID0gJ20nO1xuXG4gIEBJbnB1dCgpIHB1YmxpYyB0aGVtZTogUHJvZ3Jlc3NCYXJUaGVtZSA9ICdkZWZhdWx0JztcblxuICBASW5wdXQoKSBwdWJsaWMgcGVyY2VudCA9IDA7XG5cbiAgQElucHV0KCkgcHVibGljIHRleHQgPSAnJztcblxuICBwdWJsaWMgZ2V0IGluZGljYXRvcldpZHRoKCkge1xuICAgIHJldHVybiB7IHdpZHRoOiBgJHt0aGlzLnBlcmNlbnR9JWAgfTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MnKVxuICBwdWJsaWMgZ2V0IGhvc3RDc3NDbGFzc2VzKCkge1xuICAgIGNvbnN0IHNpemVDbGFzcyA9IGBtYy1wcm9ncmVzc2Jhci0tJHt0aGlzLnNpemV9YDtcbiAgICBjb25zdCB0aGVtZUNsYXNzID0gYG1jLXByb2dyZXNzYmFyLS0ke3RoaXMudGhlbWV9YDtcbiAgICBjb25zdCB0ZXh0Q2xhc3MgPSAhIXRoaXMudGV4dCA/IGBtYy1wcm9ncmVzc2Jhci0tcGVyY2VudGAgOiAnJztcbiAgICByZXR1cm4gYG1jLXByb2dyZXNzYmFyICR7c2l6ZUNsYXNzfSAke3RoZW1lQ2xhc3N9ICR7dGV4dENsYXNzfWA7XG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJtYy1wcm9ncmVzc2Jhcl9faW5kaWNhdG9yXCJcbiAgcm9sZT1cInByb2dyZXNzYmFyXCJcbiAgW2F0dHIuYXJpYS12YWx1ZW5vd109XCJwZXJjZW50XCJcbiAgYXJpYS12YWx1ZW1pbj1cIjBcIlxuICBhcmlhLXZhbHVlbWF4PVwiMTAwXCJcbiAgW25nU3R5bGVdPVwiaW5kaWNhdG9yV2lkdGhcIlxuPjwvZGl2PlxuPGRpdiAqbmdJZj1cInRleHRcIiBjbGFzcz1cIm1jLXByb2dyZXNzYmFyX19wZXJjZW50YWdlXCI+e3sgdGV4dCB9fTwvZGl2PlxuIl19
|