@live-change/vue3-components 0.2.29 → 0.2.30

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 (2) hide show
  1. package/logic/data.js +1 -0
  2. package/package.json +3 -3
package/logic/data.js CHANGED
@@ -37,6 +37,7 @@ export function validateData(definition, data, validationType = 'validation',
37
37
  if(error) return error
38
38
  }
39
39
  }
40
+ if(!data) return undefined // No data, no errors, nonEmpty validator was already checked
40
41
  if(definition.properties) {
41
42
  const propertyErrors = {}
42
43
  for(let name in definition.properties) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-components",
3
- "version": "0.2.29",
3
+ "version": "0.2.30",
4
4
  "description": "Live Change Framework - vue components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-framework-vue3",
23
23
  "dependencies": {
24
- "@live-change/vue3-ssr": "^0.2.29",
24
+ "@live-change/vue3-ssr": "^0.2.30",
25
25
  "debug": "^4.3.4",
26
26
  "mitt": "3.0.0",
27
27
  "vue": "^3.2.47"
28
28
  },
29
- "gitHead": "6f961aa0e9530f74081590a60d3d8323e2a3781a"
29
+ "gitHead": "623e5d40a7457b5a2a3f55783c59360396161ca8"
30
30
  }