@steedos-widgets/amis-lib 6.10.12 → 6.10.14
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 +142 -50
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +143 -51
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +26 -23
- package/dist/index.umd.js.map +1 -1
- package/dist/types/workflow/flow.d.ts +2 -7
- package/dist/types/workflow/instance.d.ts +1 -1
- package/package.json +2 -2
|
@@ -602,15 +602,10 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
602
602
|
regions: string[];
|
|
603
603
|
onEvent: {
|
|
604
604
|
"@data.@instanceDetail.changed": {
|
|
605
|
-
actions:
|
|
606
|
-
actionType: string;
|
|
607
|
-
script: string;
|
|
608
|
-
componentId?: undefined;
|
|
609
|
-
} | {
|
|
605
|
+
actions: {
|
|
610
606
|
componentId: string;
|
|
611
607
|
actionType: string;
|
|
612
|
-
|
|
613
|
-
})[];
|
|
608
|
+
}[];
|
|
614
609
|
};
|
|
615
610
|
inited: {
|
|
616
611
|
actions: any[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "6.10.
|
|
4
|
+
"version": "6.10.14",
|
|
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": "f76e5fcfbf6ad001df8635a41554ba6fa140090e"
|
|
65
65
|
}
|