@steedos-widgets/amis-lib 6.10.27 → 6.10.29

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.
@@ -32,6 +32,7 @@ export function getAmisInputTableSchema(props: any): Promise<{
32
32
  visible: any;
33
33
  hiddenOn: any;
34
34
  hidden: any;
35
+ requiredOn: any;
35
36
  required: any;
36
37
  className: string;
37
38
  }>;
@@ -221,6 +221,7 @@ export function getApprovalDrawerSchema(instance: any, events: any): Promise<{
221
221
  placeholder?: undefined;
222
222
  requiredOn?: undefined;
223
223
  value?: undefined;
224
+ onEvent?: undefined;
224
225
  } | {
225
226
  type: string;
226
227
  label: boolean;
@@ -231,6 +232,19 @@ export function getApprovalDrawerSchema(instance: any, events: any): Promise<{
231
232
  placeholder: string;
232
233
  requiredOn: string;
233
234
  value: any;
235
+ onEvent: {
236
+ blur: {
237
+ actions: {
238
+ componentId: string;
239
+ actionType: string;
240
+ args: {
241
+ value: {
242
+ instance_my_approve_description: string;
243
+ };
244
+ };
245
+ }[];
246
+ };
247
+ };
234
248
  })[];
235
249
  onEvent: {
236
250
  approve_judge_change: {
@@ -433,6 +433,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
433
433
  placeholder?: undefined;
434
434
  requiredOn?: undefined;
435
435
  value?: undefined;
436
+ onEvent?: undefined;
436
437
  } | {
437
438
  type: string;
438
439
  label: boolean;
@@ -443,6 +444,19 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
443
444
  placeholder: string;
444
445
  requiredOn: string;
445
446
  value: any;
447
+ onEvent: {
448
+ blur: {
449
+ actions: {
450
+ componentId: string;
451
+ actionType: string;
452
+ args: {
453
+ value: {
454
+ instance_my_approve_description: string;
455
+ };
456
+ };
457
+ }[];
458
+ };
459
+ };
446
460
  })[];
447
461
  onEvent: {
448
462
  approve_judge_change: {
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.27",
4
+ "version": "6.10.29",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -60,5 +60,5 @@
60
60
  "i18next": "24.2.2",
61
61
  "lodash": "^4.17.21"
62
62
  },
63
- "gitHead": "f7462d40de26cac7dc35a6e3b3b828de55ee3edb"
63
+ "gitHead": "bbecf969b14142ec923f1005b94dbd207ccdb582"
64
64
  }