@mozaic-ds/angular 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1779) hide show
  1. package/.editorconfig +16 -0
  2. package/.eslintignore +8 -0
  3. package/.eslintrc.json +70 -0
  4. package/.github/ISSUE_TEMPLATE/1-pattern-addition-proposal.md +23 -0
  5. package/.github/ISSUE_TEMPLATE/2-pattern-bug-report.md +68 -0
  6. package/.github/ISSUE_TEMPLATE/3-pattern-enhancement-proposal.md +34 -0
  7. package/.github/ISSUE_TEMPLATE/4-other.md +36 -0
  8. package/.github/PULL_REQUEST_TEMPLATE.md +19 -0
  9. package/.github/workflows/onPR.yml +93 -0
  10. package/.github/workflows/onPRClosed.yml +17 -0
  11. package/.github/workflows/onPushMaster.yml +59 -0
  12. package/.husky/pre-commit +4 -0
  13. package/.lintstagedrc +8 -0
  14. package/.nvmrc +1 -0
  15. package/.prettierignore +3 -0
  16. package/.prettierrc +7 -0
  17. package/.release-it.json +21 -0
  18. package/.storybook/main.js +19 -0
  19. package/.storybook/preview.js +27 -0
  20. package/.storybook/tsconfig.json +13 -0
  21. package/.storybook/typings.d.ts +4 -0
  22. package/.storybook/webpack.config.js +21 -0
  23. package/.vscode/extensions.json +4 -0
  24. package/.vscode/launch.json +20 -0
  25. package/.vscode/tasks.json +42 -0
  26. package/CHANGELOG.md +19 -0
  27. package/LICENSE +22 -0
  28. package/README.md +92 -0
  29. package/angular.json +113 -0
  30. package/mozaic-angular.svg +9 -0
  31. package/mozaic.config.js +6 -0
  32. package/package.json +102 -26
  33. package/product-info.json +1 -0
  34. package/projects/kit/.browserslistrc +16 -0
  35. package/projects/kit/.eslintrc.json +35 -0
  36. package/projects/kit/README.md +0 -0
  37. package/projects/kit/assets/tokens/adeo/android/colors.xml +482 -0
  38. package/projects/kit/assets/tokens/adeo/android/font_dimens.xml +18 -0
  39. package/projects/kit/assets/tokens/adeo/css/_variables.scss +626 -0
  40. package/projects/kit/assets/tokens/adeo/css/root.scss +478 -0
  41. package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.h +490 -0
  42. package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.m +502 -0
  43. package/projects/kit/assets/tokens/adeo/ios/StyleDictionaryColor.swift +485 -0
  44. package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
  45. package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
  46. package/projects/kit/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
  47. package/projects/kit/assets/tokens/adeo/js/tokens.js +574 -0
  48. package/projects/kit/assets/tokens/adeo/js/tokensObject.js +9637 -0
  49. package/projects/kit/assets/tokens/adeo/scss/_tokens.scss +1617 -0
  50. package/projects/kit/common/global-events/global-events.module.ts +7 -0
  51. package/projects/kit/common/global-events/global-events.service.ts +27 -0
  52. package/projects/kit/common/utils/boolean-property.ts +3 -0
  53. package/projects/kit/common/utils/generate-id.ts +7 -0
  54. package/projects/kit/common/utils/get-random-number.ts +6 -0
  55. package/projects/kit/common/utils/overwrite-style.ts +10 -0
  56. package/projects/kit/components/accordion/accordion.component.html +25 -0
  57. package/projects/kit/components/accordion/accordion.component.scss +2 -0
  58. package/projects/kit/components/accordion/accordion.component.spec.ts +24 -0
  59. package/projects/kit/components/accordion/accordion.component.ts +27 -0
  60. package/projects/kit/components/accordion/accordion.module.ts +11 -0
  61. package/projects/kit/components/accordion/accordion.stories.ts +55 -0
  62. package/projects/kit/components/accordion/accordion.ts +1 -0
  63. package/projects/kit/components/accordion/index.ts +1 -0
  64. package/projects/kit/components/badge/badge.component.html +1 -0
  65. package/projects/kit/components/badge/badge.component.scss +2 -0
  66. package/projects/kit/components/badge/badge.component.spec.ts +24 -0
  67. package/projects/kit/components/badge/badge.component.ts +29 -0
  68. package/projects/kit/components/badge/badge.module.ts +10 -0
  69. package/projects/kit/components/badge/badge.stories.ts +32 -0
  70. package/projects/kit/components/badge/badge.ts +3 -0
  71. package/projects/kit/components/button/button.component.html +2 -0
  72. package/projects/kit/components/button/button.component.scss +23 -0
  73. package/projects/kit/components/button/button.component.spec.ts +24 -0
  74. package/projects/kit/components/button/button.component.ts +58 -0
  75. package/projects/kit/components/button/button.module.ts +10 -0
  76. package/projects/kit/components/button/button.stories.ts +72 -0
  77. package/projects/kit/components/button/button.ts +8 -0
  78. package/projects/kit/components/checkbox/checkbox.component.html +13 -0
  79. package/projects/kit/components/checkbox/checkbox.component.scss +3 -0
  80. package/projects/kit/components/checkbox/checkbox.component.spec.ts +24 -0
  81. package/projects/kit/components/checkbox/checkbox.component.ts +73 -0
  82. package/projects/kit/components/checkbox/checkbox.module.ts +13 -0
  83. package/projects/kit/components/checkbox/checkbox.stories.ts +47 -0
  84. package/projects/kit/components/dialog/classes/dialog-config.ts +13 -0
  85. package/projects/kit/components/dialog/classes/dialog-injector.ts +34 -0
  86. package/projects/kit/components/dialog/classes/dialog-ref.ts +66 -0
  87. package/projects/kit/components/dialog/dialog-animation.ts +24 -0
  88. package/projects/kit/components/dialog/dialog.component.html +27 -0
  89. package/projects/kit/components/dialog/dialog.component.scss +3 -0
  90. package/projects/kit/components/dialog/dialog.component.spec.ts +24 -0
  91. package/projects/kit/components/dialog/dialog.component.ts +75 -0
  92. package/projects/kit/components/dialog/dialog.module.ts +12 -0
  93. package/projects/kit/components/dialog/dialog.service.spec.ts +15 -0
  94. package/projects/kit/components/dialog/dialog.service.ts +88 -0
  95. package/projects/kit/components/dialog/dialog.stories.ts +23 -0
  96. package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.html +3 -0
  97. package/projects/kit/components/dialog/examples/dialog-example/dialog-container-example.component.ts +18 -0
  98. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.html +10 -0
  99. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.scss +7 -0
  100. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.component.ts +28 -0
  101. package/projects/kit/components/dialog/examples/dialog-example/dialog-example.module.ts +19 -0
  102. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.html +6 -0
  103. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.scss +11 -0
  104. package/projects/kit/components/dialog/examples/dialog-example/dialog-nested-example.component.ts +16 -0
  105. package/projects/kit/components/dialog/index.ts +1 -0
  106. package/projects/kit/components/dialog/interfaces/dialog-config.ts +7 -0
  107. package/projects/kit/components/dialog/interfaces/dialog-di-params.ts +7 -0
  108. package/projects/kit/components/dialog/interfaces/dialog-ref.ts +20 -0
  109. package/projects/kit/components/dialog/tokens/dialog-config.token.ts +3 -0
  110. package/projects/kit/components/dialog/tokens/dialog-data.token.ts +3 -0
  111. package/projects/kit/components/dialog/tokens/dialog-ref.token.ts +3 -0
  112. package/projects/kit/components/field/directives/input-icon.directive.ts +9 -0
  113. package/projects/kit/components/field/field-error.component.html +1 -0
  114. package/projects/kit/components/field/field-error.component.scss +3 -0
  115. package/projects/kit/components/field/field-error.component.ts +12 -0
  116. package/projects/kit/components/field/field.component.html +30 -0
  117. package/projects/kit/components/field/field.component.scss +30 -0
  118. package/projects/kit/components/field/field.component.ts +49 -0
  119. package/projects/kit/components/field/field.module.ts +12 -0
  120. package/projects/kit/components/field/field.stories.ts +48 -0
  121. package/projects/kit/components/flag/flag.component.html +1 -0
  122. package/projects/kit/components/flag/flag.component.scss +2 -0
  123. package/projects/kit/components/flag/flag.component.spec.ts +47 -0
  124. package/projects/kit/components/flag/flag.component.ts +26 -0
  125. package/projects/kit/components/flag/flag.module.ts +10 -0
  126. package/projects/kit/components/flag/flag.stories.ts +33 -0
  127. package/projects/kit/components/flag/flag.ts +24 -0
  128. package/projects/kit/components/flag/index.ts +1 -0
  129. package/projects/kit/components/icon/icon-size.ts +6 -0
  130. package/projects/kit/components/icon/icon.component.html +0 -0
  131. package/projects/kit/components/icon/icon.component.scss +20 -0
  132. package/projects/kit/components/icon/icon.component.spec.ts +24 -0
  133. package/projects/kit/components/icon/icon.component.ts +59 -0
  134. package/projects/kit/components/icon/icon.module.ts +10 -0
  135. package/projects/kit/components/icon/icon.service.ts +42 -0
  136. package/projects/kit/components/icon/icon.stories.ts +24 -0
  137. package/projects/kit/components/layer/classes/index.ts +0 -0
  138. package/projects/kit/components/layer/classes/layer-injector.ts +35 -0
  139. package/projects/kit/components/layer/classes/layer-ref.ts +54 -0
  140. package/projects/kit/components/layer/interfaces/layer-config.ts +4 -0
  141. package/projects/kit/components/layer/interfaces/layer-di-params.ts +7 -0
  142. package/projects/kit/components/layer/interfaces/layer-ref.ts +17 -0
  143. package/projects/kit/components/layer/layer-animation.ts +24 -0
  144. package/projects/kit/components/layer/layer-example.component.ts +43 -0
  145. package/projects/kit/components/layer/layer.component.html +21 -0
  146. package/projects/kit/components/layer/layer.component.scss +3 -0
  147. package/projects/kit/components/layer/layer.component.ts +55 -0
  148. package/projects/kit/components/layer/layer.module.ts +13 -0
  149. package/projects/kit/components/layer/layer.service.ts +73 -0
  150. package/projects/kit/components/layer/layer.stories.ts +29 -0
  151. package/projects/kit/components/layer/tokens/layer-config.token.ts +3 -0
  152. package/projects/kit/components/layer/tokens/layer-data.token.ts +3 -0
  153. package/projects/kit/components/layer/tokens/layer-ref.token.ts +3 -0
  154. package/projects/kit/components/loader/loader-run-example.component.ts +20 -0
  155. package/projects/kit/components/loader/loader.component.html +15 -0
  156. package/projects/kit/components/loader/loader.component.scss +7 -0
  157. package/projects/kit/components/loader/loader.component.ts +57 -0
  158. package/projects/kit/components/loader/loader.module.ts +12 -0
  159. package/projects/kit/components/loader/loader.service.ts +61 -0
  160. package/projects/kit/components/loader/loader.stories.ts +51 -0
  161. package/projects/kit/components/loader/loader.ts +20 -0
  162. package/projects/kit/components/notification/notification-animation.ts +24 -0
  163. package/projects/kit/components/notification/notification-container.component.html +6 -0
  164. package/projects/kit/components/notification/notification-container.component.scss +10 -0
  165. package/projects/kit/components/notification/notification-container.component.ts +35 -0
  166. package/projects/kit/components/notification/notification-example.component.ts +17 -0
  167. package/projects/kit/components/notification/notification-footer.ts +11 -0
  168. package/projects/kit/components/notification/notification-message.ts +11 -0
  169. package/projects/kit/components/notification/notification-title.ts +11 -0
  170. package/projects/kit/components/notification/notification.component.html +5 -0
  171. package/projects/kit/components/notification/notification.component.scss +2 -0
  172. package/projects/kit/components/notification/notification.component.ts +30 -0
  173. package/projects/kit/components/notification/notification.module.ts +48 -0
  174. package/projects/kit/components/notification/notification.service.ts +50 -0
  175. package/projects/kit/components/notification/notification.stories.ts +52 -0
  176. package/projects/kit/components/notification/notification.ts +21 -0
  177. package/projects/kit/components/pagination/pagination.component.html +37 -0
  178. package/projects/kit/components/pagination/pagination.component.scss +7 -0
  179. package/projects/kit/components/pagination/pagination.component.ts +196 -0
  180. package/projects/kit/components/pagination/pagination.module.ts +15 -0
  181. package/projects/kit/components/pagination/pagination.stories.ts +28 -0
  182. package/projects/kit/components/pagination/pagination.ts +7 -0
  183. package/projects/kit/components/progress-bar/progress-bar.component.html +9 -0
  184. package/projects/kit/components/progress-bar/progress-bar.component.scss +2 -0
  185. package/projects/kit/components/progress-bar/progress-bar.component.ts +38 -0
  186. package/projects/kit/components/progress-bar/progress-bar.module.ts +10 -0
  187. package/projects/kit/components/progress-bar/progress-bar.stories.ts +39 -0
  188. package/projects/kit/components/select/select-size.ts +6 -0
  189. package/projects/kit/components/select/select.component.html +1 -0
  190. package/projects/kit/components/select/select.component.scss +3 -0
  191. package/projects/kit/components/select/select.component.ts +27 -0
  192. package/projects/kit/components/select/select.module.ts +10 -0
  193. package/projects/kit/components/select/select.stories.ts +39 -0
  194. package/projects/kit/components/stepper/step.component.html +14 -0
  195. package/projects/kit/components/stepper/step.component.ts +61 -0
  196. package/projects/kit/components/stepper/stepper.component.html +3 -0
  197. package/projects/kit/components/stepper/stepper.component.scss +3 -0
  198. package/projects/kit/components/stepper/stepper.component.ts +95 -0
  199. package/projects/kit/components/stepper/stepper.module.ts +12 -0
  200. package/projects/kit/components/stepper/stepper.stories.ts +33 -0
  201. package/projects/kit/components/tabs/index.ts +1 -0
  202. package/projects/kit/components/tabs/tab-selectors.ts +2 -0
  203. package/projects/kit/components/tabs/tab.component.html +1 -0
  204. package/projects/kit/components/tabs/tab.component.scss +16 -0
  205. package/projects/kit/components/tabs/tab.component.spec.ts +27 -0
  206. package/projects/kit/components/tabs/tab.component.ts +56 -0
  207. package/projects/kit/components/tabs/tabs.component.html +1 -0
  208. package/projects/kit/components/tabs/tabs.component.scss +9 -0
  209. package/projects/kit/components/tabs/tabs.component.spec.ts +24 -0
  210. package/projects/kit/components/tabs/tabs.component.ts +194 -0
  211. package/projects/kit/components/tabs/tabs.module.ts +11 -0
  212. package/projects/kit/components/tabs/tabs.stories.ts +40 -0
  213. package/projects/kit/components/tag/tag.component.html +29 -0
  214. package/projects/kit/components/tag/tag.component.scss +3 -0
  215. package/projects/kit/components/tag/tag.component.ts +71 -0
  216. package/projects/kit/components/tag/tag.module.ts +11 -0
  217. package/projects/kit/components/tag/text-area.stories.ts +49 -0
  218. package/projects/kit/components/text-area/text-area.component.scss +3 -0
  219. package/projects/kit/components/text-area/text-area.component.ts +47 -0
  220. package/projects/kit/components/text-area/text-area.module.ts +8 -0
  221. package/projects/kit/components/text-area/text-area.stories.ts +33 -0
  222. package/projects/kit/components/text-input/public-api.ts +2 -0
  223. package/projects/kit/components/text-input/text-input.component.scss +15 -0
  224. package/projects/kit/components/text-input/text-input.component.spec.ts +24 -0
  225. package/projects/kit/components/text-input/text-input.component.ts +74 -0
  226. package/projects/kit/components/text-input/text-input.module.ts +12 -0
  227. package/projects/kit/components/text-input/text-input.stories.ts +80 -0
  228. package/projects/kit/components/toggle/toggle.component.html +13 -0
  229. package/projects/kit/components/toggle/toggle.component.scss +2 -0
  230. package/projects/kit/components/toggle/toggle.component.ts +76 -0
  231. package/projects/kit/components/toggle/toggle.module.ts +10 -0
  232. package/projects/kit/components/toggle/toggle.stories.ts +35 -0
  233. package/projects/kit/components/tooltip/tooltip.component.html +2 -0
  234. package/projects/kit/components/tooltip/tooltip.component.scss +2 -0
  235. package/projects/kit/components/tooltip/tooltip.component.ts +32 -0
  236. package/projects/kit/components/tooltip/tooltip.module.ts +10 -0
  237. package/projects/kit/components/tooltip/tooltip.stories.ts +39 -0
  238. package/projects/kit/karma.conf.js +41 -0
  239. package/projects/kit/ng-package-adeo.json +21 -0
  240. package/projects/kit/ng-package.json +23 -0
  241. package/projects/kit/package.json +11 -0
  242. package/projects/kit/tsconfig.lib.json +12 -0
  243. package/projects/kit/tsconfig.lib.prod.json +10 -0
  244. package/projects/kit/tsconfig.spec.json +10 -0
  245. package/projects/schematics/.eslintrc.json +35 -0
  246. package/projects/schematics/README.md +17 -0
  247. package/projects/schematics/collection.json +10 -0
  248. package/projects/schematics/kit-component/files/__name@dasherize__.stories.ts.template +21 -0
  249. package/projects/schematics/kit-component/files/index.ts.template +1 -0
  250. package/projects/schematics/kit-component/index.ts +82 -0
  251. package/projects/schematics/kit-component/schema.json +26 -0
  252. package/projects/schematics/kit-component/schema.ts +10 -0
  253. package/projects/schematics/ng-package.json +7 -0
  254. package/projects/schematics/package.json +20 -0
  255. package/projects/schematics/public-api.ts +1 -0
  256. package/projects/schematics/tsconfig.lib.json +23 -0
  257. package/projects/schematics/tsconfig.lib.prod.json +10 -0
  258. package/tsconfig.json +33 -0
  259. package/assets/moz-icons/Device_Desktop_24px.svg +0 -1
  260. package/assets/moz-icons/Device_Desktop_32px.svg +0 -1
  261. package/assets/moz-icons/Device_Desktop_48px.svg +0 -1
  262. package/assets/moz-icons/Device_Desktop_64px.svg +0 -1
  263. package/assets/moz-icons/Device_Laptop_24px.svg +0 -1
  264. package/assets/moz-icons/Device_Laptop_32px.svg +0 -1
  265. package/assets/moz-icons/Device_Laptop_48px.svg +0 -1
  266. package/assets/moz-icons/Device_Laptop_64px.svg +0 -1
  267. package/assets/moz-icons/Device_Mobile_24px.svg +0 -1
  268. package/assets/moz-icons/Device_Mobile_32px.svg +0 -1
  269. package/assets/moz-icons/Device_Mobile_48px.svg +0 -1
  270. package/assets/moz-icons/Device_Mobile_64px.svg +0 -1
  271. package/assets/moz-icons/Device_Tablet_24px.svg +0 -1
  272. package/assets/moz-icons/Device_Tablet_32px.svg +0 -1
  273. package/assets/moz-icons/Device_Tablet_48px.svg +0 -1
  274. package/assets/moz-icons/Device_Tablet_64px.svg +0 -1
  275. package/assets/moz-icons/Instruction_Hygiene_Cleaned_24px.svg +0 -1
  276. package/assets/moz-icons/Instruction_Hygiene_Cleaned_32px.svg +0 -1
  277. package/assets/moz-icons/Instruction_Hygiene_Cleaned_48px.svg +0 -1
  278. package/assets/moz-icons/Instruction_Hygiene_Cleaned_64px.svg +0 -1
  279. package/assets/moz-icons/Instruction_Hygiene_Danger_24px.svg +0 -1
  280. package/assets/moz-icons/Instruction_Hygiene_Danger_32px.svg +0 -1
  281. package/assets/moz-icons/Instruction_Hygiene_Danger_48px.svg +0 -1
  282. package/assets/moz-icons/Instruction_Hygiene_Danger_64px.svg +0 -1
  283. package/assets/moz-icons/Instruction_Hygiene_Distance_24px.svg +0 -1
  284. package/assets/moz-icons/Instruction_Hygiene_Distance_32px.svg +0 -1
  285. package/assets/moz-icons/Instruction_Hygiene_Distance_48px.svg +0 -1
  286. package/assets/moz-icons/Instruction_Hygiene_Distance_64px.svg +0 -1
  287. package/assets/moz-icons/Instruction_Hygiene_Gel_24px.svg +0 -1
  288. package/assets/moz-icons/Instruction_Hygiene_Gel_32px.svg +0 -1
  289. package/assets/moz-icons/Instruction_Hygiene_Gel_48px.svg +0 -1
  290. package/assets/moz-icons/Instruction_Hygiene_Gel_64px.svg +0 -1
  291. package/assets/moz-icons/Instruction_Hygiene_Mask_24px.svg +0 -1
  292. package/assets/moz-icons/Instruction_Hygiene_Mask_32px.svg +0 -1
  293. package/assets/moz-icons/Instruction_Hygiene_Mask_48px.svg +0 -1
  294. package/assets/moz-icons/Instruction_Hygiene_Mask_64px.svg +0 -1
  295. package/assets/moz-icons/Instruction_Hygiene_NoContact_24px.svg +0 -1
  296. package/assets/moz-icons/Instruction_Hygiene_NoContact_32px.svg +0 -1
  297. package/assets/moz-icons/Instruction_Hygiene_NoContact_48px.svg +0 -1
  298. package/assets/moz-icons/Instruction_Hygiene_NoContact_64px.svg +0 -1
  299. package/assets/moz-icons/Instruction_Hygiene_Plexiglas_24px.svg +0 -1
  300. package/assets/moz-icons/Instruction_Hygiene_Plexiglas_32px.svg +0 -1
  301. package/assets/moz-icons/Instruction_Hygiene_Plexiglas_48px.svg +0 -1
  302. package/assets/moz-icons/Instruction_Hygiene_Plexiglas_64px.svg +0 -1
  303. package/assets/moz-icons/Instruction_Payment_Checkout_24px.svg +0 -1
  304. package/assets/moz-icons/Instruction_Payment_Checkout_32px.svg +0 -1
  305. package/assets/moz-icons/Instruction_Payment_Checkout_48px.svg +0 -1
  306. package/assets/moz-icons/Instruction_Payment_Checkout_64px.svg +0 -1
  307. package/assets/moz-icons/Instruction_Payment_NoContact_24px.svg +0 -1
  308. package/assets/moz-icons/Instruction_Payment_NoContact_32px.svg +0 -1
  309. package/assets/moz-icons/Instruction_Payment_NoContact_48px.svg +0 -1
  310. package/assets/moz-icons/Instruction_Payment_NoContact_64px.svg +0 -1
  311. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_24px.svg +0 -1
  312. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_32px.svg +0 -1
  313. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_48px.svg +0 -1
  314. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--OpenBoot_64px.svg +0 -1
  315. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_24px.svg +0 -1
  316. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_32px.svg +0 -1
  317. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_48px.svg +0 -1
  318. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StandInLine_64px.svg +0 -1
  319. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_24px.svg +0 -1
  320. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_32px.svg +0 -1
  321. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_48px.svg +0 -1
  322. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Car--StayInside_64px.svg +0 -1
  323. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_24px.svg +0 -1
  324. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_32px.svg +0 -1
  325. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_48px.svg +0 -1
  326. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Loading_64px.svg +0 -1
  327. package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_24px.svg +0 -1
  328. package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_32px.svg +0 -1
  329. package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_48px.svg +0 -1
  330. package/assets/moz-icons/Instruction_Service_PurchaseHelp_NoCarRent_64px.svg +0 -1
  331. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_24px.svg +0 -1
  332. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_32px.svg +0 -1
  333. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_48px.svg +0 -1
  334. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Request_64px.svg +0 -1
  335. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_24px.svg +0 -1
  336. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_32px.svg +0 -1
  337. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_48px.svg +0 -1
  338. package/assets/moz-icons/Instruction_Service_PurchaseHelp_Truck_64px.svg +0 -1
  339. package/assets/moz-icons/Instruction_Universe_EssentialProduct_24px.svg +0 -1
  340. package/assets/moz-icons/Instruction_Universe_EssentialProduct_32px.svg +0 -1
  341. package/assets/moz-icons/Instruction_Universe_EssentialProduct_48px.svg +0 -1
  342. package/assets/moz-icons/Instruction_Universe_EssentialProduct_64px.svg +0 -1
  343. package/assets/moz-icons/Logotypes_Brand_LM_24px.svg +0 -1
  344. package/assets/moz-icons/Logotypes_Brand_LM_32px.svg +0 -1
  345. package/assets/moz-icons/Logotypes_Brand_LM_48px.svg +0 -1
  346. package/assets/moz-icons/Logotypes_Brand_LM_64px.svg +0 -1
  347. package/assets/moz-icons/Logotypes_Payment_Bizum_24px.svg +0 -1
  348. package/assets/moz-icons/Logotypes_Payment_Bizum_32px.svg +0 -1
  349. package/assets/moz-icons/Logotypes_Payment_Bizum_48px.svg +0 -1
  350. package/assets/moz-icons/Logotypes_Payment_Bizum_64px.svg +0 -1
  351. package/assets/moz-icons/Logotypes_Payment_Fintecture_24px.svg +0 -1
  352. package/assets/moz-icons/Logotypes_Payment_Fintecture_32px.svg +0 -1
  353. package/assets/moz-icons/Logotypes_Payment_Fintecture_48px.svg +0 -1
  354. package/assets/moz-icons/Logotypes_Payment_Fintecture_64px.svg +0 -1
  355. package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_24px.svg +0 -1
  356. package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_32px.svg +0 -1
  357. package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_48px.svg +0 -1
  358. package/assets/moz-icons/Logotypes_Payment_MB--Multibanco_64px.svg +0 -1
  359. package/assets/moz-icons/Logotypes_Payment_MB--Way_24px.svg +0 -1
  360. package/assets/moz-icons/Logotypes_Payment_MB--Way_32px.svg +0 -1
  361. package/assets/moz-icons/Logotypes_Payment_MB--Way_48px.svg +0 -1
  362. package/assets/moz-icons/Logotypes_Payment_MB--Way_64px.svg +0 -1
  363. package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_24px.svg +0 -1
  364. package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_32px.svg +0 -1
  365. package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_48px.svg +0 -1
  366. package/assets/moz-icons/Logotypes_Payment_Monochrome_Bizum_64px.svg +0 -1
  367. package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_24px.svg +0 -1
  368. package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_32px.svg +0 -1
  369. package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_48px.svg +0 -1
  370. package/assets/moz-icons/Logotypes_Payment_Monochrome_Fintecture_64px.svg +0 -1
  371. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_24px.svg +0 -1
  372. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_32px.svg +0 -1
  373. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_48px.svg +0 -1
  374. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Multibanco_64px.svg +0 -1
  375. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_24px.svg +0 -1
  376. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_32px.svg +0 -1
  377. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_48px.svg +0 -1
  378. package/assets/moz-icons/Logotypes_Payment_Monochrome_MB--Way_64px.svg +0 -1
  379. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_24px.svg +0 -1
  380. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_32px.svg +0 -1
  381. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_48px.svg +0 -1
  382. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x4x_64px.svg +0 -1
  383. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_24px.svg +0 -1
  384. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_32px.svg +0 -1
  385. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_48px.svg +0 -1
  386. package/assets/moz-icons/Logotypes_Payment_Monochrome_Oney--3x_64px.svg +0 -1
  387. package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_24px.svg +0 -1
  388. package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_32px.svg +0 -1
  389. package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_48px.svg +0 -1
  390. package/assets/moz-icons/Logotypes_Payment_Monochrome_PayPal_64px.svg +0 -1
  391. package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_24px.svg +0 -1
  392. package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_32px.svg +0 -1
  393. package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_48px.svg +0 -1
  394. package/assets/moz-icons/Logotypes_Payment_Oney--3x4x_64px.svg +0 -1
  395. package/assets/moz-icons/Logotypes_Payment_Oney--3x_24px.svg +0 -1
  396. package/assets/moz-icons/Logotypes_Payment_Oney--3x_32px.svg +0 -1
  397. package/assets/moz-icons/Logotypes_Payment_Oney--3x_48px.svg +0 -1
  398. package/assets/moz-icons/Logotypes_Payment_Oney--3x_64px.svg +0 -1
  399. package/assets/moz-icons/Logotypes_Payment_PayPal_24px.svg +0 -1
  400. package/assets/moz-icons/Logotypes_Payment_PayPal_32px.svg +0 -1
  401. package/assets/moz-icons/Logotypes_Payment_PayPal_48px.svg +0 -1
  402. package/assets/moz-icons/Logotypes_Payment_PayPal_64px.svg +0 -1
  403. package/assets/moz-icons/Media_API_24px.svg +0 -1
  404. package/assets/moz-icons/Media_API_32px.svg +0 -1
  405. package/assets/moz-icons/Media_API_48px.svg +0 -1
  406. package/assets/moz-icons/Media_API_64px.svg +0 -1
  407. package/assets/moz-icons/Media_BookStore_24px.svg +0 -1
  408. package/assets/moz-icons/Media_BookStore_32px.svg +0 -1
  409. package/assets/moz-icons/Media_BookStore_48px.svg +0 -1
  410. package/assets/moz-icons/Media_BookStore_64px.svg +0 -1
  411. package/assets/moz-icons/Media_Camera_24px.svg +0 -1
  412. package/assets/moz-icons/Media_Camera_32px.svg +0 -1
  413. package/assets/moz-icons/Media_Camera_48px.svg +0 -1
  414. package/assets/moz-icons/Media_Camera_64px.svg +0 -1
  415. package/assets/moz-icons/Media_Code_24px.svg +0 -1
  416. package/assets/moz-icons/Media_Code_32px.svg +0 -1
  417. package/assets/moz-icons/Media_Code_48px.svg +0 -1
  418. package/assets/moz-icons/Media_Code_64px.svg +0 -1
  419. package/assets/moz-icons/Media_Document_24px.svg +0 -1
  420. package/assets/moz-icons/Media_Document_32px.svg +0 -1
  421. package/assets/moz-icons/Media_Document_48px.svg +0 -1
  422. package/assets/moz-icons/Media_Document_64px.svg +0 -1
  423. package/assets/moz-icons/Media_Download_App_24px.svg +0 -1
  424. package/assets/moz-icons/Media_Download_App_32px.svg +0 -1
  425. package/assets/moz-icons/Media_Download_App_48px.svg +0 -1
  426. package/assets/moz-icons/Media_Download_App_64px.svg +0 -1
  427. package/assets/moz-icons/Media_Download_Web_24px.svg +0 -1
  428. package/assets/moz-icons/Media_Download_Web_32px.svg +0 -1
  429. package/assets/moz-icons/Media_Download_Web_48px.svg +0 -1
  430. package/assets/moz-icons/Media_Download_Web_64px.svg +0 -1
  431. package/assets/moz-icons/Media_FullScreen_16px.svg +0 -1
  432. package/assets/moz-icons/Media_FullScreen_24px.svg +0 -1
  433. package/assets/moz-icons/Media_FullScreen_32px.svg +0 -1
  434. package/assets/moz-icons/Media_FullScreen_48px.svg +0 -1
  435. package/assets/moz-icons/Media_FullScreen_64px.svg +0 -1
  436. package/assets/moz-icons/Media_Gauge_24px.svg +0 -1
  437. package/assets/moz-icons/Media_Gauge_32px.svg +0 -1
  438. package/assets/moz-icons/Media_Gauge_48px.svg +0 -1
  439. package/assets/moz-icons/Media_Gauge_64px.svg +0 -1
  440. package/assets/moz-icons/Media_Group_24px.svg +0 -1
  441. package/assets/moz-icons/Media_Group_32px.svg +0 -1
  442. package/assets/moz-icons/Media_Group_48px.svg +0 -1
  443. package/assets/moz-icons/Media_Group_64px.svg +0 -1
  444. package/assets/moz-icons/Media_NoPicture_24px.svg +0 -1
  445. package/assets/moz-icons/Media_NoPicture_32px.svg +0 -1
  446. package/assets/moz-icons/Media_NoPicture_48px.svg +0 -1
  447. package/assets/moz-icons/Media_NoPicture_64px.svg +0 -1
  448. package/assets/moz-icons/Media_Pdf_24px.svg +0 -1
  449. package/assets/moz-icons/Media_Pdf_32px.svg +0 -1
  450. package/assets/moz-icons/Media_Pdf_48px.svg +0 -1
  451. package/assets/moz-icons/Media_Pdf_64px.svg +0 -1
  452. package/assets/moz-icons/Media_Play_24px.svg +0 -1
  453. package/assets/moz-icons/Media_Play_32px.svg +0 -1
  454. package/assets/moz-icons/Media_Play_48px.svg +0 -1
  455. package/assets/moz-icons/Media_Play_64px.svg +0 -1
  456. package/assets/moz-icons/Media_Player_24px.svg +0 -1
  457. package/assets/moz-icons/Media_Player_32px.svg +0 -1
  458. package/assets/moz-icons/Media_Player_48px.svg +0 -1
  459. package/assets/moz-icons/Media_Player_64px.svg +0 -1
  460. package/assets/moz-icons/Media_Player_96px.svg +0 -1
  461. package/assets/moz-icons/Media_Policies_24px.svg +0 -1
  462. package/assets/moz-icons/Media_Policies_32px.svg +0 -1
  463. package/assets/moz-icons/Media_Policies_48px.svg +0 -1
  464. package/assets/moz-icons/Media_Policies_64px.svg +0 -1
  465. package/assets/moz-icons/Media_Print_24px.svg +0 -1
  466. package/assets/moz-icons/Media_Print_32px.svg +0 -1
  467. package/assets/moz-icons/Media_Print_48px.svg +0 -1
  468. package/assets/moz-icons/Media_Print_64px.svg +0 -1
  469. package/assets/moz-icons/Media_Project_24px.svg +0 -1
  470. package/assets/moz-icons/Media_Project_32px.svg +0 -1
  471. package/assets/moz-icons/Media_Project_48px.svg +0 -1
  472. package/assets/moz-icons/Media_Project_64px.svg +0 -1
  473. package/assets/moz-icons/Media_Read_24px.svg +0 -1
  474. package/assets/moz-icons/Media_Read_32px.svg +0 -1
  475. package/assets/moz-icons/Media_Read_48px.svg +0 -1
  476. package/assets/moz-icons/Media_Read_64px.svg +0 -1
  477. package/assets/moz-icons/Media_ReduceScreen_16px.svg +0 -1
  478. package/assets/moz-icons/Media_ReduceScreen_24px.svg +0 -1
  479. package/assets/moz-icons/Media_ReduceScreen_32px.svg +0 -1
  480. package/assets/moz-icons/Media_ReduceScreen_48px.svg +0 -1
  481. package/assets/moz-icons/Media_ReduceScreen_64px.svg +0 -1
  482. package/assets/moz-icons/Media_Slideshow_24px.svg +0 -1
  483. package/assets/moz-icons/Media_Slideshow_32px.svg +0 -1
  484. package/assets/moz-icons/Media_Slideshow_48px.svg +0 -1
  485. package/assets/moz-icons/Media_Slideshow_64px.svg +0 -1
  486. package/assets/moz-icons/Media_Sound_24px.svg +0 -1
  487. package/assets/moz-icons/Media_Sound_32px.svg +0 -1
  488. package/assets/moz-icons/Media_Sound_48px.svg +0 -1
  489. package/assets/moz-icons/Media_Sound_64px.svg +0 -1
  490. package/assets/moz-icons/Media_Stop_24px.svg +0 -1
  491. package/assets/moz-icons/Media_Stop_32px.svg +0 -1
  492. package/assets/moz-icons/Media_Stop_48px.svg +0 -1
  493. package/assets/moz-icons/Media_Stop_64px.svg +0 -1
  494. package/assets/moz-icons/Media_TimeRead_24px.svg +0 -1
  495. package/assets/moz-icons/Media_TimeRead_32px.svg +0 -1
  496. package/assets/moz-icons/Media_TimeRead_48px.svg +0 -1
  497. package/assets/moz-icons/Media_TimeRead_64px.svg +0 -1
  498. package/assets/moz-icons/Media_Upload_24px.svg +0 -1
  499. package/assets/moz-icons/Media_Upload_32px.svg +0 -1
  500. package/assets/moz-icons/Media_Upload_48px.svg +0 -1
  501. package/assets/moz-icons/Media_Upload_64px.svg +0 -1
  502. package/assets/moz-icons/Media_View360_24px.svg +0 -1
  503. package/assets/moz-icons/Media_View360_32px.svg +0 -1
  504. package/assets/moz-icons/Media_View360_48px.svg +0 -1
  505. package/assets/moz-icons/Media_View360_64px.svg +0 -1
  506. package/assets/moz-icons/Media_View360_96px.svg +0 -1
  507. package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_16px.svg +0 -1
  508. package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_24px.svg +0 -1
  509. package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_32px.svg +0 -1
  510. package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_48px.svg +0 -1
  511. package/assets/moz-icons/Navigation_Arrow_Arrow--Bottom_64px.svg +0 -1
  512. package/assets/moz-icons/Navigation_Arrow_Arrow--Left_16px.svg +0 -1
  513. package/assets/moz-icons/Navigation_Arrow_Arrow--Left_24px.svg +0 -1
  514. package/assets/moz-icons/Navigation_Arrow_Arrow--Left_32px.svg +0 -1
  515. package/assets/moz-icons/Navigation_Arrow_Arrow--Left_48px.svg +0 -1
  516. package/assets/moz-icons/Navigation_Arrow_Arrow--Left_64px.svg +0 -1
  517. package/assets/moz-icons/Navigation_Arrow_Arrow--Right_16px.svg +0 -1
  518. package/assets/moz-icons/Navigation_Arrow_Arrow--Right_24px.svg +0 -1
  519. package/assets/moz-icons/Navigation_Arrow_Arrow--Right_32px.svg +0 -1
  520. package/assets/moz-icons/Navigation_Arrow_Arrow--Right_48px.svg +0 -1
  521. package/assets/moz-icons/Navigation_Arrow_Arrow--Right_64px.svg +0 -1
  522. package/assets/moz-icons/Navigation_Arrow_Arrow--Top_16px.svg +0 -1
  523. package/assets/moz-icons/Navigation_Arrow_Arrow--Top_24px.svg +0 -1
  524. package/assets/moz-icons/Navigation_Arrow_Arrow--Top_32px.svg +0 -1
  525. package/assets/moz-icons/Navigation_Arrow_Arrow--Top_48px.svg +0 -1
  526. package/assets/moz-icons/Navigation_Arrow_Arrow--Top_64px.svg +0 -1
  527. package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_16px.svg +0 -1
  528. package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_24px.svg +0 -1
  529. package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_32px.svg +0 -1
  530. package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_48px.svg +0 -1
  531. package/assets/moz-icons/Navigation_Arrow_ArrowBottomLeft_64px.svg +0 -1
  532. package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_16px.svg +0 -1
  533. package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_24px.svg +0 -1
  534. package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_32px.svg +0 -1
  535. package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_48px.svg +0 -1
  536. package/assets/moz-icons/Navigation_Arrow_ArrowBottomRight_64px.svg +0 -1
  537. package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_16px.svg +0 -1
  538. package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_24px.svg +0 -1
  539. package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_32px.svg +0 -1
  540. package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_48px.svg +0 -1
  541. package/assets/moz-icons/Navigation_Arrow_ArrowTopLeft_64px.svg +0 -1
  542. package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_16px.svg +0 -1
  543. package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_24px.svg +0 -1
  544. package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_32px.svg +0 -1
  545. package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_48px.svg +0 -1
  546. package/assets/moz-icons/Navigation_Arrow_ArrowTopRight_64px.svg +0 -1
  547. package/assets/moz-icons/Navigation_Arrow_Back_16px.svg +0 -1
  548. package/assets/moz-icons/Navigation_Arrow_Back_24px.svg +0 -1
  549. package/assets/moz-icons/Navigation_Arrow_Back_32px.svg +0 -1
  550. package/assets/moz-icons/Navigation_Arrow_Back_48px.svg +0 -1
  551. package/assets/moz-icons/Navigation_Arrow_Back_64px.svg +0 -1
  552. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_16px.svg +0 -1
  553. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_24px.svg +0 -1
  554. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_32px.svg +0 -1
  555. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_48px.svg +0 -1
  556. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Left_64px.svg +0 -1
  557. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_16px.svg +0 -1
  558. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_24px.svg +0 -1
  559. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_32px.svg +0 -1
  560. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_48px.svg +0 -1
  561. package/assets/moz-icons/Navigation_Arrow_DoubleArrow--Right_64px.svg +0 -1
  562. package/assets/moz-icons/Navigation_Arrow_Down_16px.svg +0 -1
  563. package/assets/moz-icons/Navigation_Arrow_Down_24px.svg +0 -1
  564. package/assets/moz-icons/Navigation_Arrow_Down_32px.svg +0 -1
  565. package/assets/moz-icons/Navigation_Arrow_Down_48px.svg +0 -1
  566. package/assets/moz-icons/Navigation_Arrow_Down_64px.svg +0 -1
  567. package/assets/moz-icons/Navigation_Arrow_Next_16px.svg +0 -1
  568. package/assets/moz-icons/Navigation_Arrow_Next_24px.svg +0 -1
  569. package/assets/moz-icons/Navigation_Arrow_Next_32px.svg +0 -1
  570. package/assets/moz-icons/Navigation_Arrow_Next_48px.svg +0 -1
  571. package/assets/moz-icons/Navigation_Arrow_Next_64px.svg +0 -1
  572. package/assets/moz-icons/Navigation_Arrow_Up_16px.svg +0 -1
  573. package/assets/moz-icons/Navigation_Arrow_Up_24px.svg +0 -1
  574. package/assets/moz-icons/Navigation_Arrow_Up_32px.svg +0 -1
  575. package/assets/moz-icons/Navigation_Arrow_Up_48px.svg +0 -1
  576. package/assets/moz-icons/Navigation_Arrow_Up_64px.svg +0 -1
  577. package/assets/moz-icons/Navigation_Control_Circle--Cross_24px.svg +0 -1
  578. package/assets/moz-icons/Navigation_Control_Circle--Cross_32px.svg +0 -1
  579. package/assets/moz-icons/Navigation_Control_Circle--Cross_48px.svg +0 -1
  580. package/assets/moz-icons/Navigation_Control_Circle--Cross_64px.svg +0 -1
  581. package/assets/moz-icons/Navigation_Control_Circle--Less_24px.svg +0 -1
  582. package/assets/moz-icons/Navigation_Control_Circle--Less_32px.svg +0 -1
  583. package/assets/moz-icons/Navigation_Control_Circle--Less_48px.svg +0 -1
  584. package/assets/moz-icons/Navigation_Control_Circle--Less_64px.svg +0 -1
  585. package/assets/moz-icons/Navigation_Control_Circle--More_24px.svg +0 -1
  586. package/assets/moz-icons/Navigation_Control_Circle--More_32px.svg +0 -1
  587. package/assets/moz-icons/Navigation_Control_Circle--More_48px.svg +0 -1
  588. package/assets/moz-icons/Navigation_Control_Circle--More_64px.svg +0 -1
  589. package/assets/moz-icons/Navigation_Control_Cross_16px.svg +0 -1
  590. package/assets/moz-icons/Navigation_Control_Cross_24px.svg +0 -1
  591. package/assets/moz-icons/Navigation_Control_Cross_32px.svg +0 -1
  592. package/assets/moz-icons/Navigation_Control_Cross_48px.svg +0 -1
  593. package/assets/moz-icons/Navigation_Control_Cross_64px.svg +0 -1
  594. package/assets/moz-icons/Navigation_Control_Less_16px.svg +0 -1
  595. package/assets/moz-icons/Navigation_Control_Less_24px.svg +0 -1
  596. package/assets/moz-icons/Navigation_Control_Less_32px.svg +0 -1
  597. package/assets/moz-icons/Navigation_Control_Less_48px.svg +0 -1
  598. package/assets/moz-icons/Navigation_Control_Less_64px.svg +0 -1
  599. package/assets/moz-icons/Navigation_Control_More_16px.svg +0 -1
  600. package/assets/moz-icons/Navigation_Control_More_24px.svg +0 -1
  601. package/assets/moz-icons/Navigation_Control_More_32px.svg +0 -1
  602. package/assets/moz-icons/Navigation_Control_More_48px.svg +0 -1
  603. package/assets/moz-icons/Navigation_Control_More_64px.svg +0 -1
  604. package/assets/moz-icons/Navigation_Control_Tag--Cross_16px.svg +0 -1
  605. package/assets/moz-icons/Navigation_Control_Tag--Cross_24px.svg +0 -1
  606. package/assets/moz-icons/Navigation_Control_Tag--Cross_32px.svg +0 -1
  607. package/assets/moz-icons/Navigation_Control_Tag--Cross_48px.svg +0 -1
  608. package/assets/moz-icons/Navigation_Control_Tag--Cross_64px.svg +0 -1
  609. package/assets/moz-icons/Navigation_Display_Blink_24px.svg +0 -1
  610. package/assets/moz-icons/Navigation_Display_Blink_32px.svg +0 -1
  611. package/assets/moz-icons/Navigation_Display_Blink_48px.svg +0 -1
  612. package/assets/moz-icons/Navigation_Display_Blink_64px.svg +0 -1
  613. package/assets/moz-icons/Navigation_Display_Calendar_24px.svg +0 -1
  614. package/assets/moz-icons/Navigation_Display_Calendar_32px.svg +0 -1
  615. package/assets/moz-icons/Navigation_Display_Calendar_48px.svg +0 -1
  616. package/assets/moz-icons/Navigation_Display_Calendar_64px.svg +0 -1
  617. package/assets/moz-icons/Navigation_Display_Connect_24px.svg +0 -1
  618. package/assets/moz-icons/Navigation_Display_Connect_32px.svg +0 -1
  619. package/assets/moz-icons/Navigation_Display_Connect_48px.svg +0 -1
  620. package/assets/moz-icons/Navigation_Display_Connect_64px.svg +0 -1
  621. package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_24px.svg +0 -1
  622. package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_32px.svg +0 -1
  623. package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_48px.svg +0 -1
  624. package/assets/moz-icons/Navigation_Display_DisplayFull_Filled_64px.svg +0 -1
  625. package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_24px.svg +0 -1
  626. package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_32px.svg +0 -1
  627. package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_48px.svg +0 -1
  628. package/assets/moz-icons/Navigation_Display_DisplayFull_Outline_64px.svg +0 -1
  629. package/assets/moz-icons/Navigation_Display_DisplayList_Filled_24px.svg +0 -1
  630. package/assets/moz-icons/Navigation_Display_DisplayList_Filled_32px.svg +0 -1
  631. package/assets/moz-icons/Navigation_Display_DisplayList_Filled_48px.svg +0 -1
  632. package/assets/moz-icons/Navigation_Display_DisplayList_Filled_64px.svg +0 -1
  633. package/assets/moz-icons/Navigation_Display_DisplayList_Outline_24px.svg +0 -1
  634. package/assets/moz-icons/Navigation_Display_DisplayList_Outline_32px.svg +0 -1
  635. package/assets/moz-icons/Navigation_Display_DisplayList_Outline_48px.svg +0 -1
  636. package/assets/moz-icons/Navigation_Display_DisplayList_Outline_64px.svg +0 -1
  637. package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_24px.svg +0 -1
  638. package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_32px.svg +0 -1
  639. package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_48px.svg +0 -1
  640. package/assets/moz-icons/Navigation_Display_DisplayMobile--Horizontal_64px.svg +0 -1
  641. package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_24px.svg +0 -1
  642. package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_32px.svg +0 -1
  643. package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_48px.svg +0 -1
  644. package/assets/moz-icons/Navigation_Display_DisplayMobile--Vertical_64px.svg +0 -1
  645. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_24px.svg +0 -1
  646. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_32px.svg +0 -1
  647. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_48px.svg +0 -1
  648. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Filled_64px.svg +0 -1
  649. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_24px.svg +0 -1
  650. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_32px.svg +0 -1
  651. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_48px.svg +0 -1
  652. package/assets/moz-icons/Navigation_Display_DisplayProductX4_Outline_64px.svg +0 -1
  653. package/assets/moz-icons/Navigation_Display_DisplayProductX9_24px.svg +0 -1
  654. package/assets/moz-icons/Navigation_Display_DisplayProductX9_32px.svg +0 -1
  655. package/assets/moz-icons/Navigation_Display_DisplayProductX9_48px.svg +0 -1
  656. package/assets/moz-icons/Navigation_Display_DisplayProductX9_64px.svg +0 -1
  657. package/assets/moz-icons/Navigation_Display_ExternalLink_16px.svg +0 -1
  658. package/assets/moz-icons/Navigation_Display_ExternalLink_24px.svg +0 -1
  659. package/assets/moz-icons/Navigation_Display_ExternalLink_32px.svg +0 -1
  660. package/assets/moz-icons/Navigation_Display_ExternalLink_48px.svg +0 -1
  661. package/assets/moz-icons/Navigation_Display_ExternalLink_64px.svg +0 -1
  662. package/assets/moz-icons/Navigation_Display_Filter_24px.svg +0 -1
  663. package/assets/moz-icons/Navigation_Display_Filter_32px.svg +0 -1
  664. package/assets/moz-icons/Navigation_Display_Filter_48px.svg +0 -1
  665. package/assets/moz-icons/Navigation_Display_Filter_64px.svg +0 -1
  666. package/assets/moz-icons/Navigation_Display_Home_24px.svg +0 -1
  667. package/assets/moz-icons/Navigation_Display_Home_32px.svg +0 -1
  668. package/assets/moz-icons/Navigation_Display_Home_48px.svg +0 -1
  669. package/assets/moz-icons/Navigation_Display_Home_64px.svg +0 -1
  670. package/assets/moz-icons/Navigation_Display_LogOut_24px.svg +0 -1
  671. package/assets/moz-icons/Navigation_Display_LogOut_32px.svg +0 -1
  672. package/assets/moz-icons/Navigation_Display_LogOut_48px.svg +0 -1
  673. package/assets/moz-icons/Navigation_Display_LogOut_64px.svg +0 -1
  674. package/assets/moz-icons/Navigation_Display_Menu_24px.svg +0 -1
  675. package/assets/moz-icons/Navigation_Display_Menu_32px.svg +0 -1
  676. package/assets/moz-icons/Navigation_Display_Menu_48px.svg +0 -1
  677. package/assets/moz-icons/Navigation_Display_Menu_64px.svg +0 -1
  678. package/assets/moz-icons/Navigation_Display_MovingBlock_24px.svg +0 -1
  679. package/assets/moz-icons/Navigation_Display_MovingBlock_32px.svg +0 -1
  680. package/assets/moz-icons/Navigation_Display_MovingBlock_48px.svg +0 -1
  681. package/assets/moz-icons/Navigation_Display_MovingBlock_64px.svg +0 -1
  682. package/assets/moz-icons/Navigation_Display_Options_24px.svg +0 -1
  683. package/assets/moz-icons/Navigation_Display_Options_32px.svg +0 -1
  684. package/assets/moz-icons/Navigation_Display_Options_48px.svg +0 -1
  685. package/assets/moz-icons/Navigation_Display_Options_64px.svg +0 -1
  686. package/assets/moz-icons/Navigation_Display_Other_24px.svg +0 -1
  687. package/assets/moz-icons/Navigation_Display_Other_32px.svg +0 -1
  688. package/assets/moz-icons/Navigation_Display_Other_48px.svg +0 -1
  689. package/assets/moz-icons/Navigation_Display_Other_64px.svg +0 -1
  690. package/assets/moz-icons/Navigation_Display_ProductNumb_24px.svg +0 -1
  691. package/assets/moz-icons/Navigation_Display_ProductNumb_32px.svg +0 -1
  692. package/assets/moz-icons/Navigation_Display_ProductNumb_48px.svg +0 -1
  693. package/assets/moz-icons/Navigation_Display_ProductNumb_64px.svg +0 -1
  694. package/assets/moz-icons/Navigation_Display_Refresh_24px.svg +0 -1
  695. package/assets/moz-icons/Navigation_Display_Refresh_32px.svg +0 -1
  696. package/assets/moz-icons/Navigation_Display_Refresh_48px.svg +0 -1
  697. package/assets/moz-icons/Navigation_Display_Refresh_64px.svg +0 -1
  698. package/assets/moz-icons/Navigation_Display_ScreenRotation_24px.svg +0 -1
  699. package/assets/moz-icons/Navigation_Display_ScreenRotation_32px.svg +0 -1
  700. package/assets/moz-icons/Navigation_Display_ScreenRotation_48px.svg +0 -1
  701. package/assets/moz-icons/Navigation_Display_ScreenRotation_64px.svg +0 -1
  702. package/assets/moz-icons/Navigation_Display_SearchList_24px.svg +0 -1
  703. package/assets/moz-icons/Navigation_Display_SearchList_32px.svg +0 -1
  704. package/assets/moz-icons/Navigation_Display_SearchList_48px.svg +0 -1
  705. package/assets/moz-icons/Navigation_Display_SearchList_64px.svg +0 -1
  706. package/assets/moz-icons/Navigation_Display_SearchProduct_24px.svg +0 -1
  707. package/assets/moz-icons/Navigation_Display_SearchProduct_32px.svg +0 -1
  708. package/assets/moz-icons/Navigation_Display_SearchProduct_48px.svg +0 -1
  709. package/assets/moz-icons/Navigation_Display_SearchProduct_64px.svg +0 -1
  710. package/assets/moz-icons/Navigation_Display_Search_24px.svg +0 -1
  711. package/assets/moz-icons/Navigation_Display_Search_32px.svg +0 -1
  712. package/assets/moz-icons/Navigation_Display_Search_48px.svg +0 -1
  713. package/assets/moz-icons/Navigation_Display_Search_64px.svg +0 -1
  714. package/assets/moz-icons/Navigation_Display_Setting_24px.svg +0 -1
  715. package/assets/moz-icons/Navigation_Display_Setting_32px.svg +0 -1
  716. package/assets/moz-icons/Navigation_Display_Setting_48px.svg +0 -1
  717. package/assets/moz-icons/Navigation_Display_Setting_64px.svg +0 -1
  718. package/assets/moz-icons/Navigation_Display_View_24px.svg +0 -1
  719. package/assets/moz-icons/Navigation_Display_View_32px.svg +0 -1
  720. package/assets/moz-icons/Navigation_Display_View_48px.svg +0 -1
  721. package/assets/moz-icons/Navigation_Display_View_64px.svg +0 -1
  722. package/assets/moz-icons/Navigation_Display_VocalSearch_24px.svg +0 -1
  723. package/assets/moz-icons/Navigation_Display_VocalSearch_32px.svg +0 -1
  724. package/assets/moz-icons/Navigation_Display_VocalSearch_48px.svg +0 -1
  725. package/assets/moz-icons/Navigation_Display_VocalSearch_64px.svg +0 -1
  726. package/assets/moz-icons/Navigation_Notification_Available_16px.svg +0 -1
  727. package/assets/moz-icons/Navigation_Notification_Available_24px.svg +0 -1
  728. package/assets/moz-icons/Navigation_Notification_Available_32px.svg +0 -1
  729. package/assets/moz-icons/Navigation_Notification_Available_48px.svg +0 -1
  730. package/assets/moz-icons/Navigation_Notification_Available_64px.svg +0 -1
  731. package/assets/moz-icons/Navigation_Notification_Bell_24px.svg +0 -1
  732. package/assets/moz-icons/Navigation_Notification_Bell_32px.svg +0 -1
  733. package/assets/moz-icons/Navigation_Notification_Bell_48px.svg +0 -1
  734. package/assets/moz-icons/Navigation_Notification_Bell_64px.svg +0 -1
  735. package/assets/moz-icons/Navigation_Notification_Circle--Available_24px.svg +0 -1
  736. package/assets/moz-icons/Navigation_Notification_Circle--Available_32px.svg +0 -1
  737. package/assets/moz-icons/Navigation_Notification_Circle--Available_48px.svg +0 -1
  738. package/assets/moz-icons/Navigation_Notification_Circle--Available_64px.svg +0 -1
  739. package/assets/moz-icons/Navigation_Notification_Information_24px.svg +0 -1
  740. package/assets/moz-icons/Navigation_Notification_Information_32px.svg +0 -1
  741. package/assets/moz-icons/Navigation_Notification_Information_48px.svg +0 -1
  742. package/assets/moz-icons/Navigation_Notification_Information_64px.svg +0 -1
  743. package/assets/moz-icons/Navigation_Notification_Question_24px.svg +0 -1
  744. package/assets/moz-icons/Navigation_Notification_Question_32px.svg +0 -1
  745. package/assets/moz-icons/Navigation_Notification_Question_48px.svg +0 -1
  746. package/assets/moz-icons/Navigation_Notification_Question_64px.svg +0 -1
  747. package/assets/moz-icons/Navigation_Notification_Warning_24px.svg +0 -1
  748. package/assets/moz-icons/Navigation_Notification_Warning_32px.svg +0 -1
  749. package/assets/moz-icons/Navigation_Notification_Warning_48px.svg +0 -1
  750. package/assets/moz-icons/Navigation_Notification_Warning_64px.svg +0 -1
  751. package/assets/moz-icons/Navigation_Publish_Copy_24px.svg +0 -1
  752. package/assets/moz-icons/Navigation_Publish_Copy_32px.svg +0 -1
  753. package/assets/moz-icons/Navigation_Publish_Copy_48px.svg +0 -1
  754. package/assets/moz-icons/Navigation_Publish_Copy_64px.svg +0 -1
  755. package/assets/moz-icons/Navigation_Publish_Edit_24px.svg +0 -1
  756. package/assets/moz-icons/Navigation_Publish_Edit_32px.svg +0 -1
  757. package/assets/moz-icons/Navigation_Publish_Edit_48px.svg +0 -1
  758. package/assets/moz-icons/Navigation_Publish_Edit_64px.svg +0 -1
  759. package/assets/moz-icons/Navigation_Publish_FavoriteFull_16px.svg +0 -1
  760. package/assets/moz-icons/Navigation_Publish_FavoriteFull_24px.svg +0 -1
  761. package/assets/moz-icons/Navigation_Publish_FavoriteFull_32px.svg +0 -1
  762. package/assets/moz-icons/Navigation_Publish_FavoriteFull_48px.svg +0 -1
  763. package/assets/moz-icons/Navigation_Publish_FavoriteFull_64px.svg +0 -1
  764. package/assets/moz-icons/Navigation_Publish_Favorite_16px.svg +0 -1
  765. package/assets/moz-icons/Navigation_Publish_Favorite_24px.svg +0 -1
  766. package/assets/moz-icons/Navigation_Publish_Favorite_32px.svg +0 -1
  767. package/assets/moz-icons/Navigation_Publish_Favorite_48px.svg +0 -1
  768. package/assets/moz-icons/Navigation_Publish_Favorite_64px.svg +0 -1
  769. package/assets/moz-icons/Navigation_Publish_Lock_16px.svg +0 -1
  770. package/assets/moz-icons/Navigation_Publish_Lock_24px.svg +0 -1
  771. package/assets/moz-icons/Navigation_Publish_Lock_32px.svg +0 -1
  772. package/assets/moz-icons/Navigation_Publish_Lock_48px.svg +0 -1
  773. package/assets/moz-icons/Navigation_Publish_Lock_64px.svg +0 -1
  774. package/assets/moz-icons/Navigation_Publish_Send_24px.svg +0 -1
  775. package/assets/moz-icons/Navigation_Publish_Send_32px.svg +0 -1
  776. package/assets/moz-icons/Navigation_Publish_Send_48px.svg +0 -1
  777. package/assets/moz-icons/Navigation_Publish_Send_64px.svg +0 -1
  778. package/assets/moz-icons/Navigation_Publish_Trashbin_24px.svg +0 -1
  779. package/assets/moz-icons/Navigation_Publish_Trashbin_32px.svg +0 -1
  780. package/assets/moz-icons/Navigation_Publish_Trashbin_48px.svg +0 -1
  781. package/assets/moz-icons/Navigation_Publish_Trashbin_64px.svg +0 -1
  782. package/assets/moz-icons/Navigation_Split_24px.svg +0 -1
  783. package/assets/moz-icons/Navigation_Split_32px.svg +0 -1
  784. package/assets/moz-icons/Navigation_Split_48px.svg +0 -1
  785. package/assets/moz-icons/Navigation_Split_64px.svg +0 -1
  786. package/assets/moz-icons/Payment_Bill_24px.svg +0 -1
  787. package/assets/moz-icons/Payment_Bill_32px.svg +0 -1
  788. package/assets/moz-icons/Payment_Bill_48px.svg +0 -1
  789. package/assets/moz-icons/Payment_Bill_64px.svg +0 -1
  790. package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_24px.svg +0 -1
  791. package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_32px.svg +0 -1
  792. package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_48px.svg +0 -1
  793. package/assets/moz-icons/Payment_Cards_Colors_AmericanExpress_64px.svg +0 -1
  794. package/assets/moz-icons/Payment_Cards_Colors_CB_24px.svg +0 -1
  795. package/assets/moz-icons/Payment_Cards_Colors_CB_32px.svg +0 -1
  796. package/assets/moz-icons/Payment_Cards_Colors_CB_48px.svg +0 -1
  797. package/assets/moz-icons/Payment_Cards_Colors_CB_64px.svg +0 -1
  798. package/assets/moz-icons/Payment_Cards_Colors_Cheque_24px.svg +0 -1
  799. package/assets/moz-icons/Payment_Cards_Colors_Cheque_32px.svg +0 -1
  800. package/assets/moz-icons/Payment_Cards_Colors_Cheque_48px.svg +0 -1
  801. package/assets/moz-icons/Payment_Cards_Colors_Cheque_64px.svg +0 -1
  802. package/assets/moz-icons/Payment_Cards_Colors_Gift_24px.svg +0 -1
  803. package/assets/moz-icons/Payment_Cards_Colors_Gift_32px.svg +0 -1
  804. package/assets/moz-icons/Payment_Cards_Colors_Gift_48px.svg +0 -1
  805. package/assets/moz-icons/Payment_Cards_Colors_Gift_64px.svg +0 -1
  806. package/assets/moz-icons/Payment_Cards_Colors_Illicado_24px.svg +0 -1
  807. package/assets/moz-icons/Payment_Cards_Colors_Illicado_32px.svg +0 -1
  808. package/assets/moz-icons/Payment_Cards_Colors_Illicado_48px.svg +0 -1
  809. package/assets/moz-icons/Payment_Cards_Colors_Illicado_64px.svg +0 -1
  810. package/assets/moz-icons/Payment_Cards_Colors_Loyalty_24px.svg +0 -1
  811. package/assets/moz-icons/Payment_Cards_Colors_Loyalty_32px.svg +0 -1
  812. package/assets/moz-icons/Payment_Cards_Colors_Loyalty_48px.svg +0 -1
  813. package/assets/moz-icons/Payment_Cards_Colors_Loyalty_64px.svg +0 -1
  814. package/assets/moz-icons/Payment_Cards_Colors_Maestro_24px.svg +0 -1
  815. package/assets/moz-icons/Payment_Cards_Colors_Maestro_32px.svg +0 -1
  816. package/assets/moz-icons/Payment_Cards_Colors_Maestro_48px.svg +0 -1
  817. package/assets/moz-icons/Payment_Cards_Colors_Maestro_64px.svg +0 -1
  818. package/assets/moz-icons/Payment_Cards_Colors_Mastercard_24px.svg +0 -1
  819. package/assets/moz-icons/Payment_Cards_Colors_Mastercard_32px.svg +0 -1
  820. package/assets/moz-icons/Payment_Cards_Colors_Mastercard_48px.svg +0 -1
  821. package/assets/moz-icons/Payment_Cards_Colors_Mastercard_64px.svg +0 -1
  822. package/assets/moz-icons/Payment_Cards_Colors_OneyX3_24px.svg +0 -1
  823. package/assets/moz-icons/Payment_Cards_Colors_OneyX3_32px.svg +0 -1
  824. package/assets/moz-icons/Payment_Cards_Colors_OneyX3_48px.svg +0 -1
  825. package/assets/moz-icons/Payment_Cards_Colors_OneyX3_64px.svg +0 -1
  826. package/assets/moz-icons/Payment_Cards_Colors_OneyX4_24px.svg +0 -1
  827. package/assets/moz-icons/Payment_Cards_Colors_OneyX4_32px.svg +0 -1
  828. package/assets/moz-icons/Payment_Cards_Colors_OneyX4_48px.svg +0 -1
  829. package/assets/moz-icons/Payment_Cards_Colors_OneyX4_64px.svg +0 -1
  830. package/assets/moz-icons/Payment_Cards_Colors_Oney_24px.svg +0 -1
  831. package/assets/moz-icons/Payment_Cards_Colors_Oney_32px.svg +0 -1
  832. package/assets/moz-icons/Payment_Cards_Colors_Oney_48px.svg +0 -1
  833. package/assets/moz-icons/Payment_Cards_Colors_Oney_64px.svg +0 -1
  834. package/assets/moz-icons/Payment_Cards_Colors_Paylib_24px.svg +0 -1
  835. package/assets/moz-icons/Payment_Cards_Colors_Paylib_32px.svg +0 -1
  836. package/assets/moz-icons/Payment_Cards_Colors_Paylib_48px.svg +0 -1
  837. package/assets/moz-icons/Payment_Cards_Colors_Paylib_64px.svg +0 -1
  838. package/assets/moz-icons/Payment_Cards_Colors_Paypal_24px.svg +0 -1
  839. package/assets/moz-icons/Payment_Cards_Colors_Paypal_32px.svg +0 -1
  840. package/assets/moz-icons/Payment_Cards_Colors_Paypal_48px.svg +0 -1
  841. package/assets/moz-icons/Payment_Cards_Colors_Paypal_64px.svg +0 -1
  842. package/assets/moz-icons/Payment_Cards_Colors_Visa_24px.svg +0 -1
  843. package/assets/moz-icons/Payment_Cards_Colors_Visa_32px.svg +0 -1
  844. package/assets/moz-icons/Payment_Cards_Colors_Visa_48px.svg +0 -1
  845. package/assets/moz-icons/Payment_Cards_Colors_Visa_64px.svg +0 -1
  846. package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_24px.svg +0 -1
  847. package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_32px.svg +0 -1
  848. package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_48px.svg +0 -1
  849. package/assets/moz-icons/Payment_Cards_Monochrome_AmericanExpress_64px.svg +0 -1
  850. package/assets/moz-icons/Payment_Cards_Monochrome_CB_24px.svg +0 -1
  851. package/assets/moz-icons/Payment_Cards_Monochrome_CB_32px.svg +0 -1
  852. package/assets/moz-icons/Payment_Cards_Monochrome_CB_48px.svg +0 -1
  853. package/assets/moz-icons/Payment_Cards_Monochrome_CB_64px.svg +0 -1
  854. package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_24px.svg +0 -1
  855. package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_32px.svg +0 -1
  856. package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_48px.svg +0 -1
  857. package/assets/moz-icons/Payment_Cards_Monochrome_Cheque_64px.svg +0 -1
  858. package/assets/moz-icons/Payment_Cards_Monochrome_Gift_24px.svg +0 -1
  859. package/assets/moz-icons/Payment_Cards_Monochrome_Gift_32px.svg +0 -1
  860. package/assets/moz-icons/Payment_Cards_Monochrome_Gift_48px.svg +0 -1
  861. package/assets/moz-icons/Payment_Cards_Monochrome_Gift_64px.svg +0 -1
  862. package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_24px.svg +0 -1
  863. package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_32px.svg +0 -1
  864. package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_48px.svg +0 -1
  865. package/assets/moz-icons/Payment_Cards_Monochrome_Illicado_64px.svg +0 -1
  866. package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_24px.svg +0 -1
  867. package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_32px.svg +0 -1
  868. package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_48px.svg +0 -1
  869. package/assets/moz-icons/Payment_Cards_Monochrome_Loyalty_64px.svg +0 -1
  870. package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_24px.svg +0 -1
  871. package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_32px.svg +0 -1
  872. package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_48px.svg +0 -1
  873. package/assets/moz-icons/Payment_Cards_Monochrome_Maestro_64px.svg +0 -1
  874. package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_24px.svg +0 -1
  875. package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_32px.svg +0 -1
  876. package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_48px.svg +0 -1
  877. package/assets/moz-icons/Payment_Cards_Monochrome_Mastercard_64px.svg +0 -1
  878. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_24px.svg +0 -1
  879. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_32px.svg +0 -1
  880. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_48px.svg +0 -1
  881. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX3_64px.svg +0 -1
  882. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_24px.svg +0 -1
  883. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_32px.svg +0 -1
  884. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_48px.svg +0 -1
  885. package/assets/moz-icons/Payment_Cards_Monochrome_OneyX4_64px.svg +0 -1
  886. package/assets/moz-icons/Payment_Cards_Monochrome_Oney_24px.svg +0 -1
  887. package/assets/moz-icons/Payment_Cards_Monochrome_Oney_32px.svg +0 -1
  888. package/assets/moz-icons/Payment_Cards_Monochrome_Oney_48px.svg +0 -1
  889. package/assets/moz-icons/Payment_Cards_Monochrome_Oney_64px.svg +0 -1
  890. package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_24px.svg +0 -1
  891. package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_32px.svg +0 -1
  892. package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_48px.svg +0 -1
  893. package/assets/moz-icons/Payment_Cards_Monochrome_Paylib_64px.svg +0 -1
  894. package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_24px.svg +0 -1
  895. package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_32px.svg +0 -1
  896. package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_48px.svg +0 -1
  897. package/assets/moz-icons/Payment_Cards_Monochrome_Paypal_64px.svg +0 -1
  898. package/assets/moz-icons/Payment_Cards_Monochrome_Visa_24px.svg +0 -1
  899. package/assets/moz-icons/Payment_Cards_Monochrome_Visa_32px.svg +0 -1
  900. package/assets/moz-icons/Payment_Cards_Monochrome_Visa_48px.svg +0 -1
  901. package/assets/moz-icons/Payment_Cards_Monochrome_Visa_64px.svg +0 -1
  902. package/assets/moz-icons/Payment_DetailsOrder_24px.svg +0 -1
  903. package/assets/moz-icons/Payment_DetailsOrder_32px.svg +0 -1
  904. package/assets/moz-icons/Payment_DetailsOrder_48px.svg +0 -1
  905. package/assets/moz-icons/Payment_DetailsOrder_64px.svg +0 -1
  906. package/assets/moz-icons/Payment_Euro_16px.svg +0 -1
  907. package/assets/moz-icons/Payment_Euro_24px.svg +0 -1
  908. package/assets/moz-icons/Payment_Euro_32px.svg +0 -1
  909. package/assets/moz-icons/Payment_Euro_48px.svg +0 -1
  910. package/assets/moz-icons/Payment_Euro_64px.svg +0 -1
  911. package/assets/moz-icons/Payment_Receipt_24px.svg +0 -1
  912. package/assets/moz-icons/Payment_Receipt_32px.svg +0 -1
  913. package/assets/moz-icons/Payment_Receipt_48px.svg +0 -1
  914. package/assets/moz-icons/Payment_Receipt_64px.svg +0 -1
  915. package/assets/moz-icons/Payment_SafePayment1_24px.svg +0 -1
  916. package/assets/moz-icons/Payment_SafePayment1_32px.svg +0 -1
  917. package/assets/moz-icons/Payment_SafePayment1_48px.svg +0 -1
  918. package/assets/moz-icons/Payment_SafePayment1_64px.svg +0 -1
  919. package/assets/moz-icons/Payment_SafePayment2_24px.svg +0 -1
  920. package/assets/moz-icons/Payment_SafePayment2_32px.svg +0 -1
  921. package/assets/moz-icons/Payment_SafePayment2_48px.svg +0 -1
  922. package/assets/moz-icons/Payment_SafePayment2_64px.svg +0 -1
  923. package/assets/moz-icons/Product_Aspect_Quantity_24px.svg +0 -1
  924. package/assets/moz-icons/Product_Aspect_Quantity_32px.svg +0 -1
  925. package/assets/moz-icons/Product_Aspect_Quantity_48px.svg +0 -1
  926. package/assets/moz-icons/Product_Aspect_Quantity_64px.svg +0 -1
  927. package/assets/moz-icons/Product_Aspect_Size_24px.svg +0 -1
  928. package/assets/moz-icons/Product_Aspect_Size_32px.svg +0 -1
  929. package/assets/moz-icons/Product_Aspect_Size_48px.svg +0 -1
  930. package/assets/moz-icons/Product_Aspect_Size_64px.svg +0 -1
  931. package/assets/moz-icons/Product_Aspect_Weight_24px.svg +0 -1
  932. package/assets/moz-icons/Product_Aspect_Weight_32px.svg +0 -1
  933. package/assets/moz-icons/Product_Aspect_Weight_48px.svg +0 -1
  934. package/assets/moz-icons/Product_Aspect_Weight_64px.svg +0 -1
  935. package/assets/moz-icons/Product_Basket_Add_24px.svg +0 -1
  936. package/assets/moz-icons/Product_Basket_Add_32px.svg +0 -1
  937. package/assets/moz-icons/Product_Basket_Add_48px.svg +0 -1
  938. package/assets/moz-icons/Product_Basket_Add_64px.svg +0 -1
  939. package/assets/moz-icons/Product_Basket_Handbag_24px.svg +0 -1
  940. package/assets/moz-icons/Product_Basket_Handbag_32px.svg +0 -1
  941. package/assets/moz-icons/Product_Basket_Handbag_48px.svg +0 -1
  942. package/assets/moz-icons/Product_Basket_Handbag_64px.svg +0 -1
  943. package/assets/moz-icons/Product_Basket_Multi_24px.svg +0 -1
  944. package/assets/moz-icons/Product_Basket_Multi_32px.svg +0 -1
  945. package/assets/moz-icons/Product_Basket_Multi_48px.svg +0 -1
  946. package/assets/moz-icons/Product_Basket_Multi_64px.svg +0 -1
  947. package/assets/moz-icons/Product_Basket_Save_24px.svg +0 -1
  948. package/assets/moz-icons/Product_Basket_Save_32px.svg +0 -1
  949. package/assets/moz-icons/Product_Basket_Save_48px.svg +0 -1
  950. package/assets/moz-icons/Product_Basket_Save_64px.svg +0 -1
  951. package/assets/moz-icons/Product_Basket_Standard_24px.svg +0 -1
  952. package/assets/moz-icons/Product_Basket_Standard_32px.svg +0 -1
  953. package/assets/moz-icons/Product_Basket_Standard_48px.svg +0 -1
  954. package/assets/moz-icons/Product_Basket_Standard_64px.svg +0 -1
  955. package/assets/moz-icons/Product_List_Add_24px.svg +0 -1
  956. package/assets/moz-icons/Product_List_Add_32px.svg +0 -1
  957. package/assets/moz-icons/Product_List_Add_48px.svg +0 -1
  958. package/assets/moz-icons/Product_List_Add_64px.svg +0 -1
  959. package/assets/moz-icons/Product_List_Standard_24px.svg +0 -1
  960. package/assets/moz-icons/Product_List_Standard_32px.svg +0 -1
  961. package/assets/moz-icons/Product_List_Standard_48px.svg +0 -1
  962. package/assets/moz-icons/Product_List_Standard_64px.svg +0 -1
  963. package/assets/moz-icons/Product_Promise_Certification_24px.svg +0 -1
  964. package/assets/moz-icons/Product_Promise_Certification_32px.svg +0 -1
  965. package/assets/moz-icons/Product_Promise_Certification_48px.svg +0 -1
  966. package/assets/moz-icons/Product_Promise_Certification_64px.svg +0 -1
  967. package/assets/moz-icons/Product_Promise_CircularEconomy_24px.svg +0 -1
  968. package/assets/moz-icons/Product_Promise_CircularEconomy_32px.svg +0 -1
  969. package/assets/moz-icons/Product_Promise_CircularEconomy_48px.svg +0 -1
  970. package/assets/moz-icons/Product_Promise_CircularEconomy_64px.svg +0 -1
  971. package/assets/moz-icons/Product_Promise_Destocking_24px.svg +0 -1
  972. package/assets/moz-icons/Product_Promise_Destocking_32px.svg +0 -1
  973. package/assets/moz-icons/Product_Promise_Destocking_48px.svg +0 -1
  974. package/assets/moz-icons/Product_Promise_Destocking_64px.svg +0 -1
  975. package/assets/moz-icons/Product_Promise_EcoProduct_24px.svg +0 -1
  976. package/assets/moz-icons/Product_Promise_EcoProduct_32px.svg +0 -1
  977. package/assets/moz-icons/Product_Promise_EcoProduct_48px.svg +0 -1
  978. package/assets/moz-icons/Product_Promise_EcoProduct_64px.svg +0 -1
  979. package/assets/moz-icons/Product_Promise_FashionChoice_24px.svg +0 -1
  980. package/assets/moz-icons/Product_Promise_FashionChoice_32px.svg +0 -1
  981. package/assets/moz-icons/Product_Promise_FashionChoice_48px.svg +0 -1
  982. package/assets/moz-icons/Product_Promise_FashionChoice_64px.svg +0 -1
  983. package/assets/moz-icons/Product_Promise_Funding_24px.svg +0 -1
  984. package/assets/moz-icons/Product_Promise_Funding_32px.svg +0 -1
  985. package/assets/moz-icons/Product_Promise_Funding_48px.svg +0 -1
  986. package/assets/moz-icons/Product_Promise_Funding_64px.svg +0 -1
  987. package/assets/moz-icons/Product_Promise_MadeInEurope_24px.svg +0 -1
  988. package/assets/moz-icons/Product_Promise_MadeInEurope_32px.svg +0 -1
  989. package/assets/moz-icons/Product_Promise_MadeInEurope_48px.svg +0 -1
  990. package/assets/moz-icons/Product_Promise_MadeInEurope_64px.svg +0 -1
  991. package/assets/moz-icons/Product_Promise_MadeInFrance_24px.svg +0 -1
  992. package/assets/moz-icons/Product_Promise_MadeInFrance_32px.svg +0 -1
  993. package/assets/moz-icons/Product_Promise_MadeInFrance_48px.svg +0 -1
  994. package/assets/moz-icons/Product_Promise_MadeInFrance_64px.svg +0 -1
  995. package/assets/moz-icons/Product_Promise_Modular_24px.svg +0 -1
  996. package/assets/moz-icons/Product_Promise_Modular_32px.svg +0 -1
  997. package/assets/moz-icons/Product_Promise_Modular_48px.svg +0 -1
  998. package/assets/moz-icons/Product_Promise_Modular_64px.svg +0 -1
  999. package/assets/moz-icons/Product_Promise_ProductOnPicture_24px.svg +0 -1
  1000. package/assets/moz-icons/Product_Promise_ProductOnPicture_32px.svg +0 -1
  1001. package/assets/moz-icons/Product_Promise_ProductOnPicture_48px.svg +0 -1
  1002. package/assets/moz-icons/Product_Promise_ProductOnPicture_64px.svg +0 -1
  1003. package/assets/moz-icons/Product_Promise_ProductSheet_24px.svg +0 -1
  1004. package/assets/moz-icons/Product_Promise_ProductSheet_32px.svg +0 -1
  1005. package/assets/moz-icons/Product_Promise_ProductSheet_48px.svg +0 -1
  1006. package/assets/moz-icons/Product_Promise_ProductSheet_64px.svg +0 -1
  1007. package/assets/moz-icons/Product_Promise_Scan_24px.svg +0 -1
  1008. package/assets/moz-icons/Product_Promise_Scan_32px.svg +0 -1
  1009. package/assets/moz-icons/Product_Promise_Scan_48px.svg +0 -1
  1010. package/assets/moz-icons/Product_Promise_Scan_64px.svg +0 -1
  1011. package/assets/moz-icons/Product_Promise_Warranty_24px.svg +0 -1
  1012. package/assets/moz-icons/Product_Promise_Warranty_32px.svg +0 -1
  1013. package/assets/moz-icons/Product_Promise_Warranty_48px.svg +0 -1
  1014. package/assets/moz-icons/Product_Promise_Warranty_64px.svg +0 -1
  1015. package/assets/moz-icons/Project_DescribeProject_24px.svg +0 -1
  1016. package/assets/moz-icons/Project_DescribeProject_32px.svg +0 -1
  1017. package/assets/moz-icons/Project_DescribeProject_48px.svg +0 -1
  1018. package/assets/moz-icons/Project_DescribeProject_64px.svg +0 -1
  1019. package/assets/moz-icons/Project_Inspiration_24px.svg +0 -1
  1020. package/assets/moz-icons/Project_Inspiration_32px.svg +0 -1
  1021. package/assets/moz-icons/Project_Inspiration_48px.svg +0 -1
  1022. package/assets/moz-icons/Project_Inspiration_64px.svg +0 -1
  1023. package/assets/moz-icons/Project_MakeProject_24px.svg +0 -1
  1024. package/assets/moz-icons/Project_MakeProject_32px.svg +0 -1
  1025. package/assets/moz-icons/Project_MakeProject_48px.svg +0 -1
  1026. package/assets/moz-icons/Project_MakeProject_64px.svg +0 -1
  1027. package/assets/moz-icons/Service_AfterSales_AfterSalesService_24px.svg +0 -1
  1028. package/assets/moz-icons/Service_AfterSales_AfterSalesService_32px.svg +0 -1
  1029. package/assets/moz-icons/Service_AfterSales_AfterSalesService_48px.svg +0 -1
  1030. package/assets/moz-icons/Service_AfterSales_AfterSalesService_64px.svg +0 -1
  1031. package/assets/moz-icons/Service_AfterSales_Helpline_24px.svg +0 -1
  1032. package/assets/moz-icons/Service_AfterSales_Helpline_32px.svg +0 -1
  1033. package/assets/moz-icons/Service_AfterSales_Helpline_48px.svg +0 -1
  1034. package/assets/moz-icons/Service_AfterSales_Helpline_64px.svg +0 -1
  1035. package/assets/moz-icons/Service_AfterSales_Payback_24px.svg +0 -1
  1036. package/assets/moz-icons/Service_AfterSales_Payback_32px.svg +0 -1
  1037. package/assets/moz-icons/Service_AfterSales_Payback_48px.svg +0 -1
  1038. package/assets/moz-icons/Service_AfterSales_Payback_64px.svg +0 -1
  1039. package/assets/moz-icons/Service_AfterSales_Satisfaction_24px.svg +0 -1
  1040. package/assets/moz-icons/Service_AfterSales_Satisfaction_32px.svg +0 -1
  1041. package/assets/moz-icons/Service_AfterSales_Satisfaction_48px.svg +0 -1
  1042. package/assets/moz-icons/Service_AfterSales_Satisfaction_64px.svg +0 -1
  1043. package/assets/moz-icons/Service_Custom_CopyKey_24px.svg +0 -1
  1044. package/assets/moz-icons/Service_Custom_CopyKey_32px.svg +0 -1
  1045. package/assets/moz-icons/Service_Custom_CopyKey_48px.svg +0 -1
  1046. package/assets/moz-icons/Service_Custom_CopyKey_64px.svg +0 -1
  1047. package/assets/moz-icons/Service_Custom_Course_24px.svg +0 -1
  1048. package/assets/moz-icons/Service_Custom_Course_32px.svg +0 -1
  1049. package/assets/moz-icons/Service_Custom_Course_48px.svg +0 -1
  1050. package/assets/moz-icons/Service_Custom_Course_64px.svg +0 -1
  1051. package/assets/moz-icons/Service_Custom_CutWoodGlass_24px.svg +0 -1
  1052. package/assets/moz-icons/Service_Custom_CutWoodGlass_32px.svg +0 -1
  1053. package/assets/moz-icons/Service_Custom_CutWoodGlass_48px.svg +0 -1
  1054. package/assets/moz-icons/Service_Custom_CutWoodGlass_64px.svg +0 -1
  1055. package/assets/moz-icons/Service_Custom_Sample_24px.svg +0 -1
  1056. package/assets/moz-icons/Service_Custom_Sample_32px.svg +0 -1
  1057. package/assets/moz-icons/Service_Custom_Sample_48px.svg +0 -1
  1058. package/assets/moz-icons/Service_Custom_Sample_64px.svg +0 -1
  1059. package/assets/moz-icons/Service_Custom_Sharpening_24px.svg +0 -1
  1060. package/assets/moz-icons/Service_Custom_Sharpening_32px.svg +0 -1
  1061. package/assets/moz-icons/Service_Custom_Sharpening_48px.svg +0 -1
  1062. package/assets/moz-icons/Service_Custom_Sharpening_64px.svg +0 -1
  1063. package/assets/moz-icons/Service_Delivery_Delivery--Home_24px.svg +0 -1
  1064. package/assets/moz-icons/Service_Delivery_Delivery--Home_32px.svg +0 -1
  1065. package/assets/moz-icons/Service_Delivery_Delivery--Home_48px.svg +0 -1
  1066. package/assets/moz-icons/Service_Delivery_Delivery--Home_64px.svg +0 -1
  1067. package/assets/moz-icons/Service_Delivery_Delivery--Locker_24px.svg +0 -1
  1068. package/assets/moz-icons/Service_Delivery_Delivery--Locker_32px.svg +0 -1
  1069. package/assets/moz-icons/Service_Delivery_Delivery--Locker_48px.svg +0 -1
  1070. package/assets/moz-icons/Service_Delivery_Delivery--Locker_64px.svg +0 -1
  1071. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_24px.svg +0 -1
  1072. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_32px.svg +0 -1
  1073. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_48px.svg +0 -1
  1074. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--RelayPoint_64px.svg +0 -1
  1075. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_24px.svg +0 -1
  1076. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_32px.svg +0 -1
  1077. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_48px.svg +0 -1
  1078. package/assets/moz-icons/Service_Delivery_Delivery_Pickup--Store_64px.svg +0 -1
  1079. package/assets/moz-icons/Service_Pallet_24px.svg +0 -1
  1080. package/assets/moz-icons/Service_Pallet_32px.svg +0 -1
  1081. package/assets/moz-icons/Service_Pallet_48px.svg +0 -1
  1082. package/assets/moz-icons/Service_Pallet_64px.svg +0 -1
  1083. package/assets/moz-icons/Service_PurchaseHelp_CarRent_24px.svg +0 -1
  1084. package/assets/moz-icons/Service_PurchaseHelp_CarRent_32px.svg +0 -1
  1085. package/assets/moz-icons/Service_PurchaseHelp_CarRent_48px.svg +0 -1
  1086. package/assets/moz-icons/Service_PurchaseHelp_CarRent_64px.svg +0 -1
  1087. package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_24px.svg +0 -1
  1088. package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_32px.svg +0 -1
  1089. package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_48px.svg +0 -1
  1090. package/assets/moz-icons/Service_PurchaseHelp_HomeDIY_64px.svg +0 -1
  1091. package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_24px.svg +0 -1
  1092. package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_32px.svg +0 -1
  1093. package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_48px.svg +0 -1
  1094. package/assets/moz-icons/Service_PurchaseHelp_HomeInstall_64px.svg +0 -1
  1095. package/assets/moz-icons/Service_PurchaseHelp_ToolRent_24px.svg +0 -1
  1096. package/assets/moz-icons/Service_PurchaseHelp_ToolRent_32px.svg +0 -1
  1097. package/assets/moz-icons/Service_PurchaseHelp_ToolRent_48px.svg +0 -1
  1098. package/assets/moz-icons/Service_PurchaseHelp_ToolRent_64px.svg +0 -1
  1099. package/assets/moz-icons/Service_Time_Delivery--2h_24px.svg +0 -1
  1100. package/assets/moz-icons/Service_Time_Delivery--2h_32px.svg +0 -1
  1101. package/assets/moz-icons/Service_Time_Delivery--2h_48px.svg +0 -1
  1102. package/assets/moz-icons/Service_Time_Delivery--2h_64px.svg +0 -1
  1103. package/assets/moz-icons/Service_Time_Delivery--3h_24px.svg +0 -1
  1104. package/assets/moz-icons/Service_Time_Delivery--3h_32px.svg +0 -1
  1105. package/assets/moz-icons/Service_Time_Delivery--3h_48px.svg +0 -1
  1106. package/assets/moz-icons/Service_Time_Delivery--3h_64px.svg +0 -1
  1107. package/assets/moz-icons/Service_Time_Delivery--48h_24px.svg +0 -1
  1108. package/assets/moz-icons/Service_Time_Delivery--48h_32px.svg +0 -1
  1109. package/assets/moz-icons/Service_Time_Delivery--48h_48px.svg +0 -1
  1110. package/assets/moz-icons/Service_Time_Delivery--48h_64px.svg +0 -1
  1111. package/assets/moz-icons/Service_Time_TimeDecline_24px.svg +0 -1
  1112. package/assets/moz-icons/Service_Time_TimeDecline_32px.svg +0 -1
  1113. package/assets/moz-icons/Service_Time_TimeDecline_48px.svg +0 -1
  1114. package/assets/moz-icons/Service_Time_TimeDecline_64px.svg +0 -1
  1115. package/assets/moz-icons/Service_Tools_3d_24px.svg +0 -1
  1116. package/assets/moz-icons/Service_Tools_3d_32px.svg +0 -1
  1117. package/assets/moz-icons/Service_Tools_3d_48px.svg +0 -1
  1118. package/assets/moz-icons/Service_Tools_3d_64px.svg +0 -1
  1119. package/assets/moz-icons/Service_Tools_Calculator_24px.svg +0 -1
  1120. package/assets/moz-icons/Service_Tools_Calculator_32px.svg +0 -1
  1121. package/assets/moz-icons/Service_Tools_Calculator_48px.svg +0 -1
  1122. package/assets/moz-icons/Service_Tools_Calculator_64px.svg +0 -1
  1123. package/assets/moz-icons/Service_Tools_Comparator_24px.svg +0 -1
  1124. package/assets/moz-icons/Service_Tools_Comparator_32px.svg +0 -1
  1125. package/assets/moz-icons/Service_Tools_Comparator_48px.svg +0 -1
  1126. package/assets/moz-icons/Service_Tools_Comparator_64px.svg +0 -1
  1127. package/assets/moz-icons/Social_Comment_Comment_24px.svg +0 -1
  1128. package/assets/moz-icons/Social_Comment_Comment_32px.svg +0 -1
  1129. package/assets/moz-icons/Social_Comment_Comment_48px.svg +0 -1
  1130. package/assets/moz-icons/Social_Comment_Comment_64px.svg +0 -1
  1131. package/assets/moz-icons/Social_Comment_Community_24px.svg +0 -1
  1132. package/assets/moz-icons/Social_Comment_Community_32px.svg +0 -1
  1133. package/assets/moz-icons/Social_Comment_Community_48px.svg +0 -1
  1134. package/assets/moz-icons/Social_Comment_Community_64px.svg +0 -1
  1135. package/assets/moz-icons/Social_Comment_Question--Article_24px.svg +0 -1
  1136. package/assets/moz-icons/Social_Comment_Question--Article_32px.svg +0 -1
  1137. package/assets/moz-icons/Social_Comment_Question--Article_48px.svg +0 -1
  1138. package/assets/moz-icons/Social_Comment_Question--Article_64px.svg +0 -1
  1139. package/assets/moz-icons/Social_Comment_Report_24px.svg +0 -1
  1140. package/assets/moz-icons/Social_Comment_Report_32px.svg +0 -1
  1141. package/assets/moz-icons/Social_Comment_Report_48px.svg +0 -1
  1142. package/assets/moz-icons/Social_Comment_Report_64px.svg +0 -1
  1143. package/assets/moz-icons/Social_Share_ShareAndroid_24px.svg +0 -1
  1144. package/assets/moz-icons/Social_Share_ShareAndroid_32px.svg +0 -1
  1145. package/assets/moz-icons/Social_Share_ShareAndroid_48px.svg +0 -1
  1146. package/assets/moz-icons/Social_Share_ShareAndroid_64px.svg +0 -1
  1147. package/assets/moz-icons/Social_Share_ShareIOS_24px.svg +0 -1
  1148. package/assets/moz-icons/Social_Share_ShareIOS_32px.svg +0 -1
  1149. package/assets/moz-icons/Social_Share_ShareIOS_48px.svg +0 -1
  1150. package/assets/moz-icons/Social_Share_ShareIOS_64px.svg +0 -1
  1151. package/assets/moz-icons/Social_SocialNetwork_Facebook_24px.svg +0 -1
  1152. package/assets/moz-icons/Social_SocialNetwork_Facebook_32px.svg +0 -1
  1153. package/assets/moz-icons/Social_SocialNetwork_Facebook_48px.svg +0 -1
  1154. package/assets/moz-icons/Social_SocialNetwork_Facebook_64px.svg +0 -1
  1155. package/assets/moz-icons/Social_SocialNetwork_Instagram_24px.svg +0 -1
  1156. package/assets/moz-icons/Social_SocialNetwork_Instagram_32px.svg +0 -1
  1157. package/assets/moz-icons/Social_SocialNetwork_Instagram_48px.svg +0 -1
  1158. package/assets/moz-icons/Social_SocialNetwork_Instagram_64px.svg +0 -1
  1159. package/assets/moz-icons/Social_SocialNetwork_Linkedin_24px.svg +0 -1
  1160. package/assets/moz-icons/Social_SocialNetwork_Linkedin_32px.svg +0 -1
  1161. package/assets/moz-icons/Social_SocialNetwork_Linkedin_48px.svg +0 -1
  1162. package/assets/moz-icons/Social_SocialNetwork_Linkedin_64px.svg +0 -1
  1163. package/assets/moz-icons/Social_SocialNetwork_Pinterest_24px.svg +0 -1
  1164. package/assets/moz-icons/Social_SocialNetwork_Pinterest_32px.svg +0 -1
  1165. package/assets/moz-icons/Social_SocialNetwork_Pinterest_48px.svg +0 -1
  1166. package/assets/moz-icons/Social_SocialNetwork_Pinterest_64px.svg +0 -1
  1167. package/assets/moz-icons/Social_SocialNetwork_Twitter_24px.svg +0 -1
  1168. package/assets/moz-icons/Social_SocialNetwork_Twitter_32px.svg +0 -1
  1169. package/assets/moz-icons/Social_SocialNetwork_Twitter_48px.svg +0 -1
  1170. package/assets/moz-icons/Social_SocialNetwork_Twitter_64px.svg +0 -1
  1171. package/assets/moz-icons/Social_SocialNetwork_Youtube_24px.svg +0 -1
  1172. package/assets/moz-icons/Social_SocialNetwork_Youtube_32px.svg +0 -1
  1173. package/assets/moz-icons/Social_SocialNetwork_Youtube_48px.svg +0 -1
  1174. package/assets/moz-icons/Social_SocialNetwork_Youtube_64px.svg +0 -1
  1175. package/assets/moz-icons/Social_View_Like--Negative_16px.svg +0 -1
  1176. package/assets/moz-icons/Social_View_Like--Negative_24px.svg +0 -1
  1177. package/assets/moz-icons/Social_View_Like--Negative_32px.svg +0 -1
  1178. package/assets/moz-icons/Social_View_Like--Negative_48px.svg +0 -1
  1179. package/assets/moz-icons/Social_View_Like--Negative_64px.svg +0 -1
  1180. package/assets/moz-icons/Social_View_Like--Positive_16px.svg +0 -1
  1181. package/assets/moz-icons/Social_View_Like--Positive_24px.svg +0 -1
  1182. package/assets/moz-icons/Social_View_Like--Positive_32px.svg +0 -1
  1183. package/assets/moz-icons/Social_View_Like--Positive_48px.svg +0 -1
  1184. package/assets/moz-icons/Social_View_Like--Positive_64px.svg +0 -1
  1185. package/assets/moz-icons/Social_View_Star--Empty_16px.svg +0 -1
  1186. package/assets/moz-icons/Social_View_Star--Empty_24px.svg +0 -1
  1187. package/assets/moz-icons/Social_View_Star--Empty_32px.svg +0 -1
  1188. package/assets/moz-icons/Social_View_Star--Empty_48px.svg +0 -1
  1189. package/assets/moz-icons/Social_View_Star--Empty_64px.svg +0 -1
  1190. package/assets/moz-icons/Social_View_Star--Full_16px.svg +0 -1
  1191. package/assets/moz-icons/Social_View_Star--Full_24px.svg +0 -1
  1192. package/assets/moz-icons/Social_View_Star--Full_32px.svg +0 -1
  1193. package/assets/moz-icons/Social_View_Star--Full_48px.svg +0 -1
  1194. package/assets/moz-icons/Social_View_Star--Full_64px.svg +0 -1
  1195. package/assets/moz-icons/Social_View_Star--Half_16px.svg +0 -1
  1196. package/assets/moz-icons/Social_View_Star--Half_24px.svg +0 -1
  1197. package/assets/moz-icons/Social_View_Star--Half_32px.svg +0 -1
  1198. package/assets/moz-icons/Social_View_Star--Half_48px.svg +0 -1
  1199. package/assets/moz-icons/Social_View_Star--Half_64px.svg +0 -1
  1200. package/assets/moz-icons/Social_View_TesterView_24px.svg +0 -1
  1201. package/assets/moz-icons/Social_View_TesterView_32px.svg +0 -1
  1202. package/assets/moz-icons/Social_View_TesterView_48px.svg +0 -1
  1203. package/assets/moz-icons/Social_View_TesterView_64px.svg +0 -1
  1204. package/assets/moz-icons/Store_Colors_RelayLocation_24px.svg +0 -1
  1205. package/assets/moz-icons/Store_Colors_RelayLocation_32px.svg +0 -1
  1206. package/assets/moz-icons/Store_Colors_RelayLocation_48px.svg +0 -1
  1207. package/assets/moz-icons/Store_Colors_RelayLocation_64px.svg +0 -1
  1208. package/assets/moz-icons/Store_Colors_StoreLocation_24px.svg +0 -1
  1209. package/assets/moz-icons/Store_Colors_StoreLocation_32px.svg +0 -1
  1210. package/assets/moz-icons/Store_Colors_StoreLocation_48px.svg +0 -1
  1211. package/assets/moz-icons/Store_Colors_StoreLocation_64px.svg +0 -1
  1212. package/assets/moz-icons/Store_Itinerary_24px.svg +0 -1
  1213. package/assets/moz-icons/Store_Itinerary_32px.svg +0 -1
  1214. package/assets/moz-icons/Store_Itinerary_48px.svg +0 -1
  1215. package/assets/moz-icons/Store_Itinerary_64px.svg +0 -1
  1216. package/assets/moz-icons/Store_Locator_16px.svg +0 -1
  1217. package/assets/moz-icons/Store_Locator_24px.svg +0 -1
  1218. package/assets/moz-icons/Store_Locator_32px.svg +0 -1
  1219. package/assets/moz-icons/Store_Locator_48px.svg +0 -1
  1220. package/assets/moz-icons/Store_Locator_64px.svg +0 -1
  1221. package/assets/moz-icons/Store_Logo_24px.svg +0 -1
  1222. package/assets/moz-icons/Store_Logo_32px.svg +0 -1
  1223. package/assets/moz-icons/Store_Logo_48px.svg +0 -1
  1224. package/assets/moz-icons/Store_Logo_64px.svg +0 -1
  1225. package/assets/moz-icons/Store_Map_24px.svg +0 -1
  1226. package/assets/moz-icons/Store_Map_32px.svg +0 -1
  1227. package/assets/moz-icons/Store_Map_48px.svg +0 -1
  1228. package/assets/moz-icons/Store_Map_64px.svg +0 -1
  1229. package/assets/moz-icons/Store_Monochrome_RelayLocation_24px.svg +0 -1
  1230. package/assets/moz-icons/Store_Monochrome_RelayLocation_32px.svg +0 -1
  1231. package/assets/moz-icons/Store_Monochrome_RelayLocation_48px.svg +0 -1
  1232. package/assets/moz-icons/Store_Monochrome_RelayLocation_64px.svg +0 -1
  1233. package/assets/moz-icons/Store_Monochrome_StoreLocation_24px.svg +0 -1
  1234. package/assets/moz-icons/Store_Monochrome_StoreLocation_32px.svg +0 -1
  1235. package/assets/moz-icons/Store_Monochrome_StoreLocation_48px.svg +0 -1
  1236. package/assets/moz-icons/Store_Monochrome_StoreLocation_64px.svg +0 -1
  1237. package/assets/moz-icons/Store_StoreLM_24px.svg +0 -1
  1238. package/assets/moz-icons/Store_StoreLM_32px.svg +0 -1
  1239. package/assets/moz-icons/Store_StoreLM_48px.svg +0 -1
  1240. package/assets/moz-icons/Store_StoreLM_64px.svg +0 -1
  1241. package/assets/moz-icons/Universe_Attic_24px.svg +0 -1
  1242. package/assets/moz-icons/Universe_Attic_32px.svg +0 -1
  1243. package/assets/moz-icons/Universe_Attic_48px.svg +0 -1
  1244. package/assets/moz-icons/Universe_Attic_64px.svg +0 -1
  1245. package/assets/moz-icons/Universe_Bathroom_24px.svg +0 -1
  1246. package/assets/moz-icons/Universe_Bathroom_32px.svg +0 -1
  1247. package/assets/moz-icons/Universe_Bathroom_48px.svg +0 -1
  1248. package/assets/moz-icons/Universe_Bathroom_64px.svg +0 -1
  1249. package/assets/moz-icons/Universe_Bedroom_24px.svg +0 -1
  1250. package/assets/moz-icons/Universe_Bedroom_32px.svg +0 -1
  1251. package/assets/moz-icons/Universe_Bedroom_48px.svg +0 -1
  1252. package/assets/moz-icons/Universe_Bedroom_64px.svg +0 -1
  1253. package/assets/moz-icons/Universe_Carpentry_24px.svg +0 -1
  1254. package/assets/moz-icons/Universe_Carpentry_32px.svg +0 -1
  1255. package/assets/moz-icons/Universe_Carpentry_48px.svg +0 -1
  1256. package/assets/moz-icons/Universe_Carpentry_64px.svg +0 -1
  1257. package/assets/moz-icons/Universe_ChristmasTree_24px.svg +0 -1
  1258. package/assets/moz-icons/Universe_ChristmasTree_32px.svg +0 -1
  1259. package/assets/moz-icons/Universe_ChristmasTree_48px.svg +0 -1
  1260. package/assets/moz-icons/Universe_ChristmasTree_64px.svg +0 -1
  1261. package/assets/moz-icons/Universe_ConnectedHome_24px.svg +0 -1
  1262. package/assets/moz-icons/Universe_ConnectedHome_32px.svg +0 -1
  1263. package/assets/moz-icons/Universe_ConnectedHome_48px.svg +0 -1
  1264. package/assets/moz-icons/Universe_ConnectedHome_64px.svg +0 -1
  1265. package/assets/moz-icons/Universe_Curtains_24px.svg +0 -1
  1266. package/assets/moz-icons/Universe_Curtains_32px.svg +0 -1
  1267. package/assets/moz-icons/Universe_Curtains_48px.svg +0 -1
  1268. package/assets/moz-icons/Universe_Curtains_64px.svg +0 -1
  1269. package/assets/moz-icons/Universe_Dressing_24px.svg +0 -1
  1270. package/assets/moz-icons/Universe_Dressing_32px.svg +0 -1
  1271. package/assets/moz-icons/Universe_Dressing_48px.svg +0 -1
  1272. package/assets/moz-icons/Universe_Dressing_64px.svg +0 -1
  1273. package/assets/moz-icons/Universe_Electricity_24px.svg +0 -1
  1274. package/assets/moz-icons/Universe_Electricity_32px.svg +0 -1
  1275. package/assets/moz-icons/Universe_Electricity_48px.svg +0 -1
  1276. package/assets/moz-icons/Universe_Electricity_64px.svg +0 -1
  1277. package/assets/moz-icons/Universe_Enki_24px.svg +0 -1
  1278. package/assets/moz-icons/Universe_Enki_32px.svg +0 -1
  1279. package/assets/moz-icons/Universe_Enki_48px.svg +0 -1
  1280. package/assets/moz-icons/Universe_Enki_64px.svg +0 -1
  1281. package/assets/moz-icons/Universe_Floor_24px.svg +0 -1
  1282. package/assets/moz-icons/Universe_Floor_32px.svg +0 -1
  1283. package/assets/moz-icons/Universe_Floor_48px.svg +0 -1
  1284. package/assets/moz-icons/Universe_Floor_64px.svg +0 -1
  1285. package/assets/moz-icons/Universe_Garage_24px.svg +0 -1
  1286. package/assets/moz-icons/Universe_Garage_32px.svg +0 -1
  1287. package/assets/moz-icons/Universe_Garage_48px.svg +0 -1
  1288. package/assets/moz-icons/Universe_Garage_64px.svg +0 -1
  1289. package/assets/moz-icons/Universe_Garden1_24px.svg +0 -1
  1290. package/assets/moz-icons/Universe_Garden1_32px.svg +0 -1
  1291. package/assets/moz-icons/Universe_Garden1_48px.svg +0 -1
  1292. package/assets/moz-icons/Universe_Garden1_64px.svg +0 -1
  1293. package/assets/moz-icons/Universe_Garden2_24px.svg +0 -1
  1294. package/assets/moz-icons/Universe_Garden2_32px.svg +0 -1
  1295. package/assets/moz-icons/Universe_Garden2_48px.svg +0 -1
  1296. package/assets/moz-icons/Universe_Garden2_64px.svg +0 -1
  1297. package/assets/moz-icons/Universe_Glass_24px.svg +0 -1
  1298. package/assets/moz-icons/Universe_Glass_32px.svg +0 -1
  1299. package/assets/moz-icons/Universe_Glass_48px.svg +0 -1
  1300. package/assets/moz-icons/Universe_Glass_64px.svg +0 -1
  1301. package/assets/moz-icons/Universe_HardwareStore_24px.svg +0 -1
  1302. package/assets/moz-icons/Universe_HardwareStore_32px.svg +0 -1
  1303. package/assets/moz-icons/Universe_HardwareStore_48px.svg +0 -1
  1304. package/assets/moz-icons/Universe_HardwareStore_64px.svg +0 -1
  1305. package/assets/moz-icons/Universe_Heater_24px.svg +0 -1
  1306. package/assets/moz-icons/Universe_Heater_32px.svg +0 -1
  1307. package/assets/moz-icons/Universe_Heater_48px.svg +0 -1
  1308. package/assets/moz-icons/Universe_Heater_64px.svg +0 -1
  1309. package/assets/moz-icons/Universe_Kids_24px.svg +0 -1
  1310. package/assets/moz-icons/Universe_Kids_32px.svg +0 -1
  1311. package/assets/moz-icons/Universe_Kids_48px.svg +0 -1
  1312. package/assets/moz-icons/Universe_Kids_64px.svg +0 -1
  1313. package/assets/moz-icons/Universe_Kitchen2_24px.svg +0 -1
  1314. package/assets/moz-icons/Universe_Kitchen2_32px.svg +0 -1
  1315. package/assets/moz-icons/Universe_Kitchen2_48px.svg +0 -1
  1316. package/assets/moz-icons/Universe_Kitchen2_64px.svg +0 -1
  1317. package/assets/moz-icons/Universe_Kitchen_24px.svg +0 -1
  1318. package/assets/moz-icons/Universe_Kitchen_32px.svg +0 -1
  1319. package/assets/moz-icons/Universe_Kitchen_48px.svg +0 -1
  1320. package/assets/moz-icons/Universe_Kitchen_64px.svg +0 -1
  1321. package/assets/moz-icons/Universe_Leak_24px.svg +0 -1
  1322. package/assets/moz-icons/Universe_Leak_32px.svg +0 -1
  1323. package/assets/moz-icons/Universe_Leak_48px.svg +0 -1
  1324. package/assets/moz-icons/Universe_Leak_64px.svg +0 -1
  1325. package/assets/moz-icons/Universe_Lighting_24px.svg +0 -1
  1326. package/assets/moz-icons/Universe_Lighting_32px.svg +0 -1
  1327. package/assets/moz-icons/Universe_Lighting_48px.svg +0 -1
  1328. package/assets/moz-icons/Universe_Lighting_64px.svg +0 -1
  1329. package/assets/moz-icons/Universe_Living_24px.svg +0 -1
  1330. package/assets/moz-icons/Universe_Living_32px.svg +0 -1
  1331. package/assets/moz-icons/Universe_Living_48px.svg +0 -1
  1332. package/assets/moz-icons/Universe_Living_64px.svg +0 -1
  1333. package/assets/moz-icons/Universe_MakeIt_24px.svg +0 -1
  1334. package/assets/moz-icons/Universe_MakeIt_32px.svg +0 -1
  1335. package/assets/moz-icons/Universe_MakeIt_48px.svg +0 -1
  1336. package/assets/moz-icons/Universe_MakeIt_64px.svg +0 -1
  1337. package/assets/moz-icons/Universe_Paint_24px.svg +0 -1
  1338. package/assets/moz-icons/Universe_Paint_32px.svg +0 -1
  1339. package/assets/moz-icons/Universe_Paint_48px.svg +0 -1
  1340. package/assets/moz-icons/Universe_Paint_64px.svg +0 -1
  1341. package/assets/moz-icons/Universe_Pool_24px.svg +0 -1
  1342. package/assets/moz-icons/Universe_Pool_32px.svg +0 -1
  1343. package/assets/moz-icons/Universe_Pool_48px.svg +0 -1
  1344. package/assets/moz-icons/Universe_Pool_64px.svg +0 -1
  1345. package/assets/moz-icons/Universe_Security_24px.svg +0 -1
  1346. package/assets/moz-icons/Universe_Security_32px.svg +0 -1
  1347. package/assets/moz-icons/Universe_Security_48px.svg +0 -1
  1348. package/assets/moz-icons/Universe_Security_64px.svg +0 -1
  1349. package/assets/moz-icons/Universe_Terrace_24px.svg +0 -1
  1350. package/assets/moz-icons/Universe_Terrace_32px.svg +0 -1
  1351. package/assets/moz-icons/Universe_Terrace_48px.svg +0 -1
  1352. package/assets/moz-icons/Universe_Terrace_64px.svg +0 -1
  1353. package/assets/moz-icons/Universe_Tool_24px.svg +0 -1
  1354. package/assets/moz-icons/Universe_Tool_32px.svg +0 -1
  1355. package/assets/moz-icons/Universe_Tool_48px.svg +0 -1
  1356. package/assets/moz-icons/Universe_Tool_64px.svg +0 -1
  1357. package/assets/moz-icons/Universe_WoodSaw_24px.svg +0 -1
  1358. package/assets/moz-icons/Universe_WoodSaw_32px.svg +0 -1
  1359. package/assets/moz-icons/Universe_WoodSaw_48px.svg +0 -1
  1360. package/assets/moz-icons/Universe_WoodSaw_64px.svg +0 -1
  1361. package/assets/moz-icons/User_Account_Customer--Collaborator_24px.svg +0 -1
  1362. package/assets/moz-icons/User_Account_Customer--Collaborator_32px.svg +0 -1
  1363. package/assets/moz-icons/User_Account_Customer--Collaborator_48px.svg +0 -1
  1364. package/assets/moz-icons/User_Account_Customer--Collaborator_64px.svg +0 -1
  1365. package/assets/moz-icons/User_Account_Customer--Passion_24px.svg +0 -1
  1366. package/assets/moz-icons/User_Account_Customer--Passion_32px.svg +0 -1
  1367. package/assets/moz-icons/User_Account_Customer--Passion_48px.svg +0 -1
  1368. package/assets/moz-icons/User_Account_Customer--Passion_64px.svg +0 -1
  1369. package/assets/moz-icons/User_Account_Customer--Pro_24px.svg +0 -1
  1370. package/assets/moz-icons/User_Account_Customer--Pro_32px.svg +0 -1
  1371. package/assets/moz-icons/User_Account_Customer--Pro_48px.svg +0 -1
  1372. package/assets/moz-icons/User_Account_Customer--Pro_64px.svg +0 -1
  1373. package/assets/moz-icons/User_Account_Profile--Man_24px.svg +0 -1
  1374. package/assets/moz-icons/User_Account_Profile--Man_32px.svg +0 -1
  1375. package/assets/moz-icons/User_Account_Profile--Man_48px.svg +0 -1
  1376. package/assets/moz-icons/User_Account_Profile--Man_64px.svg +0 -1
  1377. package/assets/moz-icons/User_Account_Profile--View_24px.svg +0 -1
  1378. package/assets/moz-icons/User_Account_Profile--View_32px.svg +0 -1
  1379. package/assets/moz-icons/User_Account_Profile--View_48px.svg +0 -1
  1380. package/assets/moz-icons/User_Account_Profile--View_64px.svg +0 -1
  1381. package/assets/moz-icons/User_Account_Profile--Woman_24px.svg +0 -1
  1382. package/assets/moz-icons/User_Account_Profile--Woman_32px.svg +0 -1
  1383. package/assets/moz-icons/User_Account_Profile--Woman_48px.svg +0 -1
  1384. package/assets/moz-icons/User_Account_Profile--Woman_64px.svg +0 -1
  1385. package/assets/moz-icons/User_Card_Funding_24px.svg +0 -1
  1386. package/assets/moz-icons/User_Card_Funding_32px.svg +0 -1
  1387. package/assets/moz-icons/User_Card_Funding_48px.svg +0 -1
  1388. package/assets/moz-icons/User_Card_Funding_64px.svg +0 -1
  1389. package/assets/moz-icons/User_Card_Gift_24px.svg +0 -1
  1390. package/assets/moz-icons/User_Card_Gift_32px.svg +0 -1
  1391. package/assets/moz-icons/User_Card_Gift_48px.svg +0 -1
  1392. package/assets/moz-icons/User_Card_Gift_64px.svg +0 -1
  1393. package/assets/moz-icons/User_Card_IDCard_24px.svg +0 -1
  1394. package/assets/moz-icons/User_Card_IDCard_32px.svg +0 -1
  1395. package/assets/moz-icons/User_Card_IDCard_48px.svg +0 -1
  1396. package/assets/moz-icons/User_Card_IDCard_64px.svg +0 -1
  1397. package/assets/moz-icons/User_Card_LoyaltyCard_24px.svg +0 -1
  1398. package/assets/moz-icons/User_Card_LoyaltyCard_32px.svg +0 -1
  1399. package/assets/moz-icons/User_Card_LoyaltyCard_48px.svg +0 -1
  1400. package/assets/moz-icons/User_Card_LoyaltyCard_64px.svg +0 -1
  1401. package/assets/moz-icons/User_Contact_Mail_24px.svg +0 -1
  1402. package/assets/moz-icons/User_Contact_Mail_32px.svg +0 -1
  1403. package/assets/moz-icons/User_Contact_Mail_48px.svg +0 -1
  1404. package/assets/moz-icons/User_Contact_Mail_64px.svg +0 -1
  1405. package/assets/moz-icons/User_Contact_Phone_24px.svg +0 -1
  1406. package/assets/moz-icons/User_Contact_Phone_32px.svg +0 -1
  1407. package/assets/moz-icons/User_Contact_Phone_48px.svg +0 -1
  1408. package/assets/moz-icons/User_Contact_Phone_64px.svg +0 -1
  1409. package/assets/moz-icons/User_Contact_Website_24px.svg +0 -1
  1410. package/assets/moz-icons/User_Contact_Website_32px.svg +0 -1
  1411. package/assets/moz-icons/User_Contact_Website_48px.svg +0 -1
  1412. package/assets/moz-icons/User_Contact_Website_64px.svg +0 -1
  1413. package/assets/moz-icons/User_Situation_Owner_24px.svg +0 -1
  1414. package/assets/moz-icons/User_Situation_Owner_32px.svg +0 -1
  1415. package/assets/moz-icons/User_Situation_Owner_48px.svg +0 -1
  1416. package/assets/moz-icons/User_Situation_Owner_64px.svg +0 -1
  1417. package/assets/moz-icons/User_Situation_Tenant_24px.svg +0 -1
  1418. package/assets/moz-icons/User_Situation_Tenant_32px.svg +0 -1
  1419. package/assets/moz-icons/User_Situation_Tenant_48px.svg +0 -1
  1420. package/assets/moz-icons/User_Situation_Tenant_64px.svg +0 -1
  1421. package/assets/moz-icons/Various_Administration_24px.svg +0 -1
  1422. package/assets/moz-icons/Various_Administration_32px.svg +0 -1
  1423. package/assets/moz-icons/Various_Administration_48px.svg +0 -1
  1424. package/assets/moz-icons/Various_Administration_64px.svg +0 -1
  1425. package/assets/moz-icons/Various_Apartment_24px.svg +0 -1
  1426. package/assets/moz-icons/Various_Apartment_32px.svg +0 -1
  1427. package/assets/moz-icons/Various_Apartment_48px.svg +0 -1
  1428. package/assets/moz-icons/Various_Apartment_64px.svg +0 -1
  1429. package/assets/moz-icons/Various_Balcony_24px.svg +0 -1
  1430. package/assets/moz-icons/Various_Balcony_32px.svg +0 -1
  1431. package/assets/moz-icons/Various_Balcony_48px.svg +0 -1
  1432. package/assets/moz-icons/Various_Balcony_64px.svg +0 -1
  1433. package/assets/moz-icons/Various_Blower_24px.svg +0 -1
  1434. package/assets/moz-icons/Various_Blower_32px.svg +0 -1
  1435. package/assets/moz-icons/Various_Blower_48px.svg +0 -1
  1436. package/assets/moz-icons/Various_Blower_64px.svg +0 -1
  1437. package/assets/moz-icons/Various_Door_24px.svg +0 -1
  1438. package/assets/moz-icons/Various_Door_32px.svg +0 -1
  1439. package/assets/moz-icons/Various_Door_48px.svg +0 -1
  1440. package/assets/moz-icons/Various_Door_64px.svg +0 -1
  1441. package/assets/moz-icons/Various_EcoSaving_24px.svg +0 -1
  1442. package/assets/moz-icons/Various_EcoSaving_32px.svg +0 -1
  1443. package/assets/moz-icons/Various_EcoSaving_48px.svg +0 -1
  1444. package/assets/moz-icons/Various_EcoSaving_64px.svg +0 -1
  1445. package/assets/moz-icons/Various_Heat_24px.svg +0 -1
  1446. package/assets/moz-icons/Various_Heat_32px.svg +0 -1
  1447. package/assets/moz-icons/Various_Heat_48px.svg +0 -1
  1448. package/assets/moz-icons/Various_Heat_64px.svg +0 -1
  1449. package/assets/moz-icons/Various_House_24px.svg +0 -1
  1450. package/assets/moz-icons/Various_House_32px.svg +0 -1
  1451. package/assets/moz-icons/Various_House_48px.svg +0 -1
  1452. package/assets/moz-icons/Various_House_64px.svg +0 -1
  1453. package/assets/moz-icons/Various_IncreaseValue_24px.svg +0 -1
  1454. package/assets/moz-icons/Various_IncreaseValue_32px.svg +0 -1
  1455. package/assets/moz-icons/Various_IncreaseValue_48px.svg +0 -1
  1456. package/assets/moz-icons/Various_IncreaseValue_64px.svg +0 -1
  1457. package/assets/moz-icons/Various_Insulation_24px.svg +0 -1
  1458. package/assets/moz-icons/Various_Insulation_32px.svg +0 -1
  1459. package/assets/moz-icons/Various_Insulation_48px.svg +0 -1
  1460. package/assets/moz-icons/Various_Insulation_64px.svg +0 -1
  1461. package/assets/moz-icons/Various_LessonDIY_24px.svg +0 -1
  1462. package/assets/moz-icons/Various_LessonDIY_32px.svg +0 -1
  1463. package/assets/moz-icons/Various_LessonDIY_48px.svg +0 -1
  1464. package/assets/moz-icons/Various_LessonDIY_64px.svg +0 -1
  1465. package/assets/moz-icons/Various_Level_24px.svg +0 -1
  1466. package/assets/moz-icons/Various_Level_32px.svg +0 -1
  1467. package/assets/moz-icons/Various_Level_48px.svg +0 -1
  1468. package/assets/moz-icons/Various_Level_64px.svg +0 -1
  1469. package/assets/moz-icons/Various_PaintCan_24px.svg +0 -1
  1470. package/assets/moz-icons/Various_PaintCan_32px.svg +0 -1
  1471. package/assets/moz-icons/Various_PaintCan_48px.svg +0 -1
  1472. package/assets/moz-icons/Various_PaintCan_64px.svg +0 -1
  1473. package/assets/moz-icons/Various_PartnerCompany_24px.svg +0 -1
  1474. package/assets/moz-icons/Various_PartnerCompany_32px.svg +0 -1
  1475. package/assets/moz-icons/Various_PartnerCompany_48px.svg +0 -1
  1476. package/assets/moz-icons/Various_PartnerCompany_64px.svg +0 -1
  1477. package/assets/moz-icons/Various_PartnerWorker_24px.svg +0 -1
  1478. package/assets/moz-icons/Various_PartnerWorker_32px.svg +0 -1
  1479. package/assets/moz-icons/Various_PartnerWorker_48px.svg +0 -1
  1480. package/assets/moz-icons/Various_PartnerWorker_64px.svg +0 -1
  1481. package/assets/moz-icons/Various_Pipe_24px.svg +0 -1
  1482. package/assets/moz-icons/Various_Pipe_32px.svg +0 -1
  1483. package/assets/moz-icons/Various_Pipe_48px.svg +0 -1
  1484. package/assets/moz-icons/Various_Pipe_64px.svg +0 -1
  1485. package/assets/moz-icons/Various_Premium_24px.svg +0 -1
  1486. package/assets/moz-icons/Various_Premium_32px.svg +0 -1
  1487. package/assets/moz-icons/Various_Premium_48px.svg +0 -1
  1488. package/assets/moz-icons/Various_Premium_64px.svg +0 -1
  1489. package/assets/moz-icons/Various_Shutter_24px.svg +0 -1
  1490. package/assets/moz-icons/Various_Shutter_32px.svg +0 -1
  1491. package/assets/moz-icons/Various_Shutter_48px.svg +0 -1
  1492. package/assets/moz-icons/Various_Shutter_64px.svg +0 -1
  1493. package/assets/moz-icons/Various_Survey_24px.svg +0 -1
  1494. package/assets/moz-icons/Various_Survey_32px.svg +0 -1
  1495. package/assets/moz-icons/Various_Survey_48px.svg +0 -1
  1496. package/assets/moz-icons/Various_Survey_64px.svg +0 -1
  1497. package/assets/moz-icons/Various_Temperature_24px.svg +0 -1
  1498. package/assets/moz-icons/Various_Temperature_32px.svg +0 -1
  1499. package/assets/moz-icons/Various_Temperature_48px.svg +0 -1
  1500. package/assets/moz-icons/Various_Temperature_64px.svg +0 -1
  1501. package/assets/moz-icons/Various_ThermalControl_24px.svg +0 -1
  1502. package/assets/moz-icons/Various_ThermalControl_32px.svg +0 -1
  1503. package/assets/moz-icons/Various_ThermalControl_48px.svg +0 -1
  1504. package/assets/moz-icons/Various_ThermalControl_64px.svg +0 -1
  1505. package/assets/moz-icons/Various_ToolBox_24px.svg +0 -1
  1506. package/assets/moz-icons/Various_ToolBox_32px.svg +0 -1
  1507. package/assets/moz-icons/Various_ToolBox_48px.svg +0 -1
  1508. package/assets/moz-icons/Various_ToolBox_64px.svg +0 -1
  1509. package/common/global-events/global-events.module.d.ts +0 -6
  1510. package/common/global-events/global-events.service.d.ts +0 -11
  1511. package/common/utils/boolean-property.d.ts +0 -1
  1512. package/common/utils/generate-id.d.ts +0 -1
  1513. package/common/utils/get-random-number.d.ts +0 -1
  1514. package/common/utils/overwrite-style.d.ts +0 -2
  1515. package/components/badge/badge.component.d.ts +0 -8
  1516. package/components/badge/badge.d.ts +0 -3
  1517. package/components/badge/badge.module.d.ts +0 -8
  1518. package/components/button/button.component.d.ts +0 -16
  1519. package/components/button/button.d.ts +0 -7
  1520. package/components/button/button.module.d.ts +0 -8
  1521. package/components/checkbox/checkbox.component.d.ts +0 -21
  1522. package/components/checkbox/checkbox.module.d.ts +0 -8
  1523. package/components/dialog/classes/dialog-config.d.ts +0 -9
  1524. package/components/dialog/classes/dialog-injector.d.ts +0 -10
  1525. package/components/dialog/classes/dialog-ref.d.ts +0 -25
  1526. package/components/dialog/dialog-animation.d.ts +0 -1
  1527. package/components/dialog/dialog.component.d.ts +0 -23
  1528. package/components/dialog/dialog.module.d.ts +0 -8
  1529. package/components/dialog/dialog.service.d.ts +0 -20
  1530. package/components/dialog/interfaces/dialog-config.d.ts +0 -7
  1531. package/components/dialog/interfaces/dialog-di-params.d.ts +0 -6
  1532. package/components/dialog/interfaces/dialog-ref.d.ts +0 -18
  1533. package/components/dialog/tokens/dialog-config.token.d.ts +0 -2
  1534. package/components/dialog/tokens/dialog-data.token.d.ts +0 -2
  1535. package/components/dialog/tokens/dialog-ref.token.d.ts +0 -2
  1536. package/components/field/directives/input-icon.directive.d.ts +0 -7
  1537. package/components/field/field-error.component.d.ts +0 -5
  1538. package/components/field/field.component.d.ts +0 -16
  1539. package/components/field/field.module.d.ts +0 -10
  1540. package/components/icon/icon-size.d.ts +0 -6
  1541. package/components/icon/icon.component.d.ts +0 -15
  1542. package/components/icon/icon.module.d.ts +0 -8
  1543. package/components/icon/icon.service.d.ts +0 -13
  1544. package/components/layer/classes/layer-injector.d.ts +0 -10
  1545. package/components/layer/classes/layer-ref.d.ts +0 -21
  1546. package/components/layer/interfaces/layer-config.d.ts +0 -4
  1547. package/components/layer/interfaces/layer-di-params.d.ts +0 -6
  1548. package/components/layer/interfaces/layer-ref.d.ts +0 -15
  1549. package/components/layer/layer-animation.d.ts +0 -1
  1550. package/components/layer/layer.component.d.ts +0 -19
  1551. package/components/layer/layer.module.d.ts +0 -9
  1552. package/components/layer/layer.service.d.ts +0 -19
  1553. package/components/layer/tokens/layer-config.token.d.ts +0 -2
  1554. package/components/layer/tokens/layer-data.token.d.ts +0 -2
  1555. package/components/layer/tokens/layer-ref.token.d.ts +0 -2
  1556. package/components/loader/loader.component.d.ts +0 -25
  1557. package/components/loader/loader.d.ts +0 -16
  1558. package/components/loader/loader.module.d.ts +0 -8
  1559. package/components/loader/loader.service.d.ts +0 -18
  1560. package/components/notification/notification-animation.d.ts +0 -1
  1561. package/components/notification/notification-container.component.d.ts +0 -12
  1562. package/components/notification/notification-footer.d.ts +0 -5
  1563. package/components/notification/notification-message.d.ts +0 -5
  1564. package/components/notification/notification-title.d.ts +0 -5
  1565. package/components/notification/notification.component.d.ts +0 -9
  1566. package/components/notification/notification.d.ts +0 -15
  1567. package/components/notification/notification.module.d.ts +0 -15
  1568. package/components/notification/notification.service.d.ts +0 -16
  1569. package/components/pagination/pagination.component.d.ts +0 -46
  1570. package/components/pagination/pagination.d.ts +0 -7
  1571. package/components/pagination/pagination.module.d.ts +0 -13
  1572. package/components/progress-bar/progress-bar.component.d.ts +0 -15
  1573. package/components/progress-bar/progress-bar.module.d.ts +0 -8
  1574. package/components/select/select-size.d.ts +0 -5
  1575. package/components/select/select.component.d.ts +0 -8
  1576. package/components/select/select.module.d.ts +0 -8
  1577. package/components/stepper/step.component.d.ts +0 -20
  1578. package/components/stepper/stepper.component.d.ts +0 -20
  1579. package/components/stepper/stepper.module.d.ts +0 -10
  1580. package/components/tabs/tab-selectors.d.ts +0 -2
  1581. package/components/tabs/tab.component.d.ts +0 -16
  1582. package/components/tabs/tabs.component.d.ts +0 -36
  1583. package/components/tabs/tabs.module.d.ts +0 -9
  1584. package/components/tag/tag.component.d.ts +0 -23
  1585. package/components/tag/tag.module.d.ts +0 -9
  1586. package/components/text-area/text-area.component.d.ts +0 -12
  1587. package/components/text-area/text-area.module.d.ts +0 -7
  1588. package/components/text-input/text-input.component.d.ts +0 -21
  1589. package/components/text-input/text-input.module.d.ts +0 -10
  1590. package/components/toggle/toggle.component.d.ts +0 -22
  1591. package/components/toggle/toggle.module.d.ts +0 -8
  1592. package/components/tooltip/tooltip.component.d.ts +0 -11
  1593. package/components/tooltip/tooltip.module.d.ts +0 -8
  1594. package/esm2020/common/global-events/global-events.module.mjs +0 -15
  1595. package/esm2020/common/global-events/global-events.service.mjs +0 -30
  1596. package/esm2020/common/global-events/public-api.mjs +0 -3
  1597. package/esm2020/common/index.mjs +0 -3
  1598. package/esm2020/common/utils/boolean-property.mjs +0 -4
  1599. package/esm2020/common/utils/generate-id.mjs +0 -7
  1600. package/esm2020/common/utils/get-random-number.mjs +0 -6
  1601. package/esm2020/common/utils/index.mjs +0 -5
  1602. package/esm2020/common/utils/overwrite-style.mjs +0 -5
  1603. package/esm2020/common/utils/public-api.mjs +0 -2
  1604. package/esm2020/components/badge/badge.component.mjs +0 -30
  1605. package/esm2020/components/badge/badge.mjs +0 -2
  1606. package/esm2020/components/badge/badge.module.mjs +0 -18
  1607. package/esm2020/components/badge/index.mjs +0 -3
  1608. package/esm2020/components/button/button.component.mjs +0 -53
  1609. package/esm2020/components/button/button.mjs +0 -2
  1610. package/esm2020/components/button/button.module.mjs +0 -18
  1611. package/esm2020/components/button/index.mjs +0 -3
  1612. package/esm2020/components/checkbox/checkbox.component.mjs +0 -58
  1613. package/esm2020/components/checkbox/checkbox.module.mjs +0 -21
  1614. package/esm2020/components/checkbox/public-api.mjs +0 -3
  1615. package/esm2020/components/dialog/classes/dialog-config.mjs +0 -9
  1616. package/esm2020/components/dialog/classes/dialog-injector.mjs +0 -22
  1617. package/esm2020/components/dialog/classes/dialog-ref.mjs +0 -49
  1618. package/esm2020/components/dialog/classes/index.mjs +0 -4
  1619. package/esm2020/components/dialog/dialog-animation.mjs +0 -18
  1620. package/esm2020/components/dialog/dialog.component.mjs +0 -57
  1621. package/esm2020/components/dialog/dialog.module.mjs +0 -20
  1622. package/esm2020/components/dialog/dialog.service.mjs +0 -67
  1623. package/esm2020/components/dialog/interfaces/dialog-config.mjs +0 -2
  1624. package/esm2020/components/dialog/interfaces/dialog-di-params.mjs +0 -2
  1625. package/esm2020/components/dialog/interfaces/dialog-ref.mjs +0 -2
  1626. package/esm2020/components/dialog/interfaces/index.mjs +0 -4
  1627. package/esm2020/components/dialog/public-api.mjs +0 -6
  1628. package/esm2020/components/dialog/tokens/dialog-config.token.mjs +0 -3
  1629. package/esm2020/components/dialog/tokens/dialog-data.token.mjs +0 -3
  1630. package/esm2020/components/dialog/tokens/dialog-ref.token.mjs +0 -3
  1631. package/esm2020/components/dialog/tokens/index.mjs +0 -4
  1632. package/esm2020/components/field/directives/input-icon.directive.mjs +0 -15
  1633. package/esm2020/components/field/field-error.component.mjs +0 -13
  1634. package/esm2020/components/field/field.component.mjs +0 -40
  1635. package/esm2020/components/field/field.module.mjs +0 -20
  1636. package/esm2020/components/field/public-api.mjs +0 -5
  1637. package/esm2020/components/icon/icon-size.mjs +0 -8
  1638. package/esm2020/components/icon/icon.component.mjs +0 -49
  1639. package/esm2020/components/icon/icon.module.mjs +0 -18
  1640. package/esm2020/components/icon/icon.service.mjs +0 -42
  1641. package/esm2020/components/icon/public-api.mjs +0 -4
  1642. package/esm2020/components/layer/classes/layer-injector.mjs +0 -22
  1643. package/esm2020/components/layer/classes/layer-ref.mjs +0 -38
  1644. package/esm2020/components/layer/interfaces/index.mjs +0 -4
  1645. package/esm2020/components/layer/interfaces/layer-config.mjs +0 -2
  1646. package/esm2020/components/layer/interfaces/layer-di-params.mjs +0 -2
  1647. package/esm2020/components/layer/interfaces/layer-ref.mjs +0 -2
  1648. package/esm2020/components/layer/layer-animation.mjs +0 -18
  1649. package/esm2020/components/layer/layer.component.mjs +0 -40
  1650. package/esm2020/components/layer/layer.module.mjs +0 -21
  1651. package/esm2020/components/layer/layer.service.mjs +0 -56
  1652. package/esm2020/components/layer/public-api.mjs +0 -6
  1653. package/esm2020/components/layer/tokens/index.mjs +0 -4
  1654. package/esm2020/components/layer/tokens/layer-config.token.mjs +0 -3
  1655. package/esm2020/components/layer/tokens/layer-data.token.mjs +0 -3
  1656. package/esm2020/components/layer/tokens/layer-ref.token.mjs +0 -3
  1657. package/esm2020/components/loader/loader.component.mjs +0 -47
  1658. package/esm2020/components/loader/loader.mjs +0 -11
  1659. package/esm2020/components/loader/loader.module.mjs +0 -20
  1660. package/esm2020/components/loader/loader.service.mjs +0 -53
  1661. package/esm2020/components/loader/public-api.mjs +0 -4
  1662. package/esm2020/components/notification/notification-animation.mjs +0 -21
  1663. package/esm2020/components/notification/notification-container.component.mjs +0 -38
  1664. package/esm2020/components/notification/notification-footer.mjs +0 -11
  1665. package/esm2020/components/notification/notification-message.mjs +0 -11
  1666. package/esm2020/components/notification/notification-title.mjs +0 -11
  1667. package/esm2020/components/notification/notification.component.mjs +0 -29
  1668. package/esm2020/components/notification/notification.mjs +0 -8
  1669. package/esm2020/components/notification/notification.module.mjs +0 -66
  1670. package/esm2020/components/notification/notification.service.mjs +0 -40
  1671. package/esm2020/components/notification/public-api.mjs +0 -9
  1672. package/esm2020/components/pagination/pagination.component.mjs +0 -133
  1673. package/esm2020/components/pagination/pagination.mjs +0 -4
  1674. package/esm2020/components/pagination/pagination.module.mjs +0 -23
  1675. package/esm2020/components/pagination/public-api.mjs +0 -3
  1676. package/esm2020/components/progress-bar/progress-bar-size.mjs +0 -2
  1677. package/esm2020/components/progress-bar/progress-bar-theme.mjs +0 -2
  1678. package/esm2020/components/progress-bar/progress-bar.component.mjs +0 -38
  1679. package/esm2020/components/progress-bar/progress-bar.module.mjs +0 -18
  1680. package/esm2020/components/progress-bar/public-api.mjs +0 -3
  1681. package/esm2020/components/public-api.mjs +0 -20
  1682. package/esm2020/components/select/public-api.mjs +0 -3
  1683. package/esm2020/components/select/select-size.mjs +0 -6
  1684. package/esm2020/components/select/select.component.mjs +0 -25
  1685. package/esm2020/components/select/select.module.mjs +0 -18
  1686. package/esm2020/components/stepper/public-api.mjs +0 -4
  1687. package/esm2020/components/stepper/step-state.mjs +0 -2
  1688. package/esm2020/components/stepper/step.component.mjs +0 -51
  1689. package/esm2020/components/stepper/stepper.component.mjs +0 -79
  1690. package/esm2020/components/stepper/stepper.module.mjs +0 -20
  1691. package/esm2020/components/tabs/public-api.mjs +0 -4
  1692. package/esm2020/components/tabs/tab-selectors.mjs +0 -3
  1693. package/esm2020/components/tabs/tab.component.mjs +0 -53
  1694. package/esm2020/components/tabs/tabs.component.mjs +0 -126
  1695. package/esm2020/components/tabs/tabs.module.mjs +0 -19
  1696. package/esm2020/components/tag/public-api.mjs +0 -3
  1697. package/esm2020/components/tag/tag-type.mjs +0 -2
  1698. package/esm2020/components/tag/tag.component.mjs +0 -61
  1699. package/esm2020/components/tag/tag.module.mjs +0 -19
  1700. package/esm2020/components/text-area/public-api.mjs +0 -3
  1701. package/esm2020/components/text-area/text-area.component.mjs +0 -43
  1702. package/esm2020/components/text-area/text-area.module.mjs +0 -16
  1703. package/esm2020/components/text-input/public-api.mjs +0 -3
  1704. package/esm2020/components/text-input/text-input.component.mjs +0 -64
  1705. package/esm2020/components/text-input/text-input.mjs +0 -2
  1706. package/esm2020/components/text-input/text-input.module.mjs +0 -20
  1707. package/esm2020/components/toggle/public-api.mjs +0 -3
  1708. package/esm2020/components/toggle/toggle-size.mjs +0 -2
  1709. package/esm2020/components/toggle/toggle.component.mjs +0 -59
  1710. package/esm2020/components/toggle/toggle.module.mjs +0 -18
  1711. package/esm2020/components/tooltip/public-api.mjs +0 -3
  1712. package/esm2020/components/tooltip/tooltip-position.mjs +0 -2
  1713. package/esm2020/components/tooltip/tooltip.component.mjs +0 -32
  1714. package/esm2020/components/tooltip/tooltip.module.mjs +0 -18
  1715. package/esm2020/mozaic-ds-angular.mjs +0 -5
  1716. package/esm2020/public-api.mjs +0 -3
  1717. package/fesm2015/mozaic-ds-angular.mjs +0 -2052
  1718. package/fesm2015/mozaic-ds-angular.mjs.map +0 -1
  1719. package/fesm2020/mozaic-ds-angular.mjs +0 -2025
  1720. package/fesm2020/mozaic-ds-angular.mjs.map +0 -1
  1721. package/index.d.ts +0 -5
  1722. /package/{assets → projects/kit/assets}/special-icons/checkbox-checked-disabled.svg +0 -0
  1723. /package/{assets → projects/kit/assets}/special-icons/checkbox-checked.svg +0 -0
  1724. /package/{assets → projects/kit/assets}/special-icons/checkbox-indeterminate-disabled.svg +0 -0
  1725. /package/{assets → projects/kit/assets}/special-icons/checkbox-indeterminate.svg +0 -0
  1726. /package/{assets → projects/kit/assets}/special-icons/invalid-cross.svg +0 -0
  1727. /package/{assets → projects/kit/assets}/special-icons/layer-cross.svg +0 -0
  1728. /package/{assets → projects/kit/assets}/special-icons/notification-danger-m.svg +0 -0
  1729. /package/{assets → projects/kit/assets}/special-icons/notification-danger-s.svg +0 -0
  1730. /package/{assets → projects/kit/assets}/special-icons/notification-information-m.svg +0 -0
  1731. /package/{assets → projects/kit/assets}/special-icons/notification-information-s.svg +0 -0
  1732. /package/{assets → projects/kit/assets}/special-icons/notification-success-m.svg +0 -0
  1733. /package/{assets → projects/kit/assets}/special-icons/notification-success-s.svg +0 -0
  1734. /package/{assets → projects/kit/assets}/special-icons/notification-warning-m.svg +0 -0
  1735. /package/{assets → projects/kit/assets}/special-icons/notification-warning-s.svg +0 -0
  1736. /package/{assets → projects/kit/assets}/special-icons/remove-tag.svg +0 -0
  1737. /package/{assets → projects/kit/assets}/special-icons/toggle-checked-disabled.svg +0 -0
  1738. /package/{assets → projects/kit/assets}/special-icons/toggle-checked.svg +0 -0
  1739. /package/{assets → projects/kit/assets}/special-icons/toggle-cross-disabled.svg +0 -0
  1740. /package/{assets → projects/kit/assets}/special-icons/toggle-cross.svg +0 -0
  1741. /package/{assets → projects/kit/assets}/special-icons/tooltip-triangle.svg +0 -0
  1742. /package/{assets → projects/kit/assets}/special-icons/valid-check-mark.svg +0 -0
  1743. /package/{common/global-events/public-api.d.ts → projects/kit/common/global-events/public-api.ts} +0 -0
  1744. /package/{common/index.d.ts → projects/kit/common/index.ts} +0 -0
  1745. /package/{common/utils/index.d.ts → projects/kit/common/utils/index.ts} +0 -0
  1746. /package/{common/utils/public-api.d.ts → projects/kit/common/utils/public-api.ts} +0 -0
  1747. /package/{components/badge/index.d.ts → projects/kit/components/badge/index.ts} +0 -0
  1748. /package/{components/button/index.d.ts → projects/kit/components/button/index.ts} +0 -0
  1749. /package/{components/checkbox/public-api.d.ts → projects/kit/components/checkbox/public-api.ts} +0 -0
  1750. /package/{components/dialog/classes/index.d.ts → projects/kit/components/dialog/classes/index.ts} +0 -0
  1751. /package/{components/dialog/interfaces/index.d.ts → projects/kit/components/dialog/interfaces/index.ts} +0 -0
  1752. /package/{components/dialog/public-api.d.ts → projects/kit/components/dialog/public-api.ts} +0 -0
  1753. /package/{components/dialog/tokens/index.d.ts → projects/kit/components/dialog/tokens/index.ts} +0 -0
  1754. /package/{components/field/public-api.d.ts → projects/kit/components/field/public-api.ts} +0 -0
  1755. /package/{components/icon/public-api.d.ts → projects/kit/components/icon/public-api.ts} +0 -0
  1756. /package/{components/layer/interfaces/index.d.ts → projects/kit/components/layer/interfaces/index.ts} +0 -0
  1757. /package/{components/layer/public-api.d.ts → projects/kit/components/layer/public-api.ts} +0 -0
  1758. /package/{components/layer/tokens/index.d.ts → projects/kit/components/layer/tokens/index.ts} +0 -0
  1759. /package/{components/loader/public-api.d.ts → projects/kit/components/loader/public-api.ts} +0 -0
  1760. /package/{components/notification/public-api.d.ts → projects/kit/components/notification/public-api.ts} +0 -0
  1761. /package/{components/pagination/public-api.d.ts → projects/kit/components/pagination/public-api.ts} +0 -0
  1762. /package/{components/progress-bar/progress-bar-size.d.ts → projects/kit/components/progress-bar/progress-bar-size.ts} +0 -0
  1763. /package/{components/progress-bar/progress-bar-theme.d.ts → projects/kit/components/progress-bar/progress-bar-theme.ts} +0 -0
  1764. /package/{components/progress-bar/public-api.d.ts → projects/kit/components/progress-bar/public-api.ts} +0 -0
  1765. /package/{components/public-api.d.ts → projects/kit/components/public-api.ts} +0 -0
  1766. /package/{components/select/public-api.d.ts → projects/kit/components/select/public-api.ts} +0 -0
  1767. /package/{components/stepper/public-api.d.ts → projects/kit/components/stepper/public-api.ts} +0 -0
  1768. /package/{components/stepper/step-state.d.ts → projects/kit/components/stepper/step-state.ts} +0 -0
  1769. /package/{components/tabs/public-api.d.ts → projects/kit/components/tabs/public-api.ts} +0 -0
  1770. /package/{components/tag/public-api.d.ts → projects/kit/components/tag/public-api.ts} +0 -0
  1771. /package/{components/tag/tag-type.d.ts → projects/kit/components/tag/tag-type.ts} +0 -0
  1772. /package/{components/text-area/public-api.d.ts → projects/kit/components/text-area/public-api.ts} +0 -0
  1773. /package/{components/text-input/public-api.d.ts → projects/kit/components/text-input/index.ts} +0 -0
  1774. /package/{components/text-input/text-input.d.ts → projects/kit/components/text-input/text-input.ts} +0 -0
  1775. /package/{components/toggle/public-api.d.ts → projects/kit/components/toggle/public-api.ts} +0 -0
  1776. /package/{components/toggle/toggle-size.d.ts → projects/kit/components/toggle/toggle-size.ts} +0 -0
  1777. /package/{components/tooltip/public-api.d.ts → projects/kit/components/tooltip/public-api.ts} +0 -0
  1778. /package/{components/tooltip/tooltip-position.d.ts → projects/kit/components/tooltip/tooltip-position.ts} +0 -0
  1779. /package/{public-api.d.ts → projects/kit/public-api.ts} +0 -0
@@ -0,0 +1,1617 @@
1
+ $border-s: 1 !default;
2
+ $border-m: 2 !default;
3
+ $border-l: 3 !default;
4
+ $color-badge-info-background: #daeff7 !default;
5
+ $color-badge-info-border: #0b96cc !default;
6
+ $color-badge-info-text: #005c91 !default;
7
+ $color-badge-success-background: #ebf5de !default;
8
+ $color-badge-success-border: #46a610 !default;
9
+ $color-badge-success-text: #006902 !default;
10
+ $color-badge-warning-background: #fdf1e8 !default;
11
+ $color-badge-warning-border: #ea7315 !default;
12
+ $color-badge-warning-text: #8c3500 !default;
13
+ $color-badge-danger-background: #fdeaea !default;
14
+ $color-badge-danger-border: #ea302d !default;
15
+ $color-badge-danger-text: #8c0003 !default;
16
+ $color-badge-neutral-background: #e6e6e6 !default;
17
+ $color-badge-neutral-border: #808080 !default;
18
+ $color-badge-neutral-text: #4d4d4d !default;
19
+ $color-primary-01-100: #d9f0f3 !default;
20
+ $color-primary-01-200: #91d5db !default;
21
+ $color-primary-01-300: #48bac4 !default;
22
+ $color-primary-01-400: #009eac !default;
23
+ $color-primary-01-500: #00919f !default;
24
+ $color-primary-01-600: #007f8c !default;
25
+ $color-primary-01-700: #006974 !default;
26
+ $color-primary-01-800: #004e57 !default;
27
+ $color-primary-01-900: #002e33 !default;
28
+ $color-primary-02-100: #eeeff1 !default;
29
+ $color-primary-02-200: #cfd2d8 !default;
30
+ $color-primary-02-300: #b3b7c1 !default;
31
+ $color-primary-02-400: #8f94a3 !default;
32
+ $color-primary-02-500: #6a7081 !default;
33
+ $color-primary-02-600: #494f60 !default;
34
+ $color-primary-02-700: #343b4c !default;
35
+ $color-primary-02-800: #242938 !default;
36
+ $color-primary-02-900: #171b26 !default;
37
+ $color-grey-100: #e6e6e6 !default;
38
+ $color-grey-200: #cccccc !default;
39
+ $color-grey-300: #b3b3b3 !default;
40
+ $color-grey-400: #999999 !default;
41
+ $color-grey-500: #808080 !default;
42
+ $color-grey-600: #666666 !default;
43
+ $color-grey-700: #4d4d4d !default;
44
+ $color-grey-800: #333333 !default;
45
+ $color-grey-900: #191919 !default;
46
+ $color-grey-999: #000000 !default;
47
+ $color-grey-000: #ffffff !default;
48
+ $color-secondary-blue-100: #eaedef !default;
49
+ $color-secondary-blue-200: #cdd4d8 !default;
50
+ $color-secondary-blue-300: #b0bbc0 !default;
51
+ $color-secondary-blue-400: #92a2a9 !default;
52
+ $color-secondary-blue-500: #758992 !default;
53
+ $color-secondary-blue-600: #5b737d !default;
54
+ $color-secondary-blue-700: #405d68 !default;
55
+ $color-secondary-blue-800: #264653 !default;
56
+ $color-secondary-blue-900: #082435 !default;
57
+ $color-secondary-green-100: #d9f0f3 !default;
58
+ $color-secondary-green-200: #91d5db !default;
59
+ $color-secondary-green-300: #48bac4 !default;
60
+ $color-secondary-green-400: #009eac !default;
61
+ $color-secondary-green-500: #00919f !default;
62
+ $color-secondary-green-600: #007f8c !default;
63
+ $color-secondary-green-700: #006974 !default;
64
+ $color-secondary-green-800: #004e57 !default;
65
+ $color-secondary-green-900: #002e33 !default;
66
+ $color-secondary-purple-100: #e7e7f0 !default;
67
+ $color-secondary-purple-200: #c5c5dc !default;
68
+ $color-secondary-purple-300: #a4a3c7 !default;
69
+ $color-secondary-purple-400: #8281b2 !default;
70
+ $color-secondary-purple-500: #605f9d !default;
71
+ $color-secondary-purple-600: #4b4a8c !default;
72
+ $color-secondary-purple-700: #393879 !default;
73
+ $color-secondary-purple-800: #282863 !default;
74
+ $color-secondary-purple-900: #1a1a4b !default;
75
+ $color-secondary-red-100: #fdeaea !default;
76
+ $color-secondary-red-200: #f8bcbb !default;
77
+ $color-secondary-red-300: #f38d8c !default;
78
+ $color-secondary-red-400: #ef5f5c !default;
79
+ $color-secondary-red-500: #ea302d !default;
80
+ $color-secondary-red-600: #c61112 !default;
81
+ $color-secondary-red-700: #8c0003 !default;
82
+ $color-secondary-red-800: #530000 !default;
83
+ $color-secondary-red-900: #2d0000 !default;
84
+ $color-secondary-orange-100: #fdf1e8 !default;
85
+ $color-secondary-orange-200: #f8d2b3 !default;
86
+ $color-secondary-orange-300: #f4b27e !default;
87
+ $color-secondary-orange-400: #ef934a !default;
88
+ $color-secondary-orange-500: #ea7315 !default;
89
+ $color-secondary-orange-600: #c65200 !default;
90
+ $color-secondary-orange-700: #8c3500 !default;
91
+ $color-secondary-orange-800: #531b00 !default;
92
+ $color-secondary-orange-900: #360e00 !default;
93
+ $color-secondary-yellow-100: #fff8e2 !default;
94
+ $color-secondary-yellow-200: #ffebaf !default;
95
+ $color-secondary-yellow-300: #fee07d !default;
96
+ $color-secondary-yellow-400: #fcd64c !default;
97
+ $color-secondary-yellow-500: #f8cc1c !default;
98
+ $color-secondary-yellow-600: #c9a21b !default;
99
+ $color-secondary-yellow-700: #9c7b18 !default;
100
+ $color-secondary-yellow-800: #705613 !default;
101
+ $color-secondary-yellow-900: #46350d !default;
102
+ $color-danger-100: #fdeaea !default;
103
+ $color-danger-200: #f8bcbb !default;
104
+ $color-danger-300: #f38d8c !default;
105
+ $color-danger-400: #ef5f5c !default;
106
+ $color-danger-500: #ea302d !default;
107
+ $color-danger-600: #c61112 !default;
108
+ $color-danger-700: #8c0003 !default;
109
+ $color-danger-800: #530000 !default;
110
+ $color-danger-900: #2d0000 !default;
111
+ $color-info-100: #daeff7 !default;
112
+ $color-info-200: #a7d9ed !default;
113
+ $color-info-300: #73c3e2 !default;
114
+ $color-info-400: #3facd7 !default;
115
+ $color-info-500: #0b96cc !default;
116
+ $color-info-600: #007bb4 !default;
117
+ $color-info-700: #005c91 !default;
118
+ $color-info-800: #003a5c !default;
119
+ $color-info-900: #002a41 !default;
120
+ $color-warning-100: #fdf1e8 !default;
121
+ $color-warning-200: #f8d2b3 !default;
122
+ $color-warning-300: #f4b27e !default;
123
+ $color-warning-400: #ef934a !default;
124
+ $color-warning-500: #ea7315 !default;
125
+ $color-warning-600: #c65200 !default;
126
+ $color-warning-700: #8c3500 !default;
127
+ $color-warning-800: #531b00 !default;
128
+ $color-warning-900: #360e00 !default;
129
+ $color-success-100: #ebf5de !default;
130
+ $color-success-200: #c5e39e !default;
131
+ $color-success-300: #9ed05f !default;
132
+ $color-success-400: #78be20 !default;
133
+ $color-success-500: #46a610 !default;
134
+ $color-success-600: #188803 !default;
135
+ $color-success-700: #006902 !default;
136
+ $color-success-800: #035010 !default;
137
+ $color-success-900: #023618 !default;
138
+ $color-breadcrumb-arrow: #333333 !default;
139
+ $color-breadcrumb-arrow-invert: #ffffff !default;
140
+ $color-button-solid-background: #007f8c !default;
141
+ $color-button-solid-font: #ffffff !default;
142
+ $color-button-solid-focus-border: #006974 !default;
143
+ $color-button-solid-disabled-background: #cccccc !default;
144
+ $color-button-solid-disabled-font: #666666 !default;
145
+ $color-button-solid-active-background: #006974 !default;
146
+ $color-button-solid-hover-background: #006974 !default;
147
+ $color-button-solid-hover-font: #ffffff !default;
148
+ $color-button-solid-primary-02-background: #6a7081 !default;
149
+ $color-button-solid-primary-02-font: #ffffff !default;
150
+ $color-button-solid-primary-02-focus-border: #171b26 !default;
151
+ $color-button-solid-primary-02-disabled-background: #cccccc !default;
152
+ $color-button-solid-primary-02-disabled-font: #666666 !default;
153
+ $color-button-solid-primary-02-active-background: #171b26 !default;
154
+ $color-button-solid-primary-02-hover-background: #242938 !default;
155
+ $color-button-solid-primary-02-hover-font: #ffffff !default;
156
+ $color-button-solid-neutral-background: #333333 !default;
157
+ $color-button-solid-neutral-font: #ffffff !default;
158
+ $color-button-solid-neutral-focus-border: #191919 !default;
159
+ $color-button-solid-neutral-disabled-background: #cccccc !default;
160
+ $color-button-solid-neutral-disabled-font: #666666 !default;
161
+ $color-button-solid-neutral-active-background: #333333 !default;
162
+ $color-button-solid-neutral-hover-background: #191919 !default;
163
+ $color-button-solid-neutral-hover-font: #ffffff !default;
164
+ $color-button-solid-danger-background: #c61112 !default;
165
+ $color-button-solid-danger-font: #ffffff !default;
166
+ $color-button-solid-danger-focus-border: #8c0003 !default;
167
+ $color-button-solid-danger-disabled-background: #cccccc !default;
168
+ $color-button-solid-danger-disabled-font: #666666 !default;
169
+ $color-button-solid-danger-active-background: #8c0003 !default;
170
+ $color-button-solid-danger-hover-background: #8c0003 !default;
171
+ $color-button-solid-danger-hover-font: #ffffff !default;
172
+ $color-button-bordered-background: #ffffff !default;
173
+ $color-button-bordered-border: #007f8c !default;
174
+ $color-button-bordered-font: #007f8c !default;
175
+ $color-button-bordered-focus-border: #006974 !default;
176
+ $color-button-bordered-disabled-background: #cccccc !default;
177
+ $color-button-bordered-disabled-font: #666666 !default;
178
+ $color-button-bordered-active-background: #91d5db !default;
179
+ $color-button-bordered-active-font: #004e57 !default;
180
+ $color-button-bordered-hover-background: #d9f0f3 !default;
181
+ $color-button-bordered-hover-font: #006974 !default;
182
+ $color-button-bordered-primary-02-background: #ffffff !default;
183
+ $color-button-bordered-primary-02-border: #6a7081 !default;
184
+ $color-button-bordered-primary-02-font: #6a7081 !default;
185
+ $color-button-bordered-primary-02-focus-border: #171b26 !default;
186
+ $color-button-bordered-primary-02-disabled-background: #cccccc !default;
187
+ $color-button-bordered-primary-02-disabled-font: #666666 !default;
188
+ $color-button-bordered-primary-02-active-background: #cfd2d8 !default;
189
+ $color-button-bordered-primary-02-hover-background: #eeeff1 !default;
190
+ $color-button-bordered-neutral-background: #ffffff !default;
191
+ $color-button-bordered-neutral-border: #333333 !default;
192
+ $color-button-bordered-neutral-font: #333333 !default;
193
+ $color-button-bordered-neutral-focus-border: #191919 !default;
194
+ $color-button-bordered-neutral-disabled-background: #cccccc !default;
195
+ $color-button-bordered-neutral-disabled-font: #666666 !default;
196
+ $color-button-bordered-neutral-active-background: #cccccc !default;
197
+ $color-button-bordered-neutral-hover-background: #e6e6e6 !default;
198
+ $color-button-bordered-danger-background: #ffffff !default;
199
+ $color-button-bordered-danger-border: #c61112 !default;
200
+ $color-button-bordered-danger-font: #c61112 !default;
201
+ $color-button-bordered-danger-focus-border: #8c0003 !default;
202
+ $color-button-bordered-danger-disabled-background: #cccccc !default;
203
+ $color-button-bordered-danger-disabled-font: #666666 !default;
204
+ $color-button-bordered-danger-active-background: #f8bcbb !default;
205
+ $color-button-bordered-danger-active-font: #530000 !default;
206
+ $color-button-bordered-danger-hover-background: #fdeaea !default;
207
+ $color-button-bordered-danger-hover-font: #8c0003 !default;
208
+ $color-card-bordered-background: #ffffff !default;
209
+ $color-card-bordered-border: #808080 !default;
210
+ $color-datatable-filters-border: #b0bbc0 !default;
211
+ $color-datatable-container-background: #e7e7f0 !default;
212
+ $color-datatable-thead-font: #393879 !default;
213
+ $color-datatable-sort-arrow-default: #cdd4d8 !default;
214
+ $color-datatable-sort-arrow-active: #605f9d !default;
215
+ $color-datatable-cell-font: #191919 !default;
216
+ $color-datatable-cell-background-hover: #eaedef !default;
217
+ $color-datatable-cell-background-selected: #d9f0f3 !default;
218
+ $color-datatable-subtable-background: #e7e7f0 !default;
219
+ $color-datatable-subtable-border: #a4a3c7 !default;
220
+ $color-datatable-subtable-font: #1a1a4b !default;
221
+ $color-datatable-icon: #007f8c !default;
222
+ $color-datatable-empty-background: #e7e7f0 !default;
223
+ $color-datatable-empty-color: #4b4a8c !default;
224
+ $color-dialog-background: #ffffff !default;
225
+ $color-dialog-icon: #666666 !default;
226
+ $color-dialog-close: #808080 !default;
227
+ $color-dialog-footer-shadow: #191919 !default;
228
+ $color-divider-lightest: #ffffff !default;
229
+ $color-divider-light: #b3b3b3 !default;
230
+ $color-divider-default: #666666 !default;
231
+ $color-divider-dark: #000000 !default;
232
+ $color-fields-error: #c61112 !default;
233
+ $color-fields-label: #333333 !default;
234
+ $color-fields-requirement: #666666 !default;
235
+ $color-fields-help: #666666 !default;
236
+ $color-fileuploader-font: #000000 !default;
237
+ $color-fileuploader-files-list: #e6e6e6 !default;
238
+ $color-fileuploader-files-delete: #cccccc !default;
239
+ $color-fileuploader-valid: #00919f !default;
240
+ $color-fileuploader-alert: #c61112 !default;
241
+ $color-flag-solid-background: #007f8c !default;
242
+ $color-flag-solid-border: #007f8c !default;
243
+ $color-flag-solid-text: #ffffff !default;
244
+ $color-flag-solid-primary-02-background: #4b4a8c !default;
245
+ $color-flag-solid-primary-02-border: #4b4a8c !default;
246
+ $color-flag-solid-primary-02-text: #ffffff !default;
247
+ $color-flag-solid-dark-background: #000000 !default;
248
+ $color-flag-solid-dark-border: #000000 !default;
249
+ $color-flag-solid-dark-text: #ffffff !default;
250
+ $color-flag-solid-light-background: #ffffff !default;
251
+ $color-flag-solid-light-border: #ffffff !default;
252
+ $color-flag-solid-light-text: #000000 !default;
253
+ $color-flag-solid-danger-background: #c61112 !default;
254
+ $color-flag-solid-danger-border: #c61112 !default;
255
+ $color-flag-solid-danger-text: #ffffff !default;
256
+ $color-flag-bordered-background: #ffffff !default;
257
+ $color-flag-bordered-border: #007f8c !default;
258
+ $color-flag-bordered-text: #007f8c !default;
259
+ $color-flag-bordered-primary-02-background: #ffffff !default;
260
+ $color-flag-bordered-primary-02-border: #4b4a8c !default;
261
+ $color-flag-bordered-primary-02-text: #4b4a8c !default;
262
+ $color-flag-bordered-dark-background: #ffffff !default;
263
+ $color-flag-bordered-dark-border: #000000 !default;
264
+ $color-flag-bordered-dark-text: #000000 !default;
265
+ $color-flag-bordered-light-background: #000000 !default;
266
+ $color-flag-bordered-light-border: #ffffff !default;
267
+ $color-flag-bordered-light-text: #ffffff !default;
268
+ $color-flag-bordered-danger-background: #ffffff !default;
269
+ $color-flag-bordered-danger-border: #c61112 !default;
270
+ $color-flag-bordered-danger-text: #c61112 !default;
271
+ $color-focus-gap: #ffffff !default;
272
+ $color-focus-border: #758992 !default;
273
+ $color-font-primary-01: #007f8c !default;
274
+ $color-font-primary-02: #6a7081 !default;
275
+ $color-font-darkest: #000000 !default;
276
+ $color-font-darker: #191919 !default;
277
+ $color-font-dark: #333333 !default;
278
+ $color-font-light: #666666 !default;
279
+ $color-font-lightest: #ffffff !default;
280
+ $color-font-info: #007bb4 !default;
281
+ $color-font-success: #188803 !default;
282
+ $color-font-warning: #c65200 !default;
283
+ $color-font-danger: #c61112 !default;
284
+ $color-heading-underline-default: #00919f !default;
285
+ $color-heading-underline-lightest: #91d5db !default;
286
+ $color-hero-cover-background: #191919 !default;
287
+ $color-input-text: #191919 !default;
288
+ $color-input-border: #666666 !default;
289
+ $color-input-placeholder: #666666 !default;
290
+ $color-input-background: #ffffff !default;
291
+ $color-input-disabled-background: #e6e6e6 !default;
292
+ $color-input-disabled-border: #e6e6e6 !default;
293
+ $color-input-disabled-icon: #999999 !default;
294
+ $color-input-disabled-label: #808080 !default;
295
+ $color-input-hover-border: #191919 !default;
296
+ $color-input-focus-border: #758992 !default;
297
+ $color-input-valid-border: #46a610 !default;
298
+ $color-input-valid-hover-border: #035010 !default;
299
+ $color-input-invalid-border: #c61112 !default;
300
+ $color-input-invalid-hover-border: #530000 !default;
301
+ $color-input-checked-border: #00919f !default;
302
+ $color-input-checked-background: #00919f !default;
303
+ $color-input-checked-icon: #ffffff !default;
304
+ $color-input-checked-hover-border: #004e57 !default;
305
+ $color-link-dark-base: #000000 !default;
306
+ $color-link-dark-visited: #333333 !default;
307
+ $color-link-dark-active: #333333 !default;
308
+ $color-link-dark-disabled: #e6e6e6 !default;
309
+ $color-link-dark-hover: #666666 !default;
310
+ $color-link-light-base: #ffffff !default;
311
+ $color-link-light-visited: #cccccc !default;
312
+ $color-link-light-active: #cccccc !default;
313
+ $color-link-light-disabled: #e6e6e6 !default;
314
+ $color-link-light-hover: #999999 !default;
315
+ $color-link-primary-base: #007f8c !default;
316
+ $color-link-primary-visited: #006974 !default;
317
+ $color-link-primary-active: #006974 !default;
318
+ $color-link-primary-disabled: #e6e6e6 !default;
319
+ $color-link-primary-hover: #004e57 !default;
320
+ $color-link-primary-02-base: #494f60 !default;
321
+ $color-link-primary-02-visited: #343b4c !default;
322
+ $color-link-primary-02-active: #343b4c !default;
323
+ $color-link-primary-02-disabled: #e6e6e6 !default;
324
+ $color-link-primary-02-hover: #171b26 !default;
325
+ $color-link-danger-base: #c61112 !default;
326
+ $color-link-danger-visited: #8c0003 !default;
327
+ $color-link-danger-active: #8c0003 !default;
328
+ $color-link-danger-disabled: #e6e6e6 !default;
329
+ $color-link-danger-hover: #530000 !default;
330
+ $color-listbox-background: #ffffff !default;
331
+ $color-listbox-border: #666666 !default;
332
+ $color-listbox-tile-border: #b3b3b3 !default;
333
+ $color-listbox-tile-shadow: #191919 !default;
334
+ $color-listbox-tile-hover-background: #e6e6e6 !default;
335
+ $color-listbox-disabled-background: #cccccc !default;
336
+ $color-notification-font: #000000 !default;
337
+ $color-notification-information-background: #daeff7 !default;
338
+ $color-notification-information-border: #0b96cc !default;
339
+ $color-notification-information-icon: #007bb4 !default;
340
+ $color-notification-success-background: #ebf5de !default;
341
+ $color-notification-success-border: #46a610 !default;
342
+ $color-notification-success-icon: #188803 !default;
343
+ $color-notification-warning-background: #fdf1e8 !default;
344
+ $color-notification-warning-border: #ea7315 !default;
345
+ $color-notification-warning-icon: #c65200 !default;
346
+ $color-notification-danger-background: #fdeaea !default;
347
+ $color-notification-danger-border: #ea302d !default;
348
+ $color-notification-danger-icon: #c61112 !default;
349
+ $color-option-button-label-shadow: #b3b3b3 !default;
350
+ $color-option-button-hover-label-shadow: #333333 !default;
351
+ $color-option-button-checked-label-border: #00919f !default;
352
+ $color-option-button-checked-label-shadow: #d9f0f3 !default;
353
+ $color-option-button-disabled-label-background: #cccccc !default;
354
+ $color-option-card-label-shadow: #b3b3b3 !default;
355
+ $color-option-card-hover-label-shadow: #333333 !default;
356
+ $color-option-card-checked-label-border: #00919f !default;
357
+ $color-option-card-checked-label-shadow: #d9f0f3 !default;
358
+ $color-option-card-disabled-content: #cccccc !default;
359
+ $color-option-card-disabled-label: #666666 !default;
360
+ $color-overlay-background: #191919 !default;
361
+ $color-overlay-loader-background: #082435 !default;
362
+ $color-password-input-button-hover-background: #e6e6e6 !default;
363
+ $color-phone-number-button-border: #666666 !default;
364
+ $color-phone-number-list-background: #ffffff !default;
365
+ $color-phone-number-item-border: #b3b3b3 !default;
366
+ $color-phone-number-item-focus-background: #e6e6e6 !default;
367
+ $color-progress-background: #cdd4d8 !default;
368
+ $color-progress-indicator: #007f8c !default;
369
+ $color-progress-percentage-default: #191919 !default;
370
+ $color-progress-percentage-half: #ffffff !default;
371
+ $color-sidebar-background: #082435 !default;
372
+ $color-sidebar-feature-background: #082435 !default;
373
+ $color-sidebar-feature-hover-background: #405d68 !default;
374
+ $color-sidebar-feature-selected-background: #5b737d !default;
375
+ $color-sidebar-feature-disabled-background: #92a2a9 !default;
376
+ $color-sidebar-user-background: #264653 !default;
377
+ $color-sidebar-divider-background: #5b737d !default;
378
+ $color-sidebar-icon: #ffffff !default;
379
+ $color-sidebar-text-background: #e6e6e6 !default;
380
+ $color-sidebar-text-color: #ffffff !default;
381
+ $color-sidebar-scroll-background: #082435 !default;
382
+ $color-sidebar-scroll-color: #009eac !default;
383
+ $color-star-empty: #ffffff !default;
384
+ $color-star-focus: #758992 !default;
385
+ $color-star-full: #ea7315 !default;
386
+ $color-star-hover: #f4b27e !default;
387
+ $color-stepper-item-background: #999999 !default;
388
+ $color-stepper-item-current-background: #00919f !default;
389
+ $color-stepper-link-hover-text: #00919f !default;
390
+ $color-stepper-indicator-background: #ffffff !default;
391
+ $color-stepper-indicator-border: #999999 !default;
392
+ $color-stepper-indicator-current-background: #00919f !default;
393
+ $color-stepper-indicator-current-border: #00919f !default;
394
+ $color-stepper-icon: #00919f !default;
395
+ $color-stepper-title: #00919f !default;
396
+ $color-tabs-background: #ffffff !default;
397
+ $color-tabs-shadow: #000000 !default;
398
+ $color-tabs-default: #666666 !default;
399
+ $color-tabs-element-background: #eeedea !default;
400
+ $color-tabs-hover: #004e57 !default;
401
+ $color-tabs-disabled-background: #cccccc !default;
402
+ $color-tabs-active-background: #dddcd5 !default;
403
+ $color-tabs-active-text: #004e57 !default;
404
+ $color-tabs-selected-border: #007f8c !default;
405
+ $color-tabs-selected-text: #007f8c !default;
406
+ $color-tabs-active-disabled: #91d5db !default;
407
+ $color-tag-text-light-background: #ffffff !default;
408
+ $color-tag-text-light-border: #808080 !default;
409
+ $color-tag-text-light-text: #191919 !default;
410
+ $color-tag-text-dark-background: #191919 !default;
411
+ $color-tag-text-dark-border: #ffffff !default;
412
+ $color-tag-text-dark-text: #ffffff !default;
413
+ $color-tag-link-light-background: #ffffff !default;
414
+ $color-tag-link-light-border: #808080 !default;
415
+ $color-tag-link-light-text: #191919 !default;
416
+ $color-tag-link-light-hover-background: #e6e6e6 !default;
417
+ $color-tag-link-light-active-background: #cccccc !default;
418
+ $color-tag-link-dark-background: #191919 !default;
419
+ $color-tag-link-dark-border: #ffffff !default;
420
+ $color-tag-link-dark-text: #ffffff !default;
421
+ $color-tag-link-dark-hover-background: #333333 !default;
422
+ $color-tag-link-dark-active-background: #4d4d4d !default;
423
+ $color-tag-selectable-light-background: #ffffff !default;
424
+ $color-tag-selectable-light-border: #808080 !default;
425
+ $color-tag-selectable-light-text: #191919 !default;
426
+ $color-tag-selectable-light-hover-background: #48bac4 !default;
427
+ $color-tag-selectable-light-active-background: #004e57 !default;
428
+ $color-tag-selectable-light-active-border: #004e57 !default;
429
+ $color-tag-selectable-light-active-text: #ffffff !default;
430
+ $color-tag-selectable-light-disabled-background: #e6e6e6 !default;
431
+ $color-tag-selectable-light-disabled-text: #808080 !default;
432
+ $color-tag-selectable-light-selected-background: #007f8c !default;
433
+ $color-tag-selectable-light-selected-text: #ffffff !default;
434
+ $color-tag-selectable-light-selected-hover-background: #006974 !default;
435
+ $color-tag-selectable-dark-background: #191919 !default;
436
+ $color-tag-selectable-dark-border: #ffffff !default;
437
+ $color-tag-selectable-dark-text: #ffffff !default;
438
+ $color-tag-selectable-dark-hover-background: #006974 !default;
439
+ $color-tag-selectable-dark-active-background: #91d5db !default;
440
+ $color-tag-selectable-dark-active-border: #91d5db !default;
441
+ $color-tag-selectable-dark-active-text: #191919 !default;
442
+ $color-tag-selectable-dark-selected-background: #009eac !default;
443
+ $color-tag-selectable-dark-selected-border: #009eac !default;
444
+ $color-tag-selectable-dark-selected-text: #191919 !default;
445
+ $color-tag-selectable-dark-selected-hover-background: #48bac4 !default;
446
+ $color-tag-selectable-dark-disabled-background: #4d4d4d !default;
447
+ $color-tag-selectable-dark-disabled-text: #808080 !default;
448
+ $color-tag-removable-light-background: #333333 !default;
449
+ $color-tag-removable-light-text: #ffffff !default;
450
+ $color-tag-removable-light-icon: #cccccc !default;
451
+ $color-tag-removable-light-hover-background: #4d4d4d !default;
452
+ $color-tag-removable-light-active-background: #666666 !default;
453
+ $color-tag-removable-dark-background: #cccccc !default;
454
+ $color-tag-removable-dark-text: #191919 !default;
455
+ $color-tag-removable-dark-icon: #191919 !default;
456
+ $color-tag-removable-dark-hover-background: #b3b3b3 !default;
457
+ $color-tag-removable-dark-active-background: #999999 !default;
458
+ $color-toggle-label: #000000 !default;
459
+ $color-toggle-off-background: #666666 !default;
460
+ $color-toggle-off-circle: #ffffff !default;
461
+ $color-toggle-on-background: #00919f !default;
462
+ $color-toggle-on-circle: #ffffff !default;
463
+ $color-toggle-hover-circle: #e6e6e6 !default;
464
+ $color-toggle-disabled-background: #e6e6e6 !default;
465
+ $color-toggle-disabled-circle: #b3b3b3 !default;
466
+ $color-toggle-disabled-label: #808080 !default;
467
+ $color-toggle-disabled-checked-background: #91d5db !default;
468
+ $color-toggle-disabled-checked-circle: #ffffff !default;
469
+ $color-tooltip-background: #5b737d !default;
470
+ $color-tooltip-border: #ffffff !default;
471
+ $color-secondary-sandgrey-100: #eeedea !default;
472
+ $color-secondary-sandgrey-200: #dddcd5 !default;
473
+ $color-secondary-sandgrey-300: #c2c1ba !default;
474
+ $color-secondary-sandgrey-400: #a7a6a0 !default;
475
+ $color-secondary-sandgrey-500: #8c8b85 !default;
476
+ $color-secondary-sandgrey-600: #71706b !default;
477
+ $color-secondary-sandgrey-700: #555550 !default;
478
+ $color-secondary-sandgrey-800: #3a3936 !default;
479
+ $color-secondary-sandgrey-900: #1e1e1c !default;
480
+ $preset: adeo !default;
481
+ $radius-s: 2 !default;
482
+ $radius-m: 4 !default;
483
+ $radius-l: 6 !default;
484
+ $shadow-s-x: 0px !default;
485
+ $shadow-s-y: 1px !default;
486
+ $shadow-s-blur: 5px !default;
487
+ $shadow-s-spread: 0px !default;
488
+ $shadow-s-opacity: 0.2 !default;
489
+ $shadow-m-x: 0px !default;
490
+ $shadow-m-y: 2px !default;
491
+ $shadow-m-blur: 10px !default;
492
+ $shadow-m-spread: 0px !default;
493
+ $shadow-m-opacity: 0.2 !default;
494
+ $shadow-l-x: 0px !default;
495
+ $shadow-l-y: 4px !default;
496
+ $shadow-l-blur: 20px !default;
497
+ $shadow-l-spread: 0px !default;
498
+ $shadow-l-opacity: 0.2 !default;
499
+ $magic-unit: 1 !default;
500
+ $local-rem-value: 16 !default;
501
+ $size-font-10: 2.5625rem !default; // 41px
502
+ $size-font-11: 3.0625rem !default; // 49px
503
+ $size-font-12: 3.6875rem !default; // 59px
504
+ $size-font-01: 0.6815rem !default; // 11px
505
+ $size-font-02: 0.75rem !default; // 12px
506
+ $size-font-03: 0.8125rem !default; // 13px
507
+ $size-font-04: 0.875rem !default; // 14px
508
+ $size-font-05: 1rem !default; // 16px
509
+ $size-font-06: 1.125rem !default; // 18px
510
+ $size-font-07: 1.4375rem !default; // 23px
511
+ $size-font-08: 1.75rem !default; // 28px
512
+ $size-font-09: 2.125rem !default; // 34px
513
+ $size-line-10-xs: 2.5rem !default; // 40px
514
+ $size-line-10-s: 3rem !default; // 48px
515
+ $size-line-10-m: 3.5rem !default; // 56px
516
+ $size-line-10-l: 3.75rem !default; // 60px
517
+ $size-line-11-xs: 3rem !default; // 48px
518
+ $size-line-11-s: 3.5rem !default; // 56px
519
+ $size-line-11-m: 4.25rem !default; // 68px
520
+ $size-line-11-l: 4.5rem !default; // 72px
521
+ $size-line-12-xs: 3.75rem !default; // 60px
522
+ $size-line-12-s: 4.25rem !default; // 68px
523
+ $size-line-12-m: 5rem !default; // 80px
524
+ $size-line-12-l: 5.5rem !default; // 88px
525
+ $size-line-01-xs: 0.75rem !default; // 12px
526
+ $size-line-01-s: 0.75rem !default; // 12px
527
+ $size-line-01-m: 0.875rem !default; // 14px
528
+ $size-line-01-l: 1rem !default; // 16px
529
+ $size-line-02-xs: 0.75rem !default; // 12px
530
+ $size-line-02-s: 0.875rem !default; // 14px
531
+ $size-line-02-m: 1rem !default; // 16px
532
+ $size-line-02-l: 1.125rem !default; // 18px
533
+ $size-line-03-xs: 0.875rem !default; // 14px
534
+ $size-line-03-s: 1rem !default; // 16px
535
+ $size-line-03-m: 1.125rem !default; // 18px
536
+ $size-line-03-l: 1.25rem !default; // 20px
537
+ $size-line-04-xs: 0.875rem !default; // 14px
538
+ $size-line-04-s: 1rem !default; // 16px
539
+ $size-line-04-m: 1.125rem !default; // 18px
540
+ $size-line-04-l: 1.375rem !default; // 22px
541
+ $size-line-05-xs: 1rem !default; // 16px
542
+ $size-line-05-s: 1.125rem !default; // 18px
543
+ $size-line-05-m: 1.375rem !default; // 22px
544
+ $size-line-05-l: 1.5rem !default; // 24px
545
+ $size-line-06-xs: 1.125rem !default; // 18px
546
+ $size-line-06-s: 1.25rem !default; // 20px
547
+ $size-line-06-m: 1.5rem !default; // 24px
548
+ $size-line-06-l: 1.75rem !default; // 28px
549
+ $size-line-07-xs: 1.5rem !default; // 24px
550
+ $size-line-07-s: 1.75rem !default; // 28px
551
+ $size-line-07-m: 2rem !default; // 32px
552
+ $size-line-07-l: 2.25rem !default; // 36px
553
+ $size-line-08-xs: 1.75rem !default; // 28px
554
+ $size-line-08-s: 2rem !default; // 32px
555
+ $size-line-08-m: 2.25rem !default; // 36px
556
+ $size-line-08-l: 2.75rem !default; // 44px
557
+ $size-line-09-xs: 2.25rem !default; // 36px
558
+ $size-line-09-s: 2.5rem !default; // 40px
559
+ $size-line-09-m: 2.75rem !default; // 44px
560
+ $size-line-09-l: 3.25rem !default; // 52px
561
+ $size-gutter-screen-s: 1rem !default;
562
+ $size-gutter-screen-m: 2rem !default;
563
+ $screen-s: 0px !default;
564
+ $screen-s-medium: 320px !default;
565
+ $screen-s-large: 360px !default;
566
+ $screen-s-xlarge: 390px !default;
567
+ $screen-m: 680px !default;
568
+ $screen-m-medium: 769px !default;
569
+ $screen-l: 1024px !default;
570
+ $screen-l-medium: 1100px !default;
571
+ $screen-xl: 1280px !default;
572
+ $screen-xl-medium: 1440px !default;
573
+ $screen-xl-large: 1680px !default;
574
+ $screen-xxl: 1920px !default;
575
+
576
+ $tokens: (
577
+ 'border': (
578
+ 's': $border-s,
579
+ 'm': $border-m,
580
+ 'l': $border-l,
581
+ ),
582
+ 'color': (
583
+ 'badge': (
584
+ 'info': (
585
+ 'background': $color-badge-info-background,
586
+ 'border': $color-badge-info-border,
587
+ 'text': $color-badge-info-text,
588
+ ),
589
+ 'success': (
590
+ 'background': $color-badge-success-background,
591
+ 'border': $color-badge-success-border,
592
+ 'text': $color-badge-success-text,
593
+ ),
594
+ 'warning': (
595
+ 'background': $color-badge-warning-background,
596
+ 'border': $color-badge-warning-border,
597
+ 'text': $color-badge-warning-text,
598
+ ),
599
+ 'danger': (
600
+ 'background': $color-badge-danger-background,
601
+ 'border': $color-badge-danger-border,
602
+ 'text': $color-badge-danger-text,
603
+ ),
604
+ 'neutral': (
605
+ 'background': $color-badge-neutral-background,
606
+ 'border': $color-badge-neutral-border,
607
+ 'text': $color-badge-neutral-text,
608
+ ),
609
+ ),
610
+ 'primary-01': (
611
+ '100': $color-primary-01-100,
612
+ '200': $color-primary-01-200,
613
+ '300': $color-primary-01-300,
614
+ '400': $color-primary-01-400,
615
+ '500': $color-primary-01-500,
616
+ '600': $color-primary-01-600,
617
+ '700': $color-primary-01-700,
618
+ '800': $color-primary-01-800,
619
+ '900': $color-primary-01-900,
620
+ ),
621
+ 'primary-02': (
622
+ '100': $color-primary-02-100,
623
+ '200': $color-primary-02-200,
624
+ '300': $color-primary-02-300,
625
+ '400': $color-primary-02-400,
626
+ '500': $color-primary-02-500,
627
+ '600': $color-primary-02-600,
628
+ '700': $color-primary-02-700,
629
+ '800': $color-primary-02-800,
630
+ '900': $color-primary-02-900,
631
+ ),
632
+ 'grey': (
633
+ '100': $color-grey-100,
634
+ '200': $color-grey-200,
635
+ '300': $color-grey-300,
636
+ '400': $color-grey-400,
637
+ '500': $color-grey-500,
638
+ '600': $color-grey-600,
639
+ '700': $color-grey-700,
640
+ '800': $color-grey-800,
641
+ '900': $color-grey-900,
642
+ '999': $color-grey-999,
643
+ '000': $color-grey-000,
644
+ ),
645
+ 'secondary-blue': (
646
+ '100': $color-secondary-blue-100,
647
+ '200': $color-secondary-blue-200,
648
+ '300': $color-secondary-blue-300,
649
+ '400': $color-secondary-blue-400,
650
+ '500': $color-secondary-blue-500,
651
+ '600': $color-secondary-blue-600,
652
+ '700': $color-secondary-blue-700,
653
+ '800': $color-secondary-blue-800,
654
+ '900': $color-secondary-blue-900,
655
+ ),
656
+ 'secondary-green': (
657
+ '100': $color-secondary-green-100,
658
+ '200': $color-secondary-green-200,
659
+ '300': $color-secondary-green-300,
660
+ '400': $color-secondary-green-400,
661
+ '500': $color-secondary-green-500,
662
+ '600': $color-secondary-green-600,
663
+ '700': $color-secondary-green-700,
664
+ '800': $color-secondary-green-800,
665
+ '900': $color-secondary-green-900,
666
+ ),
667
+ 'secondary-purple': (
668
+ '100': $color-secondary-purple-100,
669
+ '200': $color-secondary-purple-200,
670
+ '300': $color-secondary-purple-300,
671
+ '400': $color-secondary-purple-400,
672
+ '500': $color-secondary-purple-500,
673
+ '600': $color-secondary-purple-600,
674
+ '700': $color-secondary-purple-700,
675
+ '800': $color-secondary-purple-800,
676
+ '900': $color-secondary-purple-900,
677
+ ),
678
+ 'secondary-red': (
679
+ '100': $color-secondary-red-100,
680
+ '200': $color-secondary-red-200,
681
+ '300': $color-secondary-red-300,
682
+ '400': $color-secondary-red-400,
683
+ '500': $color-secondary-red-500,
684
+ '600': $color-secondary-red-600,
685
+ '700': $color-secondary-red-700,
686
+ '800': $color-secondary-red-800,
687
+ '900': $color-secondary-red-900,
688
+ ),
689
+ 'secondary-orange': (
690
+ '100': $color-secondary-orange-100,
691
+ '200': $color-secondary-orange-200,
692
+ '300': $color-secondary-orange-300,
693
+ '400': $color-secondary-orange-400,
694
+ '500': $color-secondary-orange-500,
695
+ '600': $color-secondary-orange-600,
696
+ '700': $color-secondary-orange-700,
697
+ '800': $color-secondary-orange-800,
698
+ '900': $color-secondary-orange-900,
699
+ ),
700
+ 'secondary-yellow': (
701
+ '100': $color-secondary-yellow-100,
702
+ '200': $color-secondary-yellow-200,
703
+ '300': $color-secondary-yellow-300,
704
+ '400': $color-secondary-yellow-400,
705
+ '500': $color-secondary-yellow-500,
706
+ '600': $color-secondary-yellow-600,
707
+ '700': $color-secondary-yellow-700,
708
+ '800': $color-secondary-yellow-800,
709
+ '900': $color-secondary-yellow-900,
710
+ ),
711
+ 'danger': (
712
+ '100': $color-danger-100,
713
+ '200': $color-danger-200,
714
+ '300': $color-danger-300,
715
+ '400': $color-danger-400,
716
+ '500': $color-danger-500,
717
+ '600': $color-danger-600,
718
+ '700': $color-danger-700,
719
+ '800': $color-danger-800,
720
+ '900': $color-danger-900,
721
+ ),
722
+ 'info': (
723
+ '100': $color-info-100,
724
+ '200': $color-info-200,
725
+ '300': $color-info-300,
726
+ '400': $color-info-400,
727
+ '500': $color-info-500,
728
+ '600': $color-info-600,
729
+ '700': $color-info-700,
730
+ '800': $color-info-800,
731
+ '900': $color-info-900,
732
+ ),
733
+ 'warning': (
734
+ '100': $color-warning-100,
735
+ '200': $color-warning-200,
736
+ '300': $color-warning-300,
737
+ '400': $color-warning-400,
738
+ '500': $color-warning-500,
739
+ '600': $color-warning-600,
740
+ '700': $color-warning-700,
741
+ '800': $color-warning-800,
742
+ '900': $color-warning-900,
743
+ ),
744
+ 'success': (
745
+ '100': $color-success-100,
746
+ '200': $color-success-200,
747
+ '300': $color-success-300,
748
+ '400': $color-success-400,
749
+ '500': $color-success-500,
750
+ '600': $color-success-600,
751
+ '700': $color-success-700,
752
+ '800': $color-success-800,
753
+ '900': $color-success-900,
754
+ ),
755
+ 'breadcrumb': (
756
+ 'arrow': $color-breadcrumb-arrow,
757
+ 'arrow-invert': $color-breadcrumb-arrow-invert,
758
+ ),
759
+ 'button': (
760
+ 'solid': (
761
+ 'background': $color-button-solid-background,
762
+ 'font': $color-button-solid-font,
763
+ 'focus': (
764
+ 'border': $color-button-solid-focus-border,
765
+ ),
766
+ 'disabled': (
767
+ 'background': $color-button-solid-disabled-background,
768
+ 'font': $color-button-solid-disabled-font,
769
+ ),
770
+ 'active': (
771
+ 'background': $color-button-solid-active-background,
772
+ ),
773
+ 'hover': (
774
+ 'background': $color-button-solid-hover-background,
775
+ 'font': $color-button-solid-hover-font,
776
+ ),
777
+ ),
778
+ 'solid-primary-02': (
779
+ 'background': $color-button-solid-primary-02-background,
780
+ 'font': $color-button-solid-primary-02-font,
781
+ 'focus': (
782
+ 'border': $color-button-solid-primary-02-focus-border,
783
+ ),
784
+ 'disabled': (
785
+ 'background': $color-button-solid-primary-02-disabled-background,
786
+ 'font': $color-button-solid-primary-02-disabled-font,
787
+ ),
788
+ 'active': (
789
+ 'background': $color-button-solid-primary-02-active-background,
790
+ ),
791
+ 'hover': (
792
+ 'background': $color-button-solid-primary-02-hover-background,
793
+ 'font': $color-button-solid-primary-02-hover-font,
794
+ ),
795
+ ),
796
+ 'solid-neutral': (
797
+ 'background': $color-button-solid-neutral-background,
798
+ 'font': $color-button-solid-neutral-font,
799
+ 'focus': (
800
+ 'border': $color-button-solid-neutral-focus-border,
801
+ ),
802
+ 'disabled': (
803
+ 'background': $color-button-solid-neutral-disabled-background,
804
+ 'font': $color-button-solid-neutral-disabled-font,
805
+ ),
806
+ 'active': (
807
+ 'background': $color-button-solid-neutral-active-background,
808
+ ),
809
+ 'hover': (
810
+ 'background': $color-button-solid-neutral-hover-background,
811
+ 'font': $color-button-solid-neutral-hover-font,
812
+ ),
813
+ ),
814
+ 'solid-danger': (
815
+ 'background': $color-button-solid-danger-background,
816
+ 'font': $color-button-solid-danger-font,
817
+ 'focus': (
818
+ 'border': $color-button-solid-danger-focus-border,
819
+ ),
820
+ 'disabled': (
821
+ 'background': $color-button-solid-danger-disabled-background,
822
+ 'font': $color-button-solid-danger-disabled-font,
823
+ ),
824
+ 'active': (
825
+ 'background': $color-button-solid-danger-active-background,
826
+ ),
827
+ 'hover': (
828
+ 'background': $color-button-solid-danger-hover-background,
829
+ 'font': $color-button-solid-danger-hover-font,
830
+ ),
831
+ ),
832
+ 'bordered': (
833
+ 'background': $color-button-bordered-background,
834
+ 'border': $color-button-bordered-border,
835
+ 'font': $color-button-bordered-font,
836
+ 'focus': (
837
+ 'border': $color-button-bordered-focus-border,
838
+ ),
839
+ 'disabled': (
840
+ 'background': $color-button-bordered-disabled-background,
841
+ 'font': $color-button-bordered-disabled-font,
842
+ ),
843
+ 'active': (
844
+ 'background': $color-button-bordered-active-background,
845
+ 'font': $color-button-bordered-active-font,
846
+ ),
847
+ 'hover': (
848
+ 'background': $color-button-bordered-hover-background,
849
+ 'font': $color-button-bordered-hover-font,
850
+ ),
851
+ ),
852
+ 'bordered-primary-02': (
853
+ 'background': $color-button-bordered-primary-02-background,
854
+ 'border': $color-button-bordered-primary-02-border,
855
+ 'font': $color-button-bordered-primary-02-font,
856
+ 'focus': (
857
+ 'border': $color-button-bordered-primary-02-focus-border,
858
+ ),
859
+ 'disabled': (
860
+ 'background': $color-button-bordered-primary-02-disabled-background,
861
+ 'font': $color-button-bordered-primary-02-disabled-font,
862
+ ),
863
+ 'active': (
864
+ 'background': $color-button-bordered-primary-02-active-background,
865
+ ),
866
+ 'hover': (
867
+ 'background': $color-button-bordered-primary-02-hover-background,
868
+ ),
869
+ ),
870
+ 'bordered-neutral': (
871
+ 'background': $color-button-bordered-neutral-background,
872
+ 'border': $color-button-bordered-neutral-border,
873
+ 'font': $color-button-bordered-neutral-font,
874
+ 'focus': (
875
+ 'border': $color-button-bordered-neutral-focus-border,
876
+ ),
877
+ 'disabled': (
878
+ 'background': $color-button-bordered-neutral-disabled-background,
879
+ 'font': $color-button-bordered-neutral-disabled-font,
880
+ ),
881
+ 'active': (
882
+ 'background': $color-button-bordered-neutral-active-background,
883
+ ),
884
+ 'hover': (
885
+ 'background': $color-button-bordered-neutral-hover-background,
886
+ ),
887
+ ),
888
+ 'bordered-danger': (
889
+ 'background': $color-button-bordered-danger-background,
890
+ 'border': $color-button-bordered-danger-border,
891
+ 'font': $color-button-bordered-danger-font,
892
+ 'focus': (
893
+ 'border': $color-button-bordered-danger-focus-border,
894
+ ),
895
+ 'disabled': (
896
+ 'background': $color-button-bordered-danger-disabled-background,
897
+ 'font': $color-button-bordered-danger-disabled-font,
898
+ ),
899
+ 'active': (
900
+ 'background': $color-button-bordered-danger-active-background,
901
+ 'font': $color-button-bordered-danger-active-font,
902
+ ),
903
+ 'hover': (
904
+ 'background': $color-button-bordered-danger-hover-background,
905
+ 'font': $color-button-bordered-danger-hover-font,
906
+ ),
907
+ ),
908
+ ),
909
+ 'card': (
910
+ 'bordered': (
911
+ 'background': $color-card-bordered-background,
912
+ 'border': $color-card-bordered-border,
913
+ ),
914
+ ),
915
+ 'datatable': (
916
+ 'filters': (
917
+ 'border': $color-datatable-filters-border,
918
+ ),
919
+ 'container': (
920
+ 'background': $color-datatable-container-background,
921
+ ),
922
+ 'thead': (
923
+ 'font': $color-datatable-thead-font,
924
+ ),
925
+ 'sort-arrow': (
926
+ 'default': $color-datatable-sort-arrow-default,
927
+ 'active': $color-datatable-sort-arrow-active,
928
+ ),
929
+ 'cell': (
930
+ 'font': $color-datatable-cell-font,
931
+ 'background': (
932
+ 'hover': $color-datatable-cell-background-hover,
933
+ 'selected': $color-datatable-cell-background-selected,
934
+ ),
935
+ ),
936
+ 'subtable': (
937
+ 'background': $color-datatable-subtable-background,
938
+ 'border': $color-datatable-subtable-border,
939
+ 'font': $color-datatable-subtable-font,
940
+ ),
941
+ 'icon': $color-datatable-icon,
942
+ 'empty': (
943
+ 'background': $color-datatable-empty-background,
944
+ 'color': $color-datatable-empty-color,
945
+ ),
946
+ ),
947
+ 'dialog': (
948
+ 'background': $color-dialog-background,
949
+ 'icon': $color-dialog-icon,
950
+ 'close': $color-dialog-close,
951
+ 'footer': (
952
+ 'shadow': $color-dialog-footer-shadow,
953
+ ),
954
+ ),
955
+ 'divider': (
956
+ 'lightest': $color-divider-lightest,
957
+ 'light': $color-divider-light,
958
+ 'default': $color-divider-default,
959
+ 'dark': $color-divider-dark,
960
+ ),
961
+ 'fields': (
962
+ 'error': $color-fields-error,
963
+ 'label': $color-fields-label,
964
+ 'requirement': $color-fields-requirement,
965
+ 'help': $color-fields-help,
966
+ ),
967
+ 'fileuploader': (
968
+ 'font': $color-fileuploader-font,
969
+ 'files': (
970
+ 'list': $color-fileuploader-files-list,
971
+ 'delete': $color-fileuploader-files-delete,
972
+ ),
973
+ 'valid': $color-fileuploader-valid,
974
+ 'alert': $color-fileuploader-alert,
975
+ ),
976
+ 'flag': (
977
+ 'solid': (
978
+ 'background': $color-flag-solid-background,
979
+ 'border': $color-flag-solid-border,
980
+ 'text': $color-flag-solid-text,
981
+ ),
982
+ 'solid-primary-02': (
983
+ 'background': $color-flag-solid-primary-02-background,
984
+ 'border': $color-flag-solid-primary-02-border,
985
+ 'text': $color-flag-solid-primary-02-text,
986
+ ),
987
+ 'solid-dark': (
988
+ 'background': $color-flag-solid-dark-background,
989
+ 'border': $color-flag-solid-dark-border,
990
+ 'text': $color-flag-solid-dark-text,
991
+ ),
992
+ 'solid-light': (
993
+ 'background': $color-flag-solid-light-background,
994
+ 'border': $color-flag-solid-light-border,
995
+ 'text': $color-flag-solid-light-text,
996
+ ),
997
+ 'solid-danger': (
998
+ 'background': $color-flag-solid-danger-background,
999
+ 'border': $color-flag-solid-danger-border,
1000
+ 'text': $color-flag-solid-danger-text,
1001
+ ),
1002
+ 'bordered': (
1003
+ 'background': $color-flag-bordered-background,
1004
+ 'border': $color-flag-bordered-border,
1005
+ 'text': $color-flag-bordered-text,
1006
+ ),
1007
+ 'bordered-primary-02': (
1008
+ 'background': $color-flag-bordered-primary-02-background,
1009
+ 'border': $color-flag-bordered-primary-02-border,
1010
+ 'text': $color-flag-bordered-primary-02-text,
1011
+ ),
1012
+ 'bordered-dark': (
1013
+ 'background': $color-flag-bordered-dark-background,
1014
+ 'border': $color-flag-bordered-dark-border,
1015
+ 'text': $color-flag-bordered-dark-text,
1016
+ ),
1017
+ 'bordered-light': (
1018
+ 'background': $color-flag-bordered-light-background,
1019
+ 'border': $color-flag-bordered-light-border,
1020
+ 'text': $color-flag-bordered-light-text,
1021
+ ),
1022
+ 'bordered-danger': (
1023
+ 'background': $color-flag-bordered-danger-background,
1024
+ 'border': $color-flag-bordered-danger-border,
1025
+ 'text': $color-flag-bordered-danger-text,
1026
+ ),
1027
+ ),
1028
+ 'focus': (
1029
+ 'gap': $color-focus-gap,
1030
+ 'border': $color-focus-border,
1031
+ ),
1032
+ 'font': (
1033
+ 'primary-01': $color-font-primary-01,
1034
+ 'primary-02': $color-font-primary-02,
1035
+ 'darkest': $color-font-darkest,
1036
+ 'darker': $color-font-darker,
1037
+ 'dark': $color-font-dark,
1038
+ 'light': $color-font-light,
1039
+ 'lightest': $color-font-lightest,
1040
+ 'info': $color-font-info,
1041
+ 'success': $color-font-success,
1042
+ 'warning': $color-font-warning,
1043
+ 'danger': $color-font-danger,
1044
+ ),
1045
+ 'heading': (
1046
+ 'underline': (
1047
+ 'default': $color-heading-underline-default,
1048
+ 'lightest': $color-heading-underline-lightest,
1049
+ ),
1050
+ ),
1051
+ 'hero': (
1052
+ 'cover': (
1053
+ 'background': $color-hero-cover-background,
1054
+ ),
1055
+ ),
1056
+ 'input': (
1057
+ 'text': $color-input-text,
1058
+ 'border': $color-input-border,
1059
+ 'placeholder': $color-input-placeholder,
1060
+ 'background': $color-input-background,
1061
+ 'disabled': (
1062
+ 'background': $color-input-disabled-background,
1063
+ 'border': $color-input-disabled-border,
1064
+ 'icon': $color-input-disabled-icon,
1065
+ 'label': $color-input-disabled-label,
1066
+ ),
1067
+ 'hover': (
1068
+ 'border': $color-input-hover-border,
1069
+ ),
1070
+ 'focus': (
1071
+ 'border': $color-input-focus-border,
1072
+ ),
1073
+ 'valid': (
1074
+ 'border': $color-input-valid-border,
1075
+ 'hover': (
1076
+ 'border': $color-input-valid-hover-border,
1077
+ ),
1078
+ ),
1079
+ 'invalid': (
1080
+ 'border': $color-input-invalid-border,
1081
+ 'hover': (
1082
+ 'border': $color-input-invalid-hover-border,
1083
+ ),
1084
+ ),
1085
+ 'checked': (
1086
+ 'border': $color-input-checked-border,
1087
+ 'background': $color-input-checked-background,
1088
+ 'icon': $color-input-checked-icon,
1089
+ 'hover': (
1090
+ 'border': $color-input-checked-hover-border,
1091
+ ),
1092
+ ),
1093
+ ),
1094
+ 'link': (
1095
+ 'dark': (
1096
+ 'base': $color-link-dark-base,
1097
+ 'visited': $color-link-dark-visited,
1098
+ 'active': $color-link-dark-active,
1099
+ 'disabled': $color-link-dark-disabled,
1100
+ 'hover': $color-link-dark-hover,
1101
+ ),
1102
+ 'light': (
1103
+ 'base': $color-link-light-base,
1104
+ 'visited': $color-link-light-visited,
1105
+ 'active': $color-link-light-active,
1106
+ 'disabled': $color-link-light-disabled,
1107
+ 'hover': $color-link-light-hover,
1108
+ ),
1109
+ 'primary': (
1110
+ 'base': $color-link-primary-base,
1111
+ 'visited': $color-link-primary-visited,
1112
+ 'active': $color-link-primary-active,
1113
+ 'disabled': $color-link-primary-disabled,
1114
+ 'hover': $color-link-primary-hover,
1115
+ ),
1116
+ 'primary-02': (
1117
+ 'base': $color-link-primary-02-base,
1118
+ 'visited': $color-link-primary-02-visited,
1119
+ 'active': $color-link-primary-02-active,
1120
+ 'disabled': $color-link-primary-02-disabled,
1121
+ 'hover': $color-link-primary-02-hover,
1122
+ ),
1123
+ 'danger': (
1124
+ 'base': $color-link-danger-base,
1125
+ 'visited': $color-link-danger-visited,
1126
+ 'active': $color-link-danger-active,
1127
+ 'disabled': $color-link-danger-disabled,
1128
+ 'hover': $color-link-danger-hover,
1129
+ ),
1130
+ ),
1131
+ 'listbox': (
1132
+ 'background': $color-listbox-background,
1133
+ 'border': $color-listbox-border,
1134
+ 'tile': (
1135
+ 'border': $color-listbox-tile-border,
1136
+ 'shadow': $color-listbox-tile-shadow,
1137
+ 'hover': (
1138
+ 'background': $color-listbox-tile-hover-background,
1139
+ ),
1140
+ ),
1141
+ 'disabled': (
1142
+ 'background': $color-listbox-disabled-background,
1143
+ ),
1144
+ ),
1145
+ 'notification': (
1146
+ 'font': $color-notification-font,
1147
+ 'information': (
1148
+ 'background': $color-notification-information-background,
1149
+ 'border': $color-notification-information-border,
1150
+ 'icon': $color-notification-information-icon,
1151
+ ),
1152
+ 'success': (
1153
+ 'background': $color-notification-success-background,
1154
+ 'border': $color-notification-success-border,
1155
+ 'icon': $color-notification-success-icon,
1156
+ ),
1157
+ 'warning': (
1158
+ 'background': $color-notification-warning-background,
1159
+ 'border': $color-notification-warning-border,
1160
+ 'icon': $color-notification-warning-icon,
1161
+ ),
1162
+ 'danger': (
1163
+ 'background': $color-notification-danger-background,
1164
+ 'border': $color-notification-danger-border,
1165
+ 'icon': $color-notification-danger-icon,
1166
+ ),
1167
+ ),
1168
+ 'option-button': (
1169
+ 'label': (
1170
+ 'shadow': $color-option-button-label-shadow,
1171
+ ),
1172
+ 'hover': (
1173
+ 'label': (
1174
+ 'shadow': $color-option-button-hover-label-shadow,
1175
+ ),
1176
+ ),
1177
+ 'checked': (
1178
+ 'label': (
1179
+ 'border': $color-option-button-checked-label-border,
1180
+ 'shadow': $color-option-button-checked-label-shadow,
1181
+ ),
1182
+ ),
1183
+ 'disabled': (
1184
+ 'label': (
1185
+ 'background': $color-option-button-disabled-label-background,
1186
+ ),
1187
+ ),
1188
+ ),
1189
+ 'option-card': (
1190
+ 'label': (
1191
+ 'shadow': $color-option-card-label-shadow,
1192
+ ),
1193
+ 'hover': (
1194
+ 'label': (
1195
+ 'shadow': $color-option-card-hover-label-shadow,
1196
+ ),
1197
+ ),
1198
+ 'checked': (
1199
+ 'label': (
1200
+ 'border': $color-option-card-checked-label-border,
1201
+ 'shadow': $color-option-card-checked-label-shadow,
1202
+ ),
1203
+ ),
1204
+ 'disabled': (
1205
+ 'content': $color-option-card-disabled-content,
1206
+ 'label': $color-option-card-disabled-label,
1207
+ ),
1208
+ ),
1209
+ 'overlay': (
1210
+ 'background': $color-overlay-background,
1211
+ 'loader': (
1212
+ 'background': $color-overlay-loader-background,
1213
+ ),
1214
+ ),
1215
+ 'password-input': (
1216
+ 'button': (
1217
+ 'hover': (
1218
+ 'background': $color-password-input-button-hover-background,
1219
+ ),
1220
+ ),
1221
+ ),
1222
+ 'phone-number': (
1223
+ 'button': (
1224
+ 'border': $color-phone-number-button-border,
1225
+ ),
1226
+ 'list': (
1227
+ 'background': $color-phone-number-list-background,
1228
+ ),
1229
+ 'item': (
1230
+ 'border': $color-phone-number-item-border,
1231
+ 'focus': (
1232
+ 'background': $color-phone-number-item-focus-background,
1233
+ ),
1234
+ ),
1235
+ ),
1236
+ 'progress': (
1237
+ 'background': $color-progress-background,
1238
+ 'indicator': $color-progress-indicator,
1239
+ 'percentage': (
1240
+ 'default': $color-progress-percentage-default,
1241
+ 'half': $color-progress-percentage-half,
1242
+ ),
1243
+ ),
1244
+ 'sidebar': (
1245
+ 'background': $color-sidebar-background,
1246
+ 'feature': (
1247
+ 'background': $color-sidebar-feature-background,
1248
+ 'hover': (
1249
+ 'background': $color-sidebar-feature-hover-background,
1250
+ ),
1251
+ 'selected': (
1252
+ 'background': $color-sidebar-feature-selected-background,
1253
+ ),
1254
+ 'disabled': (
1255
+ 'background': $color-sidebar-feature-disabled-background,
1256
+ ),
1257
+ ),
1258
+ 'user': (
1259
+ 'background': $color-sidebar-user-background,
1260
+ ),
1261
+ 'divider': (
1262
+ 'background': $color-sidebar-divider-background,
1263
+ ),
1264
+ 'icon': $color-sidebar-icon,
1265
+ 'text': (
1266
+ 'background': $color-sidebar-text-background,
1267
+ 'color': $color-sidebar-text-color,
1268
+ ),
1269
+ 'scroll': (
1270
+ 'background': $color-sidebar-scroll-background,
1271
+ 'color': $color-sidebar-scroll-color,
1272
+ ),
1273
+ ),
1274
+ 'star': (
1275
+ 'empty': $color-star-empty,
1276
+ 'focus': $color-star-focus,
1277
+ 'full': $color-star-full,
1278
+ 'hover': $color-star-hover,
1279
+ ),
1280
+ 'stepper': (
1281
+ 'item': (
1282
+ 'background': $color-stepper-item-background,
1283
+ 'current': (
1284
+ 'background': $color-stepper-item-current-background,
1285
+ ),
1286
+ ),
1287
+ 'link': (
1288
+ 'hover': (
1289
+ 'text': $color-stepper-link-hover-text,
1290
+ ),
1291
+ ),
1292
+ 'indicator': (
1293
+ 'background': $color-stepper-indicator-background,
1294
+ 'border': $color-stepper-indicator-border,
1295
+ 'current': (
1296
+ 'background': $color-stepper-indicator-current-background,
1297
+ 'border': $color-stepper-indicator-current-border,
1298
+ ),
1299
+ ),
1300
+ 'icon': $color-stepper-icon,
1301
+ 'title': $color-stepper-title,
1302
+ ),
1303
+ 'tabs': (
1304
+ 'background': $color-tabs-background,
1305
+ 'shadow': $color-tabs-shadow,
1306
+ 'default': $color-tabs-default,
1307
+ 'element': (
1308
+ 'background': $color-tabs-element-background,
1309
+ ),
1310
+ 'hover': $color-tabs-hover,
1311
+ 'disabled': (
1312
+ 'background': $color-tabs-disabled-background,
1313
+ ),
1314
+ 'active': (
1315
+ 'background': $color-tabs-active-background,
1316
+ 'text': $color-tabs-active-text,
1317
+ ),
1318
+ 'selected': (
1319
+ 'border': $color-tabs-selected-border,
1320
+ 'text': $color-tabs-selected-text,
1321
+ ),
1322
+ 'active-disabled': $color-tabs-active-disabled,
1323
+ ),
1324
+ 'tag': (
1325
+ 'text': (
1326
+ 'light': (
1327
+ 'background': $color-tag-text-light-background,
1328
+ 'border': $color-tag-text-light-border,
1329
+ 'text': $color-tag-text-light-text,
1330
+ ),
1331
+ 'dark': (
1332
+ 'background': $color-tag-text-dark-background,
1333
+ 'border': $color-tag-text-dark-border,
1334
+ 'text': $color-tag-text-dark-text,
1335
+ ),
1336
+ ),
1337
+ 'link': (
1338
+ 'light': (
1339
+ 'background': $color-tag-link-light-background,
1340
+ 'border': $color-tag-link-light-border,
1341
+ 'text': $color-tag-link-light-text,
1342
+ 'hover': (
1343
+ 'background': $color-tag-link-light-hover-background,
1344
+ ),
1345
+ 'active': (
1346
+ 'background': $color-tag-link-light-active-background,
1347
+ ),
1348
+ ),
1349
+ 'dark': (
1350
+ 'background': $color-tag-link-dark-background,
1351
+ 'border': $color-tag-link-dark-border,
1352
+ 'text': $color-tag-link-dark-text,
1353
+ 'hover': (
1354
+ 'background': $color-tag-link-dark-hover-background,
1355
+ ),
1356
+ 'active': (
1357
+ 'background': $color-tag-link-dark-active-background,
1358
+ ),
1359
+ ),
1360
+ ),
1361
+ 'selectable': (
1362
+ 'light': (
1363
+ 'background': $color-tag-selectable-light-background,
1364
+ 'border': $color-tag-selectable-light-border,
1365
+ 'text': $color-tag-selectable-light-text,
1366
+ 'hover': (
1367
+ 'background': $color-tag-selectable-light-hover-background,
1368
+ ),
1369
+ 'active': (
1370
+ 'background': $color-tag-selectable-light-active-background,
1371
+ 'border': $color-tag-selectable-light-active-border,
1372
+ 'text': $color-tag-selectable-light-active-text,
1373
+ ),
1374
+ 'disabled': (
1375
+ 'background': $color-tag-selectable-light-disabled-background,
1376
+ 'text': $color-tag-selectable-light-disabled-text,
1377
+ ),
1378
+ 'selected': (
1379
+ 'background': $color-tag-selectable-light-selected-background,
1380
+ 'text': $color-tag-selectable-light-selected-text,
1381
+ 'hover': (
1382
+ 'background': $color-tag-selectable-light-selected-hover-background,
1383
+ ),
1384
+ ),
1385
+ ),
1386
+ 'dark': (
1387
+ 'background': $color-tag-selectable-dark-background,
1388
+ 'border': $color-tag-selectable-dark-border,
1389
+ 'text': $color-tag-selectable-dark-text,
1390
+ 'hover': (
1391
+ 'background': $color-tag-selectable-dark-hover-background,
1392
+ ),
1393
+ 'active': (
1394
+ 'background': $color-tag-selectable-dark-active-background,
1395
+ 'border': $color-tag-selectable-dark-active-border,
1396
+ 'text': $color-tag-selectable-dark-active-text,
1397
+ ),
1398
+ 'selected': (
1399
+ 'background': $color-tag-selectable-dark-selected-background,
1400
+ 'border': $color-tag-selectable-dark-selected-border,
1401
+ 'text': $color-tag-selectable-dark-selected-text,
1402
+ 'hover': (
1403
+ 'background': $color-tag-selectable-dark-selected-hover-background,
1404
+ ),
1405
+ ),
1406
+ 'disabled': (
1407
+ 'background': $color-tag-selectable-dark-disabled-background,
1408
+ 'text': $color-tag-selectable-dark-disabled-text,
1409
+ ),
1410
+ ),
1411
+ ),
1412
+ 'removable': (
1413
+ 'light': (
1414
+ 'background': $color-tag-removable-light-background,
1415
+ 'text': $color-tag-removable-light-text,
1416
+ 'icon': $color-tag-removable-light-icon,
1417
+ 'hover': (
1418
+ 'background': $color-tag-removable-light-hover-background,
1419
+ ),
1420
+ 'active': (
1421
+ 'background': $color-tag-removable-light-active-background,
1422
+ ),
1423
+ ),
1424
+ 'dark': (
1425
+ 'background': $color-tag-removable-dark-background,
1426
+ 'text': $color-tag-removable-dark-text,
1427
+ 'icon': $color-tag-removable-dark-icon,
1428
+ 'hover': (
1429
+ 'background': $color-tag-removable-dark-hover-background,
1430
+ ),
1431
+ 'active': (
1432
+ 'background': $color-tag-removable-dark-active-background,
1433
+ ),
1434
+ ),
1435
+ ),
1436
+ ),
1437
+ 'toggle': (
1438
+ 'label': $color-toggle-label,
1439
+ 'off': (
1440
+ 'background': $color-toggle-off-background,
1441
+ 'circle': $color-toggle-off-circle,
1442
+ ),
1443
+ 'on': (
1444
+ 'background': $color-toggle-on-background,
1445
+ 'circle': $color-toggle-on-circle,
1446
+ ),
1447
+ 'hover': (
1448
+ 'circle': $color-toggle-hover-circle,
1449
+ ),
1450
+ 'disabled': (
1451
+ 'background': $color-toggle-disabled-background,
1452
+ 'circle': $color-toggle-disabled-circle,
1453
+ 'label': $color-toggle-disabled-label,
1454
+ ),
1455
+ 'disabled-checked': (
1456
+ 'background': $color-toggle-disabled-checked-background,
1457
+ 'circle': $color-toggle-disabled-checked-circle,
1458
+ ),
1459
+ ),
1460
+ 'tooltip': (
1461
+ 'background': $color-tooltip-background,
1462
+ 'border': $color-tooltip-border,
1463
+ ),
1464
+ 'secondary-sandgrey': (
1465
+ '100': $color-secondary-sandgrey-100,
1466
+ '200': $color-secondary-sandgrey-200,
1467
+ '300': $color-secondary-sandgrey-300,
1468
+ '400': $color-secondary-sandgrey-400,
1469
+ '500': $color-secondary-sandgrey-500,
1470
+ '600': $color-secondary-sandgrey-600,
1471
+ '700': $color-secondary-sandgrey-700,
1472
+ '800': $color-secondary-sandgrey-800,
1473
+ '900': $color-secondary-sandgrey-900,
1474
+ ),
1475
+ ),
1476
+ 'preset': $preset,
1477
+ 'radius': (
1478
+ 's': $radius-s,
1479
+ 'm': $radius-m,
1480
+ 'l': $radius-l,
1481
+ ),
1482
+ 'shadow': (
1483
+ 's': (
1484
+ 'x': $shadow-s-x,
1485
+ 'y': $shadow-s-y,
1486
+ 'blur': $shadow-s-blur,
1487
+ 'spread': $shadow-s-spread,
1488
+ 'opacity': $shadow-s-opacity,
1489
+ ),
1490
+ 'm': (
1491
+ 'x': $shadow-m-x,
1492
+ 'y': $shadow-m-y,
1493
+ 'blur': $shadow-m-blur,
1494
+ 'spread': $shadow-m-spread,
1495
+ 'opacity': $shadow-m-opacity,
1496
+ ),
1497
+ 'l': (
1498
+ 'x': $shadow-l-x,
1499
+ 'y': $shadow-l-y,
1500
+ 'blur': $shadow-l-blur,
1501
+ 'spread': $shadow-l-spread,
1502
+ 'opacity': $shadow-l-opacity,
1503
+ ),
1504
+ ),
1505
+ 'magic-unit': $magic-unit,
1506
+ 'local-rem-value': $local-rem-value,
1507
+ 'size': (
1508
+ 'font': (
1509
+ '10': $size-font-10,
1510
+ '11': $size-font-11,
1511
+ '12': $size-font-12,
1512
+ '01': $size-font-01,
1513
+ '02': $size-font-02,
1514
+ '03': $size-font-03,
1515
+ '04': $size-font-04,
1516
+ '05': $size-font-05,
1517
+ '06': $size-font-06,
1518
+ '07': $size-font-07,
1519
+ '08': $size-font-08,
1520
+ '09': $size-font-09,
1521
+ ),
1522
+ 'line': (
1523
+ '10': (
1524
+ 'xs': $size-line-10-xs,
1525
+ 's': $size-line-10-s,
1526
+ 'm': $size-line-10-m,
1527
+ 'l': $size-line-10-l,
1528
+ ),
1529
+ '11': (
1530
+ 'xs': $size-line-11-xs,
1531
+ 's': $size-line-11-s,
1532
+ 'm': $size-line-11-m,
1533
+ 'l': $size-line-11-l,
1534
+ ),
1535
+ '12': (
1536
+ 'xs': $size-line-12-xs,
1537
+ 's': $size-line-12-s,
1538
+ 'm': $size-line-12-m,
1539
+ 'l': $size-line-12-l,
1540
+ ),
1541
+ '01': (
1542
+ 'xs': $size-line-01-xs,
1543
+ 's': $size-line-01-s,
1544
+ 'm': $size-line-01-m,
1545
+ 'l': $size-line-01-l,
1546
+ ),
1547
+ '02': (
1548
+ 'xs': $size-line-02-xs,
1549
+ 's': $size-line-02-s,
1550
+ 'm': $size-line-02-m,
1551
+ 'l': $size-line-02-l,
1552
+ ),
1553
+ '03': (
1554
+ 'xs': $size-line-03-xs,
1555
+ 's': $size-line-03-s,
1556
+ 'm': $size-line-03-m,
1557
+ 'l': $size-line-03-l,
1558
+ ),
1559
+ '04': (
1560
+ 'xs': $size-line-04-xs,
1561
+ 's': $size-line-04-s,
1562
+ 'm': $size-line-04-m,
1563
+ 'l': $size-line-04-l,
1564
+ ),
1565
+ '05': (
1566
+ 'xs': $size-line-05-xs,
1567
+ 's': $size-line-05-s,
1568
+ 'm': $size-line-05-m,
1569
+ 'l': $size-line-05-l,
1570
+ ),
1571
+ '06': (
1572
+ 'xs': $size-line-06-xs,
1573
+ 's': $size-line-06-s,
1574
+ 'm': $size-line-06-m,
1575
+ 'l': $size-line-06-l,
1576
+ ),
1577
+ '07': (
1578
+ 'xs': $size-line-07-xs,
1579
+ 's': $size-line-07-s,
1580
+ 'm': $size-line-07-m,
1581
+ 'l': $size-line-07-l,
1582
+ ),
1583
+ '08': (
1584
+ 'xs': $size-line-08-xs,
1585
+ 's': $size-line-08-s,
1586
+ 'm': $size-line-08-m,
1587
+ 'l': $size-line-08-l,
1588
+ ),
1589
+ '09': (
1590
+ 'xs': $size-line-09-xs,
1591
+ 's': $size-line-09-s,
1592
+ 'm': $size-line-09-m,
1593
+ 'l': $size-line-09-l,
1594
+ ),
1595
+ ),
1596
+ 'gutter': (
1597
+ 'screen': (
1598
+ 's': $size-gutter-screen-s,
1599
+ 'm': $size-gutter-screen-m,
1600
+ ),
1601
+ ),
1602
+ ),
1603
+ 'screen': (
1604
+ 's': $screen-s,
1605
+ 's-medium': $screen-s-medium,
1606
+ 's-large': $screen-s-large,
1607
+ 's-xlarge': $screen-s-xlarge,
1608
+ 'm': $screen-m,
1609
+ 'm-medium': $screen-m-medium,
1610
+ 'l': $screen-l,
1611
+ 'l-medium': $screen-l-medium,
1612
+ 'xl': $screen-xl,
1613
+ 'xl-medium': $screen-xl-medium,
1614
+ 'xl-large': $screen-xl-large,
1615
+ 'xxl': $screen-xxl,
1616
+ ),
1617
+ );