@steedos-widgets/sortable 1.3.10 → 1.3.11
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/assets.json +5 -5
- package/dist/sortable.cjs.js +5 -2
- package/dist/sortable.cjs.js.map +1 -1
- package/dist/sortable.esm.js +5 -2
- package/dist/sortable.esm.js.map +1 -1
- package/dist/sortable.umd.js +5 -2
- package/package.json +3 -3
package/dist/sortable.esm.js
CHANGED
|
@@ -55836,6 +55836,7 @@ const getSetListviewFiltersButtonSchema = ()=>{
|
|
|
55836
55836
|
}
|
|
55837
55837
|
}
|
|
55838
55838
|
],
|
|
55839
|
+
"className": "steedos-overflow-visible-dialog",
|
|
55839
55840
|
"showCloseButton": true,
|
|
55840
55841
|
"showErrorMsg": true,
|
|
55841
55842
|
"showLoading": true,
|
|
@@ -56422,7 +56423,7 @@ function getObjectHeaderQuickSearchBox(mainObject, fields, formFactor, { isLooku
|
|
|
56422
56423
|
"value": crudKeywords,
|
|
56423
56424
|
"clearable": true,
|
|
56424
56425
|
"clearAndSubmit": true,
|
|
56425
|
-
"searchImediately":
|
|
56426
|
+
"searchImediately": false
|
|
56426
56427
|
}
|
|
56427
56428
|
]
|
|
56428
56429
|
}
|
|
@@ -58443,7 +58444,9 @@ async function convertSFieldToAmisField(field, readonly, ctx) {
|
|
|
58443
58444
|
suffix: "%",
|
|
58444
58445
|
pipeIn: (value, data) => {
|
|
58445
58446
|
if(value){
|
|
58446
|
-
|
|
58447
|
+
// 因为例如 1.11 * 100 的值不是111,所以调整下。
|
|
58448
|
+
const result = value*100;
|
|
58449
|
+
return Number(result.toFixed(field.scale));
|
|
58447
58450
|
}
|
|
58448
58451
|
return value;
|
|
58449
58452
|
},
|