@steedos-widgets/amis-lib 3.6.13 → 6.3.0-beta.10

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.
@@ -57,6 +57,7 @@ export function getSchema(uiSchema: any): {
57
57
  })[];
58
58
  };
59
59
  };
60
+ close: string;
60
61
  }[];
61
62
  regions: string[];
62
63
  };
@@ -34,6 +34,19 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
34
34
  }[];
35
35
  };
36
36
  };
37
+ actions: ({
38
+ type: string;
39
+ actionType: string;
40
+ label: string;
41
+ primary?: undefined;
42
+ close?: undefined;
43
+ } | {
44
+ type: string;
45
+ actionType: string;
46
+ label: string;
47
+ primary: boolean;
48
+ close: string;
49
+ })[];
37
50
  };
38
51
  }[];
39
52
  weight: number;
@@ -102,7 +102,7 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
102
102
  actionType: string;
103
103
  label: string;
104
104
  primary: boolean;
105
- close?: undefined;
105
+ close: string;
106
106
  id?: undefined;
107
107
  })[];
108
108
  };
@@ -105,7 +105,7 @@ export namespace StandardButtons {
105
105
  actionType: string;
106
106
  label: string;
107
107
  primary: boolean;
108
- close?: undefined;
108
+ close: string;
109
109
  id?: undefined;
110
110
  })[];
111
111
  };
@@ -160,6 +160,19 @@ export namespace StandardButtons {
160
160
  }[];
161
161
  };
162
162
  };
163
+ actions: ({
164
+ type: string;
165
+ actionType: string;
166
+ label: string;
167
+ primary?: undefined;
168
+ close?: undefined;
169
+ } | {
170
+ type: string;
171
+ actionType: string;
172
+ label: string;
173
+ primary: boolean;
174
+ close: string;
175
+ })[];
163
176
  };
164
177
  }[];
165
178
  weight: number;
@@ -232,6 +245,7 @@ export namespace StandardButtons {
232
245
  })[];
233
246
  };
234
247
  };
248
+ close: string;
235
249
  }[];
236
250
  regions: string[];
237
251
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "3.6.13",
4
+ "version": "6.3.0-beta.10",
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": "f0ceaf940b910c7881f216deec2cdd410ae94ce4"
64
+ "gitHead": "9bde0fd0766dc725e40940998b53e4f8fbeaea05"
65
65
  }