@mozaic-ds/vue 0.20.0-beta.2 → 0.20.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.
- package/dist/mozaic-vue.adeo.css +4 -3
- package/dist/mozaic-vue.adeo.umd.js +857 -17771
- package/dist/mozaic-vue.common.js +857 -17771
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +857 -17771
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +2 -8
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +3 -5
- package/src/components/autocomplete/MAutocomplete.vue +97 -129
- package/src/components/index.js +1 -1
- package/src/components/listbox/MListBox.vue +42 -85
- package/src/components/listbox/MListBoxOptions.vue +200 -0
- package/src/components/listbox/index.js +6 -1
- package/src/components/ratingstars/MStarsInput.vue +1 -0
- package/src/index.js +1 -1
- package/types/index.d.ts +2 -0
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import MListBox from './MListBox.vue';
|
|
2
|
+
import MListBoxOptions from './MListBoxOptions.vue';
|
|
2
3
|
|
|
3
4
|
MListBox.install = function (Vue) {
|
|
4
5
|
Vue.component(MListBox.name, MListBox);
|
|
5
6
|
};
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
MListBoxOptions.install = function (Vue) {
|
|
9
|
+
Vue.component(MListBoxOptions.name, MListBoxOptions);
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export { MListBox, MListBoxOptions };
|
package/src/index.js
CHANGED
|
@@ -37,7 +37,7 @@ export { MHero } from './components/hero';
|
|
|
37
37
|
export { MIcon } from './components/icon';
|
|
38
38
|
export { MLayer } from './components/layer';
|
|
39
39
|
export { MLink } from './components/link';
|
|
40
|
-
export { MListBox } from './components/listbox';
|
|
40
|
+
export { MListBox, MListBoxOptions } from './components/listbox';
|
|
41
41
|
export { MLoader } from './components/loader';
|
|
42
42
|
export { MModal } from './components/modal';
|
|
43
43
|
export { MNotification } from './components/notification';
|
package/types/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
24
24
|
const MLayer: VueConstructor;
|
|
25
25
|
const MLink: VueConstructor;
|
|
26
26
|
const MListBox: VueConstructor;
|
|
27
|
+
const MListBoxOptions: VueConstructor;
|
|
27
28
|
const MLoader: VueConstructor;
|
|
28
29
|
const MModal: VueConstructor;
|
|
29
30
|
const MNotification: VueConstructor;
|
|
@@ -71,6 +72,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
71
72
|
MLayer,
|
|
72
73
|
MLink,
|
|
73
74
|
MListBox,
|
|
75
|
+
MListBoxOptions,
|
|
74
76
|
MLoader,
|
|
75
77
|
MModal,
|
|
76
78
|
MNotification,
|