jpf-mobx 1.0.10 → 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.
- package/dist/controls/index.d.ts +2 -0
- package/dist/controls/index.js +2 -0
- package/dist/controls/index.js.map +1 -1
- package/dist/controls/kendo/Grid/Grid.d.ts +2 -2
- package/dist/controls/kendo/index.d.ts +2 -0
- package/dist/controls/kendo/index.js +2 -0
- package/dist/controls/kendo/index.js.map +1 -1
- package/package.json +1 -1
- package/src/controls/index.ts +2 -2
- package/src/controls/kendo/Grid/Grid.ts +1 -1
- package/src/controls/kendo/index.ts +2 -2
- package/src/index.ts +1 -1
package/dist/controls/index.d.ts
CHANGED
package/dist/controls/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as custom from "./custom/index";
|
|
2
2
|
import * as html from "./html/index";
|
|
3
|
+
import * as kendo from "./kendo/index";
|
|
3
4
|
import * as leaflet from "./leaflet/index";
|
|
4
5
|
export { custom };
|
|
5
6
|
export { html };
|
|
7
|
+
export { kendo };
|
|
6
8
|
export { leaflet };
|
|
7
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/controls/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/controls/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAC;AAErC,OAAO,KAAK,KAAK,MAAM,eAAe,CAAC;AACvC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C,OAAO,EAAE,MAAM,EAAE,CAAC;AAClB,OAAO,EAAE,IAAI,EAAE,CAAC;AAEhB,OAAO,EAAE,KAAK,EAAE,CAAC;AACjB,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -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
|
|
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>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/controls/kendo/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/controls/kendo/index.ts"],"names":[],"mappings":"AAEA,cAAc,yBAAyB,CAAC;AAGxC,cAAc,aAAa,CAAC"}
|
package/package.json
CHANGED
package/src/controls/index.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import * as custom from "./custom/index";
|
|
3
3
|
import * as html from "./html/index";
|
|
4
4
|
//import * as jsonViewAwesome from "./jsonViewAwesome/index";
|
|
5
|
-
|
|
5
|
+
import * as kendo from "./kendo/index";
|
|
6
6
|
import * as leaflet from "./leaflet/index";
|
|
7
7
|
//import * as svg from "./svg/index";
|
|
8
8
|
|
|
@@ -10,6 +10,6 @@ import * as leaflet from "./leaflet/index";
|
|
|
10
10
|
export { custom };
|
|
11
11
|
export { html };
|
|
12
12
|
//export { jsonViewAwesome };
|
|
13
|
-
|
|
13
|
+
export { kendo };
|
|
14
14
|
export { leaflet };
|
|
15
15
|
//export { svg };
|
|
@@ -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
|
|
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>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
//export * from "./Chart/Chart";
|
|
2
2
|
//export * from "./Culture/Culture";
|
|
3
|
-
|
|
3
|
+
export * from "./DataSource/DataSource";
|
|
4
4
|
//export * from "./Dialog/Dialog";
|
|
5
5
|
//export * from "./Editor/Editor";
|
|
6
|
-
|
|
6
|
+
export * from "./Grid/Grid";
|
|
7
7
|
//export * from "./Menu/Menu";
|
|
8
8
|
//export * from "./ObservableObject/ObservableObject";
|
|
9
9
|
//export * from "./Tree/Tree";
|
package/src/index.ts
CHANGED