@steedos-widgets/sortable 1.3.10 → 1.3.12

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.
@@ -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": true
56426
+ "searchImediately": false
56426
56427
  }
56427
56428
  ]
56428
56429
  }
@@ -56900,6 +56901,8 @@ async function lookupToAmisTreeSelect(field, readonly, ctx) {
56900
56901
  return amisSchema;
56901
56902
  }
56902
56903
 
56904
+ const keywordsSearchBoxName = `__keywords_lookup`;
56905
+
56903
56906
  const getReferenceTo = async (field)=>{
56904
56907
  let referenceTo = field.reference_to;
56905
56908
  if(!referenceTo){
@@ -57143,8 +57146,6 @@ async function lookupToAmisPicker(field, readonly, ctx){
57143
57146
 
57144
57147
  source.data.$term = "$term";
57145
57148
  source.data.$self = "$$";
57146
-
57147
- let keywordsSearchBoxName = `__keywords_lookup__${field.name}__to__${refObjectConfig.name}`;
57148
57149
 
57149
57150
  source.requestAdaptor = `
57150
57151
  const selfData = JSON.parse(JSON.stringify(api.data.$self));
@@ -58443,7 +58444,9 @@ async function convertSFieldToAmisField(field, readonly, ctx) {
58443
58444
  suffix: "%",
58444
58445
  pipeIn: (value, data) => {
58445
58446
  if(value){
58446
- return value*100;
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
  },