@refinitiv-ui/efx-grid 6.0.1 → 6.0.4
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/lib/column-dragging/es6/ColumnDragging.d.ts +49 -0
- package/lib/column-dragging/es6/ColumnDragging.js +764 -0
- package/lib/column-dragging/es6/index.d.ts +1 -0
- package/lib/column-dragging/es6/index.js +1 -0
- package/lib/column-format-dialog/lib/column-format-dialog.d.ts +13 -1
- package/lib/column-selection-dialog/lib/column-selection-dialog.d.ts +15 -2
- package/lib/column-selection-dialog/lib/column-selection-dialog.js +226 -23
- package/lib/column-selection-dialog/themes/halo/dark/column-selection-dialog.js +1 -1
- package/lib/column-selection-dialog/themes/halo/dark/es5/all-elements.js +1 -1
- package/lib/column-selection-dialog/themes/halo/light/column-selection-dialog.js +1 -1
- package/lib/column-selection-dialog/themes/halo/light/es5/all-elements.js +1 -1
- package/lib/core/dist/core.css +1 -1
- package/lib/core/dist/core.js +17835 -16266
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/ColumnStats.d.ts +2 -2
- package/lib/core/es6/data/DataCache.d.ts +4 -4
- package/lib/core/es6/data/DataTable.d.ts +5 -5
- package/lib/core/es6/data/DataTable.js +33 -11
- package/lib/core/es6/data/DataView.d.ts +26 -17
- package/lib/core/es6/data/DataView.js +172 -49
- package/lib/core/es6/data/Segment.d.ts +2 -0
- package/lib/core/es6/data/Segment.js +7 -0
- package/lib/core/es6/data/SegmentCollection.d.ts +3 -3
- package/lib/core/es6/data/WrappedView.d.ts +289 -0
- package/lib/core/es6/data/WrappedView.js +1319 -0
- package/lib/core/es6/grid/Core.d.ts +42 -27
- package/lib/core/es6/grid/Core.js +431 -163
- package/lib/core/es6/grid/ILayoutGrid.d.ts +23 -15
- package/lib/core/es6/grid/ILayoutGrid.js +45 -2
- package/lib/core/es6/grid/LayoutGrid.d.ts +10 -1
- package/lib/core/es6/grid/LayoutGrid.js +311 -108
- package/lib/core/es6/grid/VirtualizedLayoutGrid.d.ts +10 -1
- package/lib/core/es6/grid/VirtualizedLayoutGrid.js +382 -24
- package/lib/core/es6/grid/components/Cell.d.ts +4 -4
- package/lib/core/es6/grid/components/CellFloatingPanel.d.ts +1 -1
- package/lib/core/es6/grid/components/CellSpans.d.ts +8 -8
- package/lib/core/es6/grid/components/Column.d.ts +1 -1
- package/lib/core/es6/grid/components/Column.js +8 -2
- package/lib/core/es6/grid/components/ElementWrapper.d.ts +6 -6
- package/lib/core/es6/grid/components/HScrollbar.d.ts +4 -0
- package/lib/core/es6/grid/components/HScrollbar.js +20 -4
- package/lib/core/es6/grid/components/Scrollbar.d.ts +1 -1
- package/lib/core/es6/grid/components/StretchedCells.js +2 -2
- package/lib/core/es6/grid/plugins/SortableTitlePlugin.d.ts +14 -6
- package/lib/core/es6/grid/plugins/SortableTitlePlugin.js +147 -81
- package/lib/core/es6/grid/util/Conflator.d.ts +2 -2
- package/lib/core/es6/grid/util/ElementFrameWork.d.ts +3 -3
- package/lib/core/es6/grid/util/HttpRequest.d.ts +2 -2
- package/lib/core/es6/grid/util/PercentBarRenderer.d.ts +1 -1
- package/lib/core/es6/grid/util/RangeBar.d.ts +1 -1
- package/lib/core/es6/grid/util/SectionSettings.d.ts +5 -5
- package/lib/core/es6/grid/util/SectionSettings.js +5 -0
- package/lib/core/es6/grid/util/SelectionList.d.ts +2 -2
- package/lib/core/es6/grid/util/TrackLayout.d.ts +7 -3
- package/lib/core/es6/grid/util/TrackLayout.js +29 -3
- package/lib/core/es6/grid/util/util.d.ts +2 -2
- package/lib/core/es6/index.d.ts +1 -5
- package/lib/core/es6/index.js +1 -7
- package/lib/core/es6/tr-grid-theme.js +1 -1
- package/lib/filter-dialog/lib/checkbox-list.d.ts +13 -1
- package/lib/filter-dialog/lib/filter-dialog.d.ts +14 -1
- package/lib/filter-dialog/lib/filter-dialog.js +94 -32
- package/lib/filter-dialog/themes/base-checkbox.less +8 -1
- package/lib/filter-dialog/themes/base.less +69 -1
- package/lib/filter-dialog/themes/elemental/dark/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/elemental/dark/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/elemental/dark/filter-dialog.js +1 -1
- package/lib/filter-dialog/themes/elemental/light/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/elemental/light/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/elemental/light/filter-dialog.js +1 -1
- package/lib/filter-dialog/themes/halo/dark/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/halo/dark/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/halo/dark/filter-dialog.js +1 -1
- package/lib/filter-dialog/themes/halo/light/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/halo/light/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/halo/light/filter-dialog.js +1 -1
- package/lib/filter-dialog/themes/solar/charcoal/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/solar/charcoal/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/solar/charcoal/filter-dialog.js +1 -1
- package/lib/filter-dialog/themes/solar/pearl/checkbox-list.js +1 -1
- package/lib/filter-dialog/themes/solar/pearl/es5/all-elements.js +2 -2
- package/lib/filter-dialog/themes/solar/pearl/filter-dialog.js +1 -1
- package/lib/grid/lib/efx-grid.d.ts +30 -8
- package/lib/grid/lib/efx-grid.js +120 -115
- package/lib/grid/themes/base.less +5 -3
- package/lib/grid/themes/halo/dark/efx-grid.js +1 -1
- package/lib/grid/themes/halo/dark/es5/all-elements.js +1 -1
- package/lib/grid/themes/halo/efx-grid.less +72 -41
- package/lib/grid/themes/halo/light/efx-grid.js +1 -1
- package/lib/grid/themes/halo/light/es5/all-elements.js +1 -1
- package/lib/grid/themes/solar/charcoal/efx-grid.js +1 -1
- package/lib/grid/themes/solar/charcoal/es5/all-elements.js +1 -1
- package/lib/grid/themes/solar/pearl/efx-grid.js +1 -1
- package/lib/grid/themes/solar/pearl/es5/all-elements.js +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/row-segmenting/es6/RowSegmenting.d.ts +8 -2
- package/lib/row-segmenting/es6/RowSegmenting.js +137 -21
- package/lib/rt-grid/dist/rt-grid.js +11017 -9193
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/ColumnDefinition.d.ts +9 -4
- package/lib/rt-grid/es6/ColumnDefinition.js +20 -108
- package/lib/rt-grid/es6/DataConnector.d.ts +3 -3
- package/lib/rt-grid/es6/Grid.d.ts +30 -15
- package/lib/rt-grid/es6/Grid.js +436 -167
- package/lib/rt-grid/es6/RowDefSorter.d.ts +19 -0
- package/lib/rt-grid/es6/RowDefSorter.js +137 -0
- package/lib/rt-grid/es6/RowDefinition.d.ts +12 -7
- package/lib/rt-grid/es6/RowDefinition.js +58 -2
- package/lib/rt-grid/es6/SnapshotFiller.d.ts +3 -1
- package/lib/rt-grid/es6/SnapshotFiller.js +23 -0
- package/lib/tr-grid-cell-selection/es6/CellSelection.d.ts +1 -1
- package/lib/tr-grid-cell-selection/es6/CellSelection.js +53 -40
- package/lib/tr-grid-checkbox/es6/Checkbox.d.ts +6 -3
- package/lib/tr-grid-checkbox/es6/Checkbox.js +79 -34
- package/lib/tr-grid-column-grouping/es6/ColumnGrouping.d.ts +1 -0
- package/lib/tr-grid-column-grouping/es6/ColumnGrouping.js +10 -0
- package/lib/tr-grid-column-selection/es6/ColumnSelection.d.ts +5 -1
- package/lib/tr-grid-column-selection/es6/ColumnSelection.js +269 -10
- package/lib/tr-grid-column-stack/es6/ColumnStack.d.ts +8 -4
- package/lib/tr-grid-column-stack/es6/ColumnStack.js +243 -125
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.d.ts +1 -1
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.js +24 -13
- package/lib/tr-grid-filter-input/es6/FilterInput.d.ts +4 -2
- package/lib/tr-grid-filter-input/es6/FilterInput.js +73 -10
- package/lib/tr-grid-in-cell-editing/es6/InCellEditing.d.ts +8 -5
- package/lib/tr-grid-in-cell-editing/es6/InCellEditing.js +106 -3
- package/lib/tr-grid-printer/es6/CellWriter.d.ts +3 -3
- package/lib/tr-grid-printer/es6/GridPrinter.d.ts +1 -1
- package/lib/tr-grid-printer/es6/GridPrinter.js +26 -13
- package/lib/tr-grid-printer/es6/PrintTrait.d.ts +2 -2
- package/lib/tr-grid-printer/es6/SectionWriter.d.ts +3 -3
- package/lib/tr-grid-row-dragging/es6/RowDragging.d.ts +3 -4
- package/lib/tr-grid-row-dragging/es6/RowDragging.js +108 -127
- package/lib/tr-grid-row-filtering/es6/RowFiltering.d.ts +2 -0
- package/lib/tr-grid-row-filtering/es6/RowFiltering.js +88 -33
- package/lib/tr-grid-row-grouping/es6/RowGrouping.d.ts +7 -2
- package/lib/tr-grid-row-grouping/es6/RowGrouping.js +138 -38
- package/lib/tr-grid-row-selection/es6/RowSelection.d.ts +13 -9
- package/lib/tr-grid-row-selection/es6/RowSelection.js +230 -29
- package/lib/tr-grid-rowcoloring/es6/RowColoring.d.ts +2 -0
- package/lib/tr-grid-rowcoloring/es6/RowColoring.js +36 -0
- package/lib/tr-grid-textformatting/es6/TextFormatting.d.ts +1 -1
- package/lib/tr-grid-textformatting/es6/TextFormatting.js +12 -0
- package/lib/tr-grid-util/es6/CellPainter.d.ts +8 -8
- package/lib/tr-grid-util/es6/Conflator.d.ts +2 -2
- package/lib/tr-grid-util/es6/CoralItems.d.ts +1 -1
- package/lib/tr-grid-util/es6/DateTime.d.ts +4 -4
- package/lib/tr-grid-util/es6/Delay.d.ts +1 -1
- package/lib/tr-grid-util/es6/Dom.d.ts +4 -4
- package/lib/tr-grid-util/es6/DragUI.d.ts +16 -0
- package/lib/tr-grid-util/es6/DragUI.js +214 -0
- package/lib/tr-grid-util/es6/ElementObserver.d.ts +2 -0
- package/lib/tr-grid-util/es6/ElementObserver.js +28 -1
- package/lib/tr-grid-util/es6/ElementWrapper.d.ts +1 -1
- package/lib/tr-grid-util/es6/ElfDate.d.ts +3 -3
- package/lib/tr-grid-util/es6/ElfUtil.d.ts +4 -4
- package/lib/tr-grid-util/es6/ElfUtil.js +1 -1
- package/lib/tr-grid-util/es6/EventDispatcher.d.ts +1 -1
- package/lib/tr-grid-util/es6/ExpanderIcon.js +2 -2
- package/lib/tr-grid-util/es6/FieldFormatter.d.ts +1 -1
- package/lib/tr-grid-util/es6/FieldFormatter.js +7 -5
- package/lib/tr-grid-util/es6/FilterBuilder.d.ts +5 -5
- package/lib/tr-grid-util/es6/GridPlugin.d.ts +3 -3
- package/lib/tr-grid-util/es6/GridPlugin.js +8 -4
- package/lib/tr-grid-util/es6/MouseDownTrait.d.ts +1 -1
- package/lib/tr-grid-util/es6/MultiTableManager.d.ts +10 -2
- package/lib/tr-grid-util/es6/MultiTableManager.js +164 -57
- package/lib/tr-grid-util/es6/NumberFormatter.d.ts +2 -0
- package/lib/tr-grid-util/es6/NumberFormatter.js +64 -19
- package/lib/tr-grid-util/es6/PercentBar.d.ts +1 -1
- package/lib/tr-grid-util/es6/Perf.d.ts +4 -4
- package/lib/tr-grid-util/es6/Popup.d.ts +2 -2
- package/lib/tr-grid-util/es6/RequestQueue.d.ts +1 -1
- package/lib/tr-grid-util/es6/RowPainter.d.ts +3 -0
- package/lib/tr-grid-util/es6/RowPainter.js +120 -28
- package/lib/tr-grid-util/es6/SubTable.d.ts +9 -9
- package/lib/tr-grid-util/es6/Table.d.ts +13 -13
- package/lib/tr-grid-util/es6/TextHighlighter.d.ts +3 -3
- package/lib/tr-grid-util/es6/TickCodes.d.ts +2 -2
- package/lib/tr-grid-util/es6/TouchProxy.d.ts +1 -1
- package/lib/tr-grid-util/es6/Util.d.ts +6 -6
- package/lib/tr-grid-util/es6/formula/Engine.d.ts +5 -5
- package/lib/tr-grid-util/es6/formula/Formula.d.ts +3 -3
- package/lib/tr-grid-util/es6/formula/Formula.js +9 -1
- package/lib/tr-grid-util/es6/formula/RealtimeService.d.ts +1 -1
- package/lib/tr-grid-util/es6/jet/CollectionDict.d.ts +2 -2
- package/lib/tr-grid-util/es6/jet/DataGenerator.d.ts +4 -4
- package/lib/tr-grid-util/es6/jet/MockArchive.d.ts +1 -1
- package/lib/tr-grid-util/es6/jet/MockJET.d.ts +4 -4
- package/lib/tr-grid-util/es6/jet/MockQuotes.d.ts +11 -11
- package/lib/tr-grid-util/es6/jet/MockQuotes2.d.ts +7 -7
- package/lib/tr-grid-util/es6/jet/MockRTK.d.ts +1 -1
- package/lib/tr-grid-util/es6/jet/mockDataAPI.d.ts +1 -1
- package/lib/tr-grid-util/es6/jsx.d.ts +223 -0
- package/lib/types/es6/CellSelection.d.ts +1 -1
- package/lib/types/es6/Checkbox.d.ts +6 -3
- package/lib/types/es6/ColumnGrouping.d.ts +1 -0
- package/lib/types/es6/ColumnSelection.d.ts +5 -1
- package/lib/types/es6/ColumnStack.d.ts +8 -4
- package/lib/types/es6/CompositeGrid/ColumnSelectionPlugin.d.ts +3 -2
- package/lib/types/es6/CompositeGrid/ColumnWidthAdjustingPlugin.d.ts +2 -1
- package/lib/types/es6/CompositeGrid/CompositeGrid.d.ts +20 -18
- package/lib/types/es6/CompositeGrid/DragAndDropTitlePlugin.d.ts +2 -1
- package/lib/types/es6/CompositeGrid/DraggableContentPlugin.d.ts +3 -2
- package/lib/types/es6/CompositeGrid/Plugin.d.ts +28 -0
- package/lib/types/es6/CompositeGrid/ResizableTitlePlugin.d.ts +2 -1
- package/lib/types/es6/CompositeGrid/RowSelectionPlugin.d.ts +5 -4
- package/lib/types/es6/CompositeGrid/TreeIndentingPlugin.d.ts +2 -1
- package/lib/types/es6/CompositeGrid/index.d.ts +9 -9
- package/lib/types/es6/ConditionalColoring.d.ts +1 -1
- package/lib/types/es6/Core/data/ColumnStats.d.ts +2 -2
- package/lib/types/es6/Core/data/DataCache.d.ts +4 -4
- package/lib/types/es6/Core/data/DataTable.d.ts +5 -5
- package/lib/types/es6/Core/data/DataView.d.ts +26 -17
- package/lib/types/es6/Core/data/Segment.d.ts +2 -0
- package/lib/types/es6/Core/data/SegmentCollection.d.ts +3 -3
- package/lib/types/es6/Core/data/WrappedView.d.ts +289 -0
- package/lib/types/es6/Core/grid/Core.d.ts +42 -27
- package/lib/types/es6/Core/grid/ILayoutGrid.d.ts +23 -15
- package/lib/types/es6/Core/grid/LayoutGrid.d.ts +10 -1
- package/lib/types/es6/Core/grid/VirtualizedLayoutGrid.d.ts +10 -1
- package/lib/types/es6/Core/grid/components/Cell.d.ts +4 -4
- package/lib/types/es6/Core/grid/components/CellFloatingPanel.d.ts +1 -1
- package/lib/types/es6/Core/grid/components/CellSpans.d.ts +8 -8
- package/lib/types/es6/Core/grid/components/Column.d.ts +1 -1
- package/lib/types/es6/Core/grid/components/ElementWrapper.d.ts +6 -6
- package/lib/types/es6/Core/grid/components/HScrollbar.d.ts +4 -0
- package/lib/types/es6/Core/grid/components/Scrollbar.d.ts +1 -1
- package/lib/types/es6/Core/grid/plugins/SortableTitlePlugin.d.ts +14 -6
- package/lib/types/es6/Core/grid/util/Conflator.d.ts +2 -2
- package/lib/types/es6/Core/grid/util/ElementFrameWork.d.ts +3 -3
- package/lib/types/es6/Core/grid/util/HttpRequest.d.ts +2 -2
- package/lib/types/es6/Core/grid/util/PercentBarRenderer.d.ts +1 -1
- package/lib/types/es6/Core/grid/util/RangeBar.d.ts +1 -1
- package/lib/types/es6/Core/grid/util/SectionSettings.d.ts +5 -5
- package/lib/types/es6/Core/grid/util/SelectionList.d.ts +2 -2
- package/lib/types/es6/Core/grid/util/TrackLayout.d.ts +7 -3
- package/lib/types/es6/Core/grid/util/util.d.ts +2 -2
- package/lib/types/es6/Core/index.d.ts +1 -5
- package/lib/types/es6/ExtensionOptions.d.ts +2 -0
- package/lib/types/es6/FilterInput.d.ts +4 -2
- package/lib/types/es6/InCellEditing.d.ts +8 -5
- package/lib/types/es6/RealtimeGrid/ColumnDefinition.d.ts +9 -4
- package/lib/types/es6/RealtimeGrid/DataConnector.d.ts +3 -3
- package/lib/types/es6/RealtimeGrid/Grid.d.ts +31 -16
- package/lib/types/es6/RealtimeGrid/RowDefSorter.d.ts +19 -0
- package/lib/types/es6/RealtimeGrid/RowDefinition.d.ts +12 -7
- package/lib/types/es6/RealtimeGrid/SnapshotFiller.d.ts +3 -1
- package/lib/types/es6/RowColoring.d.ts +2 -0
- package/lib/types/es6/RowDragging.d.ts +3 -4
- package/lib/types/es6/RowFiltering.d.ts +2 -0
- package/lib/types/es6/RowGrouping.d.ts +7 -2
- package/lib/types/es6/RowSegmenting.d.ts +8 -2
- package/lib/types/es6/RowSelection.d.ts +13 -9
- package/lib/types/es6/TextFormatting.d.ts +1 -1
- package/lib/types/es6/Zoom.d.ts +2 -1
- package/lib/types/es6/index.d.ts +3 -0
- package/lib/versions.json +22 -21
- package/lib/zoom/es6/Zoom.d.ts +2 -1
- package/lib/zoom/es6/Zoom.js +11 -4
- package/package.json +7 -7
- package/lib/core/es6/grid/plugins/DragAndDropTitlePlugin.d.ts +0 -24
- package/lib/core/es6/grid/plugins/DragAndDropTitlePlugin.js +0 -615
- package/lib/core/es6/grid/plugins/Plugin.d.ts +0 -28
- package/lib/core/es6/grid/plugins/Plugin.js +0 -272
- package/lib/types/es6/Core/grid/plugins/DragAndDropTitlePlugin.d.ts +0 -24
- package/lib/types/es6/Core/grid/plugins/Plugin.d.ts +0 -28
@@ -1,9 +1,9 @@
|
|
1
|
-
// Composite grid
|
2
|
-
import { CompositeGrid } from "./CompositeGrid.js";
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
export {
|
7
|
-
CompositeGrid
|
8
|
-
};
|
9
|
-
|
1
|
+
// Composite grid
|
2
|
+
import { CompositeGrid } from "./CompositeGrid.js";
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
export {
|
7
|
+
CompositeGrid
|
8
|
+
};
|
9
|
+
|
@@ -46,7 +46,7 @@ declare class ConditionalColoringPlugin extends GridPlugin {
|
|
46
46
|
|
47
47
|
public getConfigObject(gridOptions?: any): any;
|
48
48
|
|
49
|
-
public setColumnColoring(colIndex: number, columnOptions
|
49
|
+
public setColumnColoring(colIndex: number, columnOptions?: (ConditionalColoringPlugin.ColumnOptions|null)): void;
|
50
50
|
|
51
51
|
public setColumnBlinking(colIndex: number, blinkingOptions?: (boolean|ConditionalColoringPlugin.Blinking), field?: string): void;
|
52
52
|
|
@@ -14,7 +14,7 @@ declare class ColumnStats {
|
|
14
14
|
|
15
15
|
public setColumnDataGetter(func: ((...params: any[]) => any)): void;
|
16
16
|
|
17
|
-
public getColumnDataGetter(): ((...params: any[]) => any);
|
17
|
+
public getColumnDataGetter(): ((...params: any[]) => any)|null;
|
18
18
|
|
19
19
|
public getSum(): number;
|
20
20
|
|
@@ -32,7 +32,7 @@ declare class ColumnStats {
|
|
32
32
|
|
33
33
|
public getMidRange(): number;
|
34
34
|
|
35
|
-
public getCachedColumnData(): (number)[];
|
35
|
+
public getCachedColumnData(): (number)[]|null;
|
36
36
|
|
37
37
|
public markDirty(): boolean;
|
38
38
|
|
@@ -29,9 +29,9 @@ declare class DataCache extends EventDispatcher {
|
|
29
29
|
|
30
30
|
public getData(rid: string, cid: string): any;
|
31
31
|
|
32
|
-
public getAllRics(): { [key: string]: any };
|
32
|
+
public getAllRics(): { [key: string]: any }|null;
|
33
33
|
|
34
|
-
public getAllRowIds(): (string)[];
|
34
|
+
public getAllRowIds(): (string)[]|null;
|
35
35
|
|
36
36
|
public hasRowId(rid: string): boolean;
|
37
37
|
|
@@ -57,7 +57,7 @@ declare class DataCache extends EventDispatcher {
|
|
57
57
|
|
58
58
|
public resetStaticFields(): void;
|
59
59
|
|
60
|
-
public getStaticFields(): { [key: string]: number };
|
60
|
+
public getStaticFields(): { [key: string]: number }|null;
|
61
61
|
|
62
62
|
public dump(options?: any): (any)[];
|
63
63
|
|
@@ -65,7 +65,7 @@ declare class DataCache extends EventDispatcher {
|
|
65
65
|
|
66
66
|
public setDataCloudSettings(userId: string, productId: string, url: string, opt_lang?: string): void;
|
67
67
|
|
68
|
-
public getDataCloudFields(): (string)[];
|
68
|
+
public getDataCloudFields(): (string)[]|null;
|
69
69
|
|
70
70
|
public addDataCloudFields(fields: (string)[]|string): boolean;
|
71
71
|
|
@@ -51,9 +51,9 @@ declare class DataTable extends DataCache {
|
|
51
51
|
|
52
52
|
public removeAllRows(suppressEvent?: boolean): void;
|
53
53
|
|
54
|
-
public moveRow(fromIndex: (number)[]|number, toIndex: number, suppressEvent?: boolean): (string)[]|string;
|
54
|
+
public moveRow(fromIndex: (number)[]|number, toIndex: number, suppressEvent?: boolean): (string)[]|string|null;
|
55
55
|
|
56
|
-
public moveRows(startIndex: number|string, toIndex: number|string, opt_count?: number, suppressEvent?: boolean): (string)[];
|
56
|
+
public moveRows(startIndex: number|string, toIndex: number|string, opt_count?: number, suppressEvent?: boolean): (string)[]|null;
|
57
57
|
|
58
58
|
public swapRow(fromIndex: number, toIndex: number): void;
|
59
59
|
|
@@ -85,7 +85,7 @@ declare class DataTable extends DataCache {
|
|
85
85
|
|
86
86
|
public getSegmentParentRowId(rid: string): string;
|
87
87
|
|
88
|
-
public getSegmentValues(rids?: (string)[]): (number)[];
|
88
|
+
public getSegmentValues(rids?: (string)[]): (number)[]|null;
|
89
89
|
|
90
90
|
public fillSegment(segmentId: string): void;
|
91
91
|
|
@@ -101,9 +101,9 @@ declare class DataTable extends DataCache {
|
|
101
101
|
|
102
102
|
public removeAllSegmentChildren(): boolean;
|
103
103
|
|
104
|
-
public getSegmentIds(): (string)[];
|
104
|
+
public getSegmentIds(): (string)[]|null;
|
105
105
|
|
106
|
-
public getSegmentChildIds(segmentId: string): (string)[];
|
106
|
+
public getSegmentChildIds(segmentId: string): (string)[]|null;
|
107
107
|
|
108
108
|
public sortSegments(compare: ((...params: any[]) => any)): void;
|
109
109
|
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import Ext from "../../../../tr-grid-util/es6/Ext.js";
|
2
2
|
import DataCache from "./DataCache.js";
|
3
3
|
import DataTable from "./DataTable.js";
|
4
|
+
import WrappedView from "./WrappedView.js"; // eslint-disable-line
|
4
5
|
import ColumnStats from "./ColumnStats.js";
|
5
6
|
import EventDispatcher from "../grid/event/EventDispatcher.js";
|
6
7
|
import Util from "../grid/util/util.js";
|
@@ -22,7 +23,9 @@ declare class DataView extends EventDispatcher {
|
|
22
23
|
|
23
24
|
public getAllRowIds(shallowCopy?: boolean, inclNonDataRow?: boolean): (string)[];
|
24
25
|
|
25
|
-
public
|
26
|
+
public getVisibleRowIds(shallowCopy?: boolean): (string)[];
|
27
|
+
|
28
|
+
public getSortedRowIds(shallowCopy?: boolean): (string)[];
|
26
29
|
|
27
30
|
public getRowIndex(rid: string): number;
|
28
31
|
|
@@ -52,17 +55,17 @@ declare class DataView extends EventDispatcher {
|
|
52
55
|
|
53
56
|
public removeRow(rowRef: number|string): void;
|
54
57
|
|
55
|
-
public removeRows(
|
58
|
+
public removeRows(rowRefs: (number|string)[]): void;
|
56
59
|
|
57
|
-
public moveRow(
|
60
|
+
public moveRow(fromRef: (number|string)[]|number|string, toRef: number|string): (string)[]|string|null;
|
58
61
|
|
59
62
|
public swapRow(fromIndex: number, toIndex: number): void;
|
60
63
|
|
61
|
-
public getDataTable(): DataTable;
|
64
|
+
public getDataTable(): DataTable|null;
|
62
65
|
|
63
|
-
public getDataSource(): DataTable|DataView;
|
66
|
+
public getDataSource(): DataTable|DataView|null;
|
64
67
|
|
65
|
-
public setDataSource(source?: DataTable|DataView): void;
|
68
|
+
public setDataSource(source?: (DataTable|DataView)): void;
|
66
69
|
|
67
70
|
public setConflationRate(milliSecond: number): void;
|
68
71
|
|
@@ -144,13 +147,13 @@ declare class DataView extends EventDispatcher {
|
|
144
147
|
|
145
148
|
public removeFooter(): void;
|
146
149
|
|
147
|
-
public getGroupByRowId(rowId: string): DataView;
|
150
|
+
public getGroupByRowId(rowId: string): DataView|null;
|
148
151
|
|
149
|
-
public getGroup(groupRef: number|string): DataView;
|
152
|
+
public getGroup(groupRef: number|string): DataView|null;
|
150
153
|
|
151
154
|
public getAllGroups(out_ary?: any[]): (DataView)[];
|
152
155
|
|
153
|
-
public getGroupList(): (string)[];
|
156
|
+
public getGroupList(): (string)[]|null;
|
154
157
|
|
155
158
|
public getGroupId(): string;
|
156
159
|
|
@@ -164,14 +167,16 @@ declare class DataView extends EventDispatcher {
|
|
164
167
|
|
165
168
|
public getGroupLevel(rowRef?: (number|string)): number;
|
166
169
|
|
167
|
-
public enableColumnStats(cid: string, opt_enabled?: boolean, opt_refId?: string): ColumnStats;
|
170
|
+
public enableColumnStats(cid: string, opt_enabled?: boolean, opt_refId?: string): ColumnStats|null;
|
168
171
|
|
169
|
-
public getColumnStats(cid: string): ColumnStats;
|
172
|
+
public getColumnStats(cid: string): ColumnStats|null;
|
170
173
|
|
171
174
|
public hide(opt_hidden?: boolean): boolean;
|
172
175
|
|
173
176
|
public isHidden(): boolean;
|
174
177
|
|
178
|
+
public isHiddenRow(rowId: string): boolean;
|
179
|
+
|
175
180
|
public collapse(opt_collapsed?: boolean): void;
|
176
181
|
|
177
182
|
public collapseAllGroups(opt_collapsed?: boolean): void;
|
@@ -182,8 +187,6 @@ declare class DataView extends EventDispatcher {
|
|
182
187
|
|
183
188
|
public enableContentAsHeader(bool?: boolean): void;
|
184
189
|
|
185
|
-
public getVisibleRowIds(opt_shallowCopy?: boolean): (string)[];
|
186
|
-
|
187
190
|
public getVisibleRowCount(): number;
|
188
191
|
|
189
192
|
public isRowDataInGroup(rowData: any, groupID?: string): boolean;
|
@@ -198,7 +201,7 @@ declare class DataView extends EventDispatcher {
|
|
198
201
|
|
199
202
|
public removeAllRowExpansions(): void;
|
200
203
|
|
201
|
-
public getExpansionParents(from?: number, to?: number): (string)[];
|
204
|
+
public getExpansionParents(from?: number, to?: number): (string)[]|null;
|
202
205
|
|
203
206
|
public isRowExpansion(rid: string): boolean;
|
204
207
|
|
@@ -254,12 +257,18 @@ declare class DataView extends EventDispatcher {
|
|
254
257
|
|
255
258
|
public removeAllSegmentChildren(): boolean;
|
256
259
|
|
257
|
-
public getSegmentIds(): (string)[];
|
260
|
+
public getSegmentIds(): (string)[]|null;
|
258
261
|
|
259
|
-
public getSegmentChildIds(segmentRef: string|number): (string)[];
|
262
|
+
public getSegmentChildIds(segmentRef: string|number): (string)[]|null;
|
260
263
|
|
261
264
|
public sortSegments(compare: ((...params: any[]) => any)): void;
|
262
265
|
|
266
|
+
public getWrapSize(): number;
|
267
|
+
|
268
|
+
public getWrappedViews(): (WrappedView)[]|null;
|
269
|
+
|
270
|
+
public wrapView(wrapSize?: number): void;
|
271
|
+
|
263
272
|
public dump(opt_options?: any): (any)[];
|
264
273
|
|
265
274
|
public log(opt_options?: any): void;
|
@@ -268,7 +277,7 @@ declare class DataView extends EventDispatcher {
|
|
268
277
|
|
269
278
|
}
|
270
279
|
|
271
|
-
declare function
|
280
|
+
declare function fromRids(fromIndex: number, toIndex: number): void;
|
272
281
|
|
273
282
|
declare function criteria(value: any|any[]): void;
|
274
283
|
|
@@ -18,9 +18,9 @@ declare class SegmentCollection {
|
|
18
18
|
|
19
19
|
public getSegmentCount(): number;
|
20
20
|
|
21
|
-
public getSegment(rid: string): Segment;
|
21
|
+
public getSegment(rid: string): Segment|null;
|
22
22
|
|
23
|
-
public getSegments(): { [key: string]: Segment };
|
23
|
+
public getSegments(): { [key: string]: Segment }|null;
|
24
24
|
|
25
25
|
public getSegmentIds(): (string)[];
|
26
26
|
|
@@ -50,7 +50,7 @@ declare class SegmentCollection {
|
|
50
50
|
|
51
51
|
public fillSegments(rids: (string)[]): boolean;
|
52
52
|
|
53
|
-
public getSegmentValues(rids: (string)[]): (number)[];
|
53
|
+
public getSegmentValues(rids: (string)[]): (number)[]|null;
|
54
54
|
|
55
55
|
}
|
56
56
|
|
@@ -0,0 +1,289 @@
|
|
1
|
+
import Ext from "../../../../tr-grid-util/es6/Ext.js";
|
2
|
+
import EventDispatcher from "../grid/event/EventDispatcher.js";
|
3
|
+
import DataView from "./DataView.js"; // eslint-disable-line
|
4
|
+
import DataTable from "./DataTable.js"; // eslint-disable-line
|
5
|
+
import ColumnStats from "./ColumnStats.js"; // eslint-disable-line
|
6
|
+
|
7
|
+
declare namespace WrappedView {
|
8
|
+
|
9
|
+
type Options = {
|
10
|
+
dataView: DataView,
|
11
|
+
wrapIndex: number
|
12
|
+
};
|
13
|
+
|
14
|
+
}
|
15
|
+
|
16
|
+
declare class WrappedView extends EventDispatcher {
|
17
|
+
|
18
|
+
constructor(options: WrappedView.Options);
|
19
|
+
|
20
|
+
public dispose(): void;
|
21
|
+
|
22
|
+
public getData(rid: string, cid: string): { [key: string]: any };
|
23
|
+
|
24
|
+
public getRowData(rid: string): { [key: string]: any };
|
25
|
+
|
26
|
+
public getColumnData(cid: string, inclNonDataRow?: boolean): any[];
|
27
|
+
|
28
|
+
public getRowId(rowIndex: number): string;
|
29
|
+
|
30
|
+
public getAllRowIds(shallowCopy?: boolean, inclNonDataRow?: boolean): (string)[];
|
31
|
+
|
32
|
+
public getVisibleRowIds(shallowCopy?: boolean): (string)[];
|
33
|
+
|
34
|
+
public getSortedRowIds(shallowCopy?: boolean): (string)[];
|
35
|
+
|
36
|
+
public getRowIndex(rid: string): number;
|
37
|
+
|
38
|
+
public getRowCount(): number;
|
39
|
+
|
40
|
+
public getDataAt(rowIndex: number, cid: string): { [key: string]: any };
|
41
|
+
|
42
|
+
public getRowDataAt(rowIndex: number): { [key: string]: any };
|
43
|
+
|
44
|
+
public getPreviousData(rid: string, cid: string): { [key: string]: any };
|
45
|
+
|
46
|
+
public getMultipleRowData(rids: (string)[], opt_from?: number, opt_to?: number): (any)[];
|
47
|
+
|
48
|
+
public getAllRowData(): (any)[];
|
49
|
+
|
50
|
+
public setData(rid: string, cid: string, value: any): boolean;
|
51
|
+
|
52
|
+
public setRowData(rid: string, values?: { [key: string]: any }, opt_eventArg?: any): boolean;
|
53
|
+
|
54
|
+
public setColumnData(cid: string, valueList: any[], opt_ridList?: (string)[]): void;
|
55
|
+
|
56
|
+
public setDataAt(rowIndex: number, cid: string, value: any): boolean;
|
57
|
+
|
58
|
+
public setRowDataAt(rowIndex: number, values?: { [key: string]: any }, opt_eventArg?: any): boolean;
|
59
|
+
|
60
|
+
public insertRow(rowRef: string|number, opt_values?: { [key: string]: any }, opt_rid?: string|null): string;
|
61
|
+
|
62
|
+
public removeRow(rowRef: number|string): void;
|
63
|
+
|
64
|
+
public removeRows(rowRefs: (number|string)[]): void;
|
65
|
+
|
66
|
+
public moveRow(fromRef: (number|string)[]|number|string, toRef: number|string): (string)[]|string|null;
|
67
|
+
|
68
|
+
public getDataTable(): DataTable|null;
|
69
|
+
|
70
|
+
public getDataSource(): DataView|null;
|
71
|
+
|
72
|
+
public setDataSource(source?: DataView): void;
|
73
|
+
|
74
|
+
public setConflationRate(milliSecond: number): void;
|
75
|
+
|
76
|
+
public getConflationRate(): number;
|
77
|
+
|
78
|
+
public sort(cid: string|(string)[], opt_sortOrder?: string|number|(string|number)[], sortLogics?: ((...params: any[]) => any)|(((...params: any[]) => any))[], noOptimization?: boolean): void;
|
79
|
+
|
80
|
+
public sortOnce(cid: string|(string)[], opt_sortOrder?: string|number|(string|number)[]): void;
|
81
|
+
|
82
|
+
public setSortingLogic(func: DataTable.SortLogic): void;
|
83
|
+
|
84
|
+
public setColumnSortingLogic(cid: string, func: DataTable.SortLogic): void;
|
85
|
+
|
86
|
+
public isSorting(): boolean;
|
87
|
+
|
88
|
+
public hideRow(rId: string|number, opt_show?: boolean): void;
|
89
|
+
|
90
|
+
public hideRows(rowRefs: (string|number)[], opt_show?: boolean): void;
|
91
|
+
|
92
|
+
public showRows(rowRefs: (string|number)[], opt_show?: boolean): void;
|
93
|
+
|
94
|
+
public unhideAllRows(): void;
|
95
|
+
|
96
|
+
public hasHiddenRow(): boolean;
|
97
|
+
|
98
|
+
public filterIn(cid: string|((...params: any[]) => any), value?: any, opt_filteringOut?: boolean): boolean;
|
99
|
+
|
100
|
+
public filterOut(cid: string|((...params: any[]) => any), value?: any): boolean;
|
101
|
+
|
102
|
+
public filterInOnce(cid: string|((...params: any[]) => any), value?: any, opt_filteringOut?: boolean): void;
|
103
|
+
|
104
|
+
public filterOutOnce(cid: string|((...params: any[]) => any), value?: any): void;
|
105
|
+
|
106
|
+
public clearFilter(): void;
|
107
|
+
|
108
|
+
public disablePageCorrection(opt_disable?: boolean): void;
|
109
|
+
|
110
|
+
public setPage(pageIndex: number): boolean;
|
111
|
+
|
112
|
+
public gotoPage(): void;
|
113
|
+
|
114
|
+
public nextPage(): boolean;
|
115
|
+
|
116
|
+
public previousPage(): boolean;
|
117
|
+
|
118
|
+
public prevPage(): void;
|
119
|
+
|
120
|
+
public lastPage(): boolean;
|
121
|
+
|
122
|
+
public firstPage(): boolean;
|
123
|
+
|
124
|
+
public getCurrentPage(): number;
|
125
|
+
|
126
|
+
public getPageIndex(): void;
|
127
|
+
|
128
|
+
public isOnLastPage(): boolean;
|
129
|
+
|
130
|
+
public isOnFirstPage(): boolean;
|
131
|
+
|
132
|
+
public getPageSize(): number;
|
133
|
+
|
134
|
+
public getPageCount(): number;
|
135
|
+
|
136
|
+
public getTotalPages(): void;
|
137
|
+
|
138
|
+
public setPageSize(pageSize: number): void;
|
139
|
+
|
140
|
+
public groupBy(cid: string|((...params: any[]) => any)|(string|((...params: any[]) => any))[], opt_predefinedGroups?: any[]): void;
|
141
|
+
|
142
|
+
public addGroup(value: any|any[]): void;
|
143
|
+
|
144
|
+
public sortGroups(compare?: ((...params: any[]) => any)): void;
|
145
|
+
|
146
|
+
public moveGroup(groupRef: number|string, destIndex: number): void;
|
147
|
+
|
148
|
+
public setPredefinedGroups(predefinedGroups: any[]): void;
|
149
|
+
|
150
|
+
public addFooter(opt_num?: number): void;
|
151
|
+
|
152
|
+
public removeFooter(): void;
|
153
|
+
|
154
|
+
public getGroupByRowId(rowId: string): DataView|null;
|
155
|
+
|
156
|
+
public getGroup(groupRef: number|string): DataView|null;
|
157
|
+
|
158
|
+
public getAllGroups(out_ary?: any[]): (DataView)[];
|
159
|
+
|
160
|
+
public getGroupList(): (string)[]|null;
|
161
|
+
|
162
|
+
public getGroupId(): string;
|
163
|
+
|
164
|
+
public getGroupValue(): any;
|
165
|
+
|
166
|
+
public getGroupRowId(): string;
|
167
|
+
|
168
|
+
public hasGroup(): boolean;
|
169
|
+
|
170
|
+
public getGroupRows(): null;
|
171
|
+
|
172
|
+
public getGroupLevel(rowRef?: (number|string)): number;
|
173
|
+
|
174
|
+
public enableColumnStats(cid: string, opt_enabled?: boolean, opt_refId?: string): ColumnStats|null;
|
175
|
+
|
176
|
+
public getColumnStats(cid: string): ColumnStats|null;
|
177
|
+
|
178
|
+
public hide(opt_hidden?: boolean): boolean;
|
179
|
+
|
180
|
+
public isHidden(): boolean;
|
181
|
+
|
182
|
+
public isHiddenRow(rowId: string): boolean;
|
183
|
+
|
184
|
+
public collapse(opt_collapsed?: boolean): void;
|
185
|
+
|
186
|
+
public collapseAllGroups(opt_collapsed?: boolean): void;
|
187
|
+
|
188
|
+
public toggleCollapsedState(): void;
|
189
|
+
|
190
|
+
public isCollapsed(): boolean;
|
191
|
+
|
192
|
+
public enableContentAsHeader(bool?: boolean): void;
|
193
|
+
|
194
|
+
public getVisibleRowCount(): number;
|
195
|
+
|
196
|
+
public isRowDataInGroup(rowData: any, groupID?: string): boolean;
|
197
|
+
|
198
|
+
public isRowIdInGroup(rowId: string, groupID?: string): boolean;
|
199
|
+
|
200
|
+
public addRowExpansion(rid: string, count?: number): void;
|
201
|
+
|
202
|
+
public removeRowExpansion(rid: string): void;
|
203
|
+
|
204
|
+
public toggleRowExpansion(rowRef: string|number, force?: boolean, count?: number): void;
|
205
|
+
|
206
|
+
public removeAllRowExpansions(): void;
|
207
|
+
|
208
|
+
public getExpansionParents(from?: number, to?: number): (string)[]|null;
|
209
|
+
|
210
|
+
public isRowExpansion(rid: string): boolean;
|
211
|
+
|
212
|
+
public hasRowExpansion(rid: string): boolean;
|
213
|
+
|
214
|
+
public getRowExpansionId(rid: string, idx?: number): string;
|
215
|
+
|
216
|
+
public getRowExpansionIndex(rid: string): number;
|
217
|
+
|
218
|
+
public searchAll(searchLogic: ((...params: any[]) => any), opt_out?: (string)[]): (string)[];
|
219
|
+
|
220
|
+
public searchPrev(rowRef: number|string, searchLogic: ((...params: any[]) => any)): number;
|
221
|
+
|
222
|
+
public searchNext(rowRef: number|string, searchLogic: ((...params: any[]) => any)): number;
|
223
|
+
|
224
|
+
public stall(opt_bool?: boolean): boolean;
|
225
|
+
|
226
|
+
public enableAutoGroupRemoval(opt_bool?: boolean): boolean;
|
227
|
+
|
228
|
+
public enableAutoGroupHiding(opt_bool?: boolean): boolean;
|
229
|
+
|
230
|
+
public synchronizeRowOrder(): void;
|
231
|
+
|
232
|
+
public setSegmentSeparator(rowRef: string|number, enabled?: boolean): boolean;
|
233
|
+
|
234
|
+
public unsetAllSegmentSeparators(): boolean;
|
235
|
+
|
236
|
+
public hasSegmentation(): boolean;
|
237
|
+
|
238
|
+
public isSegmentSeparator(rid: string): boolean;
|
239
|
+
|
240
|
+
public getSegmentParentRowId(rid: string): string;
|
241
|
+
|
242
|
+
public collapseSegment(rowRef: string|number, collapsed?: boolean): boolean;
|
243
|
+
|
244
|
+
public expandSegment(rowRef: string|number, expanded?: boolean): boolean;
|
245
|
+
|
246
|
+
public expandAllSegments(): boolean;
|
247
|
+
|
248
|
+
public isSegmentCollapsed(rowRef: string|number): boolean;
|
249
|
+
|
250
|
+
public fillSegment(segmentRef: string|number): void;
|
251
|
+
|
252
|
+
public fillSegments(): void;
|
253
|
+
|
254
|
+
public addSegmentChild(segmentRef: string|number, rowRef: string|number): boolean;
|
255
|
+
|
256
|
+
public addSegmentChildren(segmentRef: string|number, rowRefs: (string|number)[]): boolean;
|
257
|
+
|
258
|
+
public removeSegmentChild(segmentRef: string|number, rowRef: string|number): boolean;
|
259
|
+
|
260
|
+
public removeSegmentChildren(segmentRef: string|number, rowRefs: (string|number)[]): boolean;
|
261
|
+
|
262
|
+
public removeAllSegmentChildren(): boolean;
|
263
|
+
|
264
|
+
public getSegmentIds(): (string)[]|null;
|
265
|
+
|
266
|
+
public getSegmentChildIds(segmentRef: string|number): (string)[]|null;
|
267
|
+
|
268
|
+
public sortSegments(compare: ((...params: any[]) => any)): void;
|
269
|
+
|
270
|
+
public getWrapSize(): number;
|
271
|
+
|
272
|
+
public getWrappedViews(): (WrappedView)[]|null;
|
273
|
+
|
274
|
+
public wrapView(wrapSize?: number): void;
|
275
|
+
|
276
|
+
public dump(opt_options?: any): (any)[];
|
277
|
+
|
278
|
+
public log(opt_options?: any): void;
|
279
|
+
|
280
|
+
public isRowFiltered(rid: string, rowData: any): boolean;
|
281
|
+
|
282
|
+
}
|
283
|
+
|
284
|
+
declare function fromRids(): DataTable|null;
|
285
|
+
|
286
|
+
declare function complexData(opt_options?: any): void;
|
287
|
+
|
288
|
+
export default WrappedView;
|
289
|
+
export { WrappedView };
|