@mozaic-ds/angular 0.23.0-beta.1 → 0.23.1

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