@steedos-widgets/amis-lib 1.3.5 → 1.3.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 +54 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +54 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +11 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/toolbar.d.ts +9 -0
- package/package.json +2 -2
|
@@ -15,6 +15,7 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
|
|
|
15
15
|
title: string;
|
|
16
16
|
submitText: string;
|
|
17
17
|
className: string;
|
|
18
|
+
debug: boolean;
|
|
18
19
|
mode: string;
|
|
19
20
|
wrapWithPanel: boolean;
|
|
20
21
|
body: {
|
|
@@ -218,4 +219,12 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
|
|
|
218
219
|
};
|
|
219
220
|
className: string;
|
|
220
221
|
}[];
|
|
222
|
+
onEvent: {
|
|
223
|
+
submitSucc: {
|
|
224
|
+
actions: {
|
|
225
|
+
actionType: string;
|
|
226
|
+
script: string;
|
|
227
|
+
}[];
|
|
228
|
+
};
|
|
229
|
+
};
|
|
221
230
|
}>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.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": "7468e201ef79de9e3c0b53489b7351620829ef65"
|
|
65
65
|
}
|