@mozaic-ds/vue 1.0.0-rc.0 → 1.0.0-rc.1
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 +10 -8
- package/dist/mozaic-vue.adeo.css +45 -43
- package/dist/mozaic-vue.adeo.umd.js +11552 -22322
- package/dist/mozaic-vue.common.js +11552 -22322
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +11552 -22322
- 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 +24 -23
- package/src/components/autocomplete/MAutocomplete.vue +294 -111
- package/src/components/checkbox/MCheckboxGroup.vue +8 -0
- package/src/components/dropdown/MDropdown.vue +316 -0
- package/src/components/dropdown/index.js +7 -0
- package/src/components/flag/MFlag.vue +1 -1
- package/src/components/icon/MIcon.vue +18 -2
- package/src/components/index.js +2 -1
- package/src/components/link/MLink.vue +14 -3
- package/src/components/listbox/MListBox.vue +97 -57
- package/src/components/listbox/MListBoxActions.vue +251 -0
- package/src/components/listbox/index.js +6 -1
- package/src/components/phonenumber/MPhoneNumber.vue +10 -3
- package/src/components/quantityselector/MQuantitySelector.vue +15 -2
- package/src/components/ratingstars/MStarsInput.vue +1 -0
- package/src/components/stepper/MStepper.vue +68 -27
- package/src/components/tabs/MTab.vue +69 -59
- package/src/components/textinput/MTextInputField.vue +0 -1
- package/src/index.js +2 -1
- package/src/tokens/adeo/android/colors.xml +183 -126
- package/src/tokens/adeo/css/_variables.scss +183 -126
- package/src/tokens/adeo/css/root.scss +80 -23
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +60 -3
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +187 -130
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +183 -126
- package/src/tokens/adeo/js/tokens.js +183 -126
- package/src/tokens/adeo/js/tokensObject.js +1570 -283
- package/src/tokens/adeo/scss/_tokens.scss +342 -128
- package/types/index.d.ts +4 -0
package/types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
16
16
|
const MCard: VueConstructor;
|
|
17
17
|
const MCheckbox: VueConstructor;
|
|
18
18
|
const MCheckboxGroup: VueConstructor;
|
|
19
|
+
const MDropdown: VueConstructor;
|
|
19
20
|
const MField: VueConstructor;
|
|
20
21
|
const MFileUploader: VueConstructor;
|
|
21
22
|
const MFlag: VueConstructor;
|
|
@@ -24,6 +25,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
24
25
|
const MLayer: VueConstructor;
|
|
25
26
|
const MLink: VueConstructor;
|
|
26
27
|
const MListBox: VueConstructor;
|
|
28
|
+
const MListBoxActions: VueConstructor;
|
|
27
29
|
const MLoader: VueConstructor;
|
|
28
30
|
const MModal: VueConstructor;
|
|
29
31
|
const MNotification: VueConstructor;
|
|
@@ -63,6 +65,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
63
65
|
MCard,
|
|
64
66
|
MCheckbox,
|
|
65
67
|
MCheckboxGroup,
|
|
68
|
+
MDropdown,
|
|
66
69
|
MField,
|
|
67
70
|
MFileUploader,
|
|
68
71
|
MFlag,
|
|
@@ -71,6 +74,7 @@ declare module '@mozaic-ds/vue' {
|
|
|
71
74
|
MLayer,
|
|
72
75
|
MLink,
|
|
73
76
|
MListBox,
|
|
77
|
+
MListBoxActions,
|
|
74
78
|
MLoader,
|
|
75
79
|
MModal,
|
|
76
80
|
MNotification,
|