@live-change/vue3-components 0.2.10 → 0.2.11
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/form/DefinedForm.vue +2 -0
- package/package.json +3 -3
package/form/DefinedForm.vue
CHANGED
|
@@ -479,6 +479,7 @@
|
|
|
479
479
|
let np = name.split('.')
|
|
480
480
|
let node = this.formRoot
|
|
481
481
|
for(let p of np) {
|
|
482
|
+
if(!p) continue
|
|
482
483
|
if(node.properties) node = node.properties[p]
|
|
483
484
|
else if(node.elements) node = node.elements[p]
|
|
484
485
|
if(!node) throw new Error(`form field ${name} not found`)//return null
|
|
@@ -489,6 +490,7 @@
|
|
|
489
490
|
let np = name.split('.')
|
|
490
491
|
let node = this.formRoot
|
|
491
492
|
for(let p of np) {
|
|
493
|
+
if(!p) continue
|
|
492
494
|
if(node.properties) node = node.properties[p]
|
|
493
495
|
else if(node.elements) node = node.elements[p]
|
|
494
496
|
if(!node) return node
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/vue3-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
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": "
|
|
24
|
+
"@live-change/vue3-ssr": "0.2.10",
|
|
25
25
|
"debug": "^4.3.4",
|
|
26
26
|
"mitt": "3.0.0",
|
|
27
27
|
"vue": "^3.2.33"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "4b6b64946f19460acb63a9d32b723edf4e401c3a"
|
|
30
30
|
}
|