@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 CHANGED
@@ -3,8 +3,8 @@
3
3
  {
4
4
  "package": "@steedos-widgets/sortable",
5
5
  "urls": [
6
- "https://unpkg.com/@steedos-widgets/sortable@1.3.10/dist/sortable.umd.js",
7
- "https://unpkg.com/@steedos-widgets/sortable@1.3.10/dist/sortable.umd.css"
6
+ "https://unpkg.com/@steedos-widgets/sortable@1.3.11/dist/sortable.umd.js",
7
+ "https://unpkg.com/@steedos-widgets/sortable@1.3.11/dist/sortable.umd.css"
8
8
  ],
9
9
  "library": "BuilderSortable"
10
10
  }
@@ -15,10 +15,10 @@
15
15
  "npm": {
16
16
  "package": "@steedos-widgets/sortable"
17
17
  },
18
- "url": "https://unpkg.com/@steedos-widgets/sortable@1.3.10/dist/meta.js",
18
+ "url": "https://unpkg.com/@steedos-widgets/sortable@1.3.11/dist/meta.js",
19
19
  "urls": {
20
- "default": "https://unpkg.com/@steedos-widgets/sortable@1.3.10/dist/meta.js",
21
- "design": "https://unpkg.com/@steedos-widgets/sortable@1.3.10/dist/meta.js"
20
+ "default": "https://unpkg.com/@steedos-widgets/sortable@1.3.11/dist/meta.js",
21
+ "design": "https://unpkg.com/@steedos-widgets/sortable@1.3.11/dist/meta.js"
22
22
  }
23
23
  }
24
24
  ]
@@ -55840,6 +55840,7 @@ const getSetListviewFiltersButtonSchema = ()=>{
55840
55840
  }
55841
55841
  }
55842
55842
  ],
55843
+ "className": "steedos-overflow-visible-dialog",
55843
55844
  "showCloseButton": true,
55844
55845
  "showErrorMsg": true,
55845
55846
  "showLoading": true,
@@ -56426,7 +56427,7 @@ function getObjectHeaderQuickSearchBox(mainObject, fields, formFactor, { isLooku
56426
56427
  "value": crudKeywords,
56427
56428
  "clearable": true,
56428
56429
  "clearAndSubmit": true,
56429
- "searchImediately": true
56430
+ "searchImediately": false
56430
56431
  }
56431
56432
  ]
56432
56433
  }
@@ -58447,7 +58448,9 @@ async function convertSFieldToAmisField(field, readonly, ctx) {
58447
58448
  suffix: "%",
58448
58449
  pipeIn: (value, data) => {
58449
58450
  if(value){
58450
- return value*100;
58451
+ // 因为例如 1.11 * 100 的值不是111,所以调整下。
58452
+ const result = value*100;
58453
+ return Number(result.toFixed(field.scale));
58451
58454
  }
58452
58455
  return value;
58453
58456
  },