@steedos/service-plugin-amis 2.2.52-beta.34 → 2.2.52-beta.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/LICENSE.txt
CHANGED
|
@@ -11,8 +11,6 @@ If the file has no header, the following rules apply
|
|
|
11
11
|
|
|
12
12
|
On request, licenses under different terms are available.
|
|
13
13
|
|
|
14
|
-
Project templates can be found in the folders steedos-projects/
|
|
15
|
-
|
|
16
14
|
Source code of enterprise features are files that
|
|
17
15
|
* are in folders named "ee" or start with "ee_", or in subfolders of such folders.
|
|
18
16
|
* contain the strings "ee_" in its filename name.
|
|
@@ -252,9 +252,8 @@ module.exports = {
|
|
|
252
252
|
operators: getFieldOperators(field.type)
|
|
253
253
|
});
|
|
254
254
|
break;
|
|
255
|
-
//
|
|
255
|
+
// 以下date 、datetime、time 不能作为amis 表单项的格式 . filters 对此格式做个特殊兼容,
|
|
256
256
|
case 'date':
|
|
257
|
-
// amins的format不支持Z后缀,只能用+offset格式 .
|
|
258
257
|
// 华炎魔方中日期字段存的是utc的0点
|
|
259
258
|
fields.push({
|
|
260
259
|
label: field.label,
|
|
@@ -265,8 +264,7 @@ module.exports = {
|
|
|
265
264
|
});
|
|
266
265
|
break;
|
|
267
266
|
case 'datetime':
|
|
268
|
-
//
|
|
269
|
-
// 即amins中日期时间控件的format默认值为"YYYY-MM-DDTHH:mm+08:00"正好满足需求
|
|
267
|
+
// 即amis中日期时间控件的format默认值为"YYYY-MM-DDTHH:mm+08:00"正好满足需求
|
|
270
268
|
fields.push({
|
|
271
269
|
label: field.label,
|
|
272
270
|
type: field.type,
|
|
@@ -275,7 +273,6 @@ module.exports = {
|
|
|
275
273
|
});
|
|
276
274
|
break;
|
|
277
275
|
case 'time':
|
|
278
|
-
//amins的format不支持Z后缀,只能用+offset格式
|
|
279
276
|
// 华炎魔方中时间字段存的是1970-01-01的utc时间
|
|
280
277
|
fields.push({
|
|
281
278
|
label: field.label,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-plugin-amis",
|
|
3
|
-
"version": "2.2.52-beta.
|
|
3
|
+
"version": "2.2.52-beta.38",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"scripts": {},
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "1316029e7f9980a964dac06b68de0438a26e12a7"
|
|
12
12
|
}
|