@koumoul/vjsf 3.20.6 → 3.20.7

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.20.6",
3
+ "version": "3.20.7",
4
4
  "description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
5
5
  "scripts": {
6
6
  "test-tz1": "TZ=Europe/Paris vitest run",
@@ -25,6 +25,7 @@ import useZIndexStack from '../../composables/use-z-index-stack.js'
25
25
  useDefaults({}, 'VjsfList')
26
26
  const vCardProps = useCompDefaults('VjsfList-VCard', { border: true, flat: true, tile: true })
27
27
  const vEditDialogProps = useCompDefaults('VjsfList-Edit-VDialog', { width: 500, persistent: true })
28
+ const vEditDialogVSheetProps = useCompDefaults('VjsfList-Edit-VDialog-VSheet', {})
28
29
  const vEditMenuProps = useCompDefaults('VjsfList-Edit-VMenu', { width: 500 })
29
30
  const theme = useTheme()
30
31
 
@@ -495,7 +496,7 @@ const itemBorderColor = computed(() => (/** @type {import('@json-layout/core').S
495
496
  :model-value="editedItem !== undefined"
496
497
  v-bind="vEditDialogProps"
497
498
  >
498
- <v-sheet>
499
+ <v-sheet v-bind="vEditDialogVSheetProps">
499
500
  <v-toolbar
500
501
  density="compact"
501
502
  color="surface"