@hpcc-js/dgrid2 0.0.0 → 2.1.0

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/src/test.ts CHANGED
@@ -1,41 +1,41 @@
1
- import { Table } from "./table";
2
-
3
- export { Test1 as Test };
4
-
5
- export class Test1 extends Table {
6
-
7
- constructor() {
8
- super();
9
- this
10
- .columns(["Category", "Series-1", "Series-2", "Series-3", "Series-4"])
11
- .data([
12
- ["A", -25, -23, -25, -22],
13
- ["B", -20, -21, -25, -21],
14
- ["C", -18, -20, -25, -19],
15
- ["D", -17, -17, -25, -18],
16
- ["E", -16, -15, -19, -18],
17
- ["F", -15, -14, -16, -16],
18
- ["G", -12, -10, -14, -15],
19
- ["H", -12, -8, -13, -15],
20
- ["I", -11, -6, -12, -12],
21
- ["J", -11, -6, -8, -12],
22
- ["K", -9, 0, -5, -10],
23
- ["L", -5, 1, -5, -9],
24
- ["M", -5, 2, -4, -8],
25
- ["N", -1, 4, -2, -7],
26
- ["O", 3, 7, 0, -5],
27
- ["P", 3, 8, 0, -3],
28
- ["Q", 4, 8, 7, 0],
29
- ["R", 6, 9, 11, 1],
30
- ["S", 9, 11, 11, 5],
31
- ["T", 10, 20, 12, 6],
32
- ["U", 12, 20, 16, 8],
33
- ["V", 12, 21, 18, 14],
34
- ["W", 14, 21, 18, 18],
35
- ["X", 15, 23, 21, 18],
36
- ["Y", 21, 23, 23, 21],
37
- ["Z", 23, 24, 24, 24]
38
- ])
39
- ;
40
- }
41
- }
1
+ import { Table } from "./table";
2
+
3
+ export { Test1 as Test };
4
+
5
+ export class Test1 extends Table {
6
+
7
+ constructor() {
8
+ super();
9
+ this
10
+ .columns(["Category", "Series-1", "Series-2", "Series-3", "Series-4"])
11
+ .data([
12
+ ["A", -25, -23, -25, -22],
13
+ ["B", -20, -21, -25, -21],
14
+ ["C", -18, -20, -25, -19],
15
+ ["D", -17, -17, -25, -18],
16
+ ["E", -16, -15, -19, -18],
17
+ ["F", -15, -14, -16, -16],
18
+ ["G", -12, -10, -14, -15],
19
+ ["H", -12, -8, -13, -15],
20
+ ["I", -11, -6, -12, -12],
21
+ ["J", -11, -6, -8, -12],
22
+ ["K", -9, 0, -5, -10],
23
+ ["L", -5, 1, -5, -9],
24
+ ["M", -5, 2, -4, -8],
25
+ ["N", -1, 4, -2, -7],
26
+ ["O", 3, 7, 0, -5],
27
+ ["P", 3, 8, 0, -3],
28
+ ["Q", 4, 8, 7, 0],
29
+ ["R", 6, 9, 11, 1],
30
+ ["S", 9, 11, 11, 5],
31
+ ["T", 10, 20, 12, 6],
32
+ ["U", 12, 20, 16, 8],
33
+ ["V", 12, 21, 18, 14],
34
+ ["W", 14, 21, 18, 18],
35
+ ["X", 15, 23, 21, 18],
36
+ ["Y", 21, 23, 23, 21],
37
+ ["Z", 23, 24, 24, 24]
38
+ ])
39
+ ;
40
+ }
41
+ }
@@ -1,4 +1,4 @@
1
- export declare const PKG_NAME = "@hpcc-js/dgrid2";
2
- export declare const PKG_VERSION = "0.0.0";
3
- export declare const BUILD_VERSION = "2.102.11";
1
+ export declare const PKG_NAME = "@hpcc-js/dgrid2";
2
+ export declare const PKG_VERSION = "2.1.0";
3
+ export declare const BUILD_VERSION = "2.103.0";
4
4
  //# sourceMappingURL=__package__.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,oBAAoB,CAAC;AAC1C,eAAO,MAAM,WAAW,UAAU,CAAC;AACnC,eAAO,MAAM,aAAa,aAAa,CAAC"}
1
+ {"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,oBAAoB,CAAC;AAC1C,eAAO,MAAM,WAAW,UAAU,CAAC;AACnC,eAAO,MAAM,aAAa,YAAY,CAAC"}
package/types/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from "./__package__";
2
- export * from "./table";
1
+ export * from "./__package__";
2
+ export * from "./table";
3
3
  //# sourceMappingURL=index.d.ts.map
package/types/table.d.ts CHANGED
@@ -1,20 +1,20 @@
1
- import { HTMLWidget, publish } from "@hpcc-js/common";
2
- import "../src/table.css";
3
- export declare type QuerySortItem = {
4
- attribute: string;
5
- descending: boolean;
6
- };
7
- export declare class Table extends HTMLWidget {
8
- protected _div: any;
9
- constructor();
10
- darkMode: publish<this, boolean>;
11
- multiSelect: publish<this, boolean>;
12
- _prevRow: any;
13
- _prevColumn: any;
14
- private renderTable;
15
- enter(domNode: any, element: any): void;
16
- update(domNode: any, element: any): void;
17
- exit(domNode: any, element: any): void;
18
- click(row: any, col: any, sel: any): void;
19
- }
1
+ import { HTMLWidget, publish } from "@hpcc-js/common";
2
+ import "../src/table.css";
3
+ export declare type QuerySortItem = {
4
+ attribute: string;
5
+ descending: boolean;
6
+ };
7
+ export declare class Table extends HTMLWidget {
8
+ protected _div: any;
9
+ constructor();
10
+ darkMode: publish<this, boolean>;
11
+ multiSelect: publish<this, boolean>;
12
+ _prevRow: any;
13
+ _prevColumn: any;
14
+ private renderTable;
15
+ enter(domNode: any, element: any): void;
16
+ update(domNode: any, element: any): void;
17
+ exit(domNode: any, element: any): void;
18
+ click(row: any, col: any, sel: any): void;
19
+ }
20
20
  //# sourceMappingURL=table.d.ts.map
package/types/test.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { Table } from "./table";
2
- export { Test1 as Test };
3
- export declare class Test1 extends Table {
4
- constructor();
5
- }
1
+ import { Table } from "./table";
2
+ export { Test1 as Test };
3
+ export declare class Test1 extends Table {
4
+ constructor();
5
+ }
6
6
  //# sourceMappingURL=test.d.ts.map
@@ -1,4 +1,4 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/dgrid2";
2
- export declare const PKG_VERSION = "0.0.0";
3
- export declare const BUILD_VERSION = "2.102.11";
2
+ export declare const PKG_VERSION = "2.1.0";
3
+ export declare const BUILD_VERSION = "2.103.0";
4
4
  //# sourceMappingURL=__package__.d.ts.map