@mozaic-ds/angular 0.21.0 → 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/LICENSE +22 -0
- package/README.md +92 -0
- package/angular.json +113 -0
- package/mozaic-angular.svg +9 -0
- package/mozaic.config.js +6 -0
- package/package.json +102 -26
- package/product-info.json +1 -0
- package/projects/kit/.browserslistrc +16 -0
- package/projects/kit/.eslintrc.json +35 -0
- package/projects/kit/README.md +0 -0
- package/projects/kit/assets/tokens/adeo/android/colors.xml +482 -0
- package/projects/kit/assets/tokens/adeo/android/font_dimens.xml +18 -0
- package/projects/kit/assets/tokens/adeo/css/_variables.scss +626 -0
- package/projects/kit/assets/tokens/adeo/css/root.scss +478 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
- package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
- package/projects/kit/assets/tokens/adeo/js/tokens.js +574 -0
- package/projects/kit/assets/tokens/adeo/js/tokensObject.js +9637 -0
- package/projects/kit/assets/tokens/adeo/scss/_tokens.scss +1617 -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.html +0 -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/public-api.ts +2 -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/assets/moz-icons/Device_Desktop_24px.svg +0 -1
- package/assets/moz-icons/Device_Desktop_32px.svg +0 -1
- package/assets/moz-icons/Device_Desktop_48px.svg +0 -1
- package/assets/moz-icons/Device_Desktop_64px.svg +0 -1
- package/assets/moz-icons/Device_Laptop_24px.svg +0 -1
- package/assets/moz-icons/Device_Laptop_32px.svg +0 -1
- package/assets/moz-icons/Device_Laptop_48px.svg +0 -1
- package/assets/moz-icons/Device_Laptop_64px.svg +0 -1
- package/assets/moz-icons/Device_Mobile_24px.svg +0 -1
- package/assets/moz-icons/Device_Mobile_32px.svg +0 -1
- package/assets/moz-icons/Device_Mobile_48px.svg +0 -1
- package/assets/moz-icons/Device_Mobile_64px.svg +0 -1
- package/assets/moz-icons/Device_Tablet_24px.svg +0 -1
- package/assets/moz-icons/Device_Tablet_32px.svg +0 -1
- package/assets/moz-icons/Device_Tablet_48px.svg +0 -1
- package/assets/moz-icons/Device_Tablet_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -1
- package/assets/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -1
- package/assets/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -1
- package/assets/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -1
- package/assets/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Brand_LM_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Brand_LM_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Brand_LM_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Brand_LM_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -1
- package/assets/moz-icons/Media_API_24px.svg +0 -1
- package/assets/moz-icons/Media_API_32px.svg +0 -1
- package/assets/moz-icons/Media_API_48px.svg +0 -1
- package/assets/moz-icons/Media_API_64px.svg +0 -1
- package/assets/moz-icons/Media_BookStore_24px.svg +0 -1
- package/assets/moz-icons/Media_BookStore_32px.svg +0 -1
- package/assets/moz-icons/Media_BookStore_48px.svg +0 -1
- package/assets/moz-icons/Media_BookStore_64px.svg +0 -1
- package/assets/moz-icons/Media_Camera_24px.svg +0 -1
- package/assets/moz-icons/Media_Camera_32px.svg +0 -1
- package/assets/moz-icons/Media_Camera_48px.svg +0 -1
- package/assets/moz-icons/Media_Camera_64px.svg +0 -1
- package/assets/moz-icons/Media_Code_24px.svg +0 -1
- package/assets/moz-icons/Media_Code_32px.svg +0 -1
- package/assets/moz-icons/Media_Code_48px.svg +0 -1
- package/assets/moz-icons/Media_Code_64px.svg +0 -1
- package/assets/moz-icons/Media_Document_24px.svg +0 -1
- package/assets/moz-icons/Media_Document_32px.svg +0 -1
- package/assets/moz-icons/Media_Document_48px.svg +0 -1
- package/assets/moz-icons/Media_Document_64px.svg +0 -1
- package/assets/moz-icons/Media_Download_App_24px.svg +0 -1
- package/assets/moz-icons/Media_Download_App_32px.svg +0 -1
- package/assets/moz-icons/Media_Download_App_48px.svg +0 -1
- package/assets/moz-icons/Media_Download_App_64px.svg +0 -1
- package/assets/moz-icons/Media_Download_Web_24px.svg +0 -1
- package/assets/moz-icons/Media_Download_Web_32px.svg +0 -1
- package/assets/moz-icons/Media_Download_Web_48px.svg +0 -1
- package/assets/moz-icons/Media_Download_Web_64px.svg +0 -1
- package/assets/moz-icons/Media_FullScreen_16px.svg +0 -1
- package/assets/moz-icons/Media_FullScreen_24px.svg +0 -1
- package/assets/moz-icons/Media_FullScreen_32px.svg +0 -1
- package/assets/moz-icons/Media_FullScreen_48px.svg +0 -1
- package/assets/moz-icons/Media_FullScreen_64px.svg +0 -1
- package/assets/moz-icons/Media_Gauge_24px.svg +0 -1
- package/assets/moz-icons/Media_Gauge_32px.svg +0 -1
- package/assets/moz-icons/Media_Gauge_48px.svg +0 -1
- package/assets/moz-icons/Media_Gauge_64px.svg +0 -1
- package/assets/moz-icons/Media_Group_24px.svg +0 -1
- package/assets/moz-icons/Media_Group_32px.svg +0 -1
- package/assets/moz-icons/Media_Group_48px.svg +0 -1
- package/assets/moz-icons/Media_Group_64px.svg +0 -1
- package/assets/moz-icons/Media_NoPicture_24px.svg +0 -1
- package/assets/moz-icons/Media_NoPicture_32px.svg +0 -1
- package/assets/moz-icons/Media_NoPicture_48px.svg +0 -1
- package/assets/moz-icons/Media_NoPicture_64px.svg +0 -1
- package/assets/moz-icons/Media_Pdf_24px.svg +0 -1
- package/assets/moz-icons/Media_Pdf_32px.svg +0 -1
- package/assets/moz-icons/Media_Pdf_48px.svg +0 -1
- package/assets/moz-icons/Media_Pdf_64px.svg +0 -1
- package/assets/moz-icons/Media_Play_24px.svg +0 -1
- package/assets/moz-icons/Media_Play_32px.svg +0 -1
- package/assets/moz-icons/Media_Play_48px.svg +0 -1
- package/assets/moz-icons/Media_Play_64px.svg +0 -1
- package/assets/moz-icons/Media_Player_24px.svg +0 -1
- package/assets/moz-icons/Media_Player_32px.svg +0 -1
- package/assets/moz-icons/Media_Player_48px.svg +0 -1
- package/assets/moz-icons/Media_Player_64px.svg +0 -1
- package/assets/moz-icons/Media_Player_96px.svg +0 -1
- package/assets/moz-icons/Media_Policies_24px.svg +0 -1
- package/assets/moz-icons/Media_Policies_32px.svg +0 -1
- package/assets/moz-icons/Media_Policies_48px.svg +0 -1
- package/assets/moz-icons/Media_Policies_64px.svg +0 -1
- package/assets/moz-icons/Media_Print_24px.svg +0 -1
- package/assets/moz-icons/Media_Print_32px.svg +0 -1
- package/assets/moz-icons/Media_Print_48px.svg +0 -1
- package/assets/moz-icons/Media_Print_64px.svg +0 -1
- package/assets/moz-icons/Media_Project_24px.svg +0 -1
- package/assets/moz-icons/Media_Project_32px.svg +0 -1
- package/assets/moz-icons/Media_Project_48px.svg +0 -1
- package/assets/moz-icons/Media_Project_64px.svg +0 -1
- package/assets/moz-icons/Media_Read_24px.svg +0 -1
- package/assets/moz-icons/Media_Read_32px.svg +0 -1
- package/assets/moz-icons/Media_Read_48px.svg +0 -1
- package/assets/moz-icons/Media_Read_64px.svg +0 -1
- package/assets/moz-icons/Media_ReduceScreen_16px.svg +0 -1
- package/assets/moz-icons/Media_ReduceScreen_24px.svg +0 -1
- package/assets/moz-icons/Media_ReduceScreen_32px.svg +0 -1
- package/assets/moz-icons/Media_ReduceScreen_48px.svg +0 -1
- package/assets/moz-icons/Media_ReduceScreen_64px.svg +0 -1
- package/assets/moz-icons/Media_Slideshow_24px.svg +0 -1
- package/assets/moz-icons/Media_Slideshow_32px.svg +0 -1
- package/assets/moz-icons/Media_Slideshow_48px.svg +0 -1
- package/assets/moz-icons/Media_Slideshow_64px.svg +0 -1
- package/assets/moz-icons/Media_Sound_24px.svg +0 -1
- package/assets/moz-icons/Media_Sound_32px.svg +0 -1
- package/assets/moz-icons/Media_Sound_48px.svg +0 -1
- package/assets/moz-icons/Media_Sound_64px.svg +0 -1
- package/assets/moz-icons/Media_Stop_24px.svg +0 -1
- package/assets/moz-icons/Media_Stop_32px.svg +0 -1
- package/assets/moz-icons/Media_Stop_48px.svg +0 -1
- package/assets/moz-icons/Media_Stop_64px.svg +0 -1
- package/assets/moz-icons/Media_TimeRead_24px.svg +0 -1
- package/assets/moz-icons/Media_TimeRead_32px.svg +0 -1
- package/assets/moz-icons/Media_TimeRead_48px.svg +0 -1
- package/assets/moz-icons/Media_TimeRead_64px.svg +0 -1
- package/assets/moz-icons/Media_Upload_24px.svg +0 -1
- package/assets/moz-icons/Media_Upload_32px.svg +0 -1
- package/assets/moz-icons/Media_Upload_48px.svg +0 -1
- package/assets/moz-icons/Media_Upload_64px.svg +0 -1
- package/assets/moz-icons/Media_View360_24px.svg +0 -1
- package/assets/moz-icons/Media_View360_32px.svg +0 -1
- package/assets/moz-icons/Media_View360_48px.svg +0 -1
- package/assets/moz-icons/Media_View360_64px.svg +0 -1
- package/assets/moz-icons/Media_View360_96px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Back_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Back_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Back_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Back_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Back_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Down_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Down_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Down_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Down_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Down_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Next_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Next_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Next_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Next_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Next_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Up_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Up_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Up_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Up_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Arrow_Up_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Cross_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Cross_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Cross_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Cross_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Cross_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Less_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Less_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Less_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Less_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Less_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_More_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_More_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_More_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_More_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_More_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Blink_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Blink_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Blink_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Blink_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Calendar_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Calendar_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Calendar_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Calendar_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Connect_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Connect_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Connect_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Connect_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Filter_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Filter_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Filter_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Filter_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Home_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Home_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Home_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Home_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_LogOut_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_LogOut_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_LogOut_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_LogOut_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Menu_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Menu_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Menu_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Menu_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Options_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Options_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Options_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Options_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Other_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Other_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Other_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Other_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Refresh_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Refresh_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Refresh_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Refresh_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchList_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchList_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchList_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchList_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Search_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Search_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Search_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Search_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Setting_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Setting_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Setting_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_Setting_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_View_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_View_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_View_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_View_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Available_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Available_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Available_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Available_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Available_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Bell_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Bell_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Bell_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Bell_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Information_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Information_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Information_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Information_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Question_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Question_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Question_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Question_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Warning_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Warning_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Warning_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Notification_Warning_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Copy_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Copy_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Copy_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Copy_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Edit_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Edit_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Edit_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Edit_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Lock_16px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Lock_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Lock_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Lock_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Lock_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Send_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Send_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Send_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Send_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -1
- package/assets/moz-icons/Navigation_Split_24px.svg +0 -1
- package/assets/moz-icons/Navigation_Split_32px.svg +0 -1
- package/assets/moz-icons/Navigation_Split_48px.svg +0 -1
- package/assets/moz-icons/Navigation_Split_64px.svg +0 -1
- package/assets/moz-icons/Payment_Bill_24px.svg +0 -1
- package/assets/moz-icons/Payment_Bill_32px.svg +0 -1
- package/assets/moz-icons/Payment_Bill_48px.svg +0 -1
- package/assets/moz-icons/Payment_Bill_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -1
- package/assets/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -1
- package/assets/moz-icons/Payment_DetailsOrder_24px.svg +0 -1
- package/assets/moz-icons/Payment_DetailsOrder_32px.svg +0 -1
- package/assets/moz-icons/Payment_DetailsOrder_48px.svg +0 -1
- package/assets/moz-icons/Payment_DetailsOrder_64px.svg +0 -1
- package/assets/moz-icons/Payment_Euro_16px.svg +0 -1
- package/assets/moz-icons/Payment_Euro_24px.svg +0 -1
- package/assets/moz-icons/Payment_Euro_32px.svg +0 -1
- package/assets/moz-icons/Payment_Euro_48px.svg +0 -1
- package/assets/moz-icons/Payment_Euro_64px.svg +0 -1
- package/assets/moz-icons/Payment_Receipt_24px.svg +0 -1
- package/assets/moz-icons/Payment_Receipt_32px.svg +0 -1
- package/assets/moz-icons/Payment_Receipt_48px.svg +0 -1
- package/assets/moz-icons/Payment_Receipt_64px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment1_24px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment1_32px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment1_48px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment1_64px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment2_24px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment2_32px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment2_48px.svg +0 -1
- package/assets/moz-icons/Payment_SafePayment2_64px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Quantity_24px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Quantity_32px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Quantity_48px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Quantity_64px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Size_24px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Size_32px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Size_48px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Size_64px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Weight_24px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Weight_32px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Weight_48px.svg +0 -1
- package/assets/moz-icons/Product_Aspect_Weight_64px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Add_24px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Add_32px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Add_48px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Add_64px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Handbag_24px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Handbag_32px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Handbag_48px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Handbag_64px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Multi_24px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Multi_32px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Multi_48px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Multi_64px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Save_24px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Save_32px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Save_48px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Save_64px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Standard_24px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Standard_32px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Standard_48px.svg +0 -1
- package/assets/moz-icons/Product_Basket_Standard_64px.svg +0 -1
- package/assets/moz-icons/Product_List_Add_24px.svg +0 -1
- package/assets/moz-icons/Product_List_Add_32px.svg +0 -1
- package/assets/moz-icons/Product_List_Add_48px.svg +0 -1
- package/assets/moz-icons/Product_List_Add_64px.svg +0 -1
- package/assets/moz-icons/Product_List_Standard_24px.svg +0 -1
- package/assets/moz-icons/Product_List_Standard_32px.svg +0 -1
- package/assets/moz-icons/Product_List_Standard_48px.svg +0 -1
- package/assets/moz-icons/Product_List_Standard_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Certification_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Certification_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Certification_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Certification_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Destocking_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Destocking_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Destocking_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Destocking_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Funding_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Funding_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Funding_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Funding_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Modular_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Modular_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Modular_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Modular_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Scan_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Scan_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Scan_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Scan_64px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Warranty_24px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Warranty_32px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Warranty_48px.svg +0 -1
- package/assets/moz-icons/Product_Promise_Warranty_64px.svg +0 -1
- package/assets/moz-icons/Project_DescribeProject_24px.svg +0 -1
- package/assets/moz-icons/Project_DescribeProject_32px.svg +0 -1
- package/assets/moz-icons/Project_DescribeProject_48px.svg +0 -1
- package/assets/moz-icons/Project_DescribeProject_64px.svg +0 -1
- package/assets/moz-icons/Project_Inspiration_24px.svg +0 -1
- package/assets/moz-icons/Project_Inspiration_32px.svg +0 -1
- package/assets/moz-icons/Project_Inspiration_48px.svg +0 -1
- package/assets/moz-icons/Project_Inspiration_64px.svg +0 -1
- package/assets/moz-icons/Project_MakeProject_24px.svg +0 -1
- package/assets/moz-icons/Project_MakeProject_32px.svg +0 -1
- package/assets/moz-icons/Project_MakeProject_48px.svg +0 -1
- package/assets/moz-icons/Project_MakeProject_64px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Payback_24px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Payback_32px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Payback_48px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Payback_64px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -1
- package/assets/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CopyKey_24px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CopyKey_32px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CopyKey_48px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CopyKey_64px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Course_24px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Course_32px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Course_48px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Course_64px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -1
- package/assets/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sample_24px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sample_32px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sample_48px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sample_64px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sharpening_24px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sharpening_32px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sharpening_48px.svg +0 -1
- package/assets/moz-icons/Service_Custom_Sharpening_64px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -1
- package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -1
- package/assets/moz-icons/Service_Pallet_24px.svg +0 -1
- package/assets/moz-icons/Service_Pallet_32px.svg +0 -1
- package/assets/moz-icons/Service_Pallet_48px.svg +0 -1
- package/assets/moz-icons/Service_Pallet_64px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -1
- package/assets/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -1
- package/assets/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -1
- package/assets/moz-icons/Service_Time_TimeDecline_24px.svg +0 -1
- package/assets/moz-icons/Service_Time_TimeDecline_32px.svg +0 -1
- package/assets/moz-icons/Service_Time_TimeDecline_48px.svg +0 -1
- package/assets/moz-icons/Service_Time_TimeDecline_64px.svg +0 -1
- package/assets/moz-icons/Service_Tools_3d_24px.svg +0 -1
- package/assets/moz-icons/Service_Tools_3d_32px.svg +0 -1
- package/assets/moz-icons/Service_Tools_3d_48px.svg +0 -1
- package/assets/moz-icons/Service_Tools_3d_64px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Calculator_24px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Calculator_32px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Calculator_48px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Calculator_64px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Comparator_24px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Comparator_32px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Comparator_48px.svg +0 -1
- package/assets/moz-icons/Service_Tools_Comparator_64px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Comment_24px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Comment_32px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Comment_48px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Comment_64px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Community_24px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Community_32px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Community_48px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Community_64px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Question--Article_24px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Question--Article_32px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Question--Article_48px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Question--Article_64px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Report_24px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Report_32px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Report_48px.svg +0 -1
- package/assets/moz-icons/Social_Comment_Report_64px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareIOS_24px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareIOS_32px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareIOS_48px.svg +0 -1
- package/assets/moz-icons/Social_Share_ShareIOS_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -1
- package/assets/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Negative_16px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Negative_24px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Negative_32px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Negative_48px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Negative_64px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Positive_16px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Positive_24px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Positive_32px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Positive_48px.svg +0 -1
- package/assets/moz-icons/Social_View_Like--Positive_64px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Empty_16px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Empty_24px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Empty_32px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Empty_48px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Empty_64px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Full_16px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Full_24px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Full_32px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Full_48px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Full_64px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Half_16px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Half_24px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Half_32px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Half_48px.svg +0 -1
- package/assets/moz-icons/Social_View_Star--Half_64px.svg +0 -1
- package/assets/moz-icons/Social_View_TesterView_24px.svg +0 -1
- package/assets/moz-icons/Social_View_TesterView_32px.svg +0 -1
- package/assets/moz-icons/Social_View_TesterView_48px.svg +0 -1
- package/assets/moz-icons/Social_View_TesterView_64px.svg +0 -1
- package/assets/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -1
- package/assets/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -1
- package/assets/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -1
- package/assets/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -1
- package/assets/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -1
- package/assets/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -1
- package/assets/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -1
- package/assets/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -1
- package/assets/moz-icons/Store_Itinerary_24px.svg +0 -1
- package/assets/moz-icons/Store_Itinerary_32px.svg +0 -1
- package/assets/moz-icons/Store_Itinerary_48px.svg +0 -1
- package/assets/moz-icons/Store_Itinerary_64px.svg +0 -1
- package/assets/moz-icons/Store_Locator_16px.svg +0 -1
- package/assets/moz-icons/Store_Locator_24px.svg +0 -1
- package/assets/moz-icons/Store_Locator_32px.svg +0 -1
- package/assets/moz-icons/Store_Locator_48px.svg +0 -1
- package/assets/moz-icons/Store_Locator_64px.svg +0 -1
- package/assets/moz-icons/Store_Logo_24px.svg +0 -1
- package/assets/moz-icons/Store_Logo_32px.svg +0 -1
- package/assets/moz-icons/Store_Logo_48px.svg +0 -1
- package/assets/moz-icons/Store_Logo_64px.svg +0 -1
- package/assets/moz-icons/Store_Map_24px.svg +0 -1
- package/assets/moz-icons/Store_Map_32px.svg +0 -1
- package/assets/moz-icons/Store_Map_48px.svg +0 -1
- package/assets/moz-icons/Store_Map_64px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -1
- package/assets/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -1
- package/assets/moz-icons/Store_StoreLM_24px.svg +0 -1
- package/assets/moz-icons/Store_StoreLM_32px.svg +0 -1
- package/assets/moz-icons/Store_StoreLM_48px.svg +0 -1
- package/assets/moz-icons/Store_StoreLM_64px.svg +0 -1
- package/assets/moz-icons/Universe_Attic_24px.svg +0 -1
- package/assets/moz-icons/Universe_Attic_32px.svg +0 -1
- package/assets/moz-icons/Universe_Attic_48px.svg +0 -1
- package/assets/moz-icons/Universe_Attic_64px.svg +0 -1
- package/assets/moz-icons/Universe_Bathroom_24px.svg +0 -1
- package/assets/moz-icons/Universe_Bathroom_32px.svg +0 -1
- package/assets/moz-icons/Universe_Bathroom_48px.svg +0 -1
- package/assets/moz-icons/Universe_Bathroom_64px.svg +0 -1
- package/assets/moz-icons/Universe_Bedroom_24px.svg +0 -1
- package/assets/moz-icons/Universe_Bedroom_32px.svg +0 -1
- package/assets/moz-icons/Universe_Bedroom_48px.svg +0 -1
- package/assets/moz-icons/Universe_Bedroom_64px.svg +0 -1
- package/assets/moz-icons/Universe_Carpentry_24px.svg +0 -1
- package/assets/moz-icons/Universe_Carpentry_32px.svg +0 -1
- package/assets/moz-icons/Universe_Carpentry_48px.svg +0 -1
- package/assets/moz-icons/Universe_Carpentry_64px.svg +0 -1
- package/assets/moz-icons/Universe_ChristmasTree_24px.svg +0 -1
- package/assets/moz-icons/Universe_ChristmasTree_32px.svg +0 -1
- package/assets/moz-icons/Universe_ChristmasTree_48px.svg +0 -1
- package/assets/moz-icons/Universe_ChristmasTree_64px.svg +0 -1
- package/assets/moz-icons/Universe_ConnectedHome_24px.svg +0 -1
- package/assets/moz-icons/Universe_ConnectedHome_32px.svg +0 -1
- package/assets/moz-icons/Universe_ConnectedHome_48px.svg +0 -1
- package/assets/moz-icons/Universe_ConnectedHome_64px.svg +0 -1
- package/assets/moz-icons/Universe_Curtains_24px.svg +0 -1
- package/assets/moz-icons/Universe_Curtains_32px.svg +0 -1
- package/assets/moz-icons/Universe_Curtains_48px.svg +0 -1
- package/assets/moz-icons/Universe_Curtains_64px.svg +0 -1
- package/assets/moz-icons/Universe_Dressing_24px.svg +0 -1
- package/assets/moz-icons/Universe_Dressing_32px.svg +0 -1
- package/assets/moz-icons/Universe_Dressing_48px.svg +0 -1
- package/assets/moz-icons/Universe_Dressing_64px.svg +0 -1
- package/assets/moz-icons/Universe_Electricity_24px.svg +0 -1
- package/assets/moz-icons/Universe_Electricity_32px.svg +0 -1
- package/assets/moz-icons/Universe_Electricity_48px.svg +0 -1
- package/assets/moz-icons/Universe_Electricity_64px.svg +0 -1
- package/assets/moz-icons/Universe_Enki_24px.svg +0 -1
- package/assets/moz-icons/Universe_Enki_32px.svg +0 -1
- package/assets/moz-icons/Universe_Enki_48px.svg +0 -1
- package/assets/moz-icons/Universe_Enki_64px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_24px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_32px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_48px.svg +0 -1
- package/assets/moz-icons/Universe_Floor_64px.svg +0 -1
- package/assets/moz-icons/Universe_Garage_24px.svg +0 -1
- package/assets/moz-icons/Universe_Garage_32px.svg +0 -1
- package/assets/moz-icons/Universe_Garage_48px.svg +0 -1
- package/assets/moz-icons/Universe_Garage_64px.svg +0 -1
- package/assets/moz-icons/Universe_Garden1_24px.svg +0 -1
- package/assets/moz-icons/Universe_Garden1_32px.svg +0 -1
- package/assets/moz-icons/Universe_Garden1_48px.svg +0 -1
- package/assets/moz-icons/Universe_Garden1_64px.svg +0 -1
- package/assets/moz-icons/Universe_Garden2_24px.svg +0 -1
- package/assets/moz-icons/Universe_Garden2_32px.svg +0 -1
- package/assets/moz-icons/Universe_Garden2_48px.svg +0 -1
- package/assets/moz-icons/Universe_Garden2_64px.svg +0 -1
- package/assets/moz-icons/Universe_Glass_24px.svg +0 -1
- package/assets/moz-icons/Universe_Glass_32px.svg +0 -1
- package/assets/moz-icons/Universe_Glass_48px.svg +0 -1
- package/assets/moz-icons/Universe_Glass_64px.svg +0 -1
- package/assets/moz-icons/Universe_HardwareStore_24px.svg +0 -1
- package/assets/moz-icons/Universe_HardwareStore_32px.svg +0 -1
- package/assets/moz-icons/Universe_HardwareStore_48px.svg +0 -1
- package/assets/moz-icons/Universe_HardwareStore_64px.svg +0 -1
- package/assets/moz-icons/Universe_Heater_24px.svg +0 -1
- package/assets/moz-icons/Universe_Heater_32px.svg +0 -1
- package/assets/moz-icons/Universe_Heater_48px.svg +0 -1
- package/assets/moz-icons/Universe_Heater_64px.svg +0 -1
- package/assets/moz-icons/Universe_Kids_24px.svg +0 -1
- package/assets/moz-icons/Universe_Kids_32px.svg +0 -1
- package/assets/moz-icons/Universe_Kids_48px.svg +0 -1
- package/assets/moz-icons/Universe_Kids_64px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen2_24px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen2_32px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen2_48px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen2_64px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen_24px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen_32px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen_48px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen_64px.svg +0 -1
- package/assets/moz-icons/Universe_Leak_24px.svg +0 -1
- package/assets/moz-icons/Universe_Leak_32px.svg +0 -1
- package/assets/moz-icons/Universe_Leak_48px.svg +0 -1
- package/assets/moz-icons/Universe_Leak_64px.svg +0 -1
- package/assets/moz-icons/Universe_Lighting_24px.svg +0 -1
- package/assets/moz-icons/Universe_Lighting_32px.svg +0 -1
- package/assets/moz-icons/Universe_Lighting_48px.svg +0 -1
- package/assets/moz-icons/Universe_Lighting_64px.svg +0 -1
- package/assets/moz-icons/Universe_Living_24px.svg +0 -1
- package/assets/moz-icons/Universe_Living_32px.svg +0 -1
- package/assets/moz-icons/Universe_Living_48px.svg +0 -1
- package/assets/moz-icons/Universe_Living_64px.svg +0 -1
- package/assets/moz-icons/Universe_MakeIt_24px.svg +0 -1
- package/assets/moz-icons/Universe_MakeIt_32px.svg +0 -1
- package/assets/moz-icons/Universe_MakeIt_48px.svg +0 -1
- package/assets/moz-icons/Universe_MakeIt_64px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_24px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_32px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_48px.svg +0 -1
- package/assets/moz-icons/Universe_Paint_64px.svg +0 -1
- package/assets/moz-icons/Universe_Pool_24px.svg +0 -1
- package/assets/moz-icons/Universe_Pool_32px.svg +0 -1
- package/assets/moz-icons/Universe_Pool_48px.svg +0 -1
- package/assets/moz-icons/Universe_Pool_64px.svg +0 -1
- package/assets/moz-icons/Universe_Security_24px.svg +0 -1
- package/assets/moz-icons/Universe_Security_32px.svg +0 -1
- package/assets/moz-icons/Universe_Security_48px.svg +0 -1
- package/assets/moz-icons/Universe_Security_64px.svg +0 -1
- package/assets/moz-icons/Universe_Terrace_24px.svg +0 -1
- package/assets/moz-icons/Universe_Terrace_32px.svg +0 -1
- package/assets/moz-icons/Universe_Terrace_48px.svg +0 -1
- package/assets/moz-icons/Universe_Terrace_64px.svg +0 -1
- package/assets/moz-icons/Universe_Tool_24px.svg +0 -1
- package/assets/moz-icons/Universe_Tool_32px.svg +0 -1
- package/assets/moz-icons/Universe_Tool_48px.svg +0 -1
- package/assets/moz-icons/Universe_Tool_64px.svg +0 -1
- package/assets/moz-icons/Universe_WoodSaw_24px.svg +0 -1
- package/assets/moz-icons/Universe_WoodSaw_32px.svg +0 -1
- package/assets/moz-icons/Universe_WoodSaw_48px.svg +0 -1
- package/assets/moz-icons/Universe_WoodSaw_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Passion_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Passion_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Passion_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Passion_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Pro_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Pro_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Pro_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Customer--Pro_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Man_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Man_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Man_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Man_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--View_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--View_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--View_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--View_64px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Woman_24px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Woman_32px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Woman_48px.svg +0 -1
- package/assets/moz-icons/User_Account_Profile--Woman_64px.svg +0 -1
- package/assets/moz-icons/User_Card_Funding_24px.svg +0 -1
- package/assets/moz-icons/User_Card_Funding_32px.svg +0 -1
- package/assets/moz-icons/User_Card_Funding_48px.svg +0 -1
- package/assets/moz-icons/User_Card_Funding_64px.svg +0 -1
- package/assets/moz-icons/User_Card_Gift_24px.svg +0 -1
- package/assets/moz-icons/User_Card_Gift_32px.svg +0 -1
- package/assets/moz-icons/User_Card_Gift_48px.svg +0 -1
- package/assets/moz-icons/User_Card_Gift_64px.svg +0 -1
- package/assets/moz-icons/User_Card_IDCard_24px.svg +0 -1
- package/assets/moz-icons/User_Card_IDCard_32px.svg +0 -1
- package/assets/moz-icons/User_Card_IDCard_48px.svg +0 -1
- package/assets/moz-icons/User_Card_IDCard_64px.svg +0 -1
- package/assets/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -1
- package/assets/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -1
- package/assets/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -1
- package/assets/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -1
- package/assets/moz-icons/User_Contact_Mail_24px.svg +0 -1
- package/assets/moz-icons/User_Contact_Mail_32px.svg +0 -1
- package/assets/moz-icons/User_Contact_Mail_48px.svg +0 -1
- package/assets/moz-icons/User_Contact_Mail_64px.svg +0 -1
- package/assets/moz-icons/User_Contact_Phone_24px.svg +0 -1
- package/assets/moz-icons/User_Contact_Phone_32px.svg +0 -1
- package/assets/moz-icons/User_Contact_Phone_48px.svg +0 -1
- package/assets/moz-icons/User_Contact_Phone_64px.svg +0 -1
- package/assets/moz-icons/User_Contact_Website_24px.svg +0 -1
- package/assets/moz-icons/User_Contact_Website_32px.svg +0 -1
- package/assets/moz-icons/User_Contact_Website_48px.svg +0 -1
- package/assets/moz-icons/User_Contact_Website_64px.svg +0 -1
- package/assets/moz-icons/User_Situation_Owner_24px.svg +0 -1
- package/assets/moz-icons/User_Situation_Owner_32px.svg +0 -1
- package/assets/moz-icons/User_Situation_Owner_48px.svg +0 -1
- package/assets/moz-icons/User_Situation_Owner_64px.svg +0 -1
- package/assets/moz-icons/User_Situation_Tenant_24px.svg +0 -1
- package/assets/moz-icons/User_Situation_Tenant_32px.svg +0 -1
- package/assets/moz-icons/User_Situation_Tenant_48px.svg +0 -1
- package/assets/moz-icons/User_Situation_Tenant_64px.svg +0 -1
- package/assets/moz-icons/Various_Administration_24px.svg +0 -1
- package/assets/moz-icons/Various_Administration_32px.svg +0 -1
- package/assets/moz-icons/Various_Administration_48px.svg +0 -1
- package/assets/moz-icons/Various_Administration_64px.svg +0 -1
- package/assets/moz-icons/Various_Apartment_24px.svg +0 -1
- package/assets/moz-icons/Various_Apartment_32px.svg +0 -1
- package/assets/moz-icons/Various_Apartment_48px.svg +0 -1
- package/assets/moz-icons/Various_Apartment_64px.svg +0 -1
- package/assets/moz-icons/Various_Balcony_24px.svg +0 -1
- package/assets/moz-icons/Various_Balcony_32px.svg +0 -1
- package/assets/moz-icons/Various_Balcony_48px.svg +0 -1
- package/assets/moz-icons/Various_Balcony_64px.svg +0 -1
- package/assets/moz-icons/Various_Blower_24px.svg +0 -1
- package/assets/moz-icons/Various_Blower_32px.svg +0 -1
- package/assets/moz-icons/Various_Blower_48px.svg +0 -1
- package/assets/moz-icons/Various_Blower_64px.svg +0 -1
- package/assets/moz-icons/Various_Door_24px.svg +0 -1
- package/assets/moz-icons/Various_Door_32px.svg +0 -1
- package/assets/moz-icons/Various_Door_48px.svg +0 -1
- package/assets/moz-icons/Various_Door_64px.svg +0 -1
- package/assets/moz-icons/Various_EcoSaving_24px.svg +0 -1
- package/assets/moz-icons/Various_EcoSaving_32px.svg +0 -1
- package/assets/moz-icons/Various_EcoSaving_48px.svg +0 -1
- package/assets/moz-icons/Various_EcoSaving_64px.svg +0 -1
- package/assets/moz-icons/Various_Heat_24px.svg +0 -1
- package/assets/moz-icons/Various_Heat_32px.svg +0 -1
- package/assets/moz-icons/Various_Heat_48px.svg +0 -1
- package/assets/moz-icons/Various_Heat_64px.svg +0 -1
- package/assets/moz-icons/Various_House_24px.svg +0 -1
- package/assets/moz-icons/Various_House_32px.svg +0 -1
- package/assets/moz-icons/Various_House_48px.svg +0 -1
- package/assets/moz-icons/Various_House_64px.svg +0 -1
- package/assets/moz-icons/Various_IncreaseValue_24px.svg +0 -1
- package/assets/moz-icons/Various_IncreaseValue_32px.svg +0 -1
- package/assets/moz-icons/Various_IncreaseValue_48px.svg +0 -1
- package/assets/moz-icons/Various_IncreaseValue_64px.svg +0 -1
- package/assets/moz-icons/Various_Insulation_24px.svg +0 -1
- package/assets/moz-icons/Various_Insulation_32px.svg +0 -1
- package/assets/moz-icons/Various_Insulation_48px.svg +0 -1
- package/assets/moz-icons/Various_Insulation_64px.svg +0 -1
- package/assets/moz-icons/Various_LessonDIY_24px.svg +0 -1
- package/assets/moz-icons/Various_LessonDIY_32px.svg +0 -1
- package/assets/moz-icons/Various_LessonDIY_48px.svg +0 -1
- package/assets/moz-icons/Various_LessonDIY_64px.svg +0 -1
- package/assets/moz-icons/Various_Level_24px.svg +0 -1
- package/assets/moz-icons/Various_Level_32px.svg +0 -1
- package/assets/moz-icons/Various_Level_48px.svg +0 -1
- package/assets/moz-icons/Various_Level_64px.svg +0 -1
- package/assets/moz-icons/Various_PaintCan_24px.svg +0 -1
- package/assets/moz-icons/Various_PaintCan_32px.svg +0 -1
- package/assets/moz-icons/Various_PaintCan_48px.svg +0 -1
- package/assets/moz-icons/Various_PaintCan_64px.svg +0 -1
- package/assets/moz-icons/Various_PartnerCompany_24px.svg +0 -1
- package/assets/moz-icons/Various_PartnerCompany_32px.svg +0 -1
- package/assets/moz-icons/Various_PartnerCompany_48px.svg +0 -1
- package/assets/moz-icons/Various_PartnerCompany_64px.svg +0 -1
- package/assets/moz-icons/Various_PartnerWorker_24px.svg +0 -1
- package/assets/moz-icons/Various_PartnerWorker_32px.svg +0 -1
- package/assets/moz-icons/Various_PartnerWorker_48px.svg +0 -1
- package/assets/moz-icons/Various_PartnerWorker_64px.svg +0 -1
- package/assets/moz-icons/Various_Pipe_24px.svg +0 -1
- package/assets/moz-icons/Various_Pipe_32px.svg +0 -1
- package/assets/moz-icons/Various_Pipe_48px.svg +0 -1
- package/assets/moz-icons/Various_Pipe_64px.svg +0 -1
- package/assets/moz-icons/Various_Premium_24px.svg +0 -1
- package/assets/moz-icons/Various_Premium_32px.svg +0 -1
- package/assets/moz-icons/Various_Premium_48px.svg +0 -1
- package/assets/moz-icons/Various_Premium_64px.svg +0 -1
- package/assets/moz-icons/Various_Shutter_24px.svg +0 -1
- package/assets/moz-icons/Various_Shutter_32px.svg +0 -1
- package/assets/moz-icons/Various_Shutter_48px.svg +0 -1
- package/assets/moz-icons/Various_Shutter_64px.svg +0 -1
- package/assets/moz-icons/Various_Survey_24px.svg +0 -1
- package/assets/moz-icons/Various_Survey_32px.svg +0 -1
- package/assets/moz-icons/Various_Survey_48px.svg +0 -1
- package/assets/moz-icons/Various_Survey_64px.svg +0 -1
- package/assets/moz-icons/Various_Temperature_24px.svg +0 -1
- package/assets/moz-icons/Various_Temperature_32px.svg +0 -1
- package/assets/moz-icons/Various_Temperature_48px.svg +0 -1
- package/assets/moz-icons/Various_Temperature_64px.svg +0 -1
- package/assets/moz-icons/Various_ThermalControl_24px.svg +0 -1
- package/assets/moz-icons/Various_ThermalControl_32px.svg +0 -1
- package/assets/moz-icons/Various_ThermalControl_48px.svg +0 -1
- package/assets/moz-icons/Various_ThermalControl_64px.svg +0 -1
- package/assets/moz-icons/Various_ToolBox_24px.svg +0 -1
- package/assets/moz-icons/Various_ToolBox_32px.svg +0 -1
- package/assets/moz-icons/Various_ToolBox_48px.svg +0 -1
- package/assets/moz-icons/Various_ToolBox_64px.svg +0 -1
- package/common/global-events/global-events.module.d.ts +0 -6
- package/common/global-events/global-events.service.d.ts +0 -11
- package/common/utils/boolean-property.d.ts +0 -1
- package/common/utils/generate-id.d.ts +0 -1
- package/common/utils/get-random-number.d.ts +0 -1
- package/common/utils/overwrite-style.d.ts +0 -2
- package/components/badge/badge.component.d.ts +0 -8
- package/components/badge/badge.d.ts +0 -3
- package/components/badge/badge.module.d.ts +0 -8
- package/components/button/button.component.d.ts +0 -16
- package/components/button/button.d.ts +0 -7
- package/components/button/button.module.d.ts +0 -8
- package/components/checkbox/checkbox.component.d.ts +0 -21
- package/components/checkbox/checkbox.module.d.ts +0 -8
- package/components/dialog/classes/dialog-config.d.ts +0 -9
- package/components/dialog/classes/dialog-injector.d.ts +0 -10
- package/components/dialog/classes/dialog-ref.d.ts +0 -25
- package/components/dialog/dialog-animation.d.ts +0 -1
- package/components/dialog/dialog.component.d.ts +0 -23
- package/components/dialog/dialog.module.d.ts +0 -8
- package/components/dialog/dialog.service.d.ts +0 -20
- package/components/dialog/interfaces/dialog-config.d.ts +0 -7
- package/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
- package/components/dialog/interfaces/dialog-ref.d.ts +0 -18
- package/components/dialog/tokens/dialog-config.token.d.ts +0 -2
- package/components/dialog/tokens/dialog-data.token.d.ts +0 -2
- package/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
- package/components/field/directives/input-icon.directive.d.ts +0 -7
- package/components/field/field-error.component.d.ts +0 -5
- package/components/field/field.component.d.ts +0 -16
- package/components/field/field.module.d.ts +0 -10
- package/components/icon/icon-size.d.ts +0 -6
- package/components/icon/icon.component.d.ts +0 -15
- package/components/icon/icon.module.d.ts +0 -8
- package/components/icon/icon.service.d.ts +0 -13
- package/components/layer/classes/layer-injector.d.ts +0 -10
- package/components/layer/classes/layer-ref.d.ts +0 -21
- package/components/layer/interfaces/layer-config.d.ts +0 -4
- package/components/layer/interfaces/layer-di-params.d.ts +0 -6
- package/components/layer/interfaces/layer-ref.d.ts +0 -15
- package/components/layer/layer-animation.d.ts +0 -1
- package/components/layer/layer.component.d.ts +0 -19
- package/components/layer/layer.module.d.ts +0 -9
- package/components/layer/layer.service.d.ts +0 -19
- package/components/layer/tokens/layer-config.token.d.ts +0 -2
- package/components/layer/tokens/layer-data.token.d.ts +0 -2
- package/components/layer/tokens/layer-ref.token.d.ts +0 -2
- package/components/loader/loader.component.d.ts +0 -25
- package/components/loader/loader.d.ts +0 -16
- package/components/loader/loader.module.d.ts +0 -8
- package/components/loader/loader.service.d.ts +0 -18
- package/components/notification/notification-animation.d.ts +0 -1
- package/components/notification/notification-container.component.d.ts +0 -12
- package/components/notification/notification-footer.d.ts +0 -5
- package/components/notification/notification-message.d.ts +0 -5
- package/components/notification/notification-title.d.ts +0 -5
- package/components/notification/notification.component.d.ts +0 -9
- package/components/notification/notification.d.ts +0 -15
- package/components/notification/notification.module.d.ts +0 -15
- package/components/notification/notification.service.d.ts +0 -16
- package/components/pagination/pagination.component.d.ts +0 -46
- package/components/pagination/pagination.d.ts +0 -7
- package/components/pagination/pagination.module.d.ts +0 -13
- package/components/progress-bar/progress-bar.component.d.ts +0 -15
- package/components/progress-bar/progress-bar.module.d.ts +0 -8
- package/components/select/select-size.d.ts +0 -5
- package/components/select/select.component.d.ts +0 -8
- package/components/select/select.module.d.ts +0 -8
- package/components/stepper/step.component.d.ts +0 -20
- package/components/stepper/stepper.component.d.ts +0 -20
- package/components/stepper/stepper.module.d.ts +0 -10
- package/components/tabs/tab-selectors.d.ts +0 -2
- package/components/tabs/tab.component.d.ts +0 -16
- package/components/tabs/tabs.component.d.ts +0 -36
- package/components/tabs/tabs.module.d.ts +0 -9
- package/components/tag/tag.component.d.ts +0 -23
- package/components/tag/tag.module.d.ts +0 -9
- package/components/text-area/text-area.component.d.ts +0 -12
- package/components/text-area/text-area.module.d.ts +0 -7
- package/components/text-input/text-input.component.d.ts +0 -21
- package/components/text-input/text-input.module.d.ts +0 -10
- package/components/toggle/toggle.component.d.ts +0 -22
- package/components/toggle/toggle.module.d.ts +0 -8
- package/components/tooltip/tooltip.component.d.ts +0 -11
- package/components/tooltip/tooltip.module.d.ts +0 -8
- package/esm2020/common/global-events/global-events.module.mjs +0 -15
- package/esm2020/common/global-events/global-events.service.mjs +0 -30
- package/esm2020/common/global-events/public-api.mjs +0 -3
- package/esm2020/common/index.mjs +0 -3
- package/esm2020/common/utils/boolean-property.mjs +0 -4
- package/esm2020/common/utils/generate-id.mjs +0 -7
- package/esm2020/common/utils/get-random-number.mjs +0 -6
- package/esm2020/common/utils/index.mjs +0 -5
- package/esm2020/common/utils/overwrite-style.mjs +0 -5
- package/esm2020/common/utils/public-api.mjs +0 -2
- package/esm2020/components/badge/badge.component.mjs +0 -30
- package/esm2020/components/badge/badge.mjs +0 -2
- package/esm2020/components/badge/badge.module.mjs +0 -18
- package/esm2020/components/badge/index.mjs +0 -3
- package/esm2020/components/button/button.component.mjs +0 -53
- package/esm2020/components/button/button.mjs +0 -2
- package/esm2020/components/button/button.module.mjs +0 -18
- package/esm2020/components/button/index.mjs +0 -3
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -58
- package/esm2020/components/checkbox/checkbox.module.mjs +0 -21
- package/esm2020/components/checkbox/public-api.mjs +0 -3
- package/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
- package/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
- package/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
- package/esm2020/components/dialog/classes/index.mjs +0 -4
- package/esm2020/components/dialog/dialog-animation.mjs +0 -18
- package/esm2020/components/dialog/dialog.component.mjs +0 -57
- package/esm2020/components/dialog/dialog.module.mjs +0 -20
- package/esm2020/components/dialog/dialog.service.mjs +0 -67
- package/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
- package/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
- package/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
- package/esm2020/components/dialog/interfaces/index.mjs +0 -4
- package/esm2020/components/dialog/public-api.mjs +0 -6
- package/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
- package/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
- package/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
- package/esm2020/components/dialog/tokens/index.mjs +0 -4
- package/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
- package/esm2020/components/field/field-error.component.mjs +0 -13
- package/esm2020/components/field/field.component.mjs +0 -40
- package/esm2020/components/field/field.module.mjs +0 -20
- package/esm2020/components/field/public-api.mjs +0 -5
- package/esm2020/components/icon/icon-size.mjs +0 -8
- package/esm2020/components/icon/icon.component.mjs +0 -49
- package/esm2020/components/icon/icon.module.mjs +0 -18
- package/esm2020/components/icon/icon.service.mjs +0 -42
- package/esm2020/components/icon/public-api.mjs +0 -4
- package/esm2020/components/layer/classes/layer-injector.mjs +0 -22
- package/esm2020/components/layer/classes/layer-ref.mjs +0 -38
- package/esm2020/components/layer/interfaces/index.mjs +0 -4
- package/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
- package/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
- package/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
- package/esm2020/components/layer/layer-animation.mjs +0 -18
- package/esm2020/components/layer/layer.component.mjs +0 -40
- package/esm2020/components/layer/layer.module.mjs +0 -21
- package/esm2020/components/layer/layer.service.mjs +0 -56
- package/esm2020/components/layer/public-api.mjs +0 -6
- package/esm2020/components/layer/tokens/index.mjs +0 -4
- package/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
- package/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
- package/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
- package/esm2020/components/loader/loader.component.mjs +0 -47
- package/esm2020/components/loader/loader.mjs +0 -11
- package/esm2020/components/loader/loader.module.mjs +0 -20
- package/esm2020/components/loader/loader.service.mjs +0 -53
- package/esm2020/components/loader/public-api.mjs +0 -4
- package/esm2020/components/notification/notification-animation.mjs +0 -21
- package/esm2020/components/notification/notification-container.component.mjs +0 -38
- package/esm2020/components/notification/notification-footer.mjs +0 -11
- package/esm2020/components/notification/notification-message.mjs +0 -11
- package/esm2020/components/notification/notification-title.mjs +0 -11
- package/esm2020/components/notification/notification.component.mjs +0 -29
- package/esm2020/components/notification/notification.mjs +0 -8
- package/esm2020/components/notification/notification.module.mjs +0 -66
- package/esm2020/components/notification/notification.service.mjs +0 -40
- package/esm2020/components/notification/public-api.mjs +0 -9
- package/esm2020/components/pagination/pagination.component.mjs +0 -133
- package/esm2020/components/pagination/pagination.mjs +0 -4
- package/esm2020/components/pagination/pagination.module.mjs +0 -23
- package/esm2020/components/pagination/public-api.mjs +0 -3
- package/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
- package/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
- package/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
- package/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
- package/esm2020/components/progress-bar/public-api.mjs +0 -3
- package/esm2020/components/public-api.mjs +0 -20
- package/esm2020/components/select/public-api.mjs +0 -3
- package/esm2020/components/select/select-size.mjs +0 -6
- package/esm2020/components/select/select.component.mjs +0 -25
- package/esm2020/components/select/select.module.mjs +0 -18
- package/esm2020/components/stepper/public-api.mjs +0 -4
- package/esm2020/components/stepper/step-state.mjs +0 -2
- package/esm2020/components/stepper/step.component.mjs +0 -51
- package/esm2020/components/stepper/stepper.component.mjs +0 -79
- package/esm2020/components/stepper/stepper.module.mjs +0 -20
- package/esm2020/components/tabs/public-api.mjs +0 -4
- package/esm2020/components/tabs/tab-selectors.mjs +0 -3
- package/esm2020/components/tabs/tab.component.mjs +0 -53
- package/esm2020/components/tabs/tabs.component.mjs +0 -126
- package/esm2020/components/tabs/tabs.module.mjs +0 -19
- package/esm2020/components/tag/public-api.mjs +0 -3
- package/esm2020/components/tag/tag-type.mjs +0 -2
- package/esm2020/components/tag/tag.component.mjs +0 -61
- package/esm2020/components/tag/tag.module.mjs +0 -19
- package/esm2020/components/text-area/public-api.mjs +0 -3
- package/esm2020/components/text-area/text-area.component.mjs +0 -43
- package/esm2020/components/text-area/text-area.module.mjs +0 -16
- package/esm2020/components/text-input/public-api.mjs +0 -3
- package/esm2020/components/text-input/text-input.component.mjs +0 -64
- package/esm2020/components/text-input/text-input.mjs +0 -2
- package/esm2020/components/text-input/text-input.module.mjs +0 -20
- package/esm2020/components/toggle/public-api.mjs +0 -3
- package/esm2020/components/toggle/toggle-size.mjs +0 -2
- package/esm2020/components/toggle/toggle.component.mjs +0 -59
- package/esm2020/components/toggle/toggle.module.mjs +0 -18
- package/esm2020/components/tooltip/public-api.mjs +0 -3
- package/esm2020/components/tooltip/tooltip-position.mjs +0 -2
- package/esm2020/components/tooltip/tooltip.component.mjs +0 -32
- package/esm2020/components/tooltip/tooltip.module.mjs +0 -18
- package/esm2020/mozaic-ds-angular.mjs +0 -5
- package/esm2020/public-api.mjs +0 -3
- package/fesm2015/mozaic-ds-angular.mjs +0 -2052
- package/fesm2015/mozaic-ds-angular.mjs.map +0 -1
- package/fesm2020/mozaic-ds-angular.mjs +0 -2025
- package/fesm2020/mozaic-ds-angular.mjs.map +0 -1
- package/index.d.ts +0 -5
- /package/{assets → projects/kit/assets}/special-icons/checkbox-checked-disabled.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/checkbox-checked.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/checkbox-indeterminate-disabled.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/checkbox-indeterminate.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/invalid-cross.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/layer-cross.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-danger-m.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-danger-s.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-information-m.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-information-s.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-success-m.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-success-s.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-warning-m.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/notification-warning-s.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/remove-tag.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/toggle-checked-disabled.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/toggle-checked.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/toggle-cross-disabled.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/toggle-cross.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/tooltip-triangle.svg +0 -0
- /package/{assets → projects/kit/assets}/special-icons/valid-check-mark.svg +0 -0
- /package/{common/global-events/public-api.d.ts → projects/kit/common/global-events/public-api.ts} +0 -0
- /package/{common/index.d.ts → projects/kit/common/index.ts} +0 -0
- /package/{common/utils/index.d.ts → projects/kit/common/utils/index.ts} +0 -0
- /package/{common/utils/public-api.d.ts → projects/kit/common/utils/public-api.ts} +0 -0
- /package/{components/badge/index.d.ts → projects/kit/components/badge/index.ts} +0 -0
- /package/{components/button/index.d.ts → projects/kit/components/button/index.ts} +0 -0
- /package/{components/checkbox/public-api.d.ts → projects/kit/components/checkbox/public-api.ts} +0 -0
- /package/{components/dialog/classes/index.d.ts → projects/kit/components/dialog/classes/index.ts} +0 -0
- /package/{components/dialog/interfaces/index.d.ts → projects/kit/components/dialog/interfaces/index.ts} +0 -0
- /package/{components/dialog/public-api.d.ts → projects/kit/components/dialog/public-api.ts} +0 -0
- /package/{components/dialog/tokens/index.d.ts → projects/kit/components/dialog/tokens/index.ts} +0 -0
- /package/{components/field/public-api.d.ts → projects/kit/components/field/public-api.ts} +0 -0
- /package/{components/icon/public-api.d.ts → projects/kit/components/icon/public-api.ts} +0 -0
- /package/{components/layer/interfaces/index.d.ts → projects/kit/components/layer/interfaces/index.ts} +0 -0
- /package/{components/layer/public-api.d.ts → projects/kit/components/layer/public-api.ts} +0 -0
- /package/{components/layer/tokens/index.d.ts → projects/kit/components/layer/tokens/index.ts} +0 -0
- /package/{components/loader/public-api.d.ts → projects/kit/components/loader/public-api.ts} +0 -0
- /package/{components/notification/public-api.d.ts → projects/kit/components/notification/public-api.ts} +0 -0
- /package/{components/pagination/public-api.d.ts → projects/kit/components/pagination/public-api.ts} +0 -0
- /package/{components/progress-bar/progress-bar-size.d.ts → projects/kit/components/progress-bar/progress-bar-size.ts} +0 -0
- /package/{components/progress-bar/progress-bar-theme.d.ts → projects/kit/components/progress-bar/progress-bar-theme.ts} +0 -0
- /package/{components/progress-bar/public-api.d.ts → projects/kit/components/progress-bar/public-api.ts} +0 -0
- /package/{components/public-api.d.ts → projects/kit/components/public-api.ts} +0 -0
- /package/{components/select/public-api.d.ts → projects/kit/components/select/public-api.ts} +0 -0
- /package/{components/stepper/public-api.d.ts → projects/kit/components/stepper/public-api.ts} +0 -0
- /package/{components/stepper/step-state.d.ts → projects/kit/components/stepper/step-state.ts} +0 -0
- /package/{components/tabs/public-api.d.ts → projects/kit/components/tabs/public-api.ts} +0 -0
- /package/{components/tag/public-api.d.ts → projects/kit/components/tag/public-api.ts} +0 -0
- /package/{components/tag/tag-type.d.ts → projects/kit/components/tag/tag-type.ts} +0 -0
- /package/{components/text-area/public-api.d.ts → projects/kit/components/text-area/public-api.ts} +0 -0
- /package/{components/text-input/public-api.d.ts → projects/kit/components/text-input/index.ts} +0 -0
- /package/{components/text-input/text-input.d.ts → projects/kit/components/text-input/text-input.ts} +0 -0
- /package/{components/toggle/public-api.d.ts → projects/kit/components/toggle/public-api.ts} +0 -0
- /package/{components/toggle/toggle-size.d.ts → projects/kit/components/toggle/toggle-size.ts} +0 -0
- /package/{components/tooltip/public-api.d.ts → projects/kit/components/tooltip/public-api.ts} +0 -0
- /package/{components/tooltip/tooltip-position.d.ts → projects/kit/components/tooltip/tooltip-position.ts} +0 -0
- /package/{public-api.d.ts → projects/kit/public-api.ts} +0 -0
|
@@ -0,0 +1,626 @@
|
|
|
1
|
+
$color-badge-info-background: var(--color-badge-info-background, #daeff7);
|
|
2
|
+
$color-badge-info-border: var(--color-badge-info-border, #0b96cc);
|
|
3
|
+
$color-badge-info-text: var(--color-badge-info-text, #005c91);
|
|
4
|
+
$color-badge-success-background: var(--color-badge-success-background, #ebf5de);
|
|
5
|
+
$color-badge-success-border: var(--color-badge-success-border, #46a610);
|
|
6
|
+
$color-badge-success-text: var(--color-badge-success-text, #006902);
|
|
7
|
+
$color-badge-warning-background: var(--color-badge-warning-background, #fdf1e8);
|
|
8
|
+
$color-badge-warning-border: var(--color-badge-warning-border, #ea7315);
|
|
9
|
+
$color-badge-warning-text: var(--color-badge-warning-text, #8c3500);
|
|
10
|
+
$color-badge-danger-background: var(--color-badge-danger-background, #fdeaea);
|
|
11
|
+
$color-badge-danger-border: var(--color-badge-danger-border, #ea302d);
|
|
12
|
+
$color-badge-danger-text: var(--color-badge-danger-text, #8c0003);
|
|
13
|
+
$color-badge-neutral-background: var(--color-badge-neutral-background, #e6e6e6);
|
|
14
|
+
$color-badge-neutral-border: var(--color-badge-neutral-border, #808080);
|
|
15
|
+
$color-badge-neutral-text: var(--color-badge-neutral-text, #4d4d4d);
|
|
16
|
+
$color-primary-01-100: var(--color-primary-01-100, #d9f0f3);
|
|
17
|
+
$color-primary-01-200: var(--color-primary-01-200, #91d5db);
|
|
18
|
+
$color-primary-01-300: var(--color-primary-01-300, #48bac4);
|
|
19
|
+
$color-primary-01-400: var(--color-primary-01-400, #009eac);
|
|
20
|
+
$color-primary-01-500: var(--color-primary-01-500, #00919f);
|
|
21
|
+
$color-primary-01-600: var(--color-primary-01-600, #007f8c);
|
|
22
|
+
$color-primary-01-700: var(--color-primary-01-700, #006974);
|
|
23
|
+
$color-primary-01-800: var(--color-primary-01-800, #004e57);
|
|
24
|
+
$color-primary-01-900: var(--color-primary-01-900, #002e33);
|
|
25
|
+
$color-primary-02-100: var(--color-primary-02-100, #eeeff1);
|
|
26
|
+
$color-primary-02-200: var(--color-primary-02-200, #cfd2d8);
|
|
27
|
+
$color-primary-02-300: var(--color-primary-02-300, #b3b7c1);
|
|
28
|
+
$color-primary-02-400: var(--color-primary-02-400, #8f94a3);
|
|
29
|
+
$color-primary-02-500: var(--color-primary-02-500, #6a7081);
|
|
30
|
+
$color-primary-02-600: var(--color-primary-02-600, #494f60);
|
|
31
|
+
$color-primary-02-700: var(--color-primary-02-700, #343b4c);
|
|
32
|
+
$color-primary-02-800: var(--color-primary-02-800, #242938);
|
|
33
|
+
$color-primary-02-900: var(--color-primary-02-900, #171b26);
|
|
34
|
+
$color-grey-100: var(--color-grey-100, #e6e6e6);
|
|
35
|
+
$color-grey-200: var(--color-grey-200, #cccccc);
|
|
36
|
+
$color-grey-300: var(--color-grey-300, #b3b3b3);
|
|
37
|
+
$color-grey-400: var(--color-grey-400, #999999);
|
|
38
|
+
$color-grey-500: var(--color-grey-500, #808080);
|
|
39
|
+
$color-grey-600: var(--color-grey-600, #666666);
|
|
40
|
+
$color-grey-700: var(--color-grey-700, #4d4d4d);
|
|
41
|
+
$color-grey-800: var(--color-grey-800, #333333);
|
|
42
|
+
$color-grey-900: var(--color-grey-900, #191919);
|
|
43
|
+
$color-grey-999: var(--color-grey-999, #000000);
|
|
44
|
+
$color-grey-000: var(--color-grey-000, #ffffff);
|
|
45
|
+
$color-secondary-blue-100: var(--color-secondary-blue-100, #eaedef);
|
|
46
|
+
$color-secondary-blue-200: var(--color-secondary-blue-200, #cdd4d8);
|
|
47
|
+
$color-secondary-blue-300: var(--color-secondary-blue-300, #b0bbc0);
|
|
48
|
+
$color-secondary-blue-400: var(--color-secondary-blue-400, #92a2a9);
|
|
49
|
+
$color-secondary-blue-500: var(--color-secondary-blue-500, #758992);
|
|
50
|
+
$color-secondary-blue-600: var(--color-secondary-blue-600, #5b737d);
|
|
51
|
+
$color-secondary-blue-700: var(--color-secondary-blue-700, #405d68);
|
|
52
|
+
$color-secondary-blue-800: var(--color-secondary-blue-800, #264653);
|
|
53
|
+
$color-secondary-blue-900: var(--color-secondary-blue-900, #082435);
|
|
54
|
+
$color-secondary-green-100: var(--color-secondary-green-100, #d9f0f3);
|
|
55
|
+
$color-secondary-green-200: var(--color-secondary-green-200, #91d5db);
|
|
56
|
+
$color-secondary-green-300: var(--color-secondary-green-300, #48bac4);
|
|
57
|
+
$color-secondary-green-400: var(--color-secondary-green-400, #009eac);
|
|
58
|
+
$color-secondary-green-500: var(--color-secondary-green-500, #00919f);
|
|
59
|
+
$color-secondary-green-600: var(--color-secondary-green-600, #007f8c);
|
|
60
|
+
$color-secondary-green-700: var(--color-secondary-green-700, #006974);
|
|
61
|
+
$color-secondary-green-800: var(--color-secondary-green-800, #004e57);
|
|
62
|
+
$color-secondary-green-900: var(--color-secondary-green-900, #002e33);
|
|
63
|
+
$color-secondary-purple-100: var(--color-secondary-purple-100, #e7e7f0);
|
|
64
|
+
$color-secondary-purple-200: var(--color-secondary-purple-200, #c5c5dc);
|
|
65
|
+
$color-secondary-purple-300: var(--color-secondary-purple-300, #a4a3c7);
|
|
66
|
+
$color-secondary-purple-400: var(--color-secondary-purple-400, #8281b2);
|
|
67
|
+
$color-secondary-purple-500: var(--color-secondary-purple-500, #605f9d);
|
|
68
|
+
$color-secondary-purple-600: var(--color-secondary-purple-600, #4b4a8c);
|
|
69
|
+
$color-secondary-purple-700: var(--color-secondary-purple-700, #393879);
|
|
70
|
+
$color-secondary-purple-800: var(--color-secondary-purple-800, #282863);
|
|
71
|
+
$color-secondary-purple-900: var(--color-secondary-purple-900, #1a1a4b);
|
|
72
|
+
$color-secondary-red-100: var(--color-secondary-red-100, #fdeaea);
|
|
73
|
+
$color-secondary-red-200: var(--color-secondary-red-200, #f8bcbb);
|
|
74
|
+
$color-secondary-red-300: var(--color-secondary-red-300, #f38d8c);
|
|
75
|
+
$color-secondary-red-400: var(--color-secondary-red-400, #ef5f5c);
|
|
76
|
+
$color-secondary-red-500: var(--color-secondary-red-500, #ea302d);
|
|
77
|
+
$color-secondary-red-600: var(--color-secondary-red-600, #c61112);
|
|
78
|
+
$color-secondary-red-700: var(--color-secondary-red-700, #8c0003);
|
|
79
|
+
$color-secondary-red-800: var(--color-secondary-red-800, #530000);
|
|
80
|
+
$color-secondary-red-900: var(--color-secondary-red-900, #2d0000);
|
|
81
|
+
$color-secondary-orange-100: var(--color-secondary-orange-100, #fdf1e8);
|
|
82
|
+
$color-secondary-orange-200: var(--color-secondary-orange-200, #f8d2b3);
|
|
83
|
+
$color-secondary-orange-300: var(--color-secondary-orange-300, #f4b27e);
|
|
84
|
+
$color-secondary-orange-400: var(--color-secondary-orange-400, #ef934a);
|
|
85
|
+
$color-secondary-orange-500: var(--color-secondary-orange-500, #ea7315);
|
|
86
|
+
$color-secondary-orange-600: var(--color-secondary-orange-600, #c65200);
|
|
87
|
+
$color-secondary-orange-700: var(--color-secondary-orange-700, #8c3500);
|
|
88
|
+
$color-secondary-orange-800: var(--color-secondary-orange-800, #531b00);
|
|
89
|
+
$color-secondary-orange-900: var(--color-secondary-orange-900, #360e00);
|
|
90
|
+
$color-secondary-yellow-100: var(--color-secondary-yellow-100, #fff8e2);
|
|
91
|
+
$color-secondary-yellow-200: var(--color-secondary-yellow-200, #ffebaf);
|
|
92
|
+
$color-secondary-yellow-300: var(--color-secondary-yellow-300, #fee07d);
|
|
93
|
+
$color-secondary-yellow-400: var(--color-secondary-yellow-400, #fcd64c);
|
|
94
|
+
$color-secondary-yellow-500: var(--color-secondary-yellow-500, #f8cc1c);
|
|
95
|
+
$color-secondary-yellow-600: var(--color-secondary-yellow-600, #c9a21b);
|
|
96
|
+
$color-secondary-yellow-700: var(--color-secondary-yellow-700, #9c7b18);
|
|
97
|
+
$color-secondary-yellow-800: var(--color-secondary-yellow-800, #705613);
|
|
98
|
+
$color-secondary-yellow-900: var(--color-secondary-yellow-900, #46350d);
|
|
99
|
+
$color-danger-100: var(--color-danger-100, #fdeaea);
|
|
100
|
+
$color-danger-200: var(--color-danger-200, #f8bcbb);
|
|
101
|
+
$color-danger-300: var(--color-danger-300, #f38d8c);
|
|
102
|
+
$color-danger-400: var(--color-danger-400, #ef5f5c);
|
|
103
|
+
$color-danger-500: var(--color-danger-500, #ea302d);
|
|
104
|
+
$color-danger-600: var(--color-danger-600, #c61112);
|
|
105
|
+
$color-danger-700: var(--color-danger-700, #8c0003);
|
|
106
|
+
$color-danger-800: var(--color-danger-800, #530000);
|
|
107
|
+
$color-danger-900: var(--color-danger-900, #2d0000);
|
|
108
|
+
$color-info-100: var(--color-info-100, #daeff7);
|
|
109
|
+
$color-info-200: var(--color-info-200, #a7d9ed);
|
|
110
|
+
$color-info-300: var(--color-info-300, #73c3e2);
|
|
111
|
+
$color-info-400: var(--color-info-400, #3facd7);
|
|
112
|
+
$color-info-500: var(--color-info-500, #0b96cc);
|
|
113
|
+
$color-info-600: var(--color-info-600, #007bb4);
|
|
114
|
+
$color-info-700: var(--color-info-700, #005c91);
|
|
115
|
+
$color-info-800: var(--color-info-800, #003a5c);
|
|
116
|
+
$color-info-900: var(--color-info-900, #002a41);
|
|
117
|
+
$color-warning-100: var(--color-warning-100, #fdf1e8);
|
|
118
|
+
$color-warning-200: var(--color-warning-200, #f8d2b3);
|
|
119
|
+
$color-warning-300: var(--color-warning-300, #f4b27e);
|
|
120
|
+
$color-warning-400: var(--color-warning-400, #ef934a);
|
|
121
|
+
$color-warning-500: var(--color-warning-500, #ea7315);
|
|
122
|
+
$color-warning-600: var(--color-warning-600, #c65200);
|
|
123
|
+
$color-warning-700: var(--color-warning-700, #8c3500);
|
|
124
|
+
$color-warning-800: var(--color-warning-800, #531b00);
|
|
125
|
+
$color-warning-900: var(--color-warning-900, #360e00);
|
|
126
|
+
$color-success-100: var(--color-success-100, #ebf5de);
|
|
127
|
+
$color-success-200: var(--color-success-200, #c5e39e);
|
|
128
|
+
$color-success-300: var(--color-success-300, #9ed05f);
|
|
129
|
+
$color-success-400: var(--color-success-400, #78be20);
|
|
130
|
+
$color-success-500: var(--color-success-500, #46a610);
|
|
131
|
+
$color-success-600: var(--color-success-600, #188803);
|
|
132
|
+
$color-success-700: var(--color-success-700, #006902);
|
|
133
|
+
$color-success-800: var(--color-success-800, #035010);
|
|
134
|
+
$color-success-900: var(--color-success-900, #023618);
|
|
135
|
+
$color-breadcrumb-arrow: var(--color-breadcrumb-arrow, #333333);
|
|
136
|
+
$color-breadcrumb-arrow-invert: var(--color-breadcrumb-arrow-invert, #ffffff);
|
|
137
|
+
$color-button-solid-background: var(--color-button-solid-background, #007f8c);
|
|
138
|
+
$color-button-solid-font: var(--color-button-solid-font, #ffffff);
|
|
139
|
+
$color-button-solid-focus-border: var(--color-button-solid-focus-border, #006974);
|
|
140
|
+
$color-button-solid-disabled-background: var(--color-button-solid-disabled-background, #cccccc);
|
|
141
|
+
$color-button-solid-disabled-font: var(--color-button-solid-disabled-font, #666666);
|
|
142
|
+
$color-button-solid-active-background: var(--color-button-solid-active-background, #006974);
|
|
143
|
+
$color-button-solid-hover-background: var(--color-button-solid-hover-background, #006974);
|
|
144
|
+
$color-button-solid-hover-font: var(--color-button-solid-hover-font, #ffffff);
|
|
145
|
+
$color-button-solid-primary-02-background: var(--color-button-solid-primary-02-background, #6a7081);
|
|
146
|
+
$color-button-solid-primary-02-font: var(--color-button-solid-primary-02-font, #ffffff);
|
|
147
|
+
$color-button-solid-primary-02-focus-border: var(
|
|
148
|
+
--color-button-solid-primary-02-focus-border,
|
|
149
|
+
#171b26
|
|
150
|
+
);
|
|
151
|
+
$color-button-solid-primary-02-disabled-background: var(
|
|
152
|
+
--color-button-solid-primary-02-disabled-background,
|
|
153
|
+
#cccccc
|
|
154
|
+
);
|
|
155
|
+
$color-button-solid-primary-02-disabled-font: var(
|
|
156
|
+
--color-button-solid-primary-02-disabled-font,
|
|
157
|
+
#666666
|
|
158
|
+
);
|
|
159
|
+
$color-button-solid-primary-02-active-background: var(
|
|
160
|
+
--color-button-solid-primary-02-active-background,
|
|
161
|
+
#171b26
|
|
162
|
+
);
|
|
163
|
+
$color-button-solid-primary-02-hover-background: var(
|
|
164
|
+
--color-button-solid-primary-02-hover-background,
|
|
165
|
+
#242938
|
|
166
|
+
);
|
|
167
|
+
$color-button-solid-primary-02-hover-font: var(--color-button-solid-primary-02-hover-font, #ffffff);
|
|
168
|
+
$color-button-solid-neutral-background: var(--color-button-solid-neutral-background, #333333);
|
|
169
|
+
$color-button-solid-neutral-font: var(--color-button-solid-neutral-font, #ffffff);
|
|
170
|
+
$color-button-solid-neutral-focus-border: var(--color-button-solid-neutral-focus-border, #191919);
|
|
171
|
+
$color-button-solid-neutral-disabled-background: var(
|
|
172
|
+
--color-button-solid-neutral-disabled-background,
|
|
173
|
+
#cccccc
|
|
174
|
+
);
|
|
175
|
+
$color-button-solid-neutral-disabled-font: var(--color-button-solid-neutral-disabled-font, #666666);
|
|
176
|
+
$color-button-solid-neutral-active-background: var(
|
|
177
|
+
--color-button-solid-neutral-active-background,
|
|
178
|
+
#333333
|
|
179
|
+
);
|
|
180
|
+
$color-button-solid-neutral-hover-background: var(
|
|
181
|
+
--color-button-solid-neutral-hover-background,
|
|
182
|
+
#191919
|
|
183
|
+
);
|
|
184
|
+
$color-button-solid-neutral-hover-font: var(--color-button-solid-neutral-hover-font, #ffffff);
|
|
185
|
+
$color-button-solid-danger-background: var(--color-button-solid-danger-background, #c61112);
|
|
186
|
+
$color-button-solid-danger-font: var(--color-button-solid-danger-font, #ffffff);
|
|
187
|
+
$color-button-solid-danger-focus-border: var(--color-button-solid-danger-focus-border, #8c0003);
|
|
188
|
+
$color-button-solid-danger-disabled-background: var(
|
|
189
|
+
--color-button-solid-danger-disabled-background,
|
|
190
|
+
#cccccc
|
|
191
|
+
);
|
|
192
|
+
$color-button-solid-danger-disabled-font: var(--color-button-solid-danger-disabled-font, #666666);
|
|
193
|
+
$color-button-solid-danger-active-background: var(
|
|
194
|
+
--color-button-solid-danger-active-background,
|
|
195
|
+
#8c0003
|
|
196
|
+
);
|
|
197
|
+
$color-button-solid-danger-hover-background: var(
|
|
198
|
+
--color-button-solid-danger-hover-background,
|
|
199
|
+
#8c0003
|
|
200
|
+
);
|
|
201
|
+
$color-button-solid-danger-hover-font: var(--color-button-solid-danger-hover-font, #ffffff);
|
|
202
|
+
$color-button-bordered-background: var(--color-button-bordered-background, #ffffff);
|
|
203
|
+
$color-button-bordered-border: var(--color-button-bordered-border, #007f8c);
|
|
204
|
+
$color-button-bordered-font: var(--color-button-bordered-font, #007f8c);
|
|
205
|
+
$color-button-bordered-focus-border: var(--color-button-bordered-focus-border, #006974);
|
|
206
|
+
$color-button-bordered-disabled-background: var(
|
|
207
|
+
--color-button-bordered-disabled-background,
|
|
208
|
+
#cccccc
|
|
209
|
+
);
|
|
210
|
+
$color-button-bordered-disabled-font: var(--color-button-bordered-disabled-font, #666666);
|
|
211
|
+
$color-button-bordered-active-background: var(--color-button-bordered-active-background, #91d5db);
|
|
212
|
+
$color-button-bordered-active-font: var(--color-button-bordered-active-font, #004e57);
|
|
213
|
+
$color-button-bordered-hover-background: var(--color-button-bordered-hover-background, #d9f0f3);
|
|
214
|
+
$color-button-bordered-hover-font: var(--color-button-bordered-hover-font, #006974);
|
|
215
|
+
$color-button-bordered-primary-02-background: var(
|
|
216
|
+
--color-button-bordered-primary-02-background,
|
|
217
|
+
#ffffff
|
|
218
|
+
);
|
|
219
|
+
$color-button-bordered-primary-02-border: var(--color-button-bordered-primary-02-border, #6a7081);
|
|
220
|
+
$color-button-bordered-primary-02-font: var(--color-button-bordered-primary-02-font, #6a7081);
|
|
221
|
+
$color-button-bordered-primary-02-focus-border: var(
|
|
222
|
+
--color-button-bordered-primary-02-focus-border,
|
|
223
|
+
#171b26
|
|
224
|
+
);
|
|
225
|
+
$color-button-bordered-primary-02-disabled-background: var(
|
|
226
|
+
--color-button-bordered-primary-02-disabled-background,
|
|
227
|
+
#cccccc
|
|
228
|
+
);
|
|
229
|
+
$color-button-bordered-primary-02-disabled-font: var(
|
|
230
|
+
--color-button-bordered-primary-02-disabled-font,
|
|
231
|
+
#666666
|
|
232
|
+
);
|
|
233
|
+
$color-button-bordered-primary-02-active-background: var(
|
|
234
|
+
--color-button-bordered-primary-02-active-background,
|
|
235
|
+
#cfd2d8
|
|
236
|
+
);
|
|
237
|
+
$color-button-bordered-primary-02-hover-background: var(
|
|
238
|
+
--color-button-bordered-primary-02-hover-background,
|
|
239
|
+
#eeeff1
|
|
240
|
+
);
|
|
241
|
+
$color-button-bordered-neutral-background: var(--color-button-bordered-neutral-background, #ffffff);
|
|
242
|
+
$color-button-bordered-neutral-border: var(--color-button-bordered-neutral-border, #333333);
|
|
243
|
+
$color-button-bordered-neutral-font: var(--color-button-bordered-neutral-font, #333333);
|
|
244
|
+
$color-button-bordered-neutral-focus-border: var(
|
|
245
|
+
--color-button-bordered-neutral-focus-border,
|
|
246
|
+
#191919
|
|
247
|
+
);
|
|
248
|
+
$color-button-bordered-neutral-disabled-background: var(
|
|
249
|
+
--color-button-bordered-neutral-disabled-background,
|
|
250
|
+
#cccccc
|
|
251
|
+
);
|
|
252
|
+
$color-button-bordered-neutral-disabled-font: var(
|
|
253
|
+
--color-button-bordered-neutral-disabled-font,
|
|
254
|
+
#666666
|
|
255
|
+
);
|
|
256
|
+
$color-button-bordered-neutral-active-background: var(
|
|
257
|
+
--color-button-bordered-neutral-active-background,
|
|
258
|
+
#cccccc
|
|
259
|
+
);
|
|
260
|
+
$color-button-bordered-neutral-hover-background: var(
|
|
261
|
+
--color-button-bordered-neutral-hover-background,
|
|
262
|
+
#e6e6e6
|
|
263
|
+
);
|
|
264
|
+
$color-button-bordered-danger-background: var(--color-button-bordered-danger-background, #ffffff);
|
|
265
|
+
$color-button-bordered-danger-border: var(--color-button-bordered-danger-border, #c61112);
|
|
266
|
+
$color-button-bordered-danger-font: var(--color-button-bordered-danger-font, #c61112);
|
|
267
|
+
$color-button-bordered-danger-focus-border: var(
|
|
268
|
+
--color-button-bordered-danger-focus-border,
|
|
269
|
+
#8c0003
|
|
270
|
+
);
|
|
271
|
+
$color-button-bordered-danger-disabled-background: var(
|
|
272
|
+
--color-button-bordered-danger-disabled-background,
|
|
273
|
+
#cccccc
|
|
274
|
+
);
|
|
275
|
+
$color-button-bordered-danger-disabled-font: var(
|
|
276
|
+
--color-button-bordered-danger-disabled-font,
|
|
277
|
+
#666666
|
|
278
|
+
);
|
|
279
|
+
$color-button-bordered-danger-active-background: var(
|
|
280
|
+
--color-button-bordered-danger-active-background,
|
|
281
|
+
#f8bcbb
|
|
282
|
+
);
|
|
283
|
+
$color-button-bordered-danger-active-font: var(--color-button-bordered-danger-active-font, #530000);
|
|
284
|
+
$color-button-bordered-danger-hover-background: var(
|
|
285
|
+
--color-button-bordered-danger-hover-background,
|
|
286
|
+
#fdeaea
|
|
287
|
+
);
|
|
288
|
+
$color-button-bordered-danger-hover-font: var(--color-button-bordered-danger-hover-font, #8c0003);
|
|
289
|
+
$color-card-bordered-background: var(--color-card-bordered-background, #ffffff);
|
|
290
|
+
$color-card-bordered-border: var(--color-card-bordered-border, #808080);
|
|
291
|
+
$color-datatable-filters-border: var(--color-datatable-filters-border, #b0bbc0);
|
|
292
|
+
$color-datatable-container-background: var(--color-datatable-container-background, #e7e7f0);
|
|
293
|
+
$color-datatable-thead-font: var(--color-datatable-thead-font, #393879);
|
|
294
|
+
$color-datatable-sort-arrow-default: var(--color-datatable-sort-arrow-default, #cdd4d8);
|
|
295
|
+
$color-datatable-sort-arrow-active: var(--color-datatable-sort-arrow-active, #605f9d);
|
|
296
|
+
$color-datatable-cell-font: var(--color-datatable-cell-font, #191919);
|
|
297
|
+
$color-datatable-cell-background-hover: var(--color-datatable-cell-background-hover, #eaedef);
|
|
298
|
+
$color-datatable-cell-background-selected: var(--color-datatable-cell-background-selected, #d9f0f3);
|
|
299
|
+
$color-datatable-subtable-background: var(--color-datatable-subtable-background, #e7e7f0);
|
|
300
|
+
$color-datatable-subtable-border: var(--color-datatable-subtable-border, #a4a3c7);
|
|
301
|
+
$color-datatable-subtable-font: var(--color-datatable-subtable-font, #1a1a4b);
|
|
302
|
+
$color-datatable-icon: var(--color-datatable-icon, #007f8c);
|
|
303
|
+
$color-datatable-empty-background: var(--color-datatable-empty-background, #e7e7f0);
|
|
304
|
+
$color-datatable-empty-color: var(--color-datatable-empty-color, #4b4a8c);
|
|
305
|
+
$color-dialog-background: var(--color-dialog-background, #ffffff);
|
|
306
|
+
$color-dialog-icon: var(--color-dialog-icon, #666666);
|
|
307
|
+
$color-dialog-close: var(--color-dialog-close, #808080);
|
|
308
|
+
$color-dialog-footer-shadow: var(--color-dialog-footer-shadow, #191919);
|
|
309
|
+
$color-divider-lightest: var(--color-divider-lightest, #ffffff);
|
|
310
|
+
$color-divider-light: var(--color-divider-light, #b3b3b3);
|
|
311
|
+
$color-divider-default: var(--color-divider-default, #666666);
|
|
312
|
+
$color-divider-dark: var(--color-divider-dark, #000000);
|
|
313
|
+
$color-fields-error: var(--color-fields-error, #c61112);
|
|
314
|
+
$color-fields-label: var(--color-fields-label, #333333);
|
|
315
|
+
$color-fields-requirement: var(--color-fields-requirement, #666666);
|
|
316
|
+
$color-fields-help: var(--color-fields-help, #666666);
|
|
317
|
+
$color-fileuploader-font: var(--color-fileuploader-font, #000000);
|
|
318
|
+
$color-fileuploader-files-list: var(--color-fileuploader-files-list, #e6e6e6);
|
|
319
|
+
$color-fileuploader-files-delete: var(--color-fileuploader-files-delete, #cccccc);
|
|
320
|
+
$color-fileuploader-valid: var(--color-fileuploader-valid, #00919f);
|
|
321
|
+
$color-fileuploader-alert: var(--color-fileuploader-alert, #c61112);
|
|
322
|
+
$color-flag-solid-background: var(--color-flag-solid-background, #007f8c);
|
|
323
|
+
$color-flag-solid-border: var(--color-flag-solid-border, #007f8c);
|
|
324
|
+
$color-flag-solid-text: var(--color-flag-solid-text, #ffffff);
|
|
325
|
+
$color-flag-solid-primary-02-background: var(--color-flag-solid-primary-02-background, #4b4a8c);
|
|
326
|
+
$color-flag-solid-primary-02-border: var(--color-flag-solid-primary-02-border, #4b4a8c);
|
|
327
|
+
$color-flag-solid-primary-02-text: var(--color-flag-solid-primary-02-text, #ffffff);
|
|
328
|
+
$color-flag-solid-dark-background: var(--color-flag-solid-dark-background, #000000);
|
|
329
|
+
$color-flag-solid-dark-border: var(--color-flag-solid-dark-border, #000000);
|
|
330
|
+
$color-flag-solid-dark-text: var(--color-flag-solid-dark-text, #ffffff);
|
|
331
|
+
$color-flag-solid-light-background: var(--color-flag-solid-light-background, #ffffff);
|
|
332
|
+
$color-flag-solid-light-border: var(--color-flag-solid-light-border, #ffffff);
|
|
333
|
+
$color-flag-solid-light-text: var(--color-flag-solid-light-text, #000000);
|
|
334
|
+
$color-flag-solid-danger-background: var(--color-flag-solid-danger-background, #c61112);
|
|
335
|
+
$color-flag-solid-danger-border: var(--color-flag-solid-danger-border, #c61112);
|
|
336
|
+
$color-flag-solid-danger-text: var(--color-flag-solid-danger-text, #ffffff);
|
|
337
|
+
$color-flag-bordered-background: var(--color-flag-bordered-background, #ffffff);
|
|
338
|
+
$color-flag-bordered-border: var(--color-flag-bordered-border, #007f8c);
|
|
339
|
+
$color-flag-bordered-text: var(--color-flag-bordered-text, #007f8c);
|
|
340
|
+
$color-flag-bordered-primary-02-background: var(
|
|
341
|
+
--color-flag-bordered-primary-02-background,
|
|
342
|
+
#ffffff
|
|
343
|
+
);
|
|
344
|
+
$color-flag-bordered-primary-02-border: var(--color-flag-bordered-primary-02-border, #4b4a8c);
|
|
345
|
+
$color-flag-bordered-primary-02-text: var(--color-flag-bordered-primary-02-text, #4b4a8c);
|
|
346
|
+
$color-flag-bordered-dark-background: var(--color-flag-bordered-dark-background, #ffffff);
|
|
347
|
+
$color-flag-bordered-dark-border: var(--color-flag-bordered-dark-border, #000000);
|
|
348
|
+
$color-flag-bordered-dark-text: var(--color-flag-bordered-dark-text, #000000);
|
|
349
|
+
$color-flag-bordered-light-background: var(--color-flag-bordered-light-background, #000000);
|
|
350
|
+
$color-flag-bordered-light-border: var(--color-flag-bordered-light-border, #ffffff);
|
|
351
|
+
$color-flag-bordered-light-text: var(--color-flag-bordered-light-text, #ffffff);
|
|
352
|
+
$color-flag-bordered-danger-background: var(--color-flag-bordered-danger-background, #ffffff);
|
|
353
|
+
$color-flag-bordered-danger-border: var(--color-flag-bordered-danger-border, #c61112);
|
|
354
|
+
$color-flag-bordered-danger-text: var(--color-flag-bordered-danger-text, #c61112);
|
|
355
|
+
$color-focus-gap: var(--color-focus-gap, #ffffff);
|
|
356
|
+
$color-focus-border: var(--color-focus-border, #758992);
|
|
357
|
+
$color-font-primary-01: var(--color-font-primary-01, #007f8c);
|
|
358
|
+
$color-font-primary-02: var(--color-font-primary-02, #6a7081);
|
|
359
|
+
$color-font-darkest: var(--color-font-darkest, #000000);
|
|
360
|
+
$color-font-darker: var(--color-font-darker, #191919);
|
|
361
|
+
$color-font-dark: var(--color-font-dark, #333333);
|
|
362
|
+
$color-font-light: var(--color-font-light, #666666);
|
|
363
|
+
$color-font-lightest: var(--color-font-lightest, #ffffff);
|
|
364
|
+
$color-font-info: var(--color-font-info, #007bb4);
|
|
365
|
+
$color-font-success: var(--color-font-success, #188803);
|
|
366
|
+
$color-font-warning: var(--color-font-warning, #c65200);
|
|
367
|
+
$color-font-danger: var(--color-font-danger, #c61112);
|
|
368
|
+
$color-heading-underline-default: var(--color-heading-underline-default, #00919f);
|
|
369
|
+
$color-heading-underline-lightest: var(--color-heading-underline-lightest, #91d5db);
|
|
370
|
+
$color-hero-cover-background: var(--color-hero-cover-background, #191919);
|
|
371
|
+
$color-input-text: var(--color-input-text, #191919);
|
|
372
|
+
$color-input-border: var(--color-input-border, #666666);
|
|
373
|
+
$color-input-placeholder: var(--color-input-placeholder, #666666);
|
|
374
|
+
$color-input-background: var(--color-input-background, #ffffff);
|
|
375
|
+
$color-input-disabled-background: var(--color-input-disabled-background, #e6e6e6);
|
|
376
|
+
$color-input-disabled-border: var(--color-input-disabled-border, #e6e6e6);
|
|
377
|
+
$color-input-disabled-icon: var(--color-input-disabled-icon, #999999);
|
|
378
|
+
$color-input-disabled-label: var(--color-input-disabled-label, #808080);
|
|
379
|
+
$color-input-hover-border: var(--color-input-hover-border, #191919);
|
|
380
|
+
$color-input-focus-border: var(--color-input-focus-border, #758992);
|
|
381
|
+
$color-input-valid-border: var(--color-input-valid-border, #46a610);
|
|
382
|
+
$color-input-valid-hover-border: var(--color-input-valid-hover-border, #035010);
|
|
383
|
+
$color-input-invalid-border: var(--color-input-invalid-border, #c61112);
|
|
384
|
+
$color-input-invalid-hover-border: var(--color-input-invalid-hover-border, #530000);
|
|
385
|
+
$color-input-checked-border: var(--color-input-checked-border, #00919f);
|
|
386
|
+
$color-input-checked-background: var(--color-input-checked-background, #00919f);
|
|
387
|
+
$color-input-checked-icon: var(--color-input-checked-icon, #ffffff);
|
|
388
|
+
$color-input-checked-hover-border: var(--color-input-checked-hover-border, #004e57);
|
|
389
|
+
$color-link-dark-base: var(--color-link-dark-base, #000000);
|
|
390
|
+
$color-link-dark-visited: var(--color-link-dark-visited, #333333);
|
|
391
|
+
$color-link-dark-active: var(--color-link-dark-active, #333333);
|
|
392
|
+
$color-link-dark-disabled: var(--color-link-dark-disabled, #e6e6e6);
|
|
393
|
+
$color-link-dark-hover: var(--color-link-dark-hover, #666666);
|
|
394
|
+
$color-link-light-base: var(--color-link-light-base, #ffffff);
|
|
395
|
+
$color-link-light-visited: var(--color-link-light-visited, #cccccc);
|
|
396
|
+
$color-link-light-active: var(--color-link-light-active, #cccccc);
|
|
397
|
+
$color-link-light-disabled: var(--color-link-light-disabled, #e6e6e6);
|
|
398
|
+
$color-link-light-hover: var(--color-link-light-hover, #999999);
|
|
399
|
+
$color-link-primary-base: var(--color-link-primary-base, #007f8c);
|
|
400
|
+
$color-link-primary-visited: var(--color-link-primary-visited, #006974);
|
|
401
|
+
$color-link-primary-active: var(--color-link-primary-active, #006974);
|
|
402
|
+
$color-link-primary-disabled: var(--color-link-primary-disabled, #e6e6e6);
|
|
403
|
+
$color-link-primary-hover: var(--color-link-primary-hover, #004e57);
|
|
404
|
+
$color-link-primary-02-base: var(--color-link-primary-02-base, #494f60);
|
|
405
|
+
$color-link-primary-02-visited: var(--color-link-primary-02-visited, #343b4c);
|
|
406
|
+
$color-link-primary-02-active: var(--color-link-primary-02-active, #343b4c);
|
|
407
|
+
$color-link-primary-02-disabled: var(--color-link-primary-02-disabled, #e6e6e6);
|
|
408
|
+
$color-link-primary-02-hover: var(--color-link-primary-02-hover, #171b26);
|
|
409
|
+
$color-link-danger-base: var(--color-link-danger-base, #c61112);
|
|
410
|
+
$color-link-danger-visited: var(--color-link-danger-visited, #8c0003);
|
|
411
|
+
$color-link-danger-active: var(--color-link-danger-active, #8c0003);
|
|
412
|
+
$color-link-danger-disabled: var(--color-link-danger-disabled, #e6e6e6);
|
|
413
|
+
$color-link-danger-hover: var(--color-link-danger-hover, #530000);
|
|
414
|
+
$color-listbox-background: var(--color-listbox-background, #ffffff);
|
|
415
|
+
$color-listbox-border: var(--color-listbox-border, #666666);
|
|
416
|
+
$color-listbox-tile-border: var(--color-listbox-tile-border, #b3b3b3);
|
|
417
|
+
$color-listbox-tile-shadow: var(--color-listbox-tile-shadow, #191919);
|
|
418
|
+
$color-listbox-tile-hover-background: var(--color-listbox-tile-hover-background, #e6e6e6);
|
|
419
|
+
$color-listbox-disabled-background: var(--color-listbox-disabled-background, #cccccc);
|
|
420
|
+
$color-notification-font: var(--color-notification-font, #000000);
|
|
421
|
+
$color-notification-information-background: var(
|
|
422
|
+
--color-notification-information-background,
|
|
423
|
+
#daeff7
|
|
424
|
+
);
|
|
425
|
+
$color-notification-information-border: var(--color-notification-information-border, #0b96cc);
|
|
426
|
+
$color-notification-information-icon: var(--color-notification-information-icon, #007bb4);
|
|
427
|
+
$color-notification-success-background: var(--color-notification-success-background, #ebf5de);
|
|
428
|
+
$color-notification-success-border: var(--color-notification-success-border, #46a610);
|
|
429
|
+
$color-notification-success-icon: var(--color-notification-success-icon, #188803);
|
|
430
|
+
$color-notification-warning-background: var(--color-notification-warning-background, #fdf1e8);
|
|
431
|
+
$color-notification-warning-border: var(--color-notification-warning-border, #ea7315);
|
|
432
|
+
$color-notification-warning-icon: var(--color-notification-warning-icon, #c65200);
|
|
433
|
+
$color-notification-danger-background: var(--color-notification-danger-background, #fdeaea);
|
|
434
|
+
$color-notification-danger-border: var(--color-notification-danger-border, #ea302d);
|
|
435
|
+
$color-notification-danger-icon: var(--color-notification-danger-icon, #c61112);
|
|
436
|
+
$color-option-button-label-shadow: var(--color-option-button-label-shadow, #b3b3b3);
|
|
437
|
+
$color-option-button-hover-label-shadow: var(--color-option-button-hover-label-shadow, #333333);
|
|
438
|
+
$color-option-button-checked-label-border: var(--color-option-button-checked-label-border, #00919f);
|
|
439
|
+
$color-option-button-checked-label-shadow: var(--color-option-button-checked-label-shadow, #d9f0f3);
|
|
440
|
+
$color-option-button-disabled-label-background: var(
|
|
441
|
+
--color-option-button-disabled-label-background,
|
|
442
|
+
#cccccc
|
|
443
|
+
);
|
|
444
|
+
$color-option-card-label-shadow: var(--color-option-card-label-shadow, #b3b3b3);
|
|
445
|
+
$color-option-card-hover-label-shadow: var(--color-option-card-hover-label-shadow, #333333);
|
|
446
|
+
$color-option-card-checked-label-border: var(--color-option-card-checked-label-border, #00919f);
|
|
447
|
+
$color-option-card-checked-label-shadow: var(--color-option-card-checked-label-shadow, #d9f0f3);
|
|
448
|
+
$color-option-card-disabled-content: var(--color-option-card-disabled-content, #cccccc);
|
|
449
|
+
$color-option-card-disabled-label: var(--color-option-card-disabled-label, #666666);
|
|
450
|
+
$color-overlay-background: var(--color-overlay-background, #191919);
|
|
451
|
+
$color-overlay-loader-background: var(--color-overlay-loader-background, #082435);
|
|
452
|
+
$color-password-input-button-hover-background: var(
|
|
453
|
+
--color-password-input-button-hover-background,
|
|
454
|
+
#e6e6e6
|
|
455
|
+
);
|
|
456
|
+
$color-phone-number-button-border: var(--color-phone-number-button-border, #666666);
|
|
457
|
+
$color-phone-number-list-background: var(--color-phone-number-list-background, #ffffff);
|
|
458
|
+
$color-phone-number-item-border: var(--color-phone-number-item-border, #b3b3b3);
|
|
459
|
+
$color-phone-number-item-focus-background: var(--color-phone-number-item-focus-background, #e6e6e6);
|
|
460
|
+
$color-progress-background: var(--color-progress-background, #cdd4d8);
|
|
461
|
+
$color-progress-indicator: var(--color-progress-indicator, #007f8c);
|
|
462
|
+
$color-progress-percentage-default: var(--color-progress-percentage-default, #191919);
|
|
463
|
+
$color-progress-percentage-half: var(--color-progress-percentage-half, #ffffff);
|
|
464
|
+
$color-sidebar-background: var(--color-sidebar-background, #082435);
|
|
465
|
+
$color-sidebar-feature-background: var(--color-sidebar-feature-background, #082435);
|
|
466
|
+
$color-sidebar-feature-hover-background: var(--color-sidebar-feature-hover-background, #405d68);
|
|
467
|
+
$color-sidebar-feature-selected-background: var(
|
|
468
|
+
--color-sidebar-feature-selected-background,
|
|
469
|
+
#5b737d
|
|
470
|
+
);
|
|
471
|
+
$color-sidebar-feature-disabled-background: var(
|
|
472
|
+
--color-sidebar-feature-disabled-background,
|
|
473
|
+
#92a2a9
|
|
474
|
+
);
|
|
475
|
+
$color-sidebar-user-background: var(--color-sidebar-user-background, #264653);
|
|
476
|
+
$color-sidebar-divider-background: var(--color-sidebar-divider-background, #5b737d);
|
|
477
|
+
$color-sidebar-icon: var(--color-sidebar-icon, #ffffff);
|
|
478
|
+
$color-sidebar-text-background: var(--color-sidebar-text-background, #e6e6e6);
|
|
479
|
+
$color-sidebar-text-color: var(--color-sidebar-text-color, #ffffff);
|
|
480
|
+
$color-sidebar-scroll-background: var(--color-sidebar-scroll-background, #082435);
|
|
481
|
+
$color-sidebar-scroll-color: var(--color-sidebar-scroll-color, #009eac);
|
|
482
|
+
$color-star-empty: var(--color-star-empty, #ffffff);
|
|
483
|
+
$color-star-focus: var(--color-star-focus, #758992);
|
|
484
|
+
$color-star-full: var(--color-star-full, #ea7315);
|
|
485
|
+
$color-star-hover: var(--color-star-hover, #f4b27e);
|
|
486
|
+
$color-stepper-item-background: var(--color-stepper-item-background, #999999);
|
|
487
|
+
$color-stepper-item-current-background: var(--color-stepper-item-current-background, #00919f);
|
|
488
|
+
$color-stepper-link-hover-text: var(--color-stepper-link-hover-text, #00919f);
|
|
489
|
+
$color-stepper-indicator-background: var(--color-stepper-indicator-background, #ffffff);
|
|
490
|
+
$color-stepper-indicator-border: var(--color-stepper-indicator-border, #999999);
|
|
491
|
+
$color-stepper-indicator-current-background: var(
|
|
492
|
+
--color-stepper-indicator-current-background,
|
|
493
|
+
#00919f
|
|
494
|
+
);
|
|
495
|
+
$color-stepper-indicator-current-border: var(--color-stepper-indicator-current-border, #00919f);
|
|
496
|
+
$color-stepper-icon: var(--color-stepper-icon, #00919f);
|
|
497
|
+
$color-stepper-title: var(--color-stepper-title, #00919f);
|
|
498
|
+
$color-tabs-background: var(--color-tabs-background, #ffffff);
|
|
499
|
+
$color-tabs-shadow: var(--color-tabs-shadow, #000000);
|
|
500
|
+
$color-tabs-default: var(--color-tabs-default, #666666);
|
|
501
|
+
$color-tabs-element-background: var(--color-tabs-element-background, #eeedea);
|
|
502
|
+
$color-tabs-hover: var(--color-tabs-hover, #004e57);
|
|
503
|
+
$color-tabs-disabled-background: var(--color-tabs-disabled-background, #cccccc);
|
|
504
|
+
$color-tabs-active-background: var(--color-tabs-active-background, #dddcd5);
|
|
505
|
+
$color-tabs-active-text: var(--color-tabs-active-text, #004e57);
|
|
506
|
+
$color-tabs-selected-border: var(--color-tabs-selected-border, #007f8c);
|
|
507
|
+
$color-tabs-selected-text: var(--color-tabs-selected-text, #007f8c);
|
|
508
|
+
$color-tabs-active-disabled: var(--color-tabs-active-disabled, #91d5db);
|
|
509
|
+
$color-tag-text-light-background: var(--color-tag-text-light-background, #ffffff);
|
|
510
|
+
$color-tag-text-light-border: var(--color-tag-text-light-border, #808080);
|
|
511
|
+
$color-tag-text-light-text: var(--color-tag-text-light-text, #191919);
|
|
512
|
+
$color-tag-text-dark-background: var(--color-tag-text-dark-background, #191919);
|
|
513
|
+
$color-tag-text-dark-border: var(--color-tag-text-dark-border, #ffffff);
|
|
514
|
+
$color-tag-text-dark-text: var(--color-tag-text-dark-text, #ffffff);
|
|
515
|
+
$color-tag-link-light-background: var(--color-tag-link-light-background, #ffffff);
|
|
516
|
+
$color-tag-link-light-border: var(--color-tag-link-light-border, #808080);
|
|
517
|
+
$color-tag-link-light-text: var(--color-tag-link-light-text, #191919);
|
|
518
|
+
$color-tag-link-light-hover-background: var(--color-tag-link-light-hover-background, #e6e6e6);
|
|
519
|
+
$color-tag-link-light-active-background: var(--color-tag-link-light-active-background, #cccccc);
|
|
520
|
+
$color-tag-link-dark-background: var(--color-tag-link-dark-background, #191919);
|
|
521
|
+
$color-tag-link-dark-border: var(--color-tag-link-dark-border, #ffffff);
|
|
522
|
+
$color-tag-link-dark-text: var(--color-tag-link-dark-text, #ffffff);
|
|
523
|
+
$color-tag-link-dark-hover-background: var(--color-tag-link-dark-hover-background, #333333);
|
|
524
|
+
$color-tag-link-dark-active-background: var(--color-tag-link-dark-active-background, #4d4d4d);
|
|
525
|
+
$color-tag-selectable-light-background: var(--color-tag-selectable-light-background, #ffffff);
|
|
526
|
+
$color-tag-selectable-light-border: var(--color-tag-selectable-light-border, #808080);
|
|
527
|
+
$color-tag-selectable-light-text: var(--color-tag-selectable-light-text, #191919);
|
|
528
|
+
$color-tag-selectable-light-hover-background: var(
|
|
529
|
+
--color-tag-selectable-light-hover-background,
|
|
530
|
+
#48bac4
|
|
531
|
+
);
|
|
532
|
+
$color-tag-selectable-light-active-background: var(
|
|
533
|
+
--color-tag-selectable-light-active-background,
|
|
534
|
+
#004e57
|
|
535
|
+
);
|
|
536
|
+
$color-tag-selectable-light-active-border: var(--color-tag-selectable-light-active-border, #004e57);
|
|
537
|
+
$color-tag-selectable-light-active-text: var(--color-tag-selectable-light-active-text, #ffffff);
|
|
538
|
+
$color-tag-selectable-light-disabled-background: var(
|
|
539
|
+
--color-tag-selectable-light-disabled-background,
|
|
540
|
+
#e6e6e6
|
|
541
|
+
);
|
|
542
|
+
$color-tag-selectable-light-disabled-text: var(--color-tag-selectable-light-disabled-text, #808080);
|
|
543
|
+
$color-tag-selectable-light-selected-background: var(
|
|
544
|
+
--color-tag-selectable-light-selected-background,
|
|
545
|
+
#007f8c
|
|
546
|
+
);
|
|
547
|
+
$color-tag-selectable-light-selected-text: var(--color-tag-selectable-light-selected-text, #ffffff);
|
|
548
|
+
$color-tag-selectable-light-selected-hover-background: var(
|
|
549
|
+
--color-tag-selectable-light-selected-hover-background,
|
|
550
|
+
#006974
|
|
551
|
+
);
|
|
552
|
+
$color-tag-selectable-dark-background: var(--color-tag-selectable-dark-background, #191919);
|
|
553
|
+
$color-tag-selectable-dark-border: var(--color-tag-selectable-dark-border, #ffffff);
|
|
554
|
+
$color-tag-selectable-dark-text: var(--color-tag-selectable-dark-text, #ffffff);
|
|
555
|
+
$color-tag-selectable-dark-hover-background: var(
|
|
556
|
+
--color-tag-selectable-dark-hover-background,
|
|
557
|
+
#006974
|
|
558
|
+
);
|
|
559
|
+
$color-tag-selectable-dark-active-background: var(
|
|
560
|
+
--color-tag-selectable-dark-active-background,
|
|
561
|
+
#91d5db
|
|
562
|
+
);
|
|
563
|
+
$color-tag-selectable-dark-active-border: var(--color-tag-selectable-dark-active-border, #91d5db);
|
|
564
|
+
$color-tag-selectable-dark-active-text: var(--color-tag-selectable-dark-active-text, #191919);
|
|
565
|
+
$color-tag-selectable-dark-selected-background: var(
|
|
566
|
+
--color-tag-selectable-dark-selected-background,
|
|
567
|
+
#009eac
|
|
568
|
+
);
|
|
569
|
+
$color-tag-selectable-dark-selected-border: var(
|
|
570
|
+
--color-tag-selectable-dark-selected-border,
|
|
571
|
+
#009eac
|
|
572
|
+
);
|
|
573
|
+
$color-tag-selectable-dark-selected-text: var(--color-tag-selectable-dark-selected-text, #191919);
|
|
574
|
+
$color-tag-selectable-dark-selected-hover-background: var(
|
|
575
|
+
--color-tag-selectable-dark-selected-hover-background,
|
|
576
|
+
#48bac4
|
|
577
|
+
);
|
|
578
|
+
$color-tag-selectable-dark-disabled-background: var(
|
|
579
|
+
--color-tag-selectable-dark-disabled-background,
|
|
580
|
+
#4d4d4d
|
|
581
|
+
);
|
|
582
|
+
$color-tag-selectable-dark-disabled-text: var(--color-tag-selectable-dark-disabled-text, #808080);
|
|
583
|
+
$color-tag-removable-light-background: var(--color-tag-removable-light-background, #333333);
|
|
584
|
+
$color-tag-removable-light-text: var(--color-tag-removable-light-text, #ffffff);
|
|
585
|
+
$color-tag-removable-light-icon: var(--color-tag-removable-light-icon, #cccccc);
|
|
586
|
+
$color-tag-removable-light-hover-background: var(
|
|
587
|
+
--color-tag-removable-light-hover-background,
|
|
588
|
+
#4d4d4d
|
|
589
|
+
);
|
|
590
|
+
$color-tag-removable-light-active-background: var(
|
|
591
|
+
--color-tag-removable-light-active-background,
|
|
592
|
+
#666666
|
|
593
|
+
);
|
|
594
|
+
$color-tag-removable-dark-background: var(--color-tag-removable-dark-background, #cccccc);
|
|
595
|
+
$color-tag-removable-dark-text: var(--color-tag-removable-dark-text, #191919);
|
|
596
|
+
$color-tag-removable-dark-icon: var(--color-tag-removable-dark-icon, #191919);
|
|
597
|
+
$color-tag-removable-dark-hover-background: var(
|
|
598
|
+
--color-tag-removable-dark-hover-background,
|
|
599
|
+
#b3b3b3
|
|
600
|
+
);
|
|
601
|
+
$color-tag-removable-dark-active-background: var(
|
|
602
|
+
--color-tag-removable-dark-active-background,
|
|
603
|
+
#999999
|
|
604
|
+
);
|
|
605
|
+
$color-toggle-label: var(--color-toggle-label, #000000);
|
|
606
|
+
$color-toggle-off-background: var(--color-toggle-off-background, #666666);
|
|
607
|
+
$color-toggle-off-circle: var(--color-toggle-off-circle, #ffffff);
|
|
608
|
+
$color-toggle-on-background: var(--color-toggle-on-background, #00919f);
|
|
609
|
+
$color-toggle-on-circle: var(--color-toggle-on-circle, #ffffff);
|
|
610
|
+
$color-toggle-hover-circle: var(--color-toggle-hover-circle, #e6e6e6);
|
|
611
|
+
$color-toggle-disabled-background: var(--color-toggle-disabled-background, #e6e6e6);
|
|
612
|
+
$color-toggle-disabled-circle: var(--color-toggle-disabled-circle, #b3b3b3);
|
|
613
|
+
$color-toggle-disabled-label: var(--color-toggle-disabled-label, #808080);
|
|
614
|
+
$color-toggle-disabled-checked-background: var(--color-toggle-disabled-checked-background, #91d5db);
|
|
615
|
+
$color-toggle-disabled-checked-circle: var(--color-toggle-disabled-checked-circle, #ffffff);
|
|
616
|
+
$color-tooltip-background: var(--color-tooltip-background, #5b737d);
|
|
617
|
+
$color-tooltip-border: var(--color-tooltip-border, #ffffff);
|
|
618
|
+
$color-secondary-sandgrey-100: var(--color-secondary-sandgrey-100, #eeedea);
|
|
619
|
+
$color-secondary-sandgrey-200: var(--color-secondary-sandgrey-200, #dddcd5);
|
|
620
|
+
$color-secondary-sandgrey-300: var(--color-secondary-sandgrey-300, #c2c1ba);
|
|
621
|
+
$color-secondary-sandgrey-400: var(--color-secondary-sandgrey-400, #a7a6a0);
|
|
622
|
+
$color-secondary-sandgrey-500: var(--color-secondary-sandgrey-500, #8c8b85);
|
|
623
|
+
$color-secondary-sandgrey-600: var(--color-secondary-sandgrey-600, #71706b);
|
|
624
|
+
$color-secondary-sandgrey-700: var(--color-secondary-sandgrey-700, #555550);
|
|
625
|
+
$color-secondary-sandgrey-800: var(--color-secondary-sandgrey-800, #3a3936);
|
|
626
|
+
$color-secondary-sandgrey-900: var(--color-secondary-sandgrey-900, #1e1e1c);
|