@mozaic-ds/angular 0.23.0 → 0.23.1

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