@unizhen/ui 0.0.18 → 0.0.19

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.
@@ -76,10 +76,7 @@ export declare const fnTableSimplify: (columns: IUzFormItems) => {
76
76
  export declare const fnTableReduction: (simplify: ObjectKey) => any;
77
77
  export declare const fnTriggersSimplify: (triggers: ITrigger) => {
78
78
  f: string | null;
79
- o: string[] | null;
80
- c: string[] | null;
81
- e: string[] | null;
82
- d: string[] | null;
79
+ o: string;
83
80
  b: string;
84
81
  };
85
82
  export declare const fnTriggersReduction: (simplify: ObjectKey) => ITrigger;
@@ -96,10 +96,7 @@ export type ITableOptions = {
96
96
  };
97
97
  export interface ITrigger {
98
98
  fetch: string | null;
99
- when_open: string[] | null;
100
- when_create: string[] | null;
101
- when_edit: string[] | null;
102
- when_delete: string[] | null;
99
+ when_drawer_open: string;
103
100
  when_before_save: string;
104
101
  }
105
102
  export {};