jpf-mobx 1.0.11 → 1.0.12

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.
@@ -1,9 +1,9 @@
1
1
  import * as kendo from "@progress/kendo-ui/js/kendo.grid.js";
2
2
  import { Element } from "../../../framework/element";
3
- import { Properties } from "../../../framework/properties";
3
+ import { Properties, IProperties } from "../../../framework/properties";
4
4
  import { Subscribable } from "../../../framework/observable";
5
5
  import { ChangedItem } from "../DataSource/DataSource";
6
- export interface GridProperties<TItem> extends Properties {
6
+ export interface GridProperties<TItem> extends IProperties {
7
7
  items?: Array<TItem> | Subscribable<Array<TItem>>;
8
8
  idProperty?: keyof TItem;
9
9
  columns?: Array<kendo.ui.GridColumn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jpf-mobx",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Javascript Presentation Foundation with mobx state management",
5
5
  "keywords": [
6
6
  "mvvm",
@@ -5,7 +5,7 @@ import { ObservableArray, observableArray, ObservableValue, observableValue, unw
5
5
  import { ChangedItem } from "../DataSource/DataSource";
6
6
  //import { knockoutObservableToKendoObservableArray, getUnderlyingObject } from "../ObservableObject/ObservableObject";
7
7
 
8
- export interface GridProperties<TItem> extends Properties {
8
+ export interface GridProperties<TItem> extends IProperties {
9
9
  items?: Array<TItem> | Subscribable<Array<TItem>>;
10
10
  idProperty?: keyof TItem;
11
11
  columns?: Array<kendo.ui.GridColumn>;