@refinitiv-ui/efx-grid 6.0.142 → 6.0.143

Sign up to get free protection for your applications and to get access to all the features.
package/lib/grid/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  import {Grid} from "./lib/efx-grid.js";
2
2
  export {Grid}
3
- window.EFX_GRID = { version: "6.0.142" };
3
+ window.EFX_GRID = { version: "6.0.143" };
@@ -24,7 +24,7 @@ declare namespace ElfUtil {
24
24
 
25
25
  function isHaloTheme(themeName?: string|null): boolean;
26
26
 
27
- function injectIcons(configObj: any, optElem?: Element|null): void;
27
+ function injectIcons(configObj: any): void;
28
28
 
29
29
  function getIconList(): (string)[];
30
30
 
@@ -288,9 +288,8 @@ ElfUtil.isHaloTheme = function (themeName) {
288
288
  * @public
289
289
  * @function
290
290
  * @param {Object} configObj Object to mutate
291
- * @param {Element=} optElem Deprecated param: will no longer use anymore
292
291
  */
293
- ElfUtil.injectIcons = function (configObj, optElem) {
292
+ ElfUtil.injectIcons = function (configObj) {
294
293
  if (typeof configObj !== "object") { return; }
295
294
 
296
295
  let theme = ElfUtil.getThemeName();
@@ -18,7 +18,8 @@ Icon.create = function(iconName, className) {
18
18
  return icon;
19
19
  };
20
20
 
21
- /** @public
21
+ /** Create a container element with an icon element in it.
22
+ * @public
22
23
  * @function
23
24
  * @param {string=} iconName
24
25
  * @param {string=} className Class name for the containing box
@@ -20,7 +20,8 @@ declare namespace RowFilteringPlugin {
20
20
  type ColumnOptions = {
21
21
  filter?: RowFilteringPlugin.Expression|null,
22
22
  filterState?: any,
23
- filterIcon?: boolean|null
23
+ filterIcon?: boolean|null,
24
+ filterDialogOptions?: RowFilteringPlugin.FilterDialogOptions|null
24
25
  };
25
26
 
26
27
  type FilterDialogOptions = {
package/lib/versions.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "tr-grid-util": "1.3.171",
2
+ "tr-grid-util": "1.3.172",
3
3
  "tr-grid-printer": "1.0.18",
4
4
  "@grid/column-dragging": "1.0.21",
5
5
  "@grid/row-segmenting": "2.0.1",
package/package.json CHANGED
@@ -69,5 +69,5 @@
69
69
  "publishConfig": {
70
70
  "access": "public"
71
71
  },
72
- "version": "6.0.142"
72
+ "version": "6.0.143"
73
73
  }