@koumoul/vjsf 3.25.3 → 3.25.4

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.25.3",
3
+ "version": "3.25.4",
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
 
26
26
  useDefaults({}, 'VjsfList')
27
27
  const vCardProps = useCompDefaults('VjsfList-VCard', { border: true, flat: true, tile: true })
28
+ const vListProps = useCompDefaults('VjsfList-VList', { class: 'py-0' })
28
29
  const vEditDialogProps = useCompDefaults('VjsfList-Edit-VDialog', { width: 500, persistent: true })
29
30
  const vEditDialogVSheetProps = useCompDefaults('VjsfList-Edit-VDialog-VSheet', {})
30
31
  const vEditMenuProps = useCompDefaults('VjsfList-Edit-VMenu', { width: 500 })
@@ -233,7 +234,7 @@ const toggleDialog = (/** @type {boolean} */value) => {
233
234
  v-bind="vCardProps"
234
235
  :loading="modelValue.loading"
235
236
  >
236
- <v-list class="py-0">
237
+ <v-list v-bind="vListProps">
237
238
  <v-list-subheader v-if="modelValue.layout.title">
238
239
  {{ modelValue.layout.title }}
239
240
  </v-list-subheader>