@koumoul/vjsf 3.23.3 → 3.23.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.23.3",
3
+ "version": "3.23.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",
@@ -521,6 +521,7 @@ const indexedListRules = computed(() => {
521
521
  :model-value="editedItem !== undefined"
522
522
  v-bind="vEditDialogProps"
523
523
  :z-index="zIndex"
524
+ class="vjsf-list-dialog"
524
525
  >
525
526
  <v-sheet v-bind="vEditDialogVSheetProps">
526
527
  <v-toolbar
package/src/options.js CHANGED
@@ -49,7 +49,7 @@ export const getFullOptions = (options, form, width, locale, globalDefaults, slo
49
49
  nodeComponents[plugin.info.name] = plugin.nodeComponent
50
50
  }
51
51
  }
52
- const icons = { ...options?.icons, ...defaultIcons }
52
+ const icons = { ...defaultIcons, ...options?.icons }
53
53
 
54
54
  /** @type {import('./types.js').VjsfOptions} */
55
55
  const fullOptions = {