@koumoul/vjsf 3.0.0-beta.19 → 3.0.0-beta.20

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": "@koumoul/vjsf",
3
- "version": "3.0.0-beta.19",
3
+ "version": "3.0.0-beta.20",
4
4
  "description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
5
5
  "scripts": {
6
6
  "test": "vitest",
@@ -43,6 +43,7 @@ if (props.modelValue.layout.comp !== 'none' && !props.statefulLayout.options.nod
43
43
 
44
44
  <template>
45
45
  <v-col
46
+ v-if="modelValue.layout.comp !== 'none'"
46
47
  :cols="modelValue.cols"
47
48
  :class="nodeClasses"
48
49
  >
@@ -69,7 +70,7 @@ if (props.modelValue.layout.comp !== 'none' && !props.statefulLayout.options.nod
69
70
  />
70
71
  <component
71
72
  :is="props.statefulLayout.options.nodeComponents[modelValue.layout.comp]"
72
- v-else-if="modelValue.layout.comp !== 'none' "
73
+ v-else
73
74
  :model-value="modelValue"
74
75
  :stateful-layout="statefulLayout"
75
76
  />