@mozaic-ds/angular 0.22.0-beta → 0.22.0
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/.editorconfig +16 -0
- package/.eslintignore +8 -0
- package/.eslintrc.json +70 -0
- package/.github/ISSUE_TEMPLATE/1-pattern-addition-proposal.md +23 -0
- package/.github/ISSUE_TEMPLATE/2-pattern-bug-report.md +68 -0
- package/.github/ISSUE_TEMPLATE/3-pattern-enhancement-proposal.md +34 -0
- package/.github/ISSUE_TEMPLATE/4-other.md +36 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +19 -0
- package/.github/workflows/onPR.yml +93 -0
- package/.github/workflows/onPRClosed.yml +17 -0
- package/.github/workflows/onPushMaster.yml +59 -0
- package/.husky/pre-commit +4 -0
- package/.lintstagedrc +8 -0
- package/.nvmrc +1 -0
- package/.prettierignore +3 -0
- package/.prettierrc +7 -0
- package/.release-it.json +21 -0
- package/.storybook/main.js +19 -0
- package/.storybook/preview.js +27 -0
- package/.storybook/tsconfig.json +13 -0
- package/.storybook/typings.d.ts +4 -0
- package/.storybook/webpack.config.js +21 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/CHANGELOG.md +19 -0
- package/angular.json +113 -0
- package/mozaic-angular.svg +9 -0
- package/mozaic.config.js +6 -0
- package/package.json +1 -4
- package/product-info.json +1 -0
- package/projects/kit/.browserslistrc +16 -0
- package/projects/kit/.eslintrc.json +35 -0
- package/projects/kit/common/global-events/global-events.module.ts +7 -0
- package/projects/kit/common/global-events/global-events.service.ts +27 -0
- package/projects/kit/common/utils/boolean-property.ts +3 -0
- package/projects/kit/common/utils/generate-id.ts +7 -0
- package/projects/kit/common/utils/get-random-number.ts +6 -0
- package/projects/kit/common/utils/overwrite-style.ts +10 -0
- package/projects/kit/components/accordion/accordion.component.html +25 -0
- package/projects/kit/components/accordion/accordion.component.scss +2 -0
- package/projects/kit/components/accordion/accordion.component.spec.ts +24 -0
- package/projects/kit/components/accordion/accordion.component.ts +27 -0
- package/projects/kit/components/accordion/accordion.module.ts +11 -0
- package/projects/kit/components/accordion/accordion.stories.ts +55 -0
- package/projects/kit/components/accordion/accordion.ts +1 -0
- package/projects/kit/components/accordion/index.ts +1 -0
- package/projects/kit/components/badge/badge.component.html +1 -0
- package/projects/kit/components/badge/badge.component.scss +2 -0
- package/projects/kit/components/badge/badge.component.spec.ts +24 -0
- package/projects/kit/components/badge/badge.component.ts +29 -0
- package/projects/kit/components/badge/badge.module.ts +10 -0
- package/projects/kit/components/badge/badge.stories.ts +32 -0
- package/projects/kit/components/badge/badge.ts +3 -0
- package/projects/kit/components/button/button.component.html +2 -0
- package/projects/kit/components/button/button.component.scss +23 -0
- package/projects/kit/components/button/button.component.spec.ts +24 -0
- package/projects/kit/components/button/button.component.ts +58 -0
- package/projects/kit/components/button/button.module.ts +10 -0
- package/projects/kit/components/button/button.stories.ts +72 -0
- package/projects/kit/components/button/button.ts +8 -0
- package/projects/kit/components/checkbox/checkbox.component.html +13 -0
- package/projects/kit/components/checkbox/checkbox.component.scss +3 -0
- package/projects/kit/components/checkbox/checkbox.component.spec.ts +24 -0
- package/projects/kit/components/checkbox/checkbox.component.ts +73 -0
- package/projects/kit/components/checkbox/checkbox.module.ts +13 -0
- package/projects/kit/components/checkbox/checkbox.stories.ts +47 -0
- package/projects/kit/components/dialog/classes/dialog-config.ts +13 -0
- package/projects/kit/components/dialog/classes/dialog-injector.ts +34 -0
- package/projects/kit/components/dialog/classes/dialog-ref.ts +66 -0
- package/projects/kit/components/dialog/dialog-animation.ts +24 -0
- package/projects/kit/components/dialog/dialog.component.html +27 -0
- package/projects/kit/components/dialog/dialog.component.scss +3 -0
- package/projects/kit/components/dialog/dialog.component.spec.ts +24 -0
- package/projects/kit/components/dialog/dialog.component.ts +75 -0
- package/projects/kit/components/dialog/dialog.module.ts +12 -0
- package/projects/kit/components/dialog/dialog.service.spec.ts +15 -0
- package/projects/kit/components/dialog/dialog.service.ts +88 -0
- package/projects/kit/components/dialog/dialog.stories.ts +23 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.html +3 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.ts +18 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.html +10 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.scss +7 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.ts +28 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-example.module.ts +19 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.html +6 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.scss +11 -0
- package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.ts +16 -0
- package/projects/kit/components/dialog/index.ts +1 -0
- package/projects/kit/components/dialog/interfaces/dialog-config.ts +7 -0
- package/projects/kit/components/dialog/interfaces/dialog-di-params.ts +7 -0
- package/projects/kit/components/dialog/interfaces/dialog-ref.ts +20 -0
- package/projects/kit/components/dialog/tokens/dialog-config.token.ts +3 -0
- package/projects/kit/components/dialog/tokens/dialog-data.token.ts +3 -0
- package/projects/kit/components/dialog/tokens/dialog-ref.token.ts +3 -0
- package/projects/kit/components/field/directives/input-icon.directive.ts +9 -0
- package/projects/kit/components/field/field-error.component.html +1 -0
- package/projects/kit/components/field/field-error.component.scss +3 -0
- package/projects/kit/components/field/field-error.component.ts +12 -0
- package/projects/kit/components/field/field.component.html +30 -0
- package/projects/kit/components/field/field.component.scss +30 -0
- package/projects/kit/components/field/field.component.ts +49 -0
- package/projects/kit/components/field/field.module.ts +12 -0
- package/projects/kit/components/field/field.stories.ts +48 -0
- package/projects/kit/components/flag/flag.component.html +1 -0
- package/projects/kit/components/flag/flag.component.scss +2 -0
- package/projects/kit/components/flag/flag.component.spec.ts +47 -0
- package/projects/kit/components/flag/flag.component.ts +26 -0
- package/projects/kit/components/flag/flag.module.ts +10 -0
- package/projects/kit/components/flag/flag.stories.ts +33 -0
- package/projects/kit/components/flag/flag.ts +24 -0
- package/projects/kit/components/flag/index.ts +1 -0
- package/projects/kit/components/icon/icon-size.ts +6 -0
- package/projects/kit/components/icon/icon.component.scss +20 -0
- package/projects/kit/components/icon/icon.component.spec.ts +24 -0
- package/projects/kit/components/icon/icon.component.ts +59 -0
- package/projects/kit/components/icon/icon.module.ts +10 -0
- package/projects/kit/components/icon/icon.service.ts +42 -0
- package/projects/kit/components/icon/icon.stories.ts +24 -0
- package/projects/kit/components/layer/classes/index.ts +0 -0
- package/projects/kit/components/layer/classes/layer-injector.ts +35 -0
- package/projects/kit/components/layer/classes/layer-ref.ts +54 -0
- package/projects/kit/components/layer/interfaces/layer-config.ts +4 -0
- package/projects/kit/components/layer/interfaces/layer-di-params.ts +7 -0
- package/projects/kit/components/layer/interfaces/layer-ref.ts +17 -0
- package/projects/kit/components/layer/layer-animation.ts +24 -0
- package/projects/kit/components/layer/layer-example.component.ts +43 -0
- package/projects/kit/components/layer/layer.component.html +21 -0
- package/projects/kit/components/layer/layer.component.scss +3 -0
- package/projects/kit/components/layer/layer.component.ts +55 -0
- package/projects/kit/components/layer/layer.module.ts +13 -0
- package/projects/kit/components/layer/layer.service.ts +73 -0
- package/projects/kit/components/layer/layer.stories.ts +29 -0
- package/projects/kit/components/layer/tokens/layer-config.token.ts +3 -0
- package/projects/kit/components/layer/tokens/layer-data.token.ts +3 -0
- package/projects/kit/components/layer/tokens/layer-ref.token.ts +3 -0
- package/projects/kit/components/loader/loader-run-example.component.ts +20 -0
- package/projects/kit/components/loader/loader.component.html +15 -0
- package/projects/kit/components/loader/loader.component.scss +7 -0
- package/projects/kit/components/loader/loader.component.ts +57 -0
- package/projects/kit/components/loader/loader.module.ts +12 -0
- package/projects/kit/components/loader/loader.service.ts +61 -0
- package/projects/kit/components/loader/loader.stories.ts +51 -0
- package/projects/kit/components/loader/loader.ts +20 -0
- package/projects/kit/components/notification/notification-animation.ts +24 -0
- package/projects/kit/components/notification/notification-container.component.html +6 -0
- package/projects/kit/components/notification/notification-container.component.scss +10 -0
- package/projects/kit/components/notification/notification-container.component.ts +35 -0
- package/projects/kit/components/notification/notification-example.component.ts +17 -0
- package/projects/kit/components/notification/notification-footer.ts +11 -0
- package/projects/kit/components/notification/notification-message.ts +11 -0
- package/projects/kit/components/notification/notification-title.ts +11 -0
- package/projects/kit/components/notification/notification.component.html +5 -0
- package/projects/kit/components/notification/notification.component.scss +2 -0
- package/projects/kit/components/notification/notification.component.ts +30 -0
- package/projects/kit/components/notification/notification.module.ts +48 -0
- package/projects/kit/components/notification/notification.service.ts +50 -0
- package/projects/kit/components/notification/notification.stories.ts +52 -0
- package/projects/kit/components/notification/notification.ts +21 -0
- package/projects/kit/components/pagination/pagination.component.html +37 -0
- package/projects/kit/components/pagination/pagination.component.scss +7 -0
- package/projects/kit/components/pagination/pagination.component.ts +196 -0
- package/projects/kit/components/pagination/pagination.module.ts +15 -0
- package/projects/kit/components/pagination/pagination.stories.ts +28 -0
- package/projects/kit/components/pagination/pagination.ts +7 -0
- package/projects/kit/components/progress-bar/progress-bar.component.html +9 -0
- package/projects/kit/components/progress-bar/progress-bar.component.scss +2 -0
- package/projects/kit/components/progress-bar/progress-bar.component.ts +38 -0
- package/projects/kit/components/progress-bar/progress-bar.module.ts +10 -0
- package/projects/kit/components/progress-bar/progress-bar.stories.ts +39 -0
- package/projects/kit/components/select/select-size.ts +6 -0
- package/projects/kit/components/select/select.component.html +1 -0
- package/projects/kit/components/select/select.component.scss +3 -0
- package/projects/kit/components/select/select.component.ts +27 -0
- package/projects/kit/components/select/select.module.ts +10 -0
- package/projects/kit/components/select/select.stories.ts +39 -0
- package/projects/kit/components/stepper/step.component.html +14 -0
- package/projects/kit/components/stepper/step.component.ts +61 -0
- package/projects/kit/components/stepper/stepper.component.html +3 -0
- package/projects/kit/components/stepper/stepper.component.scss +3 -0
- package/projects/kit/components/stepper/stepper.component.ts +95 -0
- package/projects/kit/components/stepper/stepper.module.ts +12 -0
- package/projects/kit/components/stepper/stepper.stories.ts +33 -0
- package/projects/kit/components/tabs/index.ts +1 -0
- package/projects/kit/components/tabs/tab-selectors.ts +2 -0
- package/projects/kit/components/tabs/tab.component.html +1 -0
- package/projects/kit/components/tabs/tab.component.scss +16 -0
- package/projects/kit/components/tabs/tab.component.spec.ts +27 -0
- package/projects/kit/components/tabs/tab.component.ts +56 -0
- package/projects/kit/components/tabs/tabs.component.html +1 -0
- package/projects/kit/components/tabs/tabs.component.scss +9 -0
- package/projects/kit/components/tabs/tabs.component.spec.ts +24 -0
- package/projects/kit/components/tabs/tabs.component.ts +194 -0
- package/projects/kit/components/tabs/tabs.module.ts +11 -0
- package/projects/kit/components/tabs/tabs.stories.ts +40 -0
- package/projects/kit/components/tag/tag.component.html +29 -0
- package/projects/kit/components/tag/tag.component.scss +3 -0
- package/projects/kit/components/tag/tag.component.ts +71 -0
- package/projects/kit/components/tag/tag.module.ts +11 -0
- package/projects/kit/components/tag/text-area.stories.ts +49 -0
- package/projects/kit/components/text-area/text-area.component.scss +3 -0
- package/projects/kit/components/text-area/text-area.component.ts +47 -0
- package/projects/kit/components/text-area/text-area.module.ts +8 -0
- package/projects/kit/components/text-area/text-area.stories.ts +33 -0
- package/projects/kit/components/text-input/text-input.component.scss +15 -0
- package/projects/kit/components/text-input/text-input.component.spec.ts +24 -0
- package/projects/kit/components/text-input/text-input.component.ts +74 -0
- package/projects/kit/components/text-input/text-input.module.ts +12 -0
- package/projects/kit/components/text-input/text-input.stories.ts +80 -0
- package/projects/kit/components/toggle/toggle.component.html +13 -0
- package/projects/kit/components/toggle/toggle.component.scss +2 -0
- package/projects/kit/components/toggle/toggle.component.ts +76 -0
- package/projects/kit/components/toggle/toggle.module.ts +10 -0
- package/projects/kit/components/toggle/toggle.stories.ts +35 -0
- package/projects/kit/components/tooltip/tooltip.component.html +2 -0
- package/projects/kit/components/tooltip/tooltip.component.scss +2 -0
- package/projects/kit/components/tooltip/tooltip.component.ts +32 -0
- package/projects/kit/components/tooltip/tooltip.module.ts +10 -0
- package/projects/kit/components/tooltip/tooltip.stories.ts +39 -0
- package/projects/kit/karma.conf.js +41 -0
- package/projects/kit/ng-package-adeo.json +21 -0
- package/projects/kit/ng-package.json +23 -0
- package/projects/kit/package.json +11 -0
- package/projects/kit/tsconfig.lib.json +12 -0
- package/projects/kit/tsconfig.lib.prod.json +10 -0
- package/projects/kit/tsconfig.spec.json +10 -0
- package/projects/schematics/.eslintrc.json +35 -0
- package/projects/schematics/README.md +17 -0
- package/projects/schematics/collection.json +10 -0
- package/projects/schematics/kit-component/files/__name@dasherize__.stories.ts.template +21 -0
- package/projects/schematics/kit-component/files/index.ts.template +1 -0
- package/projects/schematics/kit-component/index.ts +82 -0
- package/projects/schematics/kit-component/schema.json +26 -0
- package/projects/schematics/kit-component/schema.ts +10 -0
- package/projects/schematics/ng-package.json +7 -0
- package/projects/schematics/package.json +20 -0
- package/projects/schematics/public-api.ts +1 -0
- package/projects/schematics/tsconfig.lib.json +23 -0
- package/projects/schematics/tsconfig.lib.prod.json +10 -0
- package/tsconfig.json +33 -0
- package/dist/mozaic-angular/adeo/common/global-events/global-events.module.d.ts +0 -6
- package/dist/mozaic-angular/adeo/common/global-events/global-events.service.d.ts +0 -11
- package/dist/mozaic-angular/adeo/common/utils/boolean-property.d.ts +0 -1
- package/dist/mozaic-angular/adeo/common/utils/generate-id.d.ts +0 -1
- package/dist/mozaic-angular/adeo/common/utils/get-random-number.d.ts +0 -1
- package/dist/mozaic-angular/adeo/common/utils/overwrite-style.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/badge/badge.component.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/badge/badge.d.ts +0 -3
- package/dist/mozaic-angular/adeo/components/badge/badge.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/button/button.component.d.ts +0 -16
- package/dist/mozaic-angular/adeo/components/button/button.d.ts +0 -7
- package/dist/mozaic-angular/adeo/components/button/button.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/checkbox/checkbox.component.d.ts +0 -21
- package/dist/mozaic-angular/adeo/components/checkbox/checkbox.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-config.d.ts +0 -9
- package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-injector.d.ts +0 -10
- package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-ref.d.ts +0 -25
- package/dist/mozaic-angular/adeo/components/dialog/dialog-animation.d.ts +0 -1
- package/dist/mozaic-angular/adeo/components/dialog/dialog.component.d.ts +0 -23
- package/dist/mozaic-angular/adeo/components/dialog/dialog.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/dialog/dialog.service.d.ts +0 -20
- package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-config.d.ts +0 -7
- package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
- package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-ref.d.ts +0 -18
- package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-config.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-data.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/field/directives/input-icon.directive.d.ts +0 -7
- package/dist/mozaic-angular/adeo/components/field/field-error.component.d.ts +0 -5
- package/dist/mozaic-angular/adeo/components/field/field.component.d.ts +0 -16
- package/dist/mozaic-angular/adeo/components/field/field.module.d.ts +0 -10
- package/dist/mozaic-angular/adeo/components/icon/icon-size.d.ts +0 -6
- package/dist/mozaic-angular/adeo/components/icon/icon.component.d.ts +0 -15
- package/dist/mozaic-angular/adeo/components/icon/icon.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/icon/icon.service.d.ts +0 -13
- package/dist/mozaic-angular/adeo/components/layer/classes/layer-injector.d.ts +0 -10
- package/dist/mozaic-angular/adeo/components/layer/classes/layer-ref.d.ts +0 -21
- package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-config.d.ts +0 -4
- package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-di-params.d.ts +0 -6
- package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-ref.d.ts +0 -15
- package/dist/mozaic-angular/adeo/components/layer/layer-animation.d.ts +0 -1
- package/dist/mozaic-angular/adeo/components/layer/layer.component.d.ts +0 -19
- package/dist/mozaic-angular/adeo/components/layer/layer.module.d.ts +0 -9
- package/dist/mozaic-angular/adeo/components/layer/layer.service.d.ts +0 -19
- package/dist/mozaic-angular/adeo/components/layer/tokens/layer-config.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/layer/tokens/layer-data.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/layer/tokens/layer-ref.token.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/loader/loader.component.d.ts +0 -25
- package/dist/mozaic-angular/adeo/components/loader/loader.d.ts +0 -16
- package/dist/mozaic-angular/adeo/components/loader/loader.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/loader/loader.service.d.ts +0 -18
- package/dist/mozaic-angular/adeo/components/notification/notification-animation.d.ts +0 -1
- package/dist/mozaic-angular/adeo/components/notification/notification-container.component.d.ts +0 -12
- package/dist/mozaic-angular/adeo/components/notification/notification-footer.d.ts +0 -5
- package/dist/mozaic-angular/adeo/components/notification/notification-message.d.ts +0 -5
- package/dist/mozaic-angular/adeo/components/notification/notification-title.d.ts +0 -5
- package/dist/mozaic-angular/adeo/components/notification/notification.component.d.ts +0 -9
- package/dist/mozaic-angular/adeo/components/notification/notification.d.ts +0 -15
- package/dist/mozaic-angular/adeo/components/notification/notification.module.d.ts +0 -15
- package/dist/mozaic-angular/adeo/components/notification/notification.service.d.ts +0 -16
- package/dist/mozaic-angular/adeo/components/pagination/pagination.component.d.ts +0 -46
- package/dist/mozaic-angular/adeo/components/pagination/pagination.d.ts +0 -7
- package/dist/mozaic-angular/adeo/components/pagination/pagination.module.d.ts +0 -13
- package/dist/mozaic-angular/adeo/components/progress-bar/progress-bar.component.d.ts +0 -15
- package/dist/mozaic-angular/adeo/components/progress-bar/progress-bar.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/select/select-size.d.ts +0 -5
- package/dist/mozaic-angular/adeo/components/select/select.component.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/select/select.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/stepper/step.component.d.ts +0 -20
- package/dist/mozaic-angular/adeo/components/stepper/stepper.component.d.ts +0 -20
- package/dist/mozaic-angular/adeo/components/stepper/stepper.module.d.ts +0 -10
- package/dist/mozaic-angular/adeo/components/tabs/tab-selectors.d.ts +0 -2
- package/dist/mozaic-angular/adeo/components/tabs/tab.component.d.ts +0 -16
- package/dist/mozaic-angular/adeo/components/tabs/tabs.component.d.ts +0 -36
- package/dist/mozaic-angular/adeo/components/tabs/tabs.module.d.ts +0 -9
- package/dist/mozaic-angular/adeo/components/tag/tag.component.d.ts +0 -23
- package/dist/mozaic-angular/adeo/components/tag/tag.module.d.ts +0 -9
- package/dist/mozaic-angular/adeo/components/text-area/text-area.component.d.ts +0 -12
- package/dist/mozaic-angular/adeo/components/text-area/text-area.module.d.ts +0 -7
- package/dist/mozaic-angular/adeo/components/text-input/text-input.component.d.ts +0 -21
- package/dist/mozaic-angular/adeo/components/text-input/text-input.module.d.ts +0 -10
- package/dist/mozaic-angular/adeo/components/toggle/toggle.component.d.ts +0 -22
- package/dist/mozaic-angular/adeo/components/toggle/toggle.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/components/tooltip/tooltip.component.d.ts +0 -11
- package/dist/mozaic-angular/adeo/components/tooltip/tooltip.module.d.ts +0 -8
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.module.mjs +0 -15
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.service.mjs +0 -30
- package/dist/mozaic-angular/adeo/esm2020/common/global-events/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/common/index.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/common/utils/boolean-property.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/common/utils/generate-id.mjs +0 -7
- package/dist/mozaic-angular/adeo/esm2020/common/utils/get-random-number.mjs +0 -6
- package/dist/mozaic-angular/adeo/esm2020/common/utils/index.mjs +0 -5
- package/dist/mozaic-angular/adeo/esm2020/common/utils/overwrite-style.mjs +0 -5
- package/dist/mozaic-angular/adeo/esm2020/common/utils/public-api.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.component.mjs +0 -30
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/badge/index.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.component.mjs +0 -53
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/button/button.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/button/index.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.component.mjs +0 -58
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.module.mjs +0 -21
- package/dist/mozaic-angular/adeo/esm2020/components/checkbox/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/index.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog-animation.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.component.mjs +0 -57
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.module.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.service.mjs +0 -67
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/index.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/public-api.mjs +0 -6
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/index.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
- package/dist/mozaic-angular/adeo/esm2020/components/field/field-error.component.mjs +0 -13
- package/dist/mozaic-angular/adeo/esm2020/components/field/field.component.mjs +0 -40
- package/dist/mozaic-angular/adeo/esm2020/components/field/field.module.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/field/public-api.mjs +0 -5
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon-size.mjs +0 -8
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.component.mjs +0 -49
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.service.mjs +0 -42
- package/dist/mozaic-angular/adeo/esm2020/components/icon/public-api.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-injector.mjs +0 -22
- package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-ref.mjs +0 -38
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/index.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer-animation.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.component.mjs +0 -40
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.module.mjs +0 -21
- package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.service.mjs +0 -56
- package/dist/mozaic-angular/adeo/esm2020/components/layer/public-api.mjs +0 -6
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/index.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.component.mjs +0 -47
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.mjs +0 -11
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.module.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.service.mjs +0 -53
- package/dist/mozaic-angular/adeo/esm2020/components/loader/public-api.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-animation.mjs +0 -21
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-container.component.mjs +0 -38
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-footer.mjs +0 -11
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-message.mjs +0 -11
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-title.mjs +0 -11
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.component.mjs +0 -29
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.mjs +0 -8
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.module.mjs +0 -66
- package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.service.mjs +0 -40
- package/dist/mozaic-angular/adeo/esm2020/components/notification/public-api.mjs +0 -9
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.component.mjs +0 -133
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.module.mjs +0 -23
- package/dist/mozaic-angular/adeo/esm2020/components/pagination/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/public-api.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/select/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/select/select-size.mjs +0 -6
- package/dist/mozaic-angular/adeo/esm2020/components/select/select.component.mjs +0 -25
- package/dist/mozaic-angular/adeo/esm2020/components/select/select.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/public-api.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/step-state.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/step.component.mjs +0 -51
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.component.mjs +0 -79
- package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.module.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/public-api.mjs +0 -4
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab-selectors.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab.component.mjs +0 -53
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.component.mjs +0 -126
- package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.module.mjs +0 -19
- package/dist/mozaic-angular/adeo/esm2020/components/tag/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag-type.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.component.mjs +0 -61
- package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.module.mjs +0 -19
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.component.mjs +0 -43
- package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.module.mjs +0 -16
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.component.mjs +0 -64
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.module.mjs +0 -20
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle-size.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.component.mjs +0 -59
- package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip-position.mjs +0 -2
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.component.mjs +0 -32
- package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.module.mjs +0 -18
- package/dist/mozaic-angular/adeo/esm2020/mozaic-ds-angular.mjs +0 -5
- package/dist/mozaic-angular/adeo/esm2020/public-api.mjs +0 -3
- package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs +0 -2052
- package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs.map +0 -1
- package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs +0 -2025
- package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs.map +0 -1
- package/dist/mozaic-angular/adeo/index.d.ts +0 -5
- package/dist/mozaic-angular/adeo/package.json +0 -31
- package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_API_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_API_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_API_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_API_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Camera_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Camera_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Camera_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Camera_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Code_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Code_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Code_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Code_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Document_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Document_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Document_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Document_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Group_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Group_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Group_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Group_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Picker_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Play_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Play_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Play_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Play_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Player_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Player_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Player_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Player_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Player_96px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Policies_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Policies_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Policies_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Policies_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Print_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Print_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Print_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Print_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Project_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Project_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Project_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Project_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Read_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Read_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Read_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Read_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Release_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Server_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Sound_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Sound_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Sound_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Sound_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Stop_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Stop_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Stop_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Stop_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Upload_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Upload_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Upload_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_Upload_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_View360_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_View360_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_View360_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_View360_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Media_View360_96px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Locator_16px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Locator_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Locator_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Locator_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Locator_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Logo_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Logo_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Logo_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Logo_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Map_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Map_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Map_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Map_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Living_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Living_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Living_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Living_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Security_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Security_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Security_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Security_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_A11y_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Administration_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Administration_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Administration_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Administration_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Blower_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Blower_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Blower_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Blower_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Company_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Door_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Door_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Door_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Door_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Heat_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Heat_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Heat_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Heat_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_House_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_House_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_House_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_House_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Level_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Level_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Level_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Level_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Premium_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Premium_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Premium_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Premium_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Survey_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Survey_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Survey_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Survey_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_64px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_24px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_32px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_48px.svg +0 -1
- package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_64px.svg +0 -1
- package/dist/mozaic-angular/assets/special-icons/checkbox-checked-disabled.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/checkbox-checked.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate-disabled.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/invalid-cross.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/layer-cross.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/notification-danger-m.svg +0 -4
- package/dist/mozaic-angular/assets/special-icons/notification-danger-s.svg +0 -4
- package/dist/mozaic-angular/assets/special-icons/notification-information-m.svg +0 -5
- package/dist/mozaic-angular/assets/special-icons/notification-information-s.svg +0 -5
- package/dist/mozaic-angular/assets/special-icons/notification-success-m.svg +0 -4
- package/dist/mozaic-angular/assets/special-icons/notification-success-s.svg +0 -4
- package/dist/mozaic-angular/assets/special-icons/notification-warning-m.svg +0 -5
- package/dist/mozaic-angular/assets/special-icons/notification-warning-s.svg +0 -5
- package/dist/mozaic-angular/assets/special-icons/remove-tag.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/toggle-checked-disabled.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/toggle-checked.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/toggle-cross-disabled.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/toggle-cross.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/tooltip-triangle.svg +0 -3
- package/dist/mozaic-angular/assets/special-icons/valid-check-mark.svg +0 -11
- package/dist/mozaic-angular/assets/tokens/adeo/android/colors.xml +0 -482
- package/dist/mozaic-angular/assets/tokens/adeo/android/font_dimens.xml +0 -18
- package/dist/mozaic-angular/assets/tokens/adeo/css/_variables.scss +0 -626
- package/dist/mozaic-angular/assets/tokens/adeo/css/root.scss +0 -478
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.h +0 -490
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.m +0 -502
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.swift +0 -485
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.h +0 -69
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.m +0 -70
- package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
- package/dist/mozaic-angular/assets/tokens/adeo/js/tokens.js +0 -574
- package/dist/mozaic-angular/assets/tokens/adeo/js/tokensObject.js +0 -9637
- package/dist/mozaic-angular/assets/tokens/adeo/scss/_tokens.scss +0 -1617
- package/dist/mozaic-angular/common/global-events/global-events.module.d.ts +0 -6
- package/dist/mozaic-angular/common/global-events/global-events.service.d.ts +0 -11
- package/dist/mozaic-angular/common/global-events/public-api.d.ts +0 -2
- package/dist/mozaic-angular/common/index.d.ts +0 -2
- package/dist/mozaic-angular/common/utils/boolean-property.d.ts +0 -1
- package/dist/mozaic-angular/common/utils/generate-id.d.ts +0 -1
- package/dist/mozaic-angular/common/utils/get-random-number.d.ts +0 -1
- package/dist/mozaic-angular/common/utils/index.d.ts +0 -4
- package/dist/mozaic-angular/common/utils/overwrite-style.d.ts +0 -2
- package/dist/mozaic-angular/common/utils/public-api.d.ts +0 -1
- package/dist/mozaic-angular/components/badge/badge.component.d.ts +0 -8
- package/dist/mozaic-angular/components/badge/badge.d.ts +0 -3
- package/dist/mozaic-angular/components/badge/badge.module.d.ts +0 -8
- package/dist/mozaic-angular/components/badge/index.d.ts +0 -2
- package/dist/mozaic-angular/components/button/button.component.d.ts +0 -16
- package/dist/mozaic-angular/components/button/button.d.ts +0 -7
- package/dist/mozaic-angular/components/button/button.module.d.ts +0 -8
- package/dist/mozaic-angular/components/button/index.d.ts +0 -2
- package/dist/mozaic-angular/components/checkbox/checkbox.component.d.ts +0 -21
- package/dist/mozaic-angular/components/checkbox/checkbox.module.d.ts +0 -8
- package/dist/mozaic-angular/components/checkbox/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/dialog/classes/dialog-config.d.ts +0 -9
- package/dist/mozaic-angular/components/dialog/classes/dialog-injector.d.ts +0 -10
- package/dist/mozaic-angular/components/dialog/classes/dialog-ref.d.ts +0 -25
- package/dist/mozaic-angular/components/dialog/classes/index.d.ts +0 -3
- package/dist/mozaic-angular/components/dialog/dialog-animation.d.ts +0 -1
- package/dist/mozaic-angular/components/dialog/dialog.component.d.ts +0 -23
- package/dist/mozaic-angular/components/dialog/dialog.module.d.ts +0 -8
- package/dist/mozaic-angular/components/dialog/dialog.service.d.ts +0 -20
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-config.d.ts +0 -7
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
- package/dist/mozaic-angular/components/dialog/interfaces/dialog-ref.d.ts +0 -18
- package/dist/mozaic-angular/components/dialog/interfaces/index.d.ts +0 -3
- package/dist/mozaic-angular/components/dialog/public-api.d.ts +0 -5
- package/dist/mozaic-angular/components/dialog/tokens/dialog-config.token.d.ts +0 -2
- package/dist/mozaic-angular/components/dialog/tokens/dialog-data.token.d.ts +0 -2
- package/dist/mozaic-angular/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
- package/dist/mozaic-angular/components/dialog/tokens/index.d.ts +0 -3
- package/dist/mozaic-angular/components/field/directives/input-icon.directive.d.ts +0 -7
- package/dist/mozaic-angular/components/field/field-error.component.d.ts +0 -5
- package/dist/mozaic-angular/components/field/field.component.d.ts +0 -16
- package/dist/mozaic-angular/components/field/field.module.d.ts +0 -10
- package/dist/mozaic-angular/components/field/public-api.d.ts +0 -4
- package/dist/mozaic-angular/components/icon/icon-size.d.ts +0 -6
- package/dist/mozaic-angular/components/icon/icon.component.d.ts +0 -15
- package/dist/mozaic-angular/components/icon/icon.module.d.ts +0 -8
- package/dist/mozaic-angular/components/icon/icon.service.d.ts +0 -13
- package/dist/mozaic-angular/components/icon/public-api.d.ts +0 -3
- package/dist/mozaic-angular/components/layer/classes/layer-injector.d.ts +0 -10
- package/dist/mozaic-angular/components/layer/classes/layer-ref.d.ts +0 -21
- package/dist/mozaic-angular/components/layer/interfaces/index.d.ts +0 -3
- package/dist/mozaic-angular/components/layer/interfaces/layer-config.d.ts +0 -4
- package/dist/mozaic-angular/components/layer/interfaces/layer-di-params.d.ts +0 -6
- package/dist/mozaic-angular/components/layer/interfaces/layer-ref.d.ts +0 -15
- package/dist/mozaic-angular/components/layer/layer-animation.d.ts +0 -1
- package/dist/mozaic-angular/components/layer/layer.component.d.ts +0 -19
- package/dist/mozaic-angular/components/layer/layer.module.d.ts +0 -9
- package/dist/mozaic-angular/components/layer/layer.service.d.ts +0 -19
- package/dist/mozaic-angular/components/layer/public-api.d.ts +0 -5
- package/dist/mozaic-angular/components/layer/tokens/index.d.ts +0 -3
- package/dist/mozaic-angular/components/layer/tokens/layer-config.token.d.ts +0 -2
- package/dist/mozaic-angular/components/layer/tokens/layer-data.token.d.ts +0 -2
- package/dist/mozaic-angular/components/layer/tokens/layer-ref.token.d.ts +0 -2
- package/dist/mozaic-angular/components/loader/loader.component.d.ts +0 -25
- package/dist/mozaic-angular/components/loader/loader.d.ts +0 -16
- package/dist/mozaic-angular/components/loader/loader.module.d.ts +0 -8
- package/dist/mozaic-angular/components/loader/loader.service.d.ts +0 -18
- package/dist/mozaic-angular/components/loader/public-api.d.ts +0 -3
- package/dist/mozaic-angular/components/notification/notification-animation.d.ts +0 -1
- package/dist/mozaic-angular/components/notification/notification-container.component.d.ts +0 -12
- package/dist/mozaic-angular/components/notification/notification-footer.d.ts +0 -5
- package/dist/mozaic-angular/components/notification/notification-message.d.ts +0 -5
- package/dist/mozaic-angular/components/notification/notification-title.d.ts +0 -5
- package/dist/mozaic-angular/components/notification/notification.component.d.ts +0 -9
- package/dist/mozaic-angular/components/notification/notification.d.ts +0 -15
- package/dist/mozaic-angular/components/notification/notification.module.d.ts +0 -15
- package/dist/mozaic-angular/components/notification/notification.service.d.ts +0 -16
- package/dist/mozaic-angular/components/notification/public-api.d.ts +0 -8
- package/dist/mozaic-angular/components/pagination/pagination.component.d.ts +0 -46
- package/dist/mozaic-angular/components/pagination/pagination.d.ts +0 -7
- package/dist/mozaic-angular/components/pagination/pagination.module.d.ts +0 -13
- package/dist/mozaic-angular/components/pagination/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/progress-bar/progress-bar-size.d.ts +0 -1
- package/dist/mozaic-angular/components/progress-bar/progress-bar-theme.d.ts +0 -1
- package/dist/mozaic-angular/components/progress-bar/progress-bar.component.d.ts +0 -15
- package/dist/mozaic-angular/components/progress-bar/progress-bar.module.d.ts +0 -8
- package/dist/mozaic-angular/components/progress-bar/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/public-api.d.ts +0 -19
- package/dist/mozaic-angular/components/select/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/select/select-size.d.ts +0 -5
- package/dist/mozaic-angular/components/select/select.component.d.ts +0 -8
- package/dist/mozaic-angular/components/select/select.module.d.ts +0 -8
- package/dist/mozaic-angular/components/stepper/public-api.d.ts +0 -3
- package/dist/mozaic-angular/components/stepper/step-state.d.ts +0 -1
- package/dist/mozaic-angular/components/stepper/step.component.d.ts +0 -20
- package/dist/mozaic-angular/components/stepper/stepper.component.d.ts +0 -20
- package/dist/mozaic-angular/components/stepper/stepper.module.d.ts +0 -10
- package/dist/mozaic-angular/components/tabs/public-api.d.ts +0 -3
- package/dist/mozaic-angular/components/tabs/tab-selectors.d.ts +0 -2
- package/dist/mozaic-angular/components/tabs/tab.component.d.ts +0 -16
- package/dist/mozaic-angular/components/tabs/tabs.component.d.ts +0 -36
- package/dist/mozaic-angular/components/tabs/tabs.module.d.ts +0 -9
- package/dist/mozaic-angular/components/tag/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/tag/tag-type.d.ts +0 -1
- package/dist/mozaic-angular/components/tag/tag.component.d.ts +0 -23
- package/dist/mozaic-angular/components/tag/tag.module.d.ts +0 -9
- package/dist/mozaic-angular/components/text-area/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/text-area/text-area.component.d.ts +0 -12
- package/dist/mozaic-angular/components/text-area/text-area.module.d.ts +0 -7
- package/dist/mozaic-angular/components/text-input/text-input.component.d.ts +0 -21
- package/dist/mozaic-angular/components/text-input/text-input.d.ts +0 -1
- package/dist/mozaic-angular/components/text-input/text-input.module.d.ts +0 -10
- package/dist/mozaic-angular/components/toggle/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/toggle/toggle-size.d.ts +0 -1
- package/dist/mozaic-angular/components/toggle/toggle.component.d.ts +0 -22
- package/dist/mozaic-angular/components/toggle/toggle.module.d.ts +0 -8
- package/dist/mozaic-angular/components/tooltip/public-api.d.ts +0 -2
- package/dist/mozaic-angular/components/tooltip/tooltip-position.d.ts +0 -1
- package/dist/mozaic-angular/components/tooltip/tooltip.component.d.ts +0 -11
- package/dist/mozaic-angular/components/tooltip/tooltip.module.d.ts +0 -8
- package/dist/mozaic-angular/esm2020/common/global-events/global-events.module.mjs +0 -15
- package/dist/mozaic-angular/esm2020/common/global-events/global-events.service.mjs +0 -30
- package/dist/mozaic-angular/esm2020/common/global-events/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/common/index.mjs +0 -3
- package/dist/mozaic-angular/esm2020/common/utils/boolean-property.mjs +0 -4
- package/dist/mozaic-angular/esm2020/common/utils/generate-id.mjs +0 -7
- package/dist/mozaic-angular/esm2020/common/utils/get-random-number.mjs +0 -6
- package/dist/mozaic-angular/esm2020/common/utils/index.mjs +0 -5
- package/dist/mozaic-angular/esm2020/common/utils/overwrite-style.mjs +0 -5
- package/dist/mozaic-angular/esm2020/common/utils/public-api.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/badge/badge.component.mjs +0 -30
- package/dist/mozaic-angular/esm2020/components/badge/badge.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/badge/badge.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/badge/index.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/button/button.component.mjs +0 -53
- package/dist/mozaic-angular/esm2020/components/button/button.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/button/button.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/button/index.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.component.mjs +0 -58
- package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.module.mjs +0 -21
- package/dist/mozaic-angular/esm2020/components/checkbox/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
- package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
- package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
- package/dist/mozaic-angular/esm2020/components/dialog/classes/index.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/dialog/dialog-animation.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.component.mjs +0 -57
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.module.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/dialog/dialog.service.mjs +0 -67
- package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/dialog/interfaces/index.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/dialog/public-api.mjs +0 -6
- package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/dialog/tokens/index.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
- package/dist/mozaic-angular/esm2020/components/field/field-error.component.mjs +0 -13
- package/dist/mozaic-angular/esm2020/components/field/field.component.mjs +0 -40
- package/dist/mozaic-angular/esm2020/components/field/field.module.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/field/public-api.mjs +0 -5
- package/dist/mozaic-angular/esm2020/components/icon/icon-size.mjs +0 -8
- package/dist/mozaic-angular/esm2020/components/icon/icon.component.mjs +0 -49
- package/dist/mozaic-angular/esm2020/components/icon/icon.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/icon/icon.service.mjs +0 -42
- package/dist/mozaic-angular/esm2020/components/icon/public-api.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/layer/classes/layer-injector.mjs +0 -22
- package/dist/mozaic-angular/esm2020/components/layer/classes/layer-ref.mjs +0 -38
- package/dist/mozaic-angular/esm2020/components/layer/interfaces/index.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/layer/layer-animation.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/layer/layer.component.mjs +0 -40
- package/dist/mozaic-angular/esm2020/components/layer/layer.module.mjs +0 -21
- package/dist/mozaic-angular/esm2020/components/layer/layer.service.mjs +0 -56
- package/dist/mozaic-angular/esm2020/components/layer/public-api.mjs +0 -6
- package/dist/mozaic-angular/esm2020/components/layer/tokens/index.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/loader/loader.component.mjs +0 -47
- package/dist/mozaic-angular/esm2020/components/loader/loader.mjs +0 -11
- package/dist/mozaic-angular/esm2020/components/loader/loader.module.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/loader/loader.service.mjs +0 -53
- package/dist/mozaic-angular/esm2020/components/loader/public-api.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/notification/notification-animation.mjs +0 -21
- package/dist/mozaic-angular/esm2020/components/notification/notification-container.component.mjs +0 -38
- package/dist/mozaic-angular/esm2020/components/notification/notification-footer.mjs +0 -11
- package/dist/mozaic-angular/esm2020/components/notification/notification-message.mjs +0 -11
- package/dist/mozaic-angular/esm2020/components/notification/notification-title.mjs +0 -11
- package/dist/mozaic-angular/esm2020/components/notification/notification.component.mjs +0 -29
- package/dist/mozaic-angular/esm2020/components/notification/notification.mjs +0 -8
- package/dist/mozaic-angular/esm2020/components/notification/notification.module.mjs +0 -66
- package/dist/mozaic-angular/esm2020/components/notification/notification.service.mjs +0 -40
- package/dist/mozaic-angular/esm2020/components/notification/public-api.mjs +0 -9
- package/dist/mozaic-angular/esm2020/components/pagination/pagination.component.mjs +0 -133
- package/dist/mozaic-angular/esm2020/components/pagination/pagination.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/pagination/pagination.module.mjs +0 -23
- package/dist/mozaic-angular/esm2020/components/pagination/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
- package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/progress-bar/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/public-api.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/select/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/select/select-size.mjs +0 -6
- package/dist/mozaic-angular/esm2020/components/select/select.component.mjs +0 -25
- package/dist/mozaic-angular/esm2020/components/select/select.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/stepper/public-api.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/stepper/step-state.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/stepper/step.component.mjs +0 -51
- package/dist/mozaic-angular/esm2020/components/stepper/stepper.component.mjs +0 -79
- package/dist/mozaic-angular/esm2020/components/stepper/stepper.module.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/tabs/public-api.mjs +0 -4
- package/dist/mozaic-angular/esm2020/components/tabs/tab-selectors.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/tabs/tab.component.mjs +0 -53
- package/dist/mozaic-angular/esm2020/components/tabs/tabs.component.mjs +0 -126
- package/dist/mozaic-angular/esm2020/components/tabs/tabs.module.mjs +0 -19
- package/dist/mozaic-angular/esm2020/components/tag/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/tag/tag-type.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/tag/tag.component.mjs +0 -61
- package/dist/mozaic-angular/esm2020/components/tag/tag.module.mjs +0 -19
- package/dist/mozaic-angular/esm2020/components/text-area/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/text-area/text-area.component.mjs +0 -43
- package/dist/mozaic-angular/esm2020/components/text-area/text-area.module.mjs +0 -16
- package/dist/mozaic-angular/esm2020/components/text-input/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/text-input/text-input.component.mjs +0 -64
- package/dist/mozaic-angular/esm2020/components/text-input/text-input.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/text-input/text-input.module.mjs +0 -20
- package/dist/mozaic-angular/esm2020/components/toggle/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/toggle/toggle-size.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/toggle/toggle.component.mjs +0 -59
- package/dist/mozaic-angular/esm2020/components/toggle/toggle.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/components/tooltip/public-api.mjs +0 -3
- package/dist/mozaic-angular/esm2020/components/tooltip/tooltip-position.mjs +0 -2
- package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.component.mjs +0 -32
- package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.module.mjs +0 -18
- package/dist/mozaic-angular/esm2020/mozaic-ds-angular.mjs +0 -5
- package/dist/mozaic-angular/esm2020/public-api.mjs +0 -3
- package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs +0 -2052
- package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs.map +0 -1
- package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs +0 -2025
- package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs.map +0 -1
- package/dist/mozaic-angular/index.d.ts +0 -5
- package/dist/mozaic-angular/package.json +0 -31
- package/dist/mozaic-angular/public-api.d.ts +0 -2
- /package/{dist/mozaic-angular → projects/kit}/README.md +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-checked-disabled.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-checked.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-indeterminate-disabled.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-indeterminate.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/invalid-cross.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/layer-cross.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-danger-m.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-danger-s.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-information-m.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-information-s.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-success-m.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-success-s.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-warning-m.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-warning-s.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/remove-tag.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-checked-disabled.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-checked.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-cross-disabled.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-cross.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/tooltip-triangle.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/valid-check-mark.svg +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/android/colors.xml +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/android/font_dimens.xml +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/css/_variables.scss +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/css/root.scss +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.h +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.m +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.swift +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.h +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.m +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.swift +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/js/tokens.js +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/js/tokensObject.js +0 -0
- /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/scss/_tokens.scss +0 -0
- /package/{dist/mozaic-angular/adeo/common/global-events/public-api.d.ts → projects/kit/common/global-events/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/common/index.d.ts → projects/kit/common/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/common/utils/index.d.ts → projects/kit/common/utils/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/common/utils/public-api.d.ts → projects/kit/common/utils/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/badge/index.d.ts → projects/kit/components/badge/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/button/index.d.ts → projects/kit/components/button/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/checkbox/public-api.d.ts → projects/kit/components/checkbox/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/dialog/classes/index.d.ts → projects/kit/components/dialog/classes/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/dialog/interfaces/index.d.ts → projects/kit/components/dialog/interfaces/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/dialog/public-api.d.ts → projects/kit/components/dialog/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/dialog/tokens/index.d.ts → projects/kit/components/dialog/tokens/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/field/public-api.d.ts → projects/kit/components/field/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/README.md → projects/kit/components/icon/icon.component.html} +0 -0
- /package/{dist/mozaic-angular/adeo/components/icon/public-api.d.ts → projects/kit/components/icon/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/layer/interfaces/index.d.ts → projects/kit/components/layer/interfaces/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/layer/public-api.d.ts → projects/kit/components/layer/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/layer/tokens/index.d.ts → projects/kit/components/layer/tokens/index.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/loader/public-api.d.ts → projects/kit/components/loader/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/notification/public-api.d.ts → projects/kit/components/notification/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/pagination/public-api.d.ts → projects/kit/components/pagination/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/progress-bar/progress-bar-size.d.ts → projects/kit/components/progress-bar/progress-bar-size.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/progress-bar/progress-bar-theme.d.ts → projects/kit/components/progress-bar/progress-bar-theme.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/progress-bar/public-api.d.ts → projects/kit/components/progress-bar/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/public-api.d.ts → projects/kit/components/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/select/public-api.d.ts → projects/kit/components/select/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/stepper/public-api.d.ts → projects/kit/components/stepper/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/stepper/step-state.d.ts → projects/kit/components/stepper/step-state.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/tabs/public-api.d.ts → projects/kit/components/tabs/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/tag/public-api.d.ts → projects/kit/components/tag/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/tag/tag-type.d.ts → projects/kit/components/tag/tag-type.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/text-area/public-api.d.ts → projects/kit/components/text-area/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/text-input/public-api.d.ts → projects/kit/components/text-input/index.ts} +0 -0
- /package/{dist/mozaic-angular/components/text-input/public-api.d.ts → projects/kit/components/text-input/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/text-input/text-input.d.ts → projects/kit/components/text-input/text-input.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/toggle/public-api.d.ts → projects/kit/components/toggle/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/toggle/toggle-size.d.ts → projects/kit/components/toggle/toggle-size.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/tooltip/public-api.d.ts → projects/kit/components/tooltip/public-api.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/components/tooltip/tooltip-position.d.ts → projects/kit/components/tooltip/tooltip-position.ts} +0 -0
- /package/{dist/mozaic-angular/adeo/public-api.d.ts → projects/kit/public-api.ts} +0 -0
|
@@ -1,4 +0,0 @@
|
|
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3BhZ2luYXRpb24vcGFnaW5hdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxDQUFDLENBQUM7QUFFdkMsTUFBTSxDQUFDLE1BQU0sOEJBQThCLEdBQUcsQ0FBQyxDQUFDO0FBRWhELE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFBhZ2UgPSB7IHRpdGxlOiBzdHJpbmc7IHZhbHVlOiBudW1iZXIgfTtcblxuZXhwb3J0IGNvbnN0IFBBR0lOQVRJT05fRklSU1RfUEFHRSA9IDE7XG5cbmV4cG9ydCBjb25zdCBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVMgPSAxO1xuXG5leHBvcnQgY29uc3QgUEFHSU5BVElPTl9QQUdFX1NURVAgPSAxO1xuIl19
|
|
@@ -1,23 +0,0 @@
|
|
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDbEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUN6QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3BELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sZ0JBQWdCOzs2R0FBaEIsZ0JBQWdCOzhHQUFoQixnQkFBZ0IsaUJBSFosbUJBQW1CLGFBRHhCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCLGFBRXJGLG1CQUFtQjs4R0FFbEIsZ0JBQWdCLFlBSmpCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCOzJGQUlwRixnQkFBZ0I7a0JBTDVCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxrQkFBa0IsQ0FBQztvQkFDaEcsWUFBWSxFQUFFLENBQUMsbUJBQW1CLENBQUM7b0JBQ25DLE9BQU8sRUFBRSxDQUFDLG1CQUFtQixDQUFDO2lCQUMvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBHbG9iYWxFdmVudHNNb2R1bGUgfSBmcm9tICcuLi8uLi9jb21tb24nO1xuaW1wb3J0IHsgQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uJztcbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICcuLi9pY29uL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgU2VsZWN0TW9kdWxlIH0gZnJvbSAnLi4vc2VsZWN0L3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgUGFnaW5hdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZSwgQnV0dG9uTW9kdWxlLCBTZWxlY3RNb2R1bGUsIEljb25Nb2R1bGUsIEdsb2JhbEV2ZW50c01vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1BhZ2luYXRpb25Db21wb25lbnRdLFxuICBleHBvcnRzOiBbUGFnaW5hdGlvbkNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25Nb2R1bGUge31cbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './pagination.component';
|
|
2
|
-
export * from './pagination.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3BhZ2luYXRpb24vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BhZ2luYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcGFnaW5hdGlvbi5tb2R1bGUnO1xuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLXNpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wcm9ncmVzcy1iYXIvcHJvZ3Jlc3MtYmFyLXNpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFByb2dyZXNzQmFyU2l6ZSA9ICd4cycgfCAncycgfCAnbSc7XG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLXRoZW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcHJvZ3Jlc3MtYmFyL3Byb2dyZXNzLWJhci10aGVtZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgUHJvZ3Jlc3NCYXJUaGVtZSA9ICdkZWZhdWx0JyB8ICdicmFuZGVkJztcbiJdfQ==
|
|
@@ -1,38 +0,0 @@
|
|
|
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:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#188803;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:600;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:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#188803;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:600;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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcHJvZ3Jlc3MtYmFyL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7O0FBV3ZCLE1BQU0sT0FBTyxvQkFBb0I7SUFQakM7UUFRa0IsU0FBSSxHQUFvQixHQUFHLENBQUM7UUFFNUIsVUFBSyxHQUFxQixTQUFTLENBQUM7UUFFcEMsWUFBTyxHQUFHLENBQUMsQ0FBQztRQUVaLFNBQUksR0FBRyxFQUFFLENBQUM7S0FhM0I7SUFYQyxJQUFXLGNBQWM7UUFDdkIsT0FBTyxFQUFFLEtBQUssRUFBRSxHQUFHLElBQUksQ0FBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxJQUNXLGNBQWM7UUFDdkIsTUFBTSxTQUFTLEdBQUcsbUJBQW1CLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNqRCxNQUFNLFVBQVUsR0FBRyxtQkFBbUIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ25ELE1BQU0sU0FBUyxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQy9ELE9BQU8sa0JBQWtCLFNBQVMsSUFBSSxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7SUFDbEUsQ0FBQzs7aUhBbkJVLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDhMQ2pCakMsK1FBU0E7MkZEUWEsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNFLGtCQUFrQixtQkFHWCx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJOzhCQUdyQixJQUFJO3NCQUFuQixLQUFLO2dCQUVVLEtBQUs7c0JBQXBCLEtBQUs7Z0JBRVUsT0FBTztzQkFBdEIsS0FBSztnQkFFVSxJQUFJO3NCQUFuQixLQUFLO2dCQU9LLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJTaXplIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItc2l6ZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhclRoZW1lIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItdGhlbWUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb3otcHJvZ3Jlc3MtYmFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgc2l6ZTogUHJvZ3Jlc3NCYXJTaXplID0gJ20nO1xuXG4gIEBJbnB1dCgpIHB1YmxpYyB0aGVtZTogUHJvZ3Jlc3NCYXJUaGVtZSA9ICdkZWZhdWx0JztcblxuICBASW5wdXQoKSBwdWJsaWMgcGVyY2VudCA9IDA7XG5cbiAgQElucHV0KCkgcHVibGljIHRleHQgPSAnJztcblxuICBwdWJsaWMgZ2V0IGluZGljYXRvcldpZHRoKCkge1xuICAgIHJldHVybiB7IHdpZHRoOiBgJHt0aGlzLnBlcmNlbnR9JWAgfTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MnKVxuICBwdWJsaWMgZ2V0IGhvc3RDc3NDbGFzc2VzKCkge1xuICAgIGNvbnN0IHNpemVDbGFzcyA9IGBtYy1wcm9ncmVzc2Jhci0tJHt0aGlzLnNpemV9YDtcbiAgICBjb25zdCB0aGVtZUNsYXNzID0gYG1jLXByb2dyZXNzYmFyLS0ke3RoaXMudGhlbWV9YDtcbiAgICBjb25zdCB0ZXh0Q2xhc3MgPSAhIXRoaXMudGV4dCA/IGBtYy1wcm9ncmVzc2Jhci0tcGVyY2VudGAgOiAnJztcbiAgICByZXR1cm4gYG1jLXByb2dyZXNzYmFyICR7c2l6ZUNsYXNzfSAke3RoZW1lQ2xhc3N9ICR7dGV4dENsYXNzfWA7XG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJtYy1wcm9ncmVzc2Jhcl9faW5kaWNhdG9yXCJcbiAgcm9sZT1cInByb2dyZXNzYmFyXCJcbiAgW2F0dHIuYXJpYS12YWx1ZW5vd109XCJwZXJjZW50XCJcbiAgYXJpYS12YWx1ZW1pbj1cIjBcIlxuICBhcmlhLXZhbHVlbWF4PVwiMTAwXCJcbiAgW25nU3R5bGVdPVwiaW5kaWNhdG9yV2lkdGhcIlxuPjwvZGl2PlxuPGRpdiAqbmdJZj1cInRleHRcIiBjbGFzcz1cIm1jLXByb2dyZXNzYmFyX19wZXJjZW50YWdlXCI+e3sgdGV4dCB9fTwvZGl2PlxuIl19
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { ProgressBarComponent } from './progress-bar.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class ProgressBarModule {
|
|
6
|
-
}
|
|
7
|
-
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
-
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent], imports: [CommonModule], exports: [ProgressBarComponent] });
|
|
9
|
-
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, imports: [CommonModule] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
declarations: [ProgressBarComponent],
|
|
15
|
-
exports: [ProgressBarComponent],
|
|
16
|
-
}]
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDOztBQU9oRSxNQUFNLE9BQU8saUJBQWlCOzs4R0FBakIsaUJBQWlCOytHQUFqQixpQkFBaUIsaUJBSGIsb0JBQW9CLGFBRHpCLFlBQVksYUFFWixvQkFBb0I7K0dBRW5CLGlCQUFpQixZQUpsQixZQUFZOzJGQUlYLGlCQUFpQjtrQkFMN0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRSxDQUFDLG9CQUFvQixDQUFDO29CQUNwQyxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztpQkFDaEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFByb2dyZXNzQmFyQ29tcG9uZW50IH0gZnJvbSAnLi9wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1Byb2dyZXNzQmFyQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1Byb2dyZXNzQmFyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './progress-bar.component';
|
|
2
|
-
export * from './progress-bar.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyx1QkFBdUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3Byb2dyZXNzLWJhci5tb2R1bGUnO1xuIl19
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export * from './badge';
|
|
2
|
-
export * from './button/index';
|
|
3
|
-
export * from './checkbox/public-api';
|
|
4
|
-
export * from './dialog/public-api';
|
|
5
|
-
export * from './field/public-api';
|
|
6
|
-
export * from './icon/public-api';
|
|
7
|
-
export * from './layer/public-api';
|
|
8
|
-
export * from './loader/public-api';
|
|
9
|
-
export * from './notification/public-api';
|
|
10
|
-
export * from './pagination/public-api';
|
|
11
|
-
export * from './progress-bar/public-api';
|
|
12
|
-
export * from './select/public-api';
|
|
13
|
-
export * from './stepper/public-api';
|
|
14
|
-
export * from './tabs/public-api';
|
|
15
|
-
export * from './tag/public-api';
|
|
16
|
-
export * from './text-area/public-api';
|
|
17
|
-
export * from './text-input/public-api';
|
|
18
|
-
export * from './toggle/public-api';
|
|
19
|
-
export * from './tooltip/public-api';
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JhZGdlJztcbmV4cG9ydCAqIGZyb20gJy4vYnV0dG9uL2luZGV4JztcbmV4cG9ydCAqIGZyb20gJy4vY2hlY2tib3gvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2RpYWxvZy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2ljb24vcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xheWVyL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9sb2FkZXIvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL25vdGlmaWNhdGlvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcGFnaW5hdGlvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcHJvZ3Jlc3MtYmFyL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zZWxlY3QvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3N0ZXBwZXIvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3RhYnMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3RhZy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dC1hcmVhL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0LWlucHV0L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi90b2dnbGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3Rvb2x0aXAvcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './select.component';
|
|
2
|
-
export * from './select.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3NlbGVjdC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VsZWN0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3NlbGVjdC5tb2R1bGUnO1xuIl19
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export var SELECT_SIZE;
|
|
2
|
-
(function (SELECT_SIZE) {
|
|
3
|
-
SELECT_SIZE["S"] = "s";
|
|
4
|
-
SELECT_SIZE["M"] = "m";
|
|
5
|
-
})(SELECT_SIZE || (SELECT_SIZE = {}));
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LXNpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zZWxlY3Qvc2VsZWN0LXNpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksV0FHWDtBQUhELFdBQVksV0FBVztJQUNyQixzQkFBTyxDQUFBO0lBQ1Asc0JBQU8sQ0FBQTtBQUNULENBQUMsRUFIVyxXQUFXLEtBQVgsV0FBVyxRQUd0QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIFNFTEVDVF9TSVpFIHtcbiAgUyA9ICdzJyxcbiAgTSA9ICdtJyxcbn1cblxuZXhwb3J0IHR5cGUgU2VsZWN0U2l6ZSA9ICdzJyB8ICdtJztcbiJdfQ==
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class SelectComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.size = 's';
|
|
6
|
-
}
|
|
7
|
-
get hostCssClasses() {
|
|
8
|
-
const staticClasses = 'mc-select';
|
|
9
|
-
const sizeCssClass = `mc-select--${this.size}`;
|
|
10
|
-
const dynamicClasses = `${sizeCssClass}`;
|
|
11
|
-
return `${staticClasses} ${dynamicClasses}`;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
SelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
SelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SelectComponent, selector: "select[moz-`select`]", inputs: { size: "size" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectComponent, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{ selector: 'select[moz-`select`]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}\n"] }]
|
|
19
|
-
}], propDecorators: { size: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}], hostCssClasses: [{
|
|
22
|
-
type: HostBinding,
|
|
23
|
-
args: ['class']
|
|
24
|
-
}] } });
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3NlbGVjdC9zZWxlY3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc2VsZWN0L3NlbGVjdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7QUFVdkIsTUFBTSxPQUFPLGVBQWU7SUFQNUI7UUFRVyxTQUFJLEdBQWUsR0FBRyxDQUFDO0tBU2pDO0lBUEMsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sYUFBYSxHQUFHLFdBQVcsQ0FBQztRQUNsQyxNQUFNLFlBQVksR0FBRyxjQUFjLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUMvQyxNQUFNLGNBQWMsR0FBRyxHQUFHLFlBQVksRUFBRSxDQUFDO1FBQ3pDLE9BQU8sR0FBRyxhQUFhLElBQUksY0FBYyxFQUFFLENBQUM7SUFDOUMsQ0FBQzs7NEdBVFUsZUFBZTtnR0FBZixlQUFlLGdKQ2hCNUIsK0NBQ0E7MkZEZWEsZUFBZTtrQkFQM0IsU0FBUzsrQkFDRSxzQkFBc0IsbUJBR2YsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSTs4QkFHNUIsSUFBSTtzQkFBWixLQUFLO2dCQUdLLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU2VsZWN0U2l6ZSB9IGZyb20gJy4vc2VsZWN0LXNpemUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdzZWxlY3RbbW96LWBzZWxlY3RgXScsXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWxlY3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3QuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG59KVxuZXhwb3J0IGNsYXNzIFNlbGVjdENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHNpemU6IFNlbGVjdFNpemUgPSAncyc7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIHB1YmxpYyBnZXQgaG9zdENzc0NsYXNzZXMoKSB7XG4gICAgY29uc3Qgc3RhdGljQ2xhc3NlcyA9ICdtYy1zZWxlY3QnO1xuICAgIGNvbnN0IHNpemVDc3NDbGFzcyA9IGBtYy1zZWxlY3QtLSR7dGhpcy5zaXplfWA7XG4gICAgY29uc3QgZHluYW1pY0NsYXNzZXMgPSBgJHtzaXplQ3NzQ2xhc3N9YDtcbiAgICByZXR1cm4gYCR7c3RhdGljQ2xhc3Nlc30gJHtkeW5hbWljQ2xhc3Nlc31gO1xuICB9XG59XG4iLCI8bmctY29udGVudCBzZWxlY3Q9XCJvcHRpb25cIj48L25nLWNvbnRlbnQ+XG4iXX0=
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { SelectComponent } from './select.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class SelectModule {
|
|
6
|
-
}
|
|
7
|
-
SelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
-
SelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, declarations: [SelectComponent], imports: [CommonModule], exports: [SelectComponent] });
|
|
9
|
-
SelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, imports: [CommonModule] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
declarations: [SelectComponent],
|
|
15
|
-
exports: [SelectComponent],
|
|
16
|
-
}]
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3NlbGVjdC9zZWxlY3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7QUFPckQsTUFBTSxPQUFPLFlBQVk7O3lHQUFaLFlBQVk7MEdBQVosWUFBWSxpQkFIUixlQUFlLGFBRHBCLFlBQVksYUFFWixlQUFlOzBHQUVkLFlBQVksWUFKYixZQUFZOzJGQUlYLFlBQVk7a0JBTHhCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUUsQ0FBQyxlQUFlLENBQUM7b0JBQy9CLE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQztpQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNlbGVjdENvbXBvbmVudCB9IGZyb20gJy4vc2VsZWN0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBkZWNsYXJhdGlvbnM6IFtTZWxlY3RDb21wb25lbnRdLFxuICBleHBvcnRzOiBbU2VsZWN0Q29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgU2VsZWN0TW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './step.component';
|
|
2
|
-
export * from './stepper.component';
|
|
3
|
-
export * from './stepper.module';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3N0ZXBwZXIvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc3RlcC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zdGVwcGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3N0ZXBwZXIubW9kdWxlJztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcC1zdGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3N0ZXBwZXIvc3RlcC1zdGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgU3RlcFN0YXRlID0gJycgfCAndmFsaWRhdGVkJyB8ICdjdXJyZW50JztcbiJdfQ==
|
|
@@ -1,51 +0,0 @@
|
|
|
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
|
-
import * as i2 from "../icon/icon.component";
|
|
5
|
-
export class StepComponent {
|
|
6
|
-
get validated() {
|
|
7
|
-
return this.state === 'validated';
|
|
8
|
-
}
|
|
9
|
-
get isCurrent() {
|
|
10
|
-
return this.state === 'current';
|
|
11
|
-
}
|
|
12
|
-
get indicator() {
|
|
13
|
-
return this.index + 1;
|
|
14
|
-
}
|
|
15
|
-
get index() {
|
|
16
|
-
return this._index;
|
|
17
|
-
}
|
|
18
|
-
set index(newIndex) {
|
|
19
|
-
this._index = newIndex;
|
|
20
|
-
this.cd.markForCheck();
|
|
21
|
-
}
|
|
22
|
-
get state() {
|
|
23
|
-
return this._state;
|
|
24
|
-
}
|
|
25
|
-
set state(newState) {
|
|
26
|
-
this._state = newState;
|
|
27
|
-
this.cd.markForCheck();
|
|
28
|
-
}
|
|
29
|
-
constructor(cd) {
|
|
30
|
-
this.cd = cd;
|
|
31
|
-
this.title = '';
|
|
32
|
-
this._state = '';
|
|
33
|
-
this._index = 0;
|
|
34
|
-
}
|
|
35
|
-
get hostCssClasses() {
|
|
36
|
-
const stateClass = this.state ? `mc-stepper__item--${this.state}` : '';
|
|
37
|
-
return `mc-stepper__item ${stateClass}`;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
StepComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
41
|
-
StepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: StepComponent, selector: "moz-step", inputs: { title: "title" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "moz-icon", inputs: ["iconName"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepComponent, decorators: [{
|
|
43
|
-
type: Component,
|
|
44
|
-
args: [{ selector: 'moz-step', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
|
|
45
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { title: [{
|
|
46
|
-
type: Input
|
|
47
|
-
}], hostCssClasses: [{
|
|
48
|
-
type: HostBinding,
|
|
49
|
-
args: ['class']
|
|
50
|
-
}] } });
|
|
51
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc3RlcHBlci9zdGVwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFFdkIsU0FBUyxFQUNULFdBQVcsRUFDWCxLQUFLLEVBQ0wsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDOzs7O0FBVXZCLE1BQU0sT0FBTyxhQUFhO0lBT3hCLElBQVcsU0FBUztRQUNsQixPQUFPLElBQUksQ0FBQyxLQUFLLEtBQUssV0FBVyxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFXLFNBQVM7UUFDbEIsT0FBTyxJQUFJLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQztJQUNsQyxDQUFDO0lBRUQsSUFBVyxTQUFTO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7SUFDeEIsQ0FBQztJQUVELElBQVcsS0FBSztRQUNkLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxLQUFLLENBQUMsUUFBZ0I7UUFDL0IsSUFBSSxDQUFDLE1BQU0sR0FBRyxRQUFRLENBQUM7UUFDdkIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUN6QixDQUFDO0lBRUQsSUFBVyxLQUFLO1FBQ2QsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3JCLENBQUM7SUFFRCxJQUFXLEtBQUssQ0FBQyxRQUFtQjtRQUNsQyxJQUFJLENBQUMsTUFBTSxHQUFHLFFBQVEsQ0FBQztRQUN2QixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxZQUFvQixFQUFxQjtRQUFyQixPQUFFLEdBQUYsRUFBRSxDQUFtQjtRQW5DekIsVUFBSyxHQUFHLEVBQUUsQ0FBQztRQUVuQixXQUFNLEdBQWMsRUFBRSxDQUFDO1FBRXZCLFdBQU0sR0FBRyxDQUFDLENBQUM7SUErQnlCLENBQUM7SUFFN0MsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLHFCQUFxQixJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUN2RSxPQUFPLG9CQUFvQixVQUFVLEVBQUUsQ0FBQztJQUMxQyxDQUFDOzswR0ExQ1UsYUFBYTs4RkFBYixhQUFhLHNJQ2pCMUIsK2NBY0E7MkZER2EsYUFBYTtrQkFQekIsU0FBUzsrQkFDRSxVQUFVLG1CQUdILHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUk7d0dBR3JCLEtBQUs7c0JBQXBCLEtBQUs7Z0JBc0NLLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBIb3N0QmluZGluZyxcbiAgSW5wdXQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0ZXBTdGF0ZSB9IGZyb20gJy4vc3RlcC1zdGF0ZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vei1zdGVwJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N0ZXAuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zdGVwcGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBTdGVwQ29tcG9uZW50IHtcbiAgQElucHV0KCkgcHVibGljIHRpdGxlID0gJyc7XG5cbiAgcHJpdmF0ZSBfc3RhdGU6IFN0ZXBTdGF0ZSA9ICcnO1xuXG4gIHByaXZhdGUgX2luZGV4ID0gMDtcblxuICBwdWJsaWMgZ2V0IHZhbGlkYXRlZCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5zdGF0ZSA9PT0gJ3ZhbGlkYXRlZCc7XG4gIH1cbiAgcHVibGljIGdldCBpc0N1cnJlbnQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuc3RhdGUgPT09ICdjdXJyZW50JztcbiAgfVxuXG4gIHB1YmxpYyBnZXQgaW5kaWNhdG9yKCkge1xuICAgIHJldHVybiB0aGlzLmluZGV4ICsgMTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgaW5kZXgoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2luZGV4O1xuICB9XG5cbiAgcHVibGljIHNldCBpbmRleChuZXdJbmRleDogbnVtYmVyKSB7XG4gICAgdGhpcy5faW5kZXggPSBuZXdJbmRleDtcbiAgICB0aGlzLmNkLm1hcmtGb3JDaGVjaygpO1xuICB9XG5cbiAgcHVibGljIGdldCBzdGF0ZSgpIHtcbiAgICByZXR1cm4gdGhpcy5fc3RhdGU7XG4gIH1cblxuICBwdWJsaWMgc2V0IHN0YXRlKG5ld1N0YXRlOiBTdGVwU3RhdGUpIHtcbiAgICB0aGlzLl9zdGF0ZSA9IG5ld1N0YXRlO1xuICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKCk7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkOiBDaGFuZ2VEZXRlY3RvclJlZikge31cblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHVibGljIGdldCBob3N0Q3NzQ2xhc3NlcygpIHtcbiAgICBjb25zdCBzdGF0ZUNsYXNzID0gdGhpcy5zdGF0ZSA/IGBtYy1zdGVwcGVyX19pdGVtLS0ke3RoaXMuc3RhdGV9YCA6ICcnO1xuICAgIHJldHVybiBgbWMtc3RlcHBlcl9faXRlbSAke3N0YXRlQ2xhc3N9YDtcbiAgfVxufVxuIiwiPHNwYW4gY2xhc3M9XCJtYy1zdGVwcGVyX19pbmRpY2F0b3JcIiBhcmlhLWhpZGRlbj1cInRydWVcIj5cbiAgPG1vei1pY29uXG4gICAgKm5nSWY9XCJ2YWxpZGF0ZWRcIlxuICAgIGNsYXNzPVwibWMtc3RlcHBlcl9faWNvblwiXG4gICAgaWNvbk5hbWU9XCJOYXZpZ2F0aW9uX05vdGlmaWNhdGlvbl9BdmFpbGFibGVfMTZweFwiXG4gID48L21vei1pY29uPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNDdXJyZW50XCI+e3sgaW5kaWNhdG9yIH19PC9uZy1jb250YWluZXI+XG48L3NwYW4+XG48ZGl2IGNsYXNzPVwibWMtc3RlcHBlcl9fZGV0YWlsXCI+XG4gIDxzcGFuIGNsYXNzPVwibWMtc3RlcHBlcl9fdGl0bGVcIj57eyB0aXRsZSB9fTwvc3Bhbj5cbiAgPHNwYW4gY2xhc3M9XCJtYy1zdGVwcGVyX19sYWJlbFwiPlxuICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgPC9zcGFuPlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ContentChildren, ElementRef, HostBinding, Input, } from '@angular/core';
|
|
2
|
-
import { StepComponent } from './step.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class StepperComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.selectStepIndex = 0;
|
|
7
|
-
this.viewCompact = false;
|
|
8
|
-
}
|
|
9
|
-
ngAfterViewInit() {
|
|
10
|
-
if (!this.steps)
|
|
11
|
-
return;
|
|
12
|
-
this.initStepIndex(this.steps);
|
|
13
|
-
this.selectStep(this.steps, this.selectStepIndex);
|
|
14
|
-
this.initCssVariablesForSteps(this.stepElements);
|
|
15
|
-
}
|
|
16
|
-
ngOnChanges(changes) {
|
|
17
|
-
this.updateSelectStepAtChanges(changes);
|
|
18
|
-
}
|
|
19
|
-
get hostCssClasses() {
|
|
20
|
-
const viewCompactClass = this.viewCompact ? `mc-stepper--compact` : '';
|
|
21
|
-
return `mc-stepper ${viewCompactClass}`;
|
|
22
|
-
}
|
|
23
|
-
initStepIndex(steps) {
|
|
24
|
-
steps.forEach((step, index) => (step.index = index));
|
|
25
|
-
}
|
|
26
|
-
initCssVariablesForSteps(stepElements) {
|
|
27
|
-
stepElements.forEach(this.initCssVariablesForStep);
|
|
28
|
-
}
|
|
29
|
-
initCssVariablesForStep(elementRef, currentIndex, elementRefs) {
|
|
30
|
-
elementRef.nativeElement.style = `--steps: ${elementRefs.length}; --current: ${currentIndex + 1}`;
|
|
31
|
-
}
|
|
32
|
-
selectStep(steps, selectStepIndex) {
|
|
33
|
-
steps.forEach((step) => this.updateStateStep(step, selectStepIndex));
|
|
34
|
-
}
|
|
35
|
-
updateStateStep(step, selectStepIndex) {
|
|
36
|
-
const oldState = step.state;
|
|
37
|
-
const newState = this.stateDefinitionForStep(step.index, selectStepIndex);
|
|
38
|
-
const hasChanges = oldState !== newState;
|
|
39
|
-
if (!hasChanges)
|
|
40
|
-
return;
|
|
41
|
-
step.state = newState;
|
|
42
|
-
}
|
|
43
|
-
stateDefinitionForStep(stepIndex, selectStepIndex) {
|
|
44
|
-
const isCurrentStep = stepIndex === selectStepIndex;
|
|
45
|
-
const isValidatedStep = stepIndex < selectStepIndex;
|
|
46
|
-
if (isCurrentStep)
|
|
47
|
-
return 'current';
|
|
48
|
-
if (isValidatedStep)
|
|
49
|
-
return 'validated';
|
|
50
|
-
return '';
|
|
51
|
-
}
|
|
52
|
-
updateSelectStepAtChanges({ selectStepIndex }) {
|
|
53
|
-
if (!this.steps ||
|
|
54
|
-
!selectStepIndex ||
|
|
55
|
-
selectStepIndex.currentValue === selectStepIndex.previousValue)
|
|
56
|
-
return;
|
|
57
|
-
this.selectStep(this.steps, selectStepIndex.currentValue);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
StepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
61
|
-
StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: StepperComponent, selector: "moz-stepper", inputs: { selectStepIndex: "selectStepIndex", viewCompact: "viewCompact" }, host: { properties: { "class": "this.hostCssClasses" } }, queries: [{ propertyName: "steps", predicate: StepComponent }, { propertyName: "stepElements", predicate: StepComponent, read: ElementRef }], usesOnChanges: true, ngImport: i0, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
62
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperComponent, decorators: [{
|
|
63
|
-
type: Component,
|
|
64
|
-
args: [{ selector: 'moz-stepper', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
|
|
65
|
-
}], propDecorators: { selectStepIndex: [{
|
|
66
|
-
type: Input
|
|
67
|
-
}], viewCompact: [{
|
|
68
|
-
type: Input
|
|
69
|
-
}], steps: [{
|
|
70
|
-
type: ContentChildren,
|
|
71
|
-
args: [StepComponent]
|
|
72
|
-
}], stepElements: [{
|
|
73
|
-
type: ContentChildren,
|
|
74
|
-
args: [StepComponent, { read: ElementRef }]
|
|
75
|
-
}], hostCssClasses: [{
|
|
76
|
-
type: HostBinding,
|
|
77
|
-
args: ['class']
|
|
78
|
-
}] } });
|
|
79
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXBwZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc3RlcHBlci9zdGVwcGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULGVBQWUsRUFDZixVQUFVLEVBQ1YsV0FBVyxFQUNYLEtBQUssR0FJTixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7O0FBUWpELE1BQU0sT0FBTyxnQkFBZ0I7SUFON0I7UUFPVyxvQkFBZSxHQUFXLENBQUMsQ0FBQztRQUU1QixnQkFBVyxHQUFHLEtBQUssQ0FBQztLQXNFOUI7SUFoRVEsZUFBZTtRQUNwQixJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUs7WUFBRSxPQUFPO1FBQ3hCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQy9CLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDbEQsSUFBSSxDQUFDLHdCQUF3QixDQUFDLElBQUksQ0FBQyxZQUFhLENBQUMsQ0FBQztJQUNwRCxDQUFDO0lBRU0sV0FBVyxDQUFDLE9BQXNCO1FBQ3ZDLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUN2RSxPQUFPLGNBQWMsZ0JBQWdCLEVBQUUsQ0FBQztJQUMxQyxDQUFDO0lBRU8sYUFBYSxDQUFDLEtBQStCO1FBQ25ELEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUN2RCxDQUFDO0lBRU8sd0JBQXdCLENBQUMsWUFBbUM7UUFDbEUsWUFBWSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsdUJBQXVCLENBQUMsQ0FBQztJQUNyRCxDQUFDO0lBRU8sdUJBQXVCLENBQzdCLFVBQXNCLEVBQ3RCLFlBQW9CLEVBQ3BCLFdBQXlCO1FBRXpCLFVBQVUsQ0FBQyxhQUFhLENBQUMsS0FBSyxHQUFHLFlBQVksV0FBVyxDQUFDLE1BQU0sZ0JBQzdELFlBQVksR0FBRyxDQUNqQixFQUFFLENBQUM7SUFDTCxDQUFDO0lBRU8sVUFBVSxDQUFDLEtBQStCLEVBQUUsZUFBdUI7UUFDekUsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLEVBQUUsZUFBZSxDQUFDLENBQUMsQ0FBQztJQUN2RSxDQUFDO0lBRU8sZUFBZSxDQUFDLElBQW1CLEVBQUUsZUFBdUI7UUFDbEUsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztRQUM1QixNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxlQUFlLENBQUMsQ0FBQztRQUMxRSxNQUFNLFVBQVUsR0FBRyxRQUFRLEtBQUssUUFBUSxDQUFDO1FBQ3pDLElBQUksQ0FBQyxVQUFVO1lBQUUsT0FBTztRQUN4QixJQUFJLENBQUMsS0FBSyxHQUFHLFFBQVEsQ0FBQztJQUN4QixDQUFDO0lBRU8sc0JBQXNCLENBQUMsU0FBaUIsRUFBRSxlQUF1QjtRQUN2RSxNQUFNLGFBQWEsR0FBRyxTQUFTLEtBQUssZUFBZSxDQUFDO1FBQ3BELE1BQU0sZUFBZSxHQUFHLFNBQVMsR0FBRyxlQUFlLENBQUM7UUFDcEQsSUFBSSxhQUFhO1lBQUUsT0FBTyxTQUFTLENBQUM7UUFDcEMsSUFBSSxlQUFlO1lBQUUsT0FBTyxXQUFXLENBQUM7UUFDeEMsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU8seUJBQXlCLENBQUMsRUFBRSxlQUFlLEVBQWlCO1FBQ2xFLElBQ0UsQ0FBQyxJQUFJLENBQUMsS0FBSztZQUNYLENBQUMsZUFBZTtZQUNoQixlQUFlLENBQUMsWUFBWSxLQUFLLGVBQWUsQ0FBQyxhQUFhO1lBRTlELE9BQU87UUFDVCxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsZUFBZSxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQzVELENBQUM7OzZHQXhFVSxnQkFBZ0I7aUdBQWhCLGdCQUFnQiwrTUFLVixhQUFhLCtDQUNiLGFBQWEsUUFBVSxVQUFVLGtEQzNCcEQsMkZBR0E7MkZEa0JhLGdCQUFnQjtrQkFONUIsU0FBUzsrQkFDRSxhQUFhLG1CQUdOLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLGVBQWU7c0JBQXZCLEtBQUs7Z0JBRUcsV0FBVztzQkFBbkIsS0FBSztnQkFFa0MsS0FBSztzQkFBNUMsZUFBZTt1QkFBQyxhQUFhO2dCQUV0QixZQUFZO3NCQURuQixlQUFlO3VCQUFDLGFBQWEsRUFBRSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUU7Z0JBZXpDLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFmdGVyVmlld0luaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRWxlbWVudFJlZixcbiAgSG9zdEJpbmRpbmcsXG4gIElucHV0LFxuICBPbkNoYW5nZXMsXG4gIFF1ZXJ5TGlzdCxcbiAgU2ltcGxlQ2hhbmdlcyxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdGVwU3RhdGUgfSBmcm9tICcuL3N0ZXAtc3RhdGUnO1xuaW1wb3J0IHsgU3RlcENvbXBvbmVudCB9IGZyb20gJy4vc3RlcC5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb3otc3RlcHBlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdGVwcGVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc3RlcHBlci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgU3RlcHBlckNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQsIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyID0gMDtcblxuICBASW5wdXQoKSB2aWV3Q29tcGFjdCA9IGZhbHNlO1xuXG4gIEBDb250ZW50Q2hpbGRyZW4oU3RlcENvbXBvbmVudCkgcHJpdmF0ZSBzdGVwcz86IFF1ZXJ5TGlzdDxTdGVwQ29tcG9uZW50PjtcbiAgQENvbnRlbnRDaGlsZHJlbihTdGVwQ29tcG9uZW50LCB7IHJlYWQ6IEVsZW1lbnRSZWYgfSlcbiAgcHJpdmF0ZSBzdGVwRWxlbWVudHM/OiBRdWVyeUxpc3Q8RWxlbWVudFJlZj47XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICBpZiAoIXRoaXMuc3RlcHMpIHJldHVybjtcbiAgICB0aGlzLmluaXRTdGVwSW5kZXgodGhpcy5zdGVwcyk7XG4gICAgdGhpcy5zZWxlY3RTdGVwKHRoaXMuc3RlcHMsIHRoaXMuc2VsZWN0U3RlcEluZGV4KTtcbiAgICB0aGlzLmluaXRDc3NWYXJpYWJsZXNGb3JTdGVwcyh0aGlzLnN0ZXBFbGVtZW50cyEpO1xuICB9XG5cbiAgcHVibGljIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLnVwZGF0ZVNlbGVjdFN0ZXBBdENoYW5nZXMoY2hhbmdlcyk7XG4gIH1cblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHVibGljIGdldCBob3N0Q3NzQ2xhc3NlcygpIHtcbiAgICBjb25zdCB2aWV3Q29tcGFjdENsYXNzID0gdGhpcy52aWV3Q29tcGFjdCA/IGBtYy1zdGVwcGVyLS1jb21wYWN0YCA6ICcnO1xuICAgIHJldHVybiBgbWMtc3RlcHBlciAke3ZpZXdDb21wYWN0Q2xhc3N9YDtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdFN0ZXBJbmRleChzdGVwczogUXVlcnlMaXN0PFN0ZXBDb21wb25lbnQ+KSB7XG4gICAgc3RlcHMuZm9yRWFjaCgoc3RlcCwgaW5kZXgpID0+IChzdGVwLmluZGV4ID0gaW5kZXgpKTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdENzc1ZhcmlhYmxlc0ZvclN0ZXBzKHN0ZXBFbGVtZW50czogUXVlcnlMaXN0PEVsZW1lbnRSZWY+KSB7XG4gICAgc3RlcEVsZW1lbnRzLmZvckVhY2godGhpcy5pbml0Q3NzVmFyaWFibGVzRm9yU3RlcCk7XG4gIH1cblxuICBwcml2YXRlIGluaXRDc3NWYXJpYWJsZXNGb3JTdGVwKFxuICAgIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsXG4gICAgY3VycmVudEluZGV4OiBudW1iZXIsXG4gICAgZWxlbWVudFJlZnM6IEVsZW1lbnRSZWZbXVxuICApOiB2b2lkIHtcbiAgICBlbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuc3R5bGUgPSBgLS1zdGVwczogJHtlbGVtZW50UmVmcy5sZW5ndGh9OyAtLWN1cnJlbnQ6ICR7XG4gICAgICBjdXJyZW50SW5kZXggKyAxXG4gICAgfWA7XG4gIH1cblxuICBwcml2YXRlIHNlbGVjdFN0ZXAoc3RlcHM6IFF1ZXJ5TGlzdDxTdGVwQ29tcG9uZW50Piwgc2VsZWN0U3RlcEluZGV4OiBudW1iZXIpIHtcbiAgICBzdGVwcy5mb3JFYWNoKChzdGVwKSA9PiB0aGlzLnVwZGF0ZVN0YXRlU3RlcChzdGVwLCBzZWxlY3RTdGVwSW5kZXgpKTtcbiAgfVxuXG4gIHByaXZhdGUgdXBkYXRlU3RhdGVTdGVwKHN0ZXA6IFN0ZXBDb21wb25lbnQsIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyKSB7XG4gICAgY29uc3Qgb2xkU3RhdGUgPSBzdGVwLnN0YXRlO1xuICAgIGNvbnN0IG5ld1N0YXRlID0gdGhpcy5zdGF0ZURlZmluaXRpb25Gb3JTdGVwKHN0ZXAuaW5kZXgsIHNlbGVjdFN0ZXBJbmRleCk7XG4gICAgY29uc3QgaGFzQ2hhbmdlcyA9IG9sZFN0YXRlICE9PSBuZXdTdGF0ZTtcbiAgICBpZiAoIWhhc0NoYW5nZXMpIHJldHVybjtcbiAgICBzdGVwLnN0YXRlID0gbmV3U3RhdGU7XG4gIH1cblxuICBwcml2YXRlIHN0YXRlRGVmaW5pdGlvbkZvclN0ZXAoc3RlcEluZGV4OiBudW1iZXIsIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyKTogU3RlcFN0YXRlIHtcbiAgICBjb25zdCBpc0N1cnJlbnRTdGVwID0gc3RlcEluZGV4ID09PSBzZWxlY3RTdGVwSW5kZXg7XG4gICAgY29uc3QgaXNWYWxpZGF0ZWRTdGVwID0gc3RlcEluZGV4IDwgc2VsZWN0U3RlcEluZGV4O1xuICAgIGlmIChpc0N1cnJlbnRTdGVwKSByZXR1cm4gJ2N1cnJlbnQnO1xuICAgIGlmIChpc1ZhbGlkYXRlZFN0ZXApIHJldHVybiAndmFsaWRhdGVkJztcbiAgICByZXR1cm4gJyc7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZVNlbGVjdFN0ZXBBdENoYW5nZXMoeyBzZWxlY3RTdGVwSW5kZXggfTogU2ltcGxlQ2hhbmdlcykge1xuICAgIGlmIChcbiAgICAgICF0aGlzLnN0ZXBzIHx8XG4gICAgICAhc2VsZWN0U3RlcEluZGV4IHx8XG4gICAgICBzZWxlY3RTdGVwSW5kZXguY3VycmVudFZhbHVlID09PSBzZWxlY3RTdGVwSW5kZXgucHJldmlvdXNWYWx1ZVxuICAgIClcbiAgICAgIHJldHVybjtcbiAgICB0aGlzLnNlbGVjdFN0ZXAodGhpcy5zdGVwcywgc2VsZWN0U3RlcEluZGV4LmN1cnJlbnRWYWx1ZSk7XG4gIH1cbn1cbiIsIjxvbCBjbGFzcz1cIm1jLXN0ZXBwZXJfX2xpc3RcIj5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwibW96LXN0ZXBcIj48L25nLWNvbnRlbnQ+XG48L29sPlxuIl19
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { IconModule } from '../public-api';
|
|
4
|
-
import { StepComponent } from './step.component';
|
|
5
|
-
import { StepperComponent } from './stepper.component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class StepperModule {
|
|
8
|
-
}
|
|
9
|
-
StepperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
10
|
-
StepperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, declarations: [StepperComponent, StepComponent], imports: [CommonModule, IconModule], exports: [StepperComponent, StepComponent] });
|
|
11
|
-
StepperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, imports: [CommonModule, IconModule] });
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, decorators: [{
|
|
13
|
-
type: NgModule,
|
|
14
|
-
args: [{
|
|
15
|
-
imports: [CommonModule, IconModule],
|
|
16
|
-
declarations: [StepperComponent, StepComponent],
|
|
17
|
-
exports: [StepperComponent, StepComponent],
|
|
18
|
-
}]
|
|
19
|
-
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcHBlci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXBwZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQU92RCxNQUFNLE9BQU8sYUFBYTs7MEdBQWIsYUFBYTsyR0FBYixhQUFhLGlCQUhULGdCQUFnQixFQUFFLGFBQWEsYUFEcEMsWUFBWSxFQUFFLFVBQVUsYUFFeEIsZ0JBQWdCLEVBQUUsYUFBYTsyR0FFOUIsYUFBYSxZQUpkLFlBQVksRUFBRSxVQUFVOzJGQUl2QixhQUFhO2tCQUx6QixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxVQUFVLENBQUM7b0JBQ25DLFlBQVksRUFBRSxDQUFDLGdCQUFnQixFQUFFLGFBQWEsQ0FBQztvQkFDL0MsT0FBTyxFQUFFLENBQUMsZ0JBQWdCLEVBQUUsYUFBYSxDQUFDO2lCQUMzQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSWNvbk1vZHVsZSB9IGZyb20gJy4uL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgU3RlcENvbXBvbmVudCB9IGZyb20gJy4vc3RlcC5jb21wb25lbnQnO1xuaW1wb3J0IHsgU3RlcHBlckNvbXBvbmVudCB9IGZyb20gJy4vc3RlcHBlci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBJY29uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbU3RlcHBlckNvbXBvbmVudCwgU3RlcENvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtTdGVwcGVyQ29tcG9uZW50LCBTdGVwQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgU3RlcHBlck1vZHVsZSB7fVxuIl19
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './tab.component';
|
|
2
|
-
export * from './tabs.component';
|
|
3
|
-
export * from './tabs.module';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3RhYnMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxlQUFlLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJzLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYnMubW9kdWxlJztcbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export const TAB_SELECTORS = 'a,div,span';
|
|
2
|
-
export const TABS_SELECTOR = 'moz-tabs';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFiLXNlbGVjdG9ycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3RhYnMvdGFiLXNlbGVjdG9ycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsWUFBWSxDQUFDO0FBQzFDLE1BQU0sQ0FBQyxNQUFNLGFBQWEsR0FBRyxVQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgVEFCX1NFTEVDVE9SUyA9ICdhLGRpdixzcGFuJztcbmV4cG9ydCBjb25zdCBUQUJTX1NFTEVDVE9SID0gJ21vei10YWJzJztcbiJdfQ==
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, HostBinding, Inject, Input, Optional, ViewEncapsulation, } from '@angular/core';
|
|
2
|
-
import { RouterLinkActive, RouterLinkWithHref } from '@angular/router';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/router";
|
|
5
|
-
export class TabComponent {
|
|
6
|
-
constructor(routerLinkActive, routerLink) {
|
|
7
|
-
this.routerLinkActive = routerLinkActive;
|
|
8
|
-
this.routerLink = routerLink;
|
|
9
|
-
this.index = 0;
|
|
10
|
-
this.disabled = false;
|
|
11
|
-
this.data = null;
|
|
12
|
-
this.selected = false;
|
|
13
|
-
}
|
|
14
|
-
get isAvailableTabForSelection() {
|
|
15
|
-
return !this.selected && !this.disabled;
|
|
16
|
-
}
|
|
17
|
-
get isActiveTab() {
|
|
18
|
-
return !!this.routerLinkActive?.isActive;
|
|
19
|
-
}
|
|
20
|
-
get link() {
|
|
21
|
-
return this.routerLink?.href || null;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabComponent, deps: [{ token: RouterLinkActive, optional: true }, { token: RouterLinkWithHref, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
-
TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TabComponent, selector: "a[moz-tab],span[moz-tab],div[moz-tab]", inputs: { disabled: "disabled", data: "data" }, host: { properties: { "class.mc-tabs__item": "true", "class.mc-tabs__link": "true", "class.mc-tabs__link--outline": "true", "class.mc-tabs__link--selected": "selected", "class.mc-tabs__link--disabled": "disabled", "attr.tab-index": "this.index" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{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;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tabs__link,.mc-tabs__link:active,.mc-tabs__link--selected{font-weight:400}.mc-tabs__link:focus:after{box-shadow:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabComponent, decorators: [{
|
|
27
|
-
type: Component,
|
|
28
|
-
args: [{ selector: `a[moz-tab],span[moz-tab],div[moz-tab]`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
29
|
-
'[class.mc-tabs__item]': 'true',
|
|
30
|
-
'[class.mc-tabs__link]': 'true',
|
|
31
|
-
'[class.mc-tabs__link--outline]': 'true',
|
|
32
|
-
'[class.mc-tabs__link--selected]': 'selected',
|
|
33
|
-
'[class.mc-tabs__link--disabled]': 'disabled',
|
|
34
|
-
}, template: "<ng-content></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{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;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tabs__link,.mc-tabs__link:active,.mc-tabs__link--selected{font-weight:400}.mc-tabs__link:focus:after{box-shadow:none}\n"] }]
|
|
35
|
-
}], ctorParameters: function () { return [{ type: i1.RouterLinkActive, decorators: [{
|
|
36
|
-
type: Optional
|
|
37
|
-
}, {
|
|
38
|
-
type: Inject,
|
|
39
|
-
args: [RouterLinkActive]
|
|
40
|
-
}] }, { type: i1.RouterLinkWithHref, decorators: [{
|
|
41
|
-
type: Optional
|
|
42
|
-
}, {
|
|
43
|
-
type: Inject,
|
|
44
|
-
args: [RouterLinkWithHref]
|
|
45
|
-
}] }]; }, propDecorators: { index: [{
|
|
46
|
-
type: HostBinding,
|
|
47
|
-
args: ['attr.tab-index']
|
|
48
|
-
}], disabled: [{
|
|
49
|
-
type: Input
|
|
50
|
-
}], data: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}] } });
|
|
53
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFiLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3RhYnMvdGFiLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3RhYnMvdGFiLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFdBQVcsRUFDWCxNQUFNLEVBQ04sS0FBSyxFQUNMLFFBQVEsRUFDUixpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGtCQUFrQixFQUFFLE1BQU0saUJBQWlCLENBQUM7OztBQWdCdkUsTUFBTSxPQUFPLFlBQVk7SUFVdkIsWUFHa0IsZ0JBQXlDLEVBR3pDLFVBQXFDO1FBSHJDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBeUI7UUFHekMsZUFBVSxHQUFWLFVBQVUsQ0FBMkI7UUFkaEQsVUFBSyxHQUFXLENBQUMsQ0FBQztRQUVULGFBQVEsR0FBRyxLQUFLLENBQUM7UUFFakIsU0FBSSxHQUFhLElBQUksQ0FBQztRQUUvQixhQUFRLEdBQUcsS0FBSyxDQUFDO0lBU3JCLENBQUM7SUFFSixJQUFXLDBCQUEwQjtRQUNuQyxPQUFPLENBQUMsSUFBSSxDQUFDLFFBQVEsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDMUMsQ0FBQztJQUVELElBQVcsV0FBVztRQUNwQixPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsUUFBUSxDQUFDO0lBQzNDLENBQUM7SUFFRCxJQUFXLElBQUk7UUFDYixPQUFPLElBQUksQ0FBQyxVQUFVLEVBQUUsSUFBSSxJQUFJLElBQUksQ0FBQztJQUN2QyxDQUFDOzt5R0E3QlUsWUFBWSxrQkFZYixnQkFBZ0IsNkJBR2hCLGtCQUFrQjs2RkFmakIsWUFBWSx1WEN6QnpCLDZCQUNBOzJGRHdCYSxZQUFZO2tCQWR4QixTQUFTOytCQUNFLHVDQUF1QyxpQkFHbEMsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxRQUN6Qzt3QkFDSix1QkFBdUIsRUFBRSxNQUFNO3dCQUMvQix1QkFBdUIsRUFBRSxNQUFNO3dCQUMvQixnQ0FBZ0MsRUFBRSxNQUFNO3dCQUN4QyxpQ0FBaUMsRUFBRSxVQUFVO3dCQUM3QyxpQ0FBaUMsRUFBRSxVQUFVO3FCQUM5Qzs7MEJBYUUsUUFBUTs7MEJBQ1IsTUFBTTsyQkFBQyxnQkFBZ0I7OzBCQUV2QixRQUFROzswQkFDUixNQUFNOzJCQUFDLGtCQUFrQjs0Q0FickIsS0FBSztzQkFEWCxXQUFXO3VCQUFDLGdCQUFnQjtnQkFHYixRQUFRO3NCQUF2QixLQUFLO2dCQUVVLElBQUk7c0JBQW5CLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBIb3N0QmluZGluZyxcbiAgSW5qZWN0LFxuICBJbnB1dCxcbiAgT3B0aW9uYWwsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJvdXRlckxpbmtBY3RpdmUsIFJvdXRlckxpbmtXaXRoSHJlZiB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogYGFbbW96LXRhYl0sc3Bhblttb3otdGFiXSxkaXZbbW96LXRhYl1gLFxuICB0ZW1wbGF0ZVVybDogJy4vdGFiLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdGFiLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBob3N0OiB7XG4gICAgJ1tjbGFzcy5tYy10YWJzX19pdGVtXSc6ICd0cnVlJyxcbiAgICAnW2NsYXNzLm1jLXRhYnNfX2xpbmtdJzogJ3RydWUnLFxuICAgICdbY2xhc3MubWMtdGFic19fbGluay0tb3V0bGluZV0nOiAndHJ1ZScsXG4gICAgJ1tjbGFzcy5tYy10YWJzX19saW5rLS1zZWxlY3RlZF0nOiAnc2VsZWN0ZWQnLFxuICAgICdbY2xhc3MubWMtdGFic19fbGluay0tZGlzYWJsZWRdJzogJ2Rpc2FibGVkJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgVGFiQ29tcG9uZW50PFQgPSBhbnk+IHtcbiAgQEhvc3RCaW5kaW5nKCdhdHRyLnRhYi1pbmRleCcpXG4gIHB1YmxpYyBpbmRleDogbnVtYmVyID0gMDtcblxuICBASW5wdXQoKSBwdWJsaWMgZGlzYWJsZWQgPSBmYWxzZTtcblxuICBASW5wdXQoKSBwdWJsaWMgZGF0YTogVCB8IG51bGwgPSBudWxsO1xuXG4gIHB1YmxpYyBzZWxlY3RlZCA9IGZhbHNlO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBPcHRpb25hbCgpXG4gICAgQEluamVjdChSb3V0ZXJMaW5rQWN0aXZlKVxuICAgIHB1YmxpYyByZWFkb25seSByb3V0ZXJMaW5rQWN0aXZlOiBSb3V0ZXJMaW5rQWN0aXZlIHwgbnVsbCxcbiAgICBAT3B0aW9uYWwoKVxuICAgIEBJbmplY3QoUm91dGVyTGlua1dpdGhIcmVmKVxuICAgIHB1YmxpYyByZWFkb25seSByb3V0ZXJMaW5rOiBSb3V0ZXJMaW5rV2l0aEhyZWYgfCBudWxsXG4gICkge31cblxuICBwdWJsaWMgZ2V0IGlzQXZhaWxhYmxlVGFiRm9yU2VsZWN0aW9uKCkge1xuICAgIHJldHVybiAhdGhpcy5zZWxlY3RlZCAmJiAhdGhpcy5kaXNhYmxlZDtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgaXNBY3RpdmVUYWIoKSB7XG4gICAgcmV0dXJuICEhdGhpcy5yb3V0ZXJMaW5rQWN0aXZlPy5pc0FjdGl2ZTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgbGluaygpIHtcbiAgICByZXR1cm4gdGhpcy5yb3V0ZXJMaW5rPy5ocmVmIHx8IG51bGw7XG4gIH1cbn1cbiIsIjxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiJdfQ==
|