@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.
@@ -22141,6 +22141,7 @@
22141
22141
  }
22142
22142
  }
22143
22143
  ],
22144
+ "className": "steedos-overflow-visible-dialog",
22144
22145
  "showCloseButton": true,
22145
22146
  "showErrorMsg": true,
22146
22147
  "showLoading": true,
@@ -22727,7 +22728,7 @@ crudService && crudService.setData({showFieldsFilter: toShowFieldsFilter});
22727
22728
  "value": crudKeywords,
22728
22729
  "clearable": true,
22729
22730
  "clearAndSubmit": true,
22730
- "searchImediately": true
22731
+ "searchImediately": false
22731
22732
  }
22732
22733
  ]
22733
22734
  }
@@ -24748,7 +24749,9 @@ crudService && crudService.setData({showFieldsFilter: toShowFieldsFilter});
24748
24749
  suffix: "%",
24749
24750
  pipeIn: (value, data) => {
24750
24751
  if(value){
24751
- return value*100;
24752
+ // 因为例如 1.11 * 100 的值不是111,所以调整下。
24753
+ const result = value*100;
24754
+ return Number(result.toFixed(field.scale));
24752
24755
  }
24753
24756
  return value;
24754
24757
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos-widgets/sortable",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "main": "dist/sortable.cjs.js",
5
5
  "module": "dist/sortable.esm.js",
6
6
  "unpkg": "dist/sortable.umd.js",
@@ -45,7 +45,7 @@
45
45
  "dependencies": {
46
46
  "@dnd-kit/core": "^6.0.5",
47
47
  "@dnd-kit/sortable": "^7.0.1",
48
- "@steedos-widgets/amis-lib": "1.3.10"
48
+ "@steedos-widgets/amis-lib": "1.3.11"
49
49
  },
50
- "gitHead": "23174b9c3e638f44216d88f3dcc38352a3b251fc"
50
+ "gitHead": "e99fdbe7b62352a9727245d83a3adff27e6afc64"
51
51
  }