@bildvitta/quasar-ui-asteroid 3.10.0-beta.4 → 3.11.0-alpha.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.10.0-beta.4",
4
+ "version": "3.11.0-alpha.0",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -12,8 +12,7 @@
12
12
  "src"
13
13
  ],
14
14
  "scripts": {
15
- "build": "npx rollup -c",
16
- "dev": "cd dev && npm i && npm run dev && cd .."
15
+ "build": "npx rollup -c --bundleConfigAsCjs"
17
16
  },
18
17
  "publishConfig": {
19
18
  "access": "public",
@@ -28,34 +27,33 @@
28
27
  "components"
29
28
  ],
30
29
  "devDependencies": {
31
- "@rollup/plugin-json": "^4.1.0",
32
- "@rollup/plugin-replace": "^3.0.1",
33
- "@rollup/plugin-url": "^6.1.0",
34
- "@vue/compiler-sfc": "^3.2.31",
35
- "autoprefixer": "^10.4.2",
36
- "core-js": "^3.20.2",
37
- "postcss": "^8.4.5",
38
- "quasar": "^2.11.10",
39
- "rimraf": "^3.0.2",
40
- "rollup": "^2.66.0",
30
+ "@rollup/plugin-json": "^6.0.0",
31
+ "@rollup/plugin-replace": "^5.0.2",
32
+ "@rollup/plugin-url": "^8.0.1",
33
+ "@vue/compiler-sfc": "^3.3.1",
34
+ "autoprefixer": "^10.4.14",
35
+ "core-js": "^3.30.2",
36
+ "postcss": "^8.4.23",
37
+ "quasar": "^2.12.0",
38
+ "rimraf": "^5.0.0",
39
+ "rollup": "^3.22.0",
41
40
  "rollup-plugin-local-resolve": "^1.0.7",
42
- "rollup-plugin-scss": "^3.0.0",
43
- "rollup-plugin-terser": "^7.0.2",
41
+ "rollup-plugin-scss": "^4.0.0",
44
42
  "rollup-plugin-vue": "^6.0.0",
45
- "sass": "^1.49.0"
43
+ "sass": "^1.62.1"
46
44
  },
47
45
  "dependencies": {
48
46
  "@bildvitta/store-adapter": "^1.0.0",
49
- "@fawmi/vue-google-maps": "^0.9.4",
50
- "autonumeric": "^4.6.0",
51
- "axios": "^0.21.1",
52
- "date-fns": "^2.28.0",
53
- "fuse.js": "^6.5.3",
47
+ "@fawmi/vue-google-maps": "^0.9.79",
48
+ "autonumeric": "^4.8.3",
49
+ "axios": "^1.4.0",
50
+ "date-fns": "^2.30.0",
51
+ "fuse.js": "^6.6.2",
54
52
  "humps": "^2.0.1",
55
53
  "lodash-es": "^4.17.21",
56
54
  "pica": "^9.0.1",
57
- "signature_pad": "^4.0.1",
58
- "sortablejs": "^1.14.0"
55
+ "signature_pad": "^4.1.5",
56
+ "sortablejs": "^1.15.0"
59
57
  },
60
58
  "browserslist": [
61
59
  "defaults"
@@ -64,4 +62,4 @@
64
62
  "tags": "dist/vetur/asteroid-tags.json",
65
63
  "attributes": "dist/vetur/asteroid-attributes.json"
66
64
  }
67
- }
65
+ }
@@ -233,7 +233,7 @@ export default {
233
233
  if (this.useDateOnly) return this.validateDateOnly(value)
234
234
  if (this.useTimeOnly) return this.validateTimeOnly(value)
235
235
 
236
- const [date, time] = value?.split(' ')
236
+ const [date, time] = value?.split(' ') || []
237
237
 
238
238
  return this.validateDateOnly(date) || this.validateTimeOnly(time)
239
239
  },