@ghentcdh/json-forms-vue 1.0.4 → 1.1.0

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 (52) hide show
  1. package/index.js +75 -7030
  2. package/index.mjs +76 -7031
  3. package/package.json +24 -3
  4. package/testing/index.d.ts +0 -0
  5. package/testing.js +1 -0
  6. package/testing.mjs +1 -0
  7. package/composables/useFormEvents.d.ts +0 -32
  8. package/forms/Dispatch.vue.d.ts +0 -10
  9. package/forms/FormComponent.properties.d.ts +0 -48
  10. package/forms/FormComponent.vue.d.ts +0 -68
  11. package/forms/FormWithActions.properties.d.ts +0 -52
  12. package/forms/FormWithActions.vue.d.ts +0 -258
  13. package/forms/FormWithTable.properties.d.ts +0 -65
  14. package/forms/FormWithTable.vue.d.ts +0 -90
  15. package/forms/errorMessages.d.ts +0 -10
  16. package/forms/errorMode.d.ts +0 -4
  17. package/forms/modal/FormModal.properties.d.ts +0 -64
  18. package/forms/modal/FormModal.vue.d.ts +0 -275
  19. package/forms/modal/FormModalService.d.ts +0 -14
  20. package/forms/renderer-registry.d.ts +0 -7
  21. package/forms/renderers/array/ArrayRenderer.vue.d.ts +0 -7
  22. package/forms/renderers/array/ArrayRenderers.d.ts +0 -10
  23. package/forms/renderers/controls/AutocompleteControlRenderer.vue.d.ts +0 -7
  24. package/forms/renderers/controls/BooleanControlRenderer.vue.d.ts +0 -7
  25. package/forms/renderers/controls/MarkdownControlRenderer.vue.d.ts +0 -7
  26. package/forms/renderers/controls/MultiSelectControlRenderer.vue.d.ts +0 -7
  27. package/forms/renderers/controls/NumberControlRenderer.vue.d.ts +0 -7
  28. package/forms/renderers/controls/SelectControlRenderer.vue.d.ts +0 -7
  29. package/forms/renderers/controls/StringControlRenderer.vue.d.ts +0 -7
  30. package/forms/renderers/controls/TextAreaControlRenderer.vue.d.ts +0 -7
  31. package/forms/renderers/controls/composable/UseControlBinding.d.ts +0 -29
  32. package/forms/renderers/controls/composable/UseFetchOption.d.ts +0 -16
  33. package/forms/renderers/controls/composable/UseInput.d.ts +0 -24
  34. package/forms/renderers/controls/composable/UseSelectBinding.d.ts +0 -23
  35. package/forms/renderers/controls/composable/resource.d.ts +0 -187
  36. package/forms/renderers/controls/index.d.ts +0 -10
  37. package/forms/renderers/index.d.ts +0 -3
  38. package/forms/renderers/layout/CollapseLayoutRenderer.vue.d.ts +0 -7
  39. package/forms/renderers/layout/LayoutRenderer.vue.d.ts +0 -7
  40. package/forms/renderers/layout/LayoutRenders.d.ts +0 -10
  41. package/forms/renderers/layout/colspan.d.ts +0 -1
  42. package/forms/renderes.d.ts +0 -19
  43. package/forms/scope.d.ts +0 -4
  44. package/forms/types.d.ts +0 -36
  45. package/renderes/tester.d.ts +0 -11
  46. package/repository/crud.repository.d.ts +0 -32
  47. package/repository/index.d.ts +0 -1
  48. package/table/filter/table-filter.vue.d.ts +0 -13
  49. package/table/index.d.ts +0 -2
  50. package/table/table.component.properties.d.ts +0 -34
  51. package/table/table.component.vue.d.ts +0 -60
  52. package/table/table.store.d.ts +0 -29
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@ghentcdh/json-forms-vue",
3
- "version": "1.0.4",
3
+ "version": "1.1.0",
4
+ "type": "module",
4
5
  "main": "./index.js",
5
6
  "module": "./index.mjs",
6
7
  "types": "./index.d.ts",
@@ -10,9 +11,27 @@
10
11
  "import": "./index.mjs",
11
12
  "require": "./index.js"
12
13
  },
14
+ "./testing": {
15
+ "types": "./testing/index.d.ts",
16
+ "import": "./testing.mjs",
17
+ "require": "./testing.js"
18
+ },
13
19
  "./index.css": "./index.css"
14
20
  },
21
+ "files": [
22
+ "*.js",
23
+ "*.mjs",
24
+ "*.d.ts",
25
+ "*.css",
26
+ "testing/**"
27
+ ],
28
+ "peerDependenciesMeta": {
29
+ "@playwright/test": {
30
+ "optional": true
31
+ }
32
+ },
15
33
  "peerDependencies": {
34
+ "@playwright/test": ">=1.50.0",
16
35
  "@ghentcdh/json-forms-core": ">=0.0.1",
17
36
  "@ghentcdh/tools-vue": ">=0.6.0",
18
37
  "@ghentcdh/ui": ">=0.6.0",
@@ -22,7 +41,8 @@
22
41
  "lodash-es": "^4.17.0",
23
42
  "vue": "^3.5.0",
24
43
  "vee-validate": ">=4.0.0",
25
- "vue-router": "^5.0.0"
44
+ "vue-router": "^5.0.0",
45
+ "zod": "^4.0.0"
26
46
  },
27
47
  "devDependencies": {
28
48
  "@jsonforms/core": "3.7.0",
@@ -30,7 +50,8 @@
30
50
  "axios": "1.13.5",
31
51
  "lodash-es": "4.17.23",
32
52
  "vue": "3.5.29",
33
- "vue-router": "5.0.3"
53
+ "vue-router": "5.0.3",
54
+ "zod": "4.3.6"
34
55
  },
35
56
  "publishConfig": {
36
57
  "access": "public"
File without changes
package/testing.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";
package/testing.mjs ADDED
@@ -0,0 +1 @@
1
+
@@ -1,32 +0,0 @@
1
- /**
2
- * Event names that renderers can dispatch up to the form host. Expand this
3
- * union as new events are needed.
4
- */
5
- export type FormEventName = 'create';
6
- /**
7
- * Payload passed along with every form event. `type` is user-defined (e.g.
8
- * `'author'`, `'keyword'`) so the host can decide what entity to act on.
9
- */
10
- export type FormEventPayload<TData = any, TResult = any> = {
11
- event: FormEventName;
12
- type: string;
13
- data?: TData;
14
- onSuccess: (result: TResult) => void;
15
- onError?: (error: unknown) => void;
16
- };
17
- export type FormEventDispatch = <TData = any, TResult = any>(payload: FormEventPayload<TData, TResult>) => void;
18
- export type FormEvents = {
19
- dispatch: FormEventDispatch;
20
- };
21
- /**
22
- * Bootstraps the form event helper and provides it to descendant renderers.
23
- * Call this in the component that hosts `<JsonForms>`, passing a dispatch
24
- * function (typically a wrapper around the component's Vue `emit`) so events
25
- * bubble up to the parent.
26
- */
27
- export declare const provideFormEvents: (dispatch: FormEventDispatch) => FormEvents;
28
- /**
29
- * Inject the form events helper inside a custom control renderer. Returns a
30
- * no-op when no provider is found, so renderers stay safe to use standalone.
31
- */
32
- export declare const useFormEvents: () => FormEvents;
@@ -1,10 +0,0 @@
1
- import { JsonSchema, UISchemaElement } from '@jsonforms/core';
2
- type __VLS_Props = {
3
- uischema: UISchemaElement;
4
- schema: JsonSchema;
5
- pathPrefix?: string;
6
- };
7
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
- pathPrefix: string;
9
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
- export default _default;
@@ -1,48 +0,0 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
2
- import { ErrorMode } from './errorMode';
3
- export type Data = {
4
- [key: string]: any;
5
- };
6
- export type SubmitFormEvent = {
7
- data: Data;
8
- valid: boolean;
9
- };
10
- export declare const JsonFormComponentProperties: {
11
- /** Unique identifier used to namespace the form element. */
12
- id: {
13
- type: StringConstructor;
14
- required: true;
15
- };
16
- /** HTML name attribute for the form. */
17
- name: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- /** JSON schema describing the shape of the form data. */
22
- schema: {
23
- type: PropType<any>;
24
- required: true;
25
- };
26
- /** UI schema describing the layout and controls. */
27
- uiSchema: {
28
- type: PropType<any>;
29
- required: true;
30
- };
31
- /** Disable all form controls. */
32
- disabled: {
33
- type: BooleanConstructor;
34
- default: boolean;
35
- };
36
- /** Current form data object. */
37
- formData: {
38
- type: PropType<Data>;
39
- default: () => {};
40
- };
41
- /** When validation errors are shown (`'onBlur'`, `'onChange'`, `'onSubmit'`, `'always'`). */
42
- errorMode: {
43
- type: PropType<ErrorMode>;
44
- default: "onChanges";
45
- };
46
- };
47
- export type JsonFormComponentProp = ExtractPublicPropTypes<typeof JsonFormComponentProperties>;
48
- export declare const JsonFormComponentEmits: string[];
@@ -1,68 +0,0 @@
1
- import { Data } from './FormComponent.properties';
2
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
- id: {
4
- type: StringConstructor;
5
- required: true;
6
- };
7
- name: {
8
- type: StringConstructor;
9
- default: string;
10
- };
11
- schema: {
12
- type: import('vue').PropType<any>;
13
- required: true;
14
- };
15
- uiSchema: {
16
- type: import('vue').PropType<any>;
17
- required: true;
18
- };
19
- disabled: {
20
- type: BooleanConstructor;
21
- default: boolean;
22
- };
23
- formData: {
24
- type: import('vue').PropType<Data>;
25
- default: () => {};
26
- };
27
- errorMode: {
28
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
29
- default: "onChanges";
30
- };
31
- }>, {
32
- markSubmitted: () => void;
33
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
- id: {
35
- type: StringConstructor;
36
- required: true;
37
- };
38
- name: {
39
- type: StringConstructor;
40
- default: string;
41
- };
42
- schema: {
43
- type: import('vue').PropType<any>;
44
- required: true;
45
- };
46
- uiSchema: {
47
- type: import('vue').PropType<any>;
48
- required: true;
49
- };
50
- disabled: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- formData: {
55
- type: import('vue').PropType<Data>;
56
- default: () => {};
57
- };
58
- errorMode: {
59
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
60
- default: "onChanges";
61
- };
62
- }>> & Readonly<{}>, {
63
- errorMode: import('./errorMode').ErrorMode;
64
- disabled: boolean;
65
- name: string;
66
- formData: Data;
67
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLFormElement>;
68
- export default _default;
@@ -1,52 +0,0 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
2
- import { ErrorMode } from './errorMode';
3
- export declare const FormWithActionsProperties: {
4
- /** Unique identifier used to namespace the inner form element. */
5
- id: {
6
- type: StringConstructor;
7
- required: true;
8
- };
9
- /** Title shown when creating a new record. */
10
- createTitle: {
11
- type: StringConstructor;
12
- required: true;
13
- };
14
- /** Title shown when editing an existing record. Falls back to `createTitle` when omitted. */
15
- updateTitle: {
16
- type: StringConstructor;
17
- };
18
- /** JSON schema describing the shape of the form data. */
19
- schema: {
20
- type: PropType<any>;
21
- };
22
- /** UI schema describing the layout and controls. */
23
- uiSchema: {
24
- type: PropType<any>;
25
- };
26
- /** REST endpoint used by `FormStore` to persist data. When omitted the form emits `submit` instead. */
27
- uri: {
28
- type: StringConstructor;
29
- };
30
- /** Enable vertical scrolling inside the form area. */
31
- scrollable: {
32
- type: BooleanConstructor;
33
- default: boolean;
34
- };
35
- /** Stretch the collapse wrapper to full height. */
36
- fullHeight: {
37
- type: BooleanConstructor;
38
- default: boolean;
39
- };
40
- /** Two-way bound form data object. */
41
- modelValue: {
42
- type: PropType<any>;
43
- default: () => {};
44
- };
45
- /** When validation errors are shown (`'onBlur'`, `'onChange'`, `'onSubmit'`, `'always'`). */
46
- errorMode: {
47
- type: PropType<ErrorMode>;
48
- default: "onBlur";
49
- };
50
- };
51
- export type FormWithActionsProp = ExtractPublicPropTypes<typeof FormWithActionsProperties>;
52
- export declare const FormWithActionsEmits: string[];
@@ -1,258 +0,0 @@
1
- declare function __VLS_template(): {
2
- attrs: Partial<{}>;
3
- slots: {
4
- actions?(_: {}): any;
5
- };
6
- refs: {
7
- formRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
8
- id: {
9
- type: StringConstructor;
10
- required: true;
11
- };
12
- name: {
13
- type: StringConstructor;
14
- default: string;
15
- };
16
- schema: {
17
- type: import('vue').PropType<any>;
18
- required: true;
19
- };
20
- uiSchema: {
21
- type: import('vue').PropType<any>;
22
- required: true;
23
- };
24
- disabled: {
25
- type: BooleanConstructor;
26
- default: boolean;
27
- };
28
- formData: {
29
- type: import('vue').PropType<import('./FormComponent.properties').Data>;
30
- default: () => {};
31
- };
32
- errorMode: {
33
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
34
- default: "onChanges";
35
- };
36
- }>> & Readonly<{}>, {
37
- markSubmitted: () => void;
38
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
39
- errorMode: import('./errorMode').ErrorMode;
40
- disabled: boolean;
41
- name: string;
42
- formData: import('./FormComponent.properties').Data;
43
- }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLFormElement, import('vue').ComponentProvideOptions, {
44
- P: {};
45
- B: {};
46
- D: {};
47
- C: {};
48
- M: {};
49
- Defaults: {};
50
- }, Readonly<import('vue').ExtractPropTypes<{
51
- id: {
52
- type: StringConstructor;
53
- required: true;
54
- };
55
- name: {
56
- type: StringConstructor;
57
- default: string;
58
- };
59
- schema: {
60
- type: import('vue').PropType<any>;
61
- required: true;
62
- };
63
- uiSchema: {
64
- type: import('vue').PropType<any>;
65
- required: true;
66
- };
67
- disabled: {
68
- type: BooleanConstructor;
69
- default: boolean;
70
- };
71
- formData: {
72
- type: import('vue').PropType<import('./FormComponent.properties').Data>;
73
- default: () => {};
74
- };
75
- errorMode: {
76
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
77
- default: "onChanges";
78
- };
79
- }>> & Readonly<{}>, {
80
- markSubmitted: () => void;
81
- }, {}, {}, {}, {
82
- errorMode: import('./errorMode').ErrorMode;
83
- disabled: boolean;
84
- name: string;
85
- formData: import('./FormComponent.properties').Data;
86
- }> | null;
87
- };
88
- rootEl: HTMLDivElement;
89
- };
90
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
91
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
92
- id: {
93
- type: StringConstructor;
94
- required: true;
95
- };
96
- createTitle: {
97
- type: StringConstructor;
98
- required: true;
99
- };
100
- updateTitle: {
101
- type: StringConstructor;
102
- };
103
- schema: {
104
- type: import('vue').PropType<any>;
105
- };
106
- uiSchema: {
107
- type: import('vue').PropType<any>;
108
- };
109
- uri: {
110
- type: StringConstructor;
111
- };
112
- scrollable: {
113
- type: BooleanConstructor;
114
- default: boolean;
115
- };
116
- fullHeight: {
117
- type: BooleanConstructor;
118
- default: boolean;
119
- };
120
- modelValue: {
121
- type: import('vue').PropType<any>;
122
- default: () => {};
123
- };
124
- errorMode: {
125
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
126
- default: "onBlur";
127
- };
128
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
129
- id: {
130
- type: StringConstructor;
131
- required: true;
132
- };
133
- createTitle: {
134
- type: StringConstructor;
135
- required: true;
136
- };
137
- updateTitle: {
138
- type: StringConstructor;
139
- };
140
- schema: {
141
- type: import('vue').PropType<any>;
142
- };
143
- uiSchema: {
144
- type: import('vue').PropType<any>;
145
- };
146
- uri: {
147
- type: StringConstructor;
148
- };
149
- scrollable: {
150
- type: BooleanConstructor;
151
- default: boolean;
152
- };
153
- fullHeight: {
154
- type: BooleanConstructor;
155
- default: boolean;
156
- };
157
- modelValue: {
158
- type: import('vue').PropType<any>;
159
- default: () => {};
160
- };
161
- errorMode: {
162
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
163
- default: "onBlur";
164
- };
165
- }>> & Readonly<{}>, {
166
- errorMode: import('./errorMode').ErrorMode;
167
- modelValue: any;
168
- scrollable: boolean;
169
- fullHeight: boolean;
170
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
171
- formRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
172
- id: {
173
- type: StringConstructor;
174
- required: true;
175
- };
176
- name: {
177
- type: StringConstructor;
178
- default: string;
179
- };
180
- schema: {
181
- type: import('vue').PropType<any>;
182
- required: true;
183
- };
184
- uiSchema: {
185
- type: import('vue').PropType<any>;
186
- required: true;
187
- };
188
- disabled: {
189
- type: BooleanConstructor;
190
- default: boolean;
191
- };
192
- formData: {
193
- type: import('vue').PropType<import('./FormComponent.properties').Data>;
194
- default: () => {};
195
- };
196
- errorMode: {
197
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
198
- default: "onChanges";
199
- };
200
- }>> & Readonly<{}>, {
201
- markSubmitted: () => void;
202
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
203
- errorMode: import('./errorMode').ErrorMode;
204
- disabled: boolean;
205
- name: string;
206
- formData: import('./FormComponent.properties').Data;
207
- }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLFormElement, import('vue').ComponentProvideOptions, {
208
- P: {};
209
- B: {};
210
- D: {};
211
- C: {};
212
- M: {};
213
- Defaults: {};
214
- }, Readonly<import('vue').ExtractPropTypes<{
215
- id: {
216
- type: StringConstructor;
217
- required: true;
218
- };
219
- name: {
220
- type: StringConstructor;
221
- default: string;
222
- };
223
- schema: {
224
- type: import('vue').PropType<any>;
225
- required: true;
226
- };
227
- uiSchema: {
228
- type: import('vue').PropType<any>;
229
- required: true;
230
- };
231
- disabled: {
232
- type: BooleanConstructor;
233
- default: boolean;
234
- };
235
- formData: {
236
- type: import('vue').PropType<import('./FormComponent.properties').Data>;
237
- default: () => {};
238
- };
239
- errorMode: {
240
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
241
- default: "onChanges";
242
- };
243
- }>> & Readonly<{}>, {
244
- markSubmitted: () => void;
245
- }, {}, {}, {}, {
246
- errorMode: import('./errorMode').ErrorMode;
247
- disabled: boolean;
248
- name: string;
249
- formData: import('./FormComponent.properties').Data;
250
- }> | null;
251
- }, HTMLDivElement>;
252
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
253
- export default _default;
254
- type __VLS_WithTemplateSlots<T, S> = T & {
255
- new (): {
256
- $slots: S;
257
- };
258
- };
@@ -1,65 +0,0 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
2
- import { JsonFormsLayout } from '../../../core/src/index.ts';
3
- import { TableAction } from '../../../../ui/src/index.ts';
4
- import { ErrorMode } from './errorMode';
5
- /** Generic record shape used by table rows. */
6
- export type Data = {
7
- [key: string]: any;
8
- };
9
- export declare const FormWithTableProperties: {
10
- /** Unique identifier used to namespace the inner table element. */
11
- id: {
12
- type: StringConstructor;
13
- required: true;
14
- };
15
- /** Heading displayed above the table. */
16
- tableTitle: {
17
- type: StringConstructor;
18
- required: true;
19
- };
20
- /** Title shown in the modal when creating a new record. */
21
- createTitle: {
22
- type: StringConstructor;
23
- required: true;
24
- };
25
- /** Title shown in the modal when editing a record. Falls back to `createTitle` when omitted. */
26
- updateTitle: {
27
- type: StringConstructor;
28
- };
29
- /** Override URI used to fetch table data. Defaults to `uri` when omitted. */
30
- dataUri: {
31
- type: StringConstructor;
32
- };
33
- /** Custom row actions rendered in the table. */
34
- tableActions: {
35
- type: PropType<TableAction[]>;
36
- };
37
- /** JSON Forms layout for the create/edit modal form. */
38
- form: {
39
- type: PropType<JsonFormsLayout>;
40
- };
41
- /** JSON Forms layout for the table. */
42
- table: {
43
- type: PropType<JsonFormsLayout>;
44
- };
45
- /** JSON Forms layout for the table filter. */
46
- filter: {
47
- type: PropType<JsonFormsLayout>;
48
- };
49
- /** REST endpoint used by `FormStore` for CRUD operations. */
50
- uri: {
51
- type: StringConstructor;
52
- };
53
- /** Default data pre-filled when creating a new record. */
54
- initialData: {
55
- type: PropType<Data>;
56
- default: () => {};
57
- };
58
- /** When validation errors are shown in the modal form. */
59
- errorMode: {
60
- type: PropType<ErrorMode>;
61
- default: "onBlur";
62
- };
63
- };
64
- export type FormWithTableProp = ExtractPublicPropTypes<typeof FormWithTableProperties>;
65
- export declare const FormWithTableEmits: string[];
@@ -1,90 +0,0 @@
1
- import { Data } from './FormWithTable.properties';
2
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
- id: {
4
- type: StringConstructor;
5
- required: true;
6
- };
7
- tableTitle: {
8
- type: StringConstructor;
9
- required: true;
10
- };
11
- createTitle: {
12
- type: StringConstructor;
13
- required: true;
14
- };
15
- updateTitle: {
16
- type: StringConstructor;
17
- };
18
- dataUri: {
19
- type: StringConstructor;
20
- };
21
- tableActions: {
22
- type: import('vue').PropType<import('../../../../ui/src/index.ts').TableAction[]>;
23
- };
24
- form: {
25
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
26
- };
27
- table: {
28
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
29
- };
30
- filter: {
31
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
32
- };
33
- uri: {
34
- type: StringConstructor;
35
- };
36
- initialData: {
37
- type: import('vue').PropType<Data>;
38
- default: () => {};
39
- };
40
- errorMode: {
41
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
42
- default: "onBlur";
43
- };
44
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
45
- id: {
46
- type: StringConstructor;
47
- required: true;
48
- };
49
- tableTitle: {
50
- type: StringConstructor;
51
- required: true;
52
- };
53
- createTitle: {
54
- type: StringConstructor;
55
- required: true;
56
- };
57
- updateTitle: {
58
- type: StringConstructor;
59
- };
60
- dataUri: {
61
- type: StringConstructor;
62
- };
63
- tableActions: {
64
- type: import('vue').PropType<import('../../../../ui/src/index.ts').TableAction[]>;
65
- };
66
- form: {
67
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
68
- };
69
- table: {
70
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
71
- };
72
- filter: {
73
- type: import('vue').PropType<import('../../../core/src/index.ts').JsonFormsLayout>;
74
- };
75
- uri: {
76
- type: StringConstructor;
77
- };
78
- initialData: {
79
- type: import('vue').PropType<Data>;
80
- default: () => {};
81
- };
82
- errorMode: {
83
- type: import('vue').PropType<import('./errorMode').ErrorMode>;
84
- default: "onBlur";
85
- };
86
- }>> & Readonly<{}>, {
87
- errorMode: import('./errorMode').ErrorMode;
88
- initialData: Data;
89
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
90
- export default _default;