@mozaic-ds/angular 0.22.0-beta → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2141) hide show
  1. package/.editorconfig +16 -0
  2. package/.eslintignore +8 -0
  3. package/.eslintrc.json +70 -0
  4. package/.github/ISSUE_TEMPLATE/1-pattern-addition-proposal.md +23 -0
  5. package/.github/ISSUE_TEMPLATE/2-pattern-bug-report.md +68 -0
  6. package/.github/ISSUE_TEMPLATE/3-pattern-enhancement-proposal.md +34 -0
  7. package/.github/ISSUE_TEMPLATE/4-other.md +36 -0
  8. package/.github/PULL_REQUEST_TEMPLATE.md +19 -0
  9. package/.github/workflows/onPR.yml +93 -0
  10. package/.github/workflows/onPRClosed.yml +17 -0
  11. package/.github/workflows/onPushMaster.yml +59 -0
  12. package/.husky/pre-commit +4 -0
  13. package/.lintstagedrc +8 -0
  14. package/.nvmrc +1 -0
  15. package/.prettierignore +3 -0
  16. package/.prettierrc +7 -0
  17. package/.release-it.json +21 -0
  18. package/.storybook/main.js +19 -0
  19. package/.storybook/preview.js +27 -0
  20. package/.storybook/tsconfig.json +13 -0
  21. package/.storybook/typings.d.ts +4 -0
  22. package/.storybook/webpack.config.js +21 -0
  23. package/.vscode/extensions.json +4 -0
  24. package/.vscode/launch.json +20 -0
  25. package/.vscode/tasks.json +42 -0
  26. package/CHANGELOG.md +19 -0
  27. package/angular.json +113 -0
  28. package/mozaic-angular.svg +9 -0
  29. package/mozaic.config.js +6 -0
  30. package/package.json +1 -4
  31. package/product-info.json +1 -0
  32. package/projects/kit/.browserslistrc +16 -0
  33. package/projects/kit/.eslintrc.json +35 -0
  34. package/projects/kit/common/global-events/global-events.module.ts +7 -0
  35. package/projects/kit/common/global-events/global-events.service.ts +27 -0
  36. package/projects/kit/common/utils/boolean-property.ts +3 -0
  37. package/projects/kit/common/utils/generate-id.ts +7 -0
  38. package/projects/kit/common/utils/get-random-number.ts +6 -0
  39. package/projects/kit/common/utils/overwrite-style.ts +10 -0
  40. package/projects/kit/components/accordion/accordion.component.html +25 -0
  41. package/projects/kit/components/accordion/accordion.component.scss +2 -0
  42. package/projects/kit/components/accordion/accordion.component.spec.ts +24 -0
  43. package/projects/kit/components/accordion/accordion.component.ts +27 -0
  44. package/projects/kit/components/accordion/accordion.module.ts +11 -0
  45. package/projects/kit/components/accordion/accordion.stories.ts +55 -0
  46. package/projects/kit/components/accordion/accordion.ts +1 -0
  47. package/projects/kit/components/accordion/index.ts +1 -0
  48. package/projects/kit/components/badge/badge.component.html +1 -0
  49. package/projects/kit/components/badge/badge.component.scss +2 -0
  50. package/projects/kit/components/badge/badge.component.spec.ts +24 -0
  51. package/projects/kit/components/badge/badge.component.ts +29 -0
  52. package/projects/kit/components/badge/badge.module.ts +10 -0
  53. package/projects/kit/components/badge/badge.stories.ts +32 -0
  54. package/projects/kit/components/badge/badge.ts +3 -0
  55. package/projects/kit/components/button/button.component.html +2 -0
  56. package/projects/kit/components/button/button.component.scss +23 -0
  57. package/projects/kit/components/button/button.component.spec.ts +24 -0
  58. package/projects/kit/components/button/button.component.ts +58 -0
  59. package/projects/kit/components/button/button.module.ts +10 -0
  60. package/projects/kit/components/button/button.stories.ts +72 -0
  61. package/projects/kit/components/button/button.ts +8 -0
  62. package/projects/kit/components/checkbox/checkbox.component.html +13 -0
  63. package/projects/kit/components/checkbox/checkbox.component.scss +3 -0
  64. package/projects/kit/components/checkbox/checkbox.component.spec.ts +24 -0
  65. package/projects/kit/components/checkbox/checkbox.component.ts +73 -0
  66. package/projects/kit/components/checkbox/checkbox.module.ts +13 -0
  67. package/projects/kit/components/checkbox/checkbox.stories.ts +47 -0
  68. package/projects/kit/components/dialog/classes/dialog-config.ts +13 -0
  69. package/projects/kit/components/dialog/classes/dialog-injector.ts +34 -0
  70. package/projects/kit/components/dialog/classes/dialog-ref.ts +66 -0
  71. package/projects/kit/components/dialog/dialog-animation.ts +24 -0
  72. package/projects/kit/components/dialog/dialog.component.html +27 -0
  73. package/projects/kit/components/dialog/dialog.component.scss +3 -0
  74. package/projects/kit/components/dialog/dialog.component.spec.ts +24 -0
  75. package/projects/kit/components/dialog/dialog.component.ts +75 -0
  76. package/projects/kit/components/dialog/dialog.module.ts +12 -0
  77. package/projects/kit/components/dialog/dialog.service.spec.ts +15 -0
  78. package/projects/kit/components/dialog/dialog.service.ts +88 -0
  79. package/projects/kit/components/dialog/dialog.stories.ts +23 -0
  80. package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.html +3 -0
  81. package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.ts +18 -0
  82. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.html +10 -0
  83. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.scss +7 -0
  84. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.ts +28 -0
  85. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.module.ts +19 -0
  86. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.html +6 -0
  87. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.scss +11 -0
  88. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.ts +16 -0
  89. package/projects/kit/components/dialog/index.ts +1 -0
  90. package/projects/kit/components/dialog/interfaces/dialog-config.ts +7 -0
  91. package/projects/kit/components/dialog/interfaces/dialog-di-params.ts +7 -0
  92. package/projects/kit/components/dialog/interfaces/dialog-ref.ts +20 -0
  93. package/projects/kit/components/dialog/tokens/dialog-config.token.ts +3 -0
  94. package/projects/kit/components/dialog/tokens/dialog-data.token.ts +3 -0
  95. package/projects/kit/components/dialog/tokens/dialog-ref.token.ts +3 -0
  96. package/projects/kit/components/field/directives/input-icon.directive.ts +9 -0
  97. package/projects/kit/components/field/field-error.component.html +1 -0
  98. package/projects/kit/components/field/field-error.component.scss +3 -0
  99. package/projects/kit/components/field/field-error.component.ts +12 -0
  100. package/projects/kit/components/field/field.component.html +30 -0
  101. package/projects/kit/components/field/field.component.scss +30 -0
  102. package/projects/kit/components/field/field.component.ts +49 -0
  103. package/projects/kit/components/field/field.module.ts +12 -0
  104. package/projects/kit/components/field/field.stories.ts +48 -0
  105. package/projects/kit/components/flag/flag.component.html +1 -0
  106. package/projects/kit/components/flag/flag.component.scss +2 -0
  107. package/projects/kit/components/flag/flag.component.spec.ts +47 -0
  108. package/projects/kit/components/flag/flag.component.ts +26 -0
  109. package/projects/kit/components/flag/flag.module.ts +10 -0
  110. package/projects/kit/components/flag/flag.stories.ts +33 -0
  111. package/projects/kit/components/flag/flag.ts +24 -0
  112. package/projects/kit/components/flag/index.ts +1 -0
  113. package/projects/kit/components/icon/icon-size.ts +6 -0
  114. package/projects/kit/components/icon/icon.component.scss +20 -0
  115. package/projects/kit/components/icon/icon.component.spec.ts +24 -0
  116. package/projects/kit/components/icon/icon.component.ts +59 -0
  117. package/projects/kit/components/icon/icon.module.ts +10 -0
  118. package/projects/kit/components/icon/icon.service.ts +42 -0
  119. package/projects/kit/components/icon/icon.stories.ts +24 -0
  120. package/projects/kit/components/layer/classes/index.ts +0 -0
  121. package/projects/kit/components/layer/classes/layer-injector.ts +35 -0
  122. package/projects/kit/components/layer/classes/layer-ref.ts +54 -0
  123. package/projects/kit/components/layer/interfaces/layer-config.ts +4 -0
  124. package/projects/kit/components/layer/interfaces/layer-di-params.ts +7 -0
  125. package/projects/kit/components/layer/interfaces/layer-ref.ts +17 -0
  126. package/projects/kit/components/layer/layer-animation.ts +24 -0
  127. package/projects/kit/components/layer/layer-example.component.ts +43 -0
  128. package/projects/kit/components/layer/layer.component.html +21 -0
  129. package/projects/kit/components/layer/layer.component.scss +3 -0
  130. package/projects/kit/components/layer/layer.component.ts +55 -0
  131. package/projects/kit/components/layer/layer.module.ts +13 -0
  132. package/projects/kit/components/layer/layer.service.ts +73 -0
  133. package/projects/kit/components/layer/layer.stories.ts +29 -0
  134. package/projects/kit/components/layer/tokens/layer-config.token.ts +3 -0
  135. package/projects/kit/components/layer/tokens/layer-data.token.ts +3 -0
  136. package/projects/kit/components/layer/tokens/layer-ref.token.ts +3 -0
  137. package/projects/kit/components/loader/loader-run-example.component.ts +20 -0
  138. package/projects/kit/components/loader/loader.component.html +15 -0
  139. package/projects/kit/components/loader/loader.component.scss +7 -0
  140. package/projects/kit/components/loader/loader.component.ts +57 -0
  141. package/projects/kit/components/loader/loader.module.ts +12 -0
  142. package/projects/kit/components/loader/loader.service.ts +61 -0
  143. package/projects/kit/components/loader/loader.stories.ts +51 -0
  144. package/projects/kit/components/loader/loader.ts +20 -0
  145. package/projects/kit/components/notification/notification-animation.ts +24 -0
  146. package/projects/kit/components/notification/notification-container.component.html +6 -0
  147. package/projects/kit/components/notification/notification-container.component.scss +10 -0
  148. package/projects/kit/components/notification/notification-container.component.ts +35 -0
  149. package/projects/kit/components/notification/notification-example.component.ts +17 -0
  150. package/projects/kit/components/notification/notification-footer.ts +11 -0
  151. package/projects/kit/components/notification/notification-message.ts +11 -0
  152. package/projects/kit/components/notification/notification-title.ts +11 -0
  153. package/projects/kit/components/notification/notification.component.html +5 -0
  154. package/projects/kit/components/notification/notification.component.scss +2 -0
  155. package/projects/kit/components/notification/notification.component.ts +30 -0
  156. package/projects/kit/components/notification/notification.module.ts +48 -0
  157. package/projects/kit/components/notification/notification.service.ts +50 -0
  158. package/projects/kit/components/notification/notification.stories.ts +52 -0
  159. package/projects/kit/components/notification/notification.ts +21 -0
  160. package/projects/kit/components/pagination/pagination.component.html +37 -0
  161. package/projects/kit/components/pagination/pagination.component.scss +7 -0
  162. package/projects/kit/components/pagination/pagination.component.ts +196 -0
  163. package/projects/kit/components/pagination/pagination.module.ts +15 -0
  164. package/projects/kit/components/pagination/pagination.stories.ts +28 -0
  165. package/projects/kit/components/pagination/pagination.ts +7 -0
  166. package/projects/kit/components/progress-bar/progress-bar.component.html +9 -0
  167. package/projects/kit/components/progress-bar/progress-bar.component.scss +2 -0
  168. package/projects/kit/components/progress-bar/progress-bar.component.ts +38 -0
  169. package/projects/kit/components/progress-bar/progress-bar.module.ts +10 -0
  170. package/projects/kit/components/progress-bar/progress-bar.stories.ts +39 -0
  171. package/projects/kit/components/select/select-size.ts +6 -0
  172. package/projects/kit/components/select/select.component.html +1 -0
  173. package/projects/kit/components/select/select.component.scss +3 -0
  174. package/projects/kit/components/select/select.component.ts +27 -0
  175. package/projects/kit/components/select/select.module.ts +10 -0
  176. package/projects/kit/components/select/select.stories.ts +39 -0
  177. package/projects/kit/components/stepper/step.component.html +14 -0
  178. package/projects/kit/components/stepper/step.component.ts +61 -0
  179. package/projects/kit/components/stepper/stepper.component.html +3 -0
  180. package/projects/kit/components/stepper/stepper.component.scss +3 -0
  181. package/projects/kit/components/stepper/stepper.component.ts +95 -0
  182. package/projects/kit/components/stepper/stepper.module.ts +12 -0
  183. package/projects/kit/components/stepper/stepper.stories.ts +33 -0
  184. package/projects/kit/components/tabs/index.ts +1 -0
  185. package/projects/kit/components/tabs/tab-selectors.ts +2 -0
  186. package/projects/kit/components/tabs/tab.component.html +1 -0
  187. package/projects/kit/components/tabs/tab.component.scss +16 -0
  188. package/projects/kit/components/tabs/tab.component.spec.ts +27 -0
  189. package/projects/kit/components/tabs/tab.component.ts +56 -0
  190. package/projects/kit/components/tabs/tabs.component.html +1 -0
  191. package/projects/kit/components/tabs/tabs.component.scss +9 -0
  192. package/projects/kit/components/tabs/tabs.component.spec.ts +24 -0
  193. package/projects/kit/components/tabs/tabs.component.ts +194 -0
  194. package/projects/kit/components/tabs/tabs.module.ts +11 -0
  195. package/projects/kit/components/tabs/tabs.stories.ts +40 -0
  196. package/projects/kit/components/tag/tag.component.html +29 -0
  197. package/projects/kit/components/tag/tag.component.scss +3 -0
  198. package/projects/kit/components/tag/tag.component.ts +71 -0
  199. package/projects/kit/components/tag/tag.module.ts +11 -0
  200. package/projects/kit/components/tag/text-area.stories.ts +49 -0
  201. package/projects/kit/components/text-area/text-area.component.scss +3 -0
  202. package/projects/kit/components/text-area/text-area.component.ts +47 -0
  203. package/projects/kit/components/text-area/text-area.module.ts +8 -0
  204. package/projects/kit/components/text-area/text-area.stories.ts +33 -0
  205. package/projects/kit/components/text-input/text-input.component.scss +15 -0
  206. package/projects/kit/components/text-input/text-input.component.spec.ts +24 -0
  207. package/projects/kit/components/text-input/text-input.component.ts +74 -0
  208. package/projects/kit/components/text-input/text-input.module.ts +12 -0
  209. package/projects/kit/components/text-input/text-input.stories.ts +80 -0
  210. package/projects/kit/components/toggle/toggle.component.html +13 -0
  211. package/projects/kit/components/toggle/toggle.component.scss +2 -0
  212. package/projects/kit/components/toggle/toggle.component.ts +76 -0
  213. package/projects/kit/components/toggle/toggle.module.ts +10 -0
  214. package/projects/kit/components/toggle/toggle.stories.ts +35 -0
  215. package/projects/kit/components/tooltip/tooltip.component.html +2 -0
  216. package/projects/kit/components/tooltip/tooltip.component.scss +2 -0
  217. package/projects/kit/components/tooltip/tooltip.component.ts +32 -0
  218. package/projects/kit/components/tooltip/tooltip.module.ts +10 -0
  219. package/projects/kit/components/tooltip/tooltip.stories.ts +39 -0
  220. package/projects/kit/karma.conf.js +41 -0
  221. package/projects/kit/ng-package-adeo.json +21 -0
  222. package/projects/kit/ng-package.json +23 -0
  223. package/projects/kit/package.json +11 -0
  224. package/projects/kit/tsconfig.lib.json +12 -0
  225. package/projects/kit/tsconfig.lib.prod.json +10 -0
  226. package/projects/kit/tsconfig.spec.json +10 -0
  227. package/projects/schematics/.eslintrc.json +35 -0
  228. package/projects/schematics/README.md +17 -0
  229. package/projects/schematics/collection.json +10 -0
  230. package/projects/schematics/kit-component/files/__name@dasherize__.stories.ts.template +21 -0
  231. package/projects/schematics/kit-component/files/index.ts.template +1 -0
  232. package/projects/schematics/kit-component/index.ts +82 -0
  233. package/projects/schematics/kit-component/schema.json +26 -0
  234. package/projects/schematics/kit-component/schema.ts +10 -0
  235. package/projects/schematics/ng-package.json +7 -0
  236. package/projects/schematics/package.json +20 -0
  237. package/projects/schematics/public-api.ts +1 -0
  238. package/projects/schematics/tsconfig.lib.json +23 -0
  239. package/projects/schematics/tsconfig.lib.prod.json +10 -0
  240. package/tsconfig.json +33 -0
  241. package/dist/mozaic-angular/adeo/common/global-events/global-events.module.d.ts +0 -6
  242. package/dist/mozaic-angular/adeo/common/global-events/global-events.service.d.ts +0 -11
  243. package/dist/mozaic-angular/adeo/common/utils/boolean-property.d.ts +0 -1
  244. package/dist/mozaic-angular/adeo/common/utils/generate-id.d.ts +0 -1
  245. package/dist/mozaic-angular/adeo/common/utils/get-random-number.d.ts +0 -1
  246. package/dist/mozaic-angular/adeo/common/utils/overwrite-style.d.ts +0 -2
  247. package/dist/mozaic-angular/adeo/components/badge/badge.component.d.ts +0 -8
  248. package/dist/mozaic-angular/adeo/components/badge/badge.d.ts +0 -3
  249. package/dist/mozaic-angular/adeo/components/badge/badge.module.d.ts +0 -8
  250. package/dist/mozaic-angular/adeo/components/button/button.component.d.ts +0 -16
  251. package/dist/mozaic-angular/adeo/components/button/button.d.ts +0 -7
  252. package/dist/mozaic-angular/adeo/components/button/button.module.d.ts +0 -8
  253. package/dist/mozaic-angular/adeo/components/checkbox/checkbox.component.d.ts +0 -21
  254. package/dist/mozaic-angular/adeo/components/checkbox/checkbox.module.d.ts +0 -8
  255. package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-config.d.ts +0 -9
  256. package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-injector.d.ts +0 -10
  257. package/dist/mozaic-angular/adeo/components/dialog/classes/dialog-ref.d.ts +0 -25
  258. package/dist/mozaic-angular/adeo/components/dialog/dialog-animation.d.ts +0 -1
  259. package/dist/mozaic-angular/adeo/components/dialog/dialog.component.d.ts +0 -23
  260. package/dist/mozaic-angular/adeo/components/dialog/dialog.module.d.ts +0 -8
  261. package/dist/mozaic-angular/adeo/components/dialog/dialog.service.d.ts +0 -20
  262. package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-config.d.ts +0 -7
  263. package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
  264. package/dist/mozaic-angular/adeo/components/dialog/interfaces/dialog-ref.d.ts +0 -18
  265. package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-config.token.d.ts +0 -2
  266. package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-data.token.d.ts +0 -2
  267. package/dist/mozaic-angular/adeo/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
  268. package/dist/mozaic-angular/adeo/components/field/directives/input-icon.directive.d.ts +0 -7
  269. package/dist/mozaic-angular/adeo/components/field/field-error.component.d.ts +0 -5
  270. package/dist/mozaic-angular/adeo/components/field/field.component.d.ts +0 -16
  271. package/dist/mozaic-angular/adeo/components/field/field.module.d.ts +0 -10
  272. package/dist/mozaic-angular/adeo/components/icon/icon-size.d.ts +0 -6
  273. package/dist/mozaic-angular/adeo/components/icon/icon.component.d.ts +0 -15
  274. package/dist/mozaic-angular/adeo/components/icon/icon.module.d.ts +0 -8
  275. package/dist/mozaic-angular/adeo/components/icon/icon.service.d.ts +0 -13
  276. package/dist/mozaic-angular/adeo/components/layer/classes/layer-injector.d.ts +0 -10
  277. package/dist/mozaic-angular/adeo/components/layer/classes/layer-ref.d.ts +0 -21
  278. package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-config.d.ts +0 -4
  279. package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-di-params.d.ts +0 -6
  280. package/dist/mozaic-angular/adeo/components/layer/interfaces/layer-ref.d.ts +0 -15
  281. package/dist/mozaic-angular/adeo/components/layer/layer-animation.d.ts +0 -1
  282. package/dist/mozaic-angular/adeo/components/layer/layer.component.d.ts +0 -19
  283. package/dist/mozaic-angular/adeo/components/layer/layer.module.d.ts +0 -9
  284. package/dist/mozaic-angular/adeo/components/layer/layer.service.d.ts +0 -19
  285. package/dist/mozaic-angular/adeo/components/layer/tokens/layer-config.token.d.ts +0 -2
  286. package/dist/mozaic-angular/adeo/components/layer/tokens/layer-data.token.d.ts +0 -2
  287. package/dist/mozaic-angular/adeo/components/layer/tokens/layer-ref.token.d.ts +0 -2
  288. package/dist/mozaic-angular/adeo/components/loader/loader.component.d.ts +0 -25
  289. package/dist/mozaic-angular/adeo/components/loader/loader.d.ts +0 -16
  290. package/dist/mozaic-angular/adeo/components/loader/loader.module.d.ts +0 -8
  291. package/dist/mozaic-angular/adeo/components/loader/loader.service.d.ts +0 -18
  292. package/dist/mozaic-angular/adeo/components/notification/notification-animation.d.ts +0 -1
  293. package/dist/mozaic-angular/adeo/components/notification/notification-container.component.d.ts +0 -12
  294. package/dist/mozaic-angular/adeo/components/notification/notification-footer.d.ts +0 -5
  295. package/dist/mozaic-angular/adeo/components/notification/notification-message.d.ts +0 -5
  296. package/dist/mozaic-angular/adeo/components/notification/notification-title.d.ts +0 -5
  297. package/dist/mozaic-angular/adeo/components/notification/notification.component.d.ts +0 -9
  298. package/dist/mozaic-angular/adeo/components/notification/notification.d.ts +0 -15
  299. package/dist/mozaic-angular/adeo/components/notification/notification.module.d.ts +0 -15
  300. package/dist/mozaic-angular/adeo/components/notification/notification.service.d.ts +0 -16
  301. package/dist/mozaic-angular/adeo/components/pagination/pagination.component.d.ts +0 -46
  302. package/dist/mozaic-angular/adeo/components/pagination/pagination.d.ts +0 -7
  303. package/dist/mozaic-angular/adeo/components/pagination/pagination.module.d.ts +0 -13
  304. package/dist/mozaic-angular/adeo/components/progress-bar/progress-bar.component.d.ts +0 -15
  305. package/dist/mozaic-angular/adeo/components/progress-bar/progress-bar.module.d.ts +0 -8
  306. package/dist/mozaic-angular/adeo/components/select/select-size.d.ts +0 -5
  307. package/dist/mozaic-angular/adeo/components/select/select.component.d.ts +0 -8
  308. package/dist/mozaic-angular/adeo/components/select/select.module.d.ts +0 -8
  309. package/dist/mozaic-angular/adeo/components/stepper/step.component.d.ts +0 -20
  310. package/dist/mozaic-angular/adeo/components/stepper/stepper.component.d.ts +0 -20
  311. package/dist/mozaic-angular/adeo/components/stepper/stepper.module.d.ts +0 -10
  312. package/dist/mozaic-angular/adeo/components/tabs/tab-selectors.d.ts +0 -2
  313. package/dist/mozaic-angular/adeo/components/tabs/tab.component.d.ts +0 -16
  314. package/dist/mozaic-angular/adeo/components/tabs/tabs.component.d.ts +0 -36
  315. package/dist/mozaic-angular/adeo/components/tabs/tabs.module.d.ts +0 -9
  316. package/dist/mozaic-angular/adeo/components/tag/tag.component.d.ts +0 -23
  317. package/dist/mozaic-angular/adeo/components/tag/tag.module.d.ts +0 -9
  318. package/dist/mozaic-angular/adeo/components/text-area/text-area.component.d.ts +0 -12
  319. package/dist/mozaic-angular/adeo/components/text-area/text-area.module.d.ts +0 -7
  320. package/dist/mozaic-angular/adeo/components/text-input/text-input.component.d.ts +0 -21
  321. package/dist/mozaic-angular/adeo/components/text-input/text-input.module.d.ts +0 -10
  322. package/dist/mozaic-angular/adeo/components/toggle/toggle.component.d.ts +0 -22
  323. package/dist/mozaic-angular/adeo/components/toggle/toggle.module.d.ts +0 -8
  324. package/dist/mozaic-angular/adeo/components/tooltip/tooltip.component.d.ts +0 -11
  325. package/dist/mozaic-angular/adeo/components/tooltip/tooltip.module.d.ts +0 -8
  326. package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.module.mjs +0 -15
  327. package/dist/mozaic-angular/adeo/esm2020/common/global-events/global-events.service.mjs +0 -30
  328. package/dist/mozaic-angular/adeo/esm2020/common/global-events/public-api.mjs +0 -3
  329. package/dist/mozaic-angular/adeo/esm2020/common/index.mjs +0 -3
  330. package/dist/mozaic-angular/adeo/esm2020/common/utils/boolean-property.mjs +0 -4
  331. package/dist/mozaic-angular/adeo/esm2020/common/utils/generate-id.mjs +0 -7
  332. package/dist/mozaic-angular/adeo/esm2020/common/utils/get-random-number.mjs +0 -6
  333. package/dist/mozaic-angular/adeo/esm2020/common/utils/index.mjs +0 -5
  334. package/dist/mozaic-angular/adeo/esm2020/common/utils/overwrite-style.mjs +0 -5
  335. package/dist/mozaic-angular/adeo/esm2020/common/utils/public-api.mjs +0 -2
  336. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.component.mjs +0 -30
  337. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.mjs +0 -2
  338. package/dist/mozaic-angular/adeo/esm2020/components/badge/badge.module.mjs +0 -18
  339. package/dist/mozaic-angular/adeo/esm2020/components/badge/index.mjs +0 -3
  340. package/dist/mozaic-angular/adeo/esm2020/components/button/button.component.mjs +0 -53
  341. package/dist/mozaic-angular/adeo/esm2020/components/button/button.mjs +0 -2
  342. package/dist/mozaic-angular/adeo/esm2020/components/button/button.module.mjs +0 -18
  343. package/dist/mozaic-angular/adeo/esm2020/components/button/index.mjs +0 -3
  344. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.component.mjs +0 -58
  345. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/checkbox.module.mjs +0 -21
  346. package/dist/mozaic-angular/adeo/esm2020/components/checkbox/public-api.mjs +0 -3
  347. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
  348. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
  349. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
  350. package/dist/mozaic-angular/adeo/esm2020/components/dialog/classes/index.mjs +0 -4
  351. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog-animation.mjs +0 -18
  352. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.component.mjs +0 -57
  353. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.module.mjs +0 -20
  354. package/dist/mozaic-angular/adeo/esm2020/components/dialog/dialog.service.mjs +0 -67
  355. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
  356. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
  357. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
  358. package/dist/mozaic-angular/adeo/esm2020/components/dialog/interfaces/index.mjs +0 -4
  359. package/dist/mozaic-angular/adeo/esm2020/components/dialog/public-api.mjs +0 -6
  360. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
  361. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
  362. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
  363. package/dist/mozaic-angular/adeo/esm2020/components/dialog/tokens/index.mjs +0 -4
  364. package/dist/mozaic-angular/adeo/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
  365. package/dist/mozaic-angular/adeo/esm2020/components/field/field-error.component.mjs +0 -13
  366. package/dist/mozaic-angular/adeo/esm2020/components/field/field.component.mjs +0 -40
  367. package/dist/mozaic-angular/adeo/esm2020/components/field/field.module.mjs +0 -20
  368. package/dist/mozaic-angular/adeo/esm2020/components/field/public-api.mjs +0 -5
  369. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon-size.mjs +0 -8
  370. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.component.mjs +0 -49
  371. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.module.mjs +0 -18
  372. package/dist/mozaic-angular/adeo/esm2020/components/icon/icon.service.mjs +0 -42
  373. package/dist/mozaic-angular/adeo/esm2020/components/icon/public-api.mjs +0 -4
  374. package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-injector.mjs +0 -22
  375. package/dist/mozaic-angular/adeo/esm2020/components/layer/classes/layer-ref.mjs +0 -38
  376. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/index.mjs +0 -4
  377. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
  378. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
  379. package/dist/mozaic-angular/adeo/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
  380. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer-animation.mjs +0 -18
  381. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.component.mjs +0 -40
  382. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.module.mjs +0 -21
  383. package/dist/mozaic-angular/adeo/esm2020/components/layer/layer.service.mjs +0 -56
  384. package/dist/mozaic-angular/adeo/esm2020/components/layer/public-api.mjs +0 -6
  385. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/index.mjs +0 -4
  386. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
  387. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
  388. package/dist/mozaic-angular/adeo/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
  389. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.component.mjs +0 -47
  390. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.mjs +0 -11
  391. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.module.mjs +0 -20
  392. package/dist/mozaic-angular/adeo/esm2020/components/loader/loader.service.mjs +0 -53
  393. package/dist/mozaic-angular/adeo/esm2020/components/loader/public-api.mjs +0 -4
  394. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-animation.mjs +0 -21
  395. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-container.component.mjs +0 -38
  396. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-footer.mjs +0 -11
  397. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-message.mjs +0 -11
  398. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification-title.mjs +0 -11
  399. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.component.mjs +0 -29
  400. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.mjs +0 -8
  401. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.module.mjs +0 -66
  402. package/dist/mozaic-angular/adeo/esm2020/components/notification/notification.service.mjs +0 -40
  403. package/dist/mozaic-angular/adeo/esm2020/components/notification/public-api.mjs +0 -9
  404. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.component.mjs +0 -133
  405. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.mjs +0 -4
  406. package/dist/mozaic-angular/adeo/esm2020/components/pagination/pagination.module.mjs +0 -23
  407. package/dist/mozaic-angular/adeo/esm2020/components/pagination/public-api.mjs +0 -3
  408. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
  409. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
  410. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
  411. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
  412. package/dist/mozaic-angular/adeo/esm2020/components/progress-bar/public-api.mjs +0 -3
  413. package/dist/mozaic-angular/adeo/esm2020/components/public-api.mjs +0 -20
  414. package/dist/mozaic-angular/adeo/esm2020/components/select/public-api.mjs +0 -3
  415. package/dist/mozaic-angular/adeo/esm2020/components/select/select-size.mjs +0 -6
  416. package/dist/mozaic-angular/adeo/esm2020/components/select/select.component.mjs +0 -25
  417. package/dist/mozaic-angular/adeo/esm2020/components/select/select.module.mjs +0 -18
  418. package/dist/mozaic-angular/adeo/esm2020/components/stepper/public-api.mjs +0 -4
  419. package/dist/mozaic-angular/adeo/esm2020/components/stepper/step-state.mjs +0 -2
  420. package/dist/mozaic-angular/adeo/esm2020/components/stepper/step.component.mjs +0 -51
  421. package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.component.mjs +0 -79
  422. package/dist/mozaic-angular/adeo/esm2020/components/stepper/stepper.module.mjs +0 -20
  423. package/dist/mozaic-angular/adeo/esm2020/components/tabs/public-api.mjs +0 -4
  424. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab-selectors.mjs +0 -3
  425. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tab.component.mjs +0 -53
  426. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.component.mjs +0 -126
  427. package/dist/mozaic-angular/adeo/esm2020/components/tabs/tabs.module.mjs +0 -19
  428. package/dist/mozaic-angular/adeo/esm2020/components/tag/public-api.mjs +0 -3
  429. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag-type.mjs +0 -2
  430. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.component.mjs +0 -61
  431. package/dist/mozaic-angular/adeo/esm2020/components/tag/tag.module.mjs +0 -19
  432. package/dist/mozaic-angular/adeo/esm2020/components/text-area/public-api.mjs +0 -3
  433. package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.component.mjs +0 -43
  434. package/dist/mozaic-angular/adeo/esm2020/components/text-area/text-area.module.mjs +0 -16
  435. package/dist/mozaic-angular/adeo/esm2020/components/text-input/public-api.mjs +0 -3
  436. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.component.mjs +0 -64
  437. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.mjs +0 -2
  438. package/dist/mozaic-angular/adeo/esm2020/components/text-input/text-input.module.mjs +0 -20
  439. package/dist/mozaic-angular/adeo/esm2020/components/toggle/public-api.mjs +0 -3
  440. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle-size.mjs +0 -2
  441. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.component.mjs +0 -59
  442. package/dist/mozaic-angular/adeo/esm2020/components/toggle/toggle.module.mjs +0 -18
  443. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/public-api.mjs +0 -3
  444. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip-position.mjs +0 -2
  445. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.component.mjs +0 -32
  446. package/dist/mozaic-angular/adeo/esm2020/components/tooltip/tooltip.module.mjs +0 -18
  447. package/dist/mozaic-angular/adeo/esm2020/mozaic-ds-angular.mjs +0 -5
  448. package/dist/mozaic-angular/adeo/esm2020/public-api.mjs +0 -3
  449. package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs +0 -2052
  450. package/dist/mozaic-angular/adeo/fesm2015/mozaic-ds-angular.mjs.map +0 -1
  451. package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs +0 -2025
  452. package/dist/mozaic-angular/adeo/fesm2020/mozaic-ds-angular.mjs.map +0 -1
  453. package/dist/mozaic-angular/adeo/index.d.ts +0 -5
  454. package/dist/mozaic-angular/adeo/package.json +0 -31
  455. package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_24px.svg +0 -1
  456. package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_32px.svg +0 -1
  457. package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_48px.svg +0 -1
  458. package/dist/mozaic-angular/assets/moz-icons/Device_Desktop_64px.svg +0 -1
  459. package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_24px.svg +0 -1
  460. package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_32px.svg +0 -1
  461. package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_48px.svg +0 -1
  462. package/dist/mozaic-angular/assets/moz-icons/Device_Laptop_64px.svg +0 -1
  463. package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_24px.svg +0 -1
  464. package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_32px.svg +0 -1
  465. package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_48px.svg +0 -1
  466. package/dist/mozaic-angular/assets/moz-icons/Device_Mobile_64px.svg +0 -1
  467. package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_24px.svg +0 -1
  468. package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_32px.svg +0 -1
  469. package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_48px.svg +0 -1
  470. package/dist/mozaic-angular/assets/moz-icons/Device_Tablet_64px.svg +0 -1
  471. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -1
  472. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -1
  473. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -1
  474. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -1
  475. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -1
  476. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -1
  477. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -1
  478. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -1
  479. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -1
  480. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -1
  481. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -1
  482. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -1
  483. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -1
  484. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -1
  485. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -1
  486. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -1
  487. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -1
  488. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -1
  489. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -1
  490. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -1
  491. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -1
  492. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -1
  493. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -1
  494. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -1
  495. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -1
  496. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -1
  497. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -1
  498. package/dist/mozaic-angular/assets/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -1
  499. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -1
  500. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -1
  501. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -1
  502. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -1
  503. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -1
  504. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -1
  505. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -1
  506. package/dist/mozaic-angular/assets/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -1
  507. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -1
  508. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -1
  509. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -1
  510. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -1
  511. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -1
  512. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -1
  513. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -1
  514. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -1
  515. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -1
  516. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -1
  517. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -1
  518. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -1
  519. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -1
  520. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -1
  521. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -1
  522. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -1
  523. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -1
  524. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -1
  525. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -1
  526. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -1
  527. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -1
  528. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -1
  529. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -1
  530. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -1
  531. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -1
  532. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -1
  533. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -1
  534. package/dist/mozaic-angular/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -1
  535. package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -1
  536. package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -1
  537. package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -1
  538. package/dist/mozaic-angular/assets/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -1
  539. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_24px.svg +0 -1
  540. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_32px.svg +0 -1
  541. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_48px.svg +0 -1
  542. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Brand_LM_64px.svg +0 -1
  543. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -1
  544. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -1
  545. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -1
  546. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -1
  547. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -1
  548. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -1
  549. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -1
  550. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -1
  551. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -1
  552. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -1
  553. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -1
  554. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -1
  555. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -1
  556. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -1
  557. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -1
  558. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -1
  559. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -1
  560. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -1
  561. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -1
  562. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -1
  563. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -1
  564. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -1
  565. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -1
  566. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -1
  567. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -1
  568. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -1
  569. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -1
  570. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -1
  571. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -1
  572. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -1
  573. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -1
  574. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -1
  575. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -1
  576. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -1
  577. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -1
  578. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -1
  579. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -1
  580. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -1
  581. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -1
  582. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -1
  583. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_24px.svg +0 -1
  584. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_32px.svg +0 -1
  585. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_48px.svg +0 -1
  586. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--4x_64px.svg +0 -1
  587. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_24px.svg +0 -1
  588. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_32px.svg +0 -1
  589. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_48px.svg +0 -1
  590. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_Oney_64px.svg +0 -1
  591. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -1
  592. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -1
  593. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -1
  594. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -1
  595. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -1
  596. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -1
  597. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -1
  598. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -1
  599. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -1
  600. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -1
  601. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -1
  602. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -1
  603. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_24px.svg +0 -1
  604. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_32px.svg +0 -1
  605. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_48px.svg +0 -1
  606. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney--4x_64px.svg +0 -1
  607. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_24px.svg +0 -1
  608. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_32px.svg +0 -1
  609. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_48px.svg +0 -1
  610. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_Oney_64px.svg +0 -1
  611. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -1
  612. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -1
  613. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -1
  614. package/dist/mozaic-angular/assets/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -1
  615. package/dist/mozaic-angular/assets/moz-icons/Media_API_24px.svg +0 -1
  616. package/dist/mozaic-angular/assets/moz-icons/Media_API_32px.svg +0 -1
  617. package/dist/mozaic-angular/assets/moz-icons/Media_API_48px.svg +0 -1
  618. package/dist/mozaic-angular/assets/moz-icons/Media_API_64px.svg +0 -1
  619. package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_24px.svg +0 -1
  620. package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_32px.svg +0 -1
  621. package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_48px.svg +0 -1
  622. package/dist/mozaic-angular/assets/moz-icons/Media_BookStore_64px.svg +0 -1
  623. package/dist/mozaic-angular/assets/moz-icons/Media_Camera_24px.svg +0 -1
  624. package/dist/mozaic-angular/assets/moz-icons/Media_Camera_32px.svg +0 -1
  625. package/dist/mozaic-angular/assets/moz-icons/Media_Camera_48px.svg +0 -1
  626. package/dist/mozaic-angular/assets/moz-icons/Media_Camera_64px.svg +0 -1
  627. package/dist/mozaic-angular/assets/moz-icons/Media_Code_24px.svg +0 -1
  628. package/dist/mozaic-angular/assets/moz-icons/Media_Code_32px.svg +0 -1
  629. package/dist/mozaic-angular/assets/moz-icons/Media_Code_48px.svg +0 -1
  630. package/dist/mozaic-angular/assets/moz-icons/Media_Code_64px.svg +0 -1
  631. package/dist/mozaic-angular/assets/moz-icons/Media_Document_24px.svg +0 -1
  632. package/dist/mozaic-angular/assets/moz-icons/Media_Document_32px.svg +0 -1
  633. package/dist/mozaic-angular/assets/moz-icons/Media_Document_48px.svg +0 -1
  634. package/dist/mozaic-angular/assets/moz-icons/Media_Document_64px.svg +0 -1
  635. package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_24px.svg +0 -1
  636. package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_32px.svg +0 -1
  637. package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_48px.svg +0 -1
  638. package/dist/mozaic-angular/assets/moz-icons/Media_Download_App_64px.svg +0 -1
  639. package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_24px.svg +0 -1
  640. package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_32px.svg +0 -1
  641. package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_48px.svg +0 -1
  642. package/dist/mozaic-angular/assets/moz-icons/Media_Download_Web_64px.svg +0 -1
  643. package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_16px.svg +0 -1
  644. package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_24px.svg +0 -1
  645. package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_32px.svg +0 -1
  646. package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_48px.svg +0 -1
  647. package/dist/mozaic-angular/assets/moz-icons/Media_FullScreen_64px.svg +0 -1
  648. package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_24px.svg +0 -1
  649. package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_32px.svg +0 -1
  650. package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_48px.svg +0 -1
  651. package/dist/mozaic-angular/assets/moz-icons/Media_Gauge_64px.svg +0 -1
  652. package/dist/mozaic-angular/assets/moz-icons/Media_Group_24px.svg +0 -1
  653. package/dist/mozaic-angular/assets/moz-icons/Media_Group_32px.svg +0 -1
  654. package/dist/mozaic-angular/assets/moz-icons/Media_Group_48px.svg +0 -1
  655. package/dist/mozaic-angular/assets/moz-icons/Media_Group_64px.svg +0 -1
  656. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_24px.svg +0 -1
  657. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_32px.svg +0 -1
  658. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_48px.svg +0 -1
  659. package/dist/mozaic-angular/assets/moz-icons/Media_Image-alt_64px.svg +0 -1
  660. package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_24px.svg +0 -1
  661. package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_32px.svg +0 -1
  662. package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_48px.svg +0 -1
  663. package/dist/mozaic-angular/assets/moz-icons/Media_NoPicture_64px.svg +0 -1
  664. package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_24px.svg +0 -1
  665. package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_32px.svg +0 -1
  666. package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_48px.svg +0 -1
  667. package/dist/mozaic-angular/assets/moz-icons/Media_Pdf_64px.svg +0 -1
  668. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_24px.svg +0 -1
  669. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_32px.svg +0 -1
  670. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_48px.svg +0 -1
  671. package/dist/mozaic-angular/assets/moz-icons/Media_Picker_64px.svg +0 -1
  672. package/dist/mozaic-angular/assets/moz-icons/Media_Play_24px.svg +0 -1
  673. package/dist/mozaic-angular/assets/moz-icons/Media_Play_32px.svg +0 -1
  674. package/dist/mozaic-angular/assets/moz-icons/Media_Play_48px.svg +0 -1
  675. package/dist/mozaic-angular/assets/moz-icons/Media_Play_64px.svg +0 -1
  676. package/dist/mozaic-angular/assets/moz-icons/Media_Player_24px.svg +0 -1
  677. package/dist/mozaic-angular/assets/moz-icons/Media_Player_32px.svg +0 -1
  678. package/dist/mozaic-angular/assets/moz-icons/Media_Player_48px.svg +0 -1
  679. package/dist/mozaic-angular/assets/moz-icons/Media_Player_64px.svg +0 -1
  680. package/dist/mozaic-angular/assets/moz-icons/Media_Player_96px.svg +0 -1
  681. package/dist/mozaic-angular/assets/moz-icons/Media_Policies_24px.svg +0 -1
  682. package/dist/mozaic-angular/assets/moz-icons/Media_Policies_32px.svg +0 -1
  683. package/dist/mozaic-angular/assets/moz-icons/Media_Policies_48px.svg +0 -1
  684. package/dist/mozaic-angular/assets/moz-icons/Media_Policies_64px.svg +0 -1
  685. package/dist/mozaic-angular/assets/moz-icons/Media_Print_24px.svg +0 -1
  686. package/dist/mozaic-angular/assets/moz-icons/Media_Print_32px.svg +0 -1
  687. package/dist/mozaic-angular/assets/moz-icons/Media_Print_48px.svg +0 -1
  688. package/dist/mozaic-angular/assets/moz-icons/Media_Print_64px.svg +0 -1
  689. package/dist/mozaic-angular/assets/moz-icons/Media_Project_24px.svg +0 -1
  690. package/dist/mozaic-angular/assets/moz-icons/Media_Project_32px.svg +0 -1
  691. package/dist/mozaic-angular/assets/moz-icons/Media_Project_48px.svg +0 -1
  692. package/dist/mozaic-angular/assets/moz-icons/Media_Project_64px.svg +0 -1
  693. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_24px.svg +0 -1
  694. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_32px.svg +0 -1
  695. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_48px.svg +0 -1
  696. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin-off_64px.svg +0 -1
  697. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_32px.svg +0 -1
  698. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_48px.svg +0 -1
  699. package/dist/mozaic-angular/assets/moz-icons/Media_Push-pin_64px.svg +0 -1
  700. package/dist/mozaic-angular/assets/moz-icons/Media_Read_24px.svg +0 -1
  701. package/dist/mozaic-angular/assets/moz-icons/Media_Read_32px.svg +0 -1
  702. package/dist/mozaic-angular/assets/moz-icons/Media_Read_48px.svg +0 -1
  703. package/dist/mozaic-angular/assets/moz-icons/Media_Read_64px.svg +0 -1
  704. package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_16px.svg +0 -1
  705. package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_24px.svg +0 -1
  706. package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_32px.svg +0 -1
  707. package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_48px.svg +0 -1
  708. package/dist/mozaic-angular/assets/moz-icons/Media_ReduceScreen_64px.svg +0 -1
  709. package/dist/mozaic-angular/assets/moz-icons/Media_Release_24px.svg +0 -1
  710. package/dist/mozaic-angular/assets/moz-icons/Media_Release_32px.svg +0 -1
  711. package/dist/mozaic-angular/assets/moz-icons/Media_Release_48px.svg +0 -1
  712. package/dist/mozaic-angular/assets/moz-icons/Media_Release_64px.svg +0 -1
  713. package/dist/mozaic-angular/assets/moz-icons/Media_Server_24px.svg +0 -1
  714. package/dist/mozaic-angular/assets/moz-icons/Media_Server_32px.svg +0 -1
  715. package/dist/mozaic-angular/assets/moz-icons/Media_Server_48px.svg +0 -1
  716. package/dist/mozaic-angular/assets/moz-icons/Media_Server_64px.svg +0 -1
  717. package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_24px.svg +0 -1
  718. package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_32px.svg +0 -1
  719. package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_48px.svg +0 -1
  720. package/dist/mozaic-angular/assets/moz-icons/Media_Slideshow_64px.svg +0 -1
  721. package/dist/mozaic-angular/assets/moz-icons/Media_Sound_24px.svg +0 -1
  722. package/dist/mozaic-angular/assets/moz-icons/Media_Sound_32px.svg +0 -1
  723. package/dist/mozaic-angular/assets/moz-icons/Media_Sound_48px.svg +0 -1
  724. package/dist/mozaic-angular/assets/moz-icons/Media_Sound_64px.svg +0 -1
  725. package/dist/mozaic-angular/assets/moz-icons/Media_Stop_24px.svg +0 -1
  726. package/dist/mozaic-angular/assets/moz-icons/Media_Stop_32px.svg +0 -1
  727. package/dist/mozaic-angular/assets/moz-icons/Media_Stop_48px.svg +0 -1
  728. package/dist/mozaic-angular/assets/moz-icons/Media_Stop_64px.svg +0 -1
  729. package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_24px.svg +0 -1
  730. package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_32px.svg +0 -1
  731. package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_48px.svg +0 -1
  732. package/dist/mozaic-angular/assets/moz-icons/Media_TimeRead_64px.svg +0 -1
  733. package/dist/mozaic-angular/assets/moz-icons/Media_Upload_24px.svg +0 -1
  734. package/dist/mozaic-angular/assets/moz-icons/Media_Upload_32px.svg +0 -1
  735. package/dist/mozaic-angular/assets/moz-icons/Media_Upload_48px.svg +0 -1
  736. package/dist/mozaic-angular/assets/moz-icons/Media_Upload_64px.svg +0 -1
  737. package/dist/mozaic-angular/assets/moz-icons/Media_View360_24px.svg +0 -1
  738. package/dist/mozaic-angular/assets/moz-icons/Media_View360_32px.svg +0 -1
  739. package/dist/mozaic-angular/assets/moz-icons/Media_View360_48px.svg +0 -1
  740. package/dist/mozaic-angular/assets/moz-icons/Media_View360_64px.svg +0 -1
  741. package/dist/mozaic-angular/assets/moz-icons/Media_View360_96px.svg +0 -1
  742. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -1
  743. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -1
  744. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -1
  745. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -1
  746. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -1
  747. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -1
  748. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -1
  749. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -1
  750. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -1
  751. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -1
  752. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -1
  753. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -1
  754. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -1
  755. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -1
  756. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -1
  757. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -1
  758. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -1
  759. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -1
  760. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -1
  761. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -1
  762. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -1
  763. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -1
  764. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -1
  765. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -1
  766. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -1
  767. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -1
  768. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -1
  769. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -1
  770. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -1
  771. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -1
  772. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -1
  773. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -1
  774. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -1
  775. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -1
  776. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -1
  777. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -1
  778. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -1
  779. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -1
  780. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -1
  781. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -1
  782. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_16px.svg +0 -1
  783. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_24px.svg +0 -1
  784. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_32px.svg +0 -1
  785. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_48px.svg +0 -1
  786. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Back_64px.svg +0 -1
  787. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -1
  788. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -1
  789. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -1
  790. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -1
  791. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -1
  792. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -1
  793. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -1
  794. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -1
  795. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -1
  796. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -1
  797. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_16px.svg +0 -1
  798. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_24px.svg +0 -1
  799. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_32px.svg +0 -1
  800. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_48px.svg +0 -1
  801. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Down_64px.svg +0 -1
  802. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_16px.svg +0 -1
  803. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_24px.svg +0 -1
  804. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_32px.svg +0 -1
  805. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_48px.svg +0 -1
  806. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Next_64px.svg +0 -1
  807. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_16px.svg +0 -1
  808. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_24px.svg +0 -1
  809. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_32px.svg +0 -1
  810. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_48px.svg +0 -1
  811. package/dist/mozaic-angular/assets/moz-icons/Navigation_Arrow_Up_64px.svg +0 -1
  812. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -1
  813. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -1
  814. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -1
  815. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -1
  816. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -1
  817. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -1
  818. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -1
  819. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -1
  820. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -1
  821. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -1
  822. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -1
  823. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -1
  824. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_16px.svg +0 -1
  825. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_24px.svg +0 -1
  826. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_32px.svg +0 -1
  827. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_48px.svg +0 -1
  828. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Cross_64px.svg +0 -1
  829. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_16px.svg +0 -1
  830. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_24px.svg +0 -1
  831. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_32px.svg +0 -1
  832. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_48px.svg +0 -1
  833. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Less_64px.svg +0 -1
  834. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_16px.svg +0 -1
  835. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_24px.svg +0 -1
  836. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_32px.svg +0 -1
  837. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_48px.svg +0 -1
  838. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_More_64px.svg +0 -1
  839. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -1
  840. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -1
  841. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -1
  842. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -1
  843. package/dist/mozaic-angular/assets/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -1
  844. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_24px.svg +0 -1
  845. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_32px.svg +0 -1
  846. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_48px.svg +0 -1
  847. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Blink_64px.svg +0 -1
  848. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_24px.svg +0 -1
  849. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_32px.svg +0 -1
  850. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_48px.svg +0 -1
  851. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Calendar_64px.svg +0 -1
  852. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_24px.svg +0 -1
  853. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_32px.svg +0 -1
  854. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_48px.svg +0 -1
  855. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Connect_64px.svg +0 -1
  856. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -1
  857. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -1
  858. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -1
  859. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -1
  860. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -1
  861. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -1
  862. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -1
  863. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -1
  864. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -1
  865. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -1
  866. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -1
  867. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -1
  868. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -1
  869. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -1
  870. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -1
  871. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -1
  872. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -1
  873. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -1
  874. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -1
  875. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -1
  876. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -1
  877. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -1
  878. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -1
  879. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -1
  880. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -1
  881. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -1
  882. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -1
  883. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -1
  884. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -1
  885. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -1
  886. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -1
  887. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -1
  888. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -1
  889. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -1
  890. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -1
  891. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -1
  892. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -1
  893. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -1
  894. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -1
  895. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -1
  896. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -1
  897. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_24px.svg +0 -1
  898. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_32px.svg +0 -1
  899. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_48px.svg +0 -1
  900. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Filter_64px.svg +0 -1
  901. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_24px.svg +0 -1
  902. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_32px.svg +0 -1
  903. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_48px.svg +0 -1
  904. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Home_64px.svg +0 -1
  905. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_24px.svg +0 -1
  906. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_32px.svg +0 -1
  907. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_48px.svg +0 -1
  908. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_LogOut_64px.svg +0 -1
  909. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_24px.svg +0 -1
  910. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_32px.svg +0 -1
  911. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_48px.svg +0 -1
  912. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Menu_64px.svg +0 -1
  913. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -1
  914. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -1
  915. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -1
  916. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -1
  917. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_24px.svg +0 -1
  918. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_32px.svg +0 -1
  919. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_48px.svg +0 -1
  920. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Options_64px.svg +0 -1
  921. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_24px.svg +0 -1
  922. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_32px.svg +0 -1
  923. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_48px.svg +0 -1
  924. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Other_64px.svg +0 -1
  925. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -1
  926. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -1
  927. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -1
  928. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -1
  929. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_24px.svg +0 -1
  930. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_32px.svg +0 -1
  931. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_48px.svg +0 -1
  932. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Refresh_64px.svg +0 -1
  933. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -1
  934. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -1
  935. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -1
  936. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -1
  937. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_24px.svg +0 -1
  938. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_32px.svg +0 -1
  939. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_48px.svg +0 -1
  940. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchList_64px.svg +0 -1
  941. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -1
  942. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -1
  943. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -1
  944. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -1
  945. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_24px.svg +0 -1
  946. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_32px.svg +0 -1
  947. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_48px.svg +0 -1
  948. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Search_64px.svg +0 -1
  949. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_24px.svg +0 -1
  950. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_32px.svg +0 -1
  951. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_48px.svg +0 -1
  952. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_Setting_64px.svg +0 -1
  953. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_24px.svg +0 -1
  954. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_32px.svg +0 -1
  955. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_48px.svg +0 -1
  956. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_View_64px.svg +0 -1
  957. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -1
  958. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -1
  959. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -1
  960. package/dist/mozaic-angular/assets/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -1
  961. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_16px.svg +0 -1
  962. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_24px.svg +0 -1
  963. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_32px.svg +0 -1
  964. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_48px.svg +0 -1
  965. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Available_64px.svg +0 -1
  966. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_24px.svg +0 -1
  967. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_32px.svg +0 -1
  968. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_48px.svg +0 -1
  969. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Bell_64px.svg +0 -1
  970. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -1
  971. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -1
  972. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -1
  973. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -1
  974. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_24px.svg +0 -1
  975. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_32px.svg +0 -1
  976. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_48px.svg +0 -1
  977. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Information_64px.svg +0 -1
  978. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_24px.svg +0 -1
  979. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_32px.svg +0 -1
  980. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_48px.svg +0 -1
  981. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Question_64px.svg +0 -1
  982. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_24px.svg +0 -1
  983. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_32px.svg +0 -1
  984. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_48px.svg +0 -1
  985. package/dist/mozaic-angular/assets/moz-icons/Navigation_Notification_Warning_64px.svg +0 -1
  986. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_24px.svg +0 -1
  987. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_32px.svg +0 -1
  988. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_48px.svg +0 -1
  989. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Copy_64px.svg +0 -1
  990. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_24px.svg +0 -1
  991. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_32px.svg +0 -1
  992. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_48px.svg +0 -1
  993. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Edit_64px.svg +0 -1
  994. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -1
  995. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -1
  996. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -1
  997. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -1
  998. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -1
  999. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -1
  1000. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -1
  1001. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -1
  1002. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -1
  1003. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -1
  1004. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_16px.svg +0 -1
  1005. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_24px.svg +0 -1
  1006. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_32px.svg +0 -1
  1007. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_48px.svg +0 -1
  1008. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Lock_64px.svg +0 -1
  1009. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_24px.svg +0 -1
  1010. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_32px.svg +0 -1
  1011. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_48px.svg +0 -1
  1012. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Send_64px.svg +0 -1
  1013. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -1
  1014. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -1
  1015. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -1
  1016. package/dist/mozaic-angular/assets/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -1
  1017. package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_24px.svg +0 -1
  1018. package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_32px.svg +0 -1
  1019. package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_48px.svg +0 -1
  1020. package/dist/mozaic-angular/assets/moz-icons/Navigation_Split_64px.svg +0 -1
  1021. package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_24px.svg +0 -1
  1022. package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_32px.svg +0 -1
  1023. package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_48px.svg +0 -1
  1024. package/dist/mozaic-angular/assets/moz-icons/Payment_Bill_64px.svg +0 -1
  1025. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -1
  1026. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -1
  1027. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -1
  1028. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -1
  1029. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -1
  1030. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -1
  1031. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -1
  1032. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -1
  1033. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -1
  1034. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -1
  1035. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -1
  1036. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -1
  1037. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -1
  1038. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -1
  1039. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -1
  1040. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -1
  1041. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -1
  1042. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -1
  1043. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -1
  1044. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -1
  1045. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -1
  1046. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -1
  1047. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -1
  1048. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -1
  1049. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -1
  1050. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -1
  1051. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -1
  1052. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -1
  1053. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -1
  1054. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -1
  1055. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -1
  1056. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -1
  1057. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -1
  1058. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -1
  1059. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -1
  1060. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -1
  1061. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -1
  1062. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -1
  1063. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -1
  1064. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -1
  1065. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -1
  1066. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -1
  1067. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -1
  1068. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -1
  1069. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -1
  1070. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -1
  1071. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -1
  1072. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -1
  1073. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -1
  1074. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -1
  1075. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -1
  1076. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -1
  1077. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -1
  1078. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -1
  1079. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -1
  1080. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -1
  1081. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -1
  1082. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -1
  1083. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -1
  1084. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -1
  1085. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -1
  1086. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -1
  1087. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -1
  1088. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -1
  1089. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -1
  1090. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -1
  1091. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -1
  1092. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -1
  1093. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -1
  1094. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -1
  1095. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -1
  1096. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -1
  1097. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -1
  1098. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -1
  1099. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -1
  1100. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -1
  1101. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -1
  1102. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -1
  1103. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -1
  1104. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -1
  1105. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -1
  1106. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -1
  1107. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -1
  1108. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -1
  1109. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -1
  1110. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -1
  1111. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -1
  1112. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -1
  1113. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -1
  1114. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -1
  1115. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -1
  1116. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -1
  1117. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -1
  1118. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -1
  1119. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -1
  1120. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -1
  1121. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -1
  1122. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -1
  1123. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -1
  1124. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -1
  1125. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -1
  1126. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -1
  1127. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -1
  1128. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -1
  1129. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -1
  1130. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -1
  1131. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -1
  1132. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -1
  1133. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -1
  1134. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -1
  1135. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -1
  1136. package/dist/mozaic-angular/assets/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -1
  1137. package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_24px.svg +0 -1
  1138. package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_32px.svg +0 -1
  1139. package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_48px.svg +0 -1
  1140. package/dist/mozaic-angular/assets/moz-icons/Payment_DetailsOrder_64px.svg +0 -1
  1141. package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_16px.svg +0 -1
  1142. package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_24px.svg +0 -1
  1143. package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_32px.svg +0 -1
  1144. package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_48px.svg +0 -1
  1145. package/dist/mozaic-angular/assets/moz-icons/Payment_Euro_64px.svg +0 -1
  1146. package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_24px.svg +0 -1
  1147. package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_32px.svg +0 -1
  1148. package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_48px.svg +0 -1
  1149. package/dist/mozaic-angular/assets/moz-icons/Payment_Receipt_64px.svg +0 -1
  1150. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_24px.svg +0 -1
  1151. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_32px.svg +0 -1
  1152. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_48px.svg +0 -1
  1153. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment1_64px.svg +0 -1
  1154. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_24px.svg +0 -1
  1155. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_32px.svg +0 -1
  1156. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_48px.svg +0 -1
  1157. package/dist/mozaic-angular/assets/moz-icons/Payment_SafePayment2_64px.svg +0 -1
  1158. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_24px.svg +0 -1
  1159. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_32px.svg +0 -1
  1160. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_48px.svg +0 -1
  1161. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Quantity_64px.svg +0 -1
  1162. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_24px.svg +0 -1
  1163. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_32px.svg +0 -1
  1164. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_48px.svg +0 -1
  1165. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Size_64px.svg +0 -1
  1166. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_24px.svg +0 -1
  1167. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_32px.svg +0 -1
  1168. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_48px.svg +0 -1
  1169. package/dist/mozaic-angular/assets/moz-icons/Product_Aspect_Weight_64px.svg +0 -1
  1170. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_24px.svg +0 -1
  1171. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_32px.svg +0 -1
  1172. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_48px.svg +0 -1
  1173. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Add_64px.svg +0 -1
  1174. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_24px.svg +0 -1
  1175. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_32px.svg +0 -1
  1176. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_48px.svg +0 -1
  1177. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Handbag_64px.svg +0 -1
  1178. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_24px.svg +0 -1
  1179. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_32px.svg +0 -1
  1180. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_48px.svg +0 -1
  1181. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Multi_64px.svg +0 -1
  1182. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_24px.svg +0 -1
  1183. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_32px.svg +0 -1
  1184. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_48px.svg +0 -1
  1185. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Save_64px.svg +0 -1
  1186. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_24px.svg +0 -1
  1187. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_32px.svg +0 -1
  1188. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_48px.svg +0 -1
  1189. package/dist/mozaic-angular/assets/moz-icons/Product_Basket_Standard_64px.svg +0 -1
  1190. package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_24px.svg +0 -1
  1191. package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_32px.svg +0 -1
  1192. package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_48px.svg +0 -1
  1193. package/dist/mozaic-angular/assets/moz-icons/Product_List_Add_64px.svg +0 -1
  1194. package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_24px.svg +0 -1
  1195. package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_32px.svg +0 -1
  1196. package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_48px.svg +0 -1
  1197. package/dist/mozaic-angular/assets/moz-icons/Product_List_Standard_64px.svg +0 -1
  1198. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_24px.svg +0 -1
  1199. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_32px.svg +0 -1
  1200. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_48px.svg +0 -1
  1201. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Certification_64px.svg +0 -1
  1202. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -1
  1203. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -1
  1204. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -1
  1205. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -1
  1206. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_24px.svg +0 -1
  1207. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_32px.svg +0 -1
  1208. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_48px.svg +0 -1
  1209. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Destocking_64px.svg +0 -1
  1210. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -1
  1211. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -1
  1212. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -1
  1213. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -1
  1214. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -1
  1215. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -1
  1216. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -1
  1217. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -1
  1218. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_24px.svg +0 -1
  1219. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_32px.svg +0 -1
  1220. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_48px.svg +0 -1
  1221. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Funding_64px.svg +0 -1
  1222. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -1
  1223. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -1
  1224. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -1
  1225. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -1
  1226. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -1
  1227. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -1
  1228. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -1
  1229. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -1
  1230. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_24px.svg +0 -1
  1231. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_32px.svg +0 -1
  1232. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_48px.svg +0 -1
  1233. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Modular_64px.svg +0 -1
  1234. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -1
  1235. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -1
  1236. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -1
  1237. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -1
  1238. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -1
  1239. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -1
  1240. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -1
  1241. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -1
  1242. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_24px.svg +0 -1
  1243. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_32px.svg +0 -1
  1244. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_48px.svg +0 -1
  1245. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Scan_64px.svg +0 -1
  1246. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_24px.svg +0 -1
  1247. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_32px.svg +0 -1
  1248. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_48px.svg +0 -1
  1249. package/dist/mozaic-angular/assets/moz-icons/Product_Promise_Warranty_64px.svg +0 -1
  1250. package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_24px.svg +0 -1
  1251. package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_32px.svg +0 -1
  1252. package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_48px.svg +0 -1
  1253. package/dist/mozaic-angular/assets/moz-icons/Project_DescribeProject_64px.svg +0 -1
  1254. package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_24px.svg +0 -1
  1255. package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_32px.svg +0 -1
  1256. package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_48px.svg +0 -1
  1257. package/dist/mozaic-angular/assets/moz-icons/Project_Inspiration_64px.svg +0 -1
  1258. package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_24px.svg +0 -1
  1259. package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_32px.svg +0 -1
  1260. package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_48px.svg +0 -1
  1261. package/dist/mozaic-angular/assets/moz-icons/Project_MakeProject_64px.svg +0 -1
  1262. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -1
  1263. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -1
  1264. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -1
  1265. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -1
  1266. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -1
  1267. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -1
  1268. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -1
  1269. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -1
  1270. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_24px.svg +0 -1
  1271. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_32px.svg +0 -1
  1272. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_48px.svg +0 -1
  1273. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Payback_64px.svg +0 -1
  1274. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -1
  1275. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -1
  1276. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -1
  1277. package/dist/mozaic-angular/assets/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -1
  1278. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_24px.svg +0 -1
  1279. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_32px.svg +0 -1
  1280. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_48px.svg +0 -1
  1281. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CopyKey_64px.svg +0 -1
  1282. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_24px.svg +0 -1
  1283. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_32px.svg +0 -1
  1284. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_48px.svg +0 -1
  1285. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Course_64px.svg +0 -1
  1286. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -1
  1287. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -1
  1288. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -1
  1289. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -1
  1290. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_24px.svg +0 -1
  1291. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_32px.svg +0 -1
  1292. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_48px.svg +0 -1
  1293. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sample_64px.svg +0 -1
  1294. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_24px.svg +0 -1
  1295. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_32px.svg +0 -1
  1296. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_48px.svg +0 -1
  1297. package/dist/mozaic-angular/assets/moz-icons/Service_Custom_Sharpening_64px.svg +0 -1
  1298. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -1
  1299. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -1
  1300. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -1
  1301. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -1
  1302. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -1
  1303. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -1
  1304. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -1
  1305. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -1
  1306. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -1
  1307. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -1
  1308. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -1
  1309. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -1
  1310. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -1
  1311. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -1
  1312. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -1
  1313. package/dist/mozaic-angular/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -1
  1314. package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_24px.svg +0 -1
  1315. package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_32px.svg +0 -1
  1316. package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_48px.svg +0 -1
  1317. package/dist/mozaic-angular/assets/moz-icons/Service_Pallet_64px.svg +0 -1
  1318. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -1
  1319. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -1
  1320. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -1
  1321. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -1
  1322. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -1
  1323. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -1
  1324. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -1
  1325. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -1
  1326. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -1
  1327. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -1
  1328. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -1
  1329. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -1
  1330. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -1
  1331. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -1
  1332. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -1
  1333. package/dist/mozaic-angular/assets/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -1
  1334. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -1
  1335. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -1
  1336. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -1
  1337. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -1
  1338. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -1
  1339. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -1
  1340. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -1
  1341. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -1
  1342. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -1
  1343. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -1
  1344. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -1
  1345. package/dist/mozaic-angular/assets/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -1
  1346. package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_24px.svg +0 -1
  1347. package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_32px.svg +0 -1
  1348. package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_48px.svg +0 -1
  1349. package/dist/mozaic-angular/assets/moz-icons/Service_Time_TimeDecline_64px.svg +0 -1
  1350. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_24px.svg +0 -1
  1351. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_32px.svg +0 -1
  1352. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_48px.svg +0 -1
  1353. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_3d_64px.svg +0 -1
  1354. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_24px.svg +0 -1
  1355. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_32px.svg +0 -1
  1356. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_48px.svg +0 -1
  1357. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Calculator_64px.svg +0 -1
  1358. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_24px.svg +0 -1
  1359. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_32px.svg +0 -1
  1360. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_48px.svg +0 -1
  1361. package/dist/mozaic-angular/assets/moz-icons/Service_Tools_Comparator_64px.svg +0 -1
  1362. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_24px.svg +0 -1
  1363. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_32px.svg +0 -1
  1364. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_48px.svg +0 -1
  1365. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Comment_64px.svg +0 -1
  1366. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_24px.svg +0 -1
  1367. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_32px.svg +0 -1
  1368. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_48px.svg +0 -1
  1369. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Community_64px.svg +0 -1
  1370. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_24px.svg +0 -1
  1371. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_32px.svg +0 -1
  1372. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_48px.svg +0 -1
  1373. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Question--Article_64px.svg +0 -1
  1374. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_24px.svg +0 -1
  1375. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_32px.svg +0 -1
  1376. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_48px.svg +0 -1
  1377. package/dist/mozaic-angular/assets/moz-icons/Social_Comment_Report_64px.svg +0 -1
  1378. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -1
  1379. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -1
  1380. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -1
  1381. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -1
  1382. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_24px.svg +0 -1
  1383. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_32px.svg +0 -1
  1384. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_48px.svg +0 -1
  1385. package/dist/mozaic-angular/assets/moz-icons/Social_Share_ShareIOS_64px.svg +0 -1
  1386. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -1
  1387. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -1
  1388. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -1
  1389. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -1
  1390. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -1
  1391. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -1
  1392. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -1
  1393. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -1
  1394. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -1
  1395. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -1
  1396. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -1
  1397. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -1
  1398. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -1
  1399. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -1
  1400. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -1
  1401. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -1
  1402. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -1
  1403. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -1
  1404. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -1
  1405. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -1
  1406. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -1
  1407. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -1
  1408. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -1
  1409. package/dist/mozaic-angular/assets/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -1
  1410. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_16px.svg +0 -1
  1411. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_24px.svg +0 -1
  1412. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_32px.svg +0 -1
  1413. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_48px.svg +0 -1
  1414. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Negative_64px.svg +0 -1
  1415. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_16px.svg +0 -1
  1416. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_24px.svg +0 -1
  1417. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_32px.svg +0 -1
  1418. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_48px.svg +0 -1
  1419. package/dist/mozaic-angular/assets/moz-icons/Social_View_Like--Positive_64px.svg +0 -1
  1420. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_16px.svg +0 -1
  1421. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_24px.svg +0 -1
  1422. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_32px.svg +0 -1
  1423. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_48px.svg +0 -1
  1424. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Empty_64px.svg +0 -1
  1425. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_16px.svg +0 -1
  1426. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_24px.svg +0 -1
  1427. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_32px.svg +0 -1
  1428. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_48px.svg +0 -1
  1429. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Full_64px.svg +0 -1
  1430. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_16px.svg +0 -1
  1431. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_24px.svg +0 -1
  1432. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_32px.svg +0 -1
  1433. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_48px.svg +0 -1
  1434. package/dist/mozaic-angular/assets/moz-icons/Social_View_Star--Half_64px.svg +0 -1
  1435. package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_24px.svg +0 -1
  1436. package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_32px.svg +0 -1
  1437. package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_48px.svg +0 -1
  1438. package/dist/mozaic-angular/assets/moz-icons/Social_View_TesterView_64px.svg +0 -1
  1439. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -1
  1440. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -1
  1441. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -1
  1442. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -1
  1443. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -1
  1444. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -1
  1445. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -1
  1446. package/dist/mozaic-angular/assets/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -1
  1447. package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_24px.svg +0 -1
  1448. package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_32px.svg +0 -1
  1449. package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_48px.svg +0 -1
  1450. package/dist/mozaic-angular/assets/moz-icons/Store_Itinerary_64px.svg +0 -1
  1451. package/dist/mozaic-angular/assets/moz-icons/Store_Locator_16px.svg +0 -1
  1452. package/dist/mozaic-angular/assets/moz-icons/Store_Locator_24px.svg +0 -1
  1453. package/dist/mozaic-angular/assets/moz-icons/Store_Locator_32px.svg +0 -1
  1454. package/dist/mozaic-angular/assets/moz-icons/Store_Locator_48px.svg +0 -1
  1455. package/dist/mozaic-angular/assets/moz-icons/Store_Locator_64px.svg +0 -1
  1456. package/dist/mozaic-angular/assets/moz-icons/Store_Logo_24px.svg +0 -1
  1457. package/dist/mozaic-angular/assets/moz-icons/Store_Logo_32px.svg +0 -1
  1458. package/dist/mozaic-angular/assets/moz-icons/Store_Logo_48px.svg +0 -1
  1459. package/dist/mozaic-angular/assets/moz-icons/Store_Logo_64px.svg +0 -1
  1460. package/dist/mozaic-angular/assets/moz-icons/Store_Map_24px.svg +0 -1
  1461. package/dist/mozaic-angular/assets/moz-icons/Store_Map_32px.svg +0 -1
  1462. package/dist/mozaic-angular/assets/moz-icons/Store_Map_48px.svg +0 -1
  1463. package/dist/mozaic-angular/assets/moz-icons/Store_Map_64px.svg +0 -1
  1464. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -1
  1465. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -1
  1466. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -1
  1467. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -1
  1468. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -1
  1469. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -1
  1470. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -1
  1471. package/dist/mozaic-angular/assets/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -1
  1472. package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_24px.svg +0 -1
  1473. package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_32px.svg +0 -1
  1474. package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_48px.svg +0 -1
  1475. package/dist/mozaic-angular/assets/moz-icons/Store_StoreLM_64px.svg +0 -1
  1476. package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_24px.svg +0 -1
  1477. package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_32px.svg +0 -1
  1478. package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_48px.svg +0 -1
  1479. package/dist/mozaic-angular/assets/moz-icons/Universe_Attic_64px.svg +0 -1
  1480. package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_24px.svg +0 -1
  1481. package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_32px.svg +0 -1
  1482. package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_48px.svg +0 -1
  1483. package/dist/mozaic-angular/assets/moz-icons/Universe_Bathroom_64px.svg +0 -1
  1484. package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_24px.svg +0 -1
  1485. package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_32px.svg +0 -1
  1486. package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_48px.svg +0 -1
  1487. package/dist/mozaic-angular/assets/moz-icons/Universe_Bedroom_64px.svg +0 -1
  1488. package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_24px.svg +0 -1
  1489. package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_32px.svg +0 -1
  1490. package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_48px.svg +0 -1
  1491. package/dist/mozaic-angular/assets/moz-icons/Universe_Carpentry_64px.svg +0 -1
  1492. package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_24px.svg +0 -1
  1493. package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_32px.svg +0 -1
  1494. package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_48px.svg +0 -1
  1495. package/dist/mozaic-angular/assets/moz-icons/Universe_ChristmasTree_64px.svg +0 -1
  1496. package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_24px.svg +0 -1
  1497. package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_32px.svg +0 -1
  1498. package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_48px.svg +0 -1
  1499. package/dist/mozaic-angular/assets/moz-icons/Universe_ConnectedHome_64px.svg +0 -1
  1500. package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_24px.svg +0 -1
  1501. package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_32px.svg +0 -1
  1502. package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_48px.svg +0 -1
  1503. package/dist/mozaic-angular/assets/moz-icons/Universe_Curtains_64px.svg +0 -1
  1504. package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_24px.svg +0 -1
  1505. package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_32px.svg +0 -1
  1506. package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_48px.svg +0 -1
  1507. package/dist/mozaic-angular/assets/moz-icons/Universe_Dressing_64px.svg +0 -1
  1508. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_24px.svg +0 -1
  1509. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_32px.svg +0 -1
  1510. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_48px.svg +0 -1
  1511. package/dist/mozaic-angular/assets/moz-icons/Universe_Drill-alt_64px.svg +0 -1
  1512. package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_24px.svg +0 -1
  1513. package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_32px.svg +0 -1
  1514. package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_48px.svg +0 -1
  1515. package/dist/mozaic-angular/assets/moz-icons/Universe_Electricity_64px.svg +0 -1
  1516. package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_24px.svg +0 -1
  1517. package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_32px.svg +0 -1
  1518. package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_48px.svg +0 -1
  1519. package/dist/mozaic-angular/assets/moz-icons/Universe_Enki_64px.svg +0 -1
  1520. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_24px.svg +0 -1
  1521. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_32px.svg +0 -1
  1522. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_48px.svg +0 -1
  1523. package/dist/mozaic-angular/assets/moz-icons/Universe_Floor_64px.svg +0 -1
  1524. package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_24px.svg +0 -1
  1525. package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_32px.svg +0 -1
  1526. package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_48px.svg +0 -1
  1527. package/dist/mozaic-angular/assets/moz-icons/Universe_Garage_64px.svg +0 -1
  1528. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_24px.svg +0 -1
  1529. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_32px.svg +0 -1
  1530. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_48px.svg +0 -1
  1531. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden1_64px.svg +0 -1
  1532. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_24px.svg +0 -1
  1533. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_32px.svg +0 -1
  1534. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_48px.svg +0 -1
  1535. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden2_64px.svg +0 -1
  1536. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_24px.svg +0 -1
  1537. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_32px.svg +0 -1
  1538. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_48px.svg +0 -1
  1539. package/dist/mozaic-angular/assets/moz-icons/Universe_Garden_64px.svg +0 -1
  1540. package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_24px.svg +0 -1
  1541. package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_32px.svg +0 -1
  1542. package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_48px.svg +0 -1
  1543. package/dist/mozaic-angular/assets/moz-icons/Universe_Glass_64px.svg +0 -1
  1544. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_24px.svg +0 -1
  1545. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_32px.svg +0 -1
  1546. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_48px.svg +0 -1
  1547. package/dist/mozaic-angular/assets/moz-icons/Universe_Hard-hat-alt_64px.svg +0 -1
  1548. package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_24px.svg +0 -1
  1549. package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_32px.svg +0 -1
  1550. package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_48px.svg +0 -1
  1551. package/dist/mozaic-angular/assets/moz-icons/Universe_HardwareStore_64px.svg +0 -1
  1552. package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_24px.svg +0 -1
  1553. package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_32px.svg +0 -1
  1554. package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_48px.svg +0 -1
  1555. package/dist/mozaic-angular/assets/moz-icons/Universe_Heater_64px.svg +0 -1
  1556. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_24px.svg +0 -1
  1557. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_32px.svg +0 -1
  1558. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_48px.svg +0 -1
  1559. package/dist/mozaic-angular/assets/moz-icons/Universe_Insulation-alt_64px.svg +0 -1
  1560. package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_24px.svg +0 -1
  1561. package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_32px.svg +0 -1
  1562. package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_48px.svg +0 -1
  1563. package/dist/mozaic-angular/assets/moz-icons/Universe_Kids_64px.svg +0 -1
  1564. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_24px.svg +0 -1
  1565. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_32px.svg +0 -1
  1566. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_48px.svg +0 -1
  1567. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen-alt_64px.svg +0 -1
  1568. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_24px.svg +0 -1
  1569. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_32px.svg +0 -1
  1570. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_48px.svg +0 -1
  1571. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen2_64px.svg +0 -1
  1572. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_24px.svg +0 -1
  1573. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_32px.svg +0 -1
  1574. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_48px.svg +0 -1
  1575. package/dist/mozaic-angular/assets/moz-icons/Universe_Kitchen_64px.svg +0 -1
  1576. package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_24px.svg +0 -1
  1577. package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_32px.svg +0 -1
  1578. package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_48px.svg +0 -1
  1579. package/dist/mozaic-angular/assets/moz-icons/Universe_Leak_64px.svg +0 -1
  1580. package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_24px.svg +0 -1
  1581. package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_32px.svg +0 -1
  1582. package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_48px.svg +0 -1
  1583. package/dist/mozaic-angular/assets/moz-icons/Universe_Lighting_64px.svg +0 -1
  1584. package/dist/mozaic-angular/assets/moz-icons/Universe_Living_24px.svg +0 -1
  1585. package/dist/mozaic-angular/assets/moz-icons/Universe_Living_32px.svg +0 -1
  1586. package/dist/mozaic-angular/assets/moz-icons/Universe_Living_48px.svg +0 -1
  1587. package/dist/mozaic-angular/assets/moz-icons/Universe_Living_64px.svg +0 -1
  1588. package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_24px.svg +0 -1
  1589. package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_32px.svg +0 -1
  1590. package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_48px.svg +0 -1
  1591. package/dist/mozaic-angular/assets/moz-icons/Universe_MakeIt_64px.svg +0 -1
  1592. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_24px.svg +0 -1
  1593. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_32px.svg +0 -1
  1594. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_48px.svg +0 -1
  1595. package/dist/mozaic-angular/assets/moz-icons/Universe_Masonry-alt_64px.svg +0 -1
  1596. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_24px.svg +0 -1
  1597. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_32px.svg +0 -1
  1598. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_48px.svg +0 -1
  1599. package/dist/mozaic-angular/assets/moz-icons/Universe_Paint_64px.svg +0 -1
  1600. package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_24px.svg +0 -1
  1601. package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_32px.svg +0 -1
  1602. package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_48px.svg +0 -1
  1603. package/dist/mozaic-angular/assets/moz-icons/Universe_Pool_64px.svg +0 -1
  1604. package/dist/mozaic-angular/assets/moz-icons/Universe_Security_24px.svg +0 -1
  1605. package/dist/mozaic-angular/assets/moz-icons/Universe_Security_32px.svg +0 -1
  1606. package/dist/mozaic-angular/assets/moz-icons/Universe_Security_48px.svg +0 -1
  1607. package/dist/mozaic-angular/assets/moz-icons/Universe_Security_64px.svg +0 -1
  1608. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_24px.svg +0 -1
  1609. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_32px.svg +0 -1
  1610. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_48px.svg +0 -1
  1611. package/dist/mozaic-angular/assets/moz-icons/Universe_Stairs_64px.svg +0 -1
  1612. package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_24px.svg +0 -1
  1613. package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_32px.svg +0 -1
  1614. package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_48px.svg +0 -1
  1615. package/dist/mozaic-angular/assets/moz-icons/Universe_Terrace_64px.svg +0 -1
  1616. package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_24px.svg +0 -1
  1617. package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_32px.svg +0 -1
  1618. package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_48px.svg +0 -1
  1619. package/dist/mozaic-angular/assets/moz-icons/Universe_Tool_64px.svg +0 -1
  1620. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_24px.svg +0 -1
  1621. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_32px.svg +0 -1
  1622. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_48px.svg +0 -1
  1623. package/dist/mozaic-angular/assets/moz-icons/Universe_Wallpaper_64px.svg +0 -1
  1624. package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_24px.svg +0 -1
  1625. package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_32px.svg +0 -1
  1626. package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_48px.svg +0 -1
  1627. package/dist/mozaic-angular/assets/moz-icons/Universe_WoodSaw_64px.svg +0 -1
  1628. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -1
  1629. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -1
  1630. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -1
  1631. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -1
  1632. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_24px.svg +0 -1
  1633. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_32px.svg +0 -1
  1634. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_48px.svg +0 -1
  1635. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Passion_64px.svg +0 -1
  1636. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_24px.svg +0 -1
  1637. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_32px.svg +0 -1
  1638. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_48px.svg +0 -1
  1639. package/dist/mozaic-angular/assets/moz-icons/User_Account_Customer--Pro_64px.svg +0 -1
  1640. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_24px.svg +0 -1
  1641. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_32px.svg +0 -1
  1642. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_48px.svg +0 -1
  1643. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Man_64px.svg +0 -1
  1644. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_24px.svg +0 -1
  1645. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_32px.svg +0 -1
  1646. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_48px.svg +0 -1
  1647. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--View_64px.svg +0 -1
  1648. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_24px.svg +0 -1
  1649. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_32px.svg +0 -1
  1650. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_48px.svg +0 -1
  1651. package/dist/mozaic-angular/assets/moz-icons/User_Account_Profile--Woman_64px.svg +0 -1
  1652. package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_24px.svg +0 -1
  1653. package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_32px.svg +0 -1
  1654. package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_48px.svg +0 -1
  1655. package/dist/mozaic-angular/assets/moz-icons/User_Card_Funding_64px.svg +0 -1
  1656. package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_24px.svg +0 -1
  1657. package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_32px.svg +0 -1
  1658. package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_48px.svg +0 -1
  1659. package/dist/mozaic-angular/assets/moz-icons/User_Card_Gift_64px.svg +0 -1
  1660. package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_24px.svg +0 -1
  1661. package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_32px.svg +0 -1
  1662. package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_48px.svg +0 -1
  1663. package/dist/mozaic-angular/assets/moz-icons/User_Card_IDCard_64px.svg +0 -1
  1664. package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -1
  1665. package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -1
  1666. package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -1
  1667. package/dist/mozaic-angular/assets/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -1
  1668. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_24px.svg +0 -1
  1669. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_32px.svg +0 -1
  1670. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_48px.svg +0 -1
  1671. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Mail_64px.svg +0 -1
  1672. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_24px.svg +0 -1
  1673. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_32px.svg +0 -1
  1674. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_48px.svg +0 -1
  1675. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Phone_64px.svg +0 -1
  1676. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_24px.svg +0 -1
  1677. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_32px.svg +0 -1
  1678. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_48px.svg +0 -1
  1679. package/dist/mozaic-angular/assets/moz-icons/User_Contact_Website_64px.svg +0 -1
  1680. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_24px.svg +0 -1
  1681. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_32px.svg +0 -1
  1682. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_48px.svg +0 -1
  1683. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Owner_64px.svg +0 -1
  1684. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_24px.svg +0 -1
  1685. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_32px.svg +0 -1
  1686. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_48px.svg +0 -1
  1687. package/dist/mozaic-angular/assets/moz-icons/User_Situation_Tenant_64px.svg +0 -1
  1688. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_24px.svg +0 -1
  1689. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_32px.svg +0 -1
  1690. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_48px.svg +0 -1
  1691. package/dist/mozaic-angular/assets/moz-icons/Various_A11y_64px.svg +0 -1
  1692. package/dist/mozaic-angular/assets/moz-icons/Various_Administration_24px.svg +0 -1
  1693. package/dist/mozaic-angular/assets/moz-icons/Various_Administration_32px.svg +0 -1
  1694. package/dist/mozaic-angular/assets/moz-icons/Various_Administration_48px.svg +0 -1
  1695. package/dist/mozaic-angular/assets/moz-icons/Various_Administration_64px.svg +0 -1
  1696. package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_24px.svg +0 -1
  1697. package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_32px.svg +0 -1
  1698. package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_48px.svg +0 -1
  1699. package/dist/mozaic-angular/assets/moz-icons/Various_Apartment_64px.svg +0 -1
  1700. package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_24px.svg +0 -1
  1701. package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_32px.svg +0 -1
  1702. package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_48px.svg +0 -1
  1703. package/dist/mozaic-angular/assets/moz-icons/Various_Balcony_64px.svg +0 -1
  1704. package/dist/mozaic-angular/assets/moz-icons/Various_Blower_24px.svg +0 -1
  1705. package/dist/mozaic-angular/assets/moz-icons/Various_Blower_32px.svg +0 -1
  1706. package/dist/mozaic-angular/assets/moz-icons/Various_Blower_48px.svg +0 -1
  1707. package/dist/mozaic-angular/assets/moz-icons/Various_Blower_64px.svg +0 -1
  1708. package/dist/mozaic-angular/assets/moz-icons/Various_Company_24px.svg +0 -1
  1709. package/dist/mozaic-angular/assets/moz-icons/Various_Company_32px.svg +0 -1
  1710. package/dist/mozaic-angular/assets/moz-icons/Various_Company_48px.svg +0 -1
  1711. package/dist/mozaic-angular/assets/moz-icons/Various_Company_64px.svg +0 -1
  1712. package/dist/mozaic-angular/assets/moz-icons/Various_Door_24px.svg +0 -1
  1713. package/dist/mozaic-angular/assets/moz-icons/Various_Door_32px.svg +0 -1
  1714. package/dist/mozaic-angular/assets/moz-icons/Various_Door_48px.svg +0 -1
  1715. package/dist/mozaic-angular/assets/moz-icons/Various_Door_64px.svg +0 -1
  1716. package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_24px.svg +0 -1
  1717. package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_32px.svg +0 -1
  1718. package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_48px.svg +0 -1
  1719. package/dist/mozaic-angular/assets/moz-icons/Various_EcoSaving_64px.svg +0 -1
  1720. package/dist/mozaic-angular/assets/moz-icons/Various_Heat_24px.svg +0 -1
  1721. package/dist/mozaic-angular/assets/moz-icons/Various_Heat_32px.svg +0 -1
  1722. package/dist/mozaic-angular/assets/moz-icons/Various_Heat_48px.svg +0 -1
  1723. package/dist/mozaic-angular/assets/moz-icons/Various_Heat_64px.svg +0 -1
  1724. package/dist/mozaic-angular/assets/moz-icons/Various_House_24px.svg +0 -1
  1725. package/dist/mozaic-angular/assets/moz-icons/Various_House_32px.svg +0 -1
  1726. package/dist/mozaic-angular/assets/moz-icons/Various_House_48px.svg +0 -1
  1727. package/dist/mozaic-angular/assets/moz-icons/Various_House_64px.svg +0 -1
  1728. package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_24px.svg +0 -1
  1729. package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_32px.svg +0 -1
  1730. package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_48px.svg +0 -1
  1731. package/dist/mozaic-angular/assets/moz-icons/Various_IncreaseValue_64px.svg +0 -1
  1732. package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_24px.svg +0 -1
  1733. package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_32px.svg +0 -1
  1734. package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_48px.svg +0 -1
  1735. package/dist/mozaic-angular/assets/moz-icons/Various_Insulation_64px.svg +0 -1
  1736. package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_24px.svg +0 -1
  1737. package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_32px.svg +0 -1
  1738. package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_48px.svg +0 -1
  1739. package/dist/mozaic-angular/assets/moz-icons/Various_LessonDIY_64px.svg +0 -1
  1740. package/dist/mozaic-angular/assets/moz-icons/Various_Level_24px.svg +0 -1
  1741. package/dist/mozaic-angular/assets/moz-icons/Various_Level_32px.svg +0 -1
  1742. package/dist/mozaic-angular/assets/moz-icons/Various_Level_48px.svg +0 -1
  1743. package/dist/mozaic-angular/assets/moz-icons/Various_Level_64px.svg +0 -1
  1744. package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_24px.svg +0 -1
  1745. package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_32px.svg +0 -1
  1746. package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_48px.svg +0 -1
  1747. package/dist/mozaic-angular/assets/moz-icons/Various_PaintCan_64px.svg +0 -1
  1748. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_24px.svg +0 -1
  1749. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_32px.svg +0 -1
  1750. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_48px.svg +0 -1
  1751. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerCompany_64px.svg +0 -1
  1752. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_24px.svg +0 -1
  1753. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_32px.svg +0 -1
  1754. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_48px.svg +0 -1
  1755. package/dist/mozaic-angular/assets/moz-icons/Various_PartnerWorker_64px.svg +0 -1
  1756. package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_24px.svg +0 -1
  1757. package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_32px.svg +0 -1
  1758. package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_48px.svg +0 -1
  1759. package/dist/mozaic-angular/assets/moz-icons/Various_Pipe_64px.svg +0 -1
  1760. package/dist/mozaic-angular/assets/moz-icons/Various_Premium_24px.svg +0 -1
  1761. package/dist/mozaic-angular/assets/moz-icons/Various_Premium_32px.svg +0 -1
  1762. package/dist/mozaic-angular/assets/moz-icons/Various_Premium_48px.svg +0 -1
  1763. package/dist/mozaic-angular/assets/moz-icons/Various_Premium_64px.svg +0 -1
  1764. package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_24px.svg +0 -1
  1765. package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_32px.svg +0 -1
  1766. package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_48px.svg +0 -1
  1767. package/dist/mozaic-angular/assets/moz-icons/Various_Shutter_64px.svg +0 -1
  1768. package/dist/mozaic-angular/assets/moz-icons/Various_Survey_24px.svg +0 -1
  1769. package/dist/mozaic-angular/assets/moz-icons/Various_Survey_32px.svg +0 -1
  1770. package/dist/mozaic-angular/assets/moz-icons/Various_Survey_48px.svg +0 -1
  1771. package/dist/mozaic-angular/assets/moz-icons/Various_Survey_64px.svg +0 -1
  1772. package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_24px.svg +0 -1
  1773. package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_32px.svg +0 -1
  1774. package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_48px.svg +0 -1
  1775. package/dist/mozaic-angular/assets/moz-icons/Various_Temperature_64px.svg +0 -1
  1776. package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_24px.svg +0 -1
  1777. package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_32px.svg +0 -1
  1778. package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_48px.svg +0 -1
  1779. package/dist/mozaic-angular/assets/moz-icons/Various_ThermalControl_64px.svg +0 -1
  1780. package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_24px.svg +0 -1
  1781. package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_32px.svg +0 -1
  1782. package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_48px.svg +0 -1
  1783. package/dist/mozaic-angular/assets/moz-icons/Various_ToolBox_64px.svg +0 -1
  1784. package/dist/mozaic-angular/assets/special-icons/checkbox-checked-disabled.svg +0 -3
  1785. package/dist/mozaic-angular/assets/special-icons/checkbox-checked.svg +0 -3
  1786. package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate-disabled.svg +0 -3
  1787. package/dist/mozaic-angular/assets/special-icons/checkbox-indeterminate.svg +0 -3
  1788. package/dist/mozaic-angular/assets/special-icons/invalid-cross.svg +0 -3
  1789. package/dist/mozaic-angular/assets/special-icons/layer-cross.svg +0 -3
  1790. package/dist/mozaic-angular/assets/special-icons/notification-danger-m.svg +0 -4
  1791. package/dist/mozaic-angular/assets/special-icons/notification-danger-s.svg +0 -4
  1792. package/dist/mozaic-angular/assets/special-icons/notification-information-m.svg +0 -5
  1793. package/dist/mozaic-angular/assets/special-icons/notification-information-s.svg +0 -5
  1794. package/dist/mozaic-angular/assets/special-icons/notification-success-m.svg +0 -4
  1795. package/dist/mozaic-angular/assets/special-icons/notification-success-s.svg +0 -4
  1796. package/dist/mozaic-angular/assets/special-icons/notification-warning-m.svg +0 -5
  1797. package/dist/mozaic-angular/assets/special-icons/notification-warning-s.svg +0 -5
  1798. package/dist/mozaic-angular/assets/special-icons/remove-tag.svg +0 -3
  1799. package/dist/mozaic-angular/assets/special-icons/toggle-checked-disabled.svg +0 -3
  1800. package/dist/mozaic-angular/assets/special-icons/toggle-checked.svg +0 -3
  1801. package/dist/mozaic-angular/assets/special-icons/toggle-cross-disabled.svg +0 -3
  1802. package/dist/mozaic-angular/assets/special-icons/toggle-cross.svg +0 -3
  1803. package/dist/mozaic-angular/assets/special-icons/tooltip-triangle.svg +0 -3
  1804. package/dist/mozaic-angular/assets/special-icons/valid-check-mark.svg +0 -11
  1805. package/dist/mozaic-angular/assets/tokens/adeo/android/colors.xml +0 -482
  1806. package/dist/mozaic-angular/assets/tokens/adeo/android/font_dimens.xml +0 -18
  1807. package/dist/mozaic-angular/assets/tokens/adeo/css/_variables.scss +0 -626
  1808. package/dist/mozaic-angular/assets/tokens/adeo/css/root.scss +0 -478
  1809. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.h +0 -490
  1810. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.m +0 -502
  1811. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionaryColor.swift +0 -485
  1812. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  1813. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  1814. package/dist/mozaic-angular/assets/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  1815. package/dist/mozaic-angular/assets/tokens/adeo/js/tokens.js +0 -574
  1816. package/dist/mozaic-angular/assets/tokens/adeo/js/tokensObject.js +0 -9637
  1817. package/dist/mozaic-angular/assets/tokens/adeo/scss/_tokens.scss +0 -1617
  1818. package/dist/mozaic-angular/common/global-events/global-events.module.d.ts +0 -6
  1819. package/dist/mozaic-angular/common/global-events/global-events.service.d.ts +0 -11
  1820. package/dist/mozaic-angular/common/global-events/public-api.d.ts +0 -2
  1821. package/dist/mozaic-angular/common/index.d.ts +0 -2
  1822. package/dist/mozaic-angular/common/utils/boolean-property.d.ts +0 -1
  1823. package/dist/mozaic-angular/common/utils/generate-id.d.ts +0 -1
  1824. package/dist/mozaic-angular/common/utils/get-random-number.d.ts +0 -1
  1825. package/dist/mozaic-angular/common/utils/index.d.ts +0 -4
  1826. package/dist/mozaic-angular/common/utils/overwrite-style.d.ts +0 -2
  1827. package/dist/mozaic-angular/common/utils/public-api.d.ts +0 -1
  1828. package/dist/mozaic-angular/components/badge/badge.component.d.ts +0 -8
  1829. package/dist/mozaic-angular/components/badge/badge.d.ts +0 -3
  1830. package/dist/mozaic-angular/components/badge/badge.module.d.ts +0 -8
  1831. package/dist/mozaic-angular/components/badge/index.d.ts +0 -2
  1832. package/dist/mozaic-angular/components/button/button.component.d.ts +0 -16
  1833. package/dist/mozaic-angular/components/button/button.d.ts +0 -7
  1834. package/dist/mozaic-angular/components/button/button.module.d.ts +0 -8
  1835. package/dist/mozaic-angular/components/button/index.d.ts +0 -2
  1836. package/dist/mozaic-angular/components/checkbox/checkbox.component.d.ts +0 -21
  1837. package/dist/mozaic-angular/components/checkbox/checkbox.module.d.ts +0 -8
  1838. package/dist/mozaic-angular/components/checkbox/public-api.d.ts +0 -2
  1839. package/dist/mozaic-angular/components/dialog/classes/dialog-config.d.ts +0 -9
  1840. package/dist/mozaic-angular/components/dialog/classes/dialog-injector.d.ts +0 -10
  1841. package/dist/mozaic-angular/components/dialog/classes/dialog-ref.d.ts +0 -25
  1842. package/dist/mozaic-angular/components/dialog/classes/index.d.ts +0 -3
  1843. package/dist/mozaic-angular/components/dialog/dialog-animation.d.ts +0 -1
  1844. package/dist/mozaic-angular/components/dialog/dialog.component.d.ts +0 -23
  1845. package/dist/mozaic-angular/components/dialog/dialog.module.d.ts +0 -8
  1846. package/dist/mozaic-angular/components/dialog/dialog.service.d.ts +0 -20
  1847. package/dist/mozaic-angular/components/dialog/interfaces/dialog-config.d.ts +0 -7
  1848. package/dist/mozaic-angular/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
  1849. package/dist/mozaic-angular/components/dialog/interfaces/dialog-ref.d.ts +0 -18
  1850. package/dist/mozaic-angular/components/dialog/interfaces/index.d.ts +0 -3
  1851. package/dist/mozaic-angular/components/dialog/public-api.d.ts +0 -5
  1852. package/dist/mozaic-angular/components/dialog/tokens/dialog-config.token.d.ts +0 -2
  1853. package/dist/mozaic-angular/components/dialog/tokens/dialog-data.token.d.ts +0 -2
  1854. package/dist/mozaic-angular/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
  1855. package/dist/mozaic-angular/components/dialog/tokens/index.d.ts +0 -3
  1856. package/dist/mozaic-angular/components/field/directives/input-icon.directive.d.ts +0 -7
  1857. package/dist/mozaic-angular/components/field/field-error.component.d.ts +0 -5
  1858. package/dist/mozaic-angular/components/field/field.component.d.ts +0 -16
  1859. package/dist/mozaic-angular/components/field/field.module.d.ts +0 -10
  1860. package/dist/mozaic-angular/components/field/public-api.d.ts +0 -4
  1861. package/dist/mozaic-angular/components/icon/icon-size.d.ts +0 -6
  1862. package/dist/mozaic-angular/components/icon/icon.component.d.ts +0 -15
  1863. package/dist/mozaic-angular/components/icon/icon.module.d.ts +0 -8
  1864. package/dist/mozaic-angular/components/icon/icon.service.d.ts +0 -13
  1865. package/dist/mozaic-angular/components/icon/public-api.d.ts +0 -3
  1866. package/dist/mozaic-angular/components/layer/classes/layer-injector.d.ts +0 -10
  1867. package/dist/mozaic-angular/components/layer/classes/layer-ref.d.ts +0 -21
  1868. package/dist/mozaic-angular/components/layer/interfaces/index.d.ts +0 -3
  1869. package/dist/mozaic-angular/components/layer/interfaces/layer-config.d.ts +0 -4
  1870. package/dist/mozaic-angular/components/layer/interfaces/layer-di-params.d.ts +0 -6
  1871. package/dist/mozaic-angular/components/layer/interfaces/layer-ref.d.ts +0 -15
  1872. package/dist/mozaic-angular/components/layer/layer-animation.d.ts +0 -1
  1873. package/dist/mozaic-angular/components/layer/layer.component.d.ts +0 -19
  1874. package/dist/mozaic-angular/components/layer/layer.module.d.ts +0 -9
  1875. package/dist/mozaic-angular/components/layer/layer.service.d.ts +0 -19
  1876. package/dist/mozaic-angular/components/layer/public-api.d.ts +0 -5
  1877. package/dist/mozaic-angular/components/layer/tokens/index.d.ts +0 -3
  1878. package/dist/mozaic-angular/components/layer/tokens/layer-config.token.d.ts +0 -2
  1879. package/dist/mozaic-angular/components/layer/tokens/layer-data.token.d.ts +0 -2
  1880. package/dist/mozaic-angular/components/layer/tokens/layer-ref.token.d.ts +0 -2
  1881. package/dist/mozaic-angular/components/loader/loader.component.d.ts +0 -25
  1882. package/dist/mozaic-angular/components/loader/loader.d.ts +0 -16
  1883. package/dist/mozaic-angular/components/loader/loader.module.d.ts +0 -8
  1884. package/dist/mozaic-angular/components/loader/loader.service.d.ts +0 -18
  1885. package/dist/mozaic-angular/components/loader/public-api.d.ts +0 -3
  1886. package/dist/mozaic-angular/components/notification/notification-animation.d.ts +0 -1
  1887. package/dist/mozaic-angular/components/notification/notification-container.component.d.ts +0 -12
  1888. package/dist/mozaic-angular/components/notification/notification-footer.d.ts +0 -5
  1889. package/dist/mozaic-angular/components/notification/notification-message.d.ts +0 -5
  1890. package/dist/mozaic-angular/components/notification/notification-title.d.ts +0 -5
  1891. package/dist/mozaic-angular/components/notification/notification.component.d.ts +0 -9
  1892. package/dist/mozaic-angular/components/notification/notification.d.ts +0 -15
  1893. package/dist/mozaic-angular/components/notification/notification.module.d.ts +0 -15
  1894. package/dist/mozaic-angular/components/notification/notification.service.d.ts +0 -16
  1895. package/dist/mozaic-angular/components/notification/public-api.d.ts +0 -8
  1896. package/dist/mozaic-angular/components/pagination/pagination.component.d.ts +0 -46
  1897. package/dist/mozaic-angular/components/pagination/pagination.d.ts +0 -7
  1898. package/dist/mozaic-angular/components/pagination/pagination.module.d.ts +0 -13
  1899. package/dist/mozaic-angular/components/pagination/public-api.d.ts +0 -2
  1900. package/dist/mozaic-angular/components/progress-bar/progress-bar-size.d.ts +0 -1
  1901. package/dist/mozaic-angular/components/progress-bar/progress-bar-theme.d.ts +0 -1
  1902. package/dist/mozaic-angular/components/progress-bar/progress-bar.component.d.ts +0 -15
  1903. package/dist/mozaic-angular/components/progress-bar/progress-bar.module.d.ts +0 -8
  1904. package/dist/mozaic-angular/components/progress-bar/public-api.d.ts +0 -2
  1905. package/dist/mozaic-angular/components/public-api.d.ts +0 -19
  1906. package/dist/mozaic-angular/components/select/public-api.d.ts +0 -2
  1907. package/dist/mozaic-angular/components/select/select-size.d.ts +0 -5
  1908. package/dist/mozaic-angular/components/select/select.component.d.ts +0 -8
  1909. package/dist/mozaic-angular/components/select/select.module.d.ts +0 -8
  1910. package/dist/mozaic-angular/components/stepper/public-api.d.ts +0 -3
  1911. package/dist/mozaic-angular/components/stepper/step-state.d.ts +0 -1
  1912. package/dist/mozaic-angular/components/stepper/step.component.d.ts +0 -20
  1913. package/dist/mozaic-angular/components/stepper/stepper.component.d.ts +0 -20
  1914. package/dist/mozaic-angular/components/stepper/stepper.module.d.ts +0 -10
  1915. package/dist/mozaic-angular/components/tabs/public-api.d.ts +0 -3
  1916. package/dist/mozaic-angular/components/tabs/tab-selectors.d.ts +0 -2
  1917. package/dist/mozaic-angular/components/tabs/tab.component.d.ts +0 -16
  1918. package/dist/mozaic-angular/components/tabs/tabs.component.d.ts +0 -36
  1919. package/dist/mozaic-angular/components/tabs/tabs.module.d.ts +0 -9
  1920. package/dist/mozaic-angular/components/tag/public-api.d.ts +0 -2
  1921. package/dist/mozaic-angular/components/tag/tag-type.d.ts +0 -1
  1922. package/dist/mozaic-angular/components/tag/tag.component.d.ts +0 -23
  1923. package/dist/mozaic-angular/components/tag/tag.module.d.ts +0 -9
  1924. package/dist/mozaic-angular/components/text-area/public-api.d.ts +0 -2
  1925. package/dist/mozaic-angular/components/text-area/text-area.component.d.ts +0 -12
  1926. package/dist/mozaic-angular/components/text-area/text-area.module.d.ts +0 -7
  1927. package/dist/mozaic-angular/components/text-input/text-input.component.d.ts +0 -21
  1928. package/dist/mozaic-angular/components/text-input/text-input.d.ts +0 -1
  1929. package/dist/mozaic-angular/components/text-input/text-input.module.d.ts +0 -10
  1930. package/dist/mozaic-angular/components/toggle/public-api.d.ts +0 -2
  1931. package/dist/mozaic-angular/components/toggle/toggle-size.d.ts +0 -1
  1932. package/dist/mozaic-angular/components/toggle/toggle.component.d.ts +0 -22
  1933. package/dist/mozaic-angular/components/toggle/toggle.module.d.ts +0 -8
  1934. package/dist/mozaic-angular/components/tooltip/public-api.d.ts +0 -2
  1935. package/dist/mozaic-angular/components/tooltip/tooltip-position.d.ts +0 -1
  1936. package/dist/mozaic-angular/components/tooltip/tooltip.component.d.ts +0 -11
  1937. package/dist/mozaic-angular/components/tooltip/tooltip.module.d.ts +0 -8
  1938. package/dist/mozaic-angular/esm2020/common/global-events/global-events.module.mjs +0 -15
  1939. package/dist/mozaic-angular/esm2020/common/global-events/global-events.service.mjs +0 -30
  1940. package/dist/mozaic-angular/esm2020/common/global-events/public-api.mjs +0 -3
  1941. package/dist/mozaic-angular/esm2020/common/index.mjs +0 -3
  1942. package/dist/mozaic-angular/esm2020/common/utils/boolean-property.mjs +0 -4
  1943. package/dist/mozaic-angular/esm2020/common/utils/generate-id.mjs +0 -7
  1944. package/dist/mozaic-angular/esm2020/common/utils/get-random-number.mjs +0 -6
  1945. package/dist/mozaic-angular/esm2020/common/utils/index.mjs +0 -5
  1946. package/dist/mozaic-angular/esm2020/common/utils/overwrite-style.mjs +0 -5
  1947. package/dist/mozaic-angular/esm2020/common/utils/public-api.mjs +0 -2
  1948. package/dist/mozaic-angular/esm2020/components/badge/badge.component.mjs +0 -30
  1949. package/dist/mozaic-angular/esm2020/components/badge/badge.mjs +0 -2
  1950. package/dist/mozaic-angular/esm2020/components/badge/badge.module.mjs +0 -18
  1951. package/dist/mozaic-angular/esm2020/components/badge/index.mjs +0 -3
  1952. package/dist/mozaic-angular/esm2020/components/button/button.component.mjs +0 -53
  1953. package/dist/mozaic-angular/esm2020/components/button/button.mjs +0 -2
  1954. package/dist/mozaic-angular/esm2020/components/button/button.module.mjs +0 -18
  1955. package/dist/mozaic-angular/esm2020/components/button/index.mjs +0 -3
  1956. package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.component.mjs +0 -58
  1957. package/dist/mozaic-angular/esm2020/components/checkbox/checkbox.module.mjs +0 -21
  1958. package/dist/mozaic-angular/esm2020/components/checkbox/public-api.mjs +0 -3
  1959. package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
  1960. package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
  1961. package/dist/mozaic-angular/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
  1962. package/dist/mozaic-angular/esm2020/components/dialog/classes/index.mjs +0 -4
  1963. package/dist/mozaic-angular/esm2020/components/dialog/dialog-animation.mjs +0 -18
  1964. package/dist/mozaic-angular/esm2020/components/dialog/dialog.component.mjs +0 -57
  1965. package/dist/mozaic-angular/esm2020/components/dialog/dialog.module.mjs +0 -20
  1966. package/dist/mozaic-angular/esm2020/components/dialog/dialog.service.mjs +0 -67
  1967. package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
  1968. package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
  1969. package/dist/mozaic-angular/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
  1970. package/dist/mozaic-angular/esm2020/components/dialog/interfaces/index.mjs +0 -4
  1971. package/dist/mozaic-angular/esm2020/components/dialog/public-api.mjs +0 -6
  1972. package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
  1973. package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
  1974. package/dist/mozaic-angular/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
  1975. package/dist/mozaic-angular/esm2020/components/dialog/tokens/index.mjs +0 -4
  1976. package/dist/mozaic-angular/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
  1977. package/dist/mozaic-angular/esm2020/components/field/field-error.component.mjs +0 -13
  1978. package/dist/mozaic-angular/esm2020/components/field/field.component.mjs +0 -40
  1979. package/dist/mozaic-angular/esm2020/components/field/field.module.mjs +0 -20
  1980. package/dist/mozaic-angular/esm2020/components/field/public-api.mjs +0 -5
  1981. package/dist/mozaic-angular/esm2020/components/icon/icon-size.mjs +0 -8
  1982. package/dist/mozaic-angular/esm2020/components/icon/icon.component.mjs +0 -49
  1983. package/dist/mozaic-angular/esm2020/components/icon/icon.module.mjs +0 -18
  1984. package/dist/mozaic-angular/esm2020/components/icon/icon.service.mjs +0 -42
  1985. package/dist/mozaic-angular/esm2020/components/icon/public-api.mjs +0 -4
  1986. package/dist/mozaic-angular/esm2020/components/layer/classes/layer-injector.mjs +0 -22
  1987. package/dist/mozaic-angular/esm2020/components/layer/classes/layer-ref.mjs +0 -38
  1988. package/dist/mozaic-angular/esm2020/components/layer/interfaces/index.mjs +0 -4
  1989. package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
  1990. package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
  1991. package/dist/mozaic-angular/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
  1992. package/dist/mozaic-angular/esm2020/components/layer/layer-animation.mjs +0 -18
  1993. package/dist/mozaic-angular/esm2020/components/layer/layer.component.mjs +0 -40
  1994. package/dist/mozaic-angular/esm2020/components/layer/layer.module.mjs +0 -21
  1995. package/dist/mozaic-angular/esm2020/components/layer/layer.service.mjs +0 -56
  1996. package/dist/mozaic-angular/esm2020/components/layer/public-api.mjs +0 -6
  1997. package/dist/mozaic-angular/esm2020/components/layer/tokens/index.mjs +0 -4
  1998. package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
  1999. package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
  2000. package/dist/mozaic-angular/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
  2001. package/dist/mozaic-angular/esm2020/components/loader/loader.component.mjs +0 -47
  2002. package/dist/mozaic-angular/esm2020/components/loader/loader.mjs +0 -11
  2003. package/dist/mozaic-angular/esm2020/components/loader/loader.module.mjs +0 -20
  2004. package/dist/mozaic-angular/esm2020/components/loader/loader.service.mjs +0 -53
  2005. package/dist/mozaic-angular/esm2020/components/loader/public-api.mjs +0 -4
  2006. package/dist/mozaic-angular/esm2020/components/notification/notification-animation.mjs +0 -21
  2007. package/dist/mozaic-angular/esm2020/components/notification/notification-container.component.mjs +0 -38
  2008. package/dist/mozaic-angular/esm2020/components/notification/notification-footer.mjs +0 -11
  2009. package/dist/mozaic-angular/esm2020/components/notification/notification-message.mjs +0 -11
  2010. package/dist/mozaic-angular/esm2020/components/notification/notification-title.mjs +0 -11
  2011. package/dist/mozaic-angular/esm2020/components/notification/notification.component.mjs +0 -29
  2012. package/dist/mozaic-angular/esm2020/components/notification/notification.mjs +0 -8
  2013. package/dist/mozaic-angular/esm2020/components/notification/notification.module.mjs +0 -66
  2014. package/dist/mozaic-angular/esm2020/components/notification/notification.service.mjs +0 -40
  2015. package/dist/mozaic-angular/esm2020/components/notification/public-api.mjs +0 -9
  2016. package/dist/mozaic-angular/esm2020/components/pagination/pagination.component.mjs +0 -133
  2017. package/dist/mozaic-angular/esm2020/components/pagination/pagination.mjs +0 -4
  2018. package/dist/mozaic-angular/esm2020/components/pagination/pagination.module.mjs +0 -23
  2019. package/dist/mozaic-angular/esm2020/components/pagination/public-api.mjs +0 -3
  2020. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
  2021. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
  2022. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
  2023. package/dist/mozaic-angular/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
  2024. package/dist/mozaic-angular/esm2020/components/progress-bar/public-api.mjs +0 -3
  2025. package/dist/mozaic-angular/esm2020/components/public-api.mjs +0 -20
  2026. package/dist/mozaic-angular/esm2020/components/select/public-api.mjs +0 -3
  2027. package/dist/mozaic-angular/esm2020/components/select/select-size.mjs +0 -6
  2028. package/dist/mozaic-angular/esm2020/components/select/select.component.mjs +0 -25
  2029. package/dist/mozaic-angular/esm2020/components/select/select.module.mjs +0 -18
  2030. package/dist/mozaic-angular/esm2020/components/stepper/public-api.mjs +0 -4
  2031. package/dist/mozaic-angular/esm2020/components/stepper/step-state.mjs +0 -2
  2032. package/dist/mozaic-angular/esm2020/components/stepper/step.component.mjs +0 -51
  2033. package/dist/mozaic-angular/esm2020/components/stepper/stepper.component.mjs +0 -79
  2034. package/dist/mozaic-angular/esm2020/components/stepper/stepper.module.mjs +0 -20
  2035. package/dist/mozaic-angular/esm2020/components/tabs/public-api.mjs +0 -4
  2036. package/dist/mozaic-angular/esm2020/components/tabs/tab-selectors.mjs +0 -3
  2037. package/dist/mozaic-angular/esm2020/components/tabs/tab.component.mjs +0 -53
  2038. package/dist/mozaic-angular/esm2020/components/tabs/tabs.component.mjs +0 -126
  2039. package/dist/mozaic-angular/esm2020/components/tabs/tabs.module.mjs +0 -19
  2040. package/dist/mozaic-angular/esm2020/components/tag/public-api.mjs +0 -3
  2041. package/dist/mozaic-angular/esm2020/components/tag/tag-type.mjs +0 -2
  2042. package/dist/mozaic-angular/esm2020/components/tag/tag.component.mjs +0 -61
  2043. package/dist/mozaic-angular/esm2020/components/tag/tag.module.mjs +0 -19
  2044. package/dist/mozaic-angular/esm2020/components/text-area/public-api.mjs +0 -3
  2045. package/dist/mozaic-angular/esm2020/components/text-area/text-area.component.mjs +0 -43
  2046. package/dist/mozaic-angular/esm2020/components/text-area/text-area.module.mjs +0 -16
  2047. package/dist/mozaic-angular/esm2020/components/text-input/public-api.mjs +0 -3
  2048. package/dist/mozaic-angular/esm2020/components/text-input/text-input.component.mjs +0 -64
  2049. package/dist/mozaic-angular/esm2020/components/text-input/text-input.mjs +0 -2
  2050. package/dist/mozaic-angular/esm2020/components/text-input/text-input.module.mjs +0 -20
  2051. package/dist/mozaic-angular/esm2020/components/toggle/public-api.mjs +0 -3
  2052. package/dist/mozaic-angular/esm2020/components/toggle/toggle-size.mjs +0 -2
  2053. package/dist/mozaic-angular/esm2020/components/toggle/toggle.component.mjs +0 -59
  2054. package/dist/mozaic-angular/esm2020/components/toggle/toggle.module.mjs +0 -18
  2055. package/dist/mozaic-angular/esm2020/components/tooltip/public-api.mjs +0 -3
  2056. package/dist/mozaic-angular/esm2020/components/tooltip/tooltip-position.mjs +0 -2
  2057. package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.component.mjs +0 -32
  2058. package/dist/mozaic-angular/esm2020/components/tooltip/tooltip.module.mjs +0 -18
  2059. package/dist/mozaic-angular/esm2020/mozaic-ds-angular.mjs +0 -5
  2060. package/dist/mozaic-angular/esm2020/public-api.mjs +0 -3
  2061. package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs +0 -2052
  2062. package/dist/mozaic-angular/fesm2015/mozaic-ds-angular.mjs.map +0 -1
  2063. package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs +0 -2025
  2064. package/dist/mozaic-angular/fesm2020/mozaic-ds-angular.mjs.map +0 -1
  2065. package/dist/mozaic-angular/index.d.ts +0 -5
  2066. package/dist/mozaic-angular/package.json +0 -31
  2067. package/dist/mozaic-angular/public-api.d.ts +0 -2
  2068. /package/{dist/mozaic-angular → projects/kit}/README.md +0 -0
  2069. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-checked-disabled.svg +0 -0
  2070. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-checked.svg +0 -0
  2071. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-indeterminate-disabled.svg +0 -0
  2072. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/checkbox-indeterminate.svg +0 -0
  2073. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/invalid-cross.svg +0 -0
  2074. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/layer-cross.svg +0 -0
  2075. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-danger-m.svg +0 -0
  2076. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-danger-s.svg +0 -0
  2077. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-information-m.svg +0 -0
  2078. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-information-s.svg +0 -0
  2079. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-success-m.svg +0 -0
  2080. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-success-s.svg +0 -0
  2081. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-warning-m.svg +0 -0
  2082. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/notification-warning-s.svg +0 -0
  2083. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/remove-tag.svg +0 -0
  2084. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-checked-disabled.svg +0 -0
  2085. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-checked.svg +0 -0
  2086. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-cross-disabled.svg +0 -0
  2087. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/toggle-cross.svg +0 -0
  2088. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/tooltip-triangle.svg +0 -0
  2089. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/special-icons/valid-check-mark.svg +0 -0
  2090. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/android/colors.xml +0 -0
  2091. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/android/font_dimens.xml +0 -0
  2092. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/css/_variables.scss +0 -0
  2093. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/css/root.scss +0 -0
  2094. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.h +0 -0
  2095. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.m +0 -0
  2096. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionaryColor.swift +0 -0
  2097. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.h +0 -0
  2098. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.m +0 -0
  2099. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/ios/StyleDictionarySize.swift +0 -0
  2100. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/js/tokens.js +0 -0
  2101. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/js/tokensObject.js +0 -0
  2102. /package/{dist/mozaic-angular/adeo → projects/kit}/assets/tokens/adeo/scss/_tokens.scss +0 -0
  2103. /package/{dist/mozaic-angular/adeo/common/global-events/public-api.d.ts → projects/kit/common/global-events/public-api.ts} +0 -0
  2104. /package/{dist/mozaic-angular/adeo/common/index.d.ts → projects/kit/common/index.ts} +0 -0
  2105. /package/{dist/mozaic-angular/adeo/common/utils/index.d.ts → projects/kit/common/utils/index.ts} +0 -0
  2106. /package/{dist/mozaic-angular/adeo/common/utils/public-api.d.ts → projects/kit/common/utils/public-api.ts} +0 -0
  2107. /package/{dist/mozaic-angular/adeo/components/badge/index.d.ts → projects/kit/components/badge/index.ts} +0 -0
  2108. /package/{dist/mozaic-angular/adeo/components/button/index.d.ts → projects/kit/components/button/index.ts} +0 -0
  2109. /package/{dist/mozaic-angular/adeo/components/checkbox/public-api.d.ts → projects/kit/components/checkbox/public-api.ts} +0 -0
  2110. /package/{dist/mozaic-angular/adeo/components/dialog/classes/index.d.ts → projects/kit/components/dialog/classes/index.ts} +0 -0
  2111. /package/{dist/mozaic-angular/adeo/components/dialog/interfaces/index.d.ts → projects/kit/components/dialog/interfaces/index.ts} +0 -0
  2112. /package/{dist/mozaic-angular/adeo/components/dialog/public-api.d.ts → projects/kit/components/dialog/public-api.ts} +0 -0
  2113. /package/{dist/mozaic-angular/adeo/components/dialog/tokens/index.d.ts → projects/kit/components/dialog/tokens/index.ts} +0 -0
  2114. /package/{dist/mozaic-angular/adeo/components/field/public-api.d.ts → projects/kit/components/field/public-api.ts} +0 -0
  2115. /package/{dist/mozaic-angular/adeo/README.md → projects/kit/components/icon/icon.component.html} +0 -0
  2116. /package/{dist/mozaic-angular/adeo/components/icon/public-api.d.ts → projects/kit/components/icon/public-api.ts} +0 -0
  2117. /package/{dist/mozaic-angular/adeo/components/layer/interfaces/index.d.ts → projects/kit/components/layer/interfaces/index.ts} +0 -0
  2118. /package/{dist/mozaic-angular/adeo/components/layer/public-api.d.ts → projects/kit/components/layer/public-api.ts} +0 -0
  2119. /package/{dist/mozaic-angular/adeo/components/layer/tokens/index.d.ts → projects/kit/components/layer/tokens/index.ts} +0 -0
  2120. /package/{dist/mozaic-angular/adeo/components/loader/public-api.d.ts → projects/kit/components/loader/public-api.ts} +0 -0
  2121. /package/{dist/mozaic-angular/adeo/components/notification/public-api.d.ts → projects/kit/components/notification/public-api.ts} +0 -0
  2122. /package/{dist/mozaic-angular/adeo/components/pagination/public-api.d.ts → projects/kit/components/pagination/public-api.ts} +0 -0
  2123. /package/{dist/mozaic-angular/adeo/components/progress-bar/progress-bar-size.d.ts → projects/kit/components/progress-bar/progress-bar-size.ts} +0 -0
  2124. /package/{dist/mozaic-angular/adeo/components/progress-bar/progress-bar-theme.d.ts → projects/kit/components/progress-bar/progress-bar-theme.ts} +0 -0
  2125. /package/{dist/mozaic-angular/adeo/components/progress-bar/public-api.d.ts → projects/kit/components/progress-bar/public-api.ts} +0 -0
  2126. /package/{dist/mozaic-angular/adeo/components/public-api.d.ts → projects/kit/components/public-api.ts} +0 -0
  2127. /package/{dist/mozaic-angular/adeo/components/select/public-api.d.ts → projects/kit/components/select/public-api.ts} +0 -0
  2128. /package/{dist/mozaic-angular/adeo/components/stepper/public-api.d.ts → projects/kit/components/stepper/public-api.ts} +0 -0
  2129. /package/{dist/mozaic-angular/adeo/components/stepper/step-state.d.ts → projects/kit/components/stepper/step-state.ts} +0 -0
  2130. /package/{dist/mozaic-angular/adeo/components/tabs/public-api.d.ts → projects/kit/components/tabs/public-api.ts} +0 -0
  2131. /package/{dist/mozaic-angular/adeo/components/tag/public-api.d.ts → projects/kit/components/tag/public-api.ts} +0 -0
  2132. /package/{dist/mozaic-angular/adeo/components/tag/tag-type.d.ts → projects/kit/components/tag/tag-type.ts} +0 -0
  2133. /package/{dist/mozaic-angular/adeo/components/text-area/public-api.d.ts → projects/kit/components/text-area/public-api.ts} +0 -0
  2134. /package/{dist/mozaic-angular/adeo/components/text-input/public-api.d.ts → projects/kit/components/text-input/index.ts} +0 -0
  2135. /package/{dist/mozaic-angular/components/text-input/public-api.d.ts → projects/kit/components/text-input/public-api.ts} +0 -0
  2136. /package/{dist/mozaic-angular/adeo/components/text-input/text-input.d.ts → projects/kit/components/text-input/text-input.ts} +0 -0
  2137. /package/{dist/mozaic-angular/adeo/components/toggle/public-api.d.ts → projects/kit/components/toggle/public-api.ts} +0 -0
  2138. /package/{dist/mozaic-angular/adeo/components/toggle/toggle-size.d.ts → projects/kit/components/toggle/toggle-size.ts} +0 -0
  2139. /package/{dist/mozaic-angular/adeo/components/tooltip/public-api.d.ts → projects/kit/components/tooltip/public-api.ts} +0 -0
  2140. /package/{dist/mozaic-angular/adeo/components/tooltip/tooltip-position.d.ts → projects/kit/components/tooltip/tooltip-position.ts} +0 -0
  2141. /package/{dist/mozaic-angular/adeo/public-api.d.ts → projects/kit/public-api.ts} +0 -0
@@ -1,2052 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Component, ChangeDetectionStrategy, ViewEncapsulation, HostBinding, Input, NgModule, Injectable, forwardRef, InjectionToken, ViewContainerRef, Inject, ViewChild, Directive, ContentChildren, Host, ElementRef, Optional, EventEmitter, Output } from '@angular/core';
3
- import * as i1 from '@angular/common';
4
- import { CommonModule, DOCUMENT } from '@angular/common';
5
- import * as i3 from '@angular/forms';
6
- import { NG_VALUE_ACCESSOR, FormsModule } from '@angular/forms';
7
- import { fromEvent, shareReplay, BehaviorSubject, Subject, startWith, map, of, tap, catchError, throwError, finalize, first, debounceTime, filter, switchMap, takeUntil, merge, combineLatest, delay as delay$1 } from 'rxjs';
8
- import { trigger, transition, group, query, style, animate } from '@angular/animations';
9
- import { delay } from 'rxjs/operators';
10
- import * as i1$1 from '@angular/common/http';
11
- import * as i1$2 from '@angular/router';
12
- import { RouterLinkActive, RouterLinkWithHref, NavigationEnd } from '@angular/router';
13
-
14
- function castBooleanProperty(value) {
15
- return `${value}` !== 'false' && value != null;
16
- }
17
-
18
- const generateId = () => {
19
- const generateParts = () => Math.floor((1 + Math.random()) * 0x10000)
20
- .toString(16)
21
- .substring(1);
22
- return generateParts() + '-' + generateParts();
23
- };
24
-
25
- const getRandomNumber = (min, max) => {
26
- const minN = Math.ceil(min);
27
- const maxN = Math.floor(max);
28
- return Math.floor(Math.random() * (maxN - minN)) + minN;
29
- };
30
-
31
- const overwriteStyle = ({ nativeElement }, oldClassName, newClassName) => {
32
- nativeElement.classList.remove(oldClassName);
33
- nativeElement.classList.add(newClassName);
34
- };
35
-
36
- const BADGE_TYPE = ['information', 'success', 'warning', 'danger', 'neutral'];
37
-
38
- class BadgeComponent {
39
- constructor() {
40
- this.badgeClasses = `mc-badge mc-badge--information`;
41
- }
42
- set type(type) {
43
- if (!this.validateType(type))
44
- return;
45
- this.badgeClasses = `mc-badge mc-badge--${type}`;
46
- }
47
- validateType(type) {
48
- if (typeof type !== 'string')
49
- return false;
50
- return BADGE_TYPE.includes(type);
51
- }
52
- }
53
- BadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: BadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54
- BadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: BadgeComponent, selector: "[moz-badge]", inputs: { type: "type" }, host: { properties: { "class": "this.badgeClasses" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [".mc-badge{border-radius:4px;border:1px solid transparent;display:inline-block;padding:.125rem .4375rem;text-transform:lowercase;white-space:nowrap;font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:.875rem;line-height:1.2857142857;background-color:#daeff7;border-color:#0b96cc;color:#005c91}.mc-badge:first-letter{text-transform:uppercase}.mc-badge--success{background-color:#ebf5de;border-color:#46a610;color:#006902}.mc-badge--warning{background-color:#fdf1e8;border-color:#ea7315;color:#8c3500}.mc-badge--danger{background-color:#fdeaea;border-color:#ea302d;color:#8c0003}.mc-badge--neutral{background-color:#e6e6e6;border-color:gray;color:#4d4d4d}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
55
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: BadgeComponent, decorators: [{
56
- type: Component,
57
- args: [{ selector: '[moz-badge]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content></ng-content>\n", styles: [".mc-badge{border-radius:4px;border:1px solid transparent;display:inline-block;padding:.125rem .4375rem;text-transform:lowercase;white-space:nowrap;font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:.875rem;line-height:1.2857142857;background-color:#daeff7;border-color:#0b96cc;color:#005c91}.mc-badge:first-letter{text-transform:uppercase}.mc-badge--success{background-color:#ebf5de;border-color:#46a610;color:#006902}.mc-badge--warning{background-color:#fdf1e8;border-color:#ea7315;color:#8c3500}.mc-badge--danger{background-color:#fdeaea;border-color:#ea302d;color:#8c0003}.mc-badge--neutral{background-color:#e6e6e6;border-color:gray;color:#4d4d4d}\n"] }]
58
- }], propDecorators: { badgeClasses: [{
59
- type: HostBinding,
60
- args: ['class']
61
- }], type: [{
62
- type: Input
63
- }] } });
64
-
65
- class BadgeModule {
66
- }
67
- BadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: BadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
68
- BadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: BadgeModule, declarations: [BadgeComponent], imports: [CommonModule], exports: [BadgeComponent] });
69
- BadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: BadgeModule, imports: [CommonModule] });
70
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: BadgeModule, decorators: [{
71
- type: NgModule,
72
- args: [{
73
- declarations: [BadgeComponent],
74
- imports: [CommonModule],
75
- exports: [BadgeComponent],
76
- }]
77
- }] });
78
-
79
- class ButtonComponent {
80
- constructor() {
81
- this.iconPosition = 'left';
82
- this.onlyIcon = false;
83
- this.theme = 'primary';
84
- this.variation = 'solid';
85
- this.widthBehavior = 'fit';
86
- this.size = 'm';
87
- }
88
- get iconPositionIsRight() {
89
- return this.iconPosition === 'right';
90
- }
91
- get viewContent() {
92
- return !this.onlyIcon;
93
- }
94
- generateThemeCssClassName(variation, theme) {
95
- const themePart = theme === 'primary' ? '' : `-${theme}`;
96
- return `mc-button--${variation}${themePart}`;
97
- }
98
- get hostCssClasses() {
99
- const squareClass = this.onlyIcon ? 'mc-button--square' : '';
100
- const iconPositionIsRightClass = this.iconPositionIsRight ? 'icon-right-position' : '';
101
- const themeClass = this.generateThemeCssClassName(this.variation, this.theme);
102
- const widthBehaviorClass = `mc-button--${this.widthBehavior}`;
103
- const sizeClass = `mc-button--${this.size}`;
104
- return `mc-button ${squareClass} ${iconPositionIsRightClass} ${themeClass} ${sizeClass} ${widthBehaviorClass}`;
105
- }
106
- }
107
- ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
108
- ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ButtonComponent, selector: "button[moz-button]", inputs: { iconPosition: "iconPosition", onlyIcon: "onlyIcon", theme: "theme", variation: "variation", widthBehavior: "widthBehavior", size: "size" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-content select=\"moz-icon\"></ng-content>\n<div class=\"content\" *ngIf=\"viewContent\"><ng-content></ng-content></div>\n", styles: [".mc-button{margin:0;box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;color:#fff;background-color:#188803;font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem;cursor:pointer;border-radius:4px;text-align:center;border:2px solid transparent;transition:all ease .2s;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;align-items:stretch;box-sizing:border-box;fill:currentColor}.mc-button:hover{background-color:#006902;color:#fff}.mc-button:active{background-color:#006902}.mc-button:disabled,.mc-button.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button .mc-button__icon:first-child,.mc-button .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}.mc-button:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-button--s{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s .mc-button__icon:first-child,.mc-button--s .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}@media screen and (min-width: 680px){.mc-button--s\\@from-m{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-m .mc-button__icon:first-child,.mc-button--s\\@from-m .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1024px){.mc-button--s\\@from-l{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-l .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-l .mc-button__icon:first-child,.mc-button--s\\@from-l .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1280px){.mc-button--s\\@from-xl{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-xl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-xl .mc-button__icon:first-child,.mc-button--s\\@from-xl .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1920px){.mc-button--s\\@from-xxl{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-xxl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-xxl .mc-button__icon:first-child,.mc-button--s\\@from-xxl .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}.mc-button--m{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m .mc-button__icon:first-child,.mc-button--m .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}@media screen and (min-width: 680px){.mc-button--m\\@from-m{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-m .mc-button__icon:first-child,.mc-button--m\\@from-m .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1024px){.mc-button--m\\@from-l{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-l .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-l .mc-button__icon:first-child,.mc-button--m\\@from-l .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1280px){.mc-button--m\\@from-xl{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-xl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-xl .mc-button__icon:first-child,.mc-button--m\\@from-xl .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1920px){.mc-button--m\\@from-xxl{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-xxl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-xxl .mc-button__icon:first-child,.mc-button--m\\@from-xxl .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}.mc-button--l{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l .mc-button__icon{width:2rem;height:2rem}.mc-button--l .mc-button__icon:first-child,.mc-button--l .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}@media screen and (min-width: 680px){.mc-button--l\\@from-m{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-m .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-m .mc-button__icon:first-child,.mc-button--l\\@from-m .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1024px){.mc-button--l\\@from-l{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-l .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-l .mc-button__icon:first-child,.mc-button--l\\@from-l .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1280px){.mc-button--l\\@from-xl{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-xl .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-xl .mc-button__icon:first-child,.mc-button--l\\@from-xl .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1920px){.mc-button--l\\@from-xxl{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-xxl .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-xxl .mc-button__icon:first-child,.mc-button--l\\@from-xxl .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}.mc-button--fit{display:inline-flex;width:auto}@media screen and (min-width: 680px){.mc-button--fit\\@from-m{display:inline-flex;width:auto}}@media screen and (min-width: 1024px){.mc-button--fit\\@from-l{display:inline-flex;width:auto}}@media screen and (min-width: 1280px){.mc-button--fit\\@from-xl{display:inline-flex;width:auto}}@media screen and (min-width: 1920px){.mc-button--fit\\@from-xxl{display:inline-flex;width:auto}}.mc-button--full{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full{width:-webkit-fill-available;width:-moz-available;width:stretch}}@media screen and (min-width: 680px){.mc-button--full\\@from-m{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-m{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1024px){.mc-button--full\\@from-l{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-l{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1280px){.mc-button--full\\@from-xl{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-xl{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1920px){.mc-button--full\\@from-xxl{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-xxl{width:-webkit-fill-available;width:-moz-available;width:stretch}}}.mc-button--square{align-items:center;height:0;padding:0}@media screen and (min-width: 1024px){.mc-button--square{padding:0}}.mc-button__icon{flex-shrink:0}.mc-button__icon:last-child{margin-left:.5rem;margin-right:-.25rem}.mc-button__icon:first-child{margin-right:.5rem;margin-left:-.25rem}.mc-button__icon:only-child{margin:0}.mc-button__label{align-items:center;display:flex;pointer-events:none}a.mc-button:disabled,a.mc-button.is-disabled{pointer-events:none}.mc-button--solid-primary-02{background-color:#6a7081}.mc-button--solid-primary-02:hover{background-color:#242938}.mc-button--solid-primary-02:active{background-color:#171b26}.mc-button--solid-primary-02:disabled,.mc-button--solid-primary-02.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--solid-neutral{background-color:#333}.mc-button--solid-neutral:hover{background-color:#191919}.mc-button--solid-neutral:active{background-color:#333}.mc-button--solid-neutral:disabled,.mc-button--solid-neutral.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--solid-danger{background-color:#c61112}.mc-button--solid-danger:hover,.mc-button--solid-danger:active{background-color:#8c0003}.mc-button--solid-danger:disabled,.mc-button--solid-danger.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered{color:#188803;border-color:#188803;background-color:#fff}.mc-button--bordered:hover{background-color:#ebf5de;color:#006902}.mc-button--bordered:active{background-color:#c5e39e;color:#035010}.mc-button--bordered:disabled,.mc-button--bordered.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-primary-02{color:#6a7081;border-color:#6a7081;background-color:#fff}.mc-button--bordered-primary-02:hover{background-color:#eeeff1;color:#6a7081}.mc-button--bordered-primary-02:active{background-color:#cfd2d8}.mc-button--bordered-primary-02:disabled,.mc-button--bordered-primary-02.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-neutral{color:#333;border-color:#333;background-color:#fff}.mc-button--bordered-neutral:hover{background-color:#e6e6e6;color:#333}.mc-button--bordered-neutral:active{background-color:#ccc}.mc-button--bordered-neutral:disabled,.mc-button--bordered-neutral.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-danger{color:#c61112;border-color:#c61112;background-color:#fff}.mc-button--bordered-danger:hover{background-color:#fdeaea;color:#8c0003}.mc-button--bordered-danger:active{background-color:#f8bcbb;color:#530000}.mc-button--bordered-danger:disabled,.mc-button--bordered-danger.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button{align-items:center;gap:.5rem}.icon-right-position{flex-direction:row-reverse}.mc-button--s{height:2rem}.mc-button--m{height:3rem}.mc-button--l{height:3.5rem}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ButtonComponent, decorators: [{
110
- type: Component,
111
- args: [{ selector: 'button[moz-button]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content select=\"moz-icon\"></ng-content>\n<div class=\"content\" *ngIf=\"viewContent\"><ng-content></ng-content></div>\n", styles: [".mc-button{margin:0;box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;color:#fff;background-color:#188803;font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem;cursor:pointer;border-radius:4px;text-align:center;border:2px solid transparent;transition:all ease .2s;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;align-items:stretch;box-sizing:border-box;fill:currentColor}.mc-button:hover{background-color:#006902;color:#fff}.mc-button:active{background-color:#006902}.mc-button:disabled,.mc-button.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button .mc-button__icon:first-child,.mc-button .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}.mc-button:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-button--s{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s .mc-button__icon:first-child,.mc-button--s .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}@media screen and (min-width: 680px){.mc-button--s\\@from-m{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-m .mc-button__icon:first-child,.mc-button--s\\@from-m .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1024px){.mc-button--s\\@from-l{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-l .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-l .mc-button__icon:first-child,.mc-button--s\\@from-l .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1280px){.mc-button--s\\@from-xl{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-xl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-xl .mc-button__icon:first-child,.mc-button--s\\@from-xl .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}@media screen and (min-width: 1920px){.mc-button--s\\@from-xxl{font-size:.875rem;line-height:1.2857142857;padding:.3125rem 1rem;min-height:2rem;min-width:2rem}.mc-button--s\\@from-xxl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--s\\@from-xxl .mc-button__icon:first-child,.mc-button--s\\@from-xxl .mc-button__icon:last-child{margin-bottom:-.1875rem;margin-top:-.1875rem}.mc-button--s\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:1.5rem;height:1.5rem}}.mc-button--m{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m .mc-button__icon:first-child,.mc-button--m .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}@media screen and (min-width: 680px){.mc-button--m\\@from-m{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-m .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-m .mc-button__icon:first-child,.mc-button--m\\@from-m .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1024px){.mc-button--m\\@from-l{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-l .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-l .mc-button__icon:first-child,.mc-button--m\\@from-l .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1280px){.mc-button--m\\@from-xl{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-xl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-xl .mc-button__icon:first-child,.mc-button--m\\@from-xl .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1920px){.mc-button--m\\@from-xxl{font-size:1rem;line-height:1.375;padding:.6875rem 1.5rem;min-height:3rem;min-width:3rem}.mc-button--m\\@from-xxl .mc-button__icon{width:1.5rem;height:1.5rem}.mc-button--m\\@from-xxl .mc-button__icon:first-child,.mc-button--m\\@from-xxl .mc-button__icon:last-child{margin-bottom:-1px;margin-top:-1px}.mc-button--m\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}.mc-button--l{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l .mc-button__icon{width:2rem;height:2rem}.mc-button--l .mc-button__icon:first-child,.mc-button--l .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}@media screen and (min-width: 680px){.mc-button--l\\@from-m{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-m .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-m .mc-button__icon:first-child,.mc-button--l\\@from-m .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-m .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1024px){.mc-button--l\\@from-l{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-l .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-l .mc-button__icon:first-child,.mc-button--l\\@from-l .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-l .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1280px){.mc-button--l\\@from-xl{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-xl .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-xl .mc-button__icon:first-child,.mc-button--l\\@from-xl .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-xl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}@media screen and (min-width: 1920px){.mc-button--l\\@from-xxl{font-size:1.125rem;line-height:1.3333333333;padding:.875rem 1.5rem;min-height:3.5rem;min-width:3.5rem}.mc-button--l\\@from-xxl .mc-button__icon{width:2rem;height:2rem}.mc-button--l\\@from-xxl .mc-button__icon:first-child,.mc-button--l\\@from-xxl .mc-button__icon:last-child{margin-bottom:-.25rem;margin-top:-.25rem}.mc-button--l\\@from-xxl .mc-button__icon:only-child{margin-bottom:0;margin-top:0;width:2rem;height:2rem}}.mc-button--fit{display:inline-flex;width:auto}@media screen and (min-width: 680px){.mc-button--fit\\@from-m{display:inline-flex;width:auto}}@media screen and (min-width: 1024px){.mc-button--fit\\@from-l{display:inline-flex;width:auto}}@media screen and (min-width: 1280px){.mc-button--fit\\@from-xl{display:inline-flex;width:auto}}@media screen and (min-width: 1920px){.mc-button--fit\\@from-xxl{display:inline-flex;width:auto}}.mc-button--full{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full{width:-webkit-fill-available;width:-moz-available;width:stretch}}@media screen and (min-width: 680px){.mc-button--full\\@from-m{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-m{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1024px){.mc-button--full\\@from-l{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-l{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1280px){.mc-button--full\\@from-xl{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-xl{width:-webkit-fill-available;width:-moz-available;width:stretch}}}@media screen and (min-width: 1920px){.mc-button--full\\@from-xxl{display:flex;width:100%}@supports ((width: -webkit-fill-available) or (width: -moz-available) or (width: stretch)){.mc-button--full\\@from-xxl{width:-webkit-fill-available;width:-moz-available;width:stretch}}}.mc-button--square{align-items:center;height:0;padding:0}@media screen and (min-width: 1024px){.mc-button--square{padding:0}}.mc-button__icon{flex-shrink:0}.mc-button__icon:last-child{margin-left:.5rem;margin-right:-.25rem}.mc-button__icon:first-child{margin-right:.5rem;margin-left:-.25rem}.mc-button__icon:only-child{margin:0}.mc-button__label{align-items:center;display:flex;pointer-events:none}a.mc-button:disabled,a.mc-button.is-disabled{pointer-events:none}.mc-button--solid-primary-02{background-color:#6a7081}.mc-button--solid-primary-02:hover{background-color:#242938}.mc-button--solid-primary-02:active{background-color:#171b26}.mc-button--solid-primary-02:disabled,.mc-button--solid-primary-02.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--solid-neutral{background-color:#333}.mc-button--solid-neutral:hover{background-color:#191919}.mc-button--solid-neutral:active{background-color:#333}.mc-button--solid-neutral:disabled,.mc-button--solid-neutral.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--solid-danger{background-color:#c61112}.mc-button--solid-danger:hover,.mc-button--solid-danger:active{background-color:#8c0003}.mc-button--solid-danger:disabled,.mc-button--solid-danger.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered{color:#188803;border-color:#188803;background-color:#fff}.mc-button--bordered:hover{background-color:#ebf5de;color:#006902}.mc-button--bordered:active{background-color:#c5e39e;color:#035010}.mc-button--bordered:disabled,.mc-button--bordered.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-primary-02{color:#6a7081;border-color:#6a7081;background-color:#fff}.mc-button--bordered-primary-02:hover{background-color:#eeeff1;color:#6a7081}.mc-button--bordered-primary-02:active{background-color:#cfd2d8}.mc-button--bordered-primary-02:disabled,.mc-button--bordered-primary-02.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-neutral{color:#333;border-color:#333;background-color:#fff}.mc-button--bordered-neutral:hover{background-color:#e6e6e6;color:#333}.mc-button--bordered-neutral:active{background-color:#ccc}.mc-button--bordered-neutral:disabled,.mc-button--bordered-neutral.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button--bordered-danger{color:#c61112;border-color:#c61112;background-color:#fff}.mc-button--bordered-danger:hover{background-color:#fdeaea;color:#8c0003}.mc-button--bordered-danger:active{background-color:#f8bcbb;color:#530000}.mc-button--bordered-danger:disabled,.mc-button--bordered-danger.is-disabled{background-color:#ccc;border-color:transparent;color:#666;cursor:not-allowed}.mc-button{align-items:center;gap:.5rem}.icon-right-position{flex-direction:row-reverse}.mc-button--s{height:2rem}.mc-button--m{height:3rem}.mc-button--l{height:3.5rem}\n"] }]
112
- }], propDecorators: { iconPosition: [{
113
- type: Input
114
- }], onlyIcon: [{
115
- type: Input
116
- }], theme: [{
117
- type: Input
118
- }], variation: [{
119
- type: Input
120
- }], widthBehavior: [{
121
- type: Input
122
- }], size: [{
123
- type: Input
124
- }], hostCssClasses: [{
125
- type: HostBinding,
126
- args: ['class']
127
- }] } });
128
-
129
- class ButtonModule {
130
- }
131
- ButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
132
- ButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ButtonModule, declarations: [ButtonComponent], imports: [CommonModule], exports: [ButtonComponent] });
133
- ButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ButtonModule, imports: [CommonModule] });
134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ButtonModule, decorators: [{
135
- type: NgModule,
136
- args: [{
137
- declarations: [ButtonComponent],
138
- imports: [CommonModule],
139
- exports: [ButtonComponent],
140
- }]
141
- }] });
142
-
143
- class GlobalEventsService {
144
- get window() {
145
- return this._window;
146
- }
147
- constructor(_window) {
148
- this._window = _window;
149
- this.eventHandlers = new Map();
150
- }
151
- getWindowEvent(eventName) {
152
- const cachedHandler = this.eventHandlers.get(eventName);
153
- if (cachedHandler) {
154
- return cachedHandler;
155
- }
156
- const eventHandler = fromEvent(this.window, eventName).pipe(shareReplay({ refCount: true, bufferSize: 1 }));
157
- this.eventHandlers.set(eventName, eventHandler);
158
- return eventHandler;
159
- }
160
- }
161
- GlobalEventsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsService, deps: [{ token: Window }], target: i0.ɵɵFactoryTarget.Injectable });
162
- GlobalEventsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsService, providedIn: 'root' });
163
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsService, decorators: [{
164
- type: Injectable,
165
- args: [{
166
- providedIn: 'root',
167
- }]
168
- }], ctorParameters: function () { return [{ type: Window }]; } });
169
-
170
- class GlobalEventsModule {
171
- }
172
- GlobalEventsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
173
- GlobalEventsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsModule });
174
- GlobalEventsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsModule, providers: [GlobalEventsService, { provide: Window, useValue: window }] });
175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GlobalEventsModule, decorators: [{
176
- type: NgModule,
177
- args: [{
178
- providers: [GlobalEventsService, { provide: Window, useValue: window }],
179
- }]
180
- }] });
181
-
182
- const CHECKBOX_CONTROL_VALUE_ACCESSOR = {
183
- provide: NG_VALUE_ACCESSOR,
184
- useExisting: forwardRef(() => CheckboxComponent),
185
- multi: true,
186
- };
187
- class CheckboxComponent {
188
- get checked() {
189
- return this._checked;
190
- }
191
- constructor() {
192
- this.disabled = false;
193
- this.indeterminate = false;
194
- this.invalid = false;
195
- this._checked = false;
196
- this.onChange = () => { };
197
- this.onTouch = () => { };
198
- this.checkboxId = generateId();
199
- }
200
- set checked(v) {
201
- this._checked = v;
202
- this.onChange(this._checked);
203
- this.onTouch();
204
- }
205
- writeValue(value) {
206
- this.checked = !!value;
207
- }
208
- registerOnChange(fn) {
209
- this.onChange = fn;
210
- }
211
- registerOnTouched(fn) {
212
- this.onTouch = fn;
213
- }
214
- toggle() {
215
- this.writeValue(!this.checked);
216
- }
217
- }
218
- CheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
219
- CheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: CheckboxComponent, selector: "moz-checkbox", inputs: { disabled: "disabled", indeterminate: "indeterminate", invalid: "invalid", checked: "checked" }, host: { properties: { "class.mc-checkbox": "true" } }, providers: [CHECKBOX_CONTROL_VALUE_ACCESSOR], ngImport: i0, template: "<input\n [id]=\"checkboxId\"\n type=\"checkbox\"\n class=\"mc-checkbox__input\"\n [checked]=\"checked\"\n (click)=\"toggle()\"\n [ngClass]=\"{ 'is-invalid': invalid }\"\n [disabled]=\"disabled\"\n [indeterminate]=\"indeterminate\"\n/>\n<label [for]=\"checkboxId\" class=\"mc-checkbox__label\">\n <ng-content></ng-content>\n</label>\n", styles: [".mc-checkbox{align-items:center;display:flex}.mc-checkbox__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-checkbox__input{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;min-width:20px;min-height:20px;width:1.25rem;height:1.25rem;border-radius:4px;border:2px solid #666666;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-checkbox__input[type=number]::-webkit-inner-spin-button,.mc-checkbox__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-checkbox__input[type=number]{-moz-appearance:textfield}.mc-checkbox__input[type=search]::-webkit-search-decoration:hover,.mc-checkbox__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-checkbox__input::-ms-check{background-color:#fff;border:2px solid #666666;border-radius:4px;color:#fff}.mc-checkbox__input:hover{border-color:#191919}.mc-checkbox__input:hover::-ms-check{border-color:#191919}.mc-checkbox__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:checked,.mc-checkbox__input:indeterminate{background-color:#46a610;border-color:#46a610;background-size:1rem 1rem}.mc-checkbox__input:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>');background-position:center center}.mc-checkbox__input:checked::-ms-check{background-color:#46a610;border-color:#46a610}.mc-checkbox__input:checked:hover:not(:disabled){border-color:#035010}.mc-checkbox__input:checked:hover:not(:disabled)::-ms-check{border-color:#035010}.mc-checkbox__input:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-checkbox__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6}.mc-checkbox__input:disabled:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>')}.mc-checkbox__input:disabled:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled+.mc-checkbox__label{color:gray}.mc-checkbox__input.is-invalid{border-color:#c61112}.mc-checkbox__input.is-invalid::-ms-check{border-color:#c61112}.mc-checkbox__input.is-invalid:hover{border-color:#530000}.mc-checkbox__input.is-invalid:hover::-ms-check{border-color:#530000}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxComponent, decorators: [{
221
- type: Component,
222
- args: [{ selector: 'moz-checkbox', providers: [CHECKBOX_CONTROL_VALUE_ACCESSOR], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
223
- '[class.mc-checkbox]': 'true',
224
- }, template: "<input\n [id]=\"checkboxId\"\n type=\"checkbox\"\n class=\"mc-checkbox__input\"\n [checked]=\"checked\"\n (click)=\"toggle()\"\n [ngClass]=\"{ 'is-invalid': invalid }\"\n [disabled]=\"disabled\"\n [indeterminate]=\"indeterminate\"\n/>\n<label [for]=\"checkboxId\" class=\"mc-checkbox__label\">\n <ng-content></ng-content>\n</label>\n", styles: [".mc-checkbox{align-items:center;display:flex}.mc-checkbox__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-checkbox__input{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;min-width:20px;min-height:20px;width:1.25rem;height:1.25rem;border-radius:4px;border:2px solid #666666;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-checkbox__input[type=number]::-webkit-inner-spin-button,.mc-checkbox__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-checkbox__input[type=number]{-moz-appearance:textfield}.mc-checkbox__input[type=search]::-webkit-search-decoration:hover,.mc-checkbox__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-checkbox__input::-ms-check{background-color:#fff;border:2px solid #666666;border-radius:4px;color:#fff}.mc-checkbox__input:hover{border-color:#191919}.mc-checkbox__input:hover::-ms-check{border-color:#191919}.mc-checkbox__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:checked,.mc-checkbox__input:indeterminate{background-color:#46a610;border-color:#46a610;background-size:1rem 1rem}.mc-checkbox__input:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>');background-position:center center}.mc-checkbox__input:checked::-ms-check{background-color:#46a610;border-color:#46a610}.mc-checkbox__input:checked:hover:not(:disabled){border-color:#035010}.mc-checkbox__input:checked:hover:not(:disabled)::-ms-check{border-color:#035010}.mc-checkbox__input:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-checkbox__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6}.mc-checkbox__input:disabled:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>')}.mc-checkbox__input:disabled:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled+.mc-checkbox__label{color:gray}.mc-checkbox__input.is-invalid{border-color:#c61112}.mc-checkbox__input.is-invalid::-ms-check{border-color:#c61112}.mc-checkbox__input.is-invalid:hover{border-color:#530000}.mc-checkbox__input.is-invalid:hover::-ms-check{border-color:#530000}\n"] }]
225
- }], ctorParameters: function () { return []; }, propDecorators: { disabled: [{
226
- type: Input
227
- }], indeterminate: [{
228
- type: Input
229
- }], invalid: [{
230
- type: Input
231
- }], checked: [{
232
- type: Input
233
- }] } });
234
-
235
- /**
236
- * @deprecated remove in 0.21 version
237
- */
238
- class CheckboxModule {
239
- }
240
- CheckboxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
241
- CheckboxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: CheckboxModule, declarations: [CheckboxComponent], imports: [CommonModule], exports: [CheckboxComponent] });
242
- CheckboxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxModule, imports: [CommonModule] });
243
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxModule, decorators: [{
244
- type: NgModule,
245
- args: [{
246
- declarations: [CheckboxComponent],
247
- imports: [CommonModule],
248
- exports: [CheckboxComponent],
249
- }]
250
- }] });
251
-
252
- const dialogAnimation = trigger('dialogAnimation', [
253
- transition(':enter', group([
254
- query(':self', [style({ opacity: 0 }), animate(200, style({ opacity: 1 }))]),
255
- query('.mc-modal', [
256
- style({ opacity: 0, transform: 'scale(0.7)' }),
257
- animate(200, style({ opacity: 1, transform: 'scale(1)' })),
258
- ]),
259
- ])),
260
- transition(':leave', group([
261
- query(':self', [animate(200, style({ opacity: 0 }))]),
262
- query('.mc-modal', [
263
- style({ opacity: 1, transform: 'scale(1)' }),
264
- animate(200, style({ opacity: 0, transform: 'scale(0.1)' })),
265
- ]),
266
- ])),
267
- ]);
268
-
269
- const DIALOG_CONFIG = new InjectionToken('DIALOG_CONFIG');
270
-
271
- const DIALOG_DATA = new InjectionToken('DIALOG_DATA');
272
-
273
- const DIALOG_REF = new InjectionToken('DIALOG_REF');
274
-
275
- class DialogComponent {
276
- constructor(config, cd) {
277
- this.config = config;
278
- this.cd = cd;
279
- }
280
- get title() {
281
- return this.config.title;
282
- }
283
- get hasCross() {
284
- return this.config.hasCross;
285
- }
286
- get minHeight() {
287
- return `${this.config.minHeight}px`;
288
- }
289
- get layerIndex() {
290
- return this.config.layerIndex;
291
- }
292
- get dialogContainerIndex() {
293
- return this.layerIndex + 1;
294
- }
295
- ngAfterViewInit() {
296
- this.initChildComponent(this.childComponentType);
297
- }
298
- ngOnDestroy() {
299
- this.dialogRef.destroy();
300
- // this.childComponentRef?.destroy();
301
- }
302
- close() {
303
- this.dialogRef.close();
304
- }
305
- initChildComponent(componentType) {
306
- this.childComponentRef = this.contentViewRef.createComponent(componentType);
307
- this.cd.detectChanges();
308
- }
309
- }
310
- DialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogComponent, deps: [{ token: DIALOG_CONFIG }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
311
- DialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: DialogComponent, selector: "moz-dialog", inputs: { dialogRef: "dialogRef", childComponentType: "childComponentType" }, host: { properties: { "@dialogAnimation": "true" } }, viewQueries: [{ propertyName: "contentViewRef", first: true, predicate: ["content"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div\n tabindex=\"-1\"\n role=\"dialog\"\n aria-labelledby=\"modal_title\"\n class=\"mc-modal\"\n [style.zIndex]=\"dialogContainerIndex\"\n>\n <div role=\"document\" class=\"mc-modal__dialog is-open\" [style.minHeight]=\"minHeight\">\n <header class=\"mc-modal__header mc-divider-bottom mc-divider-bottom--light\">\n <h2 class=\"mc-modal__title\" id=\"modalTitle\">{{ title }}</h2>\n <button class=\"mc-modal__close\" type=\"button\" (click)=\"close()\" *ngIf=\"hasCross\">\n <span class=\"mc-modal__close-text\">Close</span>\n </button>\n </header>\n <main class=\"mc-modal__body\">\n <article class=\"mc-modal__content\">\n <ng-template #content></ng-template>\n </article>\n </main>\n </div>\n</div>\n<div\n tabindex=\"-1\"\n role=\"dialog\"\n class=\"mc-modal-overlay is-visible\"\n [style.zIndex]=\"layerIndex\"\n></div>\n", styles: [".mc-modal{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;inset:0;outline:0;pointer-events:none;position:fixed;z-index:1999999999;align-items:flex-end;display:flex;height:100vh;height:-webkit-fill-available;height:-moz-available;height:stretch;justify-content:center;overflow-x:hidden;overflow-y:auto;padding:1rem 1.125rem;width:100vw}.mc-modal,.mc-modal *{box-sizing:border-box}@media screen and (min-width: 680px){.mc-modal{align-items:center;padding:0}}.mc-modal__dialog{background:#ffffff;display:flex;flex-direction:column;opacity:0;max-height:100%;position:relative;transform:translateY(-25%);transition:visibility 0s linear .4s,transform .4s ease,opacity .4s ease;visibility:hidden;width:100%}@media screen and (min-width: 680px){.mc-modal__dialog{max-height:50%;max-width:38.5rem}}@media (min-width: 1024px) and (max-width: 1919px){.mc-modal__dialog{max-height:66.6666666667%}}@media screen and (min-width: 1024px){.mc-modal__dialog{max-width:48rem}}@media screen and (min-width: 1280px){.mc-modal__dialog{max-width:50rem}}@media screen and (min-width: 1920px){.mc-modal__dialog{max-width:56.5rem}}.mc-modal__dialog.is-open{opacity:1;pointer-events:all;transform:translateY(0);transition:visibility 0s linear 0s,transform .4s ease,opacity .4s ease;visibility:visible}.mc-modal__form{display:contents}.mc-modal__header{align-items:center;display:flex;gap:.75rem;margin-bottom:1rem;min-height:3.75rem;padding:.75rem .75rem .75rem 1rem;position:relative}.mc-modal__header:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-modal__header{padding-top:1rem;padding-right:1rem;padding-left:1.5rem}}.mc-modal__icon{fill:#666;height:1.5rem;width:1.5rem}.mc-modal__title{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#666;margin-bottom:0;margin-top:0}.mc-modal__close{box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;position:relative;align-self:flex-start;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#808080\"><path d=\"M17.41 16l8.8-8.79a1 1 0 10-1.42-1.42L16 14.59l-8.79-8.8a1 1 0 00-1.42 1.42l8.8 8.79-8.8 8.79a1 1 0 000 1.42 1 1 0 001.42 0l8.79-8.8 8.79 8.8a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:contain;cursor:pointer;height:2rem;flex-shrink:0;margin:0 0 0 auto;width:2rem}.mc-modal__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-modal__close-text{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-modal__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-modal__body{font-size:1rem;line-height:1.375;flex:1 1;color:#191919;display:flex;overflow:hidden;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 680px){.mc-modal__body{padding-left:.75rem;padding-right:1rem}}.mc-modal__content{flex-grow:1;max-height:100%;overflow-y:auto;overflow-x:hidden;scrollbar-color:#666666 #e6e6e6;scrollbar-width:thin;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 680px){.mc-modal__content{padding-left:.75rem;padding-right:.75rem}}.mc-modal__content::-webkit-scrollbar{background-color:#e6e6e6;width:.25rem}.mc-modal__content::-webkit-scrollbar-thumb{background:#666666}.mc-modal__heading{font-size:1.125rem;line-height:1.3333333333;font-weight:600;color:#000;margin-bottom:0;margin-top:0}.mc-modal__inner{padding-top:1.5rem;padding-bottom:3rem}.mc-modal__footer{align-items:stretch;display:flex;flex-direction:column;justify-content:center;padding:1rem}@media screen and (min-width: 680px){.mc-modal__footer{align-items:center;flex-direction:row;padding:1.5rem}}.mc-modal__footer>:first-child:not(:only-child){margin-bottom:.75rem}@media screen and (min-width: 680px){.mc-modal__footer>:first-child:not(:only-child){margin-bottom:0;margin-right:1rem}}.mc-modal-open{overflow:hidden}.mc-modal-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-modal-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], animations: [dialogAnimation], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogComponent, decorators: [{
313
- type: Component,
314
- args: [{ selector: 'moz-dialog', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, animations: [dialogAnimation], host: { '[@dialogAnimation]': 'true' }, template: "<div\n tabindex=\"-1\"\n role=\"dialog\"\n aria-labelledby=\"modal_title\"\n class=\"mc-modal\"\n [style.zIndex]=\"dialogContainerIndex\"\n>\n <div role=\"document\" class=\"mc-modal__dialog is-open\" [style.minHeight]=\"minHeight\">\n <header class=\"mc-modal__header mc-divider-bottom mc-divider-bottom--light\">\n <h2 class=\"mc-modal__title\" id=\"modalTitle\">{{ title }}</h2>\n <button class=\"mc-modal__close\" type=\"button\" (click)=\"close()\" *ngIf=\"hasCross\">\n <span class=\"mc-modal__close-text\">Close</span>\n </button>\n </header>\n <main class=\"mc-modal__body\">\n <article class=\"mc-modal__content\">\n <ng-template #content></ng-template>\n </article>\n </main>\n </div>\n</div>\n<div\n tabindex=\"-1\"\n role=\"dialog\"\n class=\"mc-modal-overlay is-visible\"\n [style.zIndex]=\"layerIndex\"\n></div>\n", styles: [".mc-modal{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;inset:0;outline:0;pointer-events:none;position:fixed;z-index:1999999999;align-items:flex-end;display:flex;height:100vh;height:-webkit-fill-available;height:-moz-available;height:stretch;justify-content:center;overflow-x:hidden;overflow-y:auto;padding:1rem 1.125rem;width:100vw}.mc-modal,.mc-modal *{box-sizing:border-box}@media screen and (min-width: 680px){.mc-modal{align-items:center;padding:0}}.mc-modal__dialog{background:#ffffff;display:flex;flex-direction:column;opacity:0;max-height:100%;position:relative;transform:translateY(-25%);transition:visibility 0s linear .4s,transform .4s ease,opacity .4s ease;visibility:hidden;width:100%}@media screen and (min-width: 680px){.mc-modal__dialog{max-height:50%;max-width:38.5rem}}@media (min-width: 1024px) and (max-width: 1919px){.mc-modal__dialog{max-height:66.6666666667%}}@media screen and (min-width: 1024px){.mc-modal__dialog{max-width:48rem}}@media screen and (min-width: 1280px){.mc-modal__dialog{max-width:50rem}}@media screen and (min-width: 1920px){.mc-modal__dialog{max-width:56.5rem}}.mc-modal__dialog.is-open{opacity:1;pointer-events:all;transform:translateY(0);transition:visibility 0s linear 0s,transform .4s ease,opacity .4s ease;visibility:visible}.mc-modal__form{display:contents}.mc-modal__header{align-items:center;display:flex;gap:.75rem;margin-bottom:1rem;min-height:3.75rem;padding:.75rem .75rem .75rem 1rem;position:relative}.mc-modal__header:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-modal__header{padding-top:1rem;padding-right:1rem;padding-left:1.5rem}}.mc-modal__icon{fill:#666;height:1.5rem;width:1.5rem}.mc-modal__title{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#666;margin-bottom:0;margin-top:0}.mc-modal__close{box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;position:relative;align-self:flex-start;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#808080\"><path d=\"M17.41 16l8.8-8.79a1 1 0 10-1.42-1.42L16 14.59l-8.79-8.8a1 1 0 00-1.42 1.42l8.8 8.79-8.8 8.79a1 1 0 000 1.42 1 1 0 001.42 0l8.79-8.8 8.79 8.8a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:contain;cursor:pointer;height:2rem;flex-shrink:0;margin:0 0 0 auto;width:2rem}.mc-modal__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-modal__close-text{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-modal__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-modal__body{font-size:1rem;line-height:1.375;flex:1 1;color:#191919;display:flex;overflow:hidden;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 680px){.mc-modal__body{padding-left:.75rem;padding-right:1rem}}.mc-modal__content{flex-grow:1;max-height:100%;overflow-y:auto;overflow-x:hidden;scrollbar-color:#666666 #e6e6e6;scrollbar-width:thin;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 680px){.mc-modal__content{padding-left:.75rem;padding-right:.75rem}}.mc-modal__content::-webkit-scrollbar{background-color:#e6e6e6;width:.25rem}.mc-modal__content::-webkit-scrollbar-thumb{background:#666666}.mc-modal__heading{font-size:1.125rem;line-height:1.3333333333;font-weight:600;color:#000;margin-bottom:0;margin-top:0}.mc-modal__inner{padding-top:1.5rem;padding-bottom:3rem}.mc-modal__footer{align-items:stretch;display:flex;flex-direction:column;justify-content:center;padding:1rem}@media screen and (min-width: 680px){.mc-modal__footer{align-items:center;flex-direction:row;padding:1.5rem}}.mc-modal__footer>:first-child:not(:only-child){margin-bottom:.75rem}@media screen and (min-width: 680px){.mc-modal__footer>:first-child:not(:only-child){margin-bottom:0;margin-right:1rem}}.mc-modal-open{overflow:hidden}.mc-modal-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-modal-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}\n"] }]
315
- }], ctorParameters: function () {
316
- return [{ type: undefined, decorators: [{
317
- type: Inject,
318
- args: [DIALOG_CONFIG]
319
- }] }, { type: i0.ChangeDetectorRef }];
320
- }, propDecorators: { dialogRef: [{
321
- type: Input
322
- }], childComponentType: [{
323
- type: Input
324
- }], contentViewRef: [{
325
- type: ViewChild,
326
- args: ['content', { read: ViewContainerRef, static: true }]
327
- }] } });
328
-
329
- class DialogConfigModel {
330
- constructor(config) {
331
- this.title = '';
332
- this.hasCross = true;
333
- this.minHeight = 65;
334
- Object.assign(this, config);
335
- }
336
- }
337
-
338
- class DialogInjector {
339
- constructor({ injector, dialogRef }) {
340
- this.parentInjector = injector;
341
- this.dialogRef = dialogRef;
342
- this.initAdditionalTokens();
343
- }
344
- get(token, notFoundValue) {
345
- const value = this.additionalTokens.get(token);
346
- if (value) {
347
- return value;
348
- }
349
- return this.parentInjector.get(token, notFoundValue);
350
- }
351
- initAdditionalTokens() {
352
- this.additionalTokens = new WeakMap();
353
- this.additionalTokens.set(DIALOG_REF, this.dialogRef);
354
- this.additionalTokens.set(DIALOG_CONFIG, this.dialogRef.config);
355
- this.additionalTokens.set(DIALOG_DATA, this.dialogRef.config.data);
356
- }
357
- }
358
-
359
- class DialogRefModel {
360
- constructor(dialogConfig) {
361
- this.dialogConfig = dialogConfig;
362
- this._config$ = new BehaviorSubject({});
363
- this._afterClosed$ = new Subject();
364
- this._id = String(getRandomNumber(1, 100000));
365
- this.init(dialogConfig);
366
- }
367
- get afterClosed$() {
368
- return this._afterClosed$.asObservable();
369
- }
370
- get config$() {
371
- return this._config$.asObservable();
372
- }
373
- get config() {
374
- return this._config$.getValue();
375
- }
376
- get id() {
377
- return this._id;
378
- }
379
- get dialogElement() {
380
- return this._dialogElement;
381
- }
382
- get componentRef() {
383
- return this._componentRef;
384
- }
385
- init(config) {
386
- this.updateConfig(config);
387
- }
388
- updateConfig(config) {
389
- this._config$.next(Object.assign(Object.assign({}, this.config), config));
390
- }
391
- close(result) {
392
- this._afterClosed$.next(result);
393
- }
394
- setDialogElement(element) {
395
- this._dialogElement = element;
396
- }
397
- setComponentRef(componentRef) {
398
- this._componentRef = componentRef;
399
- }
400
- destroy() {
401
- this._config$.complete();
402
- this._afterClosed$.complete();
403
- }
404
- }
405
-
406
- class DialogService {
407
- constructor(componentFactoryResolver, injector, applicationRef, document) {
408
- this.componentFactoryResolver = componentFactoryResolver;
409
- this.injector = injector;
410
- this.applicationRef = applicationRef;
411
- this.document = document;
412
- this._layer = 100;
413
- }
414
- open(component, config = {}) {
415
- this.addLayer();
416
- const dialogRef = this.createDialog(Object.assign(Object.assign({}, config), { layerIndex: this._layer }));
417
- this.applyDataForCreatedDialogInstance({ component, dialogRef });
418
- return dialogRef;
419
- }
420
- createDialog(config) {
421
- const dialogRef = new DialogRefModel(new DialogConfigModel(config));
422
- const dialogInjector = new DialogInjector({ injector: this.injector, dialogRef });
423
- const componentRef = this.createComponentRef(dialogInjector);
424
- dialogRef.setComponentRef(componentRef);
425
- this.initDialogRefAfterClosedObserver(dialogRef, componentRef);
426
- this.appendDialogComponentToBody(componentRef);
427
- return dialogRef;
428
- }
429
- createComponentRef(dialogInjector) {
430
- return this.componentFactoryResolver
431
- .resolveComponentFactory(DialogComponent)
432
- .create(dialogInjector);
433
- }
434
- initDialogRefAfterClosedObserver(dialogRef, componentRef) {
435
- const destroyDelayInMs = 50;
436
- dialogRef.afterClosed$.pipe(delay(destroyDelayInMs)).subscribe(() => componentRef.destroy());
437
- }
438
- appendDialogComponentToBody(componentRef) {
439
- const componentHostView = componentRef.hostView;
440
- const componentHtmlElement = componentHostView.rootNodes[0];
441
- this.applicationRef.attachView(componentHostView);
442
- this.document.body.appendChild(componentHtmlElement);
443
- }
444
- applyDataForCreatedDialogInstance({ dialogRef, component, }) {
445
- const { instance: dialogInstance } = dialogRef.componentRef;
446
- dialogInstance.childComponentType = component;
447
- dialogInstance.dialogRef = dialogRef;
448
- }
449
- addLayer() {
450
- this._layer += 1;
451
- }
452
- }
453
- DialogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
454
- DialogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogService, providedIn: 'root' });
455
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogService, decorators: [{
456
- type: Injectable,
457
- args: [{
458
- providedIn: 'root',
459
- }]
460
- }], ctorParameters: function () {
461
- return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ApplicationRef }, { type: Document, decorators: [{
462
- type: Inject,
463
- args: [DOCUMENT]
464
- }] }];
465
- } });
466
-
467
- class DialogModule {
468
- }
469
- DialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
470
- DialogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: DialogModule, declarations: [DialogComponent], imports: [CommonModule] });
471
- DialogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogModule, providers: [DialogService], imports: [CommonModule] });
472
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DialogModule, decorators: [{
473
- type: NgModule,
474
- args: [{
475
- declarations: [DialogComponent],
476
- imports: [CommonModule],
477
- providers: [DialogService],
478
- exports: [],
479
- }]
480
- }] });
481
-
482
- const MOZ_INPUT_ICON = new InjectionToken('MozInputIcon');
483
- class InputIconDirective {
484
- }
485
- InputIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: InputIconDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
486
- InputIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: InputIconDirective, selector: "[mozInputIcon]", providers: [{ provide: MOZ_INPUT_ICON, useExisting: InputIconDirective }], ngImport: i0 });
487
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: InputIconDirective, decorators: [{
488
- type: Directive,
489
- args: [{
490
- selector: '[mozInputIcon]',
491
- providers: [{ provide: MOZ_INPUT_ICON, useExisting: InputIconDirective }],
492
- }]
493
- }] });
494
-
495
- class FieldErrorComponent {
496
- }
497
- FieldErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
498
- FieldErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: FieldErrorComponent, selector: "moz-field-error", host: { properties: { "class.mc-field__error-message": "true" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: ["@charset \"UTF-8\";.mc-field__label,.mc-field__legend{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#333}.mc-field__legend{padding-left:0;padding-right:0}.mc-field__legend+.mc-field__container,.mc-field__help+.mc-field__container{margin-top:1rem}.mc-field__requirement,.mc-field__help{font-size:.75rem;line-height:1.3333333333;font-weight:400;color:#666}.mc-field__requirement:before{content:\"\\a0-\\a0\"}.mc-field__help{display:block;margin-top:.125rem}.mc-field .mc-field__input,.mc-field .mc-field__element{margin-top:.5rem}@media screen and (min-width: 769px){.mc-field__container--inline{display:flex}}@media screen and (min-width: 769px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-bottom:0;margin-right:1rem}}@media screen and (min-width: 1024px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-right:2rem}}.mc-field__item:not(:last-child){margin-bottom:1rem}.mc-field__error-message{font-size:.875rem;line-height:1.2857142857;color:#c61112;display:inline-block;margin-top:.25rem}.mc-field--group{border:none;margin-left:0;margin-right:0;padding:0}.mc-field--group .mc-field__error-message{margin-top:.5rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldErrorComponent, decorators: [{
500
- type: Component,
501
- args: [{ selector: 'moz-field-error', changeDetection: ChangeDetectionStrategy.OnPush, host: {
502
- '[class.mc-field__error-message]': 'true',
503
- }, template: "<ng-content></ng-content>\n", styles: ["@charset \"UTF-8\";.mc-field__label,.mc-field__legend{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#333}.mc-field__legend{padding-left:0;padding-right:0}.mc-field__legend+.mc-field__container,.mc-field__help+.mc-field__container{margin-top:1rem}.mc-field__requirement,.mc-field__help{font-size:.75rem;line-height:1.3333333333;font-weight:400;color:#666}.mc-field__requirement:before{content:\"\\a0-\\a0\"}.mc-field__help{display:block;margin-top:.125rem}.mc-field .mc-field__input,.mc-field .mc-field__element{margin-top:.5rem}@media screen and (min-width: 769px){.mc-field__container--inline{display:flex}}@media screen and (min-width: 769px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-bottom:0;margin-right:1rem}}@media screen and (min-width: 1024px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-right:2rem}}.mc-field__item:not(:last-child){margin-bottom:1rem}.mc-field__error-message{font-size:.875rem;line-height:1.2857142857;color:#c61112;display:inline-block;margin-top:.25rem}.mc-field--group{border:none;margin-left:0;margin-right:0;padding:0}.mc-field--group .mc-field__error-message{margin-top:.5rem}\n"] }]
504
- }] });
505
-
506
- class FieldComponent {
507
- get viewLabel() {
508
- return !!(this.label || this.requirementText || this.helpText);
509
- }
510
- get hasInputIcon() {
511
- var _a, _b;
512
- return (_a = this.InputIconDirective) === null || _a === void 0 ? void 0 : _a.changes.pipe(startWith(!!((_b = this.InputIconDirective) === null || _b === void 0 ? void 0 : _b.length)), map(() => { var _a; return !!((_a = this.InputIconDirective) === null || _a === void 0 ? void 0 : _a.length); }));
513
- }
514
- constructor(cd) {
515
- this.cd = cd;
516
- this.label = '';
517
- this.requirementText = '';
518
- this.helpText = '';
519
- }
520
- ngAfterViewInit() {
521
- this.cd.detectChanges();
522
- }
523
- }
524
- FieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
525
- FieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: FieldComponent, selector: "moz-field", inputs: { label: "label", requirementText: "requirementText", helpText: "helpText" }, host: { properties: { "class.mc-field": "true" } }, queries: [{ propertyName: "InputIconDirective", predicate: MOZ_INPUT_ICON, descendants: true }], ngImport: i0, template: "<label class=\"mc-field__label\" *ngIf=\"viewLabel\">\n {{ label }}\n <span *ngIf=\"requirementText\" [attr.aria-hidden]=\"requirementText\" class=\"mc-field__requirement\">\n {{ requirementText }}\n </span>\n <span *ngIf=\"helpText\" id=\"helptext\" class=\"mc-field__help\">\n {{ helpText }}\n </span>\n</label>\n\n<ng-content></ng-content>\n\n<ng-template #inputIconTemplate>\n <ng-content select=\"[mozInputIcon]\"></ng-content>\n</ng-template>\n\n<ng-template #inputTemplate>\n <ng-content select=\"[moz-input]\"></ng-content>\n</ng-template>\n\n<div class=\"mc-left-icon-input\" *ngIf=\"hasInputIcon | async; else withoutIcon\">\n <ng-container [ngTemplateOutlet]=\"inputIconTemplate\"></ng-container>\n <ng-container [ngTemplateOutlet]=\"inputTemplate\"></ng-container>\n</div>\n\n<ng-template #withoutIcon>\n <ng-container [ngTemplateOutlet]=\"inputTemplate\"></ng-container>\n</ng-template>\n\n<ng-content select=\"moz-field-error\"></ng-content>\n", styles: ["@charset \"UTF-8\";.mc-field__label,.mc-field__legend{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#333}.mc-field__legend{padding-left:0;padding-right:0}.mc-field__legend+.mc-field__container,.mc-field__help+.mc-field__container{margin-top:1rem}.mc-field__requirement,.mc-field__help{font-size:.75rem;line-height:1.3333333333;font-weight:400;color:#666}.mc-field__requirement:before{content:\"\\a0-\\a0\"}.mc-field__help{display:block;margin-top:.125rem}.mc-field .mc-field__input,.mc-field .mc-field__element{margin-top:.5rem}@media screen and (min-width: 769px){.mc-field__container--inline{display:flex}}@media screen and (min-width: 769px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-bottom:0;margin-right:1rem}}@media screen and (min-width: 1024px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-right:2rem}}.mc-field__item:not(:last-child){margin-bottom:1rem}.mc-field__error-message{font-size:.875rem;line-height:1.2857142857;color:#c61112;display:inline-block;margin-top:.25rem}.mc-field--group{border:none;margin-left:0;margin-right:0;padding:0}.mc-field--group .mc-field__error-message{margin-top:.5rem}.mc-left-icon-input{position:relative}.mc-left-icon-input__icon{position:absolute;z-index:1;top:50%;transform:translateY(-50%);fill:#666;pointer-events:none}.mc-left-icon-input .mc-left-icon-input__icon{left:.75rem;top:50%;width:1.5rem;height:1.5rem}.mc-left-icon-input .mc-left-icon-input__input{padding-left:2.9375rem}.mc-left-icon-input--s .mc-left-icon-input__icon{left:.5rem;top:50%;width:1.5rem;height:1.5rem}.mc-left-icon-input--s .mc-left-icon-input__input{padding-left:2.4375rem}.mc-field{display:block}.mc-field__label{margin-bottom:.5rem;display:inline-block}.mc-left-icon-input [mozInputIcon]{left:.75rem;top:50%;width:1.5rem;height:1.5rem;position:absolute;z-index:1;transform:translateY(-50%);fill:#666;pointer-events:none}.mc-left-icon-input [moz-input]{padding-left:2.9375rem}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
526
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldComponent, decorators: [{
527
- type: Component,
528
- args: [{ selector: 'moz-field', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
529
- '[class.mc-field]': 'true',
530
- }, template: "<label class=\"mc-field__label\" *ngIf=\"viewLabel\">\n {{ label }}\n <span *ngIf=\"requirementText\" [attr.aria-hidden]=\"requirementText\" class=\"mc-field__requirement\">\n {{ requirementText }}\n </span>\n <span *ngIf=\"helpText\" id=\"helptext\" class=\"mc-field__help\">\n {{ helpText }}\n </span>\n</label>\n\n<ng-content></ng-content>\n\n<ng-template #inputIconTemplate>\n <ng-content select=\"[mozInputIcon]\"></ng-content>\n</ng-template>\n\n<ng-template #inputTemplate>\n <ng-content select=\"[moz-input]\"></ng-content>\n</ng-template>\n\n<div class=\"mc-left-icon-input\" *ngIf=\"hasInputIcon | async; else withoutIcon\">\n <ng-container [ngTemplateOutlet]=\"inputIconTemplate\"></ng-container>\n <ng-container [ngTemplateOutlet]=\"inputTemplate\"></ng-container>\n</div>\n\n<ng-template #withoutIcon>\n <ng-container [ngTemplateOutlet]=\"inputTemplate\"></ng-container>\n</ng-template>\n\n<ng-content select=\"moz-field-error\"></ng-content>\n", styles: ["@charset \"UTF-8\";.mc-field__label,.mc-field__legend{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#333}.mc-field__legend{padding-left:0;padding-right:0}.mc-field__legend+.mc-field__container,.mc-field__help+.mc-field__container{margin-top:1rem}.mc-field__requirement,.mc-field__help{font-size:.75rem;line-height:1.3333333333;font-weight:400;color:#666}.mc-field__requirement:before{content:\"\\a0-\\a0\"}.mc-field__help{display:block;margin-top:.125rem}.mc-field .mc-field__input,.mc-field .mc-field__element{margin-top:.5rem}@media screen and (min-width: 769px){.mc-field__container--inline{display:flex}}@media screen and (min-width: 769px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-bottom:0;margin-right:1rem}}@media screen and (min-width: 1024px){.mc-field__container--inline .mc-field__item:not(:last-child){margin-right:2rem}}.mc-field__item:not(:last-child){margin-bottom:1rem}.mc-field__error-message{font-size:.875rem;line-height:1.2857142857;color:#c61112;display:inline-block;margin-top:.25rem}.mc-field--group{border:none;margin-left:0;margin-right:0;padding:0}.mc-field--group .mc-field__error-message{margin-top:.5rem}.mc-left-icon-input{position:relative}.mc-left-icon-input__icon{position:absolute;z-index:1;top:50%;transform:translateY(-50%);fill:#666;pointer-events:none}.mc-left-icon-input .mc-left-icon-input__icon{left:.75rem;top:50%;width:1.5rem;height:1.5rem}.mc-left-icon-input .mc-left-icon-input__input{padding-left:2.9375rem}.mc-left-icon-input--s .mc-left-icon-input__icon{left:.5rem;top:50%;width:1.5rem;height:1.5rem}.mc-left-icon-input--s .mc-left-icon-input__input{padding-left:2.4375rem}.mc-field{display:block}.mc-field__label{margin-bottom:.5rem;display:inline-block}.mc-left-icon-input [mozInputIcon]{left:.75rem;top:50%;width:1.5rem;height:1.5rem;position:absolute;z-index:1;transform:translateY(-50%);fill:#666;pointer-events:none}.mc-left-icon-input [moz-input]{padding-left:2.9375rem}\n"] }]
531
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { label: [{
532
- type: Input
533
- }], requirementText: [{
534
- type: Input
535
- }], helpText: [{
536
- type: Input
537
- }], InputIconDirective: [{
538
- type: ContentChildren,
539
- args: [MOZ_INPUT_ICON, { descendants: true }]
540
- }] } });
541
-
542
- class FieldModule {
543
- }
544
- FieldModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
545
- FieldModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FieldModule, declarations: [FieldComponent, FieldErrorComponent, InputIconDirective], imports: [CommonModule], exports: [FieldComponent, FieldErrorComponent, InputIconDirective] });
546
- FieldModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldModule, imports: [CommonModule] });
547
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FieldModule, decorators: [{
548
- type: NgModule,
549
- args: [{
550
- imports: [CommonModule],
551
- declarations: [FieldComponent, FieldErrorComponent, InputIconDirective],
552
- exports: [FieldComponent, FieldErrorComponent, InputIconDirective],
553
- }]
554
- }] });
555
-
556
- var IconSize;
557
- (function (IconSize) {
558
- IconSize["S"] = "16px";
559
- IconSize["M"] = "24px";
560
- IconSize["L"] = "32px";
561
- IconSize["XL"] = "48px";
562
- })(IconSize || (IconSize = {}));
563
-
564
- class IconService {
565
- constructor(http) {
566
- this.http = http;
567
- this.cachedIcons = new Map();
568
- this.cachedRequests = new Map();
569
- }
570
- getIcon(name) {
571
- const cacheIcon = this.cachedIcons.get(name);
572
- const cachedRequest = this.cachedRequests.get(name);
573
- if (cacheIcon) {
574
- return of(cacheIcon);
575
- }
576
- if (cachedRequest) {
577
- return cachedRequest;
578
- }
579
- const url = `/assets/moz-icons/${name}.svg`;
580
- const request = this.http.get(url, { responseType: 'text' }).pipe(tap((svg) => this.cachedIcons.set(name, svg)), catchError(() => throwError(() => this.getNotFoundError(name))), finalize(() => this.cachedRequests.delete(name)), shareReplay({ refCount: true, bufferSize: 1 }));
581
- this.cachedRequests.set(name, request);
582
- return request;
583
- }
584
- getNotFoundError(name) {
585
- return Error(`
586
- The icon (${name}) you are trying to display does not exist.
587
- Maybe the name is incorrect.
588
- => (See all available icons: http://mozaic.adeo.cloud/Foundations/Icons/catalog/)`);
589
- }
590
- }
591
- IconService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconService, deps: [{ token: i1$1.HttpClient, host: true }], target: i0.ɵɵFactoryTarget.Injectable });
592
- IconService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconService, providedIn: 'root' });
593
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconService, decorators: [{
594
- type: Injectable,
595
- args: [{
596
- providedIn: 'root',
597
- }]
598
- }], ctorParameters: function () {
599
- return [{ type: i1$1.HttpClient, decorators: [{
600
- type: Host
601
- }] }];
602
- } });
603
-
604
- class IconComponent {
605
- constructor(iconService, elementRef) {
606
- this.iconService = iconService;
607
- this.elementRef = elementRef;
608
- this.iconName = '';
609
- }
610
- ngOnChanges({ iconName }) {
611
- this.needRenderIcon(iconName === null || iconName === void 0 ? void 0 : iconName.currentValue, iconName === null || iconName === void 0 ? void 0 : iconName.previousValue) &&
612
- this.drawIcon(iconName === null || iconName === void 0 ? void 0 : iconName.currentValue, iconName === null || iconName === void 0 ? void 0 : iconName.previousValue);
613
- }
614
- needRenderIcon(currentIconName, previousIconName) {
615
- return !!currentIconName && currentIconName !== previousIconName;
616
- }
617
- getSizeClass(name) {
618
- const [size] = name.match(/\d\dpx/) || [];
619
- const strategy = {
620
- [IconSize.S]: 'icons-size-s',
621
- [IconSize.M]: 'icons-size-m',
622
- [IconSize.L]: 'icons-size-l',
623
- [IconSize.XL]: 'icons-size-xl',
624
- };
625
- return strategy[size || null] || strategy[IconSize.S];
626
- }
627
- drawIcon(iconName, previousIconName) {
628
- this.iconService
629
- .getIcon(iconName)
630
- .pipe(first())
631
- .subscribe((svg) => {
632
- this.elementRef.nativeElement.innerHTML = svg;
633
- previousIconName &&
634
- this.elementRef.nativeElement.classList.remove(this.getSizeClass(previousIconName));
635
- this.elementRef.nativeElement.classList.add(this.getSizeClass(iconName));
636
- });
637
- }
638
- }
639
- IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconComponent, deps: [{ token: IconService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
640
- IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: IconComponent, selector: "moz-icon", inputs: { iconName: "iconName" }, host: { properties: { "class.icon": "true" } }, usesOnChanges: true, ngImport: i0, template: "", styles: [".icon{display:inline-flex}.icons-size-s{height:1rem;width:1rem}.icons-size-m{height:1.5rem;width:1.5rem}.icons-size-l{height:2rem;width:2rem}.icons-size-xl{height:3rem;width:3rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
641
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconComponent, decorators: [{
642
- type: Component,
643
- args: [{ selector: 'moz-icon', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.icon]': 'true' }, template: "", styles: [".icon{display:inline-flex}.icons-size-s{height:1rem;width:1rem}.icons-size-m{height:1.5rem;width:1.5rem}.icons-size-l{height:2rem;width:2rem}.icons-size-xl{height:3rem;width:3rem}\n"] }]
644
- }], ctorParameters: function () { return [{ type: IconService }, { type: i0.ElementRef }]; }, propDecorators: { iconName: [{
645
- type: Input
646
- }] } });
647
-
648
- class IconModule {
649
- }
650
- IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
651
- IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
652
- IconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconModule, imports: [CommonModule] });
653
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IconModule, decorators: [{
654
- type: NgModule,
655
- args: [{
656
- declarations: [IconComponent],
657
- imports: [CommonModule],
658
- exports: [IconComponent],
659
- }]
660
- }] });
661
-
662
- const layerAnimation = trigger('layerAnimation', [
663
- transition(':enter', group([
664
- query(':self', [style({ opacity: 0 }), animate(200, style({ opacity: 1 }))]),
665
- query('.mc-layer', [
666
- style({ transform: 'translateX(250px)' }),
667
- animate(200, style({ transform: 'translateX(0)' })),
668
- ]),
669
- ])),
670
- transition(':leave', group([
671
- query(':self', [animate(200, style({ opacity: 0 }))]),
672
- query('.mc-layer', [
673
- style({ transform: 'translateX(0)' }),
674
- animate(200, style({ transform: 'translateX(250px)' })),
675
- ]),
676
- ])),
677
- ]);
678
-
679
- const LAYER_CONFIG = new InjectionToken('LAYER_CONFIG_TOKEN');
680
-
681
- const LAYER_DATA = new InjectionToken('LAYER_DATA_TOKEN');
682
-
683
- const LAYER_REF = new InjectionToken('LAYER_DATA_TOKEN');
684
-
685
- class LayerComponent {
686
- get title() {
687
- return this.config.title || 'Layer title';
688
- }
689
- constructor(layerRef, config, cd) {
690
- this.layerRef = layerRef;
691
- this.config = config;
692
- this.cd = cd;
693
- }
694
- ngAfterViewInit() {
695
- this.initChildComponent(this.childComponentType);
696
- }
697
- initChildComponent(componentType) {
698
- this.childComponentRef = this.contentViewRef.createComponent(componentType);
699
- this.cd.detectChanges();
700
- }
701
- close() {
702
- this.layerRef.close();
703
- }
704
- }
705
- LayerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerComponent, deps: [{ token: LAYER_REF }, { token: LAYER_CONFIG }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
706
- LayerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: LayerComponent, selector: "moz-layer", host: { properties: { "@layerAnimation": "true" } }, viewQueries: [{ propertyName: "contentViewRef", first: true, predicate: ["content"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div\n class=\"mc-layer\"\n role=\"dialog\"\n aria-labelledby=\"layerTitle\"\n aria-modal=\"true\"\n aria-hidden=\"true\"\n tabindex=\"-1\"\n>\n <div class=\"mc-layer__dialog is-open\" role=\"document\">\n <div class=\"mc-layer__header\">\n <h2 class=\"mc-layer__title\" id=\"layerTitle\">{{ title }}</h2>\n <button class=\"mc-layer__close\" type=\"button\" (click)=\"close()\">\n <span class=\"mc-layer__close-text\">Close</span>\n </button>\n </div>\n <div class=\"mc-layer__body\">\n <ng-template #content></ng-template>\n </div>\n </div>\n</div>\n<div class=\"mc-layer-overlay is-visible\" tabindex=\"-1\" role=\"dialog\"></div>\n", styles: [".mc-layer{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;inset:0;outline:0;pointer-events:none;position:fixed;z-index:1999999999;display:flex;overflow:hidden}.mc-layer *{box-sizing:inherit}.mc-layer--ltr{justify-content:flex-start}.mc-layer--ltr .mc-layer__dialog{transform:translate3d(-100%,0,0)}.mc-layer:not(.mc-layer--ltr){justify-content:flex-end}.mc-layer:not(.mc-layer--ltr) .mc-layer__dialog{transform:translate3d(100%,0,0)}.mc-layer__dialog{background:#ffffff;display:flex;flex-direction:column;height:100%;max-width:calc(100% - 2rem);transition:visibility 0s linear .4s,transform .4s;visibility:hidden;width:100%}@media screen and (min-width: 680px){.mc-layer__dialog{max-width:25rem}}@media screen and (min-width: 769px){.mc-layer__dialog{max-width:28.6875rem}}@media screen and (min-width: 1024px){.mc-layer__dialog{max-width:28rem}}@media screen and (min-width: 680px){.mc-layer__dialog--extend{max-width:31.75rem}}@media screen and (min-width: 769px){.mc-layer__dialog--extend{max-width:36.3125rem}}@media screen and (min-width: 1024px){.mc-layer__dialog--extend{max-width:43rem}}.mc-layer__header,.mc-layer__footer{padding-left:1rem;padding-right:1rem}@media screen and (min-width: 1024px){.mc-layer__header,.mc-layer__footer{padding-left:2rem;padding-right:2rem}}.mc-layer__header{display:flex;align-items:center;padding-bottom:.5rem;padding-top:1rem;min-height:3.75rem;position:relative}.mc-layer__header:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 1024px){.mc-layer__header{padding-bottom:.75rem;padding-top:1.25rem;min-height:4.25rem}}.mc-layer__icon{fill:#666;height:1.5rem;margin-right:.75rem;width:1.5rem}.mc-layer__title{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#666;margin-bottom:0;margin-top:0}.mc-layer__close{box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;position:relative;align-self:flex-start;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#808080\"><path d=\"M17.41 16l8.8-8.79a1 1 0 10-1.42-1.42L16 14.59l-8.79-8.8a1 1 0 00-1.42 1.42l8.8 8.79-8.8 8.79a1 1 0 000 1.42 1 1 0 001.42 0l8.79-8.8 8.79 8.8a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:contain;cursor:pointer;height:2rem;margin:0 0 0 auto;width:2rem}.mc-layer__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-layer__close-text{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-layer__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-layer__body{flex:1 1;overflow:hidden;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 1024px){.mc-layer__body{padding-left:1rem;padding-right:1rem}}.mc-layer__body--overflowing+.mc-layer__footer,.mc-layer__body--overflowing-scroll-edge+.mc-layer__footer{box-shadow:0 4px 20px #19191933;position:relative}.mc-layer__body--overflowing-scroll-edge{padding-left:0;padding-right:0}.mc-layer__body--overflowing-scroll-edge .mc-layer__content{padding-left:1rem;padding-right:1.125rem}@media screen and (min-width: 1024px){.mc-layer__body--overflowing-scroll-edge .mc-layer__content{padding-left:2rem;padding-right:2rem}}.mc-layer__body--scroll-end+.mc-layer__footer{box-shadow:none}.mc-layer__content{max-height:100%;overflow-y:auto;overflow-x:hidden;padding:1.5rem .5rem 3rem;scrollbar-color:#666666 #e6e6e6;scrollbar-width:thin}@media screen and (min-width: 1024px){.mc-layer__content{padding-left:1rem;padding-right:1rem}}.mc-layer__content::-webkit-scrollbar{background-color:#e6e6e6;width:.25rem}.mc-layer__content::-webkit-scrollbar-thumb{background:#666666}.mc-layer__footer{display:flex;flex-direction:column;padding-top:1rem;padding-bottom:1rem}@media screen and (min-width: 1024px){.mc-layer__footer{align-items:center;flex-direction:row;justify-content:center;padding-top:1.5rem;padding-bottom:1.5rem}}.mc-layer__footer>:first-child:not(:only-child){margin-bottom:.75rem}@media screen and (min-width: 1024px){.mc-layer__footer>:first-child:not(:only-child){margin-bottom:0;margin-right:1rem}}.mc-layer-open{overflow:hidden}.mc-layer .mc-layer__dialog.is-open{pointer-events:all;transform:translateZ(0);transition:visibility 0s linear 0s,transform .4s;visibility:visible}.mc-layer-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-layer-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}\n"], animations: [layerAnimation], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
707
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerComponent, decorators: [{
708
- type: Component,
709
- args: [{ selector: 'moz-layer', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, animations: [layerAnimation], host: { '[@layerAnimation]': 'true' }, template: "<div\n class=\"mc-layer\"\n role=\"dialog\"\n aria-labelledby=\"layerTitle\"\n aria-modal=\"true\"\n aria-hidden=\"true\"\n tabindex=\"-1\"\n>\n <div class=\"mc-layer__dialog is-open\" role=\"document\">\n <div class=\"mc-layer__header\">\n <h2 class=\"mc-layer__title\" id=\"layerTitle\">{{ title }}</h2>\n <button class=\"mc-layer__close\" type=\"button\" (click)=\"close()\">\n <span class=\"mc-layer__close-text\">Close</span>\n </button>\n </div>\n <div class=\"mc-layer__body\">\n <ng-template #content></ng-template>\n </div>\n </div>\n</div>\n<div class=\"mc-layer-overlay is-visible\" tabindex=\"-1\" role=\"dialog\"></div>\n", styles: [".mc-layer{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;inset:0;outline:0;pointer-events:none;position:fixed;z-index:1999999999;display:flex;overflow:hidden}.mc-layer *{box-sizing:inherit}.mc-layer--ltr{justify-content:flex-start}.mc-layer--ltr .mc-layer__dialog{transform:translate3d(-100%,0,0)}.mc-layer:not(.mc-layer--ltr){justify-content:flex-end}.mc-layer:not(.mc-layer--ltr) .mc-layer__dialog{transform:translate3d(100%,0,0)}.mc-layer__dialog{background:#ffffff;display:flex;flex-direction:column;height:100%;max-width:calc(100% - 2rem);transition:visibility 0s linear .4s,transform .4s;visibility:hidden;width:100%}@media screen and (min-width: 680px){.mc-layer__dialog{max-width:25rem}}@media screen and (min-width: 769px){.mc-layer__dialog{max-width:28.6875rem}}@media screen and (min-width: 1024px){.mc-layer__dialog{max-width:28rem}}@media screen and (min-width: 680px){.mc-layer__dialog--extend{max-width:31.75rem}}@media screen and (min-width: 769px){.mc-layer__dialog--extend{max-width:36.3125rem}}@media screen and (min-width: 1024px){.mc-layer__dialog--extend{max-width:43rem}}.mc-layer__header,.mc-layer__footer{padding-left:1rem;padding-right:1rem}@media screen and (min-width: 1024px){.mc-layer__header,.mc-layer__footer{padding-left:2rem;padding-right:2rem}}.mc-layer__header{display:flex;align-items:center;padding-bottom:.5rem;padding-top:1rem;min-height:3.75rem;position:relative}.mc-layer__header:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 1024px){.mc-layer__header{padding-bottom:.75rem;padding-top:1.25rem;min-height:4.25rem}}.mc-layer__icon{fill:#666;height:1.5rem;margin-right:.75rem;width:1.5rem}.mc-layer__title{font-size:.875rem;line-height:1.2857142857;font-weight:400;color:#666;margin-bottom:0;margin-top:0}.mc-layer__close{box-shadow:none;text-decoration:none;outline:none;border:none;padding:0;position:relative;align-self:flex-start;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#808080\"><path d=\"M17.41 16l8.8-8.79a1 1 0 10-1.42-1.42L16 14.59l-8.79-8.8a1 1 0 00-1.42 1.42l8.8 8.79-8.8 8.79a1 1 0 000 1.42 1 1 0 001.42 0l8.79-8.8 8.79 8.8a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:contain;cursor:pointer;height:2rem;margin:0 0 0 auto;width:2rem}.mc-layer__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-layer__close-text{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-layer__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-layer__body{flex:1 1;overflow:hidden;padding-left:.5rem;padding-right:.5rem}@media screen and (min-width: 1024px){.mc-layer__body{padding-left:1rem;padding-right:1rem}}.mc-layer__body--overflowing+.mc-layer__footer,.mc-layer__body--overflowing-scroll-edge+.mc-layer__footer{box-shadow:0 4px 20px #19191933;position:relative}.mc-layer__body--overflowing-scroll-edge{padding-left:0;padding-right:0}.mc-layer__body--overflowing-scroll-edge .mc-layer__content{padding-left:1rem;padding-right:1.125rem}@media screen and (min-width: 1024px){.mc-layer__body--overflowing-scroll-edge .mc-layer__content{padding-left:2rem;padding-right:2rem}}.mc-layer__body--scroll-end+.mc-layer__footer{box-shadow:none}.mc-layer__content{max-height:100%;overflow-y:auto;overflow-x:hidden;padding:1.5rem .5rem 3rem;scrollbar-color:#666666 #e6e6e6;scrollbar-width:thin}@media screen and (min-width: 1024px){.mc-layer__content{padding-left:1rem;padding-right:1rem}}.mc-layer__content::-webkit-scrollbar{background-color:#e6e6e6;width:.25rem}.mc-layer__content::-webkit-scrollbar-thumb{background:#666666}.mc-layer__footer{display:flex;flex-direction:column;padding-top:1rem;padding-bottom:1rem}@media screen and (min-width: 1024px){.mc-layer__footer{align-items:center;flex-direction:row;justify-content:center;padding-top:1.5rem;padding-bottom:1.5rem}}.mc-layer__footer>:first-child:not(:only-child){margin-bottom:.75rem}@media screen and (min-width: 1024px){.mc-layer__footer>:first-child:not(:only-child){margin-bottom:0;margin-right:1rem}}.mc-layer-open{overflow:hidden}.mc-layer .mc-layer__dialog.is-open{pointer-events:all;transform:translateZ(0);transition:visibility 0s linear 0s,transform .4s;visibility:visible}.mc-layer-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-layer-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}\n"] }]
710
- }], ctorParameters: function () {
711
- return [{ type: undefined, decorators: [{
712
- type: Inject,
713
- args: [LAYER_REF]
714
- }] }, { type: undefined, decorators: [{
715
- type: Inject,
716
- args: [LAYER_CONFIG]
717
- }] }, { type: i0.ChangeDetectorRef }];
718
- }, propDecorators: { contentViewRef: [{
719
- type: ViewChild,
720
- args: ['content', { read: ViewContainerRef, static: true }]
721
- }] } });
722
-
723
- class LayerInjector {
724
- constructor({ injector, layerRef }) {
725
- this.parentInjector = injector;
726
- this.layerRef = layerRef;
727
- this.initAdditionalTokens();
728
- }
729
- get(token, notFoundValue) {
730
- const value = this.additionalTokens.get(token);
731
- if (value) {
732
- return value;
733
- }
734
- return this.parentInjector.get(token, notFoundValue);
735
- }
736
- initAdditionalTokens() {
737
- this.additionalTokens = new WeakMap();
738
- this.additionalTokens.set(LAYER_REF, this.layerRef);
739
- this.additionalTokens.set(LAYER_CONFIG, this.layerRef.config);
740
- this.additionalTokens.set(LAYER_DATA, this.layerRef.config.data);
741
- }
742
- }
743
-
744
- class LayerRefModel {
745
- get afterClosed$() {
746
- return this._afterClosed$.pipe(first());
747
- }
748
- get config$() {
749
- return this._config$.asObservable();
750
- }
751
- get config() {
752
- return this._config$.getValue();
753
- }
754
- get componentRef() {
755
- return this._componentRef;
756
- }
757
- constructor(layerConfig) {
758
- this.layerConfig = layerConfig;
759
- this._config$ = new BehaviorSubject({});
760
- this._afterClosed$ = new Subject();
761
- this.init(layerConfig);
762
- }
763
- init(config) {
764
- this.updateConfig(config);
765
- }
766
- updateConfig(config) {
767
- this._config$.next(Object.assign(Object.assign({}, this.config), config));
768
- }
769
- close(result) {
770
- this._afterClosed$.next(result);
771
- }
772
- setComponentRef(componentRef) {
773
- this._componentRef = componentRef;
774
- }
775
- destroy() {
776
- this._config$.complete();
777
- this._afterClosed$.complete();
778
- }
779
- }
780
-
781
- class LayerService {
782
- constructor(componentFactoryResolver, injector, applicationRef, document) {
783
- this.componentFactoryResolver = componentFactoryResolver;
784
- this.injector = injector;
785
- this.applicationRef = applicationRef;
786
- this.document = document;
787
- }
788
- open(component, config = {}) {
789
- const layerRef = this.createLayer(config);
790
- this.applyChildComponent({ component, layerRef });
791
- return layerRef;
792
- }
793
- createLayer(config) {
794
- const layerRef = new LayerRefModel(config);
795
- const layerInjector = new LayerInjector({ injector: this.injector, layerRef });
796
- const componentRef = this.createComponentRef(layerInjector);
797
- layerRef.setComponentRef(componentRef);
798
- this.appendLayerComponentToBody(componentRef);
799
- this.initDialogRefAfterClosedObserver(layerRef, componentRef);
800
- return layerRef;
801
- }
802
- initDialogRefAfterClosedObserver(layerRef, componentRef) {
803
- layerRef.afterClosed$.subscribe(() => componentRef.destroy());
804
- }
805
- createComponentRef(injector) {
806
- return this.componentFactoryResolver.resolveComponentFactory(LayerComponent).create(injector);
807
- }
808
- appendLayerComponentToBody(componentRef) {
809
- const componentHostView = componentRef.hostView;
810
- const componentHtmlElement = componentHostView.rootNodes[0];
811
- this.applicationRef.attachView(componentHostView);
812
- this.document.body.appendChild(componentHtmlElement);
813
- }
814
- applyChildComponent({ layerRef, component, }) {
815
- const { instance } = layerRef.componentRef;
816
- instance.childComponentType = component;
817
- }
818
- }
819
- LayerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
820
- LayerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerService, providedIn: 'root' });
821
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerService, decorators: [{
822
- type: Injectable,
823
- args: [{
824
- providedIn: 'root',
825
- }]
826
- }], ctorParameters: function () {
827
- return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ApplicationRef }, { type: Document, decorators: [{
828
- type: Inject,
829
- args: [DOCUMENT]
830
- }] }];
831
- } });
832
-
833
- class LayerModule {
834
- }
835
- LayerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
836
- LayerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: LayerModule, declarations: [LayerComponent], imports: [CommonModule, IconModule], exports: [LayerComponent] });
837
- LayerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerModule, providers: [LayerService], imports: [CommonModule, IconModule] });
838
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LayerModule, decorators: [{
839
- type: NgModule,
840
- args: [{
841
- imports: [CommonModule, IconModule],
842
- providers: [LayerService],
843
- declarations: [LayerComponent],
844
- exports: [LayerComponent],
845
- }]
846
- }] });
847
-
848
- const CIRCLE_VIEW_BOX_SIZES = {
849
- s: '0 0 24 24',
850
- m: '0 0 32 32',
851
- l: '0 0 64 64',
852
- };
853
- const CIRCLE_RADIUSES = {
854
- s: 6,
855
- m: 9,
856
- l: 19,
857
- };
858
-
859
- class LoaderComponent {
860
- get viewText() {
861
- return this.isOverlay && !!this.text;
862
- }
863
- get overlayCssClasses() {
864
- return {
865
- 'mc-overlay-loader': true,
866
- 'is-visible': !this.hideOverlay,
867
- };
868
- }
869
- get loaderCssClasses() {
870
- return {
871
- 'mc-loader': true,
872
- [`mc-loader--${this.size}`]: true,
873
- [`mc-loader--${this.theme}`]: this.theme !== 'primary',
874
- };
875
- }
876
- get viewBoxSize() {
877
- return CIRCLE_VIEW_BOX_SIZES[this.size];
878
- }
879
- get radius() {
880
- return CIRCLE_RADIUSES[this.size];
881
- }
882
- constructor(cd) {
883
- this.cd = cd;
884
- this.size = 'm';
885
- this.theme = 'primary';
886
- this.isOverlay = false;
887
- this.hideOverlay = true;
888
- this.text = '';
889
- }
890
- }
891
- LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
892
- LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: LoaderComponent, selector: "moz-loader", inputs: { size: "size", theme: "theme" }, host: { properties: { "class.loader": "!isOverlay" } }, ngImport: i0, template: "<ng-template #loader>\n <div [ngClass]=\"loaderCssClasses\">\n <span class=\"mc-loader__spinner\">\n <svg class=\"mc-loader__icon\" xmlns=\"http://www.w3.org/2000/svg\" [attr.viewBox]=\"viewBoxSize\">\n <circle class=\"mc-loader__path\" cx=\"50%\" cy=\"50%\" [attr.r]=\"radius\" />\n </svg>\n </span>\n\n <span class=\"mc-loader__text\" *ngIf=\"viewText\">{{ text }}</span>\n </div>\n</ng-template>\n\n<div [ngClass]=\"overlayCssClasses\" tabindex=\"-1\" role=\"dialog\" *ngIf=\"isOverlay; else loader\">\n <ng-container [ngTemplateOutlet]=\"loader\"></ng-container>\n</div>\n", styles: [".mc-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}.mc-overlay-loader{background-color:#191919b3;inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998;align-items:center;display:flex;justify-content:center}.mc-overlay-loader.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}.mc-loader{color:#188803;align-items:center;display:inline-flex;flex-direction:column}.mc-loader .mc-loader__spinner{height:2rem;width:2rem}.mc-loader .mc-loader__path{stroke-width:4}.mc-loader .mc-loader__path{stroke:currentColor}.mc-loader__spinner:not(:only-child){margin-bottom:1rem}.mc-loader__icon{animation:rotate-loader 2s linear infinite;transform-origin:center}.mc-loader__path{fill:none;stroke-dasharray:1,200;stroke-dashoffset:0;stroke-linecap:round;animation:animate-dash-loader 2s ease-in-out infinite}.mc-loader__text{font-size:1rem;line-height:1.375;color:currentColor}.mc-loader--s .mc-loader__spinner{height:1.5rem;width:1.5rem}.mc-loader--s .mc-loader__path{stroke-width:4}.mc-loader--l .mc-loader__spinner{height:4rem;width:4rem}.mc-loader--l .mc-loader__path{stroke-width:8}.mc-loader--dark{color:#191919}.mc-loader--dark .mc-loader__path{stroke:currentColor}.mc-loader--light{color:#fff}.mc-loader--light .mc-loader__path{stroke:currentColor}@keyframes rotate-loader{0%{transform:rotate(0)}to{transform:rotate(270deg)}}@keyframes animate-dash-loader{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.loader{display:inline-flex}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
893
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderComponent, decorators: [{
894
- type: Component,
895
- args: [{ selector: 'moz-loader', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.loader]': '!isOverlay' }, template: "<ng-template #loader>\n <div [ngClass]=\"loaderCssClasses\">\n <span class=\"mc-loader__spinner\">\n <svg class=\"mc-loader__icon\" xmlns=\"http://www.w3.org/2000/svg\" [attr.viewBox]=\"viewBoxSize\">\n <circle class=\"mc-loader__path\" cx=\"50%\" cy=\"50%\" [attr.r]=\"radius\" />\n </svg>\n </span>\n\n <span class=\"mc-loader__text\" *ngIf=\"viewText\">{{ text }}</span>\n </div>\n</ng-template>\n\n<div [ngClass]=\"overlayCssClasses\" tabindex=\"-1\" role=\"dialog\" *ngIf=\"isOverlay; else loader\">\n <ng-container [ngTemplateOutlet]=\"loader\"></ng-container>\n</div>\n", styles: [".mc-overlay{background-color:#191919b3;filter:blur(1px);inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998}.mc-overlay.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}.mc-overlay-loader{background-color:#191919b3;inset:0;opacity:0;position:fixed;pointer-events:none;transition:opacity .4s ease,visibility 0ms .4s;z-index:1999999998;align-items:center;display:flex;justify-content:center}.mc-overlay-loader.is-visible{opacity:1;pointer-events:all;transition:opacity .4s ease,visibility 0ms;visibility:visible}.mc-loader{color:#188803;align-items:center;display:inline-flex;flex-direction:column}.mc-loader .mc-loader__spinner{height:2rem;width:2rem}.mc-loader .mc-loader__path{stroke-width:4}.mc-loader .mc-loader__path{stroke:currentColor}.mc-loader__spinner:not(:only-child){margin-bottom:1rem}.mc-loader__icon{animation:rotate-loader 2s linear infinite;transform-origin:center}.mc-loader__path{fill:none;stroke-dasharray:1,200;stroke-dashoffset:0;stroke-linecap:round;animation:animate-dash-loader 2s ease-in-out infinite}.mc-loader__text{font-size:1rem;line-height:1.375;color:currentColor}.mc-loader--s .mc-loader__spinner{height:1.5rem;width:1.5rem}.mc-loader--s .mc-loader__path{stroke-width:4}.mc-loader--l .mc-loader__spinner{height:4rem;width:4rem}.mc-loader--l .mc-loader__path{stroke-width:8}.mc-loader--dark{color:#191919}.mc-loader--dark .mc-loader__path{stroke:currentColor}.mc-loader--light{color:#fff}.mc-loader--light .mc-loader__path{stroke:currentColor}@keyframes rotate-loader{0%{transform:rotate(0)}to{transform:rotate(270deg)}}@keyframes animate-dash-loader{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.loader{display:inline-flex}\n"] }]
896
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { size: [{
897
- type: Input
898
- }], theme: [{
899
- type: Input
900
- }] } });
901
-
902
- class LoaderService {
903
- get _loaderComponent() {
904
- return this._loaderRef.instance;
905
- }
906
- constructor(applicationRef, componentFactoryResolver, injector, document) {
907
- this.applicationRef = applicationRef;
908
- this.componentFactoryResolver = componentFactoryResolver;
909
- this.injector = injector;
910
- this.document = document;
911
- this._loaderRef = this.createComponentRef();
912
- this._loaderComponent.isOverlay = true;
913
- this._loaderComponent.theme = 'light';
914
- this.appendLoaderToBody(this._loaderRef);
915
- }
916
- startLoad(config) {
917
- const { size = 'l', text = '' } = config || {};
918
- this._loaderComponent.size = size;
919
- this._loaderComponent.text = text;
920
- this._loaderComponent.hideOverlay = false;
921
- this._loaderComponent.cd.markForCheck();
922
- }
923
- stopLoad() {
924
- this._loaderComponent.hideOverlay = true;
925
- this._loaderComponent.cd.markForCheck();
926
- }
927
- createComponentRef() {
928
- return this.componentFactoryResolver
929
- .resolveComponentFactory(LoaderComponent)
930
- .create(this.injector);
931
- }
932
- appendLoaderToBody(componentRef) {
933
- const componentHostView = componentRef.hostView;
934
- const componentHtmlElement = componentHostView.rootNodes[0];
935
- this.applicationRef.attachView(componentHostView);
936
- this.document.body.appendChild(componentHtmlElement);
937
- }
938
- }
939
- LoaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
940
- LoaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderService, providedIn: 'root' });
941
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderService, decorators: [{
942
- type: Injectable,
943
- args: [{
944
- providedIn: 'root',
945
- }]
946
- }], ctorParameters: function () {
947
- return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: Document, decorators: [{
948
- type: Inject,
949
- args: [DOCUMENT]
950
- }] }];
951
- } });
952
-
953
- class LoaderModule {
954
- }
955
- LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
956
- LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: LoaderModule, declarations: [LoaderComponent], imports: [CommonModule], exports: [LoaderComponent] });
957
- LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderModule, providers: [LoaderService], imports: [CommonModule] });
958
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LoaderModule, decorators: [{
959
- type: NgModule,
960
- args: [{
961
- imports: [CommonModule],
962
- declarations: [LoaderComponent],
963
- providers: [LoaderService],
964
- exports: [LoaderComponent],
965
- }]
966
- }] });
967
-
968
- const NOTIFICATION_CONFIG = new InjectionToken('NOTIFICATION_CONFIG');
969
- class NotificationConfigFactory {
970
- static create(config = {}) {
971
- return Object.assign({ duration: 3000 }, config);
972
- }
973
- }
974
-
975
- const NotificationAnimation = trigger('fadeIn', [
976
- transition(':enter', [
977
- style({ opacity: 1, transform: 'translateY(50%)' }),
978
- animate('300ms ease-out', style({ transform: 'translateY(0)' })),
979
- ]),
980
- transition(':leave', [
981
- group([
982
- query('.mc-notification__title', [animate('200ms', style({ opacity: 0, height: 0 }))], {
983
- optional: true,
984
- }),
985
- query('.mc-notification__message', [animate('200ms', style({ opacity: 0, height: 0 }))], {
986
- optional: true,
987
- }),
988
- query(':self', [
989
- animate('300ms', style({ opacity: 0, height: 0, padding: 0, transform: 'translateY(-200%)' })),
990
- ]),
991
- ]),
992
- ]),
993
- ]);
994
-
995
- class NotificationComponent {
996
- constructor() {
997
- this.type = 'information';
998
- this.size = 'm';
999
- }
1000
- get hostCssClasses() {
1001
- const staticClasses = 'mc-notification';
1002
- const sizeCssClass = `mc-notification--${this.size}`;
1003
- const typeCssClass = `mc-notification--${this.type}`;
1004
- const dynamicClasses = `${sizeCssClass} ${typeCssClass}`;
1005
- return `${staticClasses} ${dynamicClasses}`;
1006
- }
1007
- }
1008
- NotificationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1009
- NotificationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationComponent, selector: "moz-notification", inputs: { type: "type", size: "size" }, host: { properties: { "class.mc-notification": "true", "class": "this.hostCssClasses" } }, ngImport: i0, template: "<div class=\"mc-notification__content\">\n <ng-content select=\"[mozNotificationTitle]\"></ng-content>\n <ng-content select=\"[mozNotificationMessage]\"></ng-content>\n <ng-content select=\"[mozNotificationFooter]\"></ng-content>\n</div>\n", styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1010
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationComponent, decorators: [{
1011
- type: Component,
1012
- args: [{ selector: 'moz-notification', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification]': 'true' }, template: "<div class=\"mc-notification__content\">\n <ng-content select=\"[mozNotificationTitle]\"></ng-content>\n <ng-content select=\"[mozNotificationMessage]\"></ng-content>\n <ng-content select=\"[mozNotificationFooter]\"></ng-content>\n</div>\n", styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"] }]
1013
- }], propDecorators: { type: [{
1014
- type: Input
1015
- }], size: [{
1016
- type: Input
1017
- }], hostCssClasses: [{
1018
- type: HostBinding,
1019
- args: ['class']
1020
- }] } });
1021
-
1022
- class NotificationTitleComponent {
1023
- }
1024
- NotificationTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1025
- NotificationTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationTitleComponent, selector: "[mozNotificationTitle]", host: { properties: { "class.mc-notification__title": "true" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1026
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationTitleComponent, decorators: [{
1027
- type: Component,
1028
- args: [{ template: '<ng-content></ng-content>', selector: '[mozNotificationTitle]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification__title]': 'true' }, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"] }]
1029
- }] });
1030
-
1031
- class NotificationMessageComponent {
1032
- }
1033
- NotificationMessageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1034
- NotificationMessageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationMessageComponent, selector: "[mozNotificationMessage]", host: { properties: { "class.mc-notification__message": "true" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1035
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, decorators: [{
1036
- type: Component,
1037
- args: [{ template: '<ng-content></ng-content>', selector: '[mozNotificationMessage]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification__message]': 'true' }, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"] }]
1038
- }] });
1039
-
1040
- class NotificationContainerComponent {
1041
- constructor(notificationConfig) {
1042
- this.notificationConfig = notificationConfig;
1043
- this._notifications = new BehaviorSubject([]);
1044
- }
1045
- get notifications() {
1046
- return this._notifications.asObservable();
1047
- }
1048
- add(notification) {
1049
- this._notifications.next([...this._notifications.value, notification]);
1050
- this.autoremove(notification);
1051
- }
1052
- autoremove(notification) {
1053
- setTimeout(() => {
1054
- const newState = this._notifications.value.filter((n) => n !== notification);
1055
- this._notifications.next(newState);
1056
- }, this.notificationConfig.duration);
1057
- }
1058
- }
1059
- NotificationContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationContainerComponent, deps: [{ token: NOTIFICATION_CONFIG }], target: i0.ɵɵFactoryTarget.Component });
1060
- NotificationContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationContainerComponent, selector: "moz-notification-container", ngImport: i0, template: "<ng-container *ngFor=\"let notification of notifications | async\">\n <moz-notification size=\"s\" [type]=\"notification.type\" @fadeIn>\n <h3 mozNotificationTitle *ngIf=\"notification.title\">{{ notification.title }}</h3>\n <p mozNotificationMessage *ngIf=\"notification.message\">{{ notification.message }}</p>\n </moz-notification>\n</ng-container>\n", styles: [":host{position:fixed;top:1rem;opacity:.9;display:flex;flex-direction:column;gap:1rem;width:20rem;right:1rem}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: NotificationComponent, selector: "moz-notification", inputs: ["type", "size"] }, { kind: "component", type: NotificationTitleComponent, selector: "[mozNotificationTitle]" }, { kind: "component", type: NotificationMessageComponent, selector: "[mozNotificationMessage]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], animations: [NotificationAnimation], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1061
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationContainerComponent, decorators: [{
1062
- type: Component,
1063
- args: [{ selector: 'moz-notification-container', changeDetection: ChangeDetectionStrategy.OnPush, animations: [NotificationAnimation], template: "<ng-container *ngFor=\"let notification of notifications | async\">\n <moz-notification size=\"s\" [type]=\"notification.type\" @fadeIn>\n <h3 mozNotificationTitle *ngIf=\"notification.title\">{{ notification.title }}</h3>\n <p mozNotificationMessage *ngIf=\"notification.message\">{{ notification.message }}</p>\n </moz-notification>\n</ng-container>\n", styles: [":host{position:fixed;top:1rem;opacity:.9;display:flex;flex-direction:column;gap:1rem;width:20rem;right:1rem}\n"] }]
1064
- }], ctorParameters: function () {
1065
- return [{ type: undefined, decorators: [{
1066
- type: Inject,
1067
- args: [NOTIFICATION_CONFIG]
1068
- }] }];
1069
- } });
1070
-
1071
- class NotificationFooterComponent {
1072
- }
1073
- NotificationFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1074
- NotificationFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationFooterComponent, selector: "[mozNotificationFooter]", host: { properties: { "class.mc-notification__footer": "true" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1075
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationFooterComponent, decorators: [{
1076
- type: Component,
1077
- args: [{ template: '<ng-content></ng-content>', selector: '[mozNotificationFooter]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { '[class.mc-notification__footer]': 'true' }, styles: [".mc-notification{font-family:LeroyMerlin,sans-serif;font-weight:400;border-radius:4px;display:flex;flex-flow:row wrap;align-items:flex-start;padding:1rem 1.5rem 1.5rem 1rem;background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc;box-sizing:border-box;color:#000}.mc-notification:before{background-size:2rem;flex:0 0 2rem;height:2rem;margin-right:1rem;width:2rem}.mc-notification .mc-notification__content{padding-top:.25rem}.mc-notification .mc-notification__title+.mc-notification__message{margin-top:.5rem}.mc-notification:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification:before{background-color:transparent;background-repeat:no-repeat;content:\"\";display:block}.mc-notification__content{flex:1 1 0}.mc-notification__title,.mc-notification__message{margin-bottom:0;margin-top:0}.mc-notification__title{font-family:LeroyMerlin,sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.mc-notification__message{font-size:.875rem;line-height:1.5714285714}.mc-notification__footer{align-items:flex-start;display:flex;flex-direction:column;margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification__footer{flex-direction:row}}.mc-notification__link{font-size:.875rem;line-height:1.2857142857;margin-top:.5rem}.mc-notification .mc-button:not(:first-child){margin-top:1rem}@media screen and (min-width: 1024px){.mc-notification .mc-button:not(:first-child){margin-top:0;margin-left:1rem}}.mc-notification--information{background:#daeff7;box-shadow:inset 0 0 0 1px #0b96cc}.mc-notification--information:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#007bb4\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,21.7a1,1,0,0,1-1-1V14.87a1,1,0,1,1,2,0V20.7A1,1,0,0,1,16,21.7Z\"/><circle cx=\"16\" cy=\"11.3\" r=\"1\"/></svg>')}.mc-notification--success{background:#ebf5de;box-shadow:inset 0 0 0 1px #46a610}.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" fill=\"#188803\" viewBox=\"0 0 32 32\"><path d=\"M16,5A11,11,0,1,1,5,16,11,11,0,0,1,16,5m0-2A13,13,0,1,0,29,16,13,13,0,0,0,16,3Z\"/><path d=\"M14.2,21.45,8.5,16.18a1,1,0,1,1,1.35-1.47l4.28,4,8-8.09a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41Z\"/></svg>')}.mc-notification--warning{background:#fdf1e8;box-shadow:inset 0 0 0 1px #ea7315}.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c65200\"><path d=\"M16,29A13,13,0,1,1,29,16,13,13,0,0,1,16,29ZM16,5A11,11,0,1,0,27,16,11,11,0,0,0,16,5Z\"/><path d=\"M16,18.13a1,1,0,0,1-1-1V11.3a1,1,0,0,1,2,0v5.83A1,1,0,0,1,16,18.13Z\"/><circle cx=\"16\" cy=\"20.7\" r=\"1\"/></svg>')}.mc-notification--danger{background:#fdeaea;box-shadow:inset 0 0 0 1px #ea302d}.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"2rem\" width=\"2rem\" viewBox=\"0 0 32 32\" fill=\"#c61112\"><path d=\"M16,3A13,13,0,1,0,29,16,13,13,0,0,0,16,3Zm0,24A11,11,0,1,1,27,16,11,11,0,0,1,16,27Z\"/><path d=\"M20.71,11.29a1,1,0,0,0-1.42,0L16,14.59l-3.29-3.3a1,1,0,0,0-1.42,1.42L14.59,16l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,17.41l3.29,3.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L17.41,16l3.3-3.29A1,1,0,0,0,20.71,11.29Z\"/></svg>')}.mc-notification--s{padding:.75rem .75rem 1.5rem}.mc-notification--s:before{background-size:1.5rem;flex:0 0 1.5rem;height:1.5rem;margin-right:.5rem;width:1.5rem}.mc-notification--s .mc-notification__content{padding-top:0}.mc-notification--s .mc-notification__title+.mc-notification__message{margin-top:.25rem}.mc-notification--s:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#007bb4\"><path d=\"M12 22a10 10 0 1110-10 10 10 0 01-10 10zm0-18a8 8 0 108 8 8 8 0 00-8-8z\"/><path d=\"M12 17a1 1 0 01-1-1v-4.39a1 1 0 012 0V16a1 1 0 01-1 1z\"/><circle cx=\"12\" cy=\"8\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--success:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#188803\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-notification--s.mc-notification--warning:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c65200\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-notification--s.mc-notification--danger:before{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M16.21 7.88a1 1 0 00-1.42 0l-2.74 2.74-2.84-2.83a1 1 0 10-1.42 1.42L10.63 12l-2.77 2.79a1 1 0 001.41 1.42l2.78-2.77 2.68 2.68a1 1 0 001.41-1.42L13.46 12l2.75-2.7a1 1 0 000-1.42z\"/></svg>')}.mc-notification-closable{position:relative}.mc-notification-closable__close{position:relative;background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#000000\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat;background-size:1rem;border:0;cursor:pointer;display:block;height:1rem;padding:0;position:absolute;outline:0;right:1rem;top:1rem;width:1rem}.mc-notification-closable__close:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease}.mc-notification-closable__close:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}\n"] }]
1078
- }] });
1079
-
1080
- class NotificationService {
1081
- constructor(applicationRef, componentFactoryResolver, injector, document) {
1082
- this.applicationRef = applicationRef;
1083
- this.componentFactoryResolver = componentFactoryResolver;
1084
- this.injector = injector;
1085
- this.document = document;
1086
- this.container = this.createContainer();
1087
- this.appendNotificationContainerToBody(this.container);
1088
- }
1089
- add(notification) {
1090
- this.container.instance.add(notification);
1091
- }
1092
- createContainer() {
1093
- const componentFactory = this.componentFactoryResolver.resolveComponentFactory(NotificationContainerComponent);
1094
- const componentRef = componentFactory.create(this.injector);
1095
- return componentRef;
1096
- }
1097
- appendNotificationContainerToBody(componentRef) {
1098
- const componentHostView = componentRef.hostView;
1099
- const componentHtmlElement = componentHostView.rootNodes[0];
1100
- this.applicationRef.attachView(componentHostView);
1101
- this.document.body.appendChild(componentHtmlElement);
1102
- }
1103
- }
1104
- NotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
1105
- NotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, providedIn: 'root' });
1106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationService, decorators: [{
1107
- type: Injectable,
1108
- args: [{
1109
- providedIn: 'root',
1110
- }]
1111
- }], ctorParameters: function () {
1112
- return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: Document, decorators: [{
1113
- type: Inject,
1114
- args: [DOCUMENT]
1115
- }] }];
1116
- } });
1117
-
1118
- class NotificationModule {
1119
- static forRoot(config = {}) {
1120
- return {
1121
- ngModule: NotificationModule,
1122
- providers: [
1123
- {
1124
- provide: NOTIFICATION_CONFIG,
1125
- useValue: NotificationConfigFactory.create(config),
1126
- },
1127
- ],
1128
- };
1129
- }
1130
- }
1131
- NotificationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1132
- NotificationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, declarations: [NotificationComponent,
1133
- NotificationTitleComponent,
1134
- NotificationMessageComponent,
1135
- NotificationFooterComponent,
1136
- NotificationContainerComponent], imports: [CommonModule], exports: [NotificationComponent,
1137
- NotificationTitleComponent,
1138
- NotificationMessageComponent,
1139
- NotificationFooterComponent] });
1140
- NotificationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, providers: [
1141
- NotificationService,
1142
- {
1143
- provide: NOTIFICATION_CONFIG,
1144
- useValue: NotificationConfigFactory.create(),
1145
- },
1146
- ], imports: [CommonModule] });
1147
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationModule, decorators: [{
1148
- type: NgModule,
1149
- args: [{
1150
- imports: [CommonModule],
1151
- declarations: [
1152
- NotificationComponent,
1153
- NotificationTitleComponent,
1154
- NotificationMessageComponent,
1155
- NotificationFooterComponent,
1156
- NotificationContainerComponent,
1157
- ],
1158
- providers: [
1159
- NotificationService,
1160
- {
1161
- provide: NOTIFICATION_CONFIG,
1162
- useValue: NotificationConfigFactory.create(),
1163
- },
1164
- ],
1165
- exports: [
1166
- NotificationComponent,
1167
- NotificationTitleComponent,
1168
- NotificationMessageComponent,
1169
- NotificationFooterComponent,
1170
- ],
1171
- }]
1172
- }] });
1173
-
1174
- var SELECT_SIZE;
1175
- (function (SELECT_SIZE) {
1176
- SELECT_SIZE["S"] = "s";
1177
- SELECT_SIZE["M"] = "m";
1178
- })(SELECT_SIZE || (SELECT_SIZE = {}));
1179
-
1180
- const PAGINATION_FIRST_PAGE = 1;
1181
- const PAGINATION_MIN_NUMBER_OF_PAGES = 1;
1182
- const PAGINATION_PAGE_STEP = 1;
1183
-
1184
- class SelectComponent {
1185
- constructor() {
1186
- this.size = 's';
1187
- }
1188
- get hostCssClasses() {
1189
- const staticClasses = 'mc-select';
1190
- const sizeCssClass = `mc-select--${this.size}`;
1191
- const dynamicClasses = `${sizeCssClass}`;
1192
- return `${staticClasses} ${dynamicClasses}`;
1193
- }
1194
- }
1195
- SelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1196
- SelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SelectComponent, selector: "select[moz-`select`]", inputs: { size: "size" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1197
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectComponent, decorators: [{
1198
- type: Component,
1199
- args: [{ selector: 'select[moz-`select`]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content select=\"option\"></ng-content>\n", styles: [".mc-select{font-family:LeroyMerlin,sans-serif;font-weight:400;box-sizing:border-box;outline:none;-webkit-appearance:none;appearance:none;padding:0;margin:0;box-shadow:none;border:none;font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px);background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>');background-color:#fff;background-repeat:no-repeat;background-size:1rem 1rem,1.5rem 1.5rem;border:1px solid #666666;border-radius:4px;color:#191919;transition:border-color .2s ease,box-shadow .2s ease;width:100%}.mc-select[type=number]::-webkit-inner-spin-button,.mc-select[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-select[type=number]{-moz-appearance:textfield}.mc-select[type=search]::-webkit-search-decoration:hover,.mc-select[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-select::-ms-expand{display:none}.mc-select:hover{border-color:#191919}.mc-select:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-select:disabled{background-color:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed;opacity:1}.mc-select.is-invalid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNjNjExMTIiPjxwYXRoIGQ9Ik0xMiAyYTEwIDEwIDAgMTAxMCAxMEExMCAxMCAwIDAwMTIgMnptMCAxOGE4IDggMCAxMTgtOCA4IDggMCAwMS04IDh6Ii8+PHBhdGggZD0iTTEyIDdhMSAxIDAgMDAtMSAxdjQuMzhhMSAxIDAgMDAyIDBWOGExIDEgMCAwMC0xLTF6Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxNiIgcj0iMSIvPjwvc3ZnPg==);border-color:#c61112}.mc-select.is-valid{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#191919\" viewBox=\"0 0 16 16\"><path d=\"M8 11.5a1 1 0 01-.71-.29l-5-5a1 1 0 011.42-1.42L8 9.09l4.29-4.3a1 1 0 111.42 1.42l-5 5a1 1 0 01-.71.29z\"/></svg>'),url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMS41cmVtIiB3aWR0aD0iMS41cmVtIiBmaWxsPSIjNDZhNjEwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMiA0YTggOCAwIDExLTggOCA4IDggMCAwMTgtOG0wLTJhMTAgMTAgMCAxMDEwIDEwQTEwIDEwIDAgMDAxMiAyeiIvPjxwYXRoIGQ9Ik0xMC43MyAxNS43NWExIDEgMCAwMS0uNjgtLjI2bC0zLTIuNzRhMSAxIDAgMDExLjM2LTEuNDdsMi4yNSAyLjA4IDQuMzYtNC40MmExIDEgMCAxMTEuNDIgMS40MWwtNSA1LjFhMSAxIDAgMDEtLjcxLjN6Ii8+PC9zdmc+);border-color:#46a610}.mc-select--s{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}@media screen and (min-width: 680px){.mc-select--s\\@from-m{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--s\\@from-l{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--s\\@from-xl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--s\\@from-xxl{font-size:.875rem;line-height:1.1428571429;background-position:right .5rem center,right 2rem center;padding:calc(.5rem - 1px) 2rem calc(.5rem - 1px) calc(.5rem - 1px)}}.mc-select--m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}@media screen and (min-width: 680px){.mc-select--m\\@from-m{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1024px){.mc-select--m\\@from-l{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1280px){.mc-select--m\\@from-xl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width: 1920px){.mc-select--m\\@from-xxl{font-size:1rem;line-height:1.125;background-position:right 1rem center,right 2.5rem center;padding:calc(.9375rem - 1px) 3rem calc(.9375rem - 1px) calc(.75rem - 1px)}}\n"] }]
1200
- }], propDecorators: { size: [{
1201
- type: Input
1202
- }], hostCssClasses: [{
1203
- type: HostBinding,
1204
- args: ['class']
1205
- }] } });
1206
-
1207
- const PAGINATION_CONTROL_VALUE_ACCESSOR = {
1208
- provide: NG_VALUE_ACCESSOR,
1209
- useExisting: forwardRef(() => PaginationComponent),
1210
- multi: true,
1211
- };
1212
- class PaginationComponent {
1213
- constructor(globalEventService, cd) {
1214
- this.globalEventService = globalEventService;
1215
- this.cd = cd;
1216
- this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
1217
- this.light = false;
1218
- this.pageTitleMask = (page, numberOfPages) => `Page ${page} of ${numberOfPages}`;
1219
- this.onChange = () => { };
1220
- this.onTouch = () => { };
1221
- this.currentPage = PAGINATION_FIRST_PAGE;
1222
- this.pages = [];
1223
- this.smallResolution = 1024;
1224
- const isSmall = this.displayIsSmall().pipe(shareReplay({ refCount: true, bufferSize: 1 }));
1225
- this.initializeIcons(isSmall);
1226
- this.selectSize = isSmall.pipe(map((isSmall) => this.chooseSelectSize(isSmall)));
1227
- }
1228
- ngAfterViewInit() {
1229
- this.reinitializeNumberOfPagesAtInvalidValue();
1230
- if (this.viewSelect) {
1231
- this.pages = this.initializePages(this.numberOfPages);
1232
- }
1233
- this.reinitializeCurrentPageAtOverflow();
1234
- this.cd.detectChanges();
1235
- }
1236
- ngOnChanges({ numberOfPages, pageTitleMask }) {
1237
- if (this.needRenderPages(this.viewSelect, numberOfPages === null || numberOfPages === void 0 ? void 0 : numberOfPages.currentValue, numberOfPages === null || numberOfPages === void 0 ? void 0 : numberOfPages.previousValue, pageTitleMask === null || pageTitleMask === void 0 ? void 0 : pageTitleMask.currentValue, pageTitleMask === null || pageTitleMask === void 0 ? void 0 : pageTitleMask.previousValue)) {
1238
- this.reinitializeNumberOfPagesAtInvalidValue();
1239
- this.pages = this.initializePages(this.numberOfPages);
1240
- }
1241
- this.reinitializeCurrentPageAtOverflow();
1242
- }
1243
- get viewSelect() {
1244
- return !this.light;
1245
- }
1246
- get isFirstPage() {
1247
- return this.currentPage <= PAGINATION_FIRST_PAGE;
1248
- }
1249
- get isLastPage() {
1250
- return this.currentPage >= this.numberOfPages;
1251
- }
1252
- get disabledSelect() {
1253
- return this.numberOfPages <= PAGINATION_MIN_NUMBER_OF_PAGES;
1254
- }
1255
- writeValue(value) {
1256
- if (!value || value === this.currentPage || value > this.numberOfPages)
1257
- return;
1258
- this.currentPage = value;
1259
- this.onChange(value);
1260
- }
1261
- registerOnChange(fn) {
1262
- this.onChange = fn;
1263
- }
1264
- registerOnTouched(fn) {
1265
- this.onTouch = fn;
1266
- }
1267
- nextPage() {
1268
- this.writeValue(this.currentPage + PAGINATION_PAGE_STEP);
1269
- }
1270
- previousPage() {
1271
- this.writeValue(this.currentPage - PAGINATION_PAGE_STEP);
1272
- }
1273
- compareWithPages(page, currentPage) {
1274
- return page === currentPage;
1275
- }
1276
- initializePages(numberOfPages) {
1277
- return new Array(numberOfPages).fill(null).map((_, index) => ({
1278
- title: this.pageTitleMask(index + 1, numberOfPages),
1279
- value: index + 1,
1280
- }));
1281
- }
1282
- initializeIcons(isSmall) {
1283
- const iconSize = isSmall.pipe(map((isSmall) => this.chooseIconSize(isSmall)), shareReplay({ refCount: true, bufferSize: 1 }));
1284
- this.leftIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Left_${iconSize}`));
1285
- this.rightIconName = iconSize.pipe(map((iconSize) => `Navigation_Arrow_Arrow--Right_${iconSize}`));
1286
- }
1287
- displayIsSmall() {
1288
- const resizeEvent = this.globalEventService.getWindowEvent('resize').pipe(debounceTime(100));
1289
- const displayWidth = resizeEvent.pipe(map((event) => { var _a; return (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.innerWidth; }), startWith(this.globalEventService.window.innerWidth));
1290
- return displayWidth.pipe(map((width) => width < this.smallResolution));
1291
- }
1292
- reinitializeCurrentPageAtOverflow() {
1293
- if (this.numberOfPages < this.currentPage) {
1294
- this.writeValue(PAGINATION_FIRST_PAGE);
1295
- }
1296
- }
1297
- reinitializeNumberOfPagesAtInvalidValue() {
1298
- if (!this.numberOfPages || this.numberOfPages < PAGINATION_MIN_NUMBER_OF_PAGES) {
1299
- this.numberOfPages = PAGINATION_MIN_NUMBER_OF_PAGES;
1300
- }
1301
- }
1302
- chooseIconSize(isSmall) {
1303
- return isSmall ? IconSize.L : IconSize.M;
1304
- }
1305
- chooseSelectSize(isSmall) {
1306
- return isSmall ? SELECT_SIZE.M : SELECT_SIZE.S;
1307
- }
1308
- needRenderPages(viewSelect, numberOfPagesPrevious, numberOfPagesCurrent, pageTitleMaskPrevious, pageTitleMaskCurrent) {
1309
- const numberOfPageHasChanges = numberOfPagesPrevious !== numberOfPagesCurrent;
1310
- const maskHasChanges = pageTitleMaskPrevious !== pageTitleMaskCurrent;
1311
- return viewSelect && (numberOfPageHasChanges || maskHasChanges);
1312
- }
1313
- }
1314
- PaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationComponent, deps: [{ token: GlobalEventsService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1315
- PaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.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: ButtonComponent, selector: "button[moz-button]", inputs: ["iconPosition", "onlyIcon", "theme", "variation", "widthBehavior", "size"] }, { kind: "component", type: SelectComponent, selector: "select[moz-`select`]", inputs: ["size"] }, { kind: "component", type: IconComponent, selector: "moz-icon", inputs: ["iconName"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1316
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationComponent, decorators: [{
1317
- type: Component,
1318
- 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"] }]
1319
- }], ctorParameters: function () { return [{ type: GlobalEventsService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { numberOfPages: [{
1320
- type: Input
1321
- }], light: [{
1322
- type: Input
1323
- }], pageTitleMask: [{
1324
- type: Input
1325
- }] } });
1326
-
1327
- class SelectModule {
1328
- }
1329
- SelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1330
- SelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, declarations: [SelectComponent], imports: [CommonModule], exports: [SelectComponent] });
1331
- SelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, imports: [CommonModule] });
1332
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectModule, decorators: [{
1333
- type: NgModule,
1334
- args: [{
1335
- imports: [CommonModule],
1336
- declarations: [SelectComponent],
1337
- exports: [SelectComponent],
1338
- }]
1339
- }] });
1340
-
1341
- class PaginationModule {
1342
- }
1343
- PaginationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1344
- PaginationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, declarations: [PaginationComponent], imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule], exports: [PaginationComponent] });
1345
- PaginationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule] });
1346
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationModule, decorators: [{
1347
- type: NgModule,
1348
- args: [{
1349
- imports: [CommonModule, FormsModule, ButtonModule, SelectModule, IconModule, GlobalEventsModule],
1350
- declarations: [PaginationComponent],
1351
- exports: [PaginationComponent],
1352
- }]
1353
- }] });
1354
-
1355
- class ProgressBarComponent {
1356
- constructor() {
1357
- this.size = 'm';
1358
- this.theme = 'default';
1359
- this.percent = 0;
1360
- this.text = '';
1361
- }
1362
- get indicatorWidth() {
1363
- return { width: `${this.percent}%` };
1364
- }
1365
- get hostCssClasses() {
1366
- const sizeClass = `mc-progressbar--${this.size}`;
1367
- const themeClass = `mc-progressbar--${this.theme}`;
1368
- const textClass = !!this.text ? `mc-progressbar--percent` : '';
1369
- return `mc-progressbar ${sizeClass} ${themeClass} ${textClass}`;
1370
- }
1371
- }
1372
- ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1373
- ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ProgressBarComponent, selector: "moz-progress-bar", inputs: { size: "size", theme: "theme", percent: "percent", text: "text" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#188803;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:600;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1374
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarComponent, decorators: [{
1375
- type: Component,
1376
- args: [{ selector: 'moz-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"mc-progressbar__indicator\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"percent\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n [ngStyle]=\"indicatorWidth\"\n></div>\n<div *ngIf=\"text\" class=\"mc-progressbar__percentage\">{{ text }}</div>\n", styles: [".mc-progressbar{font-family:LeroyMerlin,sans-serif;align-items:center;background-color:#ccc;display:flex;height:.5rem;justify-content:center;position:relative}.mc-progressbar,.mc-progressbar__indicator{border-radius:4px;overflow:hidden}.mc-progressbar__indicator{background-color:#188803;height:100%;left:0;position:absolute;transition:width .4s ease;top:0}.mc-progressbar--static .mc-progressbar__indicator{transition:none}.mc-progressbar__percentage{font-size:.875rem;line-height:1.2857142857;font-weight:600;color:#191919;position:relative;z-index:1}.mc-progressbar--half .mc-progressbar__percentage{color:#fff}.mc-progressbar:not(.mc-progressbar--percent) .mc-progressbar__percentage{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;visibility:visible;white-space:nowrap}.mc-progressbar--xs{height:.125rem}.mc-progressbar--xs,.mc-progressbar--xs .mc-progressbar__indicator{border-radius:1px}.mc-progressbar--s{height:.25rem}.mc-progressbar--s,.mc-progressbar--s .mc-progressbar__indicator{border-radius:2px}.mc-progressbar--percent{height:1.5rem}.mc-progressbar--percent,.mc-progressbar--percent .mc-progressbar__indicator{border-radius:12px}\n"] }]
1377
- }], propDecorators: { size: [{
1378
- type: Input
1379
- }], theme: [{
1380
- type: Input
1381
- }], percent: [{
1382
- type: Input
1383
- }], text: [{
1384
- type: Input
1385
- }], hostCssClasses: [{
1386
- type: HostBinding,
1387
- args: ['class']
1388
- }] } });
1389
-
1390
- class ProgressBarModule {
1391
- }
1392
- ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1393
- ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent], imports: [CommonModule], exports: [ProgressBarComponent] });
1394
- ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, imports: [CommonModule] });
1395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProgressBarModule, decorators: [{
1396
- type: NgModule,
1397
- args: [{
1398
- imports: [CommonModule],
1399
- declarations: [ProgressBarComponent],
1400
- exports: [ProgressBarComponent],
1401
- }]
1402
- }] });
1403
-
1404
- class StepComponent {
1405
- get validated() {
1406
- return this.state === 'validated';
1407
- }
1408
- get isCurrent() {
1409
- return this.state === 'current';
1410
- }
1411
- get indicator() {
1412
- return this.index + 1;
1413
- }
1414
- get index() {
1415
- return this._index;
1416
- }
1417
- set index(newIndex) {
1418
- this._index = newIndex;
1419
- this.cd.markForCheck();
1420
- }
1421
- get state() {
1422
- return this._state;
1423
- }
1424
- set state(newState) {
1425
- this._state = newState;
1426
- this.cd.markForCheck();
1427
- }
1428
- constructor(cd) {
1429
- this.cd = cd;
1430
- this.title = '';
1431
- this._state = '';
1432
- this._index = 0;
1433
- }
1434
- get hostCssClasses() {
1435
- const stateClass = this.state ? `mc-stepper__item--${this.state}` : '';
1436
- return `mc-stepper__item ${stateClass}`;
1437
- }
1438
- }
1439
- StepComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1440
- StepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: StepComponent, selector: "moz-step", inputs: { title: "title" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconComponent, selector: "moz-icon", inputs: ["iconName"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1441
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepComponent, decorators: [{
1442
- type: Component,
1443
- args: [{ selector: 'moz-step', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<span class=\"mc-stepper__indicator\" aria-hidden=\"true\">\n <moz-icon\n *ngIf=\"validated\"\n class=\"mc-stepper__icon\"\n iconName=\"Navigation_Notification_Available_16px\"\n ></moz-icon>\n <ng-container *ngIf=\"isCurrent\">{{ indicator }}</ng-container>\n</span>\n<div class=\"mc-stepper__detail\">\n <span class=\"mc-stepper__title\">{{ title }}</span>\n <span class=\"mc-stepper__label\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
1444
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { title: [{
1445
- type: Input
1446
- }], hostCssClasses: [{
1447
- type: HostBinding,
1448
- args: ['class']
1449
- }] } });
1450
-
1451
- class StepperComponent {
1452
- constructor() {
1453
- this.selectStepIndex = 0;
1454
- this.viewCompact = false;
1455
- }
1456
- ngAfterViewInit() {
1457
- if (!this.steps)
1458
- return;
1459
- this.initStepIndex(this.steps);
1460
- this.selectStep(this.steps, this.selectStepIndex);
1461
- this.initCssVariablesForSteps(this.stepElements);
1462
- }
1463
- ngOnChanges(changes) {
1464
- this.updateSelectStepAtChanges(changes);
1465
- }
1466
- get hostCssClasses() {
1467
- const viewCompactClass = this.viewCompact ? `mc-stepper--compact` : '';
1468
- return `mc-stepper ${viewCompactClass}`;
1469
- }
1470
- initStepIndex(steps) {
1471
- steps.forEach((step, index) => (step.index = index));
1472
- }
1473
- initCssVariablesForSteps(stepElements) {
1474
- stepElements.forEach(this.initCssVariablesForStep);
1475
- }
1476
- initCssVariablesForStep(elementRef, currentIndex, elementRefs) {
1477
- elementRef.nativeElement.style = `--steps: ${elementRefs.length}; --current: ${currentIndex + 1}`;
1478
- }
1479
- selectStep(steps, selectStepIndex) {
1480
- steps.forEach((step) => this.updateStateStep(step, selectStepIndex));
1481
- }
1482
- updateStateStep(step, selectStepIndex) {
1483
- const oldState = step.state;
1484
- const newState = this.stateDefinitionForStep(step.index, selectStepIndex);
1485
- const hasChanges = oldState !== newState;
1486
- if (!hasChanges)
1487
- return;
1488
- step.state = newState;
1489
- }
1490
- stateDefinitionForStep(stepIndex, selectStepIndex) {
1491
- const isCurrentStep = stepIndex === selectStepIndex;
1492
- const isValidatedStep = stepIndex < selectStepIndex;
1493
- if (isCurrentStep)
1494
- return 'current';
1495
- if (isValidatedStep)
1496
- return 'validated';
1497
- return '';
1498
- }
1499
- updateSelectStepAtChanges({ selectStepIndex }) {
1500
- if (!this.steps ||
1501
- !selectStepIndex ||
1502
- selectStepIndex.currentValue === selectStepIndex.previousValue)
1503
- return;
1504
- this.selectStep(this.steps, selectStepIndex.currentValue);
1505
- }
1506
- }
1507
- StepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1508
- StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: StepperComponent, selector: "moz-stepper", inputs: { selectStepIndex: "selectStepIndex", viewCompact: "viewCompact" }, host: { properties: { "class": "this.hostCssClasses" } }, queries: [{ propertyName: "steps", predicate: StepComponent }, { propertyName: "stepElements", predicate: StepComponent, read: ElementRef }], usesOnChanges: true, ngImport: i0, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperComponent, decorators: [{
1510
- type: Component,
1511
- args: [{ selector: 'moz-stepper', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ol class=\"mc-stepper__list\">\n <ng-content select=\"moz-step\"></ng-content>\n</ol>\n", styles: [".mc-stepper{width:100%}.mc-stepper__list{display:flex;padding-left:0;margin-bottom:0;margin-top:0}.mc-stepper__item,.mc-stepper__link{align-items:center;display:flex;flex-direction:column}.mc-stepper__item{flex:1;position:relative}.mc-stepper__item:before,.mc-stepper__item:after{background-color:#999;content:\"\";height:.125rem;position:absolute;top:11px;width:calc(50% - 1.25rem);z-index:1}.mc-stepper__item:before{border-top-right-radius:1px;border-bottom-right-radius:1px;left:0}.mc-stepper__item:after{border-top-left-radius:1px;border-bottom-left-radius:1px;right:0}.mc-stepper__item:first-child:before,.mc-stepper__item:last-child:after{content:none}.mc-stepper__item--current .mc-stepper__indicator,.mc-stepper__item--validated .mc-stepper__indicator{border-color:#46a610}.mc-stepper__item--current .mc-stepper__detail,.mc-stepper__item--validated .mc-stepper__detail{font-weight:600}.mc-stepper__item--current:before{background-color:#46a610}.mc-stepper__item--current .mc-stepper__indicator{background-color:#46a610;color:#fff}.mc-stepper__item--current .mc-stepper__label{color:#000}.mc-stepper__item--validated:before,.mc-stepper__item--validated:not(.mc-stepper__item--current):after{background-color:#46a610}.mc-stepper__link{height:100%;text-decoration:none;width:100%}.mc-stepper__link:hover .mc-stepper__label,.mc-stepper__link:focus .mc-stepper__label{color:#46a610}.mc-stepper__indicator{font-size:.875rem;line-height:1.1428571429;font-weight:600;align-items:center;border:2px solid #999999;border-radius:50%;box-sizing:border-box;display:flex;flex-shrink:0;height:1.5rem;justify-content:center;margin-bottom:.5rem;position:relative;width:1.5rem;z-index:2}.mc-stepper__icon{fill:#46a610;max-width:100%}.mc-stepper__detail{font-size:.875rem;line-height:1.2857142857;color:#666;text-align:center;width:auto}.mc-stepper__title{display:none;color:#46a610}.mc-stepper--compact .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--compact .mc-stepper__item:before,.mc-stepper--compact .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--compact .mc-stepper__item:after{width:100%}.mc-stepper--compact .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--compact .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--compact .mc-stepper__indicator{display:none}.mc-stepper--compact .mc-stepper__detail{text-align:left}.mc-stepper--compact .mc-stepper__title{display:block;margin-bottom:.25rem}@media screen and (max-width: 679px){.mc-stepper--shrinked .mc-stepper__item{align-items:flex-start;flex-direction:row;padding-bottom:1.25rem}.mc-stepper--shrinked .mc-stepper__item:before,.mc-stepper--shrinked .mc-stepper__item:after{bottom:0;border-radius:6px;height:.25rem;top:auto}.mc-stepper--shrinked .mc-stepper__item:after{width:100%}.mc-stepper--shrinked .mc-stepper__item:before{z-index:2;width:calc(var(--current) * 100% / var(--steps))}.mc-stepper--shrinked .mc-stepper__item:not(.mc-stepper__item--current){display:none}.mc-stepper--shrinked .mc-stepper__indicator{display:none}.mc-stepper--shrinked .mc-stepper__detail{text-align:left}.mc-stepper--shrinked .mc-stepper__title{display:block;margin-bottom:.25rem}}\n"] }]
1512
- }], propDecorators: { selectStepIndex: [{
1513
- type: Input
1514
- }], viewCompact: [{
1515
- type: Input
1516
- }], steps: [{
1517
- type: ContentChildren,
1518
- args: [StepComponent]
1519
- }], stepElements: [{
1520
- type: ContentChildren,
1521
- args: [StepComponent, { read: ElementRef }]
1522
- }], hostCssClasses: [{
1523
- type: HostBinding,
1524
- args: ['class']
1525
- }] } });
1526
-
1527
- class StepperModule {
1528
- }
1529
- StepperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1530
- StepperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, declarations: [StepperComponent, StepComponent], imports: [CommonModule, IconModule], exports: [StepperComponent, StepComponent] });
1531
- StepperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, imports: [CommonModule, IconModule] });
1532
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StepperModule, decorators: [{
1533
- type: NgModule,
1534
- args: [{
1535
- imports: [CommonModule, IconModule],
1536
- declarations: [StepperComponent, StepComponent],
1537
- exports: [StepperComponent, StepComponent],
1538
- }]
1539
- }] });
1540
-
1541
- class TabComponent {
1542
- constructor(routerLinkActive, routerLink) {
1543
- this.routerLinkActive = routerLinkActive;
1544
- this.routerLink = routerLink;
1545
- this.index = 0;
1546
- this.disabled = false;
1547
- this.data = null;
1548
- this.selected = false;
1549
- }
1550
- get isAvailableTabForSelection() {
1551
- return !this.selected && !this.disabled;
1552
- }
1553
- get isActiveTab() {
1554
- var _a;
1555
- return !!((_a = this.routerLinkActive) === null || _a === void 0 ? void 0 : _a.isActive);
1556
- }
1557
- get link() {
1558
- var _a;
1559
- return ((_a = this.routerLink) === null || _a === void 0 ? void 0 : _a.href) || null;
1560
- }
1561
- }
1562
- TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabComponent, deps: [{ token: RouterLinkActive, optional: true }, { token: RouterLinkWithHref, optional: true }], target: i0.ɵɵFactoryTarget.Component });
1563
- TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TabComponent, selector: "a[moz-tab],span[moz-tab],div[moz-tab]", inputs: { disabled: "disabled", data: "data" }, host: { properties: { "class.mc-tabs__item": "true", "class.mc-tabs__link": "true", "class.mc-tabs__link--outline": "true", "class.mc-tabs__link--selected": "selected", "class.mc-tabs__link--disabled": "disabled", "attr.tab-index": "this.index" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tabs__link,.mc-tabs__link:active,.mc-tabs__link--selected{font-weight:400}.mc-tabs__link:focus:after{box-shadow:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1564
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabComponent, decorators: [{
1565
- type: Component,
1566
- args: [{ selector: `a[moz-tab],span[moz-tab],div[moz-tab]`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
1567
- '[class.mc-tabs__item]': 'true',
1568
- '[class.mc-tabs__link]': 'true',
1569
- '[class.mc-tabs__link--outline]': 'true',
1570
- '[class.mc-tabs__link--selected]': 'selected',
1571
- '[class.mc-tabs__link--disabled]': 'disabled',
1572
- }, template: "<ng-content></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tabs__link,.mc-tabs__link:active,.mc-tabs__link--selected{font-weight:400}.mc-tabs__link:focus:after{box-shadow:none}\n"] }]
1573
- }], ctorParameters: function () {
1574
- return [{ type: i1$2.RouterLinkActive, decorators: [{
1575
- type: Optional
1576
- }, {
1577
- type: Inject,
1578
- args: [RouterLinkActive]
1579
- }] }, { type: i1$2.RouterLinkWithHref, decorators: [{
1580
- type: Optional
1581
- }, {
1582
- type: Inject,
1583
- args: [RouterLinkWithHref]
1584
- }] }];
1585
- }, propDecorators: { index: [{
1586
- type: HostBinding,
1587
- args: ['attr.tab-index']
1588
- }], disabled: [{
1589
- type: Input
1590
- }], data: [{
1591
- type: Input
1592
- }] } });
1593
-
1594
- const TAB_SELECTORS = 'a,div,span';
1595
- const TABS_SELECTOR = 'moz-tabs';
1596
-
1597
- class TabsComponent {
1598
- constructor(elementRef, cd, router) {
1599
- this.elementRef = elementRef;
1600
- this.cd = cd;
1601
- this.router = router;
1602
- this.fullWidth = false;
1603
- this.fullWidthCenter = false;
1604
- this.hideShadow = false;
1605
- this.selectTabIndex = null;
1606
- this.selectedTabChange = new EventEmitter();
1607
- this.afterViewInit = new Subject();
1608
- this.viewDestroyed = new Subject();
1609
- this.initBehaviorSelectForTab();
1610
- }
1611
- get viewFullWidth() {
1612
- return this.fullWidth && !this.fullWidthCenter;
1613
- }
1614
- ngAfterViewInit() {
1615
- this.afterViewInit.next(true);
1616
- }
1617
- ngOnChanges({ selectTabIndex }) {
1618
- if (selectTabIndex && typeof selectTabIndex.currentValue === 'number') {
1619
- this.selectTabAtChanges(selectTabIndex.currentValue);
1620
- }
1621
- }
1622
- ngOnDestroy() {
1623
- this.viewDestroyed.next(true);
1624
- this.viewDestroyed.complete();
1625
- }
1626
- initBehaviorSelectForTab() {
1627
- const afterFullNavigateAndRender = this.getAfterFullNavigateAndRenderEvent();
1628
- const tabsAfterNavigate = afterFullNavigateAndRender.pipe(map(() => this.tabs), filter(Boolean));
1629
- tabsAfterNavigate
1630
- .pipe(tap((tabs) => this.initTabIndex(tabs)), tap((tabs) => this.initFirstSelectionTab(tabs)), switchMap((tabs) => this.getAllTabEvents(tabs)), tap((tab) => this.selectTab(this.tabs, tab)), takeUntil(this.viewDestroyed))
1631
- .subscribe();
1632
- }
1633
- initTabIndex(tabs) {
1634
- tabs.forEach((tab, index) => (tab.index = index));
1635
- this.cd.markForCheck();
1636
- }
1637
- initFirstSelectionTab(tabs) {
1638
- const activeTab = tabs.find((tab) => tab.isActiveTab);
1639
- const selectTabByIndex = typeof this.selectTabIndex === 'number' && tabs.get(this.selectTabIndex);
1640
- const firstSelectedTab = selectTabByIndex || activeTab || tabs.first;
1641
- firstSelectedTab.selected = true;
1642
- this.tryNavigateToTab(firstSelectedTab);
1643
- }
1644
- tryNavigateToTab(tab) {
1645
- var _a;
1646
- if (!tab.link || tab.isActiveTab)
1647
- return;
1648
- (_a = this.router) === null || _a === void 0 ? void 0 : _a.navigate([tab.link]);
1649
- }
1650
- selectTabAtChanges(selectTabIndex) {
1651
- var _a;
1652
- const newSelectTab = (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.get(selectTabIndex);
1653
- if (!newSelectTab || !this.tabs)
1654
- return;
1655
- this.selectTab(this.tabs, newSelectTab);
1656
- this.tryNavigateToTab(newSelectTab);
1657
- }
1658
- getTabSelectionEvents(tabs) {
1659
- const indexClickedTab = this.getIndexClickedTab();
1660
- const clickedTab = indexClickedTab.pipe(map((tabIndex) => tabs.get(+tabIndex)));
1661
- return clickedTab.pipe(filter(Boolean), filter((tab) => tab.isAvailableTabForSelection));
1662
- }
1663
- getTabActiveEvents(tabs) {
1664
- const tabWithLink = tabs.filter(({ routerLinkActive }) => !!routerLinkActive);
1665
- const tabsActiveEvent = tabWithLink.map((tab) => {
1666
- return tab.routerLinkActive.isActiveChange.pipe(filter(Boolean), map(() => tab));
1667
- });
1668
- return merge(...tabsActiveEvent);
1669
- }
1670
- getAfterFullNavigateAndRenderEvent() {
1671
- var _a;
1672
- const eventNavigationEnd = ((_a = this.router) === null || _a === void 0 ? void 0 : _a.events.pipe(filter((event) => event instanceof NavigationEnd), first())) || of(true);
1673
- return combineLatest([eventNavigationEnd, this.afterViewInit]).pipe(delay$1(0));
1674
- }
1675
- getIndexClickedTab() {
1676
- return fromEvent(this.elementRef.nativeElement, 'click').pipe(map((event) => event.target), filter(this.filterTabsElement.bind(this)), map((targetElement) => targetElement.closest(TAB_SELECTORS)), filter((tabElement) => !!tabElement), map((tabElement) => tabElement.getAttribute('tab-index')));
1677
- }
1678
- getAllTabEvents(tabs) {
1679
- return merge(this.getTabSelectionEvents(tabs), this.getTabActiveEvents(tabs));
1680
- }
1681
- filterTabsElement({ nodeName }) {
1682
- return nodeName.toLowerCase() !== TABS_SELECTOR;
1683
- }
1684
- selectTab(tabs, clickedTab) {
1685
- tabs.forEach((tab) => (tab.selected = tab === clickedTab));
1686
- this.selectedTabChange.emit(clickedTab);
1687
- this.cd.markForCheck();
1688
- }
1689
- }
1690
- TabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1$2.Router, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Component });
1691
- TabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TabsComponent, selector: "moz-tabs", inputs: { fullWidth: "fullWidth", fullWidthCenter: "fullWidthCenter", hideShadow: "hideShadow", selectTabIndex: "selectTabIndex" }, outputs: { selectedTabChange: "selectedTabChange" }, host: { properties: { "class.mc-tabs": "true", "class.mc-tabs--full": "viewFullWidth", "class.mc-tabs--full-centered": "fullWidthCenter", "class.mc-tab--hide-shadow": "hideShadow" } }, queries: [{ propertyName: "tabs", predicate: TabComponent }], usesOnChanges: true, ngImport: i0, template: "<ng-content select=\"[moz-tab]\"></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tab--hide-shadow:before{box-shadow:none!important}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsComponent, decorators: [{
1693
- type: Component,
1694
- args: [{ selector: TABS_SELECTOR, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
1695
- '[class.mc-tabs]': 'true',
1696
- '[class.mc-tabs--full]': 'viewFullWidth',
1697
- '[class.mc-tabs--full-centered]': 'fullWidthCenter',
1698
- '[class.mc-tab--hide-shadow]': 'hideShadow',
1699
- }, template: "<ng-content select=\"[moz-tab]\"></ng-content>\n", styles: ["@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Light.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Regular.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Regular.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBold.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBold.woff) format(\"woff\");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-LightItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-Italic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:LeroyMerlin;src:url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff2) format(\"woff2\"),url(/fonts/LeroyMerlinSans-Web-SemiBoldItalic.woff) format(\"woff\");font-weight:600;font-style:italic;font-display:swap}.mc-tabs{font-family:LeroyMerlin,sans-serif;font-weight:400;background-color:#fff;display:inline-flex;position:relative;width:100%}.mc-tabs:after{background:#b3b3b3;content:\"\";display:block;margin:0 auto;height:1px;width:100%;bottom:0;left:0;position:absolute}@media screen and (min-width: 680px){.mc-tabs{width:auto}}.mc-tabs--no-shadow:after,.mc-tabs--no-divider:after{display:none}@media screen and (max-width: 679px){.mc-tabs:not(.mc-tabs--dropdown):before{bottom:.125rem}}.mc-tabs__nav{list-style:none;margin-left:0;padding-left:0;display:flex;margin-top:0;margin-bottom:0}@media screen and (max-width: 679px){.mc-tabs__nav{overflow:auto hidden;white-space:nowrap}}.mc-tabs__nav,.mc-tabs__select{position:relative}.mc-tabs__link,.mc-tabs__element{font-size:.875rem;line-height:1.2857142857;font-weight:600;align-items:center;background:none;border:none;color:#666;cursor:pointer;display:flex;height:3.5rem;justify-content:center;outline:none;padding-left:.75rem;padding-right:.75rem;position:relative;text-decoration:none}.mc-tabs__link:before,.mc-tabs__element:before{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;bottom:-.125rem;top:-.125rem}.mc-tabs__link:after,.mc-tabs__element:after{background-color:transparent;bottom:0;content:\"\";height:.25rem;left:1.5rem;position:absolute;right:1.5rem}.mc-tabs__link:hover .mc-tabs__text,.mc-tabs__element:hover .mc-tabs__text{background-color:#eeeff1}.mc-tabs__link:active,.mc-tabs__element:active{color:#333}.mc-tabs__link:active .mc-tabs__text,.mc-tabs__element:active .mc-tabs__text{background-color:#cfd2d8}.mc-tabs__link:focus:before,.mc-tabs__element:focus:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-tabs__link--selected,.mc-tabs__element--selected{color:#000}.mc-tabs__link--selected:after,.mc-tabs__element--selected:after{background-color:#000}.mc-tabs__link--disabled,.mc-tabs__element--disabled{cursor:not-allowed;background-color:#ccc;pointer-events:none}.mc-tabs__link--disabled,.mc-tabs__link--disabled:hover,.mc-tabs__link--disabled:focus,.mc-tabs__link--disabled:active,.mc-tabs__element--disabled,.mc-tabs__element--disabled:hover,.mc-tabs__element--disabled:focus,.mc-tabs__element--disabled:active{box-shadow:none}.mc-tabs__text{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;justify-content:center;position:relative;padding:.4375rem .75rem;pointer-events:none}.mc-tabs__icon{fill:currentColor;height:1.5rem;width:1.5rem}@media screen and (min-width: 680px){.mc-tabs--full,.mc-tabs--full-centered{width:100%}}.mc-tabs--full-centered{justify-content:center}.mc-tabs--dropdown{padding:1rem;width:auto}.mc-tab--hide-shadow:before{box-shadow:none!important}\n"] }]
1700
- }], ctorParameters: function () {
1701
- return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$2.Router, decorators: [{
1702
- type: Host
1703
- }, {
1704
- type: Optional
1705
- }] }];
1706
- }, propDecorators: { fullWidth: [{
1707
- type: Input
1708
- }], fullWidthCenter: [{
1709
- type: Input
1710
- }], hideShadow: [{
1711
- type: Input
1712
- }], selectTabIndex: [{
1713
- type: Input
1714
- }], selectedTabChange: [{
1715
- type: Output
1716
- }], tabs: [{
1717
- type: ContentChildren,
1718
- args: [TabComponent]
1719
- }] } });
1720
-
1721
- class TabsModule {
1722
- }
1723
- TabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1724
- TabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: TabsModule, declarations: [TabsComponent, TabComponent], imports: [CommonModule], exports: [TabsComponent, TabComponent] });
1725
- TabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsModule, imports: [CommonModule] });
1726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsModule, decorators: [{
1727
- type: NgModule,
1728
- args: [{
1729
- declarations: [TabsComponent, TabComponent],
1730
- imports: [CommonModule],
1731
- exports: [TabsComponent, TabComponent],
1732
- }]
1733
- }] });
1734
-
1735
- class TagComponent {
1736
- constructor(elementRef) {
1737
- this.elementRef = elementRef;
1738
- this.size = 'm';
1739
- this.select = false;
1740
- this.selectChange = new EventEmitter();
1741
- this.clickOnRemove = new EventEmitter();
1742
- this.type = this.getDefaultType();
1743
- }
1744
- get hostCssClasses() {
1745
- return `${this.tagCssClass} ${this.sizeCssClass}`;
1746
- }
1747
- get labelCssClass() {
1748
- return `${this.tagCssClass}__label`;
1749
- }
1750
- get tagName() {
1751
- var _a;
1752
- return (_a = this.elementRef) === null || _a === void 0 ? void 0 : _a.nativeElement.tagName.toLowerCase();
1753
- }
1754
- get hostIsLink() {
1755
- return this.tagName === 'a';
1756
- }
1757
- get tagCssClass() {
1758
- return `mc-tag-${this.type}`;
1759
- }
1760
- get sizeCssClass() {
1761
- return `${this.tagCssClass}--${this.size}`;
1762
- }
1763
- getDefaultType() {
1764
- return this.hostIsLink ? 'link' : 'text';
1765
- }
1766
- emitRemove() {
1767
- this.clickOnRemove.emit();
1768
- }
1769
- emitSelectChanges($event) {
1770
- this.selectChange.emit($event);
1771
- }
1772
- }
1773
- TagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TagComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1774
- TagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TagComponent, selector: "moz-tag, a[moz-tag]", inputs: { type: "type", size: "size", select: "select" }, outputs: { selectChange: "selectChange", clickOnRemove: "clickOnRemove" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-template #labelTemplate>\n <span [ngClass]=\"labelCssClass\">\n <ng-content></ng-content>\n </span>\n</ng-template>\n\n<ng-container [ngSwitch]=\"type\">\n <ng-container *ngSwitchCase=\"'selectable'\">\n <input\n class=\"mc-tag-selectable__input\"\n type=\"checkbox\"\n id=\"selectable\"\n [ngModel]=\"select\"\n (ngModelChange)=\"emitSelectChanges($event)\"\n />\n <label class=\"mc-tag-selectable__pill\" for=\"selectable\">\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n </label>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'removable'\">\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n <button class=\"mc-tag-removable__remove\" (click)=\"emitRemove()\"></button>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n </ng-container>\n</ng-container>\n", styles: [".mc-tag-text{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;background:#ffffff;color:#191919;box-shadow:inset 0 0 0 1px gray}.mc-tag-text:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-text--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-text--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-text--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-text--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-text--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-text--dark{background:#191919;color:#fff;box-shadow:inset 0 0 0 1px #fff}.mc-tag-link{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;text-decoration:none;outline:none;background:#ffffff;box-shadow:inset 0 0 0 1px gray;color:#191919}.mc-tag-link:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-link:hover{background:#e6e6e6}.mc-tag-link:active{background:#cccccc}.mc-tag-link:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}.mc-tag-link--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-link--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-link--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-link--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-link--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-link--dark{background:#191919;color:#fff;box-shadow:inset 0 0 0 1px #fff}.mc-tag-link--dark:hover{background:#333333}.mc-tag-link--dark:active{background:#4d4d4d}.mc-tag-selectable{display:inline-block;white-space:nowrap}.mc-tag-selectable__input{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-tag-selectable__label{-webkit-user-select:none;user-select:none}.mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;transition:box-shadow .2s ease;background:#ffffff;box-shadow:inset 0 0 0 1px gray;color:#191919;cursor:pointer}.mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-selectable__pill:hover{background:#9ed05f}:checked+.mc-tag-selectable__pill{background:#188803;box-shadow:inset 0 0 0 1px #188803;color:#fff}:checked+.mc-tag-selectable__pill:hover{background:#006902;box-shadow:inset 0 0 0 1px #006902}.mc-tag-selectable__pill:active{background:#035010;box-shadow:inset 0 0 0 1px #035010;color:#fff}:focus+.mc-tag-selectable__pill:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}:disabled+.mc-tag-selectable__pill{cursor:not-allowed;background:#e6e6e6;color:gray}.mc-tag-selectable--dark .mc-tag-selectable__pill{background:#191919;color:#fff;cursor:pointer}.mc-tag-selectable--dark .mc-tag-selectable__pill:hover{background:#006902}.mc-tag-selectable--dark .mc-tag-selectable__pill:active{background:#c5e39e;box-shadow:inset 0 0 0 1px #c5e39e;color:#191919}.mc-tag-selectable--dark :checked+.mc-tag-selectable__pill{background:#78be20;box-shadow:inset 0 0 0 1px #78be20;color:#191919}.mc-tag-selectable--dark :checked+.mc-tag-selectable__pill:hover{background:#9ed05f}.mc-tag-selectable--dark :disabled+.mc-tag-selectable__pill{cursor:not-allowed;background:#4d4d4d;color:gray}.mc-tag-selectable--s .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-selectable--s\\@from-m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-selectable--s\\@from-l .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-l .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-selectable--s\\@from-xl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-xl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-selectable--s\\@from-xxl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-xxl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-selectable--m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-selectable--m\\@from-m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-selectable--m\\@from-l .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-l .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-selectable--m\\@from-xl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-xl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-selectable--m\\@from-xxl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-xxl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}.mc-tag-removable{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0;background-color:#333;color:#fff}.mc-tag-removable:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}@media screen and (min-width: 680px){.mc-tag-removable--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-m .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-m .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1024px){.mc-tag-removable--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-l .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-l .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1280px){.mc-tag-removable--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-xl .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-xl .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1920px){.mc-tag-removable--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-xxl .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-xxl .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}.mc-tag-removable--m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}@media screen and (min-width: 680px){.mc-tag-removable--m\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-m .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-m .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1024px){.mc-tag-removable--m\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-l .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-l .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1280px){.mc-tag-removable--m\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-xl .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-xl .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1920px){.mc-tag-removable--m\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-xxl .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-xxl .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}.mc-tag-removable--dark{background-color:#ccc;color:#191919}.mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable__remove{box-shadow:none;text-decoration:none;outline:none;border:none;cursor:pointer;padding:0;width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>');position:relative;background-color:#333;margin:0;display:block;border-radius:50%;background-repeat:no-repeat;background-position:center}.mc-tag-removable__remove:after{box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:50%;inset:-.125rem}.mc-tag-removable__remove-text{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-tag-removable__remove:hover{background-color:#4d4d4d}.mc-tag-removable__remove:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}.mc-tag-removable__remove:active{background-color:#666}.mc-tag-removable--dark .mc-tag-removable__remove{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#191919\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>');background-color:#ccc}.mc-tag-removable--dark .mc-tag-removable__remove:hover{background-color:#b3b3b3}.mc-tag-removable--dark .mc-tag-removable__remove:active{background-color:#999}.mc-tag-list{list-style:none;margin-left:0;padding-left:0;display:flex;flex-flow:row wrap}.mc-tag-list__item{margin:0 1rem 1rem 0}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1775
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TagComponent, decorators: [{
1776
- type: Component,
1777
- args: [{ selector: 'moz-tag, a[moz-tag]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-template #labelTemplate>\n <span [ngClass]=\"labelCssClass\">\n <ng-content></ng-content>\n </span>\n</ng-template>\n\n<ng-container [ngSwitch]=\"type\">\n <ng-container *ngSwitchCase=\"'selectable'\">\n <input\n class=\"mc-tag-selectable__input\"\n type=\"checkbox\"\n id=\"selectable\"\n [ngModel]=\"select\"\n (ngModelChange)=\"emitSelectChanges($event)\"\n />\n <label class=\"mc-tag-selectable__pill\" for=\"selectable\">\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n </label>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'removable'\">\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n <button class=\"mc-tag-removable__remove\" (click)=\"emitRemove()\"></button>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <ng-container [ngTemplateOutlet]=\"labelTemplate\"></ng-container>\n </ng-container>\n</ng-container>\n", styles: [".mc-tag-text{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;background:#ffffff;color:#191919;box-shadow:inset 0 0 0 1px gray}.mc-tag-text:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-text--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-text--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-text--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-text--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-text--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-text--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-text--dark{background:#191919;color:#fff;box-shadow:inset 0 0 0 1px #fff}.mc-tag-link{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;text-decoration:none;outline:none;background:#ffffff;box-shadow:inset 0 0 0 1px gray;color:#191919}.mc-tag-link:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-link:hover{background:#e6e6e6}.mc-tag-link:active{background:#cccccc}.mc-tag-link:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}.mc-tag-link--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-link--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-link--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-link--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-link--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-link--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-link--dark{background:#191919;color:#fff;box-shadow:inset 0 0 0 1px #fff}.mc-tag-link--dark:hover{background:#333333}.mc-tag-link--dark:active{background:#4d4d4d}.mc-tag-selectable{display:inline-block;white-space:nowrap}.mc-tag-selectable__input{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-tag-selectable__label{-webkit-user-select:none;user-select:none}.mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;transition:box-shadow .2s ease;background:#ffffff;box-shadow:inset 0 0 0 1px gray;color:#191919;cursor:pointer}.mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-selectable__pill:hover{background:#9ed05f}:checked+.mc-tag-selectable__pill{background:#188803;box-shadow:inset 0 0 0 1px #188803;color:#fff}:checked+.mc-tag-selectable__pill:hover{background:#006902;box-shadow:inset 0 0 0 1px #006902}.mc-tag-selectable__pill:active{background:#035010;box-shadow:inset 0 0 0 1px #035010;color:#fff}:focus+.mc-tag-selectable__pill:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}:disabled+.mc-tag-selectable__pill{cursor:not-allowed;background:#e6e6e6;color:gray}.mc-tag-selectable--dark .mc-tag-selectable__pill{background:#191919;color:#fff;cursor:pointer}.mc-tag-selectable--dark .mc-tag-selectable__pill:hover{background:#006902}.mc-tag-selectable--dark .mc-tag-selectable__pill:active{background:#c5e39e;box-shadow:inset 0 0 0 1px #c5e39e;color:#191919}.mc-tag-selectable--dark :checked+.mc-tag-selectable__pill{background:#78be20;box-shadow:inset 0 0 0 1px #78be20;color:#191919}.mc-tag-selectable--dark :checked+.mc-tag-selectable__pill:hover{background:#9ed05f}.mc-tag-selectable--dark :disabled+.mc-tag-selectable__pill{cursor:not-allowed;background:#4d4d4d;color:gray}.mc-tag-selectable--s .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-selectable--s\\@from-m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-selectable--s\\@from-l .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-l .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-selectable--s\\@from-xl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-xl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-selectable--s\\@from-xxl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex}.mc-tag-selectable--s\\@from-xxl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}}.mc-tag-selectable--m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}@media screen and (min-width: 680px){.mc-tag-selectable--m\\@from-m .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-m .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1024px){.mc-tag-selectable--m\\@from-l .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-l .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1280px){.mc-tag-selectable--m\\@from-xl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-xl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}@media screen and (min-width: 1920px){.mc-tag-selectable--m\\@from-xxl .mc-tag-selectable__pill{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex}.mc-tag-selectable--m\\@from-xxl .mc-tag-selectable__pill:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}}.mc-tag-removable{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0;background-color:#333;color:#fff}.mc-tag-removable:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--s{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}@media screen and (min-width: 680px){.mc-tag-removable--s\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-m .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-m .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1024px){.mc-tag-removable--s\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-l .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-l .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1280px){.mc-tag-removable--s\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-xl .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-xl .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}@media screen and (min-width: 1920px){.mc-tag-removable--s\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:.75rem;padding:.1875rem 1rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--s\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:.875rem;inset:-.125rem}.mc-tag-removable--s\\@from-xxl .mc-tag-removable__label{padding:.1875rem .25rem .1875rem 1rem}.mc-tag-removable--s\\@from-xxl .mc-tag-removable__remove{width:1.5rem;height:1.5rem;background-size:1rem}}.mc-tag-removable--m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}@media screen and (min-width: 680px){.mc-tag-removable--m\\@from-m{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-m:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-m .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-m .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1024px){.mc-tag-removable--m\\@from-l{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-l:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-l .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-l .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1280px){.mc-tag-removable--m\\@from-xl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-xl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-xl .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-xl .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}@media screen and (min-width: 1920px){.mc-tag-removable--m\\@from-xxl{font-family:LeroyMerlin,sans-serif;font-weight:400;font-size:.875rem;line-height:1.2857142857;border-radius:1.25rem;padding:.6875rem 1.5rem;position:relative;display:inline-flex;padding:0}.mc-tag-removable--m\\@from-xxl:after{border-radius:2px;box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:1.375rem;inset:-.125rem}.mc-tag-removable--m\\@from-xxl .mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable--m\\@from-xxl .mc-tag-removable__remove{width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>')}}.mc-tag-removable--dark{background-color:#ccc;color:#191919}.mc-tag-removable__label{padding:.6875rem .5rem .6875rem 1.5rem}.mc-tag-removable__remove{box-shadow:none;text-decoration:none;outline:none;border:none;cursor:pointer;padding:0;width:2.5rem;height:2.5rem;background-size:1.5rem;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#cccccc\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>');position:relative;background-color:#333;margin:0;display:block;border-radius:50%;background-repeat:no-repeat;background-position:center}.mc-tag-removable__remove:after{box-shadow:0 0 0 0 transparent;content:\"\";display:block;pointer-events:none;position:absolute;inset:0;transition:box-shadow .2s ease;border-radius:50%;inset:-.125rem}.mc-tag-removable__remove-text{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-tag-removable__remove:hover{background-color:#4d4d4d}.mc-tag-removable__remove:focus:after{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc;box-shadow:0 0 0 .125rem #0b96cc}.mc-tag-removable__remove:active{background-color:#666}.mc-tag-removable--dark .mc-tag-removable__remove{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#191919\" viewBox=\"0 0 24 24\"><path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4.14 12.7a1 1 0 0 1-1.41 1.42l-2.68-2.68-2.78 2.77a1 1 0 1 1-1.41-1.42L10.63 12 7.79 9.21a1 1 0 1 1 1.42-1.42l2.84 2.83 2.74-2.74a1 1 0 1 1 1.42 1.42L13.46 12z\"/></svg>');background-color:#ccc}.mc-tag-removable--dark .mc-tag-removable__remove:hover{background-color:#b3b3b3}.mc-tag-removable--dark .mc-tag-removable__remove:active{background-color:#999}.mc-tag-list{list-style:none;margin-left:0;padding-left:0;display:flex;flex-flow:row wrap}.mc-tag-list__item{margin:0 1rem 1rem 0}\n"] }]
1778
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { type: [{
1779
- type: Input
1780
- }], size: [{
1781
- type: Input
1782
- }], select: [{
1783
- type: Input
1784
- }], selectChange: [{
1785
- type: Output
1786
- }], clickOnRemove: [{
1787
- type: Output
1788
- }], hostCssClasses: [{
1789
- type: HostBinding,
1790
- args: ['class']
1791
- }] } });
1792
-
1793
- class TagModule {
1794
- }
1795
- TagModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TagModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1796
- TagModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: TagModule, declarations: [TagComponent], imports: [CommonModule, FormsModule], exports: [TagComponent] });
1797
- TagModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TagModule, imports: [CommonModule, FormsModule] });
1798
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TagModule, decorators: [{
1799
- type: NgModule,
1800
- args: [{
1801
- imports: [CommonModule, FormsModule],
1802
- declarations: [TagComponent],
1803
- exports: [TagComponent],
1804
- }]
1805
- }] });
1806
-
1807
- class TextAreaComponent {
1808
- constructor() {
1809
- this._invalid = false;
1810
- this._valid = false;
1811
- }
1812
- get invalid() {
1813
- return this._invalid || false;
1814
- }
1815
- get valid() {
1816
- const valid = this._valid || false;
1817
- return !this.invalid && valid;
1818
- }
1819
- get hostCssClasses() {
1820
- const staticClasses = 'mc-textarea';
1821
- const validClass = this.valid ? 'is-valid' : '';
1822
- const invalidClass = this.invalid ? 'is-invalid' : '';
1823
- const dynamicClasses = `${validClass} ${invalidClass}`;
1824
- return `${staticClasses} ${dynamicClasses}`;
1825
- }
1826
- set invalid(val) {
1827
- this._invalid = castBooleanProperty(val);
1828
- }
1829
- set valid(val) {
1830
- this._valid = castBooleanProperty(val);
1831
- }
1832
- }
1833
- TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1834
- TextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TextAreaComponent, selector: "textarea[moz-text-area]", inputs: { invalid: "invalid", valid: "valid" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: '', isInline: true, styles: [".mc-textarea{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.375;border-radius:4px;display:block;width:100%;position:relative;color:#191919;border:1px solid #666666;background:#ffffff;transition:all ease .2s;padding:calc(.75rem - .125em - 1px) .75rem calc(.75rem + .125em - 1px)}.mc-textarea[type=number]::-webkit-inner-spin-button,.mc-textarea[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-textarea[type=number]{-moz-appearance:textfield}.mc-textarea[type=search]::-webkit-search-decoration:hover,.mc-textarea[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-textarea:hover{border-color:#191919}.mc-textarea.is-valid{border-color:#46a610}.mc-textarea.is-invalid{border-color:#c61112}.mc-textarea:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-textarea:disabled{border-color:#e6e6e6;background:#e6e6e6;cursor:not-allowed}.mc-textarea::placeholder{color:#666}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1835
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextAreaComponent, decorators: [{
1836
- type: Component,
1837
- args: [{ selector: 'textarea[moz-text-area]', template: '', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, styles: [".mc-textarea{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.375;border-radius:4px;display:block;width:100%;position:relative;color:#191919;border:1px solid #666666;background:#ffffff;transition:all ease .2s;padding:calc(.75rem - .125em - 1px) .75rem calc(.75rem + .125em - 1px)}.mc-textarea[type=number]::-webkit-inner-spin-button,.mc-textarea[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-textarea[type=number]{-moz-appearance:textfield}.mc-textarea[type=search]::-webkit-search-decoration:hover,.mc-textarea[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-textarea:hover{border-color:#191919}.mc-textarea.is-valid{border-color:#46a610}.mc-textarea.is-invalid{border-color:#c61112}.mc-textarea:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-textarea:disabled{border-color:#e6e6e6;background:#e6e6e6;cursor:not-allowed}.mc-textarea::placeholder{color:#666}\n"] }]
1838
- }], propDecorators: { hostCssClasses: [{
1839
- type: HostBinding,
1840
- args: ['class']
1841
- }], invalid: [{
1842
- type: Input
1843
- }], valid: [{
1844
- type: Input
1845
- }] } });
1846
-
1847
- class TextAreaModule {
1848
- }
1849
- TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1850
- TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: TextAreaModule, declarations: [TextAreaComponent], exports: [TextAreaComponent] });
1851
- TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextAreaModule });
1852
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextAreaModule, decorators: [{
1853
- type: NgModule,
1854
- args: [{
1855
- declarations: [TextAreaComponent],
1856
- exports: [TextAreaComponent],
1857
- }]
1858
- }] });
1859
-
1860
- class TextInputComponent {
1861
- constructor(elementRef) {
1862
- this.elementRef = elementRef;
1863
- this.size = 'm';
1864
- this._invalid = false;
1865
- this._valid = false;
1866
- }
1867
- get hostCssClasses() {
1868
- const validClass = this.valid ? 'is-valid' : '';
1869
- const invalidClass = this.invalid ? 'is-invalid' : '';
1870
- const sizeCssClass = this.isRadioButton || this.isCheckbox ? '' : `mc-text-input--${this.size}`;
1871
- return `${this.inputClass} ${sizeCssClass} ${validClass} ${invalidClass}`;
1872
- }
1873
- get invalid() {
1874
- return this._invalid || false;
1875
- }
1876
- get valid() {
1877
- const valid = this._valid || false;
1878
- return !this.invalid && valid;
1879
- }
1880
- get typeElement() {
1881
- return this.elementRef.nativeElement.type || 'text';
1882
- }
1883
- get isRadioButton() {
1884
- return this.typeElement === 'radio';
1885
- }
1886
- get isCheckbox() {
1887
- return this.typeElement === 'checkbox';
1888
- }
1889
- get inputClass() {
1890
- if (this.isCheckbox) {
1891
- return 'mc-checkbox__input';
1892
- }
1893
- if (this.isRadioButton) {
1894
- return 'mc-radio__input';
1895
- }
1896
- return 'mc-text-input';
1897
- }
1898
- set invalid(val) {
1899
- this._invalid = castBooleanProperty(val);
1900
- }
1901
- set valid(val) {
1902
- this._valid = castBooleanProperty(val);
1903
- }
1904
- }
1905
- TextInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextInputComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1906
- TextInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TextInputComponent, selector: "input[moz-input]", inputs: { size: "size", invalid: "invalid", valid: "valid" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: '', isInline: true, styles: [".mc-text-input{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.375;min-height:3rem;padding:.75rem .6875rem;transition:box-shadow .2s ease;display:block;width:100%;position:relative;border:1px solid #666666;color:#191919;background-color:#fff;border-radius:4px}.mc-text-input[type=number]::-webkit-inner-spin-button,.mc-text-input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-text-input[type=number]{-moz-appearance:textfield}.mc-text-input[type=search]::-webkit-search-decoration:hover,.mc-text-input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-text-input::placeholder{font-size:1rem;line-height:1.375}.mc-text-input::placeholder{margin:0;color:#666;opacity:1}.mc-text-input.is-valid,.mc-text-input.is-invalid{background-repeat:no-repeat;background-size:1.5rem 1.5rem;background-position:right .4375rem center;padding-right:2.5rem}.mc-text-input.is-valid{border-color:#46a610;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#46a610\" viewBox=\"0 0 24 24\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-text-input.is-valid:hover,.mc-text-input.is-valid.is-hover{border-color:#035010}.mc-text-input.is-invalid{border-color:#c61112;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-text-input.is-invalid:hover,.mc-text-input.is-invalid.is-hover{border-color:#530000}.mc-text-input:hover{border-color:#191919}.mc-text-input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-text-input:disabled{background:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed}.mc-text-input--s{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s::placeholder{font-size:.875rem;line-height:1.2857142857}@media screen and (min-width: 680px){.mc-text-input--s\\@from-m{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-m::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1024px){.mc-text-input--s\\@from-l{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-l::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1280px){.mc-text-input--s\\@from-xl{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-xl::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1920px){.mc-text-input--s\\@from-xxl{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-xxl::placeholder{font-size:.875rem;line-height:1.2857142857}}.mc-text-input--m{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m::placeholder{font-size:1rem;line-height:1.375}@media screen and (min-width: 680px){.mc-text-input--m\\@from-m{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-m::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1024px){.mc-text-input--m\\@from-l{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-l::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1280px){.mc-text-input--m\\@from-xl{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-xl::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1920px){.mc-text-input--m\\@from-xxl{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-xxl::placeholder{font-size:1rem;line-height:1.375}}.mc-radio{align-items:center;display:flex}.mc-radio__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-radio__input{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;border:2px solid #666666;min-width:20px;width:1.25rem;min-height:20px;height:1.25rem;border-radius:50%;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-radio__input[type=number]::-webkit-inner-spin-button,.mc-radio__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-radio__input[type=number]{-moz-appearance:textfield}.mc-radio__input[type=search]::-webkit-search-decoration:hover,.mc-radio__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-radio__input:before{border-radius:50%;content:\"\";display:block;height:.375rem;left:50%;min-height:6px;min-width:6px;position:absolute;top:50%;transform:translate(-50%,-50%);width:.375rem}.mc-radio__input::-ms-check{background-color:#fff;border:2px solid #666666;color:#fff}.mc-radio__input:hover{border-color:#191919}.mc-radio__input:hover::-ms-check{border-color:#191919}.mc-radio__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-radio__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-radio__input:checked{background-color:#46a610;border-color:#46a610}.mc-radio__input:checked::-ms-check{border-color:#46a610;background-color:#46a610}.mc-radio__input:checked:before{background-color:#fff}.mc-radio__input:checked:hover{border-color:#035010}.mc-radio__input:checked:hover::-ms-check{border-color:#035010}.mc-radio__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-radio__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-radio__input:disabled+.mc-radio__label{color:gray}.mc-radio__input:disabled:checked:before{background-color:#999}.mc-radio__input.is-invalid{border-color:#c61112}.mc-radio__input.is-invalid::-ms-check{border-color:#c61112}.mc-radio__input.is-invalid:hover{border-color:#530000}.mc-radio__input.is-invalid:hover::-ms-check{border-color:#530000}.mc-checkbox{align-items:center;display:flex}.mc-checkbox__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-checkbox__input{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;min-width:20px;min-height:20px;width:1.25rem;height:1.25rem;border-radius:4px;border:2px solid #666666;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-checkbox__input[type=number]::-webkit-inner-spin-button,.mc-checkbox__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-checkbox__input[type=number]{-moz-appearance:textfield}.mc-checkbox__input[type=search]::-webkit-search-decoration:hover,.mc-checkbox__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-checkbox__input::-ms-check{background-color:#fff;border:2px solid #666666;border-radius:4px;color:#fff}.mc-checkbox__input:hover{border-color:#191919}.mc-checkbox__input:hover::-ms-check{border-color:#191919}.mc-checkbox__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:checked,.mc-checkbox__input:indeterminate{background-color:#46a610;border-color:#46a610;background-size:1rem 1rem}.mc-checkbox__input:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>');background-position:center center}.mc-checkbox__input:checked::-ms-check{background-color:#46a610;border-color:#46a610}.mc-checkbox__input:checked:hover:not(:disabled){border-color:#035010}.mc-checkbox__input:checked:hover:not(:disabled)::-ms-check{border-color:#035010}.mc-checkbox__input:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-checkbox__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6}.mc-checkbox__input:disabled:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>')}.mc-checkbox__input:disabled:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled+.mc-checkbox__label{color:gray}.mc-checkbox__input.is-invalid{border-color:#c61112}.mc-checkbox__input.is-invalid::-ms-check{border-color:#c61112}.mc-checkbox__input.is-invalid:hover{border-color:#530000}.mc-checkbox__input.is-invalid:hover::-ms-check{border-color:#530000}.mc-text-input--m{height:3rem}.mc-text-input--s{height:2rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1907
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextInputComponent, decorators: [{
1908
- type: Component,
1909
- args: [{ selector: 'input[moz-input]', template: '', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, styles: [".mc-text-input{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.375;min-height:3rem;padding:.75rem .6875rem;transition:box-shadow .2s ease;display:block;width:100%;position:relative;border:1px solid #666666;color:#191919;background-color:#fff;border-radius:4px}.mc-text-input[type=number]::-webkit-inner-spin-button,.mc-text-input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-text-input[type=number]{-moz-appearance:textfield}.mc-text-input[type=search]::-webkit-search-decoration:hover,.mc-text-input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-text-input::placeholder{font-size:1rem;line-height:1.375}.mc-text-input::placeholder{margin:0;color:#666;opacity:1}.mc-text-input.is-valid,.mc-text-input.is-invalid{background-repeat:no-repeat;background-size:1.5rem 1.5rem;background-position:right .4375rem center;padding-right:2.5rem}.mc-text-input.is-valid{border-color:#46a610;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" fill=\"#46a610\" viewBox=\"0 0 24 24\"><path d=\"M12 4a8 8 0 11-8 8 8 8 0 018-8m0-2a10 10 0 1010 10A10 10 0 0012 2z\"/><path d=\"M10.73 15.75a1 1 0 01-.68-.26l-3-2.74a1 1 0 011.36-1.47l2.25 2.08 4.36-4.42a1 1 0 111.42 1.41l-5 5.1a1 1 0 01-.71.3z\"/></svg>')}.mc-text-input.is-valid:hover,.mc-text-input.is-valid.is-hover{border-color:#035010}.mc-text-input.is-invalid{border-color:#c61112;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1.5rem\" width=\"1.5rem\" viewBox=\"0 0 24 24\" fill=\"#c61112\"><path d=\"M12 2a10 10 0 1010 10A10 10 0 0012 2zm0 18a8 8 0 118-8 8 8 0 01-8 8z\"/><path d=\"M12 7a1 1 0 00-1 1v4.38a1 1 0 002 0V8a1 1 0 00-1-1z\"/><circle cx=\"12\" cy=\"16\" r=\"1\"/></svg>')}.mc-text-input.is-invalid:hover,.mc-text-input.is-invalid.is-hover{border-color:#530000}.mc-text-input:hover{border-color:#191919}.mc-text-input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-text-input:disabled{background:#e6e6e6;border-color:#e6e6e6;color:#666;cursor:not-allowed}.mc-text-input--s{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s::placeholder{font-size:.875rem;line-height:1.2857142857}@media screen and (min-width: 680px){.mc-text-input--s\\@from-m{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-m::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1024px){.mc-text-input--s\\@from-l{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-l::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1280px){.mc-text-input--s\\@from-xl{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-xl::placeholder{font-size:.875rem;line-height:1.2857142857}}@media screen and (min-width: 1920px){.mc-text-input--s\\@from-xxl{font-size:.875rem;line-height:1.2857142857;min-height:2rem;padding:.375rem .4375rem}.mc-text-input--s\\@from-xxl::placeholder{font-size:.875rem;line-height:1.2857142857}}.mc-text-input--m{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m::placeholder{font-size:1rem;line-height:1.375}@media screen and (min-width: 680px){.mc-text-input--m\\@from-m{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-m::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1024px){.mc-text-input--m\\@from-l{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-l::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1280px){.mc-text-input--m\\@from-xl{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-xl::placeholder{font-size:1rem;line-height:1.375}}@media screen and (min-width: 1920px){.mc-text-input--m\\@from-xxl{font-size:1rem;line-height:1.375;min-height:3rem;padding:.75rem .6875rem}.mc-text-input--m\\@from-xxl::placeholder{font-size:1rem;line-height:1.375}}.mc-radio{align-items:center;display:flex}.mc-radio__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-radio__input{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;border:2px solid #666666;min-width:20px;width:1.25rem;min-height:20px;height:1.25rem;border-radius:50%;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-radio__input[type=number]::-webkit-inner-spin-button,.mc-radio__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-radio__input[type=number]{-moz-appearance:textfield}.mc-radio__input[type=search]::-webkit-search-decoration:hover,.mc-radio__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-radio__input:before{border-radius:50%;content:\"\";display:block;height:.375rem;left:50%;min-height:6px;min-width:6px;position:absolute;top:50%;transform:translate(-50%,-50%);width:.375rem}.mc-radio__input::-ms-check{background-color:#fff;border:2px solid #666666;color:#fff}.mc-radio__input:hover{border-color:#191919}.mc-radio__input:hover::-ms-check{border-color:#191919}.mc-radio__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-radio__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-radio__input:checked{background-color:#46a610;border-color:#46a610}.mc-radio__input:checked::-ms-check{border-color:#46a610;background-color:#46a610}.mc-radio__input:checked:before{background-color:#fff}.mc-radio__input:checked:hover{border-color:#035010}.mc-radio__input:checked:hover::-ms-check{border-color:#035010}.mc-radio__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-radio__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-radio__input:disabled+.mc-radio__label{color:gray}.mc-radio__input:disabled:checked:before{background-color:#999}.mc-radio__input.is-invalid{border-color:#c61112}.mc-radio__input.is-invalid::-ms-check{border-color:#c61112}.mc-radio__input.is-invalid:hover{border-color:#530000}.mc-radio__input.is-invalid:hover::-ms-check{border-color:#530000}.mc-checkbox{align-items:center;display:flex}.mc-checkbox__label{font-size:1rem;line-height:1.125;cursor:pointer;margin-left:.5rem;color:#000}.mc-checkbox__input{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;min-width:20px;min-height:20px;width:1.25rem;height:1.25rem;border-radius:4px;border:2px solid #666666;background-color:#fff;position:relative;transition:all .2s ease;cursor:pointer}.mc-checkbox__input[type=number]::-webkit-inner-spin-button,.mc-checkbox__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.mc-checkbox__input[type=number]{-moz-appearance:textfield}.mc-checkbox__input[type=search]::-webkit-search-decoration:hover,.mc-checkbox__input[type=search]::-webkit-search-cancel-button:hover{cursor:pointer}.mc-checkbox__input::-ms-check{background-color:#fff;border:2px solid #666666;border-radius:4px;color:#fff}.mc-checkbox__input:hover{border-color:#191919}.mc-checkbox__input:hover::-ms-check{border-color:#191919}.mc-checkbox__input:focus{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:focus::-ms-check{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-checkbox__input:checked,.mc-checkbox__input:indeterminate{background-color:#46a610;border-color:#46a610;background-size:1rem 1rem}.mc-checkbox__input:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>');background-position:center center}.mc-checkbox__input:checked::-ms-check{background-color:#46a610;border-color:#46a610}.mc-checkbox__input:checked:hover:not(:disabled){border-color:#035010}.mc-checkbox__input:checked:hover:not(:disabled)::-ms-check{border-color:#035010}.mc-checkbox__input:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#ffffff\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled{background-color:#e6e6e6;border-color:#e6e6e6;cursor:not-allowed}.mc-checkbox__input:disabled::-ms-check{background-color:#e6e6e6;border-color:#e6e6e6}.mc-checkbox__input:disabled:checked{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 0 1-1.38 0l-2.92-2.6a1 1 0 1 1 1.34-1.48l2.22 2 4.41-4.34a1 1 0 1 1 1.4 1.42z\"/></svg>')}.mc-checkbox__input:disabled:indeterminate{background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#999999\" viewBox=\"0 0 16 16\"><path d=\"M12 9H4a1 1 0 010-2h8a1 1 0 010 2z\"/></svg>')}.mc-checkbox__input:disabled+.mc-checkbox__label{color:gray}.mc-checkbox__input.is-invalid{border-color:#c61112}.mc-checkbox__input.is-invalid::-ms-check{border-color:#c61112}.mc-checkbox__input.is-invalid:hover{border-color:#530000}.mc-checkbox__input.is-invalid:hover::-ms-check{border-color:#530000}.mc-text-input--m{height:3rem}.mc-text-input--s{height:2rem}\n"] }]
1910
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { size: [{
1911
- type: Input
1912
- }], hostCssClasses: [{
1913
- type: HostBinding,
1914
- args: ['class']
1915
- }], invalid: [{
1916
- type: Input
1917
- }], valid: [{
1918
- type: Input
1919
- }] } });
1920
-
1921
- class TextInputModule {
1922
- }
1923
- TextInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1924
- TextInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: TextInputModule, declarations: [TextInputComponent], imports: [CommonModule, FormsModule, IconModule], exports: [TextInputComponent] });
1925
- TextInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextInputModule, imports: [CommonModule, FormsModule, IconModule] });
1926
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextInputModule, decorators: [{
1927
- type: NgModule,
1928
- args: [{
1929
- declarations: [TextInputComponent],
1930
- imports: [CommonModule, FormsModule, IconModule],
1931
- exports: [TextInputComponent],
1932
- }]
1933
- }] });
1934
-
1935
- const TOGGLE_CONTROL_VALUE_ACCESSOR = {
1936
- provide: NG_VALUE_ACCESSOR,
1937
- useExisting: forwardRef(() => ToggleComponent),
1938
- multi: true,
1939
- };
1940
- class ToggleComponent {
1941
- get checked() {
1942
- return this._checked;
1943
- }
1944
- constructor() {
1945
- this.disabled = false;
1946
- this.size = 'm';
1947
- this._checked = false;
1948
- this.onChange = () => { };
1949
- this.onTouch = () => { };
1950
- this.toggleId = generateId();
1951
- }
1952
- set checked(v) {
1953
- this._checked = v;
1954
- this.onChange(this._checked);
1955
- this.onTouch();
1956
- }
1957
- writeValue(value) {
1958
- this.checked = !!value;
1959
- }
1960
- registerOnChange(fn) {
1961
- this.onChange = fn;
1962
- }
1963
- registerOnTouched(fn) {
1964
- this.onTouch = fn;
1965
- }
1966
- toggle() {
1967
- this.writeValue(!this.checked);
1968
- }
1969
- get hostCssClasses() {
1970
- const sizeClass = `mc-toggle--${this.size}`;
1971
- return `mc-toggle ${sizeClass}`;
1972
- }
1973
- }
1974
- ToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1975
- ToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ToggleComponent, selector: "moz-toggle", inputs: { disabled: "disabled", size: "size", checked: "checked" }, host: { properties: { "class": "this.hostCssClasses" } }, providers: [TOGGLE_CONTROL_VALUE_ACCESSOR], ngImport: i0, template: "<input\n [id]=\"toggleId\"\n type=\"checkbox\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n class=\"mc-toggle__input\"\n (click)=\"toggle()\"\n/>\n<label class=\"mc-toggle__label\" [for]=\"toggleId\">\n <span class=\"mc-toggle__content\">\n <ng-content></ng-content>\n </span>\n</label>\n", styles: [".mc-toggle{display:block;position:relative}.mc-toggle__input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.mc-toggle__input:focus+.mc-toggle__label:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-toggle__input:checked+.mc-toggle__label:before{background-color:#46a610}.mc-toggle__input:checked+.mc-toggle__label:after{border-color:#46a610;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#46a610\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 01-1.38 0l-2.92-2.6a1 1 0 111.34-1.48l2.22 2 4.41-4.34a1 1 0 111.4 1.42z\"/></svg>');transform:translate(100%,-50%)}.mc-toggle__input:checked+.mc-toggle__label .mc-toggle__off{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-toggle__input:not(:checked)+.mc-toggle__label .mc-toggle__on{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-toggle__input:disabled+.mc-toggle__label{color:gray;cursor:not-allowed}.mc-toggle__input:disabled+.mc-toggle__label:before{background-color:#e6e6e6}.mc-toggle__input:disabled+.mc-toggle__label:after{border-color:#e6e6e6;background-color:#b3b3b3;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#e6e6e6\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>')}.mc-toggle__input:disabled:checked+.mc-toggle__label:before{background-color:#c5e39e}.mc-toggle__input:disabled:checked+.mc-toggle__label:after{border-color:#c5e39e;background-color:#fff;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#c5e39e\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 01-1.38 0l-2.92-2.6a1 1 0 111.34-1.48l2.22 2 4.41-4.34a1 1 0 111.4 1.42z\"/></svg>');background-size:1rem}.mc-toggle__input:not(:disabled)+.mc-toggle__label:hover:after{background-color:#e6e6e6}.mc-toggle__content{display:inline-block;padding-left:.75rem}.mc-toggle__label{font-size:1rem;line-height:1.125;height:2rem;padding-left:4rem;box-sizing:border-box;cursor:pointer;color:#000;display:table-cell;position:relative;vertical-align:middle;-webkit-user-select:none;user-select:none}.mc-toggle__label:before,.mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle__label:before{width:4rem}.mc-toggle__label:after{width:2rem}.mc-toggle__label:after,.mc-toggle__label:before{box-sizing:border-box;content:\"\";display:block;left:0;position:absolute;top:50%;transform:translateY(-50%)}.mc-toggle__label:before{background-color:#666;will-change:background-color,border-color,box-shadow;transition:background-color .1s ease,border-color .1s ease,box-shadow .2s ease}.mc-toggle__label:after{background:#ffffff url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#666666\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat center;background-size:1rem;border:solid 3px #666666;will-change:transform;transition:transform .1s ease,border-color .1s ease}.mc-toggle--s .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s .mc-toggle__label:before,.mc-toggle--s .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s .mc-toggle__label:before{width:3rem}.mc-toggle--s .mc-toggle__label:after{width:1.5rem}@media screen and (min-width: 680px){.mc-toggle--s\\@from-m .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-m .mc-toggle__label:before,.mc-toggle--s\\@from-m .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-m .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-m .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1024px){.mc-toggle--s\\@from-l .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-l .mc-toggle__label:before,.mc-toggle--s\\@from-l .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-l .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-l .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1280px){.mc-toggle--s\\@from-xl .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-xl .mc-toggle__label:before,.mc-toggle--s\\@from-xl .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-xl .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-xl .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1920px){.mc-toggle--s\\@from-xxl .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:before,.mc-toggle--s\\@from-xxl .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:after{width:1.5rem}}.mc-toggle--m .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m .mc-toggle__label:before,.mc-toggle--m .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m .mc-toggle__label:before{width:4rem}.mc-toggle--m .mc-toggle__label:after{width:2rem}@media screen and (min-width: 680px){.mc-toggle--m\\@from-m .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-m .mc-toggle__label:before,.mc-toggle--m\\@from-m .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-m .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-m .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1024px){.mc-toggle--m\\@from-l .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-l .mc-toggle__label:before,.mc-toggle--m\\@from-l .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-l .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-l .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1280px){.mc-toggle--m\\@from-xl .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-xl .mc-toggle__label:before,.mc-toggle--m\\@from-xl .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-xl .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-xl .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1920px){.mc-toggle--m\\@from-xxl .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:before,.mc-toggle--m\\@from-xxl .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:after{width:2rem}}.mc-toggle--hide-label .mc-toggle__content{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}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1976
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ToggleComponent, decorators: [{
1977
- type: Component,
1978
- args: [{ selector: 'moz-toggle', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [TOGGLE_CONTROL_VALUE_ACCESSOR], template: "<input\n [id]=\"toggleId\"\n type=\"checkbox\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n class=\"mc-toggle__input\"\n (click)=\"toggle()\"\n/>\n<label class=\"mc-toggle__label\" [for]=\"toggleId\">\n <span class=\"mc-toggle__content\">\n <ng-content></ng-content>\n </span>\n</label>\n", styles: [".mc-toggle{display:block;position:relative}.mc-toggle__input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.mc-toggle__input:focus+.mc-toggle__label:before{box-shadow:0 0 0 .125rem #fff,0 0 0 .25rem #0b96cc}.mc-toggle__input:checked+.mc-toggle__label:before{background-color:#46a610}.mc-toggle__input:checked+.mc-toggle__label:after{border-color:#46a610;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#46a610\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 01-1.38 0l-2.92-2.6a1 1 0 111.34-1.48l2.22 2 4.41-4.34a1 1 0 111.4 1.42z\"/></svg>');transform:translate(100%,-50%)}.mc-toggle__input:checked+.mc-toggle__label .mc-toggle__off{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-toggle__input:not(:checked)+.mc-toggle__label .mc-toggle__on{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-toggle__input:disabled+.mc-toggle__label{color:gray;cursor:not-allowed}.mc-toggle__input:disabled+.mc-toggle__label:before{background-color:#e6e6e6}.mc-toggle__input:disabled+.mc-toggle__label:after{border-color:#e6e6e6;background-color:#b3b3b3;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#e6e6e6\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>')}.mc-toggle__input:disabled:checked+.mc-toggle__label:before{background-color:#c5e39e}.mc-toggle__input:disabled:checked+.mc-toggle__label:after{border-color:#c5e39e;background-color:#fff;background-image:url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#c5e39e\" viewBox=\"0 0 16 16\"><path d=\"M7.63 11.21a1 1 0 01-1.38 0l-2.92-2.6a1 1 0 111.34-1.48l2.22 2 4.41-4.34a1 1 0 111.4 1.42z\"/></svg>');background-size:1rem}.mc-toggle__input:not(:disabled)+.mc-toggle__label:hover:after{background-color:#e6e6e6}.mc-toggle__content{display:inline-block;padding-left:.75rem}.mc-toggle__label{font-size:1rem;line-height:1.125;height:2rem;padding-left:4rem;box-sizing:border-box;cursor:pointer;color:#000;display:table-cell;position:relative;vertical-align:middle;-webkit-user-select:none;user-select:none}.mc-toggle__label:before,.mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle__label:before{width:4rem}.mc-toggle__label:after{width:2rem}.mc-toggle__label:after,.mc-toggle__label:before{box-sizing:border-box;content:\"\";display:block;left:0;position:absolute;top:50%;transform:translateY(-50%)}.mc-toggle__label:before{background-color:#666;will-change:background-color,border-color,box-shadow;transition:background-color .1s ease,border-color .1s ease,box-shadow .2s ease}.mc-toggle__label:after{background:#ffffff url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1rem\" width=\"1rem\" fill=\"#666666\" viewBox=\"0 0 16 16\"><path d=\"M9.41 8l3.3-3.29a1 1 0 10-1.42-1.42L8 6.59l-3.29-3.3a1 1 0 00-1.42 1.42L6.59 8l-3.3 3.29a1 1 0 000 1.42 1 1 0 001.42 0L8 9.41l3.29 3.3a1 1 0 001.42 0 1 1 0 000-1.42z\"/></svg>') no-repeat center;background-size:1rem;border:solid 3px #666666;will-change:transform;transition:transform .1s ease,border-color .1s ease}.mc-toggle--s .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s .mc-toggle__label:before,.mc-toggle--s .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s .mc-toggle__label:before{width:3rem}.mc-toggle--s .mc-toggle__label:after{width:1.5rem}@media screen and (min-width: 680px){.mc-toggle--s\\@from-m .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-m .mc-toggle__label:before,.mc-toggle--s\\@from-m .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-m .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-m .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1024px){.mc-toggle--s\\@from-l .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-l .mc-toggle__label:before,.mc-toggle--s\\@from-l .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-l .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-l .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1280px){.mc-toggle--s\\@from-xl .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-xl .mc-toggle__label:before,.mc-toggle--s\\@from-xl .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-xl .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-xl .mc-toggle__label:after{width:1.5rem}}@media screen and (min-width: 1920px){.mc-toggle--s\\@from-xxl .mc-toggle__label{height:1.5rem;padding-left:3rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:before,.mc-toggle--s\\@from-xxl .mc-toggle__label:after{border-radius:1.5rem;height:1.5rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:before{width:3rem}.mc-toggle--s\\@from-xxl .mc-toggle__label:after{width:1.5rem}}.mc-toggle--m .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m .mc-toggle__label:before,.mc-toggle--m .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m .mc-toggle__label:before{width:4rem}.mc-toggle--m .mc-toggle__label:after{width:2rem}@media screen and (min-width: 680px){.mc-toggle--m\\@from-m .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-m .mc-toggle__label:before,.mc-toggle--m\\@from-m .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-m .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-m .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1024px){.mc-toggle--m\\@from-l .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-l .mc-toggle__label:before,.mc-toggle--m\\@from-l .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-l .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-l .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1280px){.mc-toggle--m\\@from-xl .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-xl .mc-toggle__label:before,.mc-toggle--m\\@from-xl .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-xl .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-xl .mc-toggle__label:after{width:2rem}}@media screen and (min-width: 1920px){.mc-toggle--m\\@from-xxl .mc-toggle__label{height:2rem;padding-left:4rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:before,.mc-toggle--m\\@from-xxl .mc-toggle__label:after{border-radius:2rem;height:2rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:before{width:4rem}.mc-toggle--m\\@from-xxl .mc-toggle__label:after{width:2rem}}.mc-toggle--hide-label .mc-toggle__content{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}\n"] }]
1979
- }], ctorParameters: function () { return []; }, propDecorators: { disabled: [{
1980
- type: Input
1981
- }], size: [{
1982
- type: Input
1983
- }], checked: [{
1984
- type: Input
1985
- }], hostCssClasses: [{
1986
- type: HostBinding,
1987
- args: ['class']
1988
- }] } });
1989
-
1990
- class ToggleModule {
1991
- }
1992
- ToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1993
- ToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ToggleModule, declarations: [ToggleComponent], imports: [CommonModule], exports: [ToggleComponent] });
1994
- ToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ToggleModule, imports: [CommonModule] });
1995
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ToggleModule, decorators: [{
1996
- type: NgModule,
1997
- args: [{
1998
- imports: [CommonModule],
1999
- declarations: [ToggleComponent],
2000
- exports: [ToggleComponent],
2001
- }]
2002
- }] });
2003
-
2004
- class TooltipComponent {
2005
- constructor() {
2006
- this.text = '';
2007
- this.position = 'bottom';
2008
- this.disabled = false;
2009
- }
2010
- get viewContent() {
2011
- return !this.disabled;
2012
- }
2013
- get hostCssClasses() {
2014
- return `mc-tooltip mc-tooltip--${this.position}`;
2015
- }
2016
- }
2017
- TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2018
- TooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TooltipComponent, selector: "moz-tooltip", inputs: { text: "text", position: "position", disabled: "disabled" }, host: { properties: { "class": "this.hostCssClasses" } }, ngImport: i0, template: "<ng-content></ng-content>\n<span *ngIf=\"viewContent\" class=\"mc-tooltip__content\" role=\"tooltip\">{{ text }}</span>\n", styles: [".mc-tooltip{font-family:LeroyMerlin,sans-serif;font-weight:400;display:inline-flex;position:relative}.mc-tooltip:focus,.mc-tooltip:hover{cursor:help}.mc-tooltip:focus .mc-tooltip__content,.mc-tooltip:hover .mc-tooltip__content{visibility:visible}.mc-tooltip__content{font-size:.875rem;line-height:1.2857142857;background-color:#4d4d4d;border-radius:4px;box-sizing:border-box;color:#fff;padding:.4375rem 1rem;position:absolute;text-align:center;visibility:hidden;white-space:normal;z-index:1000;border:1px solid #ffffff}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip__content{width:13.75rem}}@supports (width: max-content){.mc-tooltip__content{min-width:6.625rem;max-width:13.75rem;width:max-content}}.mc-tooltip__content:before{background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"0.5rem\" width=\"0.5rem\" viewBox=\"0 0 8 8\"><path fill=\"#ffffff\" d=\"M1.79 3.11l6.21-3.11v8l-6.21-3.11a1 1 0 0 1-.45-1.34 1 1 0 0 1 .45-.44z\"/></svg>') no-repeat;background-size:.625rem;content:\"\";height:.625rem;position:absolute;width:.625rem}.mc-tooltip__content:after{background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"0.5rem\" width=\"0.5rem\" viewBox=\"0 0 8 8\"><path fill=\"#4d4d4d\" d=\"M1.79 3.11l6.21-3.11v8l-6.21-3.11a1 1 0 0 1-.45-1.34 1 1 0 0 1 .45-.44z\"/></svg>') no-repeat;background-size:.5rem;content:\"\";height:.5rem;position:absolute;width:.5rem}.mc-tooltip--top .mc-tooltip__content{top:0;left:50%;transform:translate(-50%,calc(-100% - .75rem))}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--top .mc-tooltip__content{transform:translate(-50%,-100%);margin-top:-.75rem}}.mc-tooltip--top .mc-tooltip__content:after,.mc-tooltip--top .mc-tooltip__content:before{bottom:0;left:50%;transform:translate(-50%,100%) rotate(-90deg)}.mc-tooltip--top .mc-tooltip__content:before{bottom:-1px}.mc-tooltip--right .mc-tooltip__content{top:50%;right:0;transform:translate(calc(100% + .75rem),-50%)}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--right .mc-tooltip__content{transform:translate(100%,-50%);margin-right:-.75rem}}.mc-tooltip--right .mc-tooltip__content:after,.mc-tooltip--right .mc-tooltip__content:before{top:50%;left:0;transform:translate(-99%,-50%)}.mc-tooltip--right .mc-tooltip__content:before{left:-1px}.mc-tooltip--left .mc-tooltip__content{left:0;top:50%;transform:translate(calc(-100% - .75rem),-50%)}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--left .mc-tooltip__content{transform:translate(-100%,-50%);margin-left:-.75rem}}.mc-tooltip--left .mc-tooltip__content:after,.mc-tooltip--left .mc-tooltip__content:before{top:50%;right:0;transform:translate(99%,-50%) rotate(180deg)}.mc-tooltip--left .mc-tooltip__content:before{right:-1px}.mc-tooltip--bottom .mc-tooltip__content{bottom:0;left:50%;transform:translate(-50%,calc(100% + .75rem))}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--bottom .mc-tooltip__content{transform:translate(-50%,100%);margin-bottom:-.75rem}}.mc-tooltip--bottom .mc-tooltip__content:after,.mc-tooltip--bottom .mc-tooltip__content:before{top:0;left:50%;transform:translate(-50%,-100%) rotate(90deg)}.mc-tooltip--bottom .mc-tooltip__content:before{top:-1px}.mc-tooltip--no-pointer .mc-tooltip__content:after,.mc-tooltip--no-pointer .mc-tooltip__content:before{background:none}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
2019
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipComponent, decorators: [{
2020
- type: Component,
2021
- args: [{ selector: 'moz-tooltip', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-content></ng-content>\n<span *ngIf=\"viewContent\" class=\"mc-tooltip__content\" role=\"tooltip\">{{ text }}</span>\n", styles: [".mc-tooltip{font-family:LeroyMerlin,sans-serif;font-weight:400;display:inline-flex;position:relative}.mc-tooltip:focus,.mc-tooltip:hover{cursor:help}.mc-tooltip:focus .mc-tooltip__content,.mc-tooltip:hover .mc-tooltip__content{visibility:visible}.mc-tooltip__content{font-size:.875rem;line-height:1.2857142857;background-color:#4d4d4d;border-radius:4px;box-sizing:border-box;color:#fff;padding:.4375rem 1rem;position:absolute;text-align:center;visibility:hidden;white-space:normal;z-index:1000;border:1px solid #ffffff}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip__content{width:13.75rem}}@supports (width: max-content){.mc-tooltip__content{min-width:6.625rem;max-width:13.75rem;width:max-content}}.mc-tooltip__content:before{background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"0.5rem\" width=\"0.5rem\" viewBox=\"0 0 8 8\"><path fill=\"#ffffff\" d=\"M1.79 3.11l6.21-3.11v8l-6.21-3.11a1 1 0 0 1-.45-1.34 1 1 0 0 1 .45-.44z\"/></svg>') no-repeat;background-size:.625rem;content:\"\";height:.625rem;position:absolute;width:.625rem}.mc-tooltip__content:after{background:transparent url('<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"0.5rem\" width=\"0.5rem\" viewBox=\"0 0 8 8\"><path fill=\"#4d4d4d\" d=\"M1.79 3.11l6.21-3.11v8l-6.21-3.11a1 1 0 0 1-.45-1.34 1 1 0 0 1 .45-.44z\"/></svg>') no-repeat;background-size:.5rem;content:\"\";height:.5rem;position:absolute;width:.5rem}.mc-tooltip--top .mc-tooltip__content{top:0;left:50%;transform:translate(-50%,calc(-100% - .75rem))}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--top .mc-tooltip__content{transform:translate(-50%,-100%);margin-top:-.75rem}}.mc-tooltip--top .mc-tooltip__content:after,.mc-tooltip--top .mc-tooltip__content:before{bottom:0;left:50%;transform:translate(-50%,100%) rotate(-90deg)}.mc-tooltip--top .mc-tooltip__content:before{bottom:-1px}.mc-tooltip--right .mc-tooltip__content{top:50%;right:0;transform:translate(calc(100% + .75rem),-50%)}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--right .mc-tooltip__content{transform:translate(100%,-50%);margin-right:-.75rem}}.mc-tooltip--right .mc-tooltip__content:after,.mc-tooltip--right .mc-tooltip__content:before{top:50%;left:0;transform:translate(-99%,-50%)}.mc-tooltip--right .mc-tooltip__content:before{left:-1px}.mc-tooltip--left .mc-tooltip__content{left:0;top:50%;transform:translate(calc(-100% - .75rem),-50%)}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--left .mc-tooltip__content{transform:translate(-100%,-50%);margin-left:-.75rem}}.mc-tooltip--left .mc-tooltip__content:after,.mc-tooltip--left .mc-tooltip__content:before{top:50%;right:0;transform:translate(99%,-50%) rotate(180deg)}.mc-tooltip--left .mc-tooltip__content:before{right:-1px}.mc-tooltip--bottom .mc-tooltip__content{bottom:0;left:50%;transform:translate(-50%,calc(100% + .75rem))}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.mc-tooltip--bottom .mc-tooltip__content{transform:translate(-50%,100%);margin-bottom:-.75rem}}.mc-tooltip--bottom .mc-tooltip__content:after,.mc-tooltip--bottom .mc-tooltip__content:before{top:0;left:50%;transform:translate(-50%,-100%) rotate(90deg)}.mc-tooltip--bottom .mc-tooltip__content:before{top:-1px}.mc-tooltip--no-pointer .mc-tooltip__content:after,.mc-tooltip--no-pointer .mc-tooltip__content:before{background:none}\n"] }]
2022
- }], propDecorators: { text: [{
2023
- type: Input
2024
- }], position: [{
2025
- type: Input
2026
- }], disabled: [{
2027
- type: Input
2028
- }], hostCssClasses: [{
2029
- type: HostBinding,
2030
- args: ['class']
2031
- }] } });
2032
-
2033
- class TooltipModule {
2034
- }
2035
- TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2036
- TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: TooltipModule, declarations: [TooltipComponent], imports: [CommonModule], exports: [TooltipComponent] });
2037
- TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipModule, imports: [CommonModule] });
2038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipModule, decorators: [{
2039
- type: NgModule,
2040
- args: [{
2041
- imports: [CommonModule],
2042
- declarations: [TooltipComponent],
2043
- exports: [TooltipComponent],
2044
- }]
2045
- }] });
2046
-
2047
- /**
2048
- * Generated bundle index. Do not edit.
2049
- */
2050
-
2051
- export { BadgeComponent, BadgeModule, ButtonComponent, ButtonModule, CHECKBOX_CONTROL_VALUE_ACCESSOR, CheckboxComponent, CheckboxModule, DIALOG_CONFIG, DIALOG_DATA, DIALOG_REF, DialogComponent, DialogModule, DialogService, FieldComponent, FieldErrorComponent, FieldModule, IconComponent, IconModule, IconService, InputIconDirective, LAYER_CONFIG, LAYER_DATA, LAYER_REF, LayerComponent, LayerModule, LayerService, LoaderComponent, LoaderModule, LoaderService, MOZ_INPUT_ICON, NOTIFICATION_CONFIG, NotificationComponent, NotificationConfigFactory, NotificationContainerComponent, NotificationFooterComponent, NotificationMessageComponent, NotificationModule, NotificationService, NotificationTitleComponent, PAGINATION_CONTROL_VALUE_ACCESSOR, PaginationComponent, PaginationModule, ProgressBarComponent, ProgressBarModule, SelectComponent, SelectModule, StepComponent, StepperComponent, StepperModule, TOGGLE_CONTROL_VALUE_ACCESSOR, TabComponent, TabsComponent, TabsModule, TagComponent, TagModule, TextAreaComponent, TextAreaModule, TextInputComponent, TextInputModule, ToggleComponent, ToggleModule, TooltipComponent, TooltipModule, castBooleanProperty, generateId, getRandomNumber, overwriteStyle };
2052
- //# sourceMappingURL=mozaic-ds-angular.mjs.map