@steedos-widgets/amis-lib 6.3.12-beta.3 → 6.3.12-beta.31

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,7 +76,7 @@ export function getAmisFileReadonlySchema(steedosField: any, ctx?: {}): Promise<
76
76
  title: string;
77
77
  headerClassName: string;
78
78
  size: string;
79
- width: string;
79
+ width: any;
80
80
  bodyClassName: string;
81
81
  closeOnEsc: boolean;
82
82
  closeOnOutside: boolean;
@@ -190,7 +190,7 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
190
190
  title: string;
191
191
  headerClassName: string;
192
192
  size: string;
193
- width: string;
193
+ width: any;
194
194
  bodyClassName: string;
195
195
  closeOnEsc: boolean;
196
196
  closeOnOutside: boolean;
@@ -78,6 +78,7 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
78
78
  type: string;
79
79
  actionType: string;
80
80
  label: string;
81
+ className: string;
81
82
  close?: undefined;
82
83
  id?: undefined;
83
84
  primary?: undefined;
@@ -87,12 +88,14 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
87
88
  actionType: string;
88
89
  close: boolean;
89
90
  id: string;
91
+ className: string;
90
92
  primary?: undefined;
91
93
  } | {
92
94
  type: string;
93
95
  actionType: string;
94
96
  label: string;
95
97
  primary: boolean;
98
+ className: string;
96
99
  close?: undefined;
97
100
  id?: undefined;
98
101
  })[];
@@ -81,6 +81,7 @@ export namespace StandardButtons {
81
81
  type: string;
82
82
  actionType: string;
83
83
  label: string;
84
+ className: string;
84
85
  close?: undefined;
85
86
  id?: undefined;
86
87
  primary?: undefined;
@@ -90,12 +91,14 @@ export namespace StandardButtons {
90
91
  actionType: string;
91
92
  close: boolean;
92
93
  id: string;
94
+ className: string;
93
95
  primary?: undefined;
94
96
  } | {
95
97
  type: string;
96
98
  actionType: string;
97
99
  label: string;
98
100
  primary: boolean;
101
+ className: string;
99
102
  close?: undefined;
100
103
  id?: undefined;
101
104
  })[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "6.3.12-beta.3",
4
+ "version": "6.3.12-beta.31",
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": "bbda3e7e9e42bc04a546f329ed18a88360b334bc"
64
+ "gitHead": "1b6fd99698cea7fc0c3aa2c3f345ae0a0a83cb41"
65
65
  }