@steedos-widgets/amis-lib 1.1.3 → 1.1.4-beta.2
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 +39 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +39 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +39 -11
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +6 -0
- package/package.json +2 -2
|
@@ -113,6 +113,9 @@ export function lookupToAmisSelect(field: any, readonly: any, ctx: any): Promise
|
|
|
113
113
|
query: string;
|
|
114
114
|
$: string;
|
|
115
115
|
};
|
|
116
|
+
headers: {
|
|
117
|
+
Authorization: string;
|
|
118
|
+
};
|
|
116
119
|
};
|
|
117
120
|
autoComplete: {
|
|
118
121
|
method: string;
|
|
@@ -134,6 +137,9 @@ export function lookupToAmisSelect(field: any, readonly: any, ctx: any): Promise
|
|
|
134
137
|
query: string;
|
|
135
138
|
$: string;
|
|
136
139
|
};
|
|
140
|
+
headers: {
|
|
141
|
+
Authorization: string;
|
|
142
|
+
};
|
|
137
143
|
};
|
|
138
144
|
searchable: boolean;
|
|
139
145
|
}>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4-beta.2",
|
|
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": "7047b127c70cffaadd3bd232e1b871abfee5bf17"
|
|
63
63
|
}
|