@refinitiv-ui/efx-grid 6.0.33 → 6.0.35

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. package/lib/column-dragging/es6/ColumnDragging.js +50 -40
  2. package/lib/core/dist/core.js +210 -38
  3. package/lib/core/dist/core.min.js +1 -1
  4. package/lib/core/es6/data/DataTable.d.ts +3 -1
  5. package/lib/core/es6/data/DataTable.js +27 -9
  6. package/lib/core/es6/data/DataView.d.ts +2 -0
  7. package/lib/core/es6/data/DataView.js +12 -1
  8. package/lib/core/es6/data/Segment.d.ts +2 -0
  9. package/lib/core/es6/data/Segment.js +16 -0
  10. package/lib/core/es6/data/SegmentCollection.d.ts +1 -3
  11. package/lib/core/es6/data/SegmentCollection.js +25 -18
  12. package/lib/core/es6/grid/Core.d.ts +12 -0
  13. package/lib/core/es6/grid/Core.js +64 -2
  14. package/lib/core/es6/grid/plugins/SortableTitlePlugin.js +13 -7
  15. package/lib/grid/index.js +1 -1
  16. package/lib/grid/themes/halo/dark/efx-grid.js +1 -1
  17. package/lib/grid/themes/halo/dark/es5/all-elements.js +1 -1
  18. package/lib/grid/themes/halo/efx-grid.less +3 -1
  19. package/lib/grid/themes/halo/light/efx-grid.js +1 -1
  20. package/lib/grid/themes/halo/light/es5/all-elements.js +1 -1
  21. package/lib/rt-grid/dist/rt-grid.js +766 -293
  22. package/lib/rt-grid/dist/rt-grid.min.js +1 -1
  23. package/lib/rt-grid/es6/ColumnDefinition.js +13 -8
  24. package/lib/rt-grid/es6/DataConnector.js +3 -2
  25. package/lib/rt-grid/es6/Grid.d.ts +3 -1
  26. package/lib/rt-grid/es6/Grid.js +148 -40
  27. package/lib/rt-grid/es6/RowDefSorter.d.ts +5 -5
  28. package/lib/rt-grid/es6/RowDefSorter.js +165 -71
  29. package/lib/rt-grid/es6/RowDefinition.d.ts +7 -2
  30. package/lib/rt-grid/es6/RowDefinition.js +48 -10
  31. package/lib/rt-grid/es6/SnapshotFiller.d.ts +1 -0
  32. package/lib/rt-grid/es6/SnapshotFiller.js +1 -11
  33. package/lib/tr-grid-column-selection/es6/ColumnSelection.js +66 -0
  34. package/lib/tr-grid-column-stack/es6/ColumnStack.d.ts +2 -0
  35. package/lib/tr-grid-column-stack/es6/ColumnStack.js +38 -13
  36. package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.d.ts +12 -5
  37. package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.js +128 -42
  38. package/lib/tr-grid-heat-map/es6/HeatMap.d.ts +3 -3
  39. package/lib/tr-grid-heat-map/es6/HeatMap.js +13 -2
  40. package/lib/tr-grid-row-dragging/es6/RowDragging.d.ts +2 -1
  41. package/lib/tr-grid-row-dragging/es6/RowDragging.js +153 -17
  42. package/lib/tr-grid-rowcoloring/es6/RowColoring.js +3 -2
  43. package/lib/tr-grid-textformatting/es6/TextFormatting.d.ts +20 -20
  44. package/lib/tr-grid-textformatting/es6/TextFormatting.js +37 -138
  45. package/lib/tr-grid-util/es6/CellPainter.d.ts +1 -1
  46. package/lib/tr-grid-util/es6/CellPainter.js +56 -55
  47. package/lib/tr-grid-util/es6/DragUI.js +7 -3
  48. package/lib/tr-grid-util/es6/FieldFormatter.js +6 -2
  49. package/lib/tr-grid-util/es6/NumberFormatter.js +23 -11
  50. package/lib/tr-grid-util/es6/Util.d.ts +3 -0
  51. package/lib/tr-grid-util/es6/Util.js +53 -0
  52. package/lib/tr-grid-util/es6/jet/DataGenerator.js +36 -33
  53. package/lib/types/es6/ColumnStack.d.ts +2 -0
  54. package/lib/types/es6/ConditionalColoring.d.ts +12 -5
  55. package/lib/types/es6/Core/data/DataTable.d.ts +3 -1
  56. package/lib/types/es6/Core/data/DataView.d.ts +2 -0
  57. package/lib/types/es6/Core/data/Segment.d.ts +2 -0
  58. package/lib/types/es6/Core/data/SegmentCollection.d.ts +1 -3
  59. package/lib/types/es6/Core/grid/Core.d.ts +4 -0
  60. package/lib/types/es6/Core/grid/plugins/SortableTitlePlugin.d.ts +1 -0
  61. package/lib/types/es6/HeatMap.d.ts +3 -3
  62. package/lib/types/es6/RealtimeGrid/Grid.d.ts +3 -1
  63. package/lib/types/es6/RealtimeGrid/RowDefSorter.d.ts +5 -5
  64. package/lib/types/es6/RealtimeGrid/RowDefinition.d.ts +7 -2
  65. package/lib/types/es6/RealtimeGrid/SnapshotFiller.d.ts +1 -0
  66. package/lib/types/es6/RowDragging.d.ts +2 -1
  67. package/lib/types/es6/TextFormatting.d.ts +20 -20
  68. package/lib/versions.json +9 -9
  69. package/package.json +1 -1
@@ -5,7 +5,7 @@ import { Conflator } from "../../../tr-grid-util/es6/Conflator.js";
5
5
  import { Ext } from "../../../tr-grid-util/es6/Ext.js";
6
6
  import { EventDispatcher } from "../../../tr-grid-util/es6/EventDispatcher.js";
7
7
  import { Engine } from "../../../tr-grid-util/es6/formula/Engine.js";
8
- import { cloneObject, extendObject, arrayToObject } from "../../../tr-grid-util/es6/Util.js";
8
+ import { cloneObject, extendObject, arrayToObject, isEmptyObject, deepEqual } from "../../../tr-grid-util/es6/Util.js";
9
9
  import { DateTime } from "../../../tr-grid-util/es6/DateTime.js";
10
10
 
11
11
  import { RowDefinition, ROW_DEF } from "./RowDefinition.js";
@@ -136,6 +136,8 @@ declare class Grid extends EventDispatcher {
136
136
 
137
137
  public setColumns(columns: (any)[]|null): void;
138
138
 
139
+ public restoreColumns(columns: (any)[]|null): void;
140
+
139
141
  public setFields(ary: (string)[]|null): void;
140
142
 
141
143
  public removeColumn(colRef: Grid.ColumnReference|null): void;
@@ -1,4 +1,4 @@
1
-
1
+ import { cloneObject } from "../../../tr-grid-util/es6/Util.js";
2
2
 
3
3
  declare class RowDefSorter {
4
4
 
@@ -6,14 +6,14 @@ declare class RowDefSorter {
6
6
 
7
7
  public dispose(): void;
8
8
 
9
- public getSorter(rowSorting?: boolean|null): ((...params: any[]) => any)|null;
10
-
11
- public setSortLogic(func?: ((...params: any[]) => any)|null): void;
9
+ public getSorter(): ((...params: any[]) => any)|null;
12
10
 
13
- public setField(field: string): void;
11
+ public reset(key: string, value: any): void;
14
12
 
15
13
  public setContext(key: string, value: any): void;
16
14
 
15
+ public addColumnContext(field: string, logic: ((...params: any[]) => any)|null, rowSorting: boolean, order: string, colIndex: number, colDef: any): void;
16
+
17
17
  }
18
18
 
19
19
  export default RowDefSorter;
@@ -6,6 +6,7 @@ declare namespace RowDefinition {
6
6
 
7
7
  type Options = {
8
8
  ric?: string|null,
9
+ permId?: string|null,
9
10
  values?: (any[]|any)|null,
10
11
  fields?: (string)[]|null,
11
12
  asChain?: boolean|null,
@@ -36,7 +37,7 @@ declare class RowDefinition {
36
37
 
37
38
  public initialize(rowOptions?: RowDefinition.Options|null): void;
38
39
 
39
- public setContent(userInput: string): boolean;
40
+ public setContent(userInput: string, permId?: string|null): boolean;
40
41
 
41
42
  public getRowId(): string;
42
43
 
@@ -70,6 +71,10 @@ declare class RowDefinition {
70
71
 
71
72
  public getRic(): string;
72
73
 
74
+ public getPermId(): string;
75
+
76
+ public getSymbol(): string;
77
+
73
78
  public getDisplayText(): string;
74
79
 
75
80
  public getLabel(): string|null|null;
@@ -138,7 +143,7 @@ declare const ROW_DEF: string;
138
143
 
139
144
  declare const ROW_TYPES: RowDefinition.RowTypes;
140
145
 
141
- declare function rowData(userInput: string): boolean;
146
+ declare function rowData(userInput: string, permId?: string|null): boolean;
142
147
 
143
148
  export {RowDefinition, ROW_DEF, ROW_TYPES};
144
149
  export default RowDefinition;
@@ -2,6 +2,7 @@ import Grid from "./Grid.js";
2
2
  import {Ext} from '../../../tr-grid-util/es6/Ext.js';
3
3
  import {EventDispatcher} from '../../../tr-grid-util/es6/EventDispatcher.js';
4
4
  import {FieldDefinition} from './FieldDefinition.js';
5
+ import { isEmptyObject } from "../../../tr-grid-util/es6/Util.js";
5
6
 
6
7
  declare class SnapshotFiller extends EventDispatcher {
7
8
 
@@ -18,7 +18,8 @@ declare namespace RowDraggingPlugin {
18
18
  dragStart?: ((...params: any[]) => any)|null,
19
19
  drag?: ((...params: any[]) => any)|null,
20
20
  dragEnd?: ((...params: any[]) => any)|null,
21
- dataMoved?: ((...params: any[]) => any)|null
21
+ dataMoved?: ((...params: any[]) => any)|null,
22
+ beforeDataMoved?: ((...params: any[]) => any)|null
22
23
  };
23
24
 
24
25
  }
@@ -7,30 +7,30 @@ import { DateTime } from '../../tr-grid-util/es6/DateTime.js';
7
7
  declare namespace TextFormattingPlugin {
8
8
 
9
9
  type FormatOptions = {
10
- formatType?: string,
11
- type?: string,
12
- field?: string,
13
- decimalPlaces?: number,
14
- precisionEnabled?: boolean,
15
- plusSign?: boolean,
16
- separator?: boolean,
17
- percentSign?: boolean,
18
- scalingUnit?: string,
19
- multiplyBy100?: boolean,
20
- mutiplyBy100?: boolean,
21
- dateTimeFormat?: string,
22
- useUTCTime?: boolean,
23
- autoTextFormatting?: boolean,
24
- formatLogic?: ((...params: any[]) => any)
10
+ formatType?: string|null,
11
+ type?: string|null,
12
+ field?: string|null,
13
+ decimalPlaces?: number|null,
14
+ precisionEnabled?: boolean|null,
15
+ plusSign?: boolean|null,
16
+ separator?: boolean|null,
17
+ percentSign?: boolean|null,
18
+ scalingUnit?: string|null,
19
+ multiplyBy100?: boolean|null,
20
+ mutiplyBy100?: boolean|null,
21
+ dateTimeFormat?: string|null,
22
+ useUTCTime?: boolean|null,
23
+ autoTextFormatting?: boolean|null,
24
+ formatLogic?: ((...params: any[]) => any)|null
25
25
  };
26
26
 
27
27
  type ColumnOptions = {
28
- formatType?: (string|TextFormattingPlugin.FormatOptions),
29
- autoTextFormatting?: boolean
28
+ formatType?: (string|TextFormattingPlugin.FormatOptions)|null,
29
+ autoTextFormatting?: boolean|null
30
30
  };
31
31
 
32
32
  type GridOptions = {
33
- autoTextFormatting?: boolean
33
+ autoTextFormatting?: boolean|null
34
34
  };
35
35
 
36
36
  type FormatLogicArguments = {
@@ -40,7 +40,7 @@ declare namespace TextFormattingPlugin {
40
40
  formattedText: string,
41
41
  cell: any,
42
42
  rowData: any,
43
- format: ((...params: any[]) => any)
43
+ format: ((...params: any[]) => any)|null
44
44
  };
45
45
 
46
46
  }
@@ -61,7 +61,7 @@ declare class TextFormattingPlugin extends GridPlugin {
61
61
 
62
62
  public getConfigObject(gridOptions?: any): any;
63
63
 
64
- public setColumnFormat(colIndex: number, formatOptions: TextFormattingPlugin.FormatOptions): void;
64
+ public setColumnFormat(colIndex: number, formatOptions: TextFormattingPlugin.FormatOptions|null): void;
65
65
 
66
66
  public getColumnFormatOptions(colIndex: number, options?: any): any;
67
67
 
package/lib/versions.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "tr-grid-util": "1.3.95",
3
- "@grid/column-dragging": "1.0.11",
2
+ "tr-grid-util": "1.3.101",
3
+ "@grid/column-dragging": "1.0.13",
4
4
  "@grid/row-segmenting": "1.0.23",
5
5
  "@grid/statistics-row": "1.0.14",
6
6
  "@grid/zoom": "1.0.11",
@@ -11,24 +11,24 @@
11
11
  "tr-grid-column-formatting": "0.9.34",
12
12
  "tr-grid-column-grouping": "1.0.47",
13
13
  "tr-grid-column-resizing": "1.0.28",
14
- "tr-grid-column-selection": "1.0.27",
15
- "tr-grid-column-stack": "1.0.55",
16
- "tr-grid-conditional-coloring": "1.0.58",
14
+ "tr-grid-column-selection": "1.0.28",
15
+ "tr-grid-column-stack": "1.0.57",
16
+ "tr-grid-conditional-coloring": "1.0.61",
17
17
  "tr-grid-content-wrap": "1.0.20",
18
18
  "tr-grid-contextmenu": "1.0.38",
19
19
  "tr-grid-filter-input": "0.9.31",
20
- "tr-grid-heat-map": "1.0.28",
20
+ "tr-grid-heat-map": "1.0.29",
21
21
  "tr-grid-in-cell-editing": "1.0.77",
22
22
  "tr-grid-pagination": "1.0.24",
23
23
  "tr-grid-percent-bar": "1.0.22",
24
24
  "tr-grid-printer": "1.0.16",
25
25
  "tr-grid-range-bar": "2.0.3",
26
- "tr-grid-row-dragging": "1.0.25",
26
+ "tr-grid-row-dragging": "1.0.27",
27
27
  "tr-grid-row-filtering": "1.0.55",
28
28
  "tr-grid-row-grouping": "1.0.80",
29
29
  "tr-grid-row-selection": "1.0.22",
30
- "tr-grid-rowcoloring": "1.0.21",
31
- "tr-grid-textformatting": "1.0.44",
30
+ "tr-grid-rowcoloring": "1.0.22",
31
+ "tr-grid-textformatting": "1.0.45",
32
32
  "tr-grid-titlewrap": "1.0.19",
33
33
  "@grid/formatters": "1.0.49",
34
34
  "@grid/column-selection-dialog": "4.0.46",
package/package.json CHANGED
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "version": "6.0.33"
69
+ "version": "6.0.35"
70
70
  }