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