@mezzanine-ui/core 0.14.7 → 0.14.9

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": "@mezzanine-ui/core",
3
- "version": "0.14.7",
3
+ "version": "0.14.9",
4
4
  "description": "Core for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -32,16 +32,16 @@
32
32
  "dayjs": {
33
33
  "optional": true
34
34
  },
35
- "moment": {
35
+ "luxon": {
36
36
  "optional": true
37
37
  },
38
- "luxon": {
38
+ "moment": {
39
39
  "optional": true
40
40
  }
41
41
  },
42
42
  "dependencies": {
43
- "@mezzanine-ui/icons": "^0.14.7",
44
- "@mezzanine-ui/system": "^0.14.7",
43
+ "@mezzanine-ui/icons": "^0.14.9",
44
+ "@mezzanine-ui/system": "^0.14.9",
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 {
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { CssVarInterpolations } from '@mezzanine-ui/system/css';
3
2
  import EventEmitter from 'events';
4
3
  export declare const uploadPictureBlockPrefix = "mzn-upload-picture-block";