@koumoul/vjsf 3.17.2 → 3.17.3

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.17.2",
3
+ "version": "3.17.3",
4
4
  "description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
5
5
  "scripts": {
6
6
  "test": "vitest run",
@@ -92,7 +92,7 @@ export const useVjsf = (schema, modelValue, options, nodeComponents, emit, compi
92
92
  const onDataUpdate = async (data) => {
93
93
  debug('onDataUpdate', data)
94
94
  await nextTick() // necessary for form validation to be applied before emitting new data
95
- debug(' -> emit update:modelValue')
95
+ debug(' -> emit update:modelValue', data)
96
96
  emit('update:modelValue', data)
97
97
  }
98
98
  const onAutofocus = () => {