@mozaic-ds/angular 0.23.0 → 0.23.1
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 +51 -0
- package/LICENSE +22 -0
- package/README.md +94 -0
- package/angular.json +106 -0
- package/jest.config.js +6 -0
- package/mozaic-angular.svg +9 -0
- package/mozaic.config.js +6 -0
- package/package.json +113 -25
- 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/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/mocks/dummy.component.mock.ts +4 -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/autocomplete/autocomplete.component.html +82 -0
- package/projects/kit/components/autocomplete/autocomplete.component.scss +9 -0
- package/projects/kit/components/autocomplete/autocomplete.component.spec.ts +22 -0
- package/projects/kit/components/autocomplete/autocomplete.component.ts +249 -0
- package/projects/kit/components/autocomplete/autocomplete.module.ts +26 -0
- package/projects/kit/components/autocomplete/autocomplete.stories.ts +143 -0
- package/projects/kit/components/autocomplete/index.ts +2 -0
- package/projects/kit/components/autocomplete/public-api.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/datatable/components/caption/moz-datatable-caption.component.html +11 -0
- package/projects/kit/components/datatable/components/caption/moz-datatable-caption.component.ts +30 -0
- package/projects/kit/components/datatable/components/content/moz-datatable-content-cell.component.html +1 -0
- package/projects/kit/components/datatable/components/content/moz-datatable-content-cell.component.ts +17 -0
- package/projects/kit/components/datatable/components/footer/moz-datatable-footer.component.html +39 -0
- package/projects/kit/components/datatable/components/footer/moz-datatable-footer.component.spec.ts +147 -0
- package/projects/kit/components/datatable/components/footer/moz-datatable-footer.component.ts +58 -0
- package/projects/kit/components/datatable/components/header/moz-datatable-header-cell.component.html +1 -0
- package/projects/kit/components/datatable/components/header/moz-datatable-header-cell.component.ts +17 -0
- package/projects/kit/components/datatable/components/row/moz-datatable-row-expansion-content.component.html +1 -0
- package/projects/kit/components/datatable/components/row/moz-datatable-row-expansion-content.component.ts +10 -0
- package/projects/kit/components/datatable/components/selection/moz-datatable-selection.component.html +82 -0
- package/projects/kit/components/datatable/components/selection/moz-datatable-selection.component.scss +4 -0
- package/projects/kit/components/datatable/components/selection/moz-datatable-selection.component.spec.ts +22 -0
- package/projects/kit/components/datatable/components/selection/moz-datatable-selection.component.ts +337 -0
- package/projects/kit/components/datatable/directives/moz-datatable-sort.directive.ts +62 -0
- package/projects/kit/components/datatable/index.ts +13 -0
- package/projects/kit/components/datatable/model/column-def.ts +12 -0
- package/projects/kit/components/datatable/model/datatable-settings.ts +30 -0
- package/projects/kit/components/datatable/model/footer-settings.ts +14 -0
- package/projects/kit/components/datatable/model/row-data.ts +5 -0
- package/projects/kit/components/datatable/model/selection-settings.ts +16 -0
- package/projects/kit/components/datatable/moz-datatable.component.html +244 -0
- package/projects/kit/components/datatable/moz-datatable.component.scss +84 -0
- package/projects/kit/components/datatable/moz-datatable.component.spec.ts +126 -0
- package/projects/kit/components/datatable/moz-datatable.component.ts +170 -0
- package/projects/kit/components/datatable/moz-datatable.module.ts +51 -0
- package/projects/kit/components/datatable/moz-datatable.stories.ts +1118 -0
- package/projects/kit/components/datatable/public-api.ts +13 -0
- package/projects/kit/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.html +59 -0
- package/projects/kit/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.scss +65 -0
- package/projects/kit/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.ts +87 -0
- package/projects/kit/components/datatable-management/index.ts +3 -0
- package/projects/kit/components/datatable-management/moz-datatable-management.component.html +11 -0
- package/projects/kit/components/datatable-management/moz-datatable-management.component.scss +0 -0
- package/projects/kit/components/datatable-management/moz-datatable-management.component.ts +51 -0
- package/projects/kit/components/datatable-management/moz-datatable-management.module.ts +25 -0
- package/projects/kit/components/datatable-management/moz-datatable-management.stories.ts +102 -0
- package/projects/kit/components/datatable-management/public-api.ts +3 -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.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/dropdown/dropdown.component.html +78 -0
- package/projects/kit/components/dropdown/dropdown.component.scss +10 -0
- package/projects/kit/components/dropdown/dropdown.component.ts +215 -0
- package/projects/kit/components/dropdown/dropdown.module.ts +25 -0
- package/projects/kit/components/dropdown/dropdown.stories.ts +160 -0
- package/projects/kit/components/dropdown/index.ts +2 -0
- package/projects/kit/components/dropdown/public-api.ts +1 -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 +28 -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 +5 -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 +24 -0
- package/projects/kit/components/layer/layer.component.scss +3 -0
- package/projects/kit/components/layer/layer.component.ts +59 -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/listbox/index.ts +3 -0
- package/projects/kit/components/listbox/listbox.component.html +52 -0
- package/projects/kit/components/listbox/listbox.component.scss +17 -0
- package/projects/kit/components/listbox/listbox.component.spec.ts +58 -0
- package/projects/kit/components/listbox/listbox.component.ts +67 -0
- package/projects/kit/components/listbox/listbox.module.ts +12 -0
- package/projects/kit/components/listbox/listbox.stories.ts +104 -0
- package/projects/kit/components/listbox/model/listbox-item.ts +6 -0
- package/projects/kit/components/listbox/public-api.ts +1 -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 +39 -0
- package/projects/kit/components/pagination/pagination.component.scss +7 -0
- package/projects/kit/components/pagination/pagination.component.ts +199 -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/public-api.ts +25 -0
- package/projects/kit/components/segmented-control/public-api.ts +3 -0
- package/projects/kit/components/segmented-control/segmented-control-button/segmented-control-button.component.html +4 -0
- package/projects/kit/components/segmented-control/segmented-control-button/segmented-control-button.component.scss +3 -0
- package/projects/kit/components/segmented-control/segmented-control-button/segmented-control-button.component.spec.ts +89 -0
- package/projects/kit/components/segmented-control/segmented-control-button/segmented-control-button.component.ts +13 -0
- package/projects/kit/components/segmented-control/segmented-control-size.ts +2 -0
- package/projects/kit/components/segmented-control/segmented-control.component.html +6 -0
- package/projects/kit/components/segmented-control/segmented-control.component.scss +21 -0
- package/projects/kit/components/segmented-control/segmented-control.component.spec.ts +71 -0
- package/projects/kit/components/segmented-control/segmented-control.component.ts +15 -0
- package/projects/kit/components/segmented-control/segmented-control.module.ts +13 -0
- package/projects/kit/components/segmented-control/segmented-control.stories.ts +55 -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 +196 -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-type.ts +5 -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/tag.stories.ts +49 -0
- package/projects/kit/components/taglist/components/taglist-layer-content/taglist-layer-content.component.html +12 -0
- package/projects/kit/components/taglist/components/taglist-layer-content/taglist-layer-content.component.scss +14 -0
- package/projects/kit/components/taglist/components/taglist-layer-content/taglist-layer-content.component.ts +34 -0
- package/projects/kit/components/taglist/index.ts +3 -0
- package/projects/kit/components/taglist/public-api.ts +1 -0
- package/projects/kit/components/taglist/taglist.component.html +22 -0
- package/projects/kit/components/taglist/taglist.component.scss +12 -0
- package/projects/kit/components/taglist/taglist.component.spec.ts +22 -0
- package/projects/kit/components/taglist/taglist.component.ts +75 -0
- package/projects/kit/components/taglist/taglist.module.ts +13 -0
- package/projects/kit/components/taglist/taglist.stories.ts +60 -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 +17 -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/directive/tooltip.directive.ts +83 -0
- package/projects/kit/components/tooltip/index.ts +3 -0
- package/projects/kit/components/tooltip/public-api.ts +1 -0
- package/projects/kit/components/tooltip/tooltip.component.html +7 -0
- package/projects/kit/components/tooltip/tooltip.component.scss +65 -0
- package/projects/kit/components/tooltip/tooltip.component.ts +14 -0
- package/projects/kit/components/tooltip/tooltip.module.ts +11 -0
- package/projects/kit/components/tooltip/tooltip.stories.ts +58 -0
- package/projects/kit/ng-package-adeo.json +21 -0
- package/projects/kit/ng-package.json +23 -0
- package/projects/kit/package-lock.json +117 -0
- package/projects/kit/package.json +24 -0
- package/projects/kit/setup-jest.ts +1 -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 +34 -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_BonificoBancario_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_BonificoBancario_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_BonificoBancario_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_BonificoBancario_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_BonificoBancario_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_BonificoBancario_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_BonificoBancario_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_BonificoBancario_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_Oney--4x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_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_Oney--4x_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--4x_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--4x_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney--4x_64px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney_24px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney_32px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney_48px.svg +0 -1
- package/assets/moz-icons/Logotypes_Payment_Oney_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_Image-alt_24px.svg +0 -1
- package/assets/moz-icons/Media_Image-alt_32px.svg +0 -1
- package/assets/moz-icons/Media_Image-alt_48px.svg +0 -1
- package/assets/moz-icons/Media_Image-alt_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_Picker_24px.svg +0 -1
- package/assets/moz-icons/Media_Picker_32px.svg +0 -1
- package/assets/moz-icons/Media_Picker_48px.svg +0 -1
- package/assets/moz-icons/Media_Picker_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_Push-pin-off_24px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin-off_32px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin-off_48px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin-off_64px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin_32px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin_48px.svg +0 -1
- package/assets/moz-icons/Media_Push-pin_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_Release_24px.svg +0 -1
- package/assets/moz-icons/Media_Release_32px.svg +0 -1
- package/assets/moz-icons/Media_Release_48px.svg +0 -1
- package/assets/moz-icons/Media_Release_64px.svg +0 -1
- package/assets/moz-icons/Media_Server_24px.svg +0 -1
- package/assets/moz-icons/Media_Server_32px.svg +0 -1
- package/assets/moz-icons/Media_Server_48px.svg +0 -1
- package/assets/moz-icons/Media_Server_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_StoreBM_24px.svg +0 -1
- package/assets/moz-icons/Store_StoreBM_32px.svg +0 -1
- package/assets/moz-icons/Store_StoreBM_48px.svg +0 -1
- package/assets/moz-icons/Store_StoreBM_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_Drill-alt_24px.svg +0 -1
- package/assets/moz-icons/Universe_Drill-alt_32px.svg +0 -1
- package/assets/moz-icons/Universe_Drill-alt_48px.svg +0 -1
- package/assets/moz-icons/Universe_Drill-alt_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_Garden_24px.svg +0 -1
- package/assets/moz-icons/Universe_Garden_32px.svg +0 -1
- package/assets/moz-icons/Universe_Garden_48px.svg +0 -1
- package/assets/moz-icons/Universe_Garden_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_Hard-hat-alt_24px.svg +0 -1
- package/assets/moz-icons/Universe_Hard-hat-alt_32px.svg +0 -1
- package/assets/moz-icons/Universe_Hard-hat-alt_48px.svg +0 -1
- package/assets/moz-icons/Universe_Hard-hat-alt_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_Insulation-alt_24px.svg +0 -1
- package/assets/moz-icons/Universe_Insulation-alt_32px.svg +0 -1
- package/assets/moz-icons/Universe_Insulation-alt_48px.svg +0 -1
- package/assets/moz-icons/Universe_Insulation-alt_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_Kitchen-alt_24px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen-alt_32px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen-alt_48px.svg +0 -1
- package/assets/moz-icons/Universe_Kitchen-alt_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_Masonry-alt_24px.svg +0 -1
- package/assets/moz-icons/Universe_Masonry-alt_32px.svg +0 -1
- package/assets/moz-icons/Universe_Masonry-alt_48px.svg +0 -1
- package/assets/moz-icons/Universe_Masonry-alt_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_Stairs_24px.svg +0 -1
- package/assets/moz-icons/Universe_Stairs_32px.svg +0 -1
- package/assets/moz-icons/Universe_Stairs_48px.svg +0 -1
- package/assets/moz-icons/Universe_Stairs_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_Wallpaper_24px.svg +0 -1
- package/assets/moz-icons/Universe_Wallpaper_32px.svg +0 -1
- package/assets/moz-icons/Universe_Wallpaper_48px.svg +0 -1
- package/assets/moz-icons/Universe_Wallpaper_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_A11y_24px.svg +0 -1
- package/assets/moz-icons/Various_A11y_32px.svg +0 -1
- package/assets/moz-icons/Various_A11y_48px.svg +0 -1
- package/assets/moz-icons/Various_A11y_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_Company_24px.svg +0 -1
- package/assets/moz-icons/Various_Company_32px.svg +0 -1
- package/assets/moz-icons/Various_Company_48px.svg +0 -1
- package/assets/moz-icons/Various_Company_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/assets/special-icons/checkbox-checked-disabled.svg +0 -3
- package/assets/special-icons/checkbox-checked.svg +0 -3
- package/assets/special-icons/checkbox-indeterminate-disabled.svg +0 -3
- package/assets/special-icons/checkbox-indeterminate.svg +0 -3
- package/assets/special-icons/invalid-cross.svg +0 -3
- package/assets/special-icons/layer-cross.svg +0 -3
- package/assets/special-icons/notification-danger-m.svg +0 -4
- package/assets/special-icons/notification-danger-s.svg +0 -4
- package/assets/special-icons/notification-information-m.svg +0 -5
- package/assets/special-icons/notification-information-s.svg +0 -5
- package/assets/special-icons/notification-success-m.svg +0 -4
- package/assets/special-icons/notification-success-s.svg +0 -4
- package/assets/special-icons/notification-warning-m.svg +0 -5
- package/assets/special-icons/notification-warning-s.svg +0 -5
- package/assets/special-icons/remove-tag.svg +0 -3
- package/assets/special-icons/toggle-checked-disabled.svg +0 -3
- package/assets/special-icons/toggle-checked.svg +0 -3
- package/assets/special-icons/toggle-cross-disabled.svg +0 -3
- package/assets/special-icons/toggle-cross.svg +0 -3
- package/assets/special-icons/tooltip-triangle.svg +0 -3
- package/assets/special-icons/valid-check-mark.svg +0 -11
- 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/public-api.d.ts +0 -19
- 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-type.d.ts +0 -1
- 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/public-api.d.ts +0 -2
- 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 -134
- 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 -2053
- package/fesm2015/mozaic-ds-angular.mjs.map +0 -1
- package/fesm2020/mozaic-ds-angular.mjs +0 -2026
- package/fesm2020/mozaic-ds-angular.mjs.map +0 -1
- package/index.d.ts +0 -5
- /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/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/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/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,1118 @@
|
|
|
1
|
+
import { Meta, moduleMetadata } from '@storybook/angular';
|
|
2
|
+
import { MozDatatableComponent } from './moz-datatable.component';
|
|
3
|
+
import { StoryObj } from '@storybook/angular';
|
|
4
|
+
import { BadgeModule } from '../badge/badge.module';
|
|
5
|
+
import { TextInputModule } from '../text-input/text-input.module';
|
|
6
|
+
import { ButtonModule } from '../button/button.module';
|
|
7
|
+
import { IconModule } from '../icon/icon.module';
|
|
8
|
+
import { ToggleModule } from '../toggle/toggle.module';
|
|
9
|
+
import { TagModule } from '../tag/tag.module';
|
|
10
|
+
import { MozDatatableModule } from './moz-datatable.module';
|
|
11
|
+
import { MozDatatableManagementModule } from '../datatable-management/moz-datatable-management.module';
|
|
12
|
+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
13
|
+
|
|
14
|
+
type StoryType = MozDatatableComponent;
|
|
15
|
+
|
|
16
|
+
const meta: Meta<StoryType> = {
|
|
17
|
+
title: 'Data/Datatable',
|
|
18
|
+
component: MozDatatableComponent,
|
|
19
|
+
decorators: [
|
|
20
|
+
moduleMetadata({
|
|
21
|
+
imports: [
|
|
22
|
+
MozDatatableModule,
|
|
23
|
+
BadgeModule,
|
|
24
|
+
TextInputModule,
|
|
25
|
+
ButtonModule,
|
|
26
|
+
IconModule,
|
|
27
|
+
ToggleModule,
|
|
28
|
+
TagModule,
|
|
29
|
+
TextInputModule,
|
|
30
|
+
MozDatatableManagementModule,
|
|
31
|
+
BrowserAnimationsModule,
|
|
32
|
+
],
|
|
33
|
+
}),
|
|
34
|
+
],
|
|
35
|
+
argTypes: {
|
|
36
|
+
rowPerPageChangeEvent: { action: 'rowPerPageChange' },
|
|
37
|
+
rowClickEvent: { action: 'rowClick' },
|
|
38
|
+
pageChangeEvent: { action: 'pageChange' },
|
|
39
|
+
sortEvent: { action: 'sortColumn' },
|
|
40
|
+
selectionRowEvent: { action: 'rowSelected' },
|
|
41
|
+
selectionAllRowEvent: { action: 'rowAllSelected' },
|
|
42
|
+
emptyButtonClickEvent: { action: 'emptyBodyButtonClicked' },
|
|
43
|
+
},
|
|
44
|
+
render: (args) => {
|
|
45
|
+
const { ...props } = args;
|
|
46
|
+
return {
|
|
47
|
+
props,
|
|
48
|
+
template: `
|
|
49
|
+
<moz-datatable [datatableSettings]="datatableSettings" [footerSettings]="footerSettings" [selectionSettings]="selectionSettings">
|
|
50
|
+
|
|
51
|
+
<moz-datatable-content-cell field="discount">
|
|
52
|
+
<ng-template let-item>
|
|
53
|
+
<input
|
|
54
|
+
moz-input
|
|
55
|
+
type="number"
|
|
56
|
+
placeholder="e.g. 15"
|
|
57
|
+
size="s"
|
|
58
|
+
/>
|
|
59
|
+
</ng-template>
|
|
60
|
+
</moz-datatable-content-cell>
|
|
61
|
+
|
|
62
|
+
<moz-datatable-content-cell field="status">
|
|
63
|
+
<ng-template let-row>
|
|
64
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
65
|
+
</ng-template>
|
|
66
|
+
</moz-datatable-content-cell>
|
|
67
|
+
|
|
68
|
+
<moz-datatable-content-cell field="productLink">
|
|
69
|
+
<ng-template let-row>
|
|
70
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
71
|
+
</ng-template>
|
|
72
|
+
</moz-datatable-content-cell>
|
|
73
|
+
|
|
74
|
+
</moz-datatable>
|
|
75
|
+
`,
|
|
76
|
+
};
|
|
77
|
+
},
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export default meta;
|
|
81
|
+
|
|
82
|
+
type Story = StoryObj<StoryType>;
|
|
83
|
+
|
|
84
|
+
export const Default: Story = {
|
|
85
|
+
args: {
|
|
86
|
+
datatableSettings: {
|
|
87
|
+
columnDefs: [
|
|
88
|
+
{
|
|
89
|
+
field: 'productName',
|
|
90
|
+
headerName: 'Product name',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
field: 'productId',
|
|
94
|
+
headerName: 'Product id',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
field: 'discount',
|
|
98
|
+
headerName: 'Discount %',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
field: 'status',
|
|
102
|
+
headerName: 'status',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
field: 'productLink',
|
|
106
|
+
headerName: 'product link',
|
|
107
|
+
},
|
|
108
|
+
],
|
|
109
|
+
rowData: [
|
|
110
|
+
{
|
|
111
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
112
|
+
productId: '#123456789',
|
|
113
|
+
discount: 0,
|
|
114
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
115
|
+
productLink: { label: 'Page link', link: '#' },
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
productName: 'Perceuse à percussion sans fil',
|
|
119
|
+
productId: '#456',
|
|
120
|
+
discount: 0,
|
|
121
|
+
status: { label: 'Online', type: 'success' },
|
|
122
|
+
productLink: { label: 'Page link', link: '#' },
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
productName: 'Perceuse sans fil',
|
|
126
|
+
productId: '#2345678',
|
|
127
|
+
discount: 0,
|
|
128
|
+
status: { label: 'Online', type: 'success' },
|
|
129
|
+
productLink: { label: 'Page link', link: '#' },
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
productName: 'Perceuse à percussion filaire',
|
|
133
|
+
productId: '-',
|
|
134
|
+
discount: 0,
|
|
135
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
136
|
+
productLink: { label: 'Page link', link: '#' },
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
productName: 'Perceuse visseuse sans fil',
|
|
140
|
+
productId: '#34567',
|
|
141
|
+
discount: 0,
|
|
142
|
+
status: { label: 'Offline', type: 'danger' },
|
|
143
|
+
productLink: { label: 'Page link', link: '#' },
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
export const WithFixHeaderRow: Story = {
|
|
151
|
+
render: (args) => ({
|
|
152
|
+
props: args,
|
|
153
|
+
template: `
|
|
154
|
+
<div style="height: 240px;">
|
|
155
|
+
<moz-datatable [datatableSettings]="datatableSettings" [footerSettings]="footerSettings">
|
|
156
|
+
|
|
157
|
+
<moz-datatable-content-cell field="discount">
|
|
158
|
+
<ng-template let-item>
|
|
159
|
+
<input
|
|
160
|
+
moz-input
|
|
161
|
+
type="number"
|
|
162
|
+
placeholder="e.g. 15"
|
|
163
|
+
size="s"
|
|
164
|
+
/>
|
|
165
|
+
</ng-template>
|
|
166
|
+
</moz-datatable-content-cell>
|
|
167
|
+
|
|
168
|
+
<moz-datatable-content-cell field="status">
|
|
169
|
+
<ng-template let-row>
|
|
170
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
171
|
+
</ng-template>
|
|
172
|
+
</moz-datatable-content-cell>
|
|
173
|
+
|
|
174
|
+
<moz-datatable-content-cell field="productLink">
|
|
175
|
+
<ng-template let-row>
|
|
176
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
177
|
+
</ng-template>
|
|
178
|
+
</moz-datatable-content-cell>
|
|
179
|
+
|
|
180
|
+
</moz-datatable>
|
|
181
|
+
</div>
|
|
182
|
+
`,
|
|
183
|
+
}),
|
|
184
|
+
args: {
|
|
185
|
+
datatableSettings: {
|
|
186
|
+
columnDefs: [
|
|
187
|
+
{
|
|
188
|
+
field: 'productName',
|
|
189
|
+
headerName: 'Product name',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
field: 'productId',
|
|
193
|
+
headerName: 'Product id',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
field: 'discount',
|
|
197
|
+
headerName: 'Discount %',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
field: 'status',
|
|
201
|
+
headerName: 'status',
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
field: 'productLink',
|
|
205
|
+
headerName: 'product link',
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
rowData: [
|
|
209
|
+
{
|
|
210
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
211
|
+
productId: '#123456789',
|
|
212
|
+
discount: 0,
|
|
213
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
214
|
+
productLink: { label: 'Page link', link: '#' },
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
productName: 'Perceuse à percussion sans fil',
|
|
218
|
+
productId: '#456',
|
|
219
|
+
discount: 0,
|
|
220
|
+
status: { label: 'Online', type: 'success' },
|
|
221
|
+
productLink: { label: 'Page link', link: '#' },
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
productName: 'Perceuse sans fil',
|
|
225
|
+
productId: '#2345678',
|
|
226
|
+
discount: 0,
|
|
227
|
+
status: { label: 'Online', type: 'success' },
|
|
228
|
+
productLink: { label: 'Page link', link: '#' },
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
productName: 'Perceuse à percussion filaire',
|
|
232
|
+
productId: '-',
|
|
233
|
+
discount: 0,
|
|
234
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
235
|
+
productLink: { label: 'Page link', link: '#' },
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
productName: 'Perceuse visseuse sans fil',
|
|
239
|
+
productId: '#34567',
|
|
240
|
+
discount: 0,
|
|
241
|
+
status: { label: 'Offline', type: 'danger' },
|
|
242
|
+
productLink: { label: 'Page link', link: '#' },
|
|
243
|
+
},
|
|
244
|
+
],
|
|
245
|
+
fixHeaderRow: true,
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
export const WithSelection: Story = {
|
|
251
|
+
args: {
|
|
252
|
+
selectionSettings: {
|
|
253
|
+
selectionIdentifierFieldKey: 'id',
|
|
254
|
+
allSelected: false,
|
|
255
|
+
totalSelectableItems: 4,
|
|
256
|
+
excludedIds: [],
|
|
257
|
+
selectedIds: [],
|
|
258
|
+
labels: {},
|
|
259
|
+
},
|
|
260
|
+
datatableSettings: {
|
|
261
|
+
activateSelection: true,
|
|
262
|
+
columnDefs: [
|
|
263
|
+
{
|
|
264
|
+
field: 'productName',
|
|
265
|
+
headerName: 'Product name',
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
field: 'productId',
|
|
269
|
+
headerName: 'Product id',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
field: 'discount',
|
|
273
|
+
headerName: 'Discount %',
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
field: 'status',
|
|
277
|
+
headerName: 'status',
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
field: 'productLink',
|
|
281
|
+
headerName: 'product link',
|
|
282
|
+
},
|
|
283
|
+
],
|
|
284
|
+
rowData: [
|
|
285
|
+
{
|
|
286
|
+
id: 1,
|
|
287
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
288
|
+
productId: '#123456789',
|
|
289
|
+
discount: 0,
|
|
290
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
291
|
+
productLink: { label: 'Page link', link: '#' },
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
id: 2,
|
|
295
|
+
productName: 'Perceuse à percussion sans fil',
|
|
296
|
+
productId: '#456',
|
|
297
|
+
discount: 0,
|
|
298
|
+
status: { label: 'Online', type: 'success' },
|
|
299
|
+
productLink: { label: 'Page link', link: '#' },
|
|
300
|
+
disableSelection: true,
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
id: 3,
|
|
304
|
+
productName: 'Perceuse sans fil',
|
|
305
|
+
productId: '#2345678',
|
|
306
|
+
discount: 0,
|
|
307
|
+
status: { label: 'Online', type: 'success' },
|
|
308
|
+
productLink: { label: 'Page link', link: '#' },
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
id: 4,
|
|
312
|
+
productName: 'Perceuse à percussion filaire',
|
|
313
|
+
productId: '-',
|
|
314
|
+
discount: 0,
|
|
315
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
316
|
+
productLink: { label: 'Page link', link: '#' },
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
id: 5,
|
|
320
|
+
productName: 'Perceuse visseuse sans fil',
|
|
321
|
+
productId: '#34567',
|
|
322
|
+
discount: 0,
|
|
323
|
+
status: { label: 'Offline', type: 'danger' },
|
|
324
|
+
productLink: { label: 'Page link', link: '#' },
|
|
325
|
+
},
|
|
326
|
+
],
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
export const WithColumnSort: Story = {
|
|
332
|
+
args: {
|
|
333
|
+
datatableSettings: {
|
|
334
|
+
columnDefs: [
|
|
335
|
+
{
|
|
336
|
+
field: 'productName',
|
|
337
|
+
headerName: 'Product name',
|
|
338
|
+
sort: {
|
|
339
|
+
activate: true,
|
|
340
|
+
direction: 'ASC',
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
field: 'productId',
|
|
345
|
+
headerName: 'Product id',
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
field: 'discount',
|
|
349
|
+
headerName: 'Discount %',
|
|
350
|
+
sort: {
|
|
351
|
+
activate: true,
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
field: 'status',
|
|
356
|
+
headerName: 'status',
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
field: 'productLink',
|
|
360
|
+
headerName: 'product link',
|
|
361
|
+
},
|
|
362
|
+
],
|
|
363
|
+
rowData: [
|
|
364
|
+
{
|
|
365
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
366
|
+
productId: '#123456789',
|
|
367
|
+
discount: 0,
|
|
368
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
369
|
+
productLink: { label: 'Page link', link: '#' },
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
productName: 'Perceuse à percussion sans fil',
|
|
373
|
+
productId: '#456',
|
|
374
|
+
discount: 0,
|
|
375
|
+
status: { label: 'Online', type: 'success' },
|
|
376
|
+
productLink: { label: 'Page link', link: '#' },
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
productName: 'Perceuse sans fil',
|
|
380
|
+
productId: '#2345678',
|
|
381
|
+
discount: 0,
|
|
382
|
+
status: { label: 'Online', type: 'success' },
|
|
383
|
+
productLink: { label: 'Page link', link: '#' },
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
productName: 'Perceuse à percussion filaire',
|
|
387
|
+
productId: '-',
|
|
388
|
+
discount: 0,
|
|
389
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
390
|
+
productLink: { label: 'Page link', link: '#' },
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
productName: 'Perceuse visseuse sans fil',
|
|
394
|
+
productId: '#34567',
|
|
395
|
+
discount: 0,
|
|
396
|
+
status: { label: 'Offline', type: 'danger' },
|
|
397
|
+
productLink: { label: 'Page link', link: '#' },
|
|
398
|
+
},
|
|
399
|
+
],
|
|
400
|
+
},
|
|
401
|
+
},
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
export const WithEmptyBody: Story = {
|
|
405
|
+
args: {
|
|
406
|
+
datatableSettings: {
|
|
407
|
+
activatePagination: true,
|
|
408
|
+
activateEmptyBodyButton: true,
|
|
409
|
+
columnDefs: [
|
|
410
|
+
{
|
|
411
|
+
field: 'productName',
|
|
412
|
+
headerName: 'Product name',
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
field: 'productId',
|
|
416
|
+
headerName: 'Product id',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
field: 'discount',
|
|
420
|
+
headerName: 'Discount %',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
field: 'status',
|
|
424
|
+
headerName: 'status',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
field: 'productLink',
|
|
428
|
+
headerName: 'product link',
|
|
429
|
+
},
|
|
430
|
+
],
|
|
431
|
+
labels: {
|
|
432
|
+
emptyBodyTitle: 'There is no result',
|
|
433
|
+
emptyBodyDescription: 'Please try changing your filters',
|
|
434
|
+
},
|
|
435
|
+
icons: {
|
|
436
|
+
emptyBodyButtonIcon: 'Navigation_Display_Filter_24px',
|
|
437
|
+
},
|
|
438
|
+
rowData: [],
|
|
439
|
+
},
|
|
440
|
+
},
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
export const WithCaptionAndPagination: Story = {
|
|
444
|
+
render: (args) => ({
|
|
445
|
+
props: args,
|
|
446
|
+
template: `
|
|
447
|
+
<moz-datatable [datatableSettings]="datatableSettings" [footerSettings]="footerSettings" [selectionSettings]="selectionSettings">
|
|
448
|
+
|
|
449
|
+
<moz-datatable-caption>
|
|
450
|
+
<ng-container edition>
|
|
451
|
+
<button
|
|
452
|
+
moz-button
|
|
453
|
+
size="s"
|
|
454
|
+
variation="bordered"
|
|
455
|
+
widthBehavior="fit"
|
|
456
|
+
theme="neutral"
|
|
457
|
+
[onlyIcon]="true"
|
|
458
|
+
>
|
|
459
|
+
<moz-icon iconName="Navigation_Publish_Edit_24px"></moz-icon>
|
|
460
|
+
</button>
|
|
461
|
+
<button
|
|
462
|
+
moz-button
|
|
463
|
+
size="s"
|
|
464
|
+
variation="bordered"
|
|
465
|
+
widthBehavior="fit"
|
|
466
|
+
theme="neutral"
|
|
467
|
+
[onlyIcon]="true"
|
|
468
|
+
>
|
|
469
|
+
<moz-icon iconName="Media_Download_Web_24px"></moz-icon>
|
|
470
|
+
</button>
|
|
471
|
+
</ng-container>
|
|
472
|
+
<ng-container actions>
|
|
473
|
+
<div>
|
|
474
|
+
<moz-toggle size="s">Slot toggle</moz-toggle>
|
|
475
|
+
</div>
|
|
476
|
+
<div>
|
|
477
|
+
<input moz-input type="search" placeholder="This is a SLOT text input" size="s" />
|
|
478
|
+
</div>
|
|
479
|
+
<button moz-button size="s" variation="bordered" widthBehavior="fit">
|
|
480
|
+
<moz-icon iconName="Navigation_Display_Filter_24px"></moz-icon>
|
|
481
|
+
Filters
|
|
482
|
+
</button>
|
|
483
|
+
<button
|
|
484
|
+
moz-button
|
|
485
|
+
size="s"
|
|
486
|
+
variation="bordered"
|
|
487
|
+
widthBehavior="fit"
|
|
488
|
+
theme="neutral"
|
|
489
|
+
[onlyIcon]="true"
|
|
490
|
+
>
|
|
491
|
+
<moz-icon iconName="Navigation_Display_Setting_24px"></moz-icon>
|
|
492
|
+
</button>
|
|
493
|
+
<button moz-button size="s">Primary action</button>
|
|
494
|
+
<button moz-button size="s" theme="danger" variation="bordered">Negative action</button>
|
|
495
|
+
</ng-container>
|
|
496
|
+
<ng-container filters>
|
|
497
|
+
<moz-tag type="removable" size="s">
|
|
498
|
+
slot tag 1
|
|
499
|
+
</moz-tag>
|
|
500
|
+
<moz-tag type="removable" size="s">
|
|
501
|
+
slot tag 2
|
|
502
|
+
</moz-tag>
|
|
503
|
+
</ng-container>
|
|
504
|
+
</moz-datatable-caption>
|
|
505
|
+
|
|
506
|
+
<moz-datatable-content-cell field="discount">
|
|
507
|
+
<ng-template let-item>
|
|
508
|
+
<input
|
|
509
|
+
moz-input
|
|
510
|
+
type="number"
|
|
511
|
+
placeholder="e.g. 15"
|
|
512
|
+
size="s"
|
|
513
|
+
/>
|
|
514
|
+
</ng-template>
|
|
515
|
+
</moz-datatable-content-cell>
|
|
516
|
+
|
|
517
|
+
<moz-datatable-content-cell field="status">
|
|
518
|
+
<ng-template let-row>
|
|
519
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
520
|
+
</ng-template>
|
|
521
|
+
</moz-datatable-content-cell>
|
|
522
|
+
|
|
523
|
+
<moz-datatable-content-cell field="productLink">
|
|
524
|
+
<ng-template let-row>
|
|
525
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
526
|
+
</ng-template>
|
|
527
|
+
</moz-datatable-content-cell>
|
|
528
|
+
|
|
529
|
+
<moz-datatable-row-expansion-content>
|
|
530
|
+
<ng-template let-row>
|
|
531
|
+
<div style="display: flex; justify-content: center; align-items: center;">
|
|
532
|
+
<h1>{{row.subRowContent.productName}}</h1>
|
|
533
|
+
<div moz-badge [type]="row.subRowContent.status.type">{{row.subRowContent.status.label}}</div>
|
|
534
|
+
</div>
|
|
535
|
+
</ng-template>
|
|
536
|
+
</moz-datatable-row-expansion-content>
|
|
537
|
+
</moz-datatable>
|
|
538
|
+
`,
|
|
539
|
+
}),
|
|
540
|
+
args: {
|
|
541
|
+
selectionSettings: {
|
|
542
|
+
selectionIdentifierFieldKey: 'id',
|
|
543
|
+
allSelected: false,
|
|
544
|
+
totalSelectableItems: 5,
|
|
545
|
+
excludedIds: [],
|
|
546
|
+
selectedIds: [],
|
|
547
|
+
labels: {},
|
|
548
|
+
},
|
|
549
|
+
datatableSettings: {
|
|
550
|
+
activatePagination: true,
|
|
551
|
+
fixHeaderRow: true,
|
|
552
|
+
activateSelection: true,
|
|
553
|
+
columnDefs: [
|
|
554
|
+
{
|
|
555
|
+
field: 'productName',
|
|
556
|
+
headerName: 'Product name',
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
field: 'productId',
|
|
560
|
+
headerName: 'Product id',
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
field: 'discount',
|
|
564
|
+
headerName: 'Discount %',
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
field: 'status',
|
|
568
|
+
headerName: 'Status',
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
field: 'productLink',
|
|
572
|
+
headerName: 'Product link',
|
|
573
|
+
},
|
|
574
|
+
],
|
|
575
|
+
rowData: [
|
|
576
|
+
{
|
|
577
|
+
id: 1,
|
|
578
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
579
|
+
productId: '#123456789',
|
|
580
|
+
discount: 0,
|
|
581
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
582
|
+
productLink: { label: 'Page link', link: '#' },
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
id: 2,
|
|
586
|
+
productName: 'Perceuse à percussion sans fil',
|
|
587
|
+
productId: '#456',
|
|
588
|
+
discount: 0,
|
|
589
|
+
status: { label: 'Online', type: 'success' },
|
|
590
|
+
productLink: { label: 'Page link', link: '#' },
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
id: 3,
|
|
594
|
+
productName: 'Perceuse sans fil',
|
|
595
|
+
productId: '#2345678',
|
|
596
|
+
discount: 0,
|
|
597
|
+
status: { label: 'Online', type: 'success' },
|
|
598
|
+
productLink: { label: 'Page link', link: '#' },
|
|
599
|
+
subRow: {
|
|
600
|
+
productName: 'Perceuse sans fil',
|
|
601
|
+
status: { label: 'Online', type: 'success' },
|
|
602
|
+
},
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
id: 4,
|
|
606
|
+
productName: 'Perceuse à percussion filaire',
|
|
607
|
+
productId: '-',
|
|
608
|
+
discount: 0,
|
|
609
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
610
|
+
productLink: { label: 'Page link', link: '#' },
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
id: 5,
|
|
614
|
+
productName: 'Perceuse visseuse sans fil',
|
|
615
|
+
productId: '#34567',
|
|
616
|
+
discount: 0,
|
|
617
|
+
status: { label: 'Offline', type: 'danger' },
|
|
618
|
+
productLink: { label: 'Page link', link: '#' },
|
|
619
|
+
},
|
|
620
|
+
],
|
|
621
|
+
},
|
|
622
|
+
footerSettings: {
|
|
623
|
+
pagination: {
|
|
624
|
+
totalItems: 6,
|
|
625
|
+
itemsPerPage: 5,
|
|
626
|
+
currentPage: 1,
|
|
627
|
+
rowPerPage: { options: [5, 10, 15, 20], selected: 10 },
|
|
628
|
+
},
|
|
629
|
+
labels: {
|
|
630
|
+
rowPerPage: 'Rows per page',
|
|
631
|
+
items: 'Products',
|
|
632
|
+
page: 'Page',
|
|
633
|
+
of: 'of',
|
|
634
|
+
},
|
|
635
|
+
},
|
|
636
|
+
},
|
|
637
|
+
};
|
|
638
|
+
|
|
639
|
+
export const Loading: Story = {
|
|
640
|
+
render: (args) => ({
|
|
641
|
+
props: args,
|
|
642
|
+
template: `
|
|
643
|
+
<moz-datatable [datatableSettings]="datatableSettings" [footerSettings]="footerSettings" [selectionSettings]="selectionSettings">
|
|
644
|
+
|
|
645
|
+
<moz-datatable-content-cell field="discount">
|
|
646
|
+
<ng-template let-item>
|
|
647
|
+
<input
|
|
648
|
+
moz-input
|
|
649
|
+
type="number"
|
|
650
|
+
placeholder="e.g. 15"
|
|
651
|
+
size="s"
|
|
652
|
+
/>
|
|
653
|
+
</ng-template>
|
|
654
|
+
</moz-datatable-content-cell>
|
|
655
|
+
|
|
656
|
+
<moz-datatable-content-cell field="status">
|
|
657
|
+
<ng-template let-row>
|
|
658
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
659
|
+
</ng-template>
|
|
660
|
+
</moz-datatable-content-cell>
|
|
661
|
+
|
|
662
|
+
<moz-datatable-content-cell field="productLink">
|
|
663
|
+
<ng-template let-row>
|
|
664
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
665
|
+
</ng-template>
|
|
666
|
+
</moz-datatable-content-cell>
|
|
667
|
+
|
|
668
|
+
<moz-datatable-row-expansion-content>
|
|
669
|
+
<ng-template let-row>
|
|
670
|
+
<div style="display: flex; justify-content: center; align-items: center;">
|
|
671
|
+
<h1>{{row.subRowContent.productName}}</h1>
|
|
672
|
+
<div moz-badge [type]="row.subRowContent.status.type">{{row.subRowContent.status.label}}</div>
|
|
673
|
+
</div>
|
|
674
|
+
</ng-template>
|
|
675
|
+
</moz-datatable-row-expansion-content>
|
|
676
|
+
</moz-datatable>
|
|
677
|
+
`,
|
|
678
|
+
}),
|
|
679
|
+
args: {
|
|
680
|
+
selectionSettings: {
|
|
681
|
+
selectionIdentifierFieldKey: 'id',
|
|
682
|
+
allSelected: false,
|
|
683
|
+
totalSelectableItems: 5,
|
|
684
|
+
excludedIds: [],
|
|
685
|
+
selectedIds: [],
|
|
686
|
+
labels: {},
|
|
687
|
+
},
|
|
688
|
+
datatableSettings: {
|
|
689
|
+
isLoading: true,
|
|
690
|
+
activatePagination: true,
|
|
691
|
+
fixHeaderRow: true,
|
|
692
|
+
activateSelection: true,
|
|
693
|
+
columnDefs: [
|
|
694
|
+
{
|
|
695
|
+
field: 'productName',
|
|
696
|
+
headerName: 'Product name',
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
field: 'productId',
|
|
700
|
+
headerName: 'Product id',
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
field: 'discount',
|
|
704
|
+
headerName: 'Discount %',
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
field: 'status',
|
|
708
|
+
headerName: 'status',
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
field: 'productLink',
|
|
712
|
+
headerName: 'product link',
|
|
713
|
+
},
|
|
714
|
+
],
|
|
715
|
+
rowData: [
|
|
716
|
+
{
|
|
717
|
+
id: 1,
|
|
718
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
719
|
+
productId: '#123456789',
|
|
720
|
+
discount: 0,
|
|
721
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
722
|
+
productLink: { label: 'Page link', link: '#' },
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
id: 2,
|
|
726
|
+
productName: 'Perceuse à percussion sans fil',
|
|
727
|
+
productId: '#456',
|
|
728
|
+
discount: 0,
|
|
729
|
+
status: { label: 'Online', type: 'success' },
|
|
730
|
+
productLink: { label: 'Page link', link: '#' },
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
id: 3,
|
|
734
|
+
productName: 'Perceuse sans fil',
|
|
735
|
+
productId: '#2345678',
|
|
736
|
+
discount: 0,
|
|
737
|
+
status: { label: 'Online', type: 'success' },
|
|
738
|
+
productLink: { label: 'Page link', link: '#' },
|
|
739
|
+
subRow: {
|
|
740
|
+
productName: 'Perceuse sans fil',
|
|
741
|
+
status: { label: 'Online', type: 'success' },
|
|
742
|
+
},
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
id: 4,
|
|
746
|
+
productName: 'Perceuse à percussion filaire',
|
|
747
|
+
productId: '-',
|
|
748
|
+
discount: 0,
|
|
749
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
750
|
+
productLink: { label: 'Page link', link: '#' },
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
id: 5,
|
|
754
|
+
productName: 'Perceuse visseuse sans fil',
|
|
755
|
+
productId: '#34567',
|
|
756
|
+
discount: 0,
|
|
757
|
+
status: { label: 'Offline', type: 'danger' },
|
|
758
|
+
productLink: { label: 'Page link', link: '#' },
|
|
759
|
+
},
|
|
760
|
+
],
|
|
761
|
+
},
|
|
762
|
+
footerSettings: {
|
|
763
|
+
pagination: {
|
|
764
|
+
totalItems: 6,
|
|
765
|
+
itemsPerPage: 5,
|
|
766
|
+
currentPage: 1,
|
|
767
|
+
rowPerPage: { options: [5, 10, 15, 20], selected: 10 },
|
|
768
|
+
},
|
|
769
|
+
labels: {
|
|
770
|
+
rowPerPage: 'Rows per page',
|
|
771
|
+
items: 'Products',
|
|
772
|
+
page: 'Page',
|
|
773
|
+
of: 'of',
|
|
774
|
+
},
|
|
775
|
+
},
|
|
776
|
+
},
|
|
777
|
+
};
|
|
778
|
+
|
|
779
|
+
export const WithSubrow: Story = {
|
|
780
|
+
render: (args) => ({
|
|
781
|
+
props: args,
|
|
782
|
+
template: `
|
|
783
|
+
<moz-datatable [datatableSettings]="datatableSettings">
|
|
784
|
+
|
|
785
|
+
<moz-datatable-content-cell field="discount">
|
|
786
|
+
<ng-template let-item>
|
|
787
|
+
<input
|
|
788
|
+
moz-input
|
|
789
|
+
type="number"
|
|
790
|
+
placeholder="e.g. 15"
|
|
791
|
+
size="s"
|
|
792
|
+
/>
|
|
793
|
+
</ng-template>
|
|
794
|
+
</moz-datatable-content-cell>
|
|
795
|
+
|
|
796
|
+
<moz-datatable-content-cell field="status">
|
|
797
|
+
<ng-template let-row>
|
|
798
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
799
|
+
</ng-template>
|
|
800
|
+
</moz-datatable-content-cell>
|
|
801
|
+
|
|
802
|
+
<moz-datatable-content-cell field="productLink">
|
|
803
|
+
<ng-template let-row>
|
|
804
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
805
|
+
</ng-template>
|
|
806
|
+
</moz-datatable-content-cell>
|
|
807
|
+
|
|
808
|
+
<moz-datatable-row-expansion-content>
|
|
809
|
+
<ng-template let-row>
|
|
810
|
+
<div style="display: flex; justify-content: center; align-items: center;">
|
|
811
|
+
<h3> MY OTHER DATATABLE IN SUBROW </h3>
|
|
812
|
+
</div>
|
|
813
|
+
<div style="display: flex; justify-content: center; align-items: center;">
|
|
814
|
+
<h4> content of subrow with row.subRowContent.productName for example : {{row.subRowContent.productName}}</h4>
|
|
815
|
+
</div>
|
|
816
|
+
<div style="display: flex; justify-content: center; align-items: center;">
|
|
817
|
+
<h4> Datatable example in subrow : </h4>
|
|
818
|
+
</div>
|
|
819
|
+
|
|
820
|
+
<moz-datatable [datatableSettings]="datatableSettingsForSubRow" [footerSettings]="footerSettings" [selectionSettings]="selectionSettings">
|
|
821
|
+
|
|
822
|
+
<moz-datatable-content-cell field="discount">
|
|
823
|
+
<ng-template let-item>
|
|
824
|
+
<input
|
|
825
|
+
moz-input
|
|
826
|
+
type="number"
|
|
827
|
+
placeholder="e.g. 15"
|
|
828
|
+
size="s"
|
|
829
|
+
/>
|
|
830
|
+
</ng-template>
|
|
831
|
+
</moz-datatable-content-cell>
|
|
832
|
+
|
|
833
|
+
<moz-datatable-content-cell field="status">
|
|
834
|
+
<ng-template let-row>
|
|
835
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
836
|
+
</ng-template>
|
|
837
|
+
</moz-datatable-content-cell>
|
|
838
|
+
|
|
839
|
+
<moz-datatable-content-cell field="productLink">
|
|
840
|
+
<ng-template let-row>
|
|
841
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
842
|
+
</ng-template>
|
|
843
|
+
</moz-datatable-content-cell>
|
|
844
|
+
|
|
845
|
+
</moz-datatable>
|
|
846
|
+
</ng-template>
|
|
847
|
+
</moz-datatable-row-expansion-content>
|
|
848
|
+
|
|
849
|
+
</moz-datatable>
|
|
850
|
+
`,
|
|
851
|
+
}),
|
|
852
|
+
args: {
|
|
853
|
+
datatableSettingsForSubRow: {
|
|
854
|
+
columnDefs: [
|
|
855
|
+
{
|
|
856
|
+
field: 'productName',
|
|
857
|
+
headerName: 'Product name',
|
|
858
|
+
},
|
|
859
|
+
],
|
|
860
|
+
rowData: [
|
|
861
|
+
{
|
|
862
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
productName: 'Perceuse à percussion sans fil',
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
productName: 'Perceuse sans fil',
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
productName: 'Perceuse à percussion filaire',
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
productName: 'Perceuse visseuse sans fil',
|
|
875
|
+
},
|
|
876
|
+
],
|
|
877
|
+
},
|
|
878
|
+
datatableSettings: {
|
|
879
|
+
columnDefs: [
|
|
880
|
+
{
|
|
881
|
+
field: 'productName',
|
|
882
|
+
headerName: 'Product name',
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
field: 'productId',
|
|
886
|
+
headerName: 'Product id',
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
field: 'discount',
|
|
890
|
+
headerName: 'Discount %',
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
field: 'status',
|
|
894
|
+
headerName: 'status',
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
field: 'productLink',
|
|
898
|
+
headerName: 'product link',
|
|
899
|
+
},
|
|
900
|
+
],
|
|
901
|
+
rowData: [
|
|
902
|
+
{
|
|
903
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
904
|
+
productId: '#123456789',
|
|
905
|
+
discount: 0,
|
|
906
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
907
|
+
productLink: { label: 'Page link', link: '#' },
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
productName: 'Perceuse à percussion sans fil',
|
|
911
|
+
productId: '#456',
|
|
912
|
+
discount: 0,
|
|
913
|
+
status: { label: 'Online', type: 'success' },
|
|
914
|
+
productLink: { label: 'Page link', link: '#' },
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
productName: 'Perceuse sans fil',
|
|
918
|
+
productId: '#2345678',
|
|
919
|
+
discount: 0,
|
|
920
|
+
status: { label: 'Online', type: 'success' },
|
|
921
|
+
productLink: { label: 'Page link', link: '#' },
|
|
922
|
+
subRow: {
|
|
923
|
+
productName: 'Perceuse sans fil',
|
|
924
|
+
status: { label: 'Online', type: 'success' },
|
|
925
|
+
},
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
productName: 'Perceuse à percussion filaire',
|
|
929
|
+
productId: '-',
|
|
930
|
+
discount: 0,
|
|
931
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
932
|
+
productLink: { label: 'Page link', link: '#' },
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
productName: 'Perceuse visseuse sans fil',
|
|
936
|
+
productId: '#34567',
|
|
937
|
+
discount: 0,
|
|
938
|
+
status: { label: 'Offline', type: 'danger' },
|
|
939
|
+
productLink: { label: 'Page link', link: '#' },
|
|
940
|
+
},
|
|
941
|
+
],
|
|
942
|
+
},
|
|
943
|
+
} as any,
|
|
944
|
+
};
|
|
945
|
+
|
|
946
|
+
export const WithManageColumns: Story = {
|
|
947
|
+
render: (args) => ({
|
|
948
|
+
props: args,
|
|
949
|
+
template: `
|
|
950
|
+
<moz-datatable [datatableSettings]="datatableSettings" [footerSettings]="footerSettings" [selectionSettings]="selectionSettings">
|
|
951
|
+
|
|
952
|
+
<moz-datatable-caption>
|
|
953
|
+
<ng-container edition>
|
|
954
|
+
<button
|
|
955
|
+
moz-button
|
|
956
|
+
size="s"
|
|
957
|
+
variation="bordered"
|
|
958
|
+
widthBehavior="fit"
|
|
959
|
+
theme="neutral"
|
|
960
|
+
[onlyIcon]="true"
|
|
961
|
+
>
|
|
962
|
+
<moz-icon iconName="Navigation_Publish_Edit_24px"></moz-icon>
|
|
963
|
+
</button>
|
|
964
|
+
<button
|
|
965
|
+
moz-button
|
|
966
|
+
size="s"
|
|
967
|
+
variation="bordered"
|
|
968
|
+
widthBehavior="fit"
|
|
969
|
+
theme="neutral"
|
|
970
|
+
[onlyIcon]="true"
|
|
971
|
+
>
|
|
972
|
+
<moz-icon iconName="Media_Download_Web_24px"></moz-icon>
|
|
973
|
+
</button>
|
|
974
|
+
</ng-container>
|
|
975
|
+
<ng-container actions>
|
|
976
|
+
<div>
|
|
977
|
+
<moz-toggle size="s">Slot toggle</moz-toggle>
|
|
978
|
+
</div>
|
|
979
|
+
<div>
|
|
980
|
+
<input moz-input type="search" placeholder="This is a SLOT text input" size="s" />
|
|
981
|
+
</div>
|
|
982
|
+
<button moz-button size="s" variation="bordered" widthBehavior="fit">
|
|
983
|
+
<moz-icon iconName="Navigation_Display_Filter_24px"></moz-icon>
|
|
984
|
+
Filters
|
|
985
|
+
</button>
|
|
986
|
+
<moz-datatable-management [datatableSettings]="datatableSettings"></moz-datatable-management>
|
|
987
|
+
<button moz-button size="s">Primary action</button>
|
|
988
|
+
<button moz-button size="s" theme="danger" variation="bordered">Negative action</button>
|
|
989
|
+
</ng-container>
|
|
990
|
+
<ng-container filters>
|
|
991
|
+
<moz-tag type="removable" size="s">
|
|
992
|
+
slot tag 1
|
|
993
|
+
</moz-tag>
|
|
994
|
+
<moz-tag type="removable" size="s">
|
|
995
|
+
slot tag 2
|
|
996
|
+
</moz-tag>
|
|
997
|
+
</ng-container>
|
|
998
|
+
</moz-datatable-caption>
|
|
999
|
+
|
|
1000
|
+
<moz-datatable-content-cell field="discount">
|
|
1001
|
+
<ng-template let-item>
|
|
1002
|
+
<input
|
|
1003
|
+
moz-input
|
|
1004
|
+
type="number"
|
|
1005
|
+
placeholder="e.g. 15"
|
|
1006
|
+
size="s"
|
|
1007
|
+
/>
|
|
1008
|
+
</ng-template>
|
|
1009
|
+
</moz-datatable-content-cell>
|
|
1010
|
+
|
|
1011
|
+
<moz-datatable-content-cell field="status">
|
|
1012
|
+
<ng-template let-row>
|
|
1013
|
+
<div moz-badge [type]="row.content.type">{{row.content.label}}</div>
|
|
1014
|
+
</ng-template>
|
|
1015
|
+
</moz-datatable-content-cell>
|
|
1016
|
+
|
|
1017
|
+
<moz-datatable-content-cell field="productLink">
|
|
1018
|
+
<ng-template let-row>
|
|
1019
|
+
<a href="{{row.content.link}}">{{row.content.label}}</a>
|
|
1020
|
+
</ng-template>
|
|
1021
|
+
</moz-datatable-content-cell>
|
|
1022
|
+
</moz-datatable>
|
|
1023
|
+
`,
|
|
1024
|
+
}),
|
|
1025
|
+
args: {
|
|
1026
|
+
selectionSettings: {
|
|
1027
|
+
selectionIdentifierFieldKey: 'id',
|
|
1028
|
+
allSelected: false,
|
|
1029
|
+
totalSelectableItems: 5,
|
|
1030
|
+
excludedIds: [],
|
|
1031
|
+
selectedIds: [],
|
|
1032
|
+
labels: {},
|
|
1033
|
+
},
|
|
1034
|
+
datatableSettings: {
|
|
1035
|
+
activatePagination: true,
|
|
1036
|
+
fixHeaderRow: true,
|
|
1037
|
+
activateSelection: true,
|
|
1038
|
+
columnDefs: [
|
|
1039
|
+
{
|
|
1040
|
+
field: 'productName',
|
|
1041
|
+
headerName: 'Product name',
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
field: 'productId',
|
|
1045
|
+
headerName: 'Product id',
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
field: 'discount',
|
|
1049
|
+
headerName: 'Discount %',
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
field: 'status',
|
|
1053
|
+
headerName: 'Status',
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
field: 'productLink',
|
|
1057
|
+
headerName: 'Product link',
|
|
1058
|
+
},
|
|
1059
|
+
],
|
|
1060
|
+
rowData: [
|
|
1061
|
+
{
|
|
1062
|
+
id: 1,
|
|
1063
|
+
productName: 'Perceuse-visseuse à Percussion',
|
|
1064
|
+
productId: '#123456789',
|
|
1065
|
+
discount: 0,
|
|
1066
|
+
status: { label: 'Waiting for approval', type: 'warning' },
|
|
1067
|
+
productLink: { label: 'Page link', link: '#' },
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
id: 2,
|
|
1071
|
+
productName: 'Perceuse à percussion sans fil',
|
|
1072
|
+
productId: '#456',
|
|
1073
|
+
discount: 0,
|
|
1074
|
+
status: { label: 'Online', type: 'success' },
|
|
1075
|
+
productLink: { label: 'Page link', link: '#' },
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
id: 3,
|
|
1079
|
+
productName: 'Perceuse sans fil',
|
|
1080
|
+
productId: '#2345678',
|
|
1081
|
+
discount: 0,
|
|
1082
|
+
status: { label: 'Online', type: 'success' },
|
|
1083
|
+
productLink: { label: 'Page link', link: '#' },
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
id: 4,
|
|
1087
|
+
productName: 'Perceuse à percussion filaire',
|
|
1088
|
+
productId: '-',
|
|
1089
|
+
discount: 0,
|
|
1090
|
+
status: { label: 'Draft', type: 'neutral' },
|
|
1091
|
+
productLink: { label: 'Page link', link: '#' },
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
id: 5,
|
|
1095
|
+
productName: 'Perceuse visseuse sans fil',
|
|
1096
|
+
productId: '#34567',
|
|
1097
|
+
discount: 0,
|
|
1098
|
+
status: { label: 'Offline', type: 'danger' },
|
|
1099
|
+
productLink: { label: 'Page link', link: '#' },
|
|
1100
|
+
},
|
|
1101
|
+
],
|
|
1102
|
+
},
|
|
1103
|
+
footerSettings: {
|
|
1104
|
+
pagination: {
|
|
1105
|
+
totalItems: 6,
|
|
1106
|
+
itemsPerPage: 5,
|
|
1107
|
+
currentPage: 1,
|
|
1108
|
+
rowPerPage: { options: [5, 10, 15, 20], selected: 10 },
|
|
1109
|
+
},
|
|
1110
|
+
labels: {
|
|
1111
|
+
rowPerPage: 'Rows per page',
|
|
1112
|
+
items: 'Products',
|
|
1113
|
+
page: 'Page',
|
|
1114
|
+
of: 'of',
|
|
1115
|
+
},
|
|
1116
|
+
},
|
|
1117
|
+
},
|
|
1118
|
+
};
|