@steedos-widgets/amis-lib 3.6.2-beta.6 → 3.6.2-beta.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.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +128 -65
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +129 -66
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +44 -34
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/api.d.ts +4 -0
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +0 -1
- package/dist/types/lib/objects.d.ts +1 -3
- package/package.json +2 -2
|
@@ -217,6 +217,7 @@ export function getRecordDetailSchema(objectName: any, appId: any, props?: {}):
|
|
|
217
217
|
body: ({
|
|
218
218
|
type: string;
|
|
219
219
|
className: string;
|
|
220
|
+
contentClassName: string;
|
|
220
221
|
tabs: {
|
|
221
222
|
title: string;
|
|
222
223
|
className: string;
|
|
@@ -225,12 +226,9 @@ export function getRecordDetailSchema(objectName: any, appId: any, props?: {}):
|
|
|
225
226
|
label: string;
|
|
226
227
|
objectApiName: string;
|
|
227
228
|
recordId: string;
|
|
228
|
-
id: string;
|
|
229
229
|
appId: any;
|
|
230
230
|
}[];
|
|
231
|
-
id: string;
|
|
232
231
|
}[];
|
|
233
|
-
id: string;
|
|
234
232
|
} | {
|
|
235
233
|
type: string;
|
|
236
234
|
label: 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.2-beta.
|
|
4
|
+
"version": "3.6.2-beta.8",
|
|
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": "3818ac08a518bbed4fb8090165c713c09229dd47"
|
|
65
65
|
}
|