@newview/ui 1.1.80 → 1.1.81

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/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ ### 1.1.81
2
+ 1、select框增加getIsEnableSw优化
3
+
1
4
  ### 1.1.80
2
5
  1、select框修改getIsEnableSw方法为getIsEnableSel
3
6
 
@@ -32947,8 +32947,8 @@ let GridColumnInstance$1 = class GridColumnInstance2 extends BaseInstance {
32947
32947
  * @returns
32948
32948
  */
32949
32949
  __publicField2(this, "getIsEnableSel", (column, row) => {
32950
- if (this.utilities.isNull(column.isEnable)) {
32951
- return true;
32950
+ if (!column.isEnable) {
32951
+ return false;
32952
32952
  }
32953
32953
  if (typeof column.isEnable == "boolean") {
32954
32954
  return column.isEnable;