@mozaic-ds/angular 0.21.0 → 0.22.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1969) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +92 -0
  3. package/dist/mozaic-angular/README.md +0 -0
  4. package/dist/mozaic-angular/adeo/README.md +0 -0
  5. package/dist/mozaic-angular/adeo/assets/tokens/adeo/android/colors.xml +482 -0
  6. package/dist/mozaic-angular/adeo/assets/tokens/adeo/android/font_dimens.xml +18 -0
  7. package/dist/mozaic-angular/adeo/assets/tokens/adeo/css/_variables.scss +626 -0
  8. package/dist/mozaic-angular/adeo/assets/tokens/adeo/css/root.scss +478 -0
  9. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
  10. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
  11. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
  12. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
  13. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
  14. package/dist/mozaic-angular/adeo/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
  15. package/dist/mozaic-angular/adeo/assets/tokens/adeo/js/tokens.js +574 -0
  16. package/dist/mozaic-angular/adeo/assets/tokens/adeo/js/tokensObject.js +9637 -0
  17. package/dist/mozaic-angular/adeo/assets/tokens/adeo/scss/_tokens.scss +1617 -0
  18. package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.module.mjs +15 -0
  19. package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.service.mjs +30 -0
  20. package/dist/mozaic-angular/adeo/esm2020/common/global-events/public-api.mjs +3 -0
  21. package/dist/mozaic-angular/adeo/esm2020/common/index.mjs +3 -0
  22. package/dist/mozaic-angular/adeo/esm2020/common/utils/boolean-property.mjs +4 -0
  23. package/dist/mozaic-angular/adeo/esm2020/common/utils/generate-id.mjs +7 -0
  24. package/dist/mozaic-angular/adeo/esm2020/common/utils/get-random-number.mjs +6 -0
  25. package/dist/mozaic-angular/adeo/esm2020/common/utils/index.mjs +5 -0
  26. package/dist/mozaic-angular/adeo/esm2020/common/utils/overwrite-style.mjs +5 -0
  27. package/dist/mozaic-angular/adeo/esm2020/common/utils/public-api.mjs +2 -0
  28. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.component.mjs +30 -0
  29. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.mjs +2 -0
  30. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.module.mjs +18 -0
  31. package/dist/mozaic-angular/adeo/esm2020/components/badge/index.mjs +3 -0
  32. package/dist/mozaic-angular/adeo/esm2020/components/button/button.component.mjs +53 -0
  33. package/dist/mozaic-angular/adeo/esm2020/components/button/button.mjs +2 -0
  34. package/dist/mozaic-angular/adeo/esm2020/components/button/button.module.mjs +18 -0
  35. package/dist/mozaic-angular/adeo/esm2020/components/button/index.mjs +3 -0
  36. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.component.mjs +58 -0
  37. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.module.mjs +21 -0
  38. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/public-api.mjs +3 -0
  39. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-config.mjs +9 -0
  40. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-injector.mjs +22 -0
  41. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-ref.mjs +49 -0
  42. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/index.mjs +4 -0
  43. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog-animation.mjs +18 -0
  44. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.component.mjs +57 -0
  45. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.module.mjs +20 -0
  46. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.service.mjs +67 -0
  47. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-config.mjs +2 -0
  48. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-di-params.mjs +2 -0
  49. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-ref.mjs +2 -0
  50. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/index.mjs +4 -0
  51. package/dist/mozaic-angular/adeo/esm2020/components/dialog/public-api.mjs +6 -0
  52. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-config.token.mjs +3 -0
  53. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-data.token.mjs +3 -0
  54. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-ref.token.mjs +3 -0
  55. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/index.mjs +4 -0
  56. package/dist/mozaic-angular/adeo/esm2020/components/field/directives/input-icon.directive.mjs +15 -0
  57. package/dist/mozaic-angular/adeo/esm2020/components/field/field-error.component.mjs +13 -0
  58. package/dist/mozaic-angular/adeo/esm2020/components/field/field.component.mjs +40 -0
  59. package/dist/mozaic-angular/adeo/esm2020/components/field/field.module.mjs +20 -0
  60. package/dist/mozaic-angular/adeo/esm2020/components/field/public-api.mjs +5 -0
  61. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon-size.mjs +8 -0
  62. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.component.mjs +49 -0
  63. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.module.mjs +18 -0
  64. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.service.mjs +42 -0
  65. package/dist/mozaic-angular/adeo/esm2020/components/icon/public-api.mjs +4 -0
  66. package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-injector.mjs +22 -0
  67. package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-ref.mjs +38 -0
  68. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/index.mjs +4 -0
  69. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-config.mjs +2 -0
  70. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-di-params.mjs +2 -0
  71. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-ref.mjs +2 -0
  72. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer-animation.mjs +18 -0
  73. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.component.mjs +40 -0
  74. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.module.mjs +21 -0
  75. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.service.mjs +56 -0
  76. package/dist/mozaic-angular/adeo/esm2020/components/layer/public-api.mjs +6 -0
  77. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/index.mjs +4 -0
  78. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-config.token.mjs +3 -0
  79. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-data.token.mjs +3 -0
  80. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-ref.token.mjs +3 -0
  81. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.component.mjs +47 -0
  82. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.mjs +11 -0
  83. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.module.mjs +20 -0
  84. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.service.mjs +53 -0
  85. package/dist/mozaic-angular/adeo/esm2020/components/loader/public-api.mjs +4 -0
  86. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-animation.mjs +21 -0
  87. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-container.component.mjs +38 -0
  88. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-footer.mjs +11 -0
  89. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-message.mjs +11 -0
  90. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-title.mjs +11 -0
  91. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.component.mjs +29 -0
  92. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.mjs +8 -0
  93. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.module.mjs +66 -0
  94. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.service.mjs +40 -0
  95. package/dist/mozaic-angular/adeo/esm2020/components/notification/public-api.mjs +9 -0
  96. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.component.mjs +133 -0
  97. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.mjs +4 -0
  98. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.module.mjs +23 -0
  99. package/dist/mozaic-angular/adeo/esm2020/components/pagination/public-api.mjs +3 -0
  100. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-size.mjs +2 -0
  101. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-theme.mjs +2 -0
  102. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +38 -0
  103. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.module.mjs +18 -0
  104. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/public-api.mjs +3 -0
  105. package/dist/mozaic-angular/adeo/esm2020/components/public-api.mjs +20 -0
  106. package/dist/mozaic-angular/adeo/esm2020/components/select/public-api.mjs +3 -0
  107. package/dist/mozaic-angular/adeo/esm2020/components/select/select-size.mjs +6 -0
  108. package/dist/mozaic-angular/adeo/esm2020/components/select/select.component.mjs +25 -0
  109. package/dist/mozaic-angular/adeo/esm2020/components/select/select.module.mjs +18 -0
  110. package/dist/mozaic-angular/adeo/esm2020/components/stepper/public-api.mjs +4 -0
  111. package/dist/mozaic-angular/adeo/esm2020/components/stepper/step-state.mjs +2 -0
  112. package/dist/mozaic-angular/adeo/esm2020/components/stepper/step.component.mjs +51 -0
  113. package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.component.mjs +79 -0
  114. package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.module.mjs +20 -0
  115. package/dist/mozaic-angular/adeo/esm2020/components/tabs/public-api.mjs +4 -0
  116. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab-selectors.mjs +3 -0
  117. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab.component.mjs +53 -0
  118. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.component.mjs +126 -0
  119. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.module.mjs +19 -0
  120. package/dist/mozaic-angular/adeo/esm2020/components/tag/public-api.mjs +3 -0
  121. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag-type.mjs +2 -0
  122. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.component.mjs +61 -0
  123. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.module.mjs +19 -0
  124. package/dist/mozaic-angular/adeo/esm2020/components/text-area/public-api.mjs +3 -0
  125. package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.component.mjs +43 -0
  126. package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.module.mjs +16 -0
  127. package/dist/mozaic-angular/adeo/esm2020/components/text-input/public-api.mjs +3 -0
  128. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.component.mjs +64 -0
  129. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.mjs +2 -0
  130. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.module.mjs +20 -0
  131. package/dist/mozaic-angular/adeo/esm2020/components/toggle/public-api.mjs +3 -0
  132. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle-size.mjs +2 -0
  133. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.component.mjs +59 -0
  134. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.module.mjs +18 -0
  135. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/public-api.mjs +3 -0
  136. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip-position.mjs +2 -0
  137. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.component.mjs +32 -0
  138. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.module.mjs +18 -0
  139. package/dist/mozaic-angular/adeo/esm2020/mozaic-ds-angular.mjs +5 -0
  140. package/dist/mozaic-angular/adeo/esm2020/public-api.mjs +3 -0
  141. package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs +2052 -0
  142. package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs.map +1 -0
  143. package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs +2025 -0
  144. package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs.map +1 -0
  145. package/dist/mozaic-angular/adeo/package.json +31 -0
  146. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_24px.svg +1 -0
  147. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_32px.svg +1 -0
  148. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_48px.svg +1 -0
  149. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_64px.svg +1 -0
  150. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_24px.svg +1 -0
  151. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_32px.svg +1 -0
  152. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_48px.svg +1 -0
  153. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_64px.svg +1 -0
  154. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_24px.svg +1 -0
  155. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_32px.svg +1 -0
  156. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_48px.svg +1 -0
  157. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_64px.svg +1 -0
  158. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_24px.svg +1 -0
  159. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_32px.svg +1 -0
  160. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_48px.svg +1 -0
  161. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_64px.svg +1 -0
  162. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_24px.svg +1 -0
  163. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_32px.svg +1 -0
  164. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_48px.svg +1 -0
  165. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_64px.svg +1 -0
  166. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_24px.svg +1 -0
  167. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_32px.svg +1 -0
  168. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_48px.svg +1 -0
  169. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_64px.svg +1 -0
  170. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_24px.svg +1 -0
  171. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_32px.svg +1 -0
  172. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_48px.svg +1 -0
  173. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_64px.svg +1 -0
  174. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_32px.svg +1 -0
  175. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_48px.svg +1 -0
  176. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_64px.svg +1 -0
  177. package/dist/mozaic-angular/assets/moz-icons/Media_Release_24px.svg +1 -0
  178. package/dist/mozaic-angular/assets/moz-icons/Media_Release_32px.svg +1 -0
  179. package/dist/mozaic-angular/assets/moz-icons/Media_Release_48px.svg +1 -0
  180. package/dist/mozaic-angular/assets/moz-icons/Media_Release_64px.svg +1 -0
  181. package/dist/mozaic-angular/assets/moz-icons/Media_Server_24px.svg +1 -0
  182. package/dist/mozaic-angular/assets/moz-icons/Media_Server_32px.svg +1 -0
  183. package/dist/mozaic-angular/assets/moz-icons/Media_Server_48px.svg +1 -0
  184. package/dist/mozaic-angular/assets/moz-icons/Media_Server_64px.svg +1 -0
  185. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_24px.svg +1 -0
  186. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_32px.svg +1 -0
  187. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_48px.svg +1 -0
  188. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_64px.svg +1 -0
  189. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_24px.svg +1 -0
  190. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_32px.svg +1 -0
  191. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_48px.svg +1 -0
  192. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_64px.svg +1 -0
  193. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_24px.svg +1 -0
  194. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_32px.svg +1 -0
  195. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_48px.svg +1 -0
  196. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_64px.svg +1 -0
  197. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_24px.svg +1 -0
  198. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_32px.svg +1 -0
  199. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_48px.svg +1 -0
  200. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_64px.svg +1 -0
  201. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_24px.svg +1 -0
  202. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_32px.svg +1 -0
  203. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_48px.svg +1 -0
  204. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_64px.svg +1 -0
  205. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_24px.svg +1 -0
  206. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_32px.svg +1 -0
  207. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_48px.svg +1 -0
  208. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_64px.svg +1 -0
  209. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_24px.svg +1 -0
  210. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_32px.svg +1 -0
  211. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_48px.svg +1 -0
  212. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_64px.svg +1 -0
  213. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_24px.svg +1 -0
  214. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_32px.svg +1 -0
  215. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_48px.svg +1 -0
  216. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_64px.svg +1 -0
  217. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_24px.svg +1 -0
  218. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_32px.svg +1 -0
  219. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_48px.svg +1 -0
  220. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_64px.svg +1 -0
  221. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_24px.svg +1 -0
  222. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_32px.svg +1 -0
  223. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_48px.svg +1 -0
  224. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_64px.svg +1 -0
  225. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_24px.svg +1 -0
  226. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_32px.svg +1 -0
  227. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_48px.svg +1 -0
  228. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_64px.svg +1 -0
  229. package/dist/mozaic-angular/assets/moz-icons/Various_Company_24px.svg +1 -0
  230. package/dist/mozaic-angular/assets/moz-icons/Various_Company_32px.svg +1 -0
  231. package/dist/mozaic-angular/assets/moz-icons/Various_Company_48px.svg +1 -0
  232. package/dist/mozaic-angular/assets/moz-icons/Various_Company_64px.svg +1 -0
  233. package/dist/mozaic-angular/assets/special-icons/checkbox-checked-disabled.svg +3 -0
  234. package/dist/mozaic-angular/assets/special-icons/checkbox-checked.svg +3 -0
  235. package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate-disabled.svg +3 -0
  236. package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate.svg +3 -0
  237. package/dist/mozaic-angular/assets/special-icons/invalid-cross.svg +3 -0
  238. package/dist/mozaic-angular/assets/special-icons/layer-cross.svg +3 -0
  239. package/dist/mozaic-angular/assets/special-icons/notification-danger-m.svg +4 -0
  240. package/dist/mozaic-angular/assets/special-icons/notification-danger-s.svg +4 -0
  241. package/dist/mozaic-angular/assets/special-icons/notification-information-m.svg +5 -0
  242. package/dist/mozaic-angular/assets/special-icons/notification-information-s.svg +5 -0
  243. package/dist/mozaic-angular/assets/special-icons/notification-success-m.svg +4 -0
  244. package/dist/mozaic-angular/assets/special-icons/notification-success-s.svg +4 -0
  245. package/dist/mozaic-angular/assets/special-icons/notification-warning-m.svg +5 -0
  246. package/dist/mozaic-angular/assets/special-icons/notification-warning-s.svg +5 -0
  247. package/dist/mozaic-angular/assets/special-icons/remove-tag.svg +3 -0
  248. package/dist/mozaic-angular/assets/special-icons/toggle-checked-disabled.svg +3 -0
  249. package/dist/mozaic-angular/assets/special-icons/toggle-checked.svg +3 -0
  250. package/dist/mozaic-angular/assets/special-icons/toggle-cross-disabled.svg +3 -0
  251. package/dist/mozaic-angular/assets/special-icons/toggle-cross.svg +3 -0
  252. package/dist/mozaic-angular/assets/special-icons/tooltip-triangle.svg +3 -0
  253. package/dist/mozaic-angular/assets/special-icons/valid-check-mark.svg +11 -0
  254. package/dist/mozaic-angular/assets/tokens/adeo/android/colors.xml +482 -0
  255. package/dist/mozaic-angular/assets/tokens/adeo/android/font_dimens.xml +18 -0
  256. package/dist/mozaic-angular/assets/tokens/adeo/css/_variables.scss +626 -0
  257. package/dist/mozaic-angular/assets/tokens/adeo/css/root.scss +478 -0
  258. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
  259. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
  260. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
  261. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
  262. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
  263. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
  264. package/dist/mozaic-angular/assets/tokens/adeo/js/tokens.js +574 -0
  265. package/dist/mozaic-angular/assets/tokens/adeo/js/tokensObject.js +9637 -0
  266. package/dist/mozaic-angular/assets/tokens/adeo/scss/_tokens.scss +1617 -0
  267. package/dist/mozaic-angular/common/global-events/global-events.module.d.ts +6 -0
  268. package/dist/mozaic-angular/common/global-events/global-events.service.d.ts +11 -0
  269. package/dist/mozaic-angular/common/global-events/public-api.d.ts +2 -0
  270. package/dist/mozaic-angular/common/index.d.ts +2 -0
  271. package/dist/mozaic-angular/common/utils/boolean-property.d.ts +1 -0
  272. package/dist/mozaic-angular/common/utils/generate-id.d.ts +1 -0
  273. package/dist/mozaic-angular/common/utils/get-random-number.d.ts +1 -0
  274. package/dist/mozaic-angular/common/utils/index.d.ts +4 -0
  275. package/dist/mozaic-angular/common/utils/overwrite-style.d.ts +2 -0
  276. package/dist/mozaic-angular/common/utils/public-api.d.ts +1 -0
  277. package/dist/mozaic-angular/components/badge/badge.component.d.ts +8 -0
  278. package/dist/mozaic-angular/components/badge/badge.d.ts +3 -0
  279. package/dist/mozaic-angular/components/badge/badge.module.d.ts +8 -0
  280. package/dist/mozaic-angular/components/badge/index.d.ts +2 -0
  281. package/dist/mozaic-angular/components/button/button.component.d.ts +16 -0
  282. package/dist/mozaic-angular/components/button/button.d.ts +7 -0
  283. package/dist/mozaic-angular/components/button/button.module.d.ts +8 -0
  284. package/dist/mozaic-angular/components/button/index.d.ts +2 -0
  285. package/dist/mozaic-angular/components/checkbox/checkbox.component.d.ts +21 -0
  286. package/dist/mozaic-angular/components/checkbox/checkbox.module.d.ts +8 -0
  287. package/dist/mozaic-angular/components/checkbox/public-api.d.ts +2 -0
  288. package/dist/mozaic-angular/components/dialog/classes/dialog-config.d.ts +9 -0
  289. package/dist/mozaic-angular/components/dialog/classes/dialog-injector.d.ts +10 -0
  290. package/dist/mozaic-angular/components/dialog/classes/dialog-ref.d.ts +25 -0
  291. package/dist/mozaic-angular/components/dialog/classes/index.d.ts +3 -0
  292. package/dist/mozaic-angular/components/dialog/dialog-animation.d.ts +1 -0
  293. package/dist/mozaic-angular/components/dialog/dialog.component.d.ts +23 -0
  294. package/dist/mozaic-angular/components/dialog/dialog.module.d.ts +8 -0
  295. package/dist/mozaic-angular/components/dialog/dialog.service.d.ts +20 -0
  296. package/dist/mozaic-angular/components/dialog/interfaces/dialog-config.d.ts +7 -0
  297. package/dist/mozaic-angular/components/dialog/interfaces/dialog-di-params.d.ts +6 -0
  298. package/dist/mozaic-angular/components/dialog/interfaces/dialog-ref.d.ts +18 -0
  299. package/dist/mozaic-angular/components/dialog/interfaces/index.d.ts +3 -0
  300. package/dist/mozaic-angular/components/dialog/public-api.d.ts +5 -0
  301. package/dist/mozaic-angular/components/dialog/tokens/dialog-config.token.d.ts +2 -0
  302. package/dist/mozaic-angular/components/dialog/tokens/dialog-data.token.d.ts +2 -0
  303. package/dist/mozaic-angular/components/dialog/tokens/dialog-ref.token.d.ts +2 -0
  304. package/dist/mozaic-angular/components/dialog/tokens/index.d.ts +3 -0
  305. package/dist/mozaic-angular/components/field/directives/input-icon.directive.d.ts +7 -0
  306. package/dist/mozaic-angular/components/field/field-error.component.d.ts +5 -0
  307. package/dist/mozaic-angular/components/field/field.component.d.ts +16 -0
  308. package/dist/mozaic-angular/components/field/field.module.d.ts +10 -0
  309. package/dist/mozaic-angular/components/field/public-api.d.ts +4 -0
  310. package/dist/mozaic-angular/components/icon/icon-size.d.ts +6 -0
  311. package/dist/mozaic-angular/components/icon/icon.component.d.ts +15 -0
  312. package/dist/mozaic-angular/components/icon/icon.module.d.ts +8 -0
  313. package/dist/mozaic-angular/components/icon/icon.service.d.ts +13 -0
  314. package/dist/mozaic-angular/components/icon/public-api.d.ts +3 -0
  315. package/dist/mozaic-angular/components/layer/classes/layer-injector.d.ts +10 -0
  316. package/dist/mozaic-angular/components/layer/classes/layer-ref.d.ts +21 -0
  317. package/dist/mozaic-angular/components/layer/interfaces/index.d.ts +3 -0
  318. package/dist/mozaic-angular/components/layer/interfaces/layer-config.d.ts +4 -0
  319. package/dist/mozaic-angular/components/layer/interfaces/layer-di-params.d.ts +6 -0
  320. package/dist/mozaic-angular/components/layer/interfaces/layer-ref.d.ts +15 -0
  321. package/dist/mozaic-angular/components/layer/layer-animation.d.ts +1 -0
  322. package/dist/mozaic-angular/components/layer/layer.component.d.ts +19 -0
  323. package/dist/mozaic-angular/components/layer/layer.module.d.ts +9 -0
  324. package/dist/mozaic-angular/components/layer/layer.service.d.ts +19 -0
  325. package/dist/mozaic-angular/components/layer/public-api.d.ts +5 -0
  326. package/dist/mozaic-angular/components/layer/tokens/index.d.ts +3 -0
  327. package/dist/mozaic-angular/components/layer/tokens/layer-config.token.d.ts +2 -0
  328. package/dist/mozaic-angular/components/layer/tokens/layer-data.token.d.ts +2 -0
  329. package/dist/mozaic-angular/components/layer/tokens/layer-ref.token.d.ts +2 -0
  330. package/dist/mozaic-angular/components/loader/loader.component.d.ts +25 -0
  331. package/dist/mozaic-angular/components/loader/loader.d.ts +16 -0
  332. package/dist/mozaic-angular/components/loader/loader.module.d.ts +8 -0
  333. package/dist/mozaic-angular/components/loader/loader.service.d.ts +18 -0
  334. package/dist/mozaic-angular/components/loader/public-api.d.ts +3 -0
  335. package/dist/mozaic-angular/components/notification/notification-animation.d.ts +1 -0
  336. package/dist/mozaic-angular/components/notification/notification-container.component.d.ts +12 -0
  337. package/dist/mozaic-angular/components/notification/notification-footer.d.ts +5 -0
  338. package/dist/mozaic-angular/components/notification/notification-message.d.ts +5 -0
  339. package/dist/mozaic-angular/components/notification/notification-title.d.ts +5 -0
  340. package/dist/mozaic-angular/components/notification/notification.component.d.ts +9 -0
  341. package/dist/mozaic-angular/components/notification/notification.d.ts +15 -0
  342. package/dist/mozaic-angular/components/notification/notification.module.d.ts +15 -0
  343. package/dist/mozaic-angular/components/notification/notification.service.d.ts +16 -0
  344. package/dist/mozaic-angular/components/notification/public-api.d.ts +8 -0
  345. package/dist/mozaic-angular/components/pagination/pagination.component.d.ts +46 -0
  346. package/dist/mozaic-angular/components/pagination/pagination.d.ts +7 -0
  347. package/dist/mozaic-angular/components/pagination/pagination.module.d.ts +13 -0
  348. package/dist/mozaic-angular/components/pagination/public-api.d.ts +2 -0
  349. package/dist/mozaic-angular/components/progress-bar/progress-bar-size.d.ts +1 -0
  350. package/dist/mozaic-angular/components/progress-bar/progress-bar-theme.d.ts +1 -0
  351. package/dist/mozaic-angular/components/progress-bar/progress-bar.component.d.ts +15 -0
  352. package/dist/mozaic-angular/components/progress-bar/progress-bar.module.d.ts +8 -0
  353. package/dist/mozaic-angular/components/progress-bar/public-api.d.ts +2 -0
  354. package/dist/mozaic-angular/components/public-api.d.ts +19 -0
  355. package/dist/mozaic-angular/components/select/public-api.d.ts +2 -0
  356. package/dist/mozaic-angular/components/select/select-size.d.ts +5 -0
  357. package/dist/mozaic-angular/components/select/select.component.d.ts +8 -0
  358. package/dist/mozaic-angular/components/select/select.module.d.ts +8 -0
  359. package/dist/mozaic-angular/components/stepper/public-api.d.ts +3 -0
  360. package/dist/mozaic-angular/components/stepper/step-state.d.ts +1 -0
  361. package/dist/mozaic-angular/components/stepper/step.component.d.ts +20 -0
  362. package/dist/mozaic-angular/components/stepper/stepper.component.d.ts +20 -0
  363. package/dist/mozaic-angular/components/stepper/stepper.module.d.ts +10 -0
  364. package/dist/mozaic-angular/components/tabs/public-api.d.ts +3 -0
  365. package/dist/mozaic-angular/components/tabs/tab-selectors.d.ts +2 -0
  366. package/dist/mozaic-angular/components/tabs/tab.component.d.ts +16 -0
  367. package/dist/mozaic-angular/components/tabs/tabs.component.d.ts +36 -0
  368. package/dist/mozaic-angular/components/tabs/tabs.module.d.ts +9 -0
  369. package/dist/mozaic-angular/components/tag/public-api.d.ts +2 -0
  370. package/dist/mozaic-angular/components/tag/tag-type.d.ts +1 -0
  371. package/dist/mozaic-angular/components/tag/tag.component.d.ts +23 -0
  372. package/dist/mozaic-angular/components/tag/tag.module.d.ts +9 -0
  373. package/dist/mozaic-angular/components/text-area/public-api.d.ts +2 -0
  374. package/dist/mozaic-angular/components/text-area/text-area.component.d.ts +12 -0
  375. package/dist/mozaic-angular/components/text-area/text-area.module.d.ts +7 -0
  376. package/dist/mozaic-angular/components/text-input/public-api.d.ts +2 -0
  377. package/dist/mozaic-angular/components/text-input/text-input.component.d.ts +21 -0
  378. package/dist/mozaic-angular/components/text-input/text-input.d.ts +1 -0
  379. package/dist/mozaic-angular/components/text-input/text-input.module.d.ts +10 -0
  380. package/dist/mozaic-angular/components/toggle/public-api.d.ts +2 -0
  381. package/dist/mozaic-angular/components/toggle/toggle-size.d.ts +1 -0
  382. package/dist/mozaic-angular/components/toggle/toggle.component.d.ts +22 -0
  383. package/dist/mozaic-angular/components/toggle/toggle.module.d.ts +8 -0
  384. package/dist/mozaic-angular/components/tooltip/public-api.d.ts +2 -0
  385. package/dist/mozaic-angular/components/tooltip/tooltip-position.d.ts +1 -0
  386. package/dist/mozaic-angular/components/tooltip/tooltip.component.d.ts +11 -0
  387. package/dist/mozaic-angular/components/tooltip/tooltip.module.d.ts +8 -0
  388. package/dist/mozaic-angular/esm2020/common/global-events/global-events.module.mjs +15 -0
  389. package/dist/mozaic-angular/esm2020/common/global-events/global-events.service.mjs +30 -0
  390. package/dist/mozaic-angular/esm2020/components/badge/badge.component.mjs +30 -0
  391. package/dist/mozaic-angular/esm2020/components/badge/badge.module.mjs +18 -0
  392. package/dist/mozaic-angular/esm2020/components/button/button.component.mjs +53 -0
  393. package/dist/mozaic-angular/esm2020/components/button/button.module.mjs +18 -0
  394. package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.component.mjs +58 -0
  395. package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.module.mjs +21 -0
  396. package/dist/mozaic-angular/esm2020/components/dialog/dialog.component.mjs +57 -0
  397. package/dist/mozaic-angular/esm2020/components/dialog/dialog.module.mjs +20 -0
  398. package/dist/mozaic-angular/esm2020/components/dialog/dialog.service.mjs +67 -0
  399. package/dist/mozaic-angular/esm2020/components/field/directives/input-icon.directive.mjs +15 -0
  400. package/dist/mozaic-angular/esm2020/components/field/field-error.component.mjs +13 -0
  401. package/dist/mozaic-angular/esm2020/components/field/field.component.mjs +40 -0
  402. package/dist/mozaic-angular/esm2020/components/field/field.module.mjs +20 -0
  403. package/dist/mozaic-angular/esm2020/components/icon/icon.component.mjs +49 -0
  404. package/dist/mozaic-angular/esm2020/components/icon/icon.module.mjs +18 -0
  405. package/dist/mozaic-angular/esm2020/components/icon/icon.service.mjs +42 -0
  406. package/dist/mozaic-angular/esm2020/components/layer/layer.component.mjs +40 -0
  407. package/dist/mozaic-angular/esm2020/components/layer/layer.module.mjs +21 -0
  408. package/dist/mozaic-angular/esm2020/components/layer/layer.service.mjs +56 -0
  409. package/dist/mozaic-angular/esm2020/components/loader/loader.component.mjs +47 -0
  410. package/dist/mozaic-angular/esm2020/components/loader/loader.module.mjs +20 -0
  411. package/dist/mozaic-angular/esm2020/components/loader/loader.service.mjs +53 -0
  412. package/dist/mozaic-angular/esm2020/components/notification/notification-container.component.mjs +38 -0
  413. package/dist/mozaic-angular/esm2020/components/notification/notification-footer.mjs +11 -0
  414. package/dist/mozaic-angular/esm2020/components/notification/notification-message.mjs +11 -0
  415. package/dist/mozaic-angular/esm2020/components/notification/notification-title.mjs +11 -0
  416. package/dist/mozaic-angular/esm2020/components/notification/notification.component.mjs +29 -0
  417. package/dist/mozaic-angular/esm2020/components/notification/notification.module.mjs +66 -0
  418. package/dist/mozaic-angular/esm2020/components/notification/notification.service.mjs +40 -0
  419. package/dist/mozaic-angular/esm2020/components/pagination/pagination.component.mjs +133 -0
  420. package/dist/mozaic-angular/esm2020/components/pagination/pagination.module.mjs +23 -0
  421. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.component.mjs +38 -0
  422. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.module.mjs +18 -0
  423. package/dist/mozaic-angular/esm2020/components/select/select.component.mjs +25 -0
  424. package/dist/mozaic-angular/esm2020/components/select/select.module.mjs +18 -0
  425. package/dist/mozaic-angular/esm2020/components/stepper/step.component.mjs +51 -0
  426. package/dist/mozaic-angular/esm2020/components/stepper/stepper.component.mjs +79 -0
  427. package/dist/mozaic-angular/esm2020/components/stepper/stepper.module.mjs +20 -0
  428. package/dist/mozaic-angular/esm2020/components/tabs/tab.component.mjs +53 -0
  429. package/dist/mozaic-angular/esm2020/components/tabs/tabs.component.mjs +126 -0
  430. package/dist/mozaic-angular/esm2020/components/tabs/tabs.module.mjs +19 -0
  431. package/dist/mozaic-angular/esm2020/components/tag/tag.component.mjs +61 -0
  432. package/dist/mozaic-angular/esm2020/components/tag/tag.module.mjs +19 -0
  433. package/dist/mozaic-angular/esm2020/components/text-area/text-area.component.mjs +43 -0
  434. package/dist/mozaic-angular/esm2020/components/text-area/text-area.module.mjs +16 -0
  435. package/dist/mozaic-angular/esm2020/components/text-input/text-input.component.mjs +64 -0
  436. package/dist/mozaic-angular/esm2020/components/text-input/text-input.module.mjs +20 -0
  437. package/dist/mozaic-angular/esm2020/components/toggle/toggle.component.mjs +59 -0
  438. package/dist/mozaic-angular/esm2020/components/toggle/toggle.module.mjs +18 -0
  439. package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.component.mjs +32 -0
  440. package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.module.mjs +18 -0
  441. package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs +2052 -0
  442. package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs.map +1 -0
  443. package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs +2025 -0
  444. package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs.map +1 -0
  445. package/dist/mozaic-angular/index.d.ts +5 -0
  446. package/dist/mozaic-angular/package.json +31 -0
  447. package/dist/mozaic-angular/public-api.d.ts +2 -0
  448. package/package.json +105 -26
  449. package/assets/moz-icons/Universe_Floor_24px.svg +0 -1
  450. package/assets/moz-icons/Universe_Floor_32px.svg +0 -1
  451. package/assets/moz-icons/Universe_Floor_48px.svg +0 -1
  452. package/assets/moz-icons/Universe_Floor_64px.svg +0 -1
  453. package/assets/moz-icons/Universe_Paint_24px.svg +0 -1
  454. package/assets/moz-icons/Universe_Paint_32px.svg +0 -1
  455. package/assets/moz-icons/Universe_Paint_48px.svg +0 -1
  456. package/assets/moz-icons/Universe_Paint_64px.svg +0 -1
  457. package/esm2020/common/global-events/global-events.module.mjs +0 -15
  458. package/esm2020/common/global-events/global-events.service.mjs +0 -30
  459. package/esm2020/components/badge/badge.component.mjs +0 -30
  460. package/esm2020/components/badge/badge.module.mjs +0 -18
  461. package/esm2020/components/button/button.component.mjs +0 -53
  462. package/esm2020/components/button/button.module.mjs +0 -18
  463. package/esm2020/components/checkbox/checkbox.component.mjs +0 -58
  464. package/esm2020/components/checkbox/checkbox.module.mjs +0 -21
  465. package/esm2020/components/dialog/dialog.component.mjs +0 -57
  466. package/esm2020/components/dialog/dialog.module.mjs +0 -20
  467. package/esm2020/components/dialog/dialog.service.mjs +0 -67
  468. package/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
  469. package/esm2020/components/field/field-error.component.mjs +0 -13
  470. package/esm2020/components/field/field.component.mjs +0 -40
  471. package/esm2020/components/field/field.module.mjs +0 -20
  472. package/esm2020/components/icon/icon.component.mjs +0 -49
  473. package/esm2020/components/icon/icon.module.mjs +0 -18
  474. package/esm2020/components/icon/icon.service.mjs +0 -42
  475. package/esm2020/components/layer/layer.component.mjs +0 -40
  476. package/esm2020/components/layer/layer.module.mjs +0 -21
  477. package/esm2020/components/layer/layer.service.mjs +0 -56
  478. package/esm2020/components/loader/loader.component.mjs +0 -47
  479. package/esm2020/components/loader/loader.module.mjs +0 -20
  480. package/esm2020/components/loader/loader.service.mjs +0 -53
  481. package/esm2020/components/notification/notification-container.component.mjs +0 -38
  482. package/esm2020/components/notification/notification-footer.mjs +0 -11
  483. package/esm2020/components/notification/notification-message.mjs +0 -11
  484. package/esm2020/components/notification/notification-title.mjs +0 -11
  485. package/esm2020/components/notification/notification.component.mjs +0 -29
  486. package/esm2020/components/notification/notification.module.mjs +0 -66
  487. package/esm2020/components/notification/notification.service.mjs +0 -40
  488. package/esm2020/components/pagination/pagination.component.mjs +0 -133
  489. package/esm2020/components/pagination/pagination.module.mjs +0 -23
  490. package/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
  491. package/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
  492. package/esm2020/components/select/select.component.mjs +0 -25
  493. package/esm2020/components/select/select.module.mjs +0 -18
  494. package/esm2020/components/stepper/step.component.mjs +0 -51
  495. package/esm2020/components/stepper/stepper.component.mjs +0 -79
  496. package/esm2020/components/stepper/stepper.module.mjs +0 -20
  497. package/esm2020/components/tabs/tab.component.mjs +0 -53
  498. package/esm2020/components/tabs/tabs.component.mjs +0 -126
  499. package/esm2020/components/tabs/tabs.module.mjs +0 -19
  500. package/esm2020/components/tag/tag.component.mjs +0 -61
  501. package/esm2020/components/tag/tag.module.mjs +0 -19
  502. package/esm2020/components/text-area/text-area.component.mjs +0 -43
  503. package/esm2020/components/text-area/text-area.module.mjs +0 -16
  504. package/esm2020/components/text-input/text-input.component.mjs +0 -64
  505. package/esm2020/components/text-input/text-input.module.mjs +0 -20
  506. package/esm2020/components/toggle/toggle.component.mjs +0 -59
  507. package/esm2020/components/toggle/toggle.module.mjs +0 -18
  508. package/esm2020/components/tooltip/tooltip.component.mjs +0 -32
  509. package/esm2020/components/tooltip/tooltip.module.mjs +0 -18
  510. package/fesm2015/mozaic-ds-angular.mjs +0 -2052
  511. package/fesm2015/mozaic-ds-angular.mjs.map +0 -1
  512. package/fesm2020/mozaic-ds-angular.mjs +0 -2025
  513. package/fesm2020/mozaic-ds-angular.mjs.map +0 -1
  514. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-checked-disabled.svg +0 -0
  515. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-checked.svg +0 -0
  516. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-indeterminate-disabled.svg +0 -0
  517. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/checkbox-indeterminate.svg +0 -0
  518. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/invalid-cross.svg +0 -0
  519. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/layer-cross.svg +0 -0
  520. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-danger-m.svg +0 -0
  521. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-danger-s.svg +0 -0
  522. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-information-m.svg +0 -0
  523. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-information-s.svg +0 -0
  524. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-success-m.svg +0 -0
  525. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-success-s.svg +0 -0
  526. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-warning-m.svg +0 -0
  527. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/notification-warning-s.svg +0 -0
  528. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/remove-tag.svg +0 -0
  529. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-checked-disabled.svg +0 -0
  530. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-checked.svg +0 -0
  531. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-cross-disabled.svg +0 -0
  532. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/toggle-cross.svg +0 -0
  533. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/tooltip-triangle.svg +0 -0
  534. /package/{assets → dist/mozaic-angular/adeo/assets}/special-icons/valid-check-mark.svg +0 -0
  535. /package/{common → dist/mozaic-angular/adeo/common}/global-events/global-events.module.d.ts +0 -0
  536. /package/{common → dist/mozaic-angular/adeo/common}/global-events/global-events.service.d.ts +0 -0
  537. /package/{common → dist/mozaic-angular/adeo/common}/global-events/public-api.d.ts +0 -0
  538. /package/{common → dist/mozaic-angular/adeo/common}/index.d.ts +0 -0
  539. /package/{common → dist/mozaic-angular/adeo/common}/utils/boolean-property.d.ts +0 -0
  540. /package/{common → dist/mozaic-angular/adeo/common}/utils/generate-id.d.ts +0 -0
  541. /package/{common → dist/mozaic-angular/adeo/common}/utils/get-random-number.d.ts +0 -0
  542. /package/{common → dist/mozaic-angular/adeo/common}/utils/index.d.ts +0 -0
  543. /package/{common → dist/mozaic-angular/adeo/common}/utils/overwrite-style.d.ts +0 -0
  544. /package/{common → dist/mozaic-angular/adeo/common}/utils/public-api.d.ts +0 -0
  545. /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.component.d.ts +0 -0
  546. /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.d.ts +0 -0
  547. /package/{components → dist/mozaic-angular/adeo/components}/badge/badge.module.d.ts +0 -0
  548. /package/{components → dist/mozaic-angular/adeo/components}/badge/index.d.ts +0 -0
  549. /package/{components → dist/mozaic-angular/adeo/components}/button/button.component.d.ts +0 -0
  550. /package/{components → dist/mozaic-angular/adeo/components}/button/button.d.ts +0 -0
  551. /package/{components → dist/mozaic-angular/adeo/components}/button/button.module.d.ts +0 -0
  552. /package/{components → dist/mozaic-angular/adeo/components}/button/index.d.ts +0 -0
  553. /package/{components → dist/mozaic-angular/adeo/components}/checkbox/checkbox.component.d.ts +0 -0
  554. /package/{components → dist/mozaic-angular/adeo/components}/checkbox/checkbox.module.d.ts +0 -0
  555. /package/{components → dist/mozaic-angular/adeo/components}/checkbox/public-api.d.ts +0 -0
  556. /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-config.d.ts +0 -0
  557. /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-injector.d.ts +0 -0
  558. /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/dialog-ref.d.ts +0 -0
  559. /package/{components → dist/mozaic-angular/adeo/components}/dialog/classes/index.d.ts +0 -0
  560. /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog-animation.d.ts +0 -0
  561. /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.component.d.ts +0 -0
  562. /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.module.d.ts +0 -0
  563. /package/{components → dist/mozaic-angular/adeo/components}/dialog/dialog.service.d.ts +0 -0
  564. /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-config.d.ts +0 -0
  565. /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-di-params.d.ts +0 -0
  566. /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/dialog-ref.d.ts +0 -0
  567. /package/{components → dist/mozaic-angular/adeo/components}/dialog/interfaces/index.d.ts +0 -0
  568. /package/{components → dist/mozaic-angular/adeo/components}/dialog/public-api.d.ts +0 -0
  569. /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-config.token.d.ts +0 -0
  570. /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-data.token.d.ts +0 -0
  571. /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/dialog-ref.token.d.ts +0 -0
  572. /package/{components → dist/mozaic-angular/adeo/components}/dialog/tokens/index.d.ts +0 -0
  573. /package/{components → dist/mozaic-angular/adeo/components}/field/directives/input-icon.directive.d.ts +0 -0
  574. /package/{components → dist/mozaic-angular/adeo/components}/field/field-error.component.d.ts +0 -0
  575. /package/{components → dist/mozaic-angular/adeo/components}/field/field.component.d.ts +0 -0
  576. /package/{components → dist/mozaic-angular/adeo/components}/field/field.module.d.ts +0 -0
  577. /package/{components → dist/mozaic-angular/adeo/components}/field/public-api.d.ts +0 -0
  578. /package/{components → dist/mozaic-angular/adeo/components}/icon/icon-size.d.ts +0 -0
  579. /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.component.d.ts +0 -0
  580. /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.module.d.ts +0 -0
  581. /package/{components → dist/mozaic-angular/adeo/components}/icon/icon.service.d.ts +0 -0
  582. /package/{components → dist/mozaic-angular/adeo/components}/icon/public-api.d.ts +0 -0
  583. /package/{components → dist/mozaic-angular/adeo/components}/layer/classes/layer-injector.d.ts +0 -0
  584. /package/{components → dist/mozaic-angular/adeo/components}/layer/classes/layer-ref.d.ts +0 -0
  585. /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/index.d.ts +0 -0
  586. /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-config.d.ts +0 -0
  587. /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-di-params.d.ts +0 -0
  588. /package/{components → dist/mozaic-angular/adeo/components}/layer/interfaces/layer-ref.d.ts +0 -0
  589. /package/{components → dist/mozaic-angular/adeo/components}/layer/layer-animation.d.ts +0 -0
  590. /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.component.d.ts +0 -0
  591. /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.module.d.ts +0 -0
  592. /package/{components → dist/mozaic-angular/adeo/components}/layer/layer.service.d.ts +0 -0
  593. /package/{components → dist/mozaic-angular/adeo/components}/layer/public-api.d.ts +0 -0
  594. /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/index.d.ts +0 -0
  595. /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-config.token.d.ts +0 -0
  596. /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-data.token.d.ts +0 -0
  597. /package/{components → dist/mozaic-angular/adeo/components}/layer/tokens/layer-ref.token.d.ts +0 -0
  598. /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.component.d.ts +0 -0
  599. /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.d.ts +0 -0
  600. /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.module.d.ts +0 -0
  601. /package/{components → dist/mozaic-angular/adeo/components}/loader/loader.service.d.ts +0 -0
  602. /package/{components → dist/mozaic-angular/adeo/components}/loader/public-api.d.ts +0 -0
  603. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-animation.d.ts +0 -0
  604. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-container.component.d.ts +0 -0
  605. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-footer.d.ts +0 -0
  606. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-message.d.ts +0 -0
  607. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification-title.d.ts +0 -0
  608. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.component.d.ts +0 -0
  609. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.d.ts +0 -0
  610. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.module.d.ts +0 -0
  611. /package/{components → dist/mozaic-angular/adeo/components}/notification/notification.service.d.ts +0 -0
  612. /package/{components → dist/mozaic-angular/adeo/components}/notification/public-api.d.ts +0 -0
  613. /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.component.d.ts +0 -0
  614. /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.d.ts +0 -0
  615. /package/{components → dist/mozaic-angular/adeo/components}/pagination/pagination.module.d.ts +0 -0
  616. /package/{components → dist/mozaic-angular/adeo/components}/pagination/public-api.d.ts +0 -0
  617. /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar-size.d.ts +0 -0
  618. /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar-theme.d.ts +0 -0
  619. /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar.component.d.ts +0 -0
  620. /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/progress-bar.module.d.ts +0 -0
  621. /package/{components → dist/mozaic-angular/adeo/components}/progress-bar/public-api.d.ts +0 -0
  622. /package/{components → dist/mozaic-angular/adeo/components}/public-api.d.ts +0 -0
  623. /package/{components → dist/mozaic-angular/adeo/components}/select/public-api.d.ts +0 -0
  624. /package/{components → dist/mozaic-angular/adeo/components}/select/select-size.d.ts +0 -0
  625. /package/{components → dist/mozaic-angular/adeo/components}/select/select.component.d.ts +0 -0
  626. /package/{components → dist/mozaic-angular/adeo/components}/select/select.module.d.ts +0 -0
  627. /package/{components → dist/mozaic-angular/adeo/components}/stepper/public-api.d.ts +0 -0
  628. /package/{components → dist/mozaic-angular/adeo/components}/stepper/step-state.d.ts +0 -0
  629. /package/{components → dist/mozaic-angular/adeo/components}/stepper/step.component.d.ts +0 -0
  630. /package/{components → dist/mozaic-angular/adeo/components}/stepper/stepper.component.d.ts +0 -0
  631. /package/{components → dist/mozaic-angular/adeo/components}/stepper/stepper.module.d.ts +0 -0
  632. /package/{components → dist/mozaic-angular/adeo/components}/tabs/public-api.d.ts +0 -0
  633. /package/{components → dist/mozaic-angular/adeo/components}/tabs/tab-selectors.d.ts +0 -0
  634. /package/{components → dist/mozaic-angular/adeo/components}/tabs/tab.component.d.ts +0 -0
  635. /package/{components → dist/mozaic-angular/adeo/components}/tabs/tabs.component.d.ts +0 -0
  636. /package/{components → dist/mozaic-angular/adeo/components}/tabs/tabs.module.d.ts +0 -0
  637. /package/{components → dist/mozaic-angular/adeo/components}/tag/public-api.d.ts +0 -0
  638. /package/{components → dist/mozaic-angular/adeo/components}/tag/tag-type.d.ts +0 -0
  639. /package/{components → dist/mozaic-angular/adeo/components}/tag/tag.component.d.ts +0 -0
  640. /package/{components → dist/mozaic-angular/adeo/components}/tag/tag.module.d.ts +0 -0
  641. /package/{components → dist/mozaic-angular/adeo/components}/text-area/public-api.d.ts +0 -0
  642. /package/{components → dist/mozaic-angular/adeo/components}/text-area/text-area.component.d.ts +0 -0
  643. /package/{components → dist/mozaic-angular/adeo/components}/text-area/text-area.module.d.ts +0 -0
  644. /package/{components → dist/mozaic-angular/adeo/components}/text-input/public-api.d.ts +0 -0
  645. /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.component.d.ts +0 -0
  646. /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.d.ts +0 -0
  647. /package/{components → dist/mozaic-angular/adeo/components}/text-input/text-input.module.d.ts +0 -0
  648. /package/{components → dist/mozaic-angular/adeo/components}/toggle/public-api.d.ts +0 -0
  649. /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle-size.d.ts +0 -0
  650. /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle.component.d.ts +0 -0
  651. /package/{components → dist/mozaic-angular/adeo/components}/toggle/toggle.module.d.ts +0 -0
  652. /package/{components → dist/mozaic-angular/adeo/components}/tooltip/public-api.d.ts +0 -0
  653. /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip-position.d.ts +0 -0
  654. /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip.component.d.ts +0 -0
  655. /package/{components → dist/mozaic-angular/adeo/components}/tooltip/tooltip.module.d.ts +0 -0
  656. /package/{index.d.ts → dist/mozaic-angular/adeo/index.d.ts} +0 -0
  657. /package/{public-api.d.ts → dist/mozaic-angular/adeo/public-api.d.ts} +0 -0
  658. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_24px.svg +0 -0
  659. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_32px.svg +0 -0
  660. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_48px.svg +0 -0
  661. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Desktop_64px.svg +0 -0
  662. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_24px.svg +0 -0
  663. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_32px.svg +0 -0
  664. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_48px.svg +0 -0
  665. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Laptop_64px.svg +0 -0
  666. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_24px.svg +0 -0
  667. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_32px.svg +0 -0
  668. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_48px.svg +0 -0
  669. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Mobile_64px.svg +0 -0
  670. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_24px.svg +0 -0
  671. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_32px.svg +0 -0
  672. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_48px.svg +0 -0
  673. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Device_Tablet_64px.svg +0 -0
  674. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -0
  675. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -0
  676. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -0
  677. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -0
  678. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -0
  679. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -0
  680. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -0
  681. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -0
  682. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -0
  683. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -0
  684. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -0
  685. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -0
  686. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -0
  687. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -0
  688. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -0
  689. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -0
  690. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -0
  691. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -0
  692. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -0
  693. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -0
  694. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -0
  695. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -0
  696. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -0
  697. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -0
  698. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -0
  699. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -0
  700. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -0
  701. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -0
  702. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -0
  703. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -0
  704. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -0
  705. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -0
  706. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -0
  707. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -0
  708. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -0
  709. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -0
  710. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -0
  711. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -0
  712. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -0
  713. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -0
  714. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -0
  715. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -0
  716. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -0
  717. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -0
  718. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -0
  719. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -0
  720. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -0
  721. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -0
  722. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -0
  723. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -0
  724. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -0
  725. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -0
  726. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -0
  727. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -0
  728. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -0
  729. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -0
  730. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -0
  731. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -0
  732. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -0
  733. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -0
  734. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -0
  735. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -0
  736. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -0
  737. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -0
  738. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -0
  739. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -0
  740. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -0
  741. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -0
  742. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_24px.svg +0 -0
  743. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_32px.svg +0 -0
  744. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_48px.svg +0 -0
  745. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Brand_LM_64px.svg +0 -0
  746. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -0
  747. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -0
  748. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -0
  749. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -0
  750. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -0
  751. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -0
  752. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -0
  753. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -0
  754. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -0
  755. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -0
  756. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -0
  757. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -0
  758. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -0
  759. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -0
  760. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -0
  761. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -0
  762. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -0
  763. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -0
  764. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -0
  765. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -0
  766. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -0
  767. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -0
  768. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -0
  769. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -0
  770. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -0
  771. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -0
  772. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -0
  773. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -0
  774. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -0
  775. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -0
  776. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -0
  777. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -0
  778. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -0
  779. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -0
  780. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -0
  781. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -0
  782. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -0
  783. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -0
  784. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -0
  785. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -0
  786. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -0
  787. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -0
  788. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -0
  789. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -0
  790. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -0
  791. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -0
  792. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -0
  793. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -0
  794. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -0
  795. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -0
  796. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -0
  797. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -0
  798. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -0
  799. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -0
  800. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -0
  801. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -0
  802. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_24px.svg +0 -0
  803. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_32px.svg +0 -0
  804. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_48px.svg +0 -0
  805. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_API_64px.svg +0 -0
  806. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_24px.svg +0 -0
  807. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_32px.svg +0 -0
  808. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_48px.svg +0 -0
  809. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_BookStore_64px.svg +0 -0
  810. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_24px.svg +0 -0
  811. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_32px.svg +0 -0
  812. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_48px.svg +0 -0
  813. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Camera_64px.svg +0 -0
  814. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_24px.svg +0 -0
  815. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_32px.svg +0 -0
  816. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_48px.svg +0 -0
  817. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Code_64px.svg +0 -0
  818. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_24px.svg +0 -0
  819. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_32px.svg +0 -0
  820. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_48px.svg +0 -0
  821. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Document_64px.svg +0 -0
  822. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_24px.svg +0 -0
  823. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_32px.svg +0 -0
  824. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_48px.svg +0 -0
  825. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_App_64px.svg +0 -0
  826. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_24px.svg +0 -0
  827. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_32px.svg +0 -0
  828. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_48px.svg +0 -0
  829. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Download_Web_64px.svg +0 -0
  830. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_16px.svg +0 -0
  831. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_24px.svg +0 -0
  832. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_32px.svg +0 -0
  833. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_48px.svg +0 -0
  834. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_FullScreen_64px.svg +0 -0
  835. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_24px.svg +0 -0
  836. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_32px.svg +0 -0
  837. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_48px.svg +0 -0
  838. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Gauge_64px.svg +0 -0
  839. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_24px.svg +0 -0
  840. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_32px.svg +0 -0
  841. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_48px.svg +0 -0
  842. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Group_64px.svg +0 -0
  843. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_24px.svg +0 -0
  844. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_32px.svg +0 -0
  845. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_48px.svg +0 -0
  846. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_NoPicture_64px.svg +0 -0
  847. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_24px.svg +0 -0
  848. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_32px.svg +0 -0
  849. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_48px.svg +0 -0
  850. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Pdf_64px.svg +0 -0
  851. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_24px.svg +0 -0
  852. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_32px.svg +0 -0
  853. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_48px.svg +0 -0
  854. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Play_64px.svg +0 -0
  855. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_24px.svg +0 -0
  856. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_32px.svg +0 -0
  857. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_48px.svg +0 -0
  858. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_64px.svg +0 -0
  859. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Player_96px.svg +0 -0
  860. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_24px.svg +0 -0
  861. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_32px.svg +0 -0
  862. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_48px.svg +0 -0
  863. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Policies_64px.svg +0 -0
  864. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_24px.svg +0 -0
  865. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_32px.svg +0 -0
  866. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_48px.svg +0 -0
  867. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Print_64px.svg +0 -0
  868. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_24px.svg +0 -0
  869. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_32px.svg +0 -0
  870. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_48px.svg +0 -0
  871. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Project_64px.svg +0 -0
  872. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_24px.svg +0 -0
  873. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_32px.svg +0 -0
  874. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_48px.svg +0 -0
  875. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Read_64px.svg +0 -0
  876. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_16px.svg +0 -0
  877. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_24px.svg +0 -0
  878. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_32px.svg +0 -0
  879. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_48px.svg +0 -0
  880. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_ReduceScreen_64px.svg +0 -0
  881. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_24px.svg +0 -0
  882. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_32px.svg +0 -0
  883. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_48px.svg +0 -0
  884. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Slideshow_64px.svg +0 -0
  885. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_24px.svg +0 -0
  886. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_32px.svg +0 -0
  887. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_48px.svg +0 -0
  888. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Sound_64px.svg +0 -0
  889. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_24px.svg +0 -0
  890. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_32px.svg +0 -0
  891. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_48px.svg +0 -0
  892. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Stop_64px.svg +0 -0
  893. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_24px.svg +0 -0
  894. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_32px.svg +0 -0
  895. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_48px.svg +0 -0
  896. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_TimeRead_64px.svg +0 -0
  897. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_24px.svg +0 -0
  898. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_32px.svg +0 -0
  899. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_48px.svg +0 -0
  900. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_Upload_64px.svg +0 -0
  901. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_24px.svg +0 -0
  902. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_32px.svg +0 -0
  903. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_48px.svg +0 -0
  904. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_64px.svg +0 -0
  905. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Media_View360_96px.svg +0 -0
  906. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -0
  907. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -0
  908. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -0
  909. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -0
  910. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -0
  911. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -0
  912. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -0
  913. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -0
  914. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -0
  915. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -0
  916. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -0
  917. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -0
  918. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -0
  919. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -0
  920. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -0
  921. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -0
  922. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -0
  923. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -0
  924. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -0
  925. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -0
  926. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -0
  927. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -0
  928. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -0
  929. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -0
  930. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -0
  931. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -0
  932. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -0
  933. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -0
  934. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -0
  935. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -0
  936. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -0
  937. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -0
  938. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -0
  939. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -0
  940. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -0
  941. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -0
  942. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -0
  943. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -0
  944. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -0
  945. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -0
  946. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_16px.svg +0 -0
  947. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_24px.svg +0 -0
  948. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_32px.svg +0 -0
  949. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_48px.svg +0 -0
  950. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Back_64px.svg +0 -0
  951. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -0
  952. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -0
  953. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -0
  954. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -0
  955. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -0
  956. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -0
  957. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -0
  958. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -0
  959. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -0
  960. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -0
  961. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_16px.svg +0 -0
  962. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_24px.svg +0 -0
  963. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_32px.svg +0 -0
  964. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_48px.svg +0 -0
  965. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Down_64px.svg +0 -0
  966. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_16px.svg +0 -0
  967. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_24px.svg +0 -0
  968. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_32px.svg +0 -0
  969. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_48px.svg +0 -0
  970. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Next_64px.svg +0 -0
  971. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_16px.svg +0 -0
  972. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_24px.svg +0 -0
  973. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_32px.svg +0 -0
  974. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_48px.svg +0 -0
  975. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Arrow_Up_64px.svg +0 -0
  976. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -0
  977. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -0
  978. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -0
  979. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -0
  980. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -0
  981. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -0
  982. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -0
  983. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -0
  984. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -0
  985. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -0
  986. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -0
  987. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -0
  988. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_16px.svg +0 -0
  989. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_24px.svg +0 -0
  990. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_32px.svg +0 -0
  991. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_48px.svg +0 -0
  992. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Cross_64px.svg +0 -0
  993. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_16px.svg +0 -0
  994. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_24px.svg +0 -0
  995. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_32px.svg +0 -0
  996. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_48px.svg +0 -0
  997. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Less_64px.svg +0 -0
  998. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_16px.svg +0 -0
  999. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_24px.svg +0 -0
  1000. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_32px.svg +0 -0
  1001. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_48px.svg +0 -0
  1002. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_More_64px.svg +0 -0
  1003. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -0
  1004. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -0
  1005. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -0
  1006. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -0
  1007. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -0
  1008. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_24px.svg +0 -0
  1009. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_32px.svg +0 -0
  1010. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_48px.svg +0 -0
  1011. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Blink_64px.svg +0 -0
  1012. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_24px.svg +0 -0
  1013. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_32px.svg +0 -0
  1014. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_48px.svg +0 -0
  1015. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Calendar_64px.svg +0 -0
  1016. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_24px.svg +0 -0
  1017. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_32px.svg +0 -0
  1018. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_48px.svg +0 -0
  1019. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Connect_64px.svg +0 -0
  1020. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -0
  1021. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -0
  1022. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -0
  1023. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -0
  1024. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -0
  1025. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -0
  1026. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -0
  1027. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -0
  1028. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -0
  1029. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -0
  1030. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -0
  1031. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -0
  1032. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -0
  1033. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -0
  1034. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -0
  1035. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -0
  1036. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -0
  1037. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -0
  1038. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -0
  1039. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -0
  1040. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -0
  1041. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -0
  1042. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -0
  1043. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -0
  1044. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -0
  1045. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -0
  1046. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -0
  1047. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -0
  1048. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -0
  1049. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -0
  1050. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -0
  1051. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -0
  1052. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -0
  1053. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -0
  1054. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -0
  1055. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -0
  1056. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -0
  1057. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -0
  1058. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -0
  1059. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -0
  1060. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -0
  1061. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_24px.svg +0 -0
  1062. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_32px.svg +0 -0
  1063. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_48px.svg +0 -0
  1064. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Filter_64px.svg +0 -0
  1065. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_24px.svg +0 -0
  1066. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_32px.svg +0 -0
  1067. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_48px.svg +0 -0
  1068. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Home_64px.svg +0 -0
  1069. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_24px.svg +0 -0
  1070. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_32px.svg +0 -0
  1071. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_48px.svg +0 -0
  1072. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_LogOut_64px.svg +0 -0
  1073. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_24px.svg +0 -0
  1074. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_32px.svg +0 -0
  1075. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_48px.svg +0 -0
  1076. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Menu_64px.svg +0 -0
  1077. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -0
  1078. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -0
  1079. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -0
  1080. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -0
  1081. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_24px.svg +0 -0
  1082. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_32px.svg +0 -0
  1083. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_48px.svg +0 -0
  1084. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Options_64px.svg +0 -0
  1085. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_24px.svg +0 -0
  1086. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_32px.svg +0 -0
  1087. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_48px.svg +0 -0
  1088. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Other_64px.svg +0 -0
  1089. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -0
  1090. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -0
  1091. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -0
  1092. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -0
  1093. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_24px.svg +0 -0
  1094. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_32px.svg +0 -0
  1095. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_48px.svg +0 -0
  1096. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Refresh_64px.svg +0 -0
  1097. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -0
  1098. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -0
  1099. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -0
  1100. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -0
  1101. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_24px.svg +0 -0
  1102. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_32px.svg +0 -0
  1103. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_48px.svg +0 -0
  1104. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchList_64px.svg +0 -0
  1105. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -0
  1106. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -0
  1107. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -0
  1108. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -0
  1109. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_24px.svg +0 -0
  1110. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_32px.svg +0 -0
  1111. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_48px.svg +0 -0
  1112. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Search_64px.svg +0 -0
  1113. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_24px.svg +0 -0
  1114. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_32px.svg +0 -0
  1115. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_48px.svg +0 -0
  1116. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_Setting_64px.svg +0 -0
  1117. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_24px.svg +0 -0
  1118. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_32px.svg +0 -0
  1119. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_48px.svg +0 -0
  1120. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_View_64px.svg +0 -0
  1121. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -0
  1122. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -0
  1123. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -0
  1124. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -0
  1125. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_16px.svg +0 -0
  1126. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_24px.svg +0 -0
  1127. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_32px.svg +0 -0
  1128. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_48px.svg +0 -0
  1129. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Available_64px.svg +0 -0
  1130. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_24px.svg +0 -0
  1131. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_32px.svg +0 -0
  1132. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_48px.svg +0 -0
  1133. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Bell_64px.svg +0 -0
  1134. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -0
  1135. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -0
  1136. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -0
  1137. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -0
  1138. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_24px.svg +0 -0
  1139. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_32px.svg +0 -0
  1140. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_48px.svg +0 -0
  1141. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Information_64px.svg +0 -0
  1142. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_24px.svg +0 -0
  1143. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_32px.svg +0 -0
  1144. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_48px.svg +0 -0
  1145. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Question_64px.svg +0 -0
  1146. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_24px.svg +0 -0
  1147. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_32px.svg +0 -0
  1148. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_48px.svg +0 -0
  1149. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Notification_Warning_64px.svg +0 -0
  1150. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_24px.svg +0 -0
  1151. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_32px.svg +0 -0
  1152. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_48px.svg +0 -0
  1153. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Copy_64px.svg +0 -0
  1154. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_24px.svg +0 -0
  1155. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_32px.svg +0 -0
  1156. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_48px.svg +0 -0
  1157. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Edit_64px.svg +0 -0
  1158. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -0
  1159. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -0
  1160. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -0
  1161. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -0
  1162. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -0
  1163. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -0
  1164. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -0
  1165. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -0
  1166. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -0
  1167. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -0
  1168. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_16px.svg +0 -0
  1169. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_24px.svg +0 -0
  1170. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_32px.svg +0 -0
  1171. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_48px.svg +0 -0
  1172. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Lock_64px.svg +0 -0
  1173. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_24px.svg +0 -0
  1174. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_32px.svg +0 -0
  1175. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_48px.svg +0 -0
  1176. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Send_64px.svg +0 -0
  1177. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -0
  1178. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -0
  1179. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -0
  1180. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -0
  1181. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_24px.svg +0 -0
  1182. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_32px.svg +0 -0
  1183. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_48px.svg +0 -0
  1184. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Navigation_Split_64px.svg +0 -0
  1185. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_24px.svg +0 -0
  1186. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_32px.svg +0 -0
  1187. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_48px.svg +0 -0
  1188. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Bill_64px.svg +0 -0
  1189. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -0
  1190. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -0
  1191. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -0
  1192. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -0
  1193. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -0
  1194. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -0
  1195. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -0
  1196. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -0
  1197. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -0
  1198. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -0
  1199. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -0
  1200. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -0
  1201. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -0
  1202. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -0
  1203. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -0
  1204. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -0
  1205. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -0
  1206. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -0
  1207. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -0
  1208. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -0
  1209. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -0
  1210. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -0
  1211. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -0
  1212. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -0
  1213. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -0
  1214. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -0
  1215. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -0
  1216. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -0
  1217. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -0
  1218. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -0
  1219. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -0
  1220. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -0
  1221. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -0
  1222. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -0
  1223. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -0
  1224. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -0
  1225. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -0
  1226. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -0
  1227. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -0
  1228. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -0
  1229. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -0
  1230. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -0
  1231. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -0
  1232. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -0
  1233. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -0
  1234. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -0
  1235. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -0
  1236. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -0
  1237. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -0
  1238. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -0
  1239. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -0
  1240. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -0
  1241. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -0
  1242. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -0
  1243. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -0
  1244. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -0
  1245. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -0
  1246. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -0
  1247. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -0
  1248. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -0
  1249. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -0
  1250. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -0
  1251. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -0
  1252. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -0
  1253. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -0
  1254. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -0
  1255. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -0
  1256. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -0
  1257. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -0
  1258. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -0
  1259. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -0
  1260. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -0
  1261. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -0
  1262. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -0
  1263. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -0
  1264. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -0
  1265. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -0
  1266. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -0
  1267. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -0
  1268. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -0
  1269. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -0
  1270. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -0
  1271. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -0
  1272. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -0
  1273. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -0
  1274. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -0
  1275. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -0
  1276. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -0
  1277. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -0
  1278. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -0
  1279. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -0
  1280. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -0
  1281. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -0
  1282. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -0
  1283. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -0
  1284. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -0
  1285. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -0
  1286. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -0
  1287. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -0
  1288. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -0
  1289. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -0
  1290. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -0
  1291. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -0
  1292. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -0
  1293. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -0
  1294. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -0
  1295. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -0
  1296. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -0
  1297. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -0
  1298. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -0
  1299. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -0
  1300. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -0
  1301. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_24px.svg +0 -0
  1302. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_32px.svg +0 -0
  1303. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_48px.svg +0 -0
  1304. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_DetailsOrder_64px.svg +0 -0
  1305. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_16px.svg +0 -0
  1306. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_24px.svg +0 -0
  1307. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_32px.svg +0 -0
  1308. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_48px.svg +0 -0
  1309. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Euro_64px.svg +0 -0
  1310. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_24px.svg +0 -0
  1311. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_32px.svg +0 -0
  1312. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_48px.svg +0 -0
  1313. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_Receipt_64px.svg +0 -0
  1314. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_24px.svg +0 -0
  1315. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_32px.svg +0 -0
  1316. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_48px.svg +0 -0
  1317. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment1_64px.svg +0 -0
  1318. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_24px.svg +0 -0
  1319. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_32px.svg +0 -0
  1320. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_48px.svg +0 -0
  1321. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Payment_SafePayment2_64px.svg +0 -0
  1322. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_24px.svg +0 -0
  1323. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_32px.svg +0 -0
  1324. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_48px.svg +0 -0
  1325. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Quantity_64px.svg +0 -0
  1326. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_24px.svg +0 -0
  1327. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_32px.svg +0 -0
  1328. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_48px.svg +0 -0
  1329. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Size_64px.svg +0 -0
  1330. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_24px.svg +0 -0
  1331. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_32px.svg +0 -0
  1332. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_48px.svg +0 -0
  1333. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Aspect_Weight_64px.svg +0 -0
  1334. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_24px.svg +0 -0
  1335. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_32px.svg +0 -0
  1336. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_48px.svg +0 -0
  1337. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Add_64px.svg +0 -0
  1338. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_24px.svg +0 -0
  1339. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_32px.svg +0 -0
  1340. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_48px.svg +0 -0
  1341. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Handbag_64px.svg +0 -0
  1342. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_24px.svg +0 -0
  1343. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_32px.svg +0 -0
  1344. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_48px.svg +0 -0
  1345. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Multi_64px.svg +0 -0
  1346. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_24px.svg +0 -0
  1347. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_32px.svg +0 -0
  1348. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_48px.svg +0 -0
  1349. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Save_64px.svg +0 -0
  1350. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_24px.svg +0 -0
  1351. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_32px.svg +0 -0
  1352. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_48px.svg +0 -0
  1353. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Basket_Standard_64px.svg +0 -0
  1354. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_24px.svg +0 -0
  1355. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_32px.svg +0 -0
  1356. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_48px.svg +0 -0
  1357. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Add_64px.svg +0 -0
  1358. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_24px.svg +0 -0
  1359. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_32px.svg +0 -0
  1360. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_48px.svg +0 -0
  1361. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_List_Standard_64px.svg +0 -0
  1362. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_24px.svg +0 -0
  1363. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_32px.svg +0 -0
  1364. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_48px.svg +0 -0
  1365. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Certification_64px.svg +0 -0
  1366. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -0
  1367. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -0
  1368. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -0
  1369. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -0
  1370. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_24px.svg +0 -0
  1371. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_32px.svg +0 -0
  1372. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_48px.svg +0 -0
  1373. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Destocking_64px.svg +0 -0
  1374. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -0
  1375. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -0
  1376. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -0
  1377. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -0
  1378. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -0
  1379. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -0
  1380. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -0
  1381. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -0
  1382. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_24px.svg +0 -0
  1383. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_32px.svg +0 -0
  1384. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_48px.svg +0 -0
  1385. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Funding_64px.svg +0 -0
  1386. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -0
  1387. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -0
  1388. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -0
  1389. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -0
  1390. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -0
  1391. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -0
  1392. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -0
  1393. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -0
  1394. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_24px.svg +0 -0
  1395. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_32px.svg +0 -0
  1396. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_48px.svg +0 -0
  1397. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Modular_64px.svg +0 -0
  1398. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -0
  1399. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -0
  1400. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -0
  1401. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -0
  1402. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -0
  1403. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -0
  1404. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -0
  1405. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -0
  1406. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_24px.svg +0 -0
  1407. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_32px.svg +0 -0
  1408. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_48px.svg +0 -0
  1409. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Scan_64px.svg +0 -0
  1410. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_24px.svg +0 -0
  1411. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_32px.svg +0 -0
  1412. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_48px.svg +0 -0
  1413. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Product_Promise_Warranty_64px.svg +0 -0
  1414. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_24px.svg +0 -0
  1415. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_32px.svg +0 -0
  1416. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_48px.svg +0 -0
  1417. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_DescribeProject_64px.svg +0 -0
  1418. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_24px.svg +0 -0
  1419. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_32px.svg +0 -0
  1420. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_48px.svg +0 -0
  1421. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_Inspiration_64px.svg +0 -0
  1422. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_24px.svg +0 -0
  1423. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_32px.svg +0 -0
  1424. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_48px.svg +0 -0
  1425. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Project_MakeProject_64px.svg +0 -0
  1426. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -0
  1427. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -0
  1428. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -0
  1429. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -0
  1430. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -0
  1431. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -0
  1432. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -0
  1433. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -0
  1434. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_24px.svg +0 -0
  1435. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_32px.svg +0 -0
  1436. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_48px.svg +0 -0
  1437. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Payback_64px.svg +0 -0
  1438. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -0
  1439. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -0
  1440. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -0
  1441. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -0
  1442. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_24px.svg +0 -0
  1443. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_32px.svg +0 -0
  1444. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_48px.svg +0 -0
  1445. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CopyKey_64px.svg +0 -0
  1446. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_24px.svg +0 -0
  1447. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_32px.svg +0 -0
  1448. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_48px.svg +0 -0
  1449. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Course_64px.svg +0 -0
  1450. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -0
  1451. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -0
  1452. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -0
  1453. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -0
  1454. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_24px.svg +0 -0
  1455. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_32px.svg +0 -0
  1456. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_48px.svg +0 -0
  1457. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sample_64px.svg +0 -0
  1458. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_24px.svg +0 -0
  1459. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_32px.svg +0 -0
  1460. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_48px.svg +0 -0
  1461. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Custom_Sharpening_64px.svg +0 -0
  1462. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -0
  1463. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -0
  1464. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -0
  1465. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -0
  1466. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -0
  1467. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -0
  1468. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -0
  1469. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -0
  1470. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -0
  1471. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -0
  1472. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -0
  1473. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -0
  1474. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -0
  1475. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -0
  1476. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -0
  1477. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -0
  1478. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_24px.svg +0 -0
  1479. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_32px.svg +0 -0
  1480. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_48px.svg +0 -0
  1481. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Pallet_64px.svg +0 -0
  1482. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -0
  1483. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -0
  1484. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -0
  1485. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -0
  1486. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -0
  1487. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -0
  1488. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -0
  1489. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -0
  1490. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -0
  1491. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -0
  1492. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -0
  1493. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -0
  1494. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -0
  1495. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -0
  1496. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -0
  1497. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -0
  1498. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -0
  1499. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -0
  1500. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -0
  1501. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -0
  1502. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -0
  1503. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -0
  1504. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -0
  1505. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -0
  1506. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -0
  1507. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -0
  1508. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -0
  1509. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -0
  1510. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_24px.svg +0 -0
  1511. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_32px.svg +0 -0
  1512. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_48px.svg +0 -0
  1513. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Time_TimeDecline_64px.svg +0 -0
  1514. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_24px.svg +0 -0
  1515. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_32px.svg +0 -0
  1516. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_48px.svg +0 -0
  1517. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_3d_64px.svg +0 -0
  1518. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_24px.svg +0 -0
  1519. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_32px.svg +0 -0
  1520. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_48px.svg +0 -0
  1521. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Calculator_64px.svg +0 -0
  1522. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_24px.svg +0 -0
  1523. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_32px.svg +0 -0
  1524. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_48px.svg +0 -0
  1525. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Service_Tools_Comparator_64px.svg +0 -0
  1526. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_24px.svg +0 -0
  1527. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_32px.svg +0 -0
  1528. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_48px.svg +0 -0
  1529. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Comment_64px.svg +0 -0
  1530. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_24px.svg +0 -0
  1531. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_32px.svg +0 -0
  1532. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_48px.svg +0 -0
  1533. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Community_64px.svg +0 -0
  1534. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_24px.svg +0 -0
  1535. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_32px.svg +0 -0
  1536. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_48px.svg +0 -0
  1537. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Question--Article_64px.svg +0 -0
  1538. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_24px.svg +0 -0
  1539. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_32px.svg +0 -0
  1540. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_48px.svg +0 -0
  1541. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Comment_Report_64px.svg +0 -0
  1542. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -0
  1543. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -0
  1544. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -0
  1545. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -0
  1546. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_24px.svg +0 -0
  1547. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_32px.svg +0 -0
  1548. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_48px.svg +0 -0
  1549. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_Share_ShareIOS_64px.svg +0 -0
  1550. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -0
  1551. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -0
  1552. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -0
  1553. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -0
  1554. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -0
  1555. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -0
  1556. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -0
  1557. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -0
  1558. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -0
  1559. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -0
  1560. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -0
  1561. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -0
  1562. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -0
  1563. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -0
  1564. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -0
  1565. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -0
  1566. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -0
  1567. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -0
  1568. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -0
  1569. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -0
  1570. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -0
  1571. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -0
  1572. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -0
  1573. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -0
  1574. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_16px.svg +0 -0
  1575. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_24px.svg +0 -0
  1576. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_32px.svg +0 -0
  1577. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_48px.svg +0 -0
  1578. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Negative_64px.svg +0 -0
  1579. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_16px.svg +0 -0
  1580. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_24px.svg +0 -0
  1581. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_32px.svg +0 -0
  1582. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_48px.svg +0 -0
  1583. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Like--Positive_64px.svg +0 -0
  1584. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_16px.svg +0 -0
  1585. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_24px.svg +0 -0
  1586. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_32px.svg +0 -0
  1587. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_48px.svg +0 -0
  1588. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Empty_64px.svg +0 -0
  1589. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_16px.svg +0 -0
  1590. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_24px.svg +0 -0
  1591. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_32px.svg +0 -0
  1592. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_48px.svg +0 -0
  1593. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Full_64px.svg +0 -0
  1594. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_16px.svg +0 -0
  1595. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_24px.svg +0 -0
  1596. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_32px.svg +0 -0
  1597. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_48px.svg +0 -0
  1598. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_Star--Half_64px.svg +0 -0
  1599. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_24px.svg +0 -0
  1600. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_32px.svg +0 -0
  1601. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_48px.svg +0 -0
  1602. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Social_View_TesterView_64px.svg +0 -0
  1603. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -0
  1604. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -0
  1605. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -0
  1606. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -0
  1607. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -0
  1608. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -0
  1609. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -0
  1610. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -0
  1611. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_24px.svg +0 -0
  1612. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_32px.svg +0 -0
  1613. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_48px.svg +0 -0
  1614. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Itinerary_64px.svg +0 -0
  1615. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_16px.svg +0 -0
  1616. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_24px.svg +0 -0
  1617. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_32px.svg +0 -0
  1618. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_48px.svg +0 -0
  1619. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Locator_64px.svg +0 -0
  1620. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_24px.svg +0 -0
  1621. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_32px.svg +0 -0
  1622. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_48px.svg +0 -0
  1623. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Logo_64px.svg +0 -0
  1624. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_24px.svg +0 -0
  1625. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_32px.svg +0 -0
  1626. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_48px.svg +0 -0
  1627. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Map_64px.svg +0 -0
  1628. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -0
  1629. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -0
  1630. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -0
  1631. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -0
  1632. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -0
  1633. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -0
  1634. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -0
  1635. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -0
  1636. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_24px.svg +0 -0
  1637. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_32px.svg +0 -0
  1638. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_48px.svg +0 -0
  1639. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Store_StoreLM_64px.svg +0 -0
  1640. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_24px.svg +0 -0
  1641. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_32px.svg +0 -0
  1642. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_48px.svg +0 -0
  1643. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Attic_64px.svg +0 -0
  1644. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_24px.svg +0 -0
  1645. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_32px.svg +0 -0
  1646. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_48px.svg +0 -0
  1647. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bathroom_64px.svg +0 -0
  1648. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_24px.svg +0 -0
  1649. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_32px.svg +0 -0
  1650. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_48px.svg +0 -0
  1651. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Bedroom_64px.svg +0 -0
  1652. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_24px.svg +0 -0
  1653. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_32px.svg +0 -0
  1654. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_48px.svg +0 -0
  1655. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Carpentry_64px.svg +0 -0
  1656. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_24px.svg +0 -0
  1657. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_32px.svg +0 -0
  1658. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_48px.svg +0 -0
  1659. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ChristmasTree_64px.svg +0 -0
  1660. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_24px.svg +0 -0
  1661. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_32px.svg +0 -0
  1662. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_48px.svg +0 -0
  1663. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_ConnectedHome_64px.svg +0 -0
  1664. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_24px.svg +0 -0
  1665. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_32px.svg +0 -0
  1666. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_48px.svg +0 -0
  1667. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Curtains_64px.svg +0 -0
  1668. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_24px.svg +0 -0
  1669. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_32px.svg +0 -0
  1670. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_48px.svg +0 -0
  1671. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Dressing_64px.svg +0 -0
  1672. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_24px.svg +0 -0
  1673. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_32px.svg +0 -0
  1674. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_48px.svg +0 -0
  1675. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Electricity_64px.svg +0 -0
  1676. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_24px.svg +0 -0
  1677. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_32px.svg +0 -0
  1678. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_48px.svg +0 -0
  1679. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Enki_64px.svg +0 -0
  1680. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_24px.svg +0 -0
  1681. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_32px.svg +0 -0
  1682. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_48px.svg +0 -0
  1683. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garage_64px.svg +0 -0
  1684. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_24px.svg +0 -0
  1685. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_32px.svg +0 -0
  1686. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_48px.svg +0 -0
  1687. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden1_64px.svg +0 -0
  1688. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_24px.svg +0 -0
  1689. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_32px.svg +0 -0
  1690. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_48px.svg +0 -0
  1691. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Garden2_64px.svg +0 -0
  1692. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_24px.svg +0 -0
  1693. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_32px.svg +0 -0
  1694. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_48px.svg +0 -0
  1695. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Glass_64px.svg +0 -0
  1696. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_24px.svg +0 -0
  1697. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_32px.svg +0 -0
  1698. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_48px.svg +0 -0
  1699. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_HardwareStore_64px.svg +0 -0
  1700. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_24px.svg +0 -0
  1701. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_32px.svg +0 -0
  1702. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_48px.svg +0 -0
  1703. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Heater_64px.svg +0 -0
  1704. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_24px.svg +0 -0
  1705. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_32px.svg +0 -0
  1706. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_48px.svg +0 -0
  1707. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kids_64px.svg +0 -0
  1708. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_24px.svg +0 -0
  1709. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_32px.svg +0 -0
  1710. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_48px.svg +0 -0
  1711. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen2_64px.svg +0 -0
  1712. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_24px.svg +0 -0
  1713. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_32px.svg +0 -0
  1714. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_48px.svg +0 -0
  1715. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Kitchen_64px.svg +0 -0
  1716. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_24px.svg +0 -0
  1717. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_32px.svg +0 -0
  1718. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_48px.svg +0 -0
  1719. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Leak_64px.svg +0 -0
  1720. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_24px.svg +0 -0
  1721. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_32px.svg +0 -0
  1722. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_48px.svg +0 -0
  1723. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Lighting_64px.svg +0 -0
  1724. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_24px.svg +0 -0
  1725. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_32px.svg +0 -0
  1726. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_48px.svg +0 -0
  1727. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Living_64px.svg +0 -0
  1728. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_24px.svg +0 -0
  1729. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_32px.svg +0 -0
  1730. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_48px.svg +0 -0
  1731. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_MakeIt_64px.svg +0 -0
  1732. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_24px.svg +0 -0
  1733. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_32px.svg +0 -0
  1734. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_48px.svg +0 -0
  1735. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Pool_64px.svg +0 -0
  1736. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_24px.svg +0 -0
  1737. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_32px.svg +0 -0
  1738. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_48px.svg +0 -0
  1739. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Security_64px.svg +0 -0
  1740. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_24px.svg +0 -0
  1741. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_32px.svg +0 -0
  1742. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_48px.svg +0 -0
  1743. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Terrace_64px.svg +0 -0
  1744. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_24px.svg +0 -0
  1745. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_32px.svg +0 -0
  1746. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_48px.svg +0 -0
  1747. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_Tool_64px.svg +0 -0
  1748. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_24px.svg +0 -0
  1749. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_32px.svg +0 -0
  1750. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_48px.svg +0 -0
  1751. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Universe_WoodSaw_64px.svg +0 -0
  1752. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -0
  1753. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -0
  1754. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -0
  1755. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -0
  1756. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_24px.svg +0 -0
  1757. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_32px.svg +0 -0
  1758. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_48px.svg +0 -0
  1759. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Passion_64px.svg +0 -0
  1760. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_24px.svg +0 -0
  1761. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_32px.svg +0 -0
  1762. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_48px.svg +0 -0
  1763. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Customer--Pro_64px.svg +0 -0
  1764. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_24px.svg +0 -0
  1765. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_32px.svg +0 -0
  1766. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_48px.svg +0 -0
  1767. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Man_64px.svg +0 -0
  1768. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_24px.svg +0 -0
  1769. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_32px.svg +0 -0
  1770. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_48px.svg +0 -0
  1771. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--View_64px.svg +0 -0
  1772. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_24px.svg +0 -0
  1773. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_32px.svg +0 -0
  1774. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_48px.svg +0 -0
  1775. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Account_Profile--Woman_64px.svg +0 -0
  1776. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_24px.svg +0 -0
  1777. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_32px.svg +0 -0
  1778. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_48px.svg +0 -0
  1779. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Funding_64px.svg +0 -0
  1780. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_24px.svg +0 -0
  1781. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_32px.svg +0 -0
  1782. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_48px.svg +0 -0
  1783. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_Gift_64px.svg +0 -0
  1784. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_24px.svg +0 -0
  1785. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_32px.svg +0 -0
  1786. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_48px.svg +0 -0
  1787. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_IDCard_64px.svg +0 -0
  1788. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -0
  1789. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -0
  1790. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -0
  1791. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -0
  1792. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_24px.svg +0 -0
  1793. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_32px.svg +0 -0
  1794. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_48px.svg +0 -0
  1795. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Mail_64px.svg +0 -0
  1796. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_24px.svg +0 -0
  1797. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_32px.svg +0 -0
  1798. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_48px.svg +0 -0
  1799. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Phone_64px.svg +0 -0
  1800. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_24px.svg +0 -0
  1801. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_32px.svg +0 -0
  1802. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_48px.svg +0 -0
  1803. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Contact_Website_64px.svg +0 -0
  1804. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_24px.svg +0 -0
  1805. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_32px.svg +0 -0
  1806. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_48px.svg +0 -0
  1807. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Owner_64px.svg +0 -0
  1808. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_24px.svg +0 -0
  1809. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_32px.svg +0 -0
  1810. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_48px.svg +0 -0
  1811. /package/{assets → dist/mozaic-angular/assets}/moz-icons/User_Situation_Tenant_64px.svg +0 -0
  1812. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_24px.svg +0 -0
  1813. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_32px.svg +0 -0
  1814. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_48px.svg +0 -0
  1815. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Administration_64px.svg +0 -0
  1816. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_24px.svg +0 -0
  1817. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_32px.svg +0 -0
  1818. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_48px.svg +0 -0
  1819. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Apartment_64px.svg +0 -0
  1820. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_24px.svg +0 -0
  1821. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_32px.svg +0 -0
  1822. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_48px.svg +0 -0
  1823. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Balcony_64px.svg +0 -0
  1824. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_24px.svg +0 -0
  1825. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_32px.svg +0 -0
  1826. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_48px.svg +0 -0
  1827. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Blower_64px.svg +0 -0
  1828. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_24px.svg +0 -0
  1829. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_32px.svg +0 -0
  1830. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_48px.svg +0 -0
  1831. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Door_64px.svg +0 -0
  1832. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_24px.svg +0 -0
  1833. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_32px.svg +0 -0
  1834. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_48px.svg +0 -0
  1835. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_EcoSaving_64px.svg +0 -0
  1836. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_24px.svg +0 -0
  1837. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_32px.svg +0 -0
  1838. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_48px.svg +0 -0
  1839. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Heat_64px.svg +0 -0
  1840. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_24px.svg +0 -0
  1841. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_32px.svg +0 -0
  1842. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_48px.svg +0 -0
  1843. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_House_64px.svg +0 -0
  1844. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_24px.svg +0 -0
  1845. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_32px.svg +0 -0
  1846. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_48px.svg +0 -0
  1847. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_IncreaseValue_64px.svg +0 -0
  1848. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_24px.svg +0 -0
  1849. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_32px.svg +0 -0
  1850. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_48px.svg +0 -0
  1851. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Insulation_64px.svg +0 -0
  1852. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_24px.svg +0 -0
  1853. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_32px.svg +0 -0
  1854. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_48px.svg +0 -0
  1855. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_LessonDIY_64px.svg +0 -0
  1856. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_24px.svg +0 -0
  1857. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_32px.svg +0 -0
  1858. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_48px.svg +0 -0
  1859. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Level_64px.svg +0 -0
  1860. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_24px.svg +0 -0
  1861. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_32px.svg +0 -0
  1862. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_48px.svg +0 -0
  1863. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PaintCan_64px.svg +0 -0
  1864. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_24px.svg +0 -0
  1865. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_32px.svg +0 -0
  1866. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_48px.svg +0 -0
  1867. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerCompany_64px.svg +0 -0
  1868. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_24px.svg +0 -0
  1869. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_32px.svg +0 -0
  1870. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_48px.svg +0 -0
  1871. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_PartnerWorker_64px.svg +0 -0
  1872. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_24px.svg +0 -0
  1873. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_32px.svg +0 -0
  1874. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_48px.svg +0 -0
  1875. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Pipe_64px.svg +0 -0
  1876. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_24px.svg +0 -0
  1877. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_32px.svg +0 -0
  1878. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_48px.svg +0 -0
  1879. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Premium_64px.svg +0 -0
  1880. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_24px.svg +0 -0
  1881. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_32px.svg +0 -0
  1882. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_48px.svg +0 -0
  1883. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Shutter_64px.svg +0 -0
  1884. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_24px.svg +0 -0
  1885. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_32px.svg +0 -0
  1886. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_48px.svg +0 -0
  1887. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Survey_64px.svg +0 -0
  1888. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_24px.svg +0 -0
  1889. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_32px.svg +0 -0
  1890. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_48px.svg +0 -0
  1891. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_Temperature_64px.svg +0 -0
  1892. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_24px.svg +0 -0
  1893. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_32px.svg +0 -0
  1894. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_48px.svg +0 -0
  1895. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ThermalControl_64px.svg +0 -0
  1896. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_24px.svg +0 -0
  1897. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_32px.svg +0 -0
  1898. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_48px.svg +0 -0
  1899. /package/{assets → dist/mozaic-angular/assets}/moz-icons/Various_ToolBox_64px.svg +0 -0
  1900. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/global-events/public-api.mjs +0 -0
  1901. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/index.mjs +0 -0
  1902. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/boolean-property.mjs +0 -0
  1903. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/generate-id.mjs +0 -0
  1904. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/get-random-number.mjs +0 -0
  1905. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/index.mjs +0 -0
  1906. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/overwrite-style.mjs +0 -0
  1907. /package/{esm2020 → dist/mozaic-angular/esm2020}/common/utils/public-api.mjs +0 -0
  1908. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/badge/badge.mjs +0 -0
  1909. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/badge/index.mjs +0 -0
  1910. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/button/button.mjs +0 -0
  1911. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/button/index.mjs +0 -0
  1912. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/checkbox/public-api.mjs +0 -0
  1913. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-config.mjs +0 -0
  1914. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-injector.mjs +0 -0
  1915. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/dialog-ref.mjs +0 -0
  1916. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/classes/index.mjs +0 -0
  1917. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/dialog-animation.mjs +0 -0
  1918. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-config.mjs +0 -0
  1919. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-di-params.mjs +0 -0
  1920. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/dialog-ref.mjs +0 -0
  1921. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/interfaces/index.mjs +0 -0
  1922. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/public-api.mjs +0 -0
  1923. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-config.token.mjs +0 -0
  1924. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-data.token.mjs +0 -0
  1925. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/dialog-ref.token.mjs +0 -0
  1926. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/dialog/tokens/index.mjs +0 -0
  1927. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/field/public-api.mjs +0 -0
  1928. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/icon/icon-size.mjs +0 -0
  1929. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/icon/public-api.mjs +0 -0
  1930. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/classes/layer-injector.mjs +0 -0
  1931. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/classes/layer-ref.mjs +0 -0
  1932. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/index.mjs +0 -0
  1933. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-config.mjs +0 -0
  1934. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-di-params.mjs +0 -0
  1935. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/interfaces/layer-ref.mjs +0 -0
  1936. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/layer-animation.mjs +0 -0
  1937. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/public-api.mjs +0 -0
  1938. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/index.mjs +0 -0
  1939. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-config.token.mjs +0 -0
  1940. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-data.token.mjs +0 -0
  1941. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/layer/tokens/layer-ref.token.mjs +0 -0
  1942. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/loader/loader.mjs +0 -0
  1943. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/loader/public-api.mjs +0 -0
  1944. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/notification-animation.mjs +0 -0
  1945. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/notification.mjs +0 -0
  1946. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/notification/public-api.mjs +0 -0
  1947. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/pagination/pagination.mjs +0 -0
  1948. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/pagination/public-api.mjs +0 -0
  1949. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/progress-bar-size.mjs +0 -0
  1950. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/progress-bar-theme.mjs +0 -0
  1951. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/progress-bar/public-api.mjs +0 -0
  1952. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/public-api.mjs +0 -0
  1953. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/select/public-api.mjs +0 -0
  1954. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/select/select-size.mjs +0 -0
  1955. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/stepper/public-api.mjs +0 -0
  1956. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/stepper/step-state.mjs +0 -0
  1957. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tabs/public-api.mjs +0 -0
  1958. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tabs/tab-selectors.mjs +0 -0
  1959. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tag/public-api.mjs +0 -0
  1960. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tag/tag-type.mjs +0 -0
  1961. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-area/public-api.mjs +0 -0
  1962. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-input/public-api.mjs +0 -0
  1963. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/text-input/text-input.mjs +0 -0
  1964. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/toggle/public-api.mjs +0 -0
  1965. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/toggle/toggle-size.mjs +0 -0
  1966. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tooltip/public-api.mjs +0 -0
  1967. /package/{esm2020 → dist/mozaic-angular/esm2020}/components/tooltip/tooltip-position.mjs +0 -0
  1968. /package/{esm2020 → dist/mozaic-angular/esm2020}/mozaic-ds-angular.mjs +0 -0
  1969. /package/{esm2020 → dist/mozaic-angular/esm2020}/public-api.mjs +0 -0
@@ -1,40 +0,0 @@
1
- import { DOCUMENT } from '@angular/common';
2
- import { Inject, Injectable, } from '@angular/core';
3
- import { NotificationContainerComponent } from './notification-container.component';
4
- import * as i0 from "@angular/core";
5
- export class NotificationService {
6
- constructor(applicationRef, componentFactoryResolver, injector, document) {
7
- this.applicationRef = applicationRef;
8
- this.componentFactoryResolver = componentFactoryResolver;
9
- this.injector = injector;
10
- this.document = document;
11
- this.container = this.createContainer();
12
- this.appendNotificationContainerToBody(this.container);
13
- }
14
- add(notification) {
15
- this.container.instance.add(notification);
16
- }
17
- createContainer() {
18
- const componentFactory = this.componentFactoryResolver.resolveComponentFactory(NotificationContainerComponent);
19
- const componentRef = componentFactory.create(this.injector);
20
- return componentRef;
21
- }
22
- appendNotificationContainerToBody(componentRef) {
23
- const componentHostView = componentRef.hostView;
24
- const componentHtmlElement = componentHostView.rootNodes[0];
25
- this.applicationRef.attachView(componentHostView);
26
- this.document.body.appendChild(componentHtmlElement);
27
- }
28
- }
29
- NotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: NotificationService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
30
- NotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: NotificationService, providedIn: 'root' });
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: NotificationService, decorators: [{
32
- type: Injectable,
33
- args: [{
34
- providedIn: 'root',
35
- }]
36
- }], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: Document, decorators: [{
37
- type: Inject,
38
- args: [DOCUMENT]
39
- }] }]; } });
40
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9ub3RpZmljYXRpb24vbm90aWZpY2F0aW9uLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzNDLE9BQU8sRUFLTCxNQUFNLEVBQ04sVUFBVSxHQUVYLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDOztBQUtwRixNQUFNLE9BQU8sbUJBQW1CO0lBRzlCLFlBQ21CLGNBQThCLEVBQzlCLHdCQUFrRCxFQUNsRCxRQUFrQixFQUNBLFFBQWtCO1FBSHBDLG1CQUFjLEdBQWQsY0FBYyxDQUFnQjtRQUM5Qiw2QkFBd0IsR0FBeEIsd0JBQXdCLENBQTBCO1FBQ2xELGFBQVEsR0FBUixRQUFRLENBQVU7UUFDQSxhQUFRLEdBQVIsUUFBUSxDQUFVO1FBRXJELElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQ3hDLElBQUksQ0FBQyxpQ0FBaUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDekQsQ0FBQztJQUVNLEdBQUcsQ0FBQyxZQUEwQjtRQUNuQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVPLGVBQWU7UUFDckIsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsdUJBQXVCLENBQzVFLDhCQUE4QixDQUMvQixDQUFDO1FBQ0YsTUFBTSxZQUFZLEdBQUcsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUM1RCxPQUFPLFlBQVksQ0FBQztJQUN0QixDQUFDO0lBRU8saUNBQWlDLENBQ3ZDLFlBQTBEO1FBRTFELE1BQU0saUJBQWlCLEdBQUcsWUFBWSxDQUFDLFFBQW9DLENBQUM7UUFDNUUsTUFBTSxvQkFBb0IsR0FBRyxpQkFBaUIsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFnQixDQUFDO1FBQzNFLElBQUksQ0FBQyxjQUFjLENBQUMsVUFBVSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDbEQsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLG9CQUFvQixDQUFDLENBQUM7SUFDdkQsQ0FBQzs7Z0hBaENVLG1CQUFtQixnSEFPcEIsUUFBUTtvSEFQUCxtQkFBbUIsY0FGbEIsTUFBTTsyRkFFUCxtQkFBbUI7a0JBSC9CLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25COzswQkFRSSxNQUFNOzJCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBET0NVTUVOVCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBBcHBsaWNhdGlvblJlZixcbiAgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLFxuICBDb21wb25lbnRSZWYsXG4gIEVtYmVkZGVkVmlld1JlZixcbiAgSW5qZWN0LFxuICBJbmplY3RhYmxlLFxuICBJbmplY3Rvcixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOb3RpZmljYXRpb24gfSBmcm9tICcuL25vdGlmaWNhdGlvbic7XG5pbXBvcnQgeyBOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL25vdGlmaWNhdGlvbi1jb250YWluZXIuY29tcG9uZW50JztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIE5vdGlmaWNhdGlvblNlcnZpY2Uge1xuICBwcml2YXRlIHJlYWRvbmx5IGNvbnRhaW5lciE6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+O1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVhZG9ubHkgYXBwbGljYXRpb25SZWY6IEFwcGxpY2F0aW9uUmVmLFxuICAgIHByaXZhdGUgcmVhZG9ubHkgY29tcG9uZW50RmFjdG9yeVJlc29sdmVyOiBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIsXG4gICAgcHJpdmF0ZSByZWFkb25seSBpbmplY3RvcjogSW5qZWN0b3IsXG4gICAgQEluamVjdChET0NVTUVOVCkgcHJpdmF0ZSByZWFkb25seSBkb2N1bWVudDogRG9jdW1lbnRcbiAgKSB7XG4gICAgdGhpcy5jb250YWluZXIgPSB0aGlzLmNyZWF0ZUNvbnRhaW5lcigpO1xuICAgIHRoaXMuYXBwZW5kTm90aWZpY2F0aW9uQ29udGFpbmVyVG9Cb2R5KHRoaXMuY29udGFpbmVyKTtcbiAgfVxuXG4gIHB1YmxpYyBhZGQobm90aWZpY2F0aW9uOiBOb3RpZmljYXRpb24pIHtcbiAgICB0aGlzLmNvbnRhaW5lci5pbnN0YW5jZS5hZGQobm90aWZpY2F0aW9uKTtcbiAgfVxuXG4gIHByaXZhdGUgY3JlYXRlQ29udGFpbmVyKCk6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+IHtcbiAgICBjb25zdCBjb21wb25lbnRGYWN0b3J5ID0gdGhpcy5jb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIucmVzb2x2ZUNvbXBvbmVudEZhY3RvcnkoXG4gICAgICBOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnRcbiAgICApO1xuICAgIGNvbnN0IGNvbXBvbmVudFJlZiA9IGNvbXBvbmVudEZhY3RvcnkuY3JlYXRlKHRoaXMuaW5qZWN0b3IpO1xuICAgIHJldHVybiBjb21wb25lbnRSZWY7XG4gIH1cblxuICBwcml2YXRlIGFwcGVuZE5vdGlmaWNhdGlvbkNvbnRhaW5lclRvQm9keShcbiAgICBjb21wb25lbnRSZWY6IENvbXBvbmVudFJlZjxOb3RpZmljYXRpb25Db250YWluZXJDb21wb25lbnQ+XG4gICk6IHZvaWQge1xuICAgIGNvbnN0IGNvbXBvbmVudEhvc3RWaWV3ID0gY29tcG9uZW50UmVmLmhvc3RWaWV3IGFzIEVtYmVkZGVkVmlld1JlZjx1bmtub3duPjtcbiAgICBjb25zdCBjb21wb25lbnRIdG1sRWxlbWVudCA9IGNvbXBvbmVudEhvc3RWaWV3LnJvb3ROb2Rlc1swXSBhcyBIVE1MRWxlbWVudDtcbiAgICB0aGlzLmFwcGxpY2F0aW9uUmVmLmF0dGFjaFZpZXcoY29tcG9uZW50SG9zdFZpZXcpO1xuICAgIHRoaXMuZG9jdW1lbnQuYm9keS5hcHBlbmRDaGlsZChjb21wb25lbnRIdG1sRWxlbWVudCk7XG4gIH1cbn1cbiJdfQ==
@@ -1,133 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, forwardRef, Input, } from '@angular/core';
2
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
- import { debounceTime, map, shareReplay, startWith } from 'rxjs';
4
- import { IconSize } from '../icon/icon-size';
5
- import { SELECT_SIZE } from '../select/select-size';
6
- import { PAGINATION_FIRST_PAGE, PAGINATION_MIN_NUMBER_OF_PAGES, PAGINATION_PAGE_STEP, } from './pagination';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "../../common";
9
- import * as i2 from "@angular/common";
10
- import * as i3 from "@angular/forms";
11
- import * as i4 from "../button/button.component";
12
- import * as i5 from "../select/select.component";
13
- import * as i6 from "../icon/icon.component";
14
- export const PAGINATION_CONTROL_VALUE_ACCESSOR = {
15
- provide: NG_VALUE_ACCESSOR,
16
- useExisting: forwardRef(() => PaginationComponent),
17
- multi: true,
18
- };
19
- export class PaginationComponent {
20
- constructor(globalEventService, cd) {
21
- this.globalEventService = globalEventService;
22
- this.cd = cd;
23
- this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
24
- this.light = false;
25
- this.pageTitleMask = (page, numberOfPages) => `Page ${page} of ${numberOfPages}`;
26
- this.onChange = () => { };
27
- this.onTouch = () => { };
28
- this.currentPage = PAGINATION_FIRST_PAGE;
29
- this.pages = [];
30
- this.smallResolution = 1024;
31
- const isSmall = this.displayIsSmall().pipe(shareReplay({ refCount: true, bufferSize: 1 }));
32
- this.initializeIcons(isSmall);
33
- this.selectSize = isSmall.pipe(map((isSmall) => this.chooseSelectSize(isSmall)));
34
- }
35
- ngAfterViewInit() {
36
- this.reinitializeNumberOfPagesAtInvalidValue();
37
- if (this.viewSelect) {
38
- this.pages = this.initializePages(this.numberOfPages);
39
- }
40
- this.reinitializeCurrentPageAtOverflow();
41
- this.cd.detectChanges();
42
- }
43
- ngOnChanges({ numberOfPages, pageTitleMask }) {
44
- if (this.needRenderPages(this.viewSelect, numberOfPages?.currentValue, numberOfPages?.previousValue, pageTitleMask?.currentValue, pageTitleMask?.previousValue)) {
45
- this.reinitializeNumberOfPagesAtInvalidValue();
46
- this.pages = this.initializePages(this.numberOfPages);
47
- }
48
- this.reinitializeCurrentPageAtOverflow();
49
- }
50
- get viewSelect() {
51
- return !this.light;
52
- }
53
- get isFirstPage() {
54
- return this.currentPage <= PAGINATION_FIRST_PAGE;
55
- }
56
- get isLastPage() {
57
- return this.currentPage >= this.numberOfPages;
58
- }
59
- get disabledSelect() {
60
- return this.numberOfPages <= PAGINATION_MIN_NUMBER_OF_PAGES;
61
- }
62
- writeValue(value) {
63
- if (!value || value === this.currentPage || value > this.numberOfPages)
64
- return;
65
- this.currentPage = value;
66
- this.onChange(value);
67
- }
68
- registerOnChange(fn) {
69
- this.onChange = fn;
70
- }
71
- registerOnTouched(fn) {
72
- this.onTouch = fn;
73
- }
74
- nextPage() {
75
- this.writeValue(this.currentPage + PAGINATION_PAGE_STEP);
76
- }
77
- previousPage() {
78
- this.writeValue(this.currentPage - PAGINATION_PAGE_STEP);
79
- }
80
- compareWithPages(page, currentPage) {
81
- return page === currentPage;
82
- }
83
- initializePages(numberOfPages) {
84
- return new Array(numberOfPages).fill(null).map((_, index) => ({
85
- title: this.pageTitleMask(index + 1, numberOfPages),
86
- value: index + 1,
87
- }));
88
- }
89
- initializeIcons(isSmall) {
90
- const iconSize = isSmall.pipe(map((isSmall) => this.chooseIconSize(isSmall)), shareReplay({ refCount: true, bufferSize: 1 }));
91
- this.leftIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Left_${iconSize}`));
92
- this.rightIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Right_${iconSize}`));
93
- }
94
- displayIsSmall() {
95
- const resizeEvent = this.globalEventService.getWindowEvent('resize').pipe(debounceTime(100));
96
- const displayWidth = resizeEvent.pipe(map((event) => event?.target?.innerWidth), startWith(this.globalEventService.window.innerWidth));
97
- return displayWidth.pipe(map((width) => width < this.smallResolution));
98
- }
99
- reinitializeCurrentPageAtOverflow() {
100
- if (this.numberOfPages < this.currentPage) {
101
- this.writeValue(PAGINATION_FIRST_PAGE);
102
- }
103
- }
104
- reinitializeNumberOfPagesAtInvalidValue() {
105
- if (!this.numberOfPages || this.numberOfPages < PAGINATION_MIN_NUMBER_OF_PAGES) {
106
- this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
107
- }
108
- }
109
- chooseIconSize(isSmall) {
110
- return isSmall ? IconSize.L : IconSize.M;
111
- }
112
- chooseSelectSize(isSmall) {
113
- return isSmall ? SELECT_SIZE.M : SELECT_SIZE.S;
114
- }
115
- needRenderPages(viewSelect, numberOfPagesPrevious, numberOfPagesCurrent, pageTitleMaskPrevious, pageTitleMaskCurrent) {
116
- const numberOfPageHasChanges = numberOfPagesPrevious !== numberOfPagesCurrent;
117
- const maskHasChanges = pageTitleMaskPrevious !== pageTitleMaskCurrent;
118
- return viewSelect && (numberOfPageHasChanges || maskHasChanges);
119
- }
120
- }
121
- PaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: PaginationComponent, deps: [{ token: i1.GlobalEventsService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
122
- PaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: PaginationComponent, selector: "moz-pagination", inputs: { numberOfPages: "numberOfPages", light: "light", pageTitleMask: "pageTitleMask" }, providers: [PAGINATION_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: "<nav class=\"mc-pagination\" role=\"navigation\" aria-label=\"pagination\">\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isFirstPage\"\n [onlyIcon]=\"true\"\n (click)=\"previousPage()\"\n *ngIf=\"leftIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n <div *ngIf=\"viewSelect\">\n <select\n moz-select\n [ngModel]=\"currentPage\"\n (ngModelChange)=\"writeValue($event)\"\n [compareWith]=\"compareWithPages\"\n [size]=\"(selectSize | async)!\"\n [disabled]=\"disabledSelect\"\n >\n <option *ngFor=\"let page of pages\" [ngValue]=\"page.value\">{{ page.title }}</option>\n </select>\n </div>\n\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isLastPage\"\n (click)=\"nextPage()\"\n [onlyIcon]=\"true\"\n *ngIf=\"rightIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n</nav>\n", styles: [".mc-pagination{align-items:center;display:flex;justify-content:center;gap:1rem}.mc-pagination__select{font-size:1rem;line-height:1.125;padding:.875rem 3rem .875rem calc(.75rem - 1px)}@media screen and (min-width: 1024px){.mc-pagination__select{font-size:.875rem;line-height:1.1428571429;padding:calc(.5rem - 1px) 2.25rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-pagination{gap:1rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i4.ButtonComponent, selector: "button[moz-button]", inputs: ["iconPosition", "onlyIcon", "theme", "variation", "widthBehavior", "size"] }, { kind: "component", type: i5.SelectComponent, selector: "select[moz-`select`]", inputs: ["size"] }, { kind: "component", type: i6.IconComponent, selector: "moz-icon", inputs: ["iconName"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
123
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: PaginationComponent, decorators: [{
124
- type: Component,
125
- args: [{ selector: 'moz-pagination', changeDetection: ChangeDetectionStrategy.OnPush, providers: [PAGINATION_CONTROL_VALUE_ACCESSOR], template: "<nav class=\"mc-pagination\" role=\"navigation\" aria-label=\"pagination\">\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isFirstPage\"\n [onlyIcon]=\"true\"\n (click)=\"previousPage()\"\n *ngIf=\"leftIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n <div *ngIf=\"viewSelect\">\n <select\n moz-select\n [ngModel]=\"currentPage\"\n (ngModelChange)=\"writeValue($event)\"\n [compareWith]=\"compareWithPages\"\n [size]=\"(selectSize | async)!\"\n [disabled]=\"disabledSelect\"\n >\n <option *ngFor=\"let page of pages\" [ngValue]=\"page.value\">{{ page.title }}</option>\n </select>\n </div>\n\n <button\n moz-button\n theme=\"neutral\"\n class=\"mc-pagination__button\"\n [disabled]=\"isLastPage\"\n (click)=\"nextPage()\"\n [onlyIcon]=\"true\"\n *ngIf=\"rightIconName | async; let icon\"\n >\n <moz-icon [iconName]=\"icon\"></moz-icon>\n </button>\n</nav>\n", styles: [".mc-pagination{align-items:center;display:flex;justify-content:center;gap:1rem}.mc-pagination__select{font-size:1rem;line-height:1.125;padding:.875rem 3rem .875rem calc(.75rem - 1px)}@media screen and (min-width: 1024px){.mc-pagination__select{font-size:.875rem;line-height:1.1428571429;padding:calc(.5rem - 1px) 2.25rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-pagination{gap:1rem}\n"] }]
126
- }], ctorParameters: function () { return [{ type: i1.GlobalEventsService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { numberOfPages: [{
127
- type: Input
128
- }], light: [{
129
- type: Input
130
- }], pageTitleMask: [{
131
- type: Input
132
- }] } });
133
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcGFnaW5hdGlvbi9wYWdpbmF0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFFdkIsU0FBUyxFQUNULFVBQVUsRUFDVixLQUFLLEdBRU4sTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUF3QixpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSxZQUFZLEVBQUUsR0FBRyxFQUFjLFdBQVcsRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFN0UsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQzdDLE9BQU8sRUFBYyxXQUFXLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNoRSxPQUFPLEVBRUwscUJBQXFCLEVBQ3JCLDhCQUE4QixFQUM5QixvQkFBb0IsR0FDckIsTUFBTSxjQUFjLENBQUM7Ozs7Ozs7O0FBRXRCLE1BQU0sQ0FBQyxNQUFNLGlDQUFpQyxHQUFRO0lBQ3BELE9BQU8sRUFBRSxpQkFBaUI7SUFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztJQUNsRCxLQUFLLEVBQUUsSUFBSTtDQUNaLENBQUM7QUFTRixNQUFNLE9BQU8sbUJBQW1CO0lBd0I5QixZQUNtQixrQkFBdUMsRUFDdkMsRUFBcUI7UUFEckIsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFxQjtRQUN2QyxPQUFFLEdBQUYsRUFBRSxDQUFtQjtRQXpCL0Isa0JBQWEsR0FBRyw4QkFBOEIsQ0FBQztRQUUvQyxVQUFLLEdBQUcsS0FBSyxDQUFDO1FBRWQsa0JBQWEsR0FBRyxDQUFDLElBQVksRUFBRSxhQUFxQixFQUFFLEVBQUUsQ0FDL0QsUUFBUSxJQUFJLE9BQU8sYUFBYSxFQUFFLENBQUM7UUFFOUIsYUFBUSxHQUFRLEdBQUcsRUFBRSxHQUFFLENBQUMsQ0FBQztRQUV6QixZQUFPLEdBQVEsR0FBRyxFQUFFLEdBQUUsQ0FBQyxDQUFDO1FBRXhCLGdCQUFXLEdBQUcscUJBQXFCLENBQUM7UUFFcEMsVUFBSyxHQUFXLEVBQUUsQ0FBQztRQVFULG9CQUFlLEdBQUcsSUFBSSxDQUFDO1FBTXRDLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQzNGLElBQUksQ0FBQyxlQUFlLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDOUIsSUFBSSxDQUFDLFVBQVUsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNuRixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyx1Q0FBdUMsRUFBRSxDQUFDO1FBQy9DLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNuQixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ3ZEO1FBQ0QsSUFBSSxDQUFDLGlDQUFpQyxFQUFFLENBQUM7UUFDekMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBRUQsV0FBVyxDQUFDLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBaUI7UUFDekQsSUFDRSxJQUFJLENBQUMsZUFBZSxDQUNsQixJQUFJLENBQUMsVUFBVSxFQUNmLGFBQWEsRUFBRSxZQUFZLEVBQzNCLGFBQWEsRUFBRSxhQUFhLEVBQzVCLGFBQWEsRUFBRSxZQUFZLEVBQzNCLGFBQWEsRUFBRSxhQUFhLENBQzdCLEVBQ0Q7WUFDQSxJQUFJLENBQUMsdUNBQXVDLEVBQUUsQ0FBQztZQUMvQyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ3ZEO1FBQ0QsSUFBSSxDQUFDLGlDQUFpQyxFQUFFLENBQUM7SUFDM0MsQ0FBQztJQUVELElBQVcsVUFBVTtRQUNuQixPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxXQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxxQkFBcUIsQ0FBQztJQUNuRCxDQUFDO0lBRUQsSUFBVyxVQUFVO1FBQ25CLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsYUFBYSxDQUFDO0lBQ2hELENBQUM7SUFFRCxJQUFXLGNBQWM7UUFDdkIsT0FBTyxJQUFJLENBQUMsYUFBYSxJQUFJLDhCQUE4QixDQUFDO0lBQzlELENBQUM7SUFFTSxVQUFVLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsS0FBSyxJQUFJLEtBQUssS0FBSyxJQUFJLENBQUMsV0FBVyxJQUFJLEtBQUssR0FBRyxJQUFJLENBQUMsYUFBYTtZQUFFLE9BQU87UUFDL0UsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2QixDQUFDO0lBRU0sZ0JBQWdCLENBQUMsRUFBTztRQUM3QixJQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBRU0saUJBQWlCLENBQUMsRUFBTztRQUM5QixJQUFJLENBQUMsT0FBTyxHQUFHLEVBQUUsQ0FBQztJQUNwQixDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxvQkFBb0IsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFTSxZQUFZO1FBQ2pCLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxvQkFBb0IsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxJQUFZLEVBQUUsV0FBb0I7UUFDeEQsT0FBTyxJQUFJLEtBQUssV0FBVyxDQUFDO0lBQzlCLENBQUM7SUFFTyxlQUFlLENBQUMsYUFBcUI7UUFDM0MsT0FBTyxJQUFJLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztZQUM1RCxLQUFLLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxFQUFFLGFBQWEsQ0FBQztZQUNuRCxLQUFLLEVBQUUsS0FBSyxHQUFHLENBQUM7U0FDakIsQ0FBQyxDQUFDLENBQUM7SUFDTixDQUFDO0lBRU8sZUFBZSxDQUFDLE9BQTRCO1FBQ2xELE1BQU0sUUFBUSxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQzNCLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxFQUM5QyxXQUFXLENBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUMvQyxDQUFDO1FBRUYsSUFBSSxDQUFDLFlBQVksR0FBRyxRQUFRLENBQUMsSUFBSSxDQUMvQixHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLGdDQUFnQyxRQUFRLEVBQUUsQ0FBQyxDQUM5RCxDQUFDO1FBRUYsSUFBSSxDQUFDLGFBQWEsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUNoQyxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLGlDQUFpQyxRQUFRLEVBQUUsQ0FBQyxDQUMvRCxDQUFDO0lBQ0osQ0FBQztJQUVPLGNBQWM7UUFDcEIsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7UUFDN0YsTUFBTSxZQUFZLEdBQUcsV0FBVyxDQUFDLElBQUksQ0FDbkMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBRSxLQUFLLEVBQUUsTUFBaUIsRUFBRSxVQUFVLENBQUMsRUFDckQsU0FBUyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQ3JELENBQUM7UUFDRixPQUFPLFlBQVksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDLENBQUM7SUFDekUsQ0FBQztJQUVPLGlDQUFpQztRQUN2QyxJQUFJLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUN6QyxJQUFJLENBQUMsVUFBVSxDQUFDLHFCQUFxQixDQUFDLENBQUM7U0FDeEM7SUFDSCxDQUFDO0lBRU8sdUNBQXVDO1FBQzdDLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxJQUFJLElBQUksQ0FBQyxhQUFhLEdBQUcsOEJBQThCLEVBQUU7WUFDOUUsSUFBSSxDQUFDLGFBQWEsR0FBRyw4QkFBOEIsQ0FBQztTQUNyRDtJQUNILENBQUM7SUFFTyxjQUFjLENBQUMsT0FBZ0I7UUFDckMsT0FBTyxPQUFPLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVPLGdCQUFnQixDQUFDLE9BQWdCO1FBQ3ZDLE9BQU8sT0FBTyxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7SUFFTyxlQUFlLENBQ3JCLFVBQW1CLEVBQ25CLHFCQUE4QixFQUM5QixvQkFBNkIsRUFDN0IscUJBQStCLEVBQy9CLG9CQUE4QjtRQUU5QixNQUFNLHNCQUFzQixHQUFHLHFCQUFxQixLQUFLLG9CQUFvQixDQUFDO1FBQzlFLE1BQU0sY0FBYyxHQUFHLHFCQUFxQixLQUFLLG9CQUFvQixDQUFDO1FBQ3RFLE9BQU8sVUFBVSxJQUFJLENBQUMsc0JBQXNCLElBQUksY0FBYyxDQUFDLENBQUM7SUFDbEUsQ0FBQzs7Z0hBaktVLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHFJQUZuQixDQUFDLGlDQUFpQyxDQUFDLCtDQy9CaEQscWhDQXFDQTsyRkRKYSxtQkFBbUI7a0JBUC9CLFNBQVM7K0JBQ0UsZ0JBQWdCLG1CQUdULHVCQUF1QixDQUFDLE1BQU0sYUFDcEMsQ0FBQyxpQ0FBaUMsQ0FBQzswSUFHckMsYUFBYTtzQkFBckIsS0FBSztnQkFFRyxLQUFLO3NCQUFiLEtBQUs7Z0JBRUcsYUFBYTtzQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBmb3J3YXJkUmVmLFxuICBJbnB1dCxcbiAgU2ltcGxlQ2hhbmdlcyxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBkZWJvdW5jZVRpbWUsIG1hcCwgT2JzZXJ2YWJsZSwgc2hhcmVSZXBsYXksIHN0YXJ0V2l0aCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgR2xvYmFsRXZlbnRzU2VydmljZSB9IGZyb20gJy4uLy4uL2NvbW1vbic7XG5pbXBvcnQgeyBJY29uU2l6ZSB9IGZyb20gJy4uL2ljb24vaWNvbi1zaXplJztcbmltcG9ydCB7IFNlbGVjdFNpemUsIFNFTEVDVF9TSVpFIH0gZnJvbSAnLi4vc2VsZWN0L3NlbGVjdC1zaXplJztcbmltcG9ydCB7XG4gIFBhZ2UsXG4gIFBBR0lOQVRJT05fRklSU1RfUEFHRSxcbiAgUEFHSU5BVElPTl9NSU5fTlVNQkVSX09GX1BBR0VTLFxuICBQQUdJTkFUSU9OX1BBR0VfU1RFUCxcbn0gZnJvbSAnLi9wYWdpbmF0aW9uJztcblxuZXhwb3J0IGNvbnN0IFBBR0lOQVRJT05fQ09OVFJPTF9WQUxVRV9BQ0NFU1NPUjogYW55ID0ge1xuICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcbiAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gUGFnaW5hdGlvbkNvbXBvbmVudCksXG4gIG11bHRpOiB0cnVlLFxufTtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbW96LXBhZ2luYXRpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnaW5hdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhZ2luYXRpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW1BBR0lOQVRJT05fQ09OVFJPTF9WQUxVRV9BQ0NFU1NPUl0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25Db21wb25lbnQgaW1wbGVtZW50cyBDb250cm9sVmFsdWVBY2Nlc3NvciB7XG4gIEBJbnB1dCgpIG51bWJlck9mUGFnZXMgPSBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVM7XG5cbiAgQElucHV0KCkgbGlnaHQgPSBmYWxzZTtcblxuICBASW5wdXQoKSBwYWdlVGl0bGVNYXNrID0gKHBhZ2U6IG51bWJlciwgbnVtYmVyT2ZQYWdlczogbnVtYmVyKSA9PlxuICAgIGBQYWdlICR7cGFnZX0gb2YgJHtudW1iZXJPZlBhZ2VzfWA7XG5cbiAgcHVibGljIG9uQ2hhbmdlOiBhbnkgPSAoKSA9PiB7fTtcblxuICBwdWJsaWMgb25Ub3VjaDogYW55ID0gKCkgPT4ge307XG5cbiAgcHVibGljIGN1cnJlbnRQYWdlID0gUEFHSU5BVElPTl9GSVJTVF9QQUdFO1xuXG4gIHB1YmxpYyBwYWdlczogUGFnZVtdID0gW107XG5cbiAgcHVibGljIHJpZ2h0SWNvbk5hbWUhOiBPYnNlcnZhYmxlPHN0cmluZz47XG5cbiAgcHVibGljIGxlZnRJY29uTmFtZSE6IE9ic2VydmFibGU8c3RyaW5nPjtcblxuICBwdWJsaWMgc2VsZWN0U2l6ZTogT2JzZXJ2YWJsZTxTZWxlY3RTaXplPjtcblxuICBwcml2YXRlIHJlYWRvbmx5IHNtYWxsUmVzb2x1dGlvbiA9IDEwMjQ7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSByZWFkb25seSBnbG9iYWxFdmVudFNlcnZpY2U6IEdsb2JhbEV2ZW50c1NlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSBjZDogQ2hhbmdlRGV0ZWN0b3JSZWZcbiAgKSB7XG4gICAgY29uc3QgaXNTbWFsbCA9IHRoaXMuZGlzcGxheUlzU21hbGwoKS5waXBlKHNoYXJlUmVwbGF5KHsgcmVmQ291bnQ6IHRydWUsIGJ1ZmZlclNpemU6IDEgfSkpO1xuICAgIHRoaXMuaW5pdGlhbGl6ZUljb25zKGlzU21hbGwpO1xuICAgIHRoaXMuc2VsZWN0U2l6ZSA9IGlzU21hbGwucGlwZShtYXAoKGlzU21hbGwpID0+IHRoaXMuY2hvb3NlU2VsZWN0U2l6ZShpc1NtYWxsKSkpO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIHRoaXMucmVpbml0aWFsaXplTnVtYmVyT2ZQYWdlc0F0SW52YWxpZFZhbHVlKCk7XG4gICAgaWYgKHRoaXMudmlld1NlbGVjdCkge1xuICAgICAgdGhpcy5wYWdlcyA9IHRoaXMuaW5pdGlhbGl6ZVBhZ2VzKHRoaXMubnVtYmVyT2ZQYWdlcyk7XG4gICAgfVxuICAgIHRoaXMucmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCk7XG4gICAgdGhpcy5jZC5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICBuZ09uQ2hhbmdlcyh7IG51bWJlck9mUGFnZXMsIHBhZ2VUaXRsZU1hc2sgfTogU2ltcGxlQ2hhbmdlcykge1xuICAgIGlmIChcbiAgICAgIHRoaXMubmVlZFJlbmRlclBhZ2VzKFxuICAgICAgICB0aGlzLnZpZXdTZWxlY3QsXG4gICAgICAgIG51bWJlck9mUGFnZXM/LmN1cnJlbnRWYWx1ZSxcbiAgICAgICAgbnVtYmVyT2ZQYWdlcz8ucHJldmlvdXNWYWx1ZSxcbiAgICAgICAgcGFnZVRpdGxlTWFzaz8uY3VycmVudFZhbHVlLFxuICAgICAgICBwYWdlVGl0bGVNYXNrPy5wcmV2aW91c1ZhbHVlXG4gICAgICApXG4gICAgKSB7XG4gICAgICB0aGlzLnJlaW5pdGlhbGl6ZU51bWJlck9mUGFnZXNBdEludmFsaWRWYWx1ZSgpO1xuICAgICAgdGhpcy5wYWdlcyA9IHRoaXMuaW5pdGlhbGl6ZVBhZ2VzKHRoaXMubnVtYmVyT2ZQYWdlcyk7XG4gICAgfVxuICAgIHRoaXMucmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCk7XG4gIH1cblxuICBwdWJsaWMgZ2V0IHZpZXdTZWxlY3QoKSB7XG4gICAgcmV0dXJuICF0aGlzLmxpZ2h0O1xuICB9XG5cbiAgcHVibGljIGdldCBpc0ZpcnN0UGFnZSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5jdXJyZW50UGFnZSA8PSBQQUdJTkFUSU9OX0ZJUlNUX1BBR0U7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGlzTGFzdFBhZ2UoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuY3VycmVudFBhZ2UgPj0gdGhpcy5udW1iZXJPZlBhZ2VzO1xuICB9XG5cbiAgcHVibGljIGdldCBkaXNhYmxlZFNlbGVjdCgpIHtcbiAgICByZXR1cm4gdGhpcy5udW1iZXJPZlBhZ2VzIDw9IFBBR0lOQVRJT05fTUlOX05VTUJFUl9PRl9QQUdFUztcbiAgfVxuXG4gIHB1YmxpYyB3cml0ZVZhbHVlKHZhbHVlOiBhbnkpIHtcbiAgICBpZiAoIXZhbHVlIHx8IHZhbHVlID09PSB0aGlzLmN1cnJlbnRQYWdlIHx8IHZhbHVlID4gdGhpcy5udW1iZXJPZlBhZ2VzKSByZXR1cm47XG4gICAgdGhpcy5jdXJyZW50UGFnZSA9IHZhbHVlO1xuICAgIHRoaXMub25DaGFuZ2UodmFsdWUpO1xuICB9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSkge1xuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcbiAgfVxuXG4gIHB1YmxpYyByZWdpc3Rlck9uVG91Y2hlZChmbjogYW55KSB7XG4gICAgdGhpcy5vblRvdWNoID0gZm47XG4gIH1cblxuICBwdWJsaWMgbmV4dFBhZ2UoKSB7XG4gICAgdGhpcy53cml0ZVZhbHVlKHRoaXMuY3VycmVudFBhZ2UgKyBQQUdJTkFUSU9OX1BBR0VfU1RFUCk7XG4gIH1cblxuICBwdWJsaWMgcHJldmlvdXNQYWdlKCkge1xuICAgIHRoaXMud3JpdGVWYWx1ZSh0aGlzLmN1cnJlbnRQYWdlIC0gUEFHSU5BVElPTl9QQUdFX1NURVApO1xuICB9XG5cbiAgcHVibGljIGNvbXBhcmVXaXRoUGFnZXMocGFnZTogbnVtYmVyLCBjdXJyZW50UGFnZT86IG51bWJlcik6IGJvb2xlYW4ge1xuICAgIHJldHVybiBwYWdlID09PSBjdXJyZW50UGFnZTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdGlhbGl6ZVBhZ2VzKG51bWJlck9mUGFnZXM6IG51bWJlcik6IFBhZ2VbXSB7XG4gICAgcmV0dXJuIG5ldyBBcnJheShudW1iZXJPZlBhZ2VzKS5maWxsKG51bGwpLm1hcCgoXywgaW5kZXgpID0+ICh7XG4gICAgICB0aXRsZTogdGhpcy5wYWdlVGl0bGVNYXNrKGluZGV4ICsgMSwgbnVtYmVyT2ZQYWdlcyksXG4gICAgICB2YWx1ZTogaW5kZXggKyAxLFxuICAgIH0pKTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdGlhbGl6ZUljb25zKGlzU21hbGw6IE9ic2VydmFibGU8Ym9vbGVhbj4pIHtcbiAgICBjb25zdCBpY29uU2l6ZSA9IGlzU21hbGwucGlwZShcbiAgICAgIG1hcCgoaXNTbWFsbCkgPT4gdGhpcy5jaG9vc2VJY29uU2l6ZShpc1NtYWxsKSksXG4gICAgICBzaGFyZVJlcGxheSh7IHJlZkNvdW50OiB0cnVlLCBidWZmZXJTaXplOiAxIH0pXG4gICAgKTtcblxuICAgIHRoaXMubGVmdEljb25OYW1lID0gaWNvblNpemUucGlwZShcbiAgICAgIG1hcCgoaWNvblNpemUpID0+IGBOYXZpZ2F0aW9uX0Fycm93X0Fycm93LS1MZWZ0XyR7aWNvblNpemV9YClcbiAgICApO1xuXG4gICAgdGhpcy5yaWdodEljb25OYW1lID0gaWNvblNpemUucGlwZShcbiAgICAgIG1hcCgoaWNvblNpemUpID0+IGBOYXZpZ2F0aW9uX0Fycm93X0Fycm93LS1SaWdodF8ke2ljb25TaXplfWApXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgZGlzcGxheUlzU21hbGwoKTogT2JzZXJ2YWJsZTxib29sZWFuPiB7XG4gICAgY29uc3QgcmVzaXplRXZlbnQgPSB0aGlzLmdsb2JhbEV2ZW50U2VydmljZS5nZXRXaW5kb3dFdmVudCgncmVzaXplJykucGlwZShkZWJvdW5jZVRpbWUoMTAwKSk7XG4gICAgY29uc3QgZGlzcGxheVdpZHRoID0gcmVzaXplRXZlbnQucGlwZShcbiAgICAgIG1hcCgoZXZlbnQpID0+IChldmVudD8udGFyZ2V0IGFzIFdpbmRvdyk/LmlubmVyV2lkdGgpLFxuICAgICAgc3RhcnRXaXRoKHRoaXMuZ2xvYmFsRXZlbnRTZXJ2aWNlLndpbmRvdy5pbm5lcldpZHRoKVxuICAgICk7XG4gICAgcmV0dXJuIGRpc3BsYXlXaWR0aC5waXBlKG1hcCgod2lkdGgpID0+IHdpZHRoIDwgdGhpcy5zbWFsbFJlc29sdXRpb24pKTtcbiAgfVxuXG4gIHByaXZhdGUgcmVpbml0aWFsaXplQ3VycmVudFBhZ2VBdE92ZXJmbG93KCkge1xuICAgIGlmICh0aGlzLm51bWJlck9mUGFnZXMgPCB0aGlzLmN1cnJlbnRQYWdlKSB7XG4gICAgICB0aGlzLndyaXRlVmFsdWUoUEFHSU5BVElPTl9GSVJTVF9QQUdFKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHJlaW5pdGlhbGl6ZU51bWJlck9mUGFnZXNBdEludmFsaWRWYWx1ZSgpIHtcbiAgICBpZiAoIXRoaXMubnVtYmVyT2ZQYWdlcyB8fCB0aGlzLm51bWJlck9mUGFnZXMgPCBQQUdJTkFUSU9OX01JTl9OVU1CRVJfT0ZfUEFHRVMpIHtcbiAgICAgIHRoaXMubnVtYmVyT2ZQYWdlcyA9IFBBR0lOQVRJT05fTUlOX05VTUJFUl9PRl9QQUdFUztcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGNob29zZUljb25TaXplKGlzU21hbGw6IGJvb2xlYW4pOiBJY29uU2l6ZSB7XG4gICAgcmV0dXJuIGlzU21hbGwgPyBJY29uU2l6ZS5MIDogSWNvblNpemUuTTtcbiAgfVxuXG4gIHByaXZhdGUgY2hvb3NlU2VsZWN0U2l6ZShpc1NtYWxsOiBib29sZWFuKTogU2VsZWN0U2l6ZSB7XG4gICAgcmV0dXJuIGlzU21hbGwgPyBTRUxFQ1RfU0laRS5NIDogU0VMRUNUX1NJWkUuUztcbiAgfVxuXG4gIHByaXZhdGUgbmVlZFJlbmRlclBhZ2VzKFxuICAgIHZpZXdTZWxlY3Q6IGJvb2xlYW4sXG4gICAgbnVtYmVyT2ZQYWdlc1ByZXZpb3VzPzogbnVtYmVyLFxuICAgIG51bWJlck9mUGFnZXNDdXJyZW50PzogbnVtYmVyLFxuICAgIHBhZ2VUaXRsZU1hc2tQcmV2aW91cz86IHVua25vd24sXG4gICAgcGFnZVRpdGxlTWFza0N1cnJlbnQ/OiB1bmtub3duXG4gICk6IGJvb2xlYW4ge1xuICAgIGNvbnN0IG51bWJlck9mUGFnZUhhc0NoYW5nZXMgPSBudW1iZXJPZlBhZ2VzUHJldmlvdXMgIT09IG51bWJlck9mUGFnZXNDdXJyZW50O1xuICAgIGNvbnN0IG1hc2tIYXNDaGFuZ2VzID0gcGFnZVRpdGxlTWFza1ByZXZpb3VzICE9PSBwYWdlVGl0bGVNYXNrQ3VycmVudDtcbiAgICByZXR1cm4gdmlld1NlbGVjdCAmJiAobnVtYmVyT2ZQYWdlSGFzQ2hhbmdlcyB8fCBtYXNrSGFzQ2hhbmdlcyk7XG4gIH1cbn1cbiIsIjxuYXYgY2xhc3M9XCJtYy1wYWdpbmF0aW9uXCIgcm9sZT1cIm5hdmlnYXRpb25cIiBhcmlhLWxhYmVsPVwicGFnaW5hdGlvblwiPlxuICA8YnV0dG9uXG4gICAgbW96LWJ1dHRvblxuICAgIHRoZW1lPVwibmV1dHJhbFwiXG4gICAgY2xhc3M9XCJtYy1wYWdpbmF0aW9uX19idXR0b25cIlxuICAgIFtkaXNhYmxlZF09XCJpc0ZpcnN0UGFnZVwiXG4gICAgW29ubHlJY29uXT1cInRydWVcIlxuICAgIChjbGljayk9XCJwcmV2aW91c1BhZ2UoKVwiXG4gICAgKm5nSWY9XCJsZWZ0SWNvbk5hbWUgfCBhc3luYzsgbGV0IGljb25cIlxuICA+XG4gICAgPG1vei1pY29uIFtpY29uTmFtZV09XCJpY29uXCI+PC9tb3otaWNvbj5cbiAgPC9idXR0b24+XG4gIDxkaXYgKm5nSWY9XCJ2aWV3U2VsZWN0XCI+XG4gICAgPHNlbGVjdFxuICAgICAgbW96LXNlbGVjdFxuICAgICAgW25nTW9kZWxdPVwiY3VycmVudFBhZ2VcIlxuICAgICAgKG5nTW9kZWxDaGFuZ2UpPVwid3JpdGVWYWx1ZSgkZXZlbnQpXCJcbiAgICAgIFtjb21wYXJlV2l0aF09XCJjb21wYXJlV2l0aFBhZ2VzXCJcbiAgICAgIFtzaXplXT1cIihzZWxlY3RTaXplIHwgYXN5bmMpIVwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRTZWxlY3RcIlxuICAgID5cbiAgICAgIDxvcHRpb24gKm5nRm9yPVwibGV0IHBhZ2Ugb2YgcGFnZXNcIiBbbmdWYWx1ZV09XCJwYWdlLnZhbHVlXCI+e3sgcGFnZS50aXRsZSB9fTwvb3B0aW9uPlxuICAgIDwvc2VsZWN0PlxuICA8L2Rpdj5cblxuICA8YnV0dG9uXG4gICAgbW96LWJ1dHRvblxuICAgIHRoZW1lPVwibmV1dHJhbFwiXG4gICAgY2xhc3M9XCJtYy1wYWdpbmF0aW9uX19idXR0b25cIlxuICAgIFtkaXNhYmxlZF09XCJpc0xhc3RQYWdlXCJcbiAgICAoY2xpY2spPVwibmV4dFBhZ2UoKVwiXG4gICAgW29ubHlJY29uXT1cInRydWVcIlxuICAgICpuZ0lmPVwicmlnaHRJY29uTmFtZSB8IGFzeW5jOyBsZXQgaWNvblwiXG4gID5cbiAgICA8bW96LWljb24gW2ljb25OYW1lXT1cImljb25cIj48L21vei1pY29uPlxuICA8L2J1dHRvbj5cbjwvbmF2PlxuIl19
@@ -1,23 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { FormsModule } from '@angular/forms';
4
- import { GlobalEventsModule } from '../../common';
5
- import { ButtonModule } from '../button';
6
- import { IconModule } from '../icon/public-api';
7
- import { SelectModule } from '../select/public-api';
8
- import { PaginationComponent } from './pagination.component';
9
- import * as i0 from "@angular/core";
10
- export class PaginationModule {
11
- }
12
- PaginationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: PaginationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
13
- PaginationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: PaginationModule, declarations: [PaginationComponent], imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule], exports: [PaginationComponent] });
14
- PaginationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: PaginationModule, imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule] });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: PaginationModule, decorators: [{
16
- type: NgModule,
17
- args: [{
18
- imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule],
19
- declarations: [PaginationComponent],
20
- exports: [PaginationComponent],
21
- }]
22
- }] });
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDbEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUN6QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3BELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sZ0JBQWdCOzs2R0FBaEIsZ0JBQWdCOzhHQUFoQixnQkFBZ0IsaUJBSFosbUJBQW1CLGFBRHhCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCLGFBRXJGLG1CQUFtQjs4R0FFbEIsZ0JBQWdCLFlBSmpCLFlBQVksRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsa0JBQWtCOzJGQUlwRixnQkFBZ0I7a0JBTDVCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxrQkFBa0IsQ0FBQztvQkFDaEcsWUFBWSxFQUFFLENBQUMsbUJBQW1CLENBQUM7b0JBQ25DLE9BQU8sRUFBRSxDQUFDLG1CQUFtQixDQUFDO2lCQUMvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBHbG9iYWxFdmVudHNNb2R1bGUgfSBmcm9tICcuLi8uLi9jb21tb24nO1xuaW1wb3J0IHsgQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uJztcbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICcuLi9pY29uL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgU2VsZWN0TW9kdWxlIH0gZnJvbSAnLi4vc2VsZWN0L3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgUGFnaW5hdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZSwgQnV0dG9uTW9kdWxlLCBTZWxlY3RNb2R1bGUsIEljb25Nb2R1bGUsIEdsb2JhbEV2ZW50c01vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1BhZ2luYXRpb25Db21wb25lbnRdLFxuICBleHBvcnRzOiBbUGFnaW5hdGlvbkNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25Nb2R1bGUge31cbiJdfQ==
@@ -1,38 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- export class ProgressBarComponent {
5
- constructor() {
6
- this.size = 'm';
7
- this.theme = 'default';
8
- this.percent = 0;
9
- this.text = '';
10
- }
11
- get indicatorWidth() {
12
- return { width: `${this.percent}%` };
13
- }
14
- get hostCssClasses() {
15
- const sizeClass = `mc-progressbar--${this.size}`;
16
- const themeClass = `mc-progressbar--${this.theme}`;
17
- const textClass = !!this.text ? `mc-progressbar--percent` : '';
18
- return `mc-progressbar ${sizeClass} ${themeClass} ${textClass}`;
19
- }
20
- }
21
- ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
- ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: ProgressBarComponent, selector: "moz-progress-bar", inputs: { size: "size", theme: "theme", percent: "percent", text: "text" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#007bb4;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:600;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}.mc-progressbar--branded .mc-progressbar__indicator{background-color:#46a610}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarComponent, decorators: [{
24
- type: Component,
25
- args: [{ selector: 'moz-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#007bb4;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:600;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}.mc-progressbar--branded .mc-progressbar__indicator{background-color:#46a610}\n"] }]
26
- }], propDecorators: { size: [{
27
- type: Input
28
- }], theme: [{
29
- type: Input
30
- }], percent: [{
31
- type: Input
32
- }], text: [{
33
- type: Input
34
- }], hostCssClasses: [{
35
- type: HostBinding,
36
- args: ['class']
37
- }] } });
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvcHJvZ3Jlc3MtYmFyL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7O0FBV3ZCLE1BQU0sT0FBTyxvQkFBb0I7SUFQakM7UUFRa0IsU0FBSSxHQUFvQixHQUFHLENBQUM7UUFFNUIsVUFBSyxHQUFxQixTQUFTLENBQUM7UUFFcEMsWUFBTyxHQUFHLENBQUMsQ0FBQztRQUVaLFNBQUksR0FBRyxFQUFFLENBQUM7S0FhM0I7SUFYQyxJQUFXLGNBQWM7UUFDdkIsT0FBTyxFQUFFLEtBQUssRUFBRSxHQUFHLElBQUksQ0FBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxJQUNXLGNBQWM7UUFDdkIsTUFBTSxTQUFTLEdBQUcsbUJBQW1CLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNqRCxNQUFNLFVBQVUsR0FBRyxtQkFBbUIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ25ELE1BQU0sU0FBUyxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQy9ELE9BQU8sa0JBQWtCLFNBQVMsSUFBSSxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7SUFDbEUsQ0FBQzs7aUhBbkJVLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDhMQ2pCakMsK1FBU0E7MkZEUWEsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNFLGtCQUFrQixtQkFHWCx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJOzhCQUdyQixJQUFJO3NCQUFuQixLQUFLO2dCQUVVLEtBQUs7c0JBQXBCLEtBQUs7Z0JBRVUsT0FBTztzQkFBdEIsS0FBSztnQkFFVSxJQUFJO3NCQUFuQixLQUFLO2dCQU9LLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJTaXplIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItc2l6ZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhclRoZW1lIH0gZnJvbSAnLi9wcm9ncmVzcy1iYXItdGhlbWUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb3otcHJvZ3Jlc3MtYmFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Byb2dyZXNzLWJhci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgc2l6ZTogUHJvZ3Jlc3NCYXJTaXplID0gJ20nO1xuXG4gIEBJbnB1dCgpIHB1YmxpYyB0aGVtZTogUHJvZ3Jlc3NCYXJUaGVtZSA9ICdkZWZhdWx0JztcblxuICBASW5wdXQoKSBwdWJsaWMgcGVyY2VudCA9IDA7XG5cbiAgQElucHV0KCkgcHVibGljIHRleHQgPSAnJztcblxuICBwdWJsaWMgZ2V0IGluZGljYXRvcldpZHRoKCkge1xuICAgIHJldHVybiB7IHdpZHRoOiBgJHt0aGlzLnBlcmNlbnR9JWAgfTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MnKVxuICBwdWJsaWMgZ2V0IGhvc3RDc3NDbGFzc2VzKCkge1xuICAgIGNvbnN0IHNpemVDbGFzcyA9IGBtYy1wcm9ncmVzc2Jhci0tJHt0aGlzLnNpemV9YDtcbiAgICBjb25zdCB0aGVtZUNsYXNzID0gYG1jLXByb2dyZXNzYmFyLS0ke3RoaXMudGhlbWV9YDtcbiAgICBjb25zdCB0ZXh0Q2xhc3MgPSAhIXRoaXMudGV4dCA/IGBtYy1wcm9ncmVzc2Jhci0tcGVyY2VudGAgOiAnJztcbiAgICByZXR1cm4gYG1jLXByb2dyZXNzYmFyICR7c2l6ZUNsYXNzfSAke3RoZW1lQ2xhc3N9ICR7dGV4dENsYXNzfWA7XG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJtYy1wcm9ncmVzc2Jhcl9faW5kaWNhdG9yXCJcbiAgcm9sZT1cInByb2dyZXNzYmFyXCJcbiAgW2F0dHIuYXJpYS12YWx1ZW5vd109XCJwZXJjZW50XCJcbiAgYXJpYS12YWx1ZW1pbj1cIjBcIlxuICBhcmlhLXZhbHVlbWF4PVwiMTAwXCJcbiAgW25nU3R5bGVdPVwiaW5kaWNhdG9yV2lkdGhcIlxuPjwvZGl2PlxuPGRpdiAqbmdJZj1cInRleHRcIiBjbGFzcz1cIm1jLXByb2dyZXNzYmFyX19wZXJjZW50YWdlXCI+e3sgdGV4dCB9fTwvZGl2PlxuIl19
@@ -1,18 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { ProgressBarComponent } from './progress-bar.component';
4
- import * as i0 from "@angular/core";
5
- export class ProgressBarModule {
6
- }
7
- ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
- ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent], imports: [CommonModule], exports: [ProgressBarComponent] });
9
- ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarModule, imports: [CommonModule] });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: ProgressBarModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- imports: [CommonModule],
14
- declarations: [ProgressBarComponent],
15
- exports: [ProgressBarComponent],
16
- }]
17
- }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtYmFyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDOztBQU9oRSxNQUFNLE9BQU8saUJBQWlCOzs4R0FBakIsaUJBQWlCOytHQUFqQixpQkFBaUIsaUJBSGIsb0JBQW9CLGFBRHpCLFlBQVksYUFFWixvQkFBb0I7K0dBRW5CLGlCQUFpQixZQUpsQixZQUFZOzJGQUlYLGlCQUFpQjtrQkFMN0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRSxDQUFDLG9CQUFvQixDQUFDO29CQUNwQyxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztpQkFDaEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFByb2dyZXNzQmFyQ29tcG9uZW50IH0gZnJvbSAnLi9wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1Byb2dyZXNzQmFyQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1Byb2dyZXNzQmFyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJNb2R1bGUge31cbiJdfQ==
@@ -1,25 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class SelectComponent {
4
- constructor() {
5
- this.size = 's';
6
- }
7
- get hostCssClasses() {
8
- const staticClasses = 'mc-select';
9
- const sizeCssClass = `mc-select--${this.size}`;
10
- const dynamicClasses = `${sizeCssClass}`;
11
- return `${staticClasses} ${dynamicClasses}`;
12
- }
13
- }
14
- SelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: SelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
- SelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: SelectComponent, selector: "select[moz-`select`]", inputs: { size: "size" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}.mc-select{background-image:url(assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg);background-size:1.1rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: SelectComponent, decorators: [{
17
- type: Component,
18
- args: [{ selector: 'select[moz-`select`]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}.mc-select{background-image:url(assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg);background-size:1.1rem}\n"] }]
19
- }], propDecorators: { size: [{
20
- type: Input
21
- }], hostCssClasses: [{
22
- type: HostBinding,
23
- args: ['class']
24
- }] } });
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3NlbGVjdC9zZWxlY3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc2VsZWN0L3NlbGVjdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7QUFVdkIsTUFBTSxPQUFPLGVBQWU7SUFQNUI7UUFRVyxTQUFJLEdBQWUsR0FBRyxDQUFDO0tBU2pDO0lBUEMsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sYUFBYSxHQUFHLFdBQVcsQ0FBQztRQUNsQyxNQUFNLFlBQVksR0FBRyxjQUFjLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUMvQyxNQUFNLGNBQWMsR0FBRyxHQUFHLFlBQVksRUFBRSxDQUFDO1FBQ3pDLE9BQU8sR0FBRyxhQUFhLElBQUksY0FBYyxFQUFFLENBQUM7SUFDOUMsQ0FBQzs7NEdBVFUsZUFBZTtnR0FBZixlQUFlLGdKQ2hCNUIsK0NBQ0E7MkZEZWEsZUFBZTtrQkFQM0IsU0FBUzsrQkFDRSxzQkFBc0IsbUJBR2YsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSTs4QkFHNUIsSUFBSTtzQkFBWixLQUFLO2dCQUdLLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU2VsZWN0U2l6ZSB9IGZyb20gJy4vc2VsZWN0LXNpemUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdzZWxlY3RbbW96LWBzZWxlY3RgXScsXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWxlY3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3QuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG59KVxuZXhwb3J0IGNsYXNzIFNlbGVjdENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHNpemU6IFNlbGVjdFNpemUgPSAncyc7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIHB1YmxpYyBnZXQgaG9zdENzc0NsYXNzZXMoKSB7XG4gICAgY29uc3Qgc3RhdGljQ2xhc3NlcyA9ICdtYy1zZWxlY3QnO1xuICAgIGNvbnN0IHNpemVDc3NDbGFzcyA9IGBtYy1zZWxlY3QtLSR7dGhpcy5zaXplfWA7XG4gICAgY29uc3QgZHluYW1pY0NsYXNzZXMgPSBgJHtzaXplQ3NzQ2xhc3N9YDtcbiAgICByZXR1cm4gYCR7c3RhdGljQ2xhc3Nlc30gJHtkeW5hbWljQ2xhc3Nlc31gO1xuICB9XG59XG4iLCI8bmctY29udGVudCBzZWxlY3Q9XCJvcHRpb25cIj48L25nLWNvbnRlbnQ+XG4iXX0=
@@ -1,18 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { SelectComponent } from './select.component';
4
- import * as i0 from "@angular/core";
5
- export class SelectModule {
6
- }
7
- SelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
- SelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: SelectModule, declarations: [SelectComponent], imports: [CommonModule], exports: [SelectComponent] });
9
- SelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: SelectModule, imports: [CommonModule] });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: SelectModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- imports: [CommonModule],
14
- declarations: [SelectComponent],
15
- exports: [SelectComponent],
16
- }]
17
- }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tpdC9jb21wb25lbnRzL3NlbGVjdC9zZWxlY3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7QUFPckQsTUFBTSxPQUFPLFlBQVk7O3lHQUFaLFlBQVk7MEdBQVosWUFBWSxpQkFIUixlQUFlLGFBRHBCLFlBQVksYUFFWixlQUFlOzBHQUVkLFlBQVksWUFKYixZQUFZOzJGQUlYLFlBQVk7a0JBTHhCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUUsQ0FBQyxlQUFlLENBQUM7b0JBQy9CLE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQztpQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNlbGVjdENvbXBvbmVudCB9IGZyb20gJy4vc2VsZWN0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBkZWNsYXJhdGlvbnM6IFtTZWxlY3RDb21wb25lbnRdLFxuICBleHBvcnRzOiBbU2VsZWN0Q29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgU2VsZWN0TW9kdWxlIHt9XG4iXX0=
@@ -1,51 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "../icon/icon.component";
5
- export class StepComponent {
6
- get validated() {
7
- return this.state === 'validated';
8
- }
9
- get isCurrent() {
10
- return this.state === 'current';
11
- }
12
- get indicator() {
13
- return this.index + 1;
14
- }
15
- get index() {
16
- return this._index;
17
- }
18
- set index(newIndex) {
19
- this._index = newIndex;
20
- this.cd.markForCheck();
21
- }
22
- get state() {
23
- return this._state;
24
- }
25
- set state(newState) {
26
- this._state = newState;
27
- this.cd.markForCheck();
28
- }
29
- constructor(cd) {
30
- this.cd = cd;
31
- this.title = '';
32
- this._state = '';
33
- this._index = 0;
34
- }
35
- get hostCssClasses() {
36
- const stateClass = this.state ? `mc-stepper__item--${this.state}` : '';
37
- return `mc-stepper__item ${stateClass}`;
38
- }
39
- }
40
- StepComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
41
- StepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: StepComponent, selector: "moz-step", inputs: { title: "title" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;background-color:#fff;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "moz-icon", inputs: ["iconName"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
42
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepComponent, decorators: [{
43
- type: Component,
44
- args: [{ selector: 'moz-step', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;background-color:#fff;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
45
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { title: [{
46
- type: Input
47
- }], hostCssClasses: [{
48
- type: HostBinding,
49
- args: ['class']
50
- }] } });
51
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc3RlcHBlci9zdGVwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFFdkIsU0FBUyxFQUNULFdBQVcsRUFDWCxLQUFLLEVBQ0wsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDOzs7O0FBVXZCLE1BQU0sT0FBTyxhQUFhO0lBT3hCLElBQVcsU0FBUztRQUNsQixPQUFPLElBQUksQ0FBQyxLQUFLLEtBQUssV0FBVyxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFXLFNBQVM7UUFDbEIsT0FBTyxJQUFJLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQztJQUNsQyxDQUFDO0lBRUQsSUFBVyxTQUFTO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7SUFDeEIsQ0FBQztJQUVELElBQVcsS0FBSztRQUNkLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxLQUFLLENBQUMsUUFBZ0I7UUFDL0IsSUFBSSxDQUFDLE1BQU0sR0FBRyxRQUFRLENBQUM7UUFDdkIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUN6QixDQUFDO0lBRUQsSUFBVyxLQUFLO1FBQ2QsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3JCLENBQUM7SUFFRCxJQUFXLEtBQUssQ0FBQyxRQUFtQjtRQUNsQyxJQUFJLENBQUMsTUFBTSxHQUFHLFFBQVEsQ0FBQztRQUN2QixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxZQUFvQixFQUFxQjtRQUFyQixPQUFFLEdBQUYsRUFBRSxDQUFtQjtRQW5DekIsVUFBSyxHQUFHLEVBQUUsQ0FBQztRQUVuQixXQUFNLEdBQWMsRUFBRSxDQUFDO1FBRXZCLFdBQU0sR0FBRyxDQUFDLENBQUM7SUErQnlCLENBQUM7SUFFN0MsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLHFCQUFxQixJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUN2RSxPQUFPLG9CQUFvQixVQUFVLEVBQUUsQ0FBQztJQUMxQyxDQUFDOzswR0ExQ1UsYUFBYTs4RkFBYixhQUFhLHNJQ2pCMUIsK2NBY0E7MkZER2EsYUFBYTtrQkFQekIsU0FBUzsrQkFDRSxVQUFVLG1CQUdILHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUk7d0dBR3JCLEtBQUs7c0JBQXBCLEtBQUs7Z0JBc0NLLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBIb3N0QmluZGluZyxcbiAgSW5wdXQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0ZXBTdGF0ZSB9IGZyb20gJy4vc3RlcC1zdGF0ZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vei1zdGVwJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N0ZXAuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zdGVwcGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBTdGVwQ29tcG9uZW50IHtcbiAgQElucHV0KCkgcHVibGljIHRpdGxlID0gJyc7XG5cbiAgcHJpdmF0ZSBfc3RhdGU6IFN0ZXBTdGF0ZSA9ICcnO1xuXG4gIHByaXZhdGUgX2luZGV4ID0gMDtcblxuICBwdWJsaWMgZ2V0IHZhbGlkYXRlZCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5zdGF0ZSA9PT0gJ3ZhbGlkYXRlZCc7XG4gIH1cbiAgcHVibGljIGdldCBpc0N1cnJlbnQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuc3RhdGUgPT09ICdjdXJyZW50JztcbiAgfVxuXG4gIHB1YmxpYyBnZXQgaW5kaWNhdG9yKCkge1xuICAgIHJldHVybiB0aGlzLmluZGV4ICsgMTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgaW5kZXgoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2luZGV4O1xuICB9XG5cbiAgcHVibGljIHNldCBpbmRleChuZXdJbmRleDogbnVtYmVyKSB7XG4gICAgdGhpcy5faW5kZXggPSBuZXdJbmRleDtcbiAgICB0aGlzLmNkLm1hcmtGb3JDaGVjaygpO1xuICB9XG5cbiAgcHVibGljIGdldCBzdGF0ZSgpIHtcbiAgICByZXR1cm4gdGhpcy5fc3RhdGU7XG4gIH1cblxuICBwdWJsaWMgc2V0IHN0YXRlKG5ld1N0YXRlOiBTdGVwU3RhdGUpIHtcbiAgICB0aGlzLl9zdGF0ZSA9IG5ld1N0YXRlO1xuICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKCk7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkOiBDaGFuZ2VEZXRlY3RvclJlZikge31cblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHVibGljIGdldCBob3N0Q3NzQ2xhc3NlcygpIHtcbiAgICBjb25zdCBzdGF0ZUNsYXNzID0gdGhpcy5zdGF0ZSA/IGBtYy1zdGVwcGVyX19pdGVtLS0ke3RoaXMuc3RhdGV9YCA6ICcnO1xuICAgIHJldHVybiBgbWMtc3RlcHBlcl9faXRlbSAke3N0YXRlQ2xhc3N9YDtcbiAgfVxufVxuIiwiPHNwYW4gY2xhc3M9XCJtYy1zdGVwcGVyX19pbmRpY2F0b3JcIiBhcmlhLWhpZGRlbj1cInRydWVcIj5cbiAgPG1vei1pY29uXG4gICAgKm5nSWY9XCJ2YWxpZGF0ZWRcIlxuICAgIGNsYXNzPVwibWMtc3RlcHBlcl9faWNvblwiXG4gICAgaWNvbk5hbWU9XCJOYXZpZ2F0aW9uX05vdGlmaWNhdGlvbl9BdmFpbGFibGVfMTZweFwiXG4gID48L21vei1pY29uPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNDdXJyZW50XCI+e3sgaW5kaWNhdG9yIH19PC9uZy1jb250YWluZXI+XG48L3NwYW4+XG48ZGl2IGNsYXNzPVwibWMtc3RlcHBlcl9fZGV0YWlsXCI+XG4gIDxzcGFuIGNsYXNzPVwibWMtc3RlcHBlcl9fdGl0bGVcIj57eyB0aXRsZSB9fTwvc3Bhbj5cbiAgPHNwYW4gY2xhc3M9XCJtYy1zdGVwcGVyX19sYWJlbFwiPlxuICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgPC9zcGFuPlxuPC9kaXY+XG4iXX0=
@@ -1,79 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, ContentChildren, ElementRef, HostBinding, Input, } from '@angular/core';
2
- import { StepComponent } from './step.component';
3
- import * as i0 from "@angular/core";
4
- export class StepperComponent {
5
- constructor() {
6
- this.selectStepIndex = 0;
7
- this.viewCompact = false;
8
- }
9
- ngAfterViewInit() {
10
- if (!this.steps)
11
- return;
12
- this.initStepIndex(this.steps);
13
- this.selectStep(this.steps, this.selectStepIndex);
14
- this.initCssVariablesForSteps(this.stepElements);
15
- }
16
- ngOnChanges(changes) {
17
- this.updateSelectStepAtChanges(changes);
18
- }
19
- get hostCssClasses() {
20
- const viewCompactClass = this.viewCompact ? `mc-stepper--compact` : '';
21
- return `mc-stepper ${viewCompactClass}`;
22
- }
23
- initStepIndex(steps) {
24
- steps.forEach((step, index) => (step.index = index));
25
- }
26
- initCssVariablesForSteps(stepElements) {
27
- stepElements.forEach(this.initCssVariablesForStep);
28
- }
29
- initCssVariablesForStep(elementRef, currentIndex, elementRefs) {
30
- elementRef.nativeElement.style = `--steps: ${elementRefs.length}; --current: ${currentIndex + 1}`;
31
- }
32
- selectStep(steps, selectStepIndex) {
33
- steps.forEach((step) => this.updateStateStep(step, selectStepIndex));
34
- }
35
- updateStateStep(step, selectStepIndex) {
36
- const oldState = step.state;
37
- const newState = this.stateDefinitionForStep(step.index, selectStepIndex);
38
- const hasChanges = oldState !== newState;
39
- if (!hasChanges)
40
- return;
41
- step.state = newState;
42
- }
43
- stateDefinitionForStep(stepIndex, selectStepIndex) {
44
- const isCurrentStep = stepIndex === selectStepIndex;
45
- const isValidatedStep = stepIndex < selectStepIndex;
46
- if (isCurrentStep)
47
- return 'current';
48
- if (isValidatedStep)
49
- return 'validated';
50
- return '';
51
- }
52
- updateSelectStepAtChanges({ selectStepIndex }) {
53
- if (!this.steps ||
54
- !selectStepIndex ||
55
- selectStepIndex.currentValue === selectStepIndex.previousValue)
56
- return;
57
- this.selectStep(this.steps, selectStepIndex.currentValue);
58
- }
59
- }
60
- StepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61
- StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: StepperComponent, selector: "moz-stepper", inputs: { selectStepIndex: "selectStepIndex", viewCompact: "viewCompact" }, host: { properties: { "class": "this.hostCssClasses" } }, queries: [{ propertyName: "steps", predicate: StepComponent }, { propertyName: "stepElements", predicate: StepComponent, read: ElementRef }], usesOnChanges: true, ngImport: i0, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;background-color:#fff;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
62
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepperComponent, decorators: [{
63
- type: Component,
64
- args: [{ selector: 'moz-stepper', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;background-color:#fff;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
65
- }], propDecorators: { selectStepIndex: [{
66
- type: Input
67
- }], viewCompact: [{
68
- type: Input
69
- }], steps: [{
70
- type: ContentChildren,
71
- args: [StepComponent]
72
- }], stepElements: [{
73
- type: ContentChildren,
74
- args: [StepComponent, { read: ElementRef }]
75
- }], hostCssClasses: [{
76
- type: HostBinding,
77
- args: ['class']
78
- }] } });
79
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXBwZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2l0L2NvbXBvbmVudHMvc3RlcHBlci9zdGVwcGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULGVBQWUsRUFDZixVQUFVLEVBQ1YsV0FBVyxFQUNYLEtBQUssR0FJTixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7O0FBUWpELE1BQU0sT0FBTyxnQkFBZ0I7SUFON0I7UUFPVyxvQkFBZSxHQUFXLENBQUMsQ0FBQztRQUU1QixnQkFBVyxHQUFHLEtBQUssQ0FBQztLQXNFOUI7SUFoRVEsZUFBZTtRQUNwQixJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUs7WUFBRSxPQUFPO1FBQ3hCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQy9CLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDbEQsSUFBSSxDQUFDLHdCQUF3QixDQUFDLElBQUksQ0FBQyxZQUFhLENBQUMsQ0FBQztJQUNwRCxDQUFDO0lBRU0sV0FBVyxDQUFDLE9BQXNCO1FBQ3ZDLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsSUFDVyxjQUFjO1FBQ3ZCLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUN2RSxPQUFPLGNBQWMsZ0JBQWdCLEVBQUUsQ0FBQztJQUMxQyxDQUFDO0lBRU8sYUFBYSxDQUFDLEtBQStCO1FBQ25ELEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUN2RCxDQUFDO0lBRU8sd0JBQXdCLENBQUMsWUFBbUM7UUFDbEUsWUFBWSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsdUJBQXVCLENBQUMsQ0FBQztJQUNyRCxDQUFDO0lBRU8sdUJBQXVCLENBQzdCLFVBQXNCLEVBQ3RCLFlBQW9CLEVBQ3BCLFdBQXlCO1FBRXpCLFVBQVUsQ0FBQyxhQUFhLENBQUMsS0FBSyxHQUFHLFlBQVksV0FBVyxDQUFDLE1BQU0sZ0JBQzdELFlBQVksR0FBRyxDQUNqQixFQUFFLENBQUM7SUFDTCxDQUFDO0lBRU8sVUFBVSxDQUFDLEtBQStCLEVBQUUsZUFBdUI7UUFDekUsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLEVBQUUsZUFBZSxDQUFDLENBQUMsQ0FBQztJQUN2RSxDQUFDO0lBRU8sZUFBZSxDQUFDLElBQW1CLEVBQUUsZUFBdUI7UUFDbEUsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztRQUM1QixNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxlQUFlLENBQUMsQ0FBQztRQUMxRSxNQUFNLFVBQVUsR0FBRyxRQUFRLEtBQUssUUFBUSxDQUFDO1FBQ3pDLElBQUksQ0FBQyxVQUFVO1lBQUUsT0FBTztRQUN4QixJQUFJLENBQUMsS0FBSyxHQUFHLFFBQVEsQ0FBQztJQUN4QixDQUFDO0lBRU8sc0JBQXNCLENBQUMsU0FBaUIsRUFBRSxlQUF1QjtRQUN2RSxNQUFNLGFBQWEsR0FBRyxTQUFTLEtBQUssZUFBZSxDQUFDO1FBQ3BELE1BQU0sZUFBZSxHQUFHLFNBQVMsR0FBRyxlQUFlLENBQUM7UUFDcEQsSUFBSSxhQUFhO1lBQUUsT0FBTyxTQUFTLENBQUM7UUFDcEMsSUFBSSxlQUFlO1lBQUUsT0FBTyxXQUFXLENBQUM7UUFDeEMsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU8seUJBQXlCLENBQUMsRUFBRSxlQUFlLEVBQWlCO1FBQ2xFLElBQ0UsQ0FBQyxJQUFJLENBQUMsS0FBSztZQUNYLENBQUMsZUFBZTtZQUNoQixlQUFlLENBQUMsWUFBWSxLQUFLLGVBQWUsQ0FBQyxhQUFhO1lBRTlELE9BQU87UUFDVCxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsZUFBZSxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQzVELENBQUM7OzZHQXhFVSxnQkFBZ0I7aUdBQWhCLGdCQUFnQiwrTUFLVixhQUFhLCtDQUNiLGFBQWEsUUFBVSxVQUFVLGtEQzNCcEQsMkZBR0E7MkZEa0JhLGdCQUFnQjtrQkFONUIsU0FBUzsrQkFDRSxhQUFhLG1CQUdOLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLGVBQWU7c0JBQXZCLEtBQUs7Z0JBRUcsV0FBVztzQkFBbkIsS0FBSztnQkFFa0MsS0FBSztzQkFBNUMsZUFBZTt1QkFBQyxhQUFhO2dCQUV0QixZQUFZO3NCQURuQixlQUFlO3VCQUFDLGFBQWEsRUFBRSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUU7Z0JBZXpDLGNBQWM7c0JBRHhCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFmdGVyVmlld0luaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRWxlbWVudFJlZixcbiAgSG9zdEJpbmRpbmcsXG4gIElucHV0LFxuICBPbkNoYW5nZXMsXG4gIFF1ZXJ5TGlzdCxcbiAgU2ltcGxlQ2hhbmdlcyxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdGVwU3RhdGUgfSBmcm9tICcuL3N0ZXAtc3RhdGUnO1xuaW1wb3J0IHsgU3RlcENvbXBvbmVudCB9IGZyb20gJy4vc3RlcC5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb3otc3RlcHBlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdGVwcGVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc3RlcHBlci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgU3RlcHBlckNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQsIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyID0gMDtcblxuICBASW5wdXQoKSB2aWV3Q29tcGFjdCA9IGZhbHNlO1xuXG4gIEBDb250ZW50Q2hpbGRyZW4oU3RlcENvbXBvbmVudCkgcHJpdmF0ZSBzdGVwcz86IFF1ZXJ5TGlzdDxTdGVwQ29tcG9uZW50PjtcbiAgQENvbnRlbnRDaGlsZHJlbihTdGVwQ29tcG9uZW50LCB7IHJlYWQ6IEVsZW1lbnRSZWYgfSlcbiAgcHJpdmF0ZSBzdGVwRWxlbWVudHM/OiBRdWVyeUxpc3Q8RWxlbWVudFJlZj47XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICBpZiAoIXRoaXMuc3RlcHMpIHJldHVybjtcbiAgICB0aGlzLmluaXRTdGVwSW5kZXgodGhpcy5zdGVwcyk7XG4gICAgdGhpcy5zZWxlY3RTdGVwKHRoaXMuc3RlcHMsIHRoaXMuc2VsZWN0U3RlcEluZGV4KTtcbiAgICB0aGlzLmluaXRDc3NWYXJpYWJsZXNGb3JTdGVwcyh0aGlzLnN0ZXBFbGVtZW50cyEpO1xuICB9XG5cbiAgcHVibGljIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLnVwZGF0ZVNlbGVjdFN0ZXBBdENoYW5nZXMoY2hhbmdlcyk7XG4gIH1cblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHVibGljIGdldCBob3N0Q3NzQ2xhc3NlcygpIHtcbiAgICBjb25zdCB2aWV3Q29tcGFjdENsYXNzID0gdGhpcy52aWV3Q29tcGFjdCA/IGBtYy1zdGVwcGVyLS1jb21wYWN0YCA6ICcnO1xuICAgIHJldHVybiBgbWMtc3RlcHBlciAke3ZpZXdDb21wYWN0Q2xhc3N9YDtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdFN0ZXBJbmRleChzdGVwczogUXVlcnlMaXN0PFN0ZXBDb21wb25lbnQ+KSB7XG4gICAgc3RlcHMuZm9yRWFjaCgoc3RlcCwgaW5kZXgpID0+IChzdGVwLmluZGV4ID0gaW5kZXgpKTtcbiAgfVxuXG4gIHByaXZhdGUgaW5pdENzc1ZhcmlhYmxlc0ZvclN0ZXBzKHN0ZXBFbGVtZW50czogUXVlcnlMaXN0PEVsZW1lbnRSZWY+KSB7XG4gICAgc3RlcEVsZW1lbnRzLmZvckVhY2godGhpcy5pbml0Q3NzVmFyaWFibGVzRm9yU3RlcCk7XG4gIH1cblxuICBwcml2YXRlIGluaXRDc3NWYXJpYWJsZXNGb3JTdGVwKFxuICAgIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsXG4gICAgY3VycmVudEluZGV4OiBudW1iZXIsXG4gICAgZWxlbWVudFJlZnM6IEVsZW1lbnRSZWZbXVxuICApOiB2b2lkIHtcbiAgICBlbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuc3R5bGUgPSBgLS1zdGVwczogJHtlbGVtZW50UmVmcy5sZW5ndGh9OyAtLWN1cnJlbnQ6ICR7XG4gICAgICBjdXJyZW50SW5kZXggKyAxXG4gICAgfWA7XG4gIH1cblxuICBwcml2YXRlIHNlbGVjdFN0ZXAoc3RlcHM6IFF1ZXJ5TGlzdDxTdGVwQ29tcG9uZW50Piwgc2VsZWN0U3RlcEluZGV4OiBudW1iZXIpIHtcbiAgICBzdGVwcy5mb3JFYWNoKChzdGVwKSA9PiB0aGlzLnVwZGF0ZVN0YXRlU3RlcChzdGVwLCBzZWxlY3RTdGVwSW5kZXgpKTtcbiAgfVxuXG4gIHByaXZhdGUgdXBkYXRlU3RhdGVTdGVwKHN0ZXA6IFN0ZXBDb21wb25lbnQsIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyKSB7XG4gICAgY29uc3Qgb2xkU3RhdGUgPSBzdGVwLnN0YXRlO1xuICAgIGNvbnN0IG5ld1N0YXRlID0gdGhpcy5zdGF0ZURlZmluaXRpb25Gb3JTdGVwKHN0ZXAuaW5kZXgsIHNlbGVjdFN0ZXBJbmRleCk7XG4gICAgY29uc3QgaGFzQ2hhbmdlcyA9IG9sZFN0YXRlICE9PSBuZXdTdGF0ZTtcbiAgICBpZiAoIWhhc0NoYW5nZXMpIHJldHVybjtcbiAgICBzdGVwLnN0YXRlID0gbmV3U3RhdGU7XG4gIH1cblxuICBwcml2YXRlIHN0YXRlRGVmaW5pdGlvbkZvclN0ZXAoc3RlcEluZGV4OiBudW1iZXIsIHNlbGVjdFN0ZXBJbmRleDogbnVtYmVyKTogU3RlcFN0YXRlIHtcbiAgICBjb25zdCBpc0N1cnJlbnRTdGVwID0gc3RlcEluZGV4ID09PSBzZWxlY3RTdGVwSW5kZXg7XG4gICAgY29uc3QgaXNWYWxpZGF0ZWRTdGVwID0gc3RlcEluZGV4IDwgc2VsZWN0U3RlcEluZGV4O1xuICAgIGlmIChpc0N1cnJlbnRTdGVwKSByZXR1cm4gJ2N1cnJlbnQnO1xuICAgIGlmIChpc1ZhbGlkYXRlZFN0ZXApIHJldHVybiAndmFsaWRhdGVkJztcbiAgICByZXR1cm4gJyc7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZVNlbGVjdFN0ZXBBdENoYW5nZXMoeyBzZWxlY3RTdGVwSW5kZXggfTogU2ltcGxlQ2hhbmdlcykge1xuICAgIGlmIChcbiAgICAgICF0aGlzLnN0ZXBzIHx8XG4gICAgICAhc2VsZWN0U3RlcEluZGV4IHx8XG4gICAgICBzZWxlY3RTdGVwSW5kZXguY3VycmVudFZhbHVlID09PSBzZWxlY3RTdGVwSW5kZXgucHJldmlvdXNWYWx1ZVxuICAgIClcbiAgICAgIHJldHVybjtcbiAgICB0aGlzLnNlbGVjdFN0ZXAodGhpcy5zdGVwcywgc2VsZWN0U3RlcEluZGV4LmN1cnJlbnRWYWx1ZSk7XG4gIH1cbn1cbiIsIjxvbCBjbGFzcz1cIm1jLXN0ZXBwZXJfX2xpc3RcIj5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwibW96LXN0ZXBcIj48L25nLWNvbnRlbnQ+XG48L29sPlxuIl19
@@ -1,20 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { IconModule } from '../public-api';
4
- import { StepComponent } from './step.component';
5
- import { StepperComponent } from './stepper.component';
6
- import * as i0 from "@angular/core";
7
- export class StepperModule {
8
- }
9
- StepperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10
- StepperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: StepperModule, declarations: [StepperComponent, StepComponent], imports: [CommonModule, IconModule], exports: [StepperComponent, StepComponent] });
11
- StepperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepperModule, imports: [CommonModule, IconModule] });
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: StepperModule, decorators: [{
13
- type: NgModule,
14
- args: [{
15
- imports: [CommonModule, IconModule],
16
- declarations: [StepperComponent, StepComponent],
17
- exports: [StepperComponent, StepComponent],
18
- }]
19
- }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcHBlci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9raXQvY29tcG9uZW50cy9zdGVwcGVyL3N0ZXBwZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQU92RCxNQUFNLE9BQU8sYUFBYTs7MEdBQWIsYUFBYTsyR0FBYixhQUFhLGlCQUhULGdCQUFnQixFQUFFLGFBQWEsYUFEcEMsWUFBWSxFQUFFLFVBQVUsYUFFeEIsZ0JBQWdCLEVBQUUsYUFBYTsyR0FFOUIsYUFBYSxZQUpkLFlBQVksRUFBRSxVQUFVOzJGQUl2QixhQUFhO2tCQUx6QixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxVQUFVLENBQUM7b0JBQ25DLFlBQVksRUFBRSxDQUFDLGdCQUFnQixFQUFFLGFBQWEsQ0FBQztvQkFDL0MsT0FBTyxFQUFFLENBQUMsZ0JBQWdCLEVBQUUsYUFBYSxDQUFDO2lCQUMzQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSWNvbk1vZHVsZSB9IGZyb20gJy4uL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgU3RlcENvbXBvbmVudCB9IGZyb20gJy4vc3RlcC5jb21wb25lbnQnO1xuaW1wb3J0IHsgU3RlcHBlckNvbXBvbmVudCB9IGZyb20gJy4vc3RlcHBlci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBJY29uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbU3RlcHBlckNvbXBvbmVudCwgU3RlcENvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtTdGVwcGVyQ29tcG9uZW50LCBTdGVwQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgU3RlcHBlck1vZHVsZSB7fVxuIl19