@steedos-widgets/amis-lib 3.6.0-beta.6 → 3.6.0-beta.7
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 +14 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +14 -20
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +8 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +6 -2
- package/dist/types/lib/converter/amis/fields/table.d.ts +3 -1
- package/dist/types/lib/converter/amis/header.d.ts +1 -0
- package/dist/types/lib/objects.d.ts +1 -0
- package/package.json +2 -2
|
@@ -231,8 +231,10 @@ export function lookupToAmisIdsPicker(field: any, readonly: any, ctx: any): Prom
|
|
|
231
231
|
labelTpl: string;
|
|
232
232
|
autoFillHeight: boolean;
|
|
233
233
|
columnsTogglable: boolean;
|
|
234
|
-
columns?: undefined;
|
|
235
234
|
} | {
|
|
235
|
+
expandConfig: {
|
|
236
|
+
expand: string;
|
|
237
|
+
};
|
|
236
238
|
mode: string;
|
|
237
239
|
perPageAvailable: number[];
|
|
238
240
|
name: string;
|
|
@@ -322,8 +324,10 @@ export function getIdsPickerSchema(field: any, readonly: any, ctx: any): Promise
|
|
|
322
324
|
labelTpl: string;
|
|
323
325
|
autoFillHeight: boolean;
|
|
324
326
|
columnsTogglable: boolean;
|
|
325
|
-
columns?: undefined;
|
|
326
327
|
} | {
|
|
328
|
+
expandConfig: {
|
|
329
|
+
expand: string;
|
|
330
|
+
};
|
|
327
331
|
mode: string;
|
|
328
332
|
perPageAvailable: number[];
|
|
329
333
|
name: string;
|
|
@@ -16,8 +16,10 @@ export function getTableSchema(fields: any, options: any): Promise<{
|
|
|
16
16
|
labelTpl: string;
|
|
17
17
|
autoFillHeight: boolean;
|
|
18
18
|
columnsTogglable: boolean;
|
|
19
|
-
columns?: undefined;
|
|
20
19
|
} | {
|
|
20
|
+
expandConfig: {
|
|
21
|
+
expand: string;
|
|
22
|
+
};
|
|
21
23
|
mode: string;
|
|
22
24
|
perPageAvailable: number[];
|
|
23
25
|
name: string;
|
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.0-beta.
|
|
4
|
+
"version": "3.6.0-beta.7",
|
|
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": "9787e8edaf6e30ac08651eddcf0ca1b99f341a37"
|
|
65
65
|
}
|