@koumoul/vjsf 3.0.0-alpha.7 → 3.0.0-alpha.8

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.
Files changed (43) hide show
  1. package/package.json +6 -6
  2. package/src/components/options.js +1 -0
  3. package/src/styles/vjsf.css +4 -0
  4. package/src/types.ts +1 -0
  5. package/types/components/fragments/help-message.vue.d.ts +1 -1
  6. package/types/components/fragments/node-slot.vue.d.ts +1 -1
  7. package/types/components/fragments/section-header.vue.d.ts +1 -1
  8. package/types/components/fragments/select-item-icon.vue.d.ts +1 -1
  9. package/types/components/fragments/select-item.vue.d.ts +1 -1
  10. package/types/components/fragments/select-selection.vue.d.ts +1 -1
  11. package/types/components/fragments/text-field-menu.vue.d.ts +1 -1
  12. package/types/components/node.vue.d.ts +1 -1
  13. package/types/components/nodes/autocomplete.vue.d.ts +1 -1
  14. package/types/components/nodes/checkbox.vue.d.ts +1 -1
  15. package/types/components/nodes/color-picker.vue.d.ts +1 -1
  16. package/types/components/nodes/combobox.vue.d.ts +1 -1
  17. package/types/components/nodes/date-picker.vue.d.ts +1 -1
  18. package/types/components/nodes/date-time-picker.vue.d.ts +1 -1
  19. package/types/components/nodes/expansion-panels.vue.d.ts +1 -1
  20. package/types/components/nodes/file-input.vue.d.ts +1 -1
  21. package/types/components/nodes/list.vue.d.ts +1 -1
  22. package/types/components/nodes/number-combobox.vue.d.ts +1 -1
  23. package/types/components/nodes/number-field.vue.d.ts +1 -1
  24. package/types/components/nodes/one-of-select.vue.d.ts +1 -1
  25. package/types/components/nodes/section.vue.d.ts +1 -1
  26. package/types/components/nodes/select.vue.d.ts +1 -1
  27. package/types/components/nodes/slider.vue.d.ts +1 -1
  28. package/types/components/nodes/stepper.vue.d.ts +1 -1
  29. package/types/components/nodes/switch.vue.d.ts +1 -1
  30. package/types/components/nodes/tabs.vue.d.ts +1 -1
  31. package/types/components/nodes/text-field.vue.d.ts +1 -1
  32. package/types/components/nodes/textarea.vue.d.ts +1 -1
  33. package/types/components/nodes/time-picker.vue.d.ts +1 -1
  34. package/types/components/nodes/vertical-tabs.vue.d.ts +1 -1
  35. package/types/components/options.d.ts.map +1 -1
  36. package/types/components/tree.vue.d.ts +1 -1
  37. package/types/components/vjsf.vue.d.ts +1 -1
  38. package/types/composables/use-dnd.d.ts +1 -1
  39. package/types/composables/use-vjsf.d.ts.map +1 -1
  40. package/types/types.d.ts +1 -0
  41. package/types/types.d.ts.map +1 -1
  42. package/types/utils/global-register.d.ts +2 -2
  43. package/types/utils/global-register.d.ts.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koumoul/vjsf",
3
- "version": "3.0.0-alpha.7",
3
+ "version": "3.0.0-alpha.8",
4
4
  "description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
5
5
  "scripts": {
6
6
  "test": "vitest",
@@ -71,8 +71,8 @@
71
71
  }
72
72
  },
73
73
  "peerDependencies": {
74
- "vue": "^3.3.4",
75
- "vuetify": "^3.4.8"
74
+ "vue": "^3.4.3",
75
+ "vuetify": "^3.4.9"
76
76
  },
77
77
  "dependencies": {
78
78
  "@json-layout/core": "0.7.0",
@@ -83,8 +83,8 @@
83
83
  "devDependencies": {
84
84
  "@types/debug": "^4.1.8",
85
85
  "@types/ejs": "^3.1.2",
86
- "vitest": "^0.34.5",
87
- "vue": "^3.3.4",
88
- "vue-tsc": "^1.8.15"
86
+ "vitest": "^1.1.1",
87
+ "vue": "^3.4.3",
88
+ "vue-tsc": "^1.8.27"
89
89
  }
90
90
  }
@@ -12,6 +12,7 @@ export const defaultOptions = {
12
12
  density: 'comfortable'
13
13
  },
14
14
  fieldPropsReadOnly: { hideDetails: 'auto', variant: 'plain' },
15
+ fieldPropsSummary: { hideDetails: true },
15
16
  textfieldProps: {},
16
17
  textfieldPropsReadOnly: {},
17
18
  textareaProps: {},
@@ -1,3 +1,7 @@
1
+ .vjsf {
2
+ overflow: hidden;
3
+ }
4
+
1
5
  /* override vuetify styles to manage readOnly fields more usable than the default disabled fields */
2
6
  .vjsf-input--readonly.v-input--disabled.v-text-field .v-field--disabled input {
3
7
  pointer-events: auto;
package/src/types.ts CHANGED
@@ -35,6 +35,7 @@ export type VjsfStatefulLayoutOptions = StatefulLayoutOptions & {
35
35
  fieldPropsCompact: Record<string, unknown>,
36
36
  fieldPropsComfortable: Record<string, unknown>,
37
37
  fieldPropsReadOnly: Record<string, unknown>,
38
+ fieldPropsSummary: Record<string, unknown>,
38
39
  textfieldProps: Record<string, unknown>,
39
40
  textfieldPropsReadOnly: Record<string, unknown>,
40
41
  textareaProps: Record<string, unknown>,
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<{}, {
3
3
  $props: {
4
4
  readonly node?: import("../../types.js").VjsfNode | undefined;
5
5
  };
6
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
7
7
  export default _default;
8
8
  //# sourceMappingURL=help-message.vue.d.ts.map
@@ -19,7 +19,7 @@ declare const _default: import("vue").DefineComponent<{
19
19
  type: import('vue').PropType<string>;
20
20
  default: null;
21
21
  };
22
- }, any, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
+ }, any, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
23
  layoutSlot: {
24
24
  /** @type import('vue').PropType<import('@json-layout/vocabulary').Slot> */
25
25
  type: import('vue').PropType<import('@json-layout/vocabulary').Slot>;
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<{}, {
3
3
  $props: {
4
4
  readonly node?: import("../../types.js").VjsfNode | undefined;
5
5
  };
6
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
7
7
  export default _default;
8
8
  //# sourceMappingURL=section-header.vue.d.ts.map
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
5
5
  };
6
6
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
7
  [key: string]: any;
8
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
9
9
  icon: {
10
10
  type: StringConstructor;
11
11
  required: true;
@@ -7,6 +7,6 @@ declare const _default: import("vue").DefineComponent<{}, {
7
7
  readonly item?: import("../../../../node_modules/@json-layout/vocabulary/types/normalized-layout/types.js").SelectItem | undefined;
8
8
  readonly itemProps?: Record<string, any> | undefined;
9
9
  };
10
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
10
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
11
11
  export default _default;
12
12
  //# sourceMappingURL=select-item.vue.d.ts.map
@@ -7,6 +7,6 @@ declare const _default: import("vue").DefineComponent<{}, {
7
7
  readonly item?: import("../../../../node_modules/@json-layout/vocabulary/types/normalized-layout/types.js").SelectItem | undefined;
8
8
  readonly last?: boolean | undefined;
9
9
  };
10
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
10
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
11
11
  export default _default;
12
12
  //# sourceMappingURL=select-selection.vue.d.ts.map
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
7
7
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
8
8
  readonly formattedValue?: string | null | undefined;
9
9
  };
10
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
10
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
11
11
  "prepend-inner"?(_: {}): any;
12
12
  default?(_: {
13
13
  close: () => boolean;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../types.js").VjsfNode | undefined;
6
6
  readonly statefulLayout?: import("../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=node.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfSelectNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfSelectNode>;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfCheckboxNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=checkbox.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfColorPickerNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=color-picker.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfComboboxNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfComboboxNode>;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfDatePickerNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=date-picker.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfDateTimePickerNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=date-time-picker.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfExpansionPanelsNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=expansion-panels.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfFileInputNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfFileInputNode>;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfListNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=list.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfComboboxNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfComboboxNode>;
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfNumberFieldNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfNumberFieldNode>;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfOneOfSelectNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=one-of-select.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfSectionNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=section.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfSelectNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfSelectNode>;
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfSliderNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=slider.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfStepperNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=stepper.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfSwitchNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=switch.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfTabsNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=tabs.vue.d.ts.map
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfTextFieldNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfTextFieldNode>;
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  };
12
12
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
13
  [key: string]: any;
14
- }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  /** @type import('vue').PropType<import('../../types.js').VjsfTextareaNode> */
17
17
  type: import('vue').PropType<import('../../types.js').VjsfTextareaNode>;
@@ -1,3 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
3
3
  //# sourceMappingURL=time-picker.vue.d.ts.map
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../types.js").VjsfVerticalTabsNode | undefined;
6
6
  readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=vertical-tabs.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../src/components/options.js"],"names":[],"mappings":"AAAA,qDAAqD;AACrD,6BADU,OAAO,aAAa,EAAE,kBAAkB,CA0BjD;AAWM,wCAPI,QAAQ,OAAO,aAAa,EAAE,WAAW,CAAC,QAC1C,GAAG,SACH,MAAM,SACN,OAAO,KAAK,EAAE,KAAK,kBACnB,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,qCAcjD"}
1
+ {"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../src/components/options.js"],"names":[],"mappings":"AAAA,qDAAqD;AACrD,6BADU,OAAO,aAAa,EAAE,kBAAkB,CA2BjD;AAWM,wCAPI,QAAQ,OAAO,aAAa,EAAE,WAAW,CAAC,QAC1C,GAAG,SACH,MAAM,SACN,OAAO,KAAK,EAAE,KAAK,kBACnB,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,qCAcjD"}
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly modelValue?: import("../../../node_modules/@json-layout/core/types/state/types.js").StateTree | undefined;
6
6
  readonly statefulLayout?: import("../types.js").VjsfStatefulLayout | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
10
10
  //# sourceMappingURL=tree.vue.d.ts.map
@@ -10,6 +10,6 @@ declare const _default: import("vue").DefineComponent<{}, {
10
10
  readonly schema?: Record<string, any> | undefined;
11
11
  readonly precompiledLayout?: import("../../../node_modules/@json-layout/core/types/compile/types.js").CompiledLayout | undefined;
12
12
  };
13
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
13
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
14
14
  export default _default;
15
15
  //# sourceMappingURL=vjsf.vue.d.ts.map
@@ -6,7 +6,7 @@
6
6
  */
7
7
  export default function useDnd<T>(array: T[], callback: () => void): {
8
8
  activeDnd: import("vue").ComputedRef<boolean>;
9
- sortableArray: import("vue").Ref<T[]> | import("vue").ShallowRef<T[]>;
9
+ sortableArray: import("vue").ShallowRef<T[]>;
10
10
  hovered: import("vue").Ref<number>;
11
11
  draggable: import("vue").Ref<number>;
12
12
  dragging: import("vue").Ref<number>;
@@ -1 +1 @@
1
- {"version":3,"file":"use-vjsf.d.ts","sourceRoot":"","sources":["../../src/composables/use-vjsf.js"],"names":[],"mappings":"AAKA;IACE;;MAEE;gCADO,GAAG;IAGZ;;MAEE;4BADO,OAAO,aAAa,EAAE,kBAAkB;EAGlD;AAWM,gCARI,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,cACzB,OAAO,KAAK,EAAE,GAAG,CAAC,GAAG,CAAC,WACtB,OAAO,KAAK,EAAE,GAAG,CAAC,OAAO,aAAa,EAAE,kBAAkB,CAAC,kBAC3D,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,QACvC,GAAG;;;;EAmGb"}
1
+ {"version":3,"file":"use-vjsf.d.ts","sourceRoot":"","sources":["../../src/composables/use-vjsf.js"],"names":[],"mappings":"AAMA;IACE;;MAEE;gCADO,GAAG;IAGZ;;MAEE;4BADO,OAAO,aAAa,EAAE,kBAAkB;EAGlD;AAWM,gCARI,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,cACzB,OAAO,KAAK,EAAE,GAAG,CAAC,GAAG,CAAC,WACtB,OAAO,KAAK,EAAE,GAAG,CAAC,OAAO,aAAa,EAAE,kBAAkB,CAAC,kBAC3D,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,QACvC,GAAG;;;;EAmGb"}
package/types/types.d.ts CHANGED
@@ -7,6 +7,7 @@ export type VjsfStatefulLayoutOptions = StatefulLayoutOptions & {
7
7
  fieldPropsCompact: Record<string, unknown>;
8
8
  fieldPropsComfortable: Record<string, unknown>;
9
9
  fieldPropsReadOnly: Record<string, unknown>;
10
+ fieldPropsSummary: Record<string, unknown>;
10
11
  textfieldProps: Record<string, unknown>;
11
12
  textfieldPropsReadOnly: Record<string, unknown>;
12
13
  textareaProps: Record<string, unknown>;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
@@ -3,6 +3,6 @@
3
3
  * @param {import('vue').Component} component
4
4
  */
5
5
  export function registerNodeComponent(name: string, component: import('vue').Component): void;
6
- /** @type {Record<string, import('vue').Component>} */
7
- export const registeredNodeComponents: Record<string, import('vue').Component>;
6
+ /** @type {import('vue').Ref<Record<string, import('vue').Component>>} */
7
+ export const registeredNodeComponents: import('vue').Ref<Record<string, import('vue').Component>>;
8
8
  //# sourceMappingURL=global-register.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"global-register.d.ts","sourceRoot":"","sources":["../../src/utils/global-register.js"],"names":[],"mappings":"AAGA;;;GAGG;AACH,4CAHW,MAAM,aACN,OAAO,KAAK,EAAE,SAAS,QAIjC;AATD,sDAAsD;AACtD,uCADW,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,CACR"}
1
+ {"version":3,"file":"global-register.d.ts","sourceRoot":"","sources":["../../src/utils/global-register.js"],"names":[],"mappings":"AAKA;;;GAGG;AACH,4CAHW,MAAM,aACN,OAAO,KAAK,EAAE,SAAS,QAIjC;AATD,yEAAyE;AACzE,uCADW,OAAO,KAAK,EAAE,GAAG,CAAC,OAAO,MAAM,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,CAAC,CACtB"}