@steedos-widgets/amis-lib 6.3.12-beta.2 → 6.3.12-beta.21
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 +199 -38
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +199 -38
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +55 -36
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/file.d.ts +2 -2
- package/dist/types/schema/standard_new.amis.d.ts +3 -0
- package/dist/types/standard/button.d.ts +3 -0
- package/package.json +2 -2
|
@@ -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:
|
|
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:
|
|
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.
|
|
4
|
+
"version": "6.3.12-beta.21",
|
|
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": "03e529c52ef9ab69f11d25858792272f715ce8de"
|
|
65
65
|
}
|