@steedos-widgets/amis-lib 3.6.9 → 3.6.10
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/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +18 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +18 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +4 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/calendar.d.ts +1 -0
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +4 -0
- package/dist/types/lib/converter/amis/fields/table.d.ts +2 -0
- package/dist/types/lib/converter/amis/graphql.d.ts +1 -0
- package/package.json +2 -2
|
@@ -151,6 +151,7 @@ export function lookupToAmisPicker(field: any, readonly: any, ctx: any): Promise
|
|
|
151
151
|
orderDir: string;
|
|
152
152
|
pageNo: string;
|
|
153
153
|
pageSize: string;
|
|
154
|
+
queryFields: string;
|
|
154
155
|
query: string;
|
|
155
156
|
};
|
|
156
157
|
headers: {
|
|
@@ -176,6 +177,7 @@ export function lookupToAmisSelect(field: any, readonly: any, ctx: any): Promise
|
|
|
176
177
|
orderDir: string;
|
|
177
178
|
pageNo: string;
|
|
178
179
|
pageSize: string;
|
|
180
|
+
queryFields: string;
|
|
179
181
|
query: string;
|
|
180
182
|
};
|
|
181
183
|
headers: {
|
|
@@ -209,6 +211,7 @@ export function lookupToAmisIdsPicker(field: any, readonly: any, ctx: any): Prom
|
|
|
209
211
|
orderDir: string;
|
|
210
212
|
pageNo: string;
|
|
211
213
|
pageSize: string;
|
|
214
|
+
queryFields: string;
|
|
212
215
|
query: string;
|
|
213
216
|
};
|
|
214
217
|
headers: {
|
|
@@ -295,6 +298,7 @@ export function getIdsPickerSchema(field: any, readonly: any, ctx: any): Promise
|
|
|
295
298
|
orderDir: string;
|
|
296
299
|
pageNo: string;
|
|
297
300
|
pageSize: string;
|
|
301
|
+
queryFields: string;
|
|
298
302
|
query: string;
|
|
299
303
|
};
|
|
300
304
|
headers: {
|
|
@@ -48,6 +48,7 @@ export function getTableApi(mainObject: any, fields: any, options: any): Promise
|
|
|
48
48
|
orderDir: string;
|
|
49
49
|
pageNo: string;
|
|
50
50
|
pageSize: string;
|
|
51
|
+
queryFields: string;
|
|
51
52
|
query: string;
|
|
52
53
|
};
|
|
53
54
|
headers: {
|
|
@@ -62,6 +63,7 @@ export function getApi(object: any, recordId: any, fields: any, options: any): P
|
|
|
62
63
|
orderDir: string;
|
|
63
64
|
pageNo: string;
|
|
64
65
|
pageSize: string;
|
|
66
|
+
queryFields: string;
|
|
65
67
|
query: string;
|
|
66
68
|
};
|
|
67
69
|
headers: {
|
|
@@ -19,6 +19,7 @@ export function getFindQuery(object: any, recordId: any, fields: any, options: a
|
|
|
19
19
|
orderDir: string;
|
|
20
20
|
pageNo: string;
|
|
21
21
|
pageSize: string;
|
|
22
|
+
queryFields: string;
|
|
22
23
|
query: string;
|
|
23
24
|
}>;
|
|
24
25
|
export function getRecordPermissionsQuery(object: any, recordId: any, options: any): {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.6.
|
|
4
|
+
"version": "3.6.10",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"lodash": "^4.17.21",
|
|
62
62
|
"react-i18next": "12.3.1"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "a941d75af383db8972231e5fa08860107a6910bb"
|
|
65
65
|
}
|