@mozaic-ds/vue 0.35.0-beta.1 → 0.35.0-beta.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": "0.35.0-beta.1",
3
+ "version": "0.35.0-beta.2",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -27,13 +27,13 @@
27
27
  "@mozaic-ds/icons": "1.49.0",
28
28
  "@mozaic-ds/styles": "1.51.0",
29
29
  "@mozaic-ds/web-fonts": "1.22.0",
30
- "core-js": "^3.27.0",
30
+ "core-js": "^3.27.1",
31
31
  "libphonenumber-js": "^1.10.15",
32
32
  "vue": "^2.6.14",
33
33
  "vue-country-flag": "2.3.2"
34
34
  },
35
35
  "devDependencies": {
36
- "@babel/core": "^7.20.7",
36
+ "@babel/core": "^7.20.12",
37
37
  "@babel/eslint-parser": "^7.19.1",
38
38
  "@rushstack/eslint-patch": "^1.2.0",
39
39
  "@vue/cli-plugin-babel": "~5.0.8",
@@ -41,8 +41,8 @@
41
41
  "@vue/compiler-sfc": "^3.2.45",
42
42
  "@vue/eslint-config-prettier": "^7.0.0",
43
43
  "babel-eslint": "^10.1.0",
44
- "eslint": "^8.30.0",
45
- "eslint-config-prettier": "^8.5.0",
44
+ "eslint": "^8.31.0",
45
+ "eslint-config-prettier": "^8.6.0",
46
46
  "eslint-plugin-vue": "^9.8.0",
47
47
  "postcss": "^8.4.20",
48
48
  "postcss-loader": "^7.0.2",
@@ -237,8 +237,7 @@ export default {
237
237
  return this.invalid || this.isFiltered;
238
238
  },
239
239
  getInvalidRootClass() {
240
- const invalidClass = this.isInvalid ? 'is-invalid' : '';
241
- return invalidClass;
240
+ return (this.isInvalid && 'is-invalid') || null;
242
241
  },
243
242
  },
244
243