@mozaic-ds/vue 0.18.0 → 0.19.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/fonts/{LeroyMerlinSans-Web-Italic.3f4e3fc6.woff2 → LeroyMerlinSans-Web-Italic.1b652c01.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-Italic.d826f8b3.woff → LeroyMerlinSans-Web-Italic.e1daa96d.woff} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-Light.1847746a.woff → LeroyMerlinSans-Web-Light.abc49f3e.woff} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-Light.c3d8a284.woff2 → LeroyMerlinSans-Web-Light.fbea6009.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-LightItalic.343f7e0c.woff → LeroyMerlinSans-Web-LightItalic.01eca0b6.woff} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-LightItalic.f4bc7b4c.woff2 → LeroyMerlinSans-Web-LightItalic.b0c55b75.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-Regular.1631e1d1.woff → LeroyMerlinSans-Web-Regular.ad6adbe4.woff} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-Regular.f1fa0f56.woff2 → LeroyMerlinSans-Web-Regular.fbf22a5a.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-SemiBold.44f32155.woff → LeroyMerlinSans-Web-SemiBold.a1cbb92f.woff} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-SemiBold.c1061939.woff2 → LeroyMerlinSans-Web-SemiBold.a6ab3422.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-SemiBoldItalic.cce10920.woff2 → LeroyMerlinSans-Web-SemiBoldItalic.6bdb2efc.woff2} +0 -0
- package/dist/fonts/{LeroyMerlinSans-Web-SemiBoldItalic.083f0cc1.woff → LeroyMerlinSans-Web-SemiBoldItalic.93f14f9f.woff} +0 -0
- package/dist/mozaic-vue.adeo.css +44 -1
- package/dist/mozaic-vue.adeo.umd.js +7585 -27114
- package/dist/mozaic-vue.common.js +7601 -27131
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +7585 -27114
- 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 +25 -25
- 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 -1
- 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 +1 -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 -1
- package/src/components/textinput/MTextInput.vue +2 -2
- package/src/components/textinput/MTextInputIcon.vue +1 -1
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
</template>
|
|
47
47
|
|
|
48
48
|
<script>
|
|
49
|
-
import MButton from '../button/MButton';
|
|
50
|
-
import MTextInputField from '../textinput/MTextInputField';
|
|
49
|
+
import MButton from '../button/MButton.vue';
|
|
50
|
+
import MTextInputField from '../textinput/MTextInputField.vue';
|
|
51
51
|
|
|
52
52
|
export default {
|
|
53
53
|
name: 'MQuantitySelector',
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
:value="getSelectValue"
|
|
8
8
|
:disabled="disabled"
|
|
9
9
|
@change="onChange($event.target.value)"
|
|
10
|
+
v-on="inputListeners"
|
|
10
11
|
>
|
|
11
12
|
<option v-if="placeholder" value="" disabled="disabled">
|
|
12
13
|
-- {{ placeholder }} --
|
|
@@ -101,6 +102,15 @@ export default {
|
|
|
101
102
|
|
|
102
103
|
return classes;
|
|
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.$emit('change', event.target.value);
|
|
111
|
+
},
|
|
112
|
+
});
|
|
113
|
+
},
|
|
104
114
|
},
|
|
105
115
|
|
|
106
116
|
mounted() {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script>
|
|
28
|
-
import MTextInputField from './MTextInputField';
|
|
29
|
-
import MTextInputIcon from './MTextInputIcon';
|
|
28
|
+
import MTextInputField from './MTextInputField.vue';
|
|
29
|
+
import MTextInputIcon from './MTextInputIcon.vue';
|
|
30
30
|
|
|
31
31
|
export default {
|
|
32
32
|
name: 'MTextInput',
|