@mozaic-ds/vue 1.0.0-beta.3 β†’ 1.0.0-beta.5

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 (191) hide show
  1. package/LICENSE +51 -0
  2. package/README.md +224 -82
  3. package/dist/mozaic-vue.css +1 -1
  4. package/dist/mozaic-vue.d.ts +1202 -0
  5. package/dist/mozaic-vue.js +1220 -0
  6. package/dist/mozaic-vue.js.map +1 -0
  7. package/dist/mozaic-vue.umd.cjs +2 -0
  8. package/dist/mozaic-vue.umd.cjs.map +1 -0
  9. package/env.d.ts +1 -0
  10. package/package.json +81 -50
  11. package/src/components/Contributing.mdx +118 -0
  12. package/src/components/GettingStarted.mdx +50 -0
  13. package/src/components/Introduction.mdx +54 -0
  14. package/src/components/Support.mdx +18 -0
  15. package/src/components/badge/MBadge.spec.ts +16 -0
  16. package/src/components/badge/MBadge.stories.ts +50 -0
  17. package/src/components/badge/MBadge.vue +36 -34
  18. package/src/components/breadcrumb/MBreadcrumb.spec.ts +105 -0
  19. package/src/components/breadcrumb/MBreadcrumb.stories.ts +57 -0
  20. package/src/components/breadcrumb/MBreadcrumb.vue +52 -55
  21. package/src/components/button/MButton.spec.ts +191 -0
  22. package/src/components/button/MButton.stories.ts +66 -0
  23. package/src/components/button/MButton.vue +98 -154
  24. package/src/components/checkbox/MCheckbox.spec.ts +104 -0
  25. package/src/components/checkbox/MCheckbox.stories.ts +83 -0
  26. package/src/components/checkbox/MCheckbox.vue +60 -101
  27. package/src/components/checkboxgroup/MCheckboxGroup.spec.ts +78 -0
  28. package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +61 -0
  29. package/src/components/checkboxgroup/MCheckboxGroup.vue +97 -0
  30. package/src/components/field/MField.spec.ts +166 -0
  31. package/src/components/field/MField.stories.ts +376 -0
  32. package/src/components/field/MField.vue +78 -61
  33. package/src/components/fieldgroup/MFieldGroup.spec.ts +165 -0
  34. package/src/components/fieldgroup/MFieldGroup.stories.ts +423 -0
  35. package/src/components/fieldgroup/MFieldGroup.vue +79 -0
  36. package/src/components/iconbutton/MIconButton.spec.ts +108 -0
  37. package/src/components/iconbutton/MIconButton.stories.ts +66 -0
  38. package/src/components/iconbutton/MIconButton.vue +73 -0
  39. package/src/components/link/MLink.spec.ts +154 -0
  40. package/src/components/link/MLink.stories.ts +98 -0
  41. package/src/components/link/MLink.vue +86 -109
  42. package/src/components/loader/MLoader.spec.ts +104 -0
  43. package/src/components/loader/MLoader.stories.ts +45 -0
  44. package/src/components/loader/MLoader.vue +65 -55
  45. package/src/components/overlay/MOverlay.spec.ts +51 -0
  46. package/src/components/overlay/MOverlay.stories.ts +40 -0
  47. package/src/components/overlay/MOverlay.vue +27 -19
  48. package/src/components/passwordinput/MPasswordInput.spec.ts +104 -0
  49. package/src/components/passwordinput/MPasswordInput.stories.ts +75 -0
  50. package/src/components/passwordinput/MPasswordInput.vue +129 -76
  51. package/src/components/quantityselector/MQuantitySelector.spec.ts +262 -0
  52. package/src/components/quantityselector/MQuantitySelector.stories.ts +89 -0
  53. package/src/components/quantityselector/MQuantitySelector.vue +160 -136
  54. package/src/components/radio/MRadio.spec.ts +104 -0
  55. package/src/components/radio/MRadio.stories.ts +68 -0
  56. package/src/components/radio/MRadio.vue +56 -39
  57. package/src/components/radiogroup/MRadioGroup.spec.ts +54 -0
  58. package/src/components/radiogroup/MRadioGroup.stories.ts +61 -0
  59. package/src/components/radiogroup/MRadioGroup.vue +79 -0
  60. package/src/components/select/MSelect.spec.ts +114 -0
  61. package/src/components/select/MSelect.stories.ts +101 -0
  62. package/src/components/select/MSelect.vue +77 -119
  63. package/src/components/statusbadge/MStatusBadge.stories.ts +45 -0
  64. package/src/components/statusbadge/MStatusBadge.vue +40 -0
  65. package/src/components/statusbadge/MstatusBadge.spec.ts +16 -0
  66. package/src/components/statusdot/MStatusDot.spec.ts +51 -0
  67. package/src/components/statusdot/MStatusDot.stories.ts +48 -0
  68. package/src/components/statusdot/MStatusDot.vue +36 -0
  69. package/src/components/statusnotification/MStatusNotification.spec.ts +99 -0
  70. package/src/components/statusnotification/MStatusNotification.stories.ts +96 -0
  71. package/src/components/statusnotification/MStatusNotification.vue +106 -0
  72. package/src/components/textarea/MTextArea.spec.ts +112 -0
  73. package/src/components/textarea/MTextArea.stories.ts +67 -0
  74. package/src/components/textarea/MTextArea.vue +81 -42
  75. package/src/components/textinput/MTextInput.spec.ts +121 -0
  76. package/src/components/textinput/MTextInput.stories.ts +114 -0
  77. package/src/components/textinput/MTextInput.vue +127 -47
  78. package/src/components/toggle/MToggle.spec.ts +99 -0
  79. package/src/components/toggle/MToggle.stories.ts +68 -0
  80. package/src/components/toggle/MToggle.vue +63 -103
  81. package/src/components/togglegroup/MToggleGroup.spec.ts +78 -0
  82. package/src/components/togglegroup/MToggleGroup.stories.ts +61 -0
  83. package/src/components/togglegroup/MToggleGroup.vue +97 -0
  84. package/src/components/usingIcons.mdx +43 -0
  85. package/src/components/usingPresets.mdx +125 -0
  86. package/src/main.ts +47 -0
  87. package/dist/demo.html +0 -1
  88. package/dist/mozaic-vue.adeo.css +0 -45
  89. package/dist/mozaic-vue.adeo.umd.js +0 -41775
  90. package/dist/mozaic-vue.common.js +0 -41765
  91. package/dist/mozaic-vue.common.js.map +0 -1
  92. package/dist/mozaic-vue.umd.js +0 -41776
  93. package/dist/mozaic-vue.umd.js.map +0 -1
  94. package/dist/mozaic-vue.umd.min.js +0 -4
  95. package/dist/mozaic-vue.umd.min.js.map +0 -1
  96. package/postinstall.js +0 -3
  97. package/src/components/accordion/MAccordion.vue +0 -128
  98. package/src/components/accordion/index.js +0 -7
  99. package/src/components/autocomplete/MAutocomplete.vue +0 -198
  100. package/src/components/autocomplete/index.js +0 -7
  101. package/src/components/badge/index.js +0 -7
  102. package/src/components/breadcrumb/index.js +0 -7
  103. package/src/components/button/index.js +0 -7
  104. package/src/components/card/MCard.vue +0 -78
  105. package/src/components/card/index.js +0 -7
  106. package/src/components/checkbox/MCheckboxGroup.vue +0 -155
  107. package/src/components/checkbox/index.js +0 -12
  108. package/src/components/container/MContainer.vue +0 -33
  109. package/src/components/container/index.js +0 -7
  110. package/src/components/datatable/MDataTable.vue +0 -651
  111. package/src/components/datatable/MDataTableHeader.vue +0 -55
  112. package/src/components/datatable/MDataTableTop.vue +0 -35
  113. package/src/components/datatable/helpers.js +0 -132
  114. package/src/components/datatable/index.js +0 -12
  115. package/src/components/field/index.js +0 -7
  116. package/src/components/fileuploader/MFileResult.vue +0 -149
  117. package/src/components/fileuploader/MFileUploader.vue +0 -142
  118. package/src/components/fileuploader/index.js +0 -7
  119. package/src/components/flag/MFlag.vue +0 -46
  120. package/src/components/flag/index.js +0 -7
  121. package/src/components/heading/MHeading.vue +0 -75
  122. package/src/components/heading/index.js +0 -7
  123. package/src/components/hero/MHero.vue +0 -93
  124. package/src/components/hero/index.js +0 -7
  125. package/src/components/icon/MIcon.vue +0 -120
  126. package/src/components/icon/index.js +0 -7
  127. package/src/components/index.js +0 -43
  128. package/src/components/layer/MLayer.vue +0 -208
  129. package/src/components/layer/index.js +0 -7
  130. package/src/components/link/index.js +0 -7
  131. package/src/components/listbox/MListBox.vue +0 -106
  132. package/src/components/listbox/index.js +0 -7
  133. package/src/components/loader/index.js +0 -7
  134. package/src/components/modal/MModal.vue +0 -179
  135. package/src/components/modal/index.js +0 -7
  136. package/src/components/notification/MNotification.vue +0 -110
  137. package/src/components/notification/index.js +0 -7
  138. package/src/components/optionbutton/MOptionButton.vue +0 -67
  139. package/src/components/optionbutton/index.js +0 -7
  140. package/src/components/optioncard/MOptionCard.vue +0 -132
  141. package/src/components/optioncard/index.js +0 -7
  142. package/src/components/optiongroup/MOptionGroup.vue +0 -18
  143. package/src/components/optiongroup/index.js +0 -7
  144. package/src/components/overlay/MOverlayLoader.vue +0 -43
  145. package/src/components/overlay/index.js +0 -12
  146. package/src/components/pagination/MPagination.vue +0 -162
  147. package/src/components/pagination/index.js +0 -7
  148. package/src/components/passwordinput/index.js +0 -7
  149. package/src/components/phonenumber/MPhoneNumber.vue +0 -390
  150. package/src/components/phonenumber/index.js +0 -7
  151. package/src/components/progressbar/MProgress.vue +0 -102
  152. package/src/components/progressbar/index.js +0 -7
  153. package/src/components/quantityselector/index.js +0 -7
  154. package/src/components/radio/MRadioGroup.vue +0 -111
  155. package/src/components/radio/index.js +0 -12
  156. package/src/components/ratingstars/MStarsInput.vue +0 -118
  157. package/src/components/ratingstars/MStarsResult.vue +0 -89
  158. package/src/components/ratingstars/index.js +0 -12
  159. package/src/components/select/index.js +0 -7
  160. package/src/components/stepper/MStepper.vue +0 -70
  161. package/src/components/stepper/index.js +0 -7
  162. package/src/components/tabs/MTab.vue +0 -184
  163. package/src/components/tabs/index.js +0 -7
  164. package/src/components/tags/MTag.vue +0 -173
  165. package/src/components/tags/index.js +0 -7
  166. package/src/components/textarea/index.js +0 -7
  167. package/src/components/textinput/MTextInputField.vue +0 -105
  168. package/src/components/textinput/MTextInputIcon.vue +0 -42
  169. package/src/components/textinput/index.js +0 -7
  170. package/src/components/toggle/index.js +0 -7
  171. package/src/components/tooltip/MTooltip.vue +0 -42
  172. package/src/components/tooltip/index.js +0 -7
  173. package/src/index.js +0 -62
  174. package/src/shims-tsx.d.ts +0 -13
  175. package/src/shims.vue.d.ts +0 -4
  176. package/src/tokens/adeo/android/colors.xml +0 -391
  177. package/src/tokens/adeo/android/font_dimens.xml +0 -18
  178. package/src/tokens/adeo/css/_variables.scss +0 -385
  179. package/src/tokens/adeo/css/root.scss +0 -387
  180. package/src/tokens/adeo/ios/StyleDictionaryColor.h +0 -399
  181. package/src/tokens/adeo/ios/StyleDictionaryColor.m +0 -411
  182. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +0 -394
  183. package/src/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  184. package/src/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  185. package/src/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  186. package/src/tokens/adeo/js/tokens.js +0 -483
  187. package/src/tokens/adeo/js/tokensObject.js +0 -10354
  188. package/src/tokens/adeo/scss/_tokens.scss +0 -1300
  189. package/src/utils/mozaicClasses.js +0 -16
  190. package/src/utils/theme.validator.js +0 -19
  191. package/types/index.d.ts +0 -100
package/LICENSE ADDED
@@ -0,0 +1,51 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30
+
31
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32
+
33
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34
+
35
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
36
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
37
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
38
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
39
+
40
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
41
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
42
+
43
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
44
+
45
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
46
+
47
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
48
+
49
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
50
+
51
+ END OF TERMS AND CONDITIONS
package/README.md CHANGED
@@ -1,123 +1,265 @@
1
1
  <h1 align="center">
2
- <img width="400" src="https://adeo.github.io/mozaic-vue/static/media/logo-mozaic-vue-large.fb8f5358.svg" alt="Mozaic Vue.js" />
2
+ Mozaic-Vue
3
3
  </h1>
4
4
 
5
- ## Introduction
5
+ <p align="center">
6
+ <a href="https://mozaic.adeo.cloud/">
7
+ <img src="./.storybook/assets/adeo-design-system.svg"/>
8
+ </a>
9
+ <a href="https://vuejs.org">
10
+ <img src="./.storybook/assets/made-with-vue.svg"/>
11
+ </a>
12
+ </p>
6
13
 
7
- **MozaicVue** is the [Vue.js](https://vuejs.org/) implementation of [Mozaic Design System](https://mozaic.adeo.cloud/)
14
+ <p align="center">
15
+ <a href="https://github.com/adeo/mozaic-vue/blob/master/CONTRIBUTING.md">
16
+ <img src="https://img.shields.io/badge/PRs-welcome-blue.svg?logo=github" alt="PRs welcome" />
17
+ </a>
18
+ <a href="#-contributors">
19
+ <img src="https://img.shields.io/badge/all_contributors-80-brightgreen.svg?style=" alt="contributors" />
20
+ </a>
21
+ <a href="https://app.slack.com/client/T4R6RCZFA/CN4K3A99R">
22
+ <img src="https://img.shields.io/badge/Slack-mozaic_vue-611f69.svg?logo=slack" alt="Slack mozaic-vue" />
23
+ </a>
24
+ <a href="https://adeo.workplace.com/groups/427492661454646/">
25
+ <img src="https://img.shields.io/badge/Workplace-Adeo_Design_System-4526ce.svg?logo=workplace" alt="Workplace ADEO Design system" />
26
+ </a>
27
+ </p>
8
28
 
9
- Note that this package is built to be used with **Vue.js version 2**.
29
+ <p align="center">
30
+ This project contains <a href="https://vuejs.org">Vue.js</a> components that implements the <a href="https://mozaic.adeo.cloud/">ADEO Design system</a> guidelines.
31
+ </p>
10
32
 
11
- You can have an overview of each component of this library by visiting the dedicated **Storybook**: [https://adeo.github.io/mozaic-vue/](https://adeo.github.io/mozaic-vue/)
33
+ ## 🎨 Getting started
12
34
 
13
- ## Installation
35
+ **ADEO Design system** is a global and collaborative design system that facilitates the designer and developer experience, enabling them to create universal interfaces perfectly aligned with the business strategy of [Adeo](https://www.adeo.com/).
14
36
 
15
- > PREREQUISITE: To allow you to include and use our package in your library, we assume that you are using a module bundlers like [Webpack](https://webpack.js.org/), [Parcel](https://parceljs.org/) or [rollup.js](https://rollupjs.org/guide/en/), or that your project has been initiated with [Vue CLI](https://cli.vuejs.org/). Otherwise, the package might not work.
37
+ Learn more about the vision and guidelines by visiting the [main documentation website](https://mozaic.adeo.cloud/).
16
38
 
17
- In order to use **MozaicVue** in your **Vue.js** project, you must first install the npm package:
39
+ ## πŸ“¦ Install
18
40
 
19
- ```shell
20
- $ npm install @mozaic-ds/vue --save --save-exact
21
- ```
41
+ All the available components are showcased in our [Storybook](https://master--641e94a45750cc9b0f477973.chromatic.com/).
22
42
 
23
- Or with **Yarn**:
43
+ To install `mozaic-vue` in your project, you will need to run the following command using `npm`:
24
44
 
25
45
  ```shell
26
- $ yarn add @mozaic-ds/vue -E
46
+ $ npm i @mozaic-ds/vue@beta
27
47
  ```
28
48
 
29
- ## Usage
30
-
31
- **MozaicVue** is a component library that responds to the different usage contexts proposed by **Vue.js**.
32
-
33
- Indeed, as indicated in [its documentation](https://vuejs.org/v2/guide/components-registration.html#Global-Registration), **Vue.js** proposes to register/use the components in a global or local way:
34
-
35
- - The global import allows you to make your components accessible throughout your application
36
- - The local import, on the other hand, makes a component accessible only in the part of the application that uses it
37
-
38
- > Learn more about the notion of global/local registration on [the Vue.js documentation](https://vuejs.org/v2/guide/components-registration.html#Global-Registration)
39
-
40
- ### Global import
41
-
42
- #### Import all components
43
-
44
- The easiest way to start using **MozaicVue**, is to import all the components and make them available throughout your application.
45
-
46
- To do this, in your entry point file, insert the following code:
47
-
48
- ```javascript
49
- // In the entry point file of your application - usually src/main.js
50
-
51
- import MozaicVue from '@mozaic-ds/vue';
52
- import '@mozaic-ds/vue/dist/mozaic-vue.css'; // Import the css of all components (158ko)
49
+ Or with **Yarn**:
53
50
 
54
- Vue.use(MozaicVue);
51
+ ```shell
52
+ $ yarn add @mozaic-ds/vue@beta
55
53
  ```
56
54
 
57
- #### Import only the desired components
55
+ ## πŸ“ Usage
58
56
 
59
- If you do not want to use all the components of the library, but only some of them, you can proceed as follows:
57
+ Import the styles
60
58
 
61
- ```javascript
62
- // In the entry point file of your application - usually src/main.js
59
+ ```typescript
60
+ // main.ts
63
61
 
64
- import { MAccordion, MButton } from '@mozaic-ds/vue';
65
- import '@mozaic-ds/vue/dist/mozaic-vue.css'; // Import the css of all components (158ko)
66
-
67
- Vue.use(MAccordion);
68
- Vue.use(MButton);
62
+ import '@mozaic-ds/vue/style.css';
69
63
  ```
70
64
 
71
- > NOTE: As you can see, the way to import the CSS is the same for both the import of individual components and the import of all components. Indeed, it is not possible to split the generated CSS file. If you want to import only the CSS related to your individual component import, it may be better to use the local import method described below.
72
-
73
- #### Use the component
74
-
75
- That's it! You are now able to use the **Mozaic** components in your **Vue.js** project.
65
+ To import and use a component, you can proceed as follows:
76
66
 
77
- Simply call the component of your choice at the desired location anywhere in your application:
67
+ ```vue
68
+ <script setup lang="ts">
69
+ import { MButton } from '@mozaic-ds/vue';
70
+ </script>
78
71
 
79
- ```html
80
- <m-button label="Default button" />
72
+ <template>
73
+ <MButton label="This is a Mozaic Button" />
74
+ </template>
81
75
  ```
82
76
 
83
- ### Local import
84
-
85
- If you want to import a component locally, you can proceed as follows:
77
+ Find the complete list of [our components](https://github.com/adeo/mozaic-vue/tree/master/src/components).
86
78
 
87
- ```javascript
88
- // In one the .vue file of your application
79
+ ## πŸ“° Changelog
89
80
 
90
- <script>
91
- ...
92
- import { MButton } from '@mozaic-ds/vue/src';
93
- ...
94
- components: {
95
- MButton,
96
- },
97
- ...
98
- </script>
99
- ```
81
+ Releases are managed with **GitHub Releases**, including the changelog for each one.<br/>
82
+ Access to the [Changelog](/CHANGELOG.md) to find out about the detailed changes to each release.
100
83
 
101
- By doing this import you will be able to get the HTML & JS part of the desired **Mozaic** component.
84
+ ## πŸ“£ Stay in touch
102
85
 
103
- #### About the CSS of locally imported components
86
+ - Join the [#mozaic-vue](https://app.slack.com/client/T4R6RCZFA/CN4K3A99R/) channel on **Slack**
87
+ - Join the [#mozaic-support](https://app.slack.com/client/T4R6RCZFA/CKQJZL7C4/) channel on **Slack**
88
+ - Join our [Workplace group](https://adeo.workplace.com/groups/427492661454646/)
104
89
 
105
- Concerning the style part, you should know that Mozaic components embed their styles in **SCSS** format; and that **Mozaic** uses **PostCSS** to interpret and build the final CSS.
90
+ ## 🐞 Bugs and feature requests
106
91
 
107
- Therefore, for your local import to work perfectly, **you still need to perform one last step**, namely to create a `vue.config.js` file at the root of your project.
92
+ Have a bug or a feature request?<br/>
93
+ Please [open an issue](https://github.com/adeo/mozaic-styles/issues/new/choose) and use the template associated with your request.
108
94
 
109
- Inside this file, you will have to configure your module bundler to use **PostCSS** to interpret the **SCSS** of **Mozaic** components.
95
+ However, if you are able to contribute and fix bugs, build new features, or help to improve the project documentation, feel free to do it! _(more information below)_
110
96
 
111
- For that, we recommend you to get the code present in the following file: [Custom vue.config.js](https://github.com/adeo/mozaic-vue/blob/master/packages/vue/vue.config.js)
97
+ ## ✍️ Contributing
112
98
 
113
- Then insert it in your `vue.config.js` file.
99
+ Setup the project to start contributing.
114
100
 
115
- #### Use the component
101
+ ```
102
+ // Clone mozaic-vue repo
103
+ $ git clone git@github.com:adeo/mozaic-vue.git
116
104
 
117
- That's it! You are now able to use the **Mozaic** components in your **Vue.js** project.
105
+ // Go to the cloned directory
106
+ $ cd mozaic-vue
118
107
 
119
- Simply call the component as follows:
108
+ // Checkout the branch you are working on
109
+ $ git checkout <branch name>
120
110
 
121
- ```html
122
- <m-button label="Default button" />
111
+ // Install dependencies
112
+ $ npm install
123
113
  ```
114
+
115
+ We're always looking for contributors to help us fix bugs, build features, or help us improve the documentation. If you're intersted check out our [Code of Conduct](https://github.com/adeo/mozaic-vue/wiki/Code-of-conduct) and [Contribution Guide](https://github.com/adeo/mozaic-vue/blob/master/CONTRIBUTING.md).
116
+
117
+ ## πŸ§‘β€πŸ’» Contributors
118
+
119
+ **Owners**
120
+
121
+ **[ADEO Design system Team](https://github.com/orgs/adeo/teams/adeo-design-system)**
122
+
123
+ **Maintainers**
124
+
125
+ - **[Mohamed Mokhtari](https://github.com/mohamedMok)**
126
+ - **[TrΓ©sor Iloyi](https://github.com/tiloyi)**
127
+ - **[David Martin](https://github.com/dmartinds)**
128
+
129
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
130
+
131
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
132
+ <!-- prettier-ignore-start -->
133
+ <!-- markdownlint-disable -->
134
+ <table>
135
+ <tbody>
136
+ <tr>
137
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/ThomasRumasLM"><img src="https://avatars.githubusercontent.com/u/52402267?v=4?s=100" width="100px;" alt="Rumas Thomas"/><br /><sub><b>Rumas Thomas</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=ThomasRumasLM" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=ThomasRumasLM" title="Documentation">πŸ“–</a></td>
138
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/nicoinch"><img src="https://avatars.githubusercontent.com/u/710410?v=4?s=100" width="100px;" alt="Nicolas Inchauspe"/><br /><sub><b>Nicolas Inchauspe</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=nicoinch" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=nicoinch" title="Documentation">πŸ“–</a></td>
139
+ <td align="center" valign="top" width="16.66%"><a href="https://www.linkedin.com/in/fgruchala"><img src="https://avatars.githubusercontent.com/u/12196721?v=4?s=100" width="100px;" alt="FranΓ§ois GRUCHALA"/><br /><sub><b>FranΓ§ois GRUCHALA</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=fgruchala" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Afgruchala" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Afgruchala" title="Reviewed Pull Requests">πŸ‘€</a></td>
140
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/ashleymoogle"><img src="https://avatars.githubusercontent.com/u/5888631?v=4?s=100" width="100px;" alt="Romain 'Ashley' Bonhomme"/><br /><sub><b>Romain 'Ashley' Bonhomme</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=ashleymoogle" title="Code">πŸ’»</a></td>
141
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/louis-triquet-lm"><img src="https://avatars.githubusercontent.com/u/54812386?v=4?s=100" width="100px;" alt="louis-triquet-lm"/><br /><sub><b>louis-triquet-lm</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Alouis-triquet-lm" title="Bug reports">πŸ›</a></td>
142
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/FHuriere"><img src="https://avatars.githubusercontent.com/u/77064421?v=4?s=100" width="100px;" alt="Freddy HuriΓ¨re"/><br /><sub><b>Freddy HuriΓ¨re</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=FHuriere" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=FHuriere" title="Documentation">πŸ“–</a> <a href="#ideas-FHuriere" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AFHuriere" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AFHuriere" title="Bug reports">πŸ›</a></td>
143
+ </tr>
144
+ <tr>
145
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Teledor"><img src="https://avatars.githubusercontent.com/u/1482017?v=4?s=100" width="100px;" alt="Teledor"/><br /><sub><b>Teledor</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=Teledor" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ATeledor" title="Bug reports">πŸ›</a> <a href="#ideas-Teledor" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
146
+ <td align="center" valign="top" width="16.66%"><a href="https://stackoverflow.com/users/5249363/jeanmel?tab=profile"><img src="https://avatars.githubusercontent.com/u/7600006?v=4?s=100" width="100px;" alt="StΓ©phane Eintrazi"/><br /><sub><b>StΓ©phane Eintrazi</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=stephane-ein" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Astephane-ein" title="Bug reports">πŸ›</a></td>
147
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/pilouski-adeo"><img src="https://avatars.githubusercontent.com/u/61780533?v=4?s=100" width="100px;" alt="pilouski-adeo"/><br /><sub><b>pilouski-adeo</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Apilouski-adeo" title="Bug reports">πŸ›</a></td>
148
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/guillaumedeblock"><img src="https://avatars.githubusercontent.com/u/88312919?v=4?s=100" width="100px;" alt="guillaumedeblock"/><br /><sub><b>guillaumedeblock</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aguillaumedeblock" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Aguillaumedeblock" title="Reviewed Pull Requests">πŸ‘€</a></td>
149
+ <td align="center" valign="top" width="16.66%"><a href="http://tetraed.re"><img src="https://avatars.githubusercontent.com/u/5341141?v=4?s=100" width="100px;" alt="Vincent"/><br /><sub><b>Vincent</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Avqoph" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=vqoph" title="Code">πŸ’»</a></td>
150
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/ysellamiLM"><img src="https://avatars.githubusercontent.com/u/55577803?v=4?s=100" width="100px;" alt="ysellamiLM"/><br /><sub><b>ysellamiLM</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=ysellamiLM" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AysellamiLM" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AysellamiLM" title="Reviewed Pull Requests">πŸ‘€</a></td>
151
+ </tr>
152
+ <tr>
153
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/HippolyteQuief"><img src="https://avatars.githubusercontent.com/u/81748457?v=4?s=100" width="100px;" alt="HippolyteQuief"/><br /><sub><b>HippolyteQuief</b></sub></a><br /><a href="#ideas-HippolyteQuief" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AHippolyteQuief" title="Reviewed Pull Requests">πŸ‘€</a></td>
154
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/potpot59"><img src="https://avatars.githubusercontent.com/u/11508710?v=4?s=100" width="100px;" alt="Pierre Pottier"/><br /><sub><b>Pierre Pottier</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=potpot59" title="Code">πŸ’»</a></td>
155
+ <td align="center" valign="top" width="16.66%"><a href="https://iamludal.fr"><img src="https://avatars.githubusercontent.com/u/44783088?v=4?s=100" width="100px;" alt="Ludal"/><br /><sub><b>Ludal</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=iamludal" title="Documentation">πŸ“–</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aiamludal" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Aiamludal" title="Reviewed Pull Requests">πŸ‘€</a></td>
156
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/johannreboulleauLM"><img src="https://avatars.githubusercontent.com/u/51782007?v=4?s=100" width="100px;" alt="johannreboulleauLM"/><br /><sub><b>johannreboulleauLM</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=johannreboulleauLM" title="Documentation">πŸ“–</a></td>
157
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/jtelmoudy"><img src="https://avatars.githubusercontent.com/u/55196509?v=4?s=100" width="100px;" alt="jtelmoudy"/><br /><sub><b>jtelmoudy</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=jtelmoudy" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ajtelmoudy" title="Bug reports">πŸ›</a></td>
158
+ <td align="center" valign="top" width="16.66%"><a href="https://praz.dev"><img src="https://avatars.githubusercontent.com/u/1631886?v=4?s=100" width="100px;" alt="PraZ"/><br /><sub><b>PraZ</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=prazdevs" title="Code">πŸ’»</a> <a href="#ideas-prazdevs" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Aprazdevs" title="Reviewed Pull Requests">πŸ‘€</a></td>
159
+ </tr>
160
+ <tr>
161
+ <td align="center" valign="top" width="16.66%"><a href="https://alexis-degryse.com"><img src="https://avatars.githubusercontent.com/u/6780374?v=4?s=100" width="100px;" alt="twogrey"/><br /><sub><b>twogrey</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=twogrey" title="Code">πŸ’»</a></td>
162
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/aurelienclauss"><img src="https://avatars.githubusercontent.com/u/13923315?v=4?s=100" width="100px;" alt="AurΓ©lien Clauss"/><br /><sub><b>AurΓ©lien Clauss</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aaurelienclauss" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=aurelienclauss" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=aurelienclauss" title="Documentation">πŸ“–</a></td>
163
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/JoachimDorchies"><img src="https://avatars.githubusercontent.com/u/10122784?v=4?s=100" width="100px;" alt="Joachim Dorchies"/><br /><sub><b>Joachim Dorchies</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AJoachimDorchies" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=JoachimDorchies" title="Documentation">πŸ“–</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=JoachimDorchies" title="Code">πŸ’»</a></td>
164
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/thomas-lichtevoet"><img src="https://avatars.githubusercontent.com/u/74542694?v=4?s=100" width="100px;" alt="thomas-lichtevoet"/><br /><sub><b>thomas-lichtevoet</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Athomas-lichtevoet" title="Bug reports">πŸ›</a></td>
165
+ <td align="center" valign="top" width="16.66%"><a href="https://www.milc.fr"><img src="https://avatars.githubusercontent.com/u/1206811?v=4?s=100" width="100px;" alt="FrΓ©dΓ©rique Milc"/><br /><sub><b>FrΓ©dΓ©rique Milc</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Amilc" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=milc" title="Code">πŸ’»</a></td>
166
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/jemarray"><img src="https://avatars.githubusercontent.com/u/18439517?v=4?s=100" width="100px;" alt="jemarray"/><br /><sub><b>jemarray</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ajemarray" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Ajemarray" title="Reviewed Pull Requests">πŸ‘€</a></td>
167
+ </tr>
168
+ <tr>
169
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Yujian-MA"><img src="https://avatars.githubusercontent.com/u/33433399?v=4?s=100" width="100px;" alt="Yujian-MA"/><br /><sub><b>Yujian-MA</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AYujian-MA" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AYujian-MA" title="Reviewed Pull Requests">πŸ‘€</a></td>
170
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Xa3lis"><img src="https://avatars.githubusercontent.com/u/8726129?v=4?s=100" width="100px;" alt="Valerian Crasnier"/><br /><sub><b>Valerian Crasnier</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AXa3lis" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=Xa3lis" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AXa3lis" title="Reviewed Pull Requests">πŸ‘€</a></td>
171
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/vincent314"><img src="https://avatars.githubusercontent.com/u/3215889?v=4?s=100" width="100px;" alt="vincent314"/><br /><sub><b>vincent314</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Avincent314" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Avincent314" title="Reviewed Pull Requests">πŸ‘€</a></td>
172
+ <td align="center" valign="top" width="16.66%"><a href="http://gillespie59.github.io/"><img src="https://avatars.githubusercontent.com/u/555768?v=4?s=100" width="100px;" alt="Emmanuel DEMEY"/><br /><sub><b>Emmanuel DEMEY</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=EmmanuelDemey" title="Documentation">πŸ“–</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=EmmanuelDemey" title="Code">πŸ’»</a></td>
173
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/lmjonathan"><img src="https://avatars.githubusercontent.com/u/73292505?v=4?s=100" width="100px;" alt="lmjonathan"/><br /><sub><b>lmjonathan</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Almjonathan" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Almjonathan" title="Reviewed Pull Requests">πŸ‘€</a></td>
174
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/20000168"><img src="https://avatars.githubusercontent.com/u/56389156?v=4?s=100" width="100px;" alt="Dutilleul Anne"/><br /><sub><b>Dutilleul Anne</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3A20000168" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3A20000168" title="Reviewed Pull Requests">πŸ‘€</a></td>
175
+ </tr>
176
+ <tr>
177
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AhmedELB1"><img src="https://avatars.githubusercontent.com/u/76695154?v=4?s=100" width="100px;" alt="AhmedELB1"/><br /><sub><b>AhmedELB1</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAhmedELB1" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AAhmedELB1" title="Reviewed Pull Requests">πŸ‘€</a></td>
178
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/LahousteEmile"><img src="https://avatars.githubusercontent.com/u/102166995?v=4?s=100" width="100px;" alt="LahousteEmile"/><br /><sub><b>LahousteEmile</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ALahousteEmile" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ALahousteEmile" title="Reviewed Pull Requests">πŸ‘€</a></td>
179
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/BenjaminRedantAdeo"><img src="https://avatars.githubusercontent.com/u/104772991?v=4?s=100" width="100px;" alt="BenjaminRedantAdeo"/><br /><sub><b>BenjaminRedantAdeo</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ABenjaminRedantAdeo" title="Bug reports">πŸ›</a></td>
180
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Sora952"><img src="https://avatars.githubusercontent.com/u/59966470?v=4?s=100" width="100px;" alt="Sora952"/><br /><sub><b>Sora952</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ASora952" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ASora952" title="Reviewed Pull Requests">πŸ‘€</a></td>
181
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/DonovanAdeo"><img src="https://avatars.githubusercontent.com/u/71758563?v=4?s=100" width="100px;" alt="DonovanAdeo"/><br /><sub><b>DonovanAdeo</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ADonovanAdeo" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ADonovanAdeo" title="Reviewed Pull Requests">πŸ‘€</a></td>
182
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/RMayeux"><img src="https://avatars.githubusercontent.com/u/53652890?v=4?s=100" width="100px;" alt="RΓ©mi Mayeux"/><br /><sub><b>RΓ©mi Mayeux</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ARMayeux" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=RMayeux" title="Code">πŸ’»</a></td>
183
+ </tr>
184
+ <tr>
185
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/jeromelemaire"><img src="https://avatars.githubusercontent.com/u/22763438?v=4?s=100" width="100px;" alt="jeromelemaire"/><br /><sub><b>jeromelemaire</b></sub></a><br /><a href="#security-jeromelemaire" title="Security">πŸ›‘οΈ</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Ajeromelemaire" title="Reviewed Pull Requests">πŸ‘€</a></td>
186
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AlexandreVersmee"><img src="https://avatars.githubusercontent.com/u/6217859?v=4?s=100" width="100px;" alt="Alexandre VersmΓ©e"/><br /><sub><b>Alexandre VersmΓ©e</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAlexandreVersmee" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AAlexandreVersmee" title="Reviewed Pull Requests">πŸ‘€</a></td>
187
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AlexisBoulongneAdeo"><img src="https://avatars.githubusercontent.com/u/82802848?v=4?s=100" width="100px;" alt="AlexisBoulongneAdeo"/><br /><sub><b>AlexisBoulongneAdeo</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAlexisBoulongneAdeo" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AAlexisBoulongneAdeo" title="Reviewed Pull Requests">πŸ‘€</a></td>
188
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/ismail-lmfr"><img src="https://avatars.githubusercontent.com/u/57006786?v=4?s=100" width="100px;" alt="Ismail HACHOUM"/><br /><sub><b>Ismail HACHOUM</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=ismail-lmfr" title="Code">πŸ’»</a></td>
189
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/samuelpoudroux"><img src="https://avatars.githubusercontent.com/u/43468769?v=4?s=100" width="100px;" alt="Samuel Poudroux"/><br /><sub><b>Samuel Poudroux</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Asamuelpoudroux" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=samuelpoudroux" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=samuelpoudroux" title="Documentation">πŸ“–</a></td>
190
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/mmasure"><img src="https://avatars.githubusercontent.com/u/6698841?v=4?s=100" width="100px;" alt="Marc Masure"/><br /><sub><b>Marc Masure</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ammasure" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=mmasure" title="Code">πŸ’»</a></td>
191
+ </tr>
192
+ <tr>
193
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Maksime59"><img src="https://avatars.githubusercontent.com/u/110107260?v=4?s=100" width="100px;" alt="Maksnaga"/><br /><sub><b>Maksnaga</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=Maksime59" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=Maksime59" title="Documentation">πŸ“–</a></td>
194
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/yahiabrahimi"><img src="https://avatars.githubusercontent.com/u/82805284?v=4?s=100" width="100px;" alt="Yahia"/><br /><sub><b>Yahia</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ayahiabrahimi" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Ayahiabrahimi" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=yahiabrahimi" title="Code">πŸ’»</a> <a href="#ideas-yahiabrahimi" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
195
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/matthieu-castier"><img src="https://avatars.githubusercontent.com/u/52412589?v=4?s=100" width="100px;" alt="Michel"/><br /><sub><b>Michel</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=matthieu-castier" title="Code">πŸ’»</a> <a href="#a11y-matthieu-castier" title="Accessibility">️️️️♿️</a></td>
196
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/NicolasDiarra-LMFR"><img src="https://avatars.githubusercontent.com/u/94369347?v=4?s=100" width="100px;" alt="Nicolas Diarra"/><br /><sub><b>Nicolas Diarra</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ANicolasDiarra-LMFR" title="Reviewed Pull Requests">πŸ‘€</a></td>
197
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/SamiLejeune"><img src="https://avatars.githubusercontent.com/u/36694885?v=4?s=100" width="100px;" alt="SamiLejeune"/><br /><sub><b>SamiLejeune</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=SamiLejeune" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ASamiLejeune" title="Reviewed Pull Requests">πŸ‘€</a></td>
198
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/cdelannoy-leroymerlin"><img src="https://avatars.githubusercontent.com/u/55577142?v=4?s=100" width="100px;" alt="Corentin Delannoy"/><br /><sub><b>Corentin Delannoy</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Acdelannoy-leroymerlin" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=cdelannoy-leroymerlin" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=cdelannoy-leroymerlin" title="Documentation">πŸ“–</a> <a href="#example-cdelannoy-leroymerlin" title="Examples">πŸ’‘</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=cdelannoy-leroymerlin" title="Tests">⚠️</a></td>
199
+ </tr>
200
+ <tr>
201
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/pinguet62"><img src="https://avatars.githubusercontent.com/u/2929786?v=4?s=100" width="100px;" alt="PINGUET Julien"/><br /><sub><b>PINGUET Julien</b></sub></a><br /><a href="#ideas-pinguet62" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="#mentoring-pinguet62" title="Mentoring">πŸ§‘β€πŸ«</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Apinguet62" title="Reviewed Pull Requests">πŸ‘€</a></td>
202
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/maximilienBetourne"><img src="https://avatars.githubusercontent.com/u/83946427?v=4?s=100" width="100px;" alt="maximilienBetourne"/><br /><sub><b>maximilienBetourne</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AmaximilienBetourne" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AmaximilienBetourne" title="Reviewed Pull Requests">πŸ‘€</a></td>
203
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/jean-dusenne"><img src="https://avatars.githubusercontent.com/u/102587357?v=4?s=100" width="100px;" alt="jean-dusenne"/><br /><sub><b>jean-dusenne</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ajean-dusenne" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=jean-dusenne" title="Code">πŸ’»</a> <a href="#example-jean-dusenne" title="Examples">πŸ’‘</a></td>
204
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/landscht"><img src="https://avatars.githubusercontent.com/u/32072207?v=4?s=100" width="100px;" alt="Tony Landschoot"/><br /><sub><b>Tony Landschoot</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Alandscht" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=landscht" title="Code">πŸ’»</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=landscht" title="Documentation">πŸ“–</a></td>
205
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/mdebieAdeo"><img src="https://avatars.githubusercontent.com/u/103485932?v=4?s=100" width="100px;" alt="Matthias De Bie"/><br /><sub><b>Matthias De Bie</b></sub></a><br /><a href="#mentoring-mdebieAdeo" title="Mentoring">πŸ§‘β€πŸ«</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AmdebieAdeo" title="Reviewed Pull Requests">πŸ‘€</a> <a href="#example-mdebieAdeo" title="Examples">πŸ’‘</a> <a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AmdebieAdeo" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=mdebieAdeo" title="Code">πŸ’»</a></td>
206
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/smailariouk"><img src="https://avatars.githubusercontent.com/u/55575643?v=4?s=100" width="100px;" alt="smailariouk"/><br /><sub><b>smailariouk</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Asmailariouk" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Asmailariouk" title="Reviewed Pull Requests">πŸ‘€</a></td>
207
+ </tr>
208
+ <tr>
209
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AgnesLaur"><img src="https://avatars.githubusercontent.com/u/114142978?v=4?s=100" width="100px;" alt="AgnesLaur"/><br /><sub><b>AgnesLaur</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAgnesLaur" title="Bug reports">πŸ›</a></td>
210
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/quentinlebars"><img src="https://avatars.githubusercontent.com/u/45590817?v=4?s=100" width="100px;" alt="Quentin"/><br /><sub><b>Quentin</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aquentinlebars" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=quentinlebars" title="Code">πŸ’»</a></td>
211
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Maxence-Philip"><img src="https://avatars.githubusercontent.com/u/60602930?v=4?s=100" width="100px;" alt="Maxence-Philip"/><br /><sub><b>Maxence-Philip</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=Maxence-Philip" title="Code">πŸ’»</a> <a href="#example-Maxence-Philip" title="Examples">πŸ’‘</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AMaxence-Philip" title="Reviewed Pull Requests">πŸ‘€</a></td>
212
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/gregmille"><img src="https://avatars.githubusercontent.com/u/41426894?v=4?s=100" width="100px;" alt="gregmille"/><br /><sub><b>gregmille</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Agregmille" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Agregmille" title="Reviewed Pull Requests">πŸ‘€</a></td>
213
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/cmontois"><img src="https://avatars.githubusercontent.com/u/12199643?v=4?s=100" width="100px;" alt="ClΓ©ment"/><br /><sub><b>ClΓ©ment</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Acmontois" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Acmontois" title="Reviewed Pull Requests">πŸ‘€</a> <a href="#ideas-cmontois" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
214
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/cmnt"><img src="https://avatars.githubusercontent.com/u/5527851?v=4?s=100" width="100px;" alt="ClΓ©ment Dufour"/><br /><sub><b>ClΓ©ment Dufour</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Acmnt" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Acmnt" title="Reviewed Pull Requests">πŸ‘€</a></td>
215
+ </tr>
216
+ <tr>
217
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/ChrisHendrX"><img src="https://avatars.githubusercontent.com/u/29543049?v=4?s=100" width="100px;" alt="Christophe DRAG"/><br /><sub><b>Christophe DRAG</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AChrisHendrX" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AChrisHendrX" title="Reviewed Pull Requests">πŸ‘€</a></td>
218
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Maciej2205"><img src="https://avatars.githubusercontent.com/u/91657634?v=4?s=100" width="100px;" alt="Maciej2205"/><br /><sub><b>Maciej2205</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AMaciej2205" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AMaciej2205" title="Reviewed Pull Requests">πŸ‘€</a></td>
219
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/jeremy-thach"><img src="https://avatars.githubusercontent.com/u/77272361?v=4?s=100" width="100px;" alt="jeremy-thach"/><br /><sub><b>jeremy-thach</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ajeremy-thach" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Ajeremy-thach" title="Reviewed Pull Requests">πŸ‘€</a></td>
220
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/aleturolla"><img src="https://avatars.githubusercontent.com/u/17066504?v=4?s=100" width="100px;" alt="aleturolla"/><br /><sub><b>aleturolla</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aaleturolla" title="Bug reports">πŸ›</a> <a href="#ideas-aleturolla" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Aaleturolla" title="Reviewed Pull Requests">πŸ‘€</a></td>
221
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/dpallasidis"><img src="https://avatars.githubusercontent.com/u/146719136?v=4?s=100" width="100px;" alt="dpallasidis"/><br /><sub><b>dpallasidis</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Adpallasidis" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Adpallasidis" title="Reviewed Pull Requests">πŸ‘€</a></td>
222
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/theonoelgithub"><img src="https://avatars.githubusercontent.com/u/44174700?v=4?s=100" width="100px;" alt="ThΓ©o"/><br /><sub><b>ThΓ©o</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Atheonoelgithub" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Atheonoelgithub" title="Reviewed Pull Requests">πŸ‘€</a></td>
223
+ </tr>
224
+ <tr>
225
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/LeoneAlexandra"><img src="https://avatars.githubusercontent.com/u/125893967?v=4?s=100" width="100px;" alt="LeoneAlexandra"/><br /><sub><b>LeoneAlexandra</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3ALeoneAlexandra" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3ALeoneAlexandra" title="Reviewed Pull Requests">πŸ‘€</a></td>
226
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/yazid552308"><img src="https://avatars.githubusercontent.com/u/61196443?v=4?s=100" width="100px;" alt="yazid farhaoui"/><br /><sub><b>yazid farhaoui</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Ayazid552308" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Ayazid552308" title="Reviewed Pull Requests">πŸ‘€</a></td>
227
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/GaelMei"><img src="https://avatars.githubusercontent.com/u/94169893?v=4?s=100" width="100px;" alt="GaelMei"/><br /><sub><b>GaelMei</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AGaelMei" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3AGaelMei" title="Reviewed Pull Requests">πŸ‘€</a></td>
228
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Tang59"><img src="https://avatars.githubusercontent.com/u/95357040?v=4?s=100" width="100px;" alt="Tanguy Deshayes"/><br /><sub><b>Tanguy Deshayes</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=Tang59" title="Code">πŸ’»</a></td>
229
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AdeoRemiDoolaeghe"><img src="https://avatars.githubusercontent.com/u/150665596?v=4?s=100" width="100px;" alt="AdeoRemiDoolaeghe"/><br /><sub><b>AdeoRemiDoolaeghe</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAdeoRemiDoolaeghe" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=AdeoRemiDoolaeghe" title="Code">πŸ’»</a> <a href="#a11y-AdeoRemiDoolaeghe" title="Accessibility">️️️️♿️</a></td>
230
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/sbrauch"><img src="https://avatars.githubusercontent.com/u/104427101?v=4?s=100" width="100px;" alt="sinabrauch"/><br /><sub><b>sinabrauch</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Asbrauch" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Asbrauch" title="Reviewed Pull Requests">πŸ‘€</a></td>
231
+ </tr>
232
+ <tr>
233
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/Mcfloy"><img src="https://avatars.githubusercontent.com/u/10086193?v=4?s=100" width="100px;" alt="Lucas Perreau"/><br /><sub><b>Lucas Perreau</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AMcfloy" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=Mcfloy" title="Code">πŸ’»</a></td>
234
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/bloomabir"><img src="https://avatars.githubusercontent.com/u/91196824?v=4?s=100" width="100px;" alt="Abir"/><br /><sub><b>Abir</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Abloomabir" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Abloomabir" title="Reviewed Pull Requests">πŸ‘€</a></td>
235
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/AlexandreTrouc"><img src="https://avatars.githubusercontent.com/u/139141516?v=4?s=100" width="100px;" alt="AlexandreTrouc"/><br /><sub><b>AlexandreTrouc</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3AAlexandreTrouc" title="Bug reports">πŸ›</a></td>
236
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/arepresas"><img src="https://avatars.githubusercontent.com/u/24484288?v=4?s=100" width="100px;" alt="Abraham Represas"/><br /><sub><b>Abraham Represas</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=arepresas" title="Code">πŸ’»</a></td>
237
+ <td align="center" valign="top" width="16.66%"><a href="https://srizza93.github.io/portfolio-vite/#/"><img src="https://avatars.githubusercontent.com/u/63718887?v=4?s=100" width="100px;" alt="Simone"/><br /><sub><b>Simone</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/commits?author=Srizza93" title="Code">πŸ’»</a></td>
238
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/valentintartare"><img src="https://avatars.githubusercontent.com/u/17853582?v=4?s=100" width="100px;" alt="TARTARE Valentin"/><br /><sub><b>TARTARE Valentin</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Avalentintartare" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/pulls?q=is%3Apr+reviewed-by%3Avalentintartare" title="Reviewed Pull Requests">πŸ‘€</a></td>
239
+ </tr>
240
+ <tr>
241
+ <td align="center" valign="top" width="16.66%"><a href="http://www.asd-developer.com"><img src="https://avatars.githubusercontent.com/u/53093858?v=4?s=100" width="100px;" alt="AndrΓ© Duarte"/><br /><sub><b>AndrΓ© Duarte</b></sub></a><br /><a href="https://github.com/adeo/mozaic-vue/issues?q=author%3Aasd-developer" title="Bug reports">πŸ›</a> <a href="https://github.com/adeo/mozaic-vue/commits?author=asd-developer" title="Code">πŸ’»</a></td>
242
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/EddieVallier"><img src="https://avatars.githubusercontent.com/u/126583416?v=4?s=100" width="100px;" alt="EddieVallier"/><br /><sub><b>EddieVallier</b></sub></a><br /><a href="#a11y-EddieVallier" title="Accessibility">️️️️♿️</a></td>
243
+ </tr>
244
+ </tbody>
245
+ <tfoot>
246
+ <tr>
247
+ <td align="center" size="13px" colspan="6">
248
+ <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
249
+ <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
250
+ </img>
251
+ </td>
252
+ </tr>
253
+ </tfoot>
254
+ </table>
255
+
256
+ <!-- markdownlint-restore -->
257
+ <!-- prettier-ignore-end -->
258
+
259
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
260
+
261
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
262
+
263
+ ## πŸ“„ Licensing
264
+
265
+ This project is licensed under the Apache V2 License. See [LICENSE](LICENSE) for more information.