@mozaic-ds/vue 0.17.0 → 0.19.1-beta.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 (52) hide show
  1. package/README.md +2 -2
  2. package/dist/demo.html +1 -10
  3. package/dist/mozaic-vue.adeo.css +44 -1
  4. package/dist/mozaic-vue.adeo.umd.js +7590 -24558
  5. package/dist/mozaic-vue.common.js +7606 -24575
  6. package/dist/mozaic-vue.common.js.map +1 -1
  7. package/dist/mozaic-vue.css +1 -1
  8. package/dist/mozaic-vue.umd.js +7590 -24558
  9. package/dist/mozaic-vue.umd.js.map +1 -1
  10. package/dist/mozaic-vue.umd.min.js +1 -1
  11. package/dist/mozaic-vue.umd.min.js.map +1 -1
  12. package/package.json +21 -21
  13. package/src/components/accordion/MAccordion.vue +1 -1
  14. package/src/components/autocomplete/MAutocomplete.vue +3 -3
  15. package/src/components/breadcrumb/MBreadcrumb.vue +1 -1
  16. package/src/components/button/MButton.vue +1 -1
  17. package/src/components/datatable/MDataTable.vue +1 -3
  18. package/src/components/fileuploader/MFileUploader.vue +1 -1
  19. package/src/components/icon/MIcon.vue +42 -19
  20. package/src/components/icon/icons.js +18887 -0
  21. package/src/components/layer/MLayer.vue +7 -1
  22. package/src/components/link/MLink.vue +1 -1
  23. package/src/components/listbox/MListBox.vue +1 -1
  24. package/src/components/notification/MNotification.vue +1 -1
  25. package/src/components/pagination/MPagination.vue +2 -2
  26. package/src/components/quantityselector/MQuantitySelector.vue +2 -2
  27. package/src/components/select/MSelect.vue +10 -0
  28. package/src/components/stepper/MStepper.vue +1 -1
  29. package/src/components/tabs/MTab.vue +1 -3
  30. package/src/components/textinput/MTextInput.vue +2 -2
  31. package/src/components/textinput/MTextInputIcon.vue +1 -1
  32. package/src/tokens/adeo/android/colors.xml +34 -23
  33. package/src/tokens/adeo/css/_variables.scss +34 -23
  34. package/src/tokens/adeo/css/root.scss +34 -23
  35. package/src/tokens/adeo/ios/StyleDictionaryColor.h +11 -0
  36. package/src/tokens/adeo/ios/StyleDictionaryColor.m +28 -17
  37. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +34 -23
  38. package/src/tokens/adeo/js/tokens.js +34 -23
  39. package/src/tokens/adeo/js/tokensObject.js +314 -46
  40. package/src/tokens/adeo/scss/_tokens.scss +53 -27
  41. package/dist/fonts/LeroyMerlinSans-Web-Italic.3f4e3fc6.woff2 +0 -0
  42. package/dist/fonts/LeroyMerlinSans-Web-Italic.d826f8b3.woff +0 -0
  43. package/dist/fonts/LeroyMerlinSans-Web-Light.1847746a.woff +0 -0
  44. package/dist/fonts/LeroyMerlinSans-Web-Light.c3d8a284.woff2 +0 -0
  45. package/dist/fonts/LeroyMerlinSans-Web-LightItalic.343f7e0c.woff +0 -0
  46. package/dist/fonts/LeroyMerlinSans-Web-LightItalic.f4bc7b4c.woff2 +0 -0
  47. package/dist/fonts/LeroyMerlinSans-Web-Regular.1631e1d1.woff +0 -0
  48. package/dist/fonts/LeroyMerlinSans-Web-Regular.f1fa0f56.woff2 +0 -0
  49. package/dist/fonts/LeroyMerlinSans-Web-SemiBold.44f32155.woff +0 -0
  50. package/dist/fonts/LeroyMerlinSans-Web-SemiBold.c1061939.woff2 +0 -0
  51. package/dist/fonts/LeroyMerlinSans-Web-SemiBoldItalic.083f0cc1.woff +0 -0
  52. package/dist/fonts/LeroyMerlinSans-Web-SemiBoldItalic.cce10920.woff2 +0 -0
package/README.md CHANGED
@@ -17,13 +17,13 @@ You can have an overview of each component of this library by visiting the dedic
17
17
  In order to use **MozaicVue** in your **Vue.js** project, you must first install the npm package:
18
18
 
19
19
  ```shell
20
- $ npm install --save @mozaic-ds/vue
20
+ $ npm install @mozaic-ds/vue --save --save-exact
21
21
  ```
22
22
 
23
23
  Or with **Yarn**:
24
24
 
25
25
  ```shell
26
- $ yarn add @mozaic-ds/vue
26
+ $ yarn add @mozaic-ds/vue -E
27
27
  ```
28
28
 
29
29
  ## Usage
package/dist/demo.html CHANGED
@@ -1,10 +1 @@
1
- <meta charset="utf-8">
2
- <title>vue demo</title>
3
- <script src="./mozaic-vue.adeo.umd.js"></script>
4
-
5
- <link rel="stylesheet" href="./mozaic-vue.adeo.css">
6
-
7
-
8
- <script>
9
- console.log(vue)
10
- </script>
1
+ <!doctype html><meta charset="utf-8"><title>vue demo</title><script src="./mozaic-vue.adeo.umd.js"></script><link rel="stylesheet" href="./mozaic-vue.adeo.css"><script>console.log(vue)</script>