@steedos-widgets/amis-lib 6.3.11-beta.9 → 6.3.11
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 +28 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +28 -9
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +13 -11
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/file.d.ts +2 -0
- package/dist/types/lib/converter/amis/util.d.ts +1 -1
- package/package.json +2 -2
|
@@ -76,6 +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
80
|
bodyClassName: string;
|
|
80
81
|
closeOnEsc: boolean;
|
|
81
82
|
closeOnOutside: boolean;
|
|
@@ -189,6 +190,7 @@ export function getAmisFileSchema(steedosField: any, readonly: any, ctx: any): P
|
|
|
189
190
|
title: string;
|
|
190
191
|
headerClassName: string;
|
|
191
192
|
size: string;
|
|
193
|
+
width: string;
|
|
192
194
|
bodyClassName: string;
|
|
193
195
|
closeOnEsc: boolean;
|
|
194
196
|
closeOnOutside: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export function getSvgUrl(source: any, name: any): string;
|
|
2
2
|
export function getImageFieldUrl(url: any, readonly: any): any;
|
|
3
|
-
export function getContrastColor(bgColor: any): "#
|
|
3
|
+
export function getContrastColor(bgColor: any): "#000000" | "#ffffff";
|
|
4
4
|
export function getLookupListView(refObjectConfig: any): null;
|
|
5
5
|
/**
|
|
6
6
|
* 获取可比较的amis版本号
|
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.11
|
|
4
|
+
"version": "6.3.11",
|
|
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": "856170d590303b7e5a717fb167bddb9c042c6749"
|
|
65
65
|
}
|