@steedos-widgets/amis-lib 1.2.9 → 1.2.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.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +44 -53
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +45 -54
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +44 -53
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/tpl.d.ts +1 -0
- package/dist/types/lib/converter/amis/util.d.ts +1 -1
- package/package.json +2 -2
|
@@ -8,6 +8,7 @@ export function getUiFieldTpl(field: any): string;
|
|
|
8
8
|
export function getUiFileSizeTpl(field: any): string;
|
|
9
9
|
export function getRefObjectNameFieldName(field: any): Promise<any>;
|
|
10
10
|
export function getSelectTpl(field: any): string;
|
|
11
|
+
export function getSelectMap(selectOptions: any): {};
|
|
11
12
|
export function getNameTplUrl(field: any, ctx: any): string;
|
|
12
13
|
export function getNameTpl(field: any, ctx: any): string;
|
|
13
14
|
export function getRelatedFieldTpl(field: any, ctx: any): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export function getSvgUrl(source: any, name: any): string;
|
|
2
|
-
export function getContrastColor(bgColor: any): "#
|
|
2
|
+
export function getContrastColor(bgColor: any): "#ffffff" | "#000000";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.10",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"lodash": "^4.17.21"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "9450e671a32e4f6b508f53ae5390fd914ec335da"
|
|
63
63
|
}
|