@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.
- package/README.md +2 -2
- package/dist/demo.html +1 -10
- package/dist/mozaic-vue.adeo.css +44 -1
- package/dist/mozaic-vue.adeo.umd.js +7590 -24558
- package/dist/mozaic-vue.common.js +7606 -24575
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +7590 -24558
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +21 -21
- package/src/components/accordion/MAccordion.vue +1 -1
- package/src/components/autocomplete/MAutocomplete.vue +3 -3
- package/src/components/breadcrumb/MBreadcrumb.vue +1 -1
- package/src/components/button/MButton.vue +1 -1
- package/src/components/datatable/MDataTable.vue +1 -3
- package/src/components/fileuploader/MFileUploader.vue +1 -1
- package/src/components/icon/MIcon.vue +42 -19
- package/src/components/icon/icons.js +18887 -0
- package/src/components/layer/MLayer.vue +7 -1
- package/src/components/link/MLink.vue +1 -1
- package/src/components/listbox/MListBox.vue +1 -1
- package/src/components/notification/MNotification.vue +1 -1
- package/src/components/pagination/MPagination.vue +2 -2
- package/src/components/quantityselector/MQuantitySelector.vue +2 -2
- package/src/components/select/MSelect.vue +10 -0
- package/src/components/stepper/MStepper.vue +1 -1
- package/src/components/tabs/MTab.vue +1 -3
- package/src/components/textinput/MTextInput.vue +2 -2
- package/src/components/textinput/MTextInputIcon.vue +1 -1
- package/src/tokens/adeo/android/colors.xml +34 -23
- package/src/tokens/adeo/css/_variables.scss +34 -23
- package/src/tokens/adeo/css/root.scss +34 -23
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +11 -0
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +28 -17
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +34 -23
- package/src/tokens/adeo/js/tokens.js +34 -23
- package/src/tokens/adeo/js/tokensObject.js +314 -46
- package/src/tokens/adeo/scss/_tokens.scss +53 -27
- package/dist/fonts/LeroyMerlinSans-Web-Italic.3f4e3fc6.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Italic.d826f8b3.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Light.1847746a.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Light.c3d8a284.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-LightItalic.343f7e0c.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-LightItalic.f4bc7b4c.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Regular.1631e1d1.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Regular.f1fa0f56.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBold.44f32155.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBold.c1061939.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBoldItalic.083f0cc1.woff +0 -0
- 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
|
|
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
|
-
|
|
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>
|