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