@steedos-widgets/amis-lib 1.2.0-beta.1 → 1.2.0-beta.2
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 +41 -54
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +41 -54
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +41 -54
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/objects.d.ts +4 -14
- package/dist/types/lib/objectsRelated.d.ts +0 -5
- package/dist/types/schema/standard_new.amis.d.ts +0 -1
- package/dist/types/standard/button.d.ts +0 -1
- package/package.json +2 -2
|
@@ -278,21 +278,11 @@ export function getRecordDetailSchema(objectName: any, appId: any, props?: {}):
|
|
|
278
278
|
objectApiName: string;
|
|
279
279
|
recordId: string;
|
|
280
280
|
id: string;
|
|
281
|
-
onEvent: {
|
|
282
|
-
recordLoaded: {
|
|
283
|
-
actions: {
|
|
284
|
-
actionType: string;
|
|
285
|
-
data: {
|
|
286
|
-
name: string;
|
|
287
|
-
record: string;
|
|
288
|
-
_id: string;
|
|
289
|
-
recordId: string;
|
|
290
|
-
recordLoaded: boolean;
|
|
291
|
-
};
|
|
292
|
-
}[];
|
|
293
|
-
};
|
|
294
|
-
};
|
|
295
281
|
})[];
|
|
282
|
+
data: {
|
|
283
|
+
"_master.objectName": string;
|
|
284
|
+
"_master.recordId": string;
|
|
285
|
+
};
|
|
296
286
|
onEvent: any;
|
|
297
287
|
};
|
|
298
288
|
}>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.2.0-beta.
|
|
4
|
+
"version": "1.2.0-beta.2",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"lodash": "^4.17.21"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "1fa692c57f5f968c3fbbcd2bfc7a7e4036a2a576"
|
|
63
63
|
}
|