@steedos-widgets/amis-lib 6.10.24 → 6.10.26
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 +205 -58
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +205 -58
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +213 -202
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/calendar.d.ts +7 -1
- package/package.json +2 -2
|
@@ -37,6 +37,13 @@ export function getCalendarRecordSaveApi(object: any, calendarOptions: any): {
|
|
|
37
37
|
Authorization: string;
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
|
+
export function getCalendarResourcesApi(objectSchema: any, calendarOptions: any): {
|
|
41
|
+
url?: undefined;
|
|
42
|
+
adaptor?: undefined;
|
|
43
|
+
} | {
|
|
44
|
+
url: string;
|
|
45
|
+
adaptor: (payload: any, response: any, api: any, context: any) => any;
|
|
46
|
+
};
|
|
40
47
|
/**
|
|
41
48
|
* 列表视图Calendar amisSchema
|
|
42
49
|
* @param {*} objectSchema 对象UISchema
|
|
@@ -46,6 +53,5 @@ export function getObjectCalendar(objectSchema: any, calendarOptions: any, optio
|
|
|
46
53
|
export namespace DEFAULT_CALENDAR_OPTIONS {
|
|
47
54
|
let startDateExpr: string;
|
|
48
55
|
let endDateExpr: string;
|
|
49
|
-
let allDayExpr: string;
|
|
50
56
|
let textExpr: string;
|
|
51
57
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "6.10.
|
|
4
|
+
"version": "6.10.26",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"i18next": "24.2.2",
|
|
61
61
|
"lodash": "^4.17.21"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "cfc140e86317274c3e27bcf93ae84354e19c691e"
|
|
64
64
|
}
|