@steedos-widgets/amis-lib 1.0.36 → 1.0.38
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 +8 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +24 -0
- package/dist/index.esm.js +38 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +8 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/render.d.ts +15 -0
- package/dist/types/lib/converter/amis/header.d.ts +0 -5
- package/dist/types/lib/converter/amis/toolbar.d.ts +3 -0
- package/dist/utils/object.d.ts +14 -0
- package/package.json +2 -2
package/dist/render.d.ts
ADDED
|
@@ -203,11 +203,6 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
|
|
|
203
203
|
id: string;
|
|
204
204
|
source: {
|
|
205
205
|
method: string;
|
|
206
|
-
/**
|
|
207
|
-
* 记录详细界面中相关表顶部头amisSchema
|
|
208
|
-
* @param {*} relatedObjectSchema 相关对象UISchema
|
|
209
|
-
* @returns amisSchema
|
|
210
|
-
*/
|
|
211
206
|
url: string;
|
|
212
207
|
dataType: string;
|
|
213
208
|
headers: {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare function createObject(superProps?: {
|
|
2
|
+
[propName: string]: any;
|
|
3
|
+
}, props?: {
|
|
4
|
+
[propName: string]: any;
|
|
5
|
+
}, properties?: any): object;
|
|
6
|
+
export declare function cloneObject(target: any, persistOwnProps?: boolean): any;
|
|
7
|
+
export declare function extendObject(target: any, src?: any, persistOwnProps?: boolean): any;
|
|
8
|
+
export declare function isObject(obj: any): boolean;
|
|
9
|
+
export declare function setVariable(data: {
|
|
10
|
+
[propName: string]: any;
|
|
11
|
+
}, key: string, value: any, convertKeyToPath?: boolean): void;
|
|
12
|
+
export declare function deleteVariable(data: {
|
|
13
|
+
[propName: string]: any;
|
|
14
|
+
}, key: string): void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.38",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"lodash": "^4.17.21"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "d204dcb01d54086946ab446cb380cbce8846c729"
|
|
62
62
|
}
|