@mezzanine-ui/core 0.14.6 → 0.14.8

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/table/table.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/core",
3
- "version": "0.14.6",
3
+ "version": "0.14.8",
4
4
  "description": "Core for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -40,8 +40,8 @@
40
40
  }
41
41
  },
42
42
  "dependencies": {
43
- "@mezzanine-ui/icons": "^0.14.6",
44
- "@mezzanine-ui/system": "^0.14.6",
43
+ "@mezzanine-ui/icons": "^0.14.8",
44
+ "@mezzanine-ui/system": "^0.14.8",
45
45
  "lodash": "^4.17.21",
46
46
  "tslib": "^2.4.1"
47
47
  },
package/table/table.d.ts CHANGED
@@ -112,6 +112,7 @@ export interface TableRowSelection {
112
112
  selectedRowKey?: string[];
113
113
  onChange?(keys: string[]): void;
114
114
  actions?: TableRowAction[];
115
+ disabledRowKeys?: string[];
115
116
  }
116
117
  /** === Feature draggable */
117
118
  export interface TableDraggable {