@mozaic-ds/vue 1.0.0-rc.1 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/vue",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0-rc.2",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -23,10 +23,10 @@
23
23
  "postinstall.js"
24
24
  ],
25
25
  "dependencies": {
26
- "@mozaic-ds/css-dev-tools": "^1.44.0",
27
- "@mozaic-ds/icons": "^1.44.0",
28
- "@mozaic-ds/styles": "^1.44.0",
29
- "@mozaic-ds/web-fonts": "^1.22.0",
26
+ "@mozaic-ds/css-dev-tools": "1.44.0",
27
+ "@mozaic-ds/icons": "1.45.0",
28
+ "@mozaic-ds/styles": "1.45.1",
29
+ "@mozaic-ds/web-fonts": "1.22.0",
30
30
  "core-js": "^3.25.5",
31
31
  "libphonenumber-js": "^1.10.14",
32
32
  "vue": "^2.6.14",
@@ -21,6 +21,7 @@
21
21
  type="button"
22
22
  class="mc-select mc-dropdown__trigger"
23
23
  :class="{ 'is-open': openState }"
24
+ :disabled="disabled"
24
25
  @click="openState = !openState"
25
26
  >
26
27
  {{ buttonValue }}
@@ -6,6 +6,7 @@
6
6
  class="mc-text-input mc-password-input__control"
7
7
  :class="setInputClasses"
8
8
  :aria-invalid="isInvalid"
9
+ spellcheck="false"
9
10
  />
10
11
 
11
12
  <button
@@ -74,6 +74,7 @@
74
74
  :value="phoneNumber"
75
75
  :placeholder="placeholder"
76
76
  :maxlength="maxlength"
77
+ spellcheck="false"
77
78
  @blur="onChangePhoneNumber"
78
79
  @focus="(event) => (formatOnBlur ? cleanFormat(event) : null)"
79
80
  @keyup="onKeyPressPhoneNumber"
@@ -182,7 +182,11 @@ export default {
182
182
  this.localActiveIndex = index;
183
183
  }
184
184
 
185
- this.$emit('tab-clicked', e.target, Object.assign({ index: index }, tab));
185
+ this.$emit(
186
+ 'tab-clicked',
187
+ e.currentTarget,
188
+ Object.assign({ index: index }, tab)
189
+ );
186
190
  },
187
191
  },
188
192
  };
@@ -7,6 +7,7 @@
7
7
  ]"
8
8
  :aria-invalid="isInvalid"
9
9
  :value="value"
10
+ spellcheck="false"
10
11
  v-on="inputListeners"
11
12
  />
12
13
  </template>
@@ -6,6 +6,7 @@
6
6
  :class="setClasses"
7
7
  :aria-invalid="isInvalid"
8
8
  :value="value"
9
+ spellcheck="false"
9
10
  v-on="inputListeners"
10
11
  />
11
12
  </template>