@refinitiv-ui/efx-grid 6.0.83 → 6.0.84
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/core/dist/core.js +20 -5
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.js +20 -4
- package/lib/core/es6/grid/LayoutGrid.js +0 -1
- package/lib/filter-dialog/lib/checkbox-list.js +4 -2
- package/lib/filter-dialog/lib/filter-dialog.d.ts +1 -0
- package/lib/filter-dialog/lib/filter-dialog.js +77 -8
- package/lib/filter-dialog/lib/locale/translation-de.js +3 -0
- package/lib/filter-dialog/lib/locale/translation-en.js +3 -0
- package/lib/filter-dialog/lib/locale/translation-ja.js +3 -0
- package/lib/filter-dialog/lib/locale/translation-zh-hant.js +3 -0
- package/lib/filter-dialog/lib/locale/translation-zh.js +3 -0
- package/lib/grid/index.js +1 -1
- package/lib/tr-grid-row-filtering/es6/RowFiltering.d.ts +3 -2
- package/lib/tr-grid-row-filtering/es6/RowFiltering.js +137 -596
- package/lib/types/es6/ColumnFitter.d.ts +15 -15
- package/lib/types/es6/RowFiltering.d.ts +3 -2
- package/lib/versions.json +2 -2
- package/package.json +1 -1
@@ -4,27 +4,27 @@ import { GridPlugin } from '../../tr-grid-util/es6/GridPlugin.js';
|
|
4
4
|
declare namespace ColumnFitterPlugin {
|
5
5
|
|
6
6
|
type Options = {
|
7
|
-
proportion?: boolean,
|
8
|
-
constraint?: boolean,
|
9
|
-
autoAdjust?: (boolean|number),
|
10
|
-
autoAdjusting?: (boolean|number),
|
11
|
-
title?: boolean,
|
12
|
-
paddingSize?: number,
|
13
|
-
shrinkable?: boolean
|
7
|
+
proportion?: boolean|null,
|
8
|
+
constraint?: boolean|null,
|
9
|
+
autoAdjust?: (boolean|number)|null,
|
10
|
+
autoAdjusting?: (boolean|number)|null,
|
11
|
+
title?: boolean|null,
|
12
|
+
paddingSize?: number|null,
|
13
|
+
shrinkable?: boolean|null
|
14
14
|
};
|
15
15
|
|
16
16
|
type ColumnOptions = {
|
17
|
-
noFitting?: boolean,
|
18
|
-
contentFitting?: boolean,
|
19
|
-
minWidth?: number,
|
20
|
-
maxWidth?: number
|
17
|
+
noFitting?: boolean|null,
|
18
|
+
contentFitting?: boolean|null,
|
19
|
+
minWidth?: number|null,
|
20
|
+
maxWidth?: number|null
|
21
21
|
};
|
22
22
|
|
23
23
|
}
|
24
24
|
|
25
25
|
declare class ColumnFitterPlugin extends GridPlugin {
|
26
26
|
|
27
|
-
constructor(options?: ColumnFitterPlugin.Options);
|
27
|
+
constructor(options?: ColumnFitterPlugin.Options|null);
|
28
28
|
|
29
29
|
public getName(): string;
|
30
30
|
|
@@ -32,15 +32,15 @@ declare class ColumnFitterPlugin extends GridPlugin {
|
|
32
32
|
|
33
33
|
public unload(host: any): void;
|
34
34
|
|
35
|
-
public config(options?: ColumnFitterPlugin.Options): void;
|
35
|
+
public config(options?: ColumnFitterPlugin.Options|null): void;
|
36
36
|
|
37
37
|
public getConfigObject(gridOptions?: any): any;
|
38
38
|
|
39
39
|
public getColumnMenu(colIndex: number, config: any): any;
|
40
40
|
|
41
|
-
public adjustColumnWidth(colIndex?: (number)[]): boolean;
|
41
|
+
public adjustColumnWidth(colIndex?: (number)[]|null): boolean;
|
42
42
|
|
43
|
-
public adjustColumns(colIndices?: (number)[], force?: boolean): boolean;
|
43
|
+
public adjustColumns(colIndices?: (number)[]|null, force?: boolean|null): boolean;
|
44
44
|
|
45
45
|
public adjustAllColumns(): boolean;
|
46
46
|
|
@@ -3,7 +3,7 @@ import {GridPlugin} from "../../tr-grid-util/es6/GridPlugin.js";
|
|
3
3
|
import {FilterBuilder, stringToDateObject} from "../../tr-grid-util/es6/FilterBuilder.js";
|
4
4
|
import {FilterOperators} from "../../tr-grid-util/es6/FilterOperators.js";
|
5
5
|
import {ElfUtil} from "../../tr-grid-util/es6/ElfUtil.js";
|
6
|
-
import { injectCss, prettifyCss } from "../../tr-grid-util/es6/Util.js";
|
6
|
+
import { injectCss, prettifyCss, cloneObject } from "../../tr-grid-util/es6/Util.js";
|
7
7
|
|
8
8
|
declare namespace RowFilteringPlugin {
|
9
9
|
|
@@ -32,7 +32,8 @@ declare namespace RowFilteringPlugin {
|
|
32
32
|
formattedDataAccessor?: ((...params: any[]) => any)|null,
|
33
33
|
sortLogic?: ((...params: any[]) => any)|null,
|
34
34
|
itemList?: any[]|null,
|
35
|
-
additionalItems?: any[]|null
|
35
|
+
additionalItems?: any[]|null,
|
36
|
+
blankValues?: (boolean|string)|null
|
36
37
|
};
|
37
38
|
|
38
39
|
type Options = {
|
package/lib/versions.json
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
"tr-grid-percent-bar": "1.0.22",
|
25
25
|
"tr-grid-range-bar": "2.0.6",
|
26
26
|
"tr-grid-row-dragging": "1.0.31",
|
27
|
-
"tr-grid-row-filtering": "1.0.
|
27
|
+
"tr-grid-row-filtering": "1.0.67",
|
28
28
|
"tr-grid-row-grouping": "1.0.86",
|
29
29
|
"tr-grid-row-selection": "1.0.27",
|
30
30
|
"tr-grid-rowcoloring": "1.0.25",
|
@@ -32,6 +32,6 @@
|
|
32
32
|
"tr-grid-titlewrap": "1.0.21",
|
33
33
|
"@grid/formatters": "1.0.51",
|
34
34
|
"@grid/column-selection-dialog": "4.0.56",
|
35
|
-
"@grid/filter-dialog": "4.0.
|
35
|
+
"@grid/filter-dialog": "4.0.63",
|
36
36
|
"@grid/column-format-dialog": "4.0.44"
|
37
37
|
}
|
package/package.json
CHANGED