@mozaic-ds/vue 1.0.0-rc.0 → 1.0.0-rc.2

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.
Files changed (41) hide show
  1. package/README.md +10 -8
  2. package/dist/mozaic-vue.adeo.css +45 -43
  3. package/dist/mozaic-vue.adeo.umd.js +11694 -22360
  4. package/dist/mozaic-vue.common.js +11694 -22360
  5. package/dist/mozaic-vue.common.js.map +1 -1
  6. package/dist/mozaic-vue.css +1 -1
  7. package/dist/mozaic-vue.umd.js +11694 -22360
  8. package/dist/mozaic-vue.umd.js.map +1 -1
  9. package/dist/mozaic-vue.umd.min.js +2 -2
  10. package/dist/mozaic-vue.umd.min.js.map +1 -1
  11. package/package.json +23 -22
  12. package/src/components/autocomplete/MAutocomplete.vue +294 -111
  13. package/src/components/checkbox/MCheckboxGroup.vue +8 -0
  14. package/src/components/dropdown/MDropdown.vue +317 -0
  15. package/src/components/dropdown/index.js +7 -0
  16. package/src/components/flag/MFlag.vue +1 -1
  17. package/src/components/icon/MIcon.vue +18 -2
  18. package/src/components/index.js +2 -1
  19. package/src/components/link/MLink.vue +14 -3
  20. package/src/components/listbox/MListBox.vue +97 -57
  21. package/src/components/listbox/MListBoxActions.vue +251 -0
  22. package/src/components/listbox/index.js +6 -1
  23. package/src/components/passwordinput/MPasswordInput.vue +1 -0
  24. package/src/components/phonenumber/MPhoneNumber.vue +11 -3
  25. package/src/components/quantityselector/MQuantitySelector.vue +15 -2
  26. package/src/components/ratingstars/MStarsInput.vue +1 -0
  27. package/src/components/stepper/MStepper.vue +68 -27
  28. package/src/components/tabs/MTab.vue +73 -59
  29. package/src/components/textarea/MTextArea.vue +1 -0
  30. package/src/components/textinput/MTextInputField.vue +1 -1
  31. package/src/index.js +2 -1
  32. package/src/tokens/adeo/android/colors.xml +183 -126
  33. package/src/tokens/adeo/css/_variables.scss +183 -126
  34. package/src/tokens/adeo/css/root.scss +80 -23
  35. package/src/tokens/adeo/ios/StyleDictionaryColor.h +60 -3
  36. package/src/tokens/adeo/ios/StyleDictionaryColor.m +187 -130
  37. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +183 -126
  38. package/src/tokens/adeo/js/tokens.js +183 -126
  39. package/src/tokens/adeo/js/tokensObject.js +1570 -283
  40. package/src/tokens/adeo/scss/_tokens.scss +342 -128
  41. 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,