@kizmann/nano-ui 0.9.9 → 0.9.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/nano-ui",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -96,11 +96,11 @@ export default {
96
96
 
97
97
  isDisabled()
98
98
  {
99
- if ( ! Any.isFunction(this.column.disabled) ) {
100
- return this.column.disabled;
99
+ if ( ! Any.isFunction(this.column.matrixDisabled) ) {
100
+ return this.column.matrixDisabled;
101
101
  }
102
102
 
103
- return this.column.disabled(this);
103
+ return this.column.matrixDisabled(this);
104
104
  }
105
105
 
106
106
  },
@@ -94,6 +94,14 @@ export default {
94
94
  type: [Boolean, Function]
95
95
  },
96
96
 
97
+ matrixDisabled: {
98
+ default()
99
+ {
100
+ return false;
101
+ },
102
+ type: [Boolean, Function]
103
+ },
104
+
97
105
  breakpoint: {
98
106
  default()
99
107
  {