@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
@@ -1,187 +0,0 @@
1
- import { z } from 'zod';
2
- /** Supported HTTP methods for resource operations. */
3
- export declare const MethodSchema: z.ZodEnum<{
4
- delete: "delete";
5
- get: "get";
6
- post: "post";
7
- put: "put";
8
- patch: "patch";
9
- }>;
10
- export type Method = z.infer<typeof MethodSchema>;
11
- export declare const OperationSchema: z.ZodObject<{
12
- uri: z.ZodString;
13
- method: z.ZodEnum<{
14
- delete: "delete";
15
- get: "get";
16
- post: "post";
17
- put: "put";
18
- patch: "patch";
19
- }>;
20
- }, z.core.$strip>;
21
- export type Operation = z.infer<typeof OperationSchema>;
22
- export declare const OperationsSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
23
- uri: z.ZodString;
24
- method: z.ZodEnum<{
25
- delete: "delete";
26
- get: "get";
27
- post: "post";
28
- put: "put";
29
- patch: "patch";
30
- }>;
31
- }, z.core.$strip>]>;
32
- export declare const BooleanOperationSchema: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
33
- uri: z.ZodString;
34
- method: z.ZodEnum<{
35
- delete: "delete";
36
- get: "get";
37
- post: "post";
38
- put: "put";
39
- patch: "patch";
40
- }>;
41
- }, z.core.$strip>]>>>;
42
- /**
43
- * Zod schema that validates and transforms a resource definition from the API.
44
- *
45
- * Accepts a resource descriptor with an `id`, base `uri`, CRUD `operations`,
46
- * and optional `schema` (JSON Schema + UI schema). During parsing:
47
- *
48
- * - If `schema.data` is present but `schema.ui` is missing, a UI schema is
49
- * auto-generated via {@link uiFromJsonSchema} using a GridLayout.
50
- * - Each operation is normalized to `{ uri, method }` or `null` based on
51
- * its value (`true` inherits the base uri, a string overrides the uri,
52
- * an object is used as-is, `false`/`undefined` maps to `null`).
53
- */
54
- export declare const ResourceSchema: z.ZodPipe<z.ZodObject<{
55
- id: z.ZodString;
56
- uri: z.ZodString;
57
- operations: z.ZodObject<{
58
- findAll: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
59
- uri: z.ZodString;
60
- method: z.ZodEnum<{
61
- delete: "delete";
62
- get: "get";
63
- post: "post";
64
- put: "put";
65
- patch: "patch";
66
- }>;
67
- }, z.core.$strip>]>>>;
68
- findOne: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
69
- uri: z.ZodString;
70
- method: z.ZodEnum<{
71
- delete: "delete";
72
- get: "get";
73
- post: "post";
74
- put: "put";
75
- patch: "patch";
76
- }>;
77
- }, z.core.$strip>]>>>;
78
- create: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
79
- uri: z.ZodString;
80
- method: z.ZodEnum<{
81
- delete: "delete";
82
- get: "get";
83
- post: "post";
84
- put: "put";
85
- patch: "patch";
86
- }>;
87
- }, z.core.$strip>]>>>;
88
- update: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
89
- uri: z.ZodString;
90
- method: z.ZodEnum<{
91
- delete: "delete";
92
- get: "get";
93
- post: "post";
94
- put: "put";
95
- patch: "patch";
96
- }>;
97
- }, z.core.$strip>]>>>;
98
- delete: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
99
- uri: z.ZodString;
100
- method: z.ZodEnum<{
101
- delete: "delete";
102
- get: "get";
103
- post: "post";
104
- put: "put";
105
- patch: "patch";
106
- }>;
107
- }, z.core.$strip>]>>>;
108
- lookup: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
109
- uri: z.ZodString;
110
- method: z.ZodEnum<{
111
- delete: "delete";
112
- get: "get";
113
- post: "post";
114
- put: "put";
115
- patch: "patch";
116
- }>;
117
- }, z.core.$strip>]>>;
118
- }, z.core.$strip>;
119
- schema: z.ZodOptional<z.ZodObject<{
120
- ui: z.ZodOptional<z.ZodAny>;
121
- data: z.ZodAny;
122
- }, z.core.$strip>>;
123
- }, z.core.$strip>, z.ZodTransform<{
124
- schema: {
125
- data: any;
126
- ui?: any;
127
- } | undefined;
128
- operations: Record<"create" | "delete" | "update" | "lookup" | "findAll" | "findOne", {
129
- uri: string;
130
- method: "delete" | "get" | "post" | "put" | "patch";
131
- } | null>;
132
- id: string;
133
- uri: string;
134
- }, {
135
- id: string;
136
- uri: string;
137
- operations: {
138
- findAll: boolean | {
139
- uri: string;
140
- method: "delete" | "get" | "post" | "put" | "patch";
141
- };
142
- findOne: boolean | {
143
- uri: string;
144
- method: "delete" | "get" | "post" | "put" | "patch";
145
- };
146
- create: boolean | {
147
- uri: string;
148
- method: "delete" | "get" | "post" | "put" | "patch";
149
- };
150
- update: boolean | {
151
- uri: string;
152
- method: "delete" | "get" | "post" | "put" | "patch";
153
- };
154
- delete: boolean | {
155
- uri: string;
156
- method: "delete" | "get" | "post" | "put" | "patch";
157
- };
158
- lookup?: string | {
159
- uri: string;
160
- method: "delete" | "get" | "post" | "put" | "patch";
161
- } | undefined;
162
- };
163
- schema?: {
164
- data: any;
165
- ui?: any;
166
- } | undefined;
167
- }>>;
168
- /**
169
- * Fetches and validates a resource definition from the given URI.
170
- *
171
- * @param resourceUri - Endpoint that returns the resource descriptor JSON.
172
- * @param skipAuth - When `true`, uses plain axios instead of the authenticated API client.
173
- * @returns Parsed and normalized resource with resolved operations and schemas.
174
- * @throws If the response does not match {@link ResourceSchema}.
175
- */
176
- export declare const getResourceSchema: (resourceUri: string, skipAuth: boolean) => Promise<{
177
- schema: {
178
- data: any;
179
- ui?: any;
180
- } | undefined;
181
- operations: Record<"create" | "delete" | "update" | "lookup" | "findAll" | "findOne", {
182
- uri: string;
183
- method: "delete" | "get" | "post" | "put" | "patch";
184
- } | null>;
185
- id: string;
186
- uri: string;
187
- }>;
@@ -1,10 +0,0 @@
1
- export declare const index: {
2
- tester: (uischema: import('@jsonforms/core').UISchemaElement, schema: import('@jsonforms/core').JsonSchema, context: import('@jsonforms/core').TesterContext) => number;
3
- renderer: import('vue').DefineComponent<{
4
- uischema: import('@jsonforms/core').ControlElement;
5
- schema: import('@jsonforms/core').JsonSchema;
6
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
- uischema: import('@jsonforms/core').ControlElement;
8
- schema: import('@jsonforms/core').JsonSchema;
9
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
- }[];
@@ -1,3 +0,0 @@
1
- export * from './controls';
2
- export * from './layout/LayoutRenders';
3
- export * from './array/ArrayRenderers';
@@ -1,7 +0,0 @@
1
- import { JsonSchema, UISchemaElement } from '@jsonforms/core';
2
- type __VLS_Props = {
3
- uischema: UISchemaElement;
4
- schema: JsonSchema;
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
7
- export default _default;
@@ -1,7 +0,0 @@
1
- import { JsonSchema, UISchemaElement } from '@jsonforms/core';
2
- type __VLS_Props = {
3
- uischema: UISchemaElement;
4
- schema: JsonSchema;
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
- export default _default;
@@ -1,10 +0,0 @@
1
- export declare const layoutRenderes: {
2
- tester: (uischema: import('@jsonforms/core').UISchemaElement, schema: import('@jsonforms/core').JsonSchema, context: import('@jsonforms/core').TesterContext) => number;
3
- renderer: import('vue').DefineComponent<{
4
- uischema: import('@jsonforms/core').UISchemaElement;
5
- schema: import('@jsonforms/core').JsonSchema;
6
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
- uischema: import('@jsonforms/core').UISchemaElement;
8
- schema: import('@jsonforms/core').JsonSchema;
9
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
- }[];
@@ -1 +0,0 @@
1
- export declare const COLSPAN: Record<number, string>;
@@ -1,19 +0,0 @@
1
- export declare const customRenderes: ({
2
- tester: (uischema: import('@jsonforms/core').UISchemaElement, schema: import('@jsonforms/core').JsonSchema, context: import('@jsonforms/core').TesterContext) => number;
3
- renderer: import('vue').DefineComponent<{
4
- uischema: import('@jsonforms/core').ControlElement;
5
- schema: import('@jsonforms/core').JsonSchema;
6
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
- uischema: import('@jsonforms/core').ControlElement;
8
- schema: import('@jsonforms/core').JsonSchema;
9
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
- } | {
11
- tester: (uischema: import('@jsonforms/core').UISchemaElement, schema: import('@jsonforms/core').JsonSchema, context: import('@jsonforms/core').TesterContext) => number;
12
- renderer: import('vue').DefineComponent<{
13
- uischema: import('@jsonforms/core').UISchemaElement;
14
- schema: import('@jsonforms/core').JsonSchema;
15
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
16
- uischema: import('@jsonforms/core').UISchemaElement;
17
- schema: import('@jsonforms/core').JsonSchema;
18
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
- })[];
package/forms/scope.d.ts DELETED
@@ -1,4 +0,0 @@
1
- import { JsonSchema } from '@jsonforms/core';
2
- export declare const scopeToPath: (scope: string) => string;
3
- export declare const resolveSchema: (root: JsonSchema, scope: string) => JsonSchema;
4
- export declare const labelFromScope: (scope: string) => string;
package/forms/types.d.ts DELETED
@@ -1,36 +0,0 @@
1
- export type { JsonSchema } from '@jsonforms/core';
2
- export interface UiElementOptions {
3
- format?: string;
4
- colspan?: number;
5
- styles?: {
6
- width?: string;
7
- control?: {
8
- wrapper?: string;
9
- };
10
- };
11
- uri?: string;
12
- valueKey?: string;
13
- labelKey?: string;
14
- enableCreate?: boolean;
15
- options?: Array<{
16
- label: string;
17
- value: string;
18
- }>;
19
- placeholder?: string;
20
- label?: string;
21
- hideLabel?: boolean;
22
- readonly?: boolean;
23
- visible?: boolean;
24
- layout?: 'row' | 'column';
25
- hideActions?: boolean;
26
- dataField?: string;
27
- skipAuth?: boolean;
28
- type?: string;
29
- }
30
- export interface UiElement {
31
- type: 'Control' | 'GridLayout' | 'VerticalLayout' | 'HorizontalLayout' | 'CollapseLayout';
32
- scope?: string;
33
- elements?: UiElement[];
34
- options?: UiElementOptions;
35
- label?: string;
36
- }
@@ -1,11 +0,0 @@
1
- export declare const isAutoCompleteControl: import('@jsonforms/core/src/testers/testers').Tester;
2
- export declare const isTextAreaControl: import('@jsonforms/core/src/testers/testers').Tester;
3
- export declare const isStringFormat: import('@jsonforms/core/src/testers/testers').Tester;
4
- export declare const isMarkdownControl: import('@jsonforms/core/src/testers/testers').Tester;
5
- export declare const isArrayRenderer: import('@jsonforms/core/src/testers/testers').Tester;
6
- export declare const isCustomControl: (customType: string) => import('@jsonforms/core/src/testers/testers').Tester;
7
- export declare const isMultiselectControl: import('@jsonforms/core/src/testers/testers').Tester;
8
- export declare const isSelectControl: import('@jsonforms/core/src/testers/testers').Tester;
9
- export declare const isBooleanControl: import('@jsonforms/core/src/testers/testers').Tester;
10
- export declare const isNumberFormat: import('@jsonforms/core/src/testers/testers').Tester;
11
- export declare const isIntegerFormat: import('@jsonforms/core/src/testers/testers').Tester;
@@ -1,32 +0,0 @@
1
- import { AxiosRequestInterceptorUse } from 'axios';
2
- type RequestOptions = {
3
- skipAuth?: boolean;
4
- queryParams?: Record<string, any>;
5
- contentType?: string;
6
- };
7
- export type HttpRequest<T> = AxiosRequestInterceptorUse<any>;
8
- export type NotificationStore = {
9
- info: (message: string) => void;
10
- error: (message: string) => void;
11
- warning: (message: string) => void;
12
- success: (message: string) => void;
13
- };
14
- type RepositoryOptions = {
15
- notification?: {
16
- show: true;
17
- entityType: string;
18
- notification: NotificationStore;
19
- };
20
- };
21
- export declare const createRepository: <T extends {
22
- id?: string;
23
- }>(formSchemaModel: {
24
- uri: string;
25
- }, httpRequest: HttpRequest<T>, options?: RepositoryOptions) => {
26
- create: (object: T, options?: RequestOptions) => any;
27
- patch: (id: string, object: T, options?: RequestOptions) => any;
28
- createMulti: (objects: T[], options?: RequestOptions) => Promise<any>;
29
- delete: (id: string, options?: RequestOptions) => any;
30
- get: (id: string, options?: RequestOptions) => any;
31
- };
32
- export {};
@@ -1 +0,0 @@
1
- export * from './crud.repository';
@@ -1,13 +0,0 @@
1
- import { Filter, JsonFormsLayout } from '../../../../core/src/index.ts';
2
- type __VLS_Props = {
3
- layout: JsonFormsLayout;
4
- filters: Filter[];
5
- };
6
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
- changeFilters: (data: any) => any;
8
- removeFilter: (filter: Filter) => any;
9
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- onChangeFilters?: ((data: any) => any) | undefined;
11
- onRemoveFilter?: ((filter: Filter) => any) | undefined;
12
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
13
- export default _default;
package/table/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export { default as TableComponent } from './table.component.vue';
2
- export * from './table.component.properties';
@@ -1,34 +0,0 @@
1
- import { JsonSchema, Layout } from '@jsonforms/core';
2
- import { PropType } from 'vue';
3
- import { TableAction } from '../../../../ui/src/index.ts';
4
- export declare const TableComponentProperties: {
5
- id: {
6
- type: StringConstructor;
7
- required: true;
8
- };
9
- uiSchema: {
10
- type: PropType<Layout>;
11
- required: true;
12
- };
13
- schema: {
14
- type: PropType<JsonSchema>;
15
- required: true;
16
- };
17
- filterUiSchema: {
18
- type: PropType<Layout>;
19
- };
20
- filterSchema: {
21
- type: PropType<JsonSchema>;
22
- };
23
- uri: {
24
- type: StringConstructor;
25
- required: true;
26
- };
27
- reload: {
28
- type: NumberConstructor;
29
- };
30
- actions: {
31
- type: PropType<TableAction[]>;
32
- };
33
- };
34
- export declare const TableComponentEmits: string[];
@@ -1,60 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
- id: {
3
- type: StringConstructor;
4
- required: true;
5
- };
6
- uiSchema: {
7
- type: import('vue').PropType<import('@jsonforms/core').Layout>;
8
- required: true;
9
- };
10
- schema: {
11
- type: import('vue').PropType<import('@jsonforms/core').JsonSchema>;
12
- required: true;
13
- };
14
- filterUiSchema: {
15
- type: import('vue').PropType<import('@jsonforms/core').Layout>;
16
- };
17
- filterSchema: {
18
- type: import('vue').PropType<import('@jsonforms/core').JsonSchema>;
19
- };
20
- uri: {
21
- type: StringConstructor;
22
- required: true;
23
- };
24
- reload: {
25
- type: NumberConstructor;
26
- };
27
- actions: {
28
- type: import('vue').PropType<import('../../../../ui/src/index.ts').TableAction[]>;
29
- };
30
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
31
- id: {
32
- type: StringConstructor;
33
- required: true;
34
- };
35
- uiSchema: {
36
- type: import('vue').PropType<import('@jsonforms/core').Layout>;
37
- required: true;
38
- };
39
- schema: {
40
- type: import('vue').PropType<import('@jsonforms/core').JsonSchema>;
41
- required: true;
42
- };
43
- filterUiSchema: {
44
- type: import('vue').PropType<import('@jsonforms/core').Layout>;
45
- };
46
- filterSchema: {
47
- type: import('vue').PropType<import('@jsonforms/core').JsonSchema>;
48
- };
49
- uri: {
50
- type: StringConstructor;
51
- required: true;
52
- };
53
- reload: {
54
- type: NumberConstructor;
55
- };
56
- actions: {
57
- type: import('vue').PropType<import('../../../../ui/src/index.ts').TableAction[]>;
58
- };
59
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
60
- export default _default;
@@ -1,29 +0,0 @@
1
- declare class TableStore {
2
- private route;
3
- private router;
4
- private get httpRequest();
5
- private requestData;
6
- private _reload;
7
- loading: import('vue').Ref<boolean, boolean>;
8
- private uri;
9
- reload(): void;
10
- data: import('vue').Ref<any, any>;
11
- pageData: import('vue').ComputedRef<{
12
- count: any;
13
- pageSize: any;
14
- page: any;
15
- }>;
16
- tableData: import('vue').ComputedRef<any>;
17
- init: (url: string) => void;
18
- private updateRequest;
19
- sort: (id: string) => void;
20
- updatePage(page: number): void;
21
- updateFilters: (filters: Record<string, any>) => void;
22
- sorting: import('vue').ComputedRef<{
23
- sortColumn: any;
24
- sortDirection: any;
25
- }>;
26
- filters: import('vue').ComputedRef<import('../../../core/src/index.ts').Filter[]>;
27
- }
28
- export declare const useTableStore: (name: string) => TableStore;
29
- export {};