@mozaic-ds/vue 0.32.2 → 0.33.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/dist/mozaic-vue.adeo.css +12 -12
- package/dist/mozaic-vue.adeo.umd.js +163 -315
- package/dist/mozaic-vue.common.js +163 -315
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +163 -315
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +2 -2
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +18 -18
- package/src/components/select/MSelect.vue +11 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mozaic-ds/vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "Vue.js implementation of Mozaic Design System",
|
|
5
5
|
"author": "Adeo - Mozaic Design System",
|
|
6
6
|
"scripts": {
|
|
@@ -24,33 +24,33 @@
|
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@mozaic-ds/css-dev-tools": "1.47.0",
|
|
27
|
-
"@mozaic-ds/icons": "1.
|
|
28
|
-
"@mozaic-ds/styles": "1.
|
|
27
|
+
"@mozaic-ds/icons": "1.49.0",
|
|
28
|
+
"@mozaic-ds/styles": "1.49.1",
|
|
29
29
|
"@mozaic-ds/web-fonts": "1.22.0",
|
|
30
|
-
"core-js": "^3.
|
|
31
|
-
"libphonenumber-js": "^1.10.
|
|
30
|
+
"core-js": "^3.26.1",
|
|
31
|
+
"libphonenumber-js": "^1.10.15",
|
|
32
32
|
"vue": "^2.6.14",
|
|
33
33
|
"vue-country-flag": "2.3.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@babel/core": "^7.
|
|
36
|
+
"@babel/core": "^7.20.5",
|
|
37
37
|
"@babel/eslint-parser": "^7.19.1",
|
|
38
38
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
39
|
-
"@vue/cli-plugin-babel": "~5.0.
|
|
40
|
-
"@vue/cli-service": "~5.0.
|
|
41
|
-
"@vue/compiler-sfc": "^3.2.
|
|
39
|
+
"@vue/cli-plugin-babel": "~5.0.8",
|
|
40
|
+
"@vue/cli-service": "~5.0.8",
|
|
41
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
42
42
|
"@vue/eslint-config-prettier": "^7.0.0",
|
|
43
43
|
"babel-eslint": "^10.1.0",
|
|
44
|
-
"eslint": "^8.
|
|
44
|
+
"eslint": "^8.29.0",
|
|
45
45
|
"eslint-config-prettier": "^8.5.0",
|
|
46
|
-
"eslint-plugin-vue": "^9.
|
|
47
|
-
"postcss": "^8.4.
|
|
48
|
-
"postcss-loader": "^7.0.
|
|
49
|
-
"postcss-scss": "^4.0.
|
|
50
|
-
"prettier": "^2.
|
|
51
|
-
"sass": "^1.
|
|
52
|
-
"sass-loader": "^13.
|
|
53
|
-
"vue-template-compiler": "^2.7.
|
|
46
|
+
"eslint-plugin-vue": "^9.8.0",
|
|
47
|
+
"postcss": "^8.4.19",
|
|
48
|
+
"postcss-loader": "^7.0.2",
|
|
49
|
+
"postcss-scss": "^4.0.6",
|
|
50
|
+
"prettier": "^2.8.1",
|
|
51
|
+
"sass": "^1.56.2",
|
|
52
|
+
"sass-loader": "^13.2.0",
|
|
53
|
+
"vue-template-compiler": "^2.7.14"
|
|
54
54
|
},
|
|
55
55
|
"bugs": {
|
|
56
56
|
"url": "https://github.com/adeo/mozaic-vue/issues"
|
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
:class="[setClasses, cssFieldElementClass]"
|
|
7
7
|
:value="getSelectValue"
|
|
8
8
|
:disabled="disabled"
|
|
9
|
-
|
|
10
|
-
v-on="$listeners"
|
|
9
|
+
v-on="inputListeners"
|
|
11
10
|
>
|
|
12
11
|
<option v-if="placeholder" value="" disabled="disabled">
|
|
13
12
|
-- {{ placeholder }} --
|
|
@@ -102,6 +101,16 @@ export default {
|
|
|
102
101
|
|
|
103
102
|
return classes;
|
|
104
103
|
},
|
|
104
|
+
|
|
105
|
+
inputListeners: function () {
|
|
106
|
+
// see => https://vuejs.org/v2/guide/components-custom-events.html#Binding-Native-Events-to-Components
|
|
107
|
+
var vm = this;
|
|
108
|
+
return Object.assign({}, this.$listeners, {
|
|
109
|
+
change: function (event) {
|
|
110
|
+
vm.onChange(event.target.value);
|
|
111
|
+
},
|
|
112
|
+
});
|
|
113
|
+
},
|
|
105
114
|
},
|
|
106
115
|
|
|
107
116
|
mounted() {
|