ia-table 0.15.5 → 0.15.6

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/dist/chat.d.ts CHANGED
@@ -480,6 +480,7 @@ declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridApiExtra
480
480
  logCacheSummary: () => void | null;
481
481
  getCachedRowById: (id: string | number) => SmartGridRowData | null;
482
482
  getRowNode: (key: string | number) => Partial<SmartGridRowNode> | null;
483
+ getRowNodeWithIndex: (rowIndex: number) => Partial<SmartGridRowNode> | null;
483
484
  setVisibleRange: (startRow: number, endRow: number) => void;
484
485
  refreshCache: (options?: SmartGridRefreshOptions) => boolean;
485
486
  deselectAll: () => void;
package/dist/chat.js CHANGED
@@ -4,7 +4,7 @@ import * as _ from "react";
4
4
  import le, { useRef as Ne, useCallback as De, useEffect as ue, createContext as Ro, createElement as ie, memo as vr, useState as R, createRef as vi, useContext as kn, Fragment as _c, useMemo as An, Suspense as i6, useLayoutEffect as $c, Component as a6, useDebugValue as vh, forwardRef as Ll, version as Tu, useImperativeHandle as ed } from "react";
5
5
  import { B as Pe, T as Lh, R as hs, C as fo, c as r6, Q as an, P as xh, M as o6, I as co, b as s6 } from "./RadioGroup-D3RQET6P.js";
6
6
  import kh, { createPortal as Sh, flushSync as l6 } from "react-dom";
7
- import { S as f6, Q as c6, R as d6, U as u6, V as Nu, W as Au, M as ja, P as Bo, O as h6, a as Th, A as xs, u as p6 } from "./chat.type-Cwk7LBad.js";
7
+ import { S as f6, Q as c6, R as d6, U as u6, V as Nu, W as Au, M as ja, P as Bo, O as h6, a as Th, A as xs, u as p6 } from "./chat.type-De8KF2r5.js";
8
8
  import ks from "moment";
9
9
  const m6 = ({
10
10
  open: t,
@@ -2451,6 +2451,7 @@ const Jt = (e) => /* @__PURE__ */ J.createElement("svg", { width: "1em", height:
2451
2451
  aggregationTotalRow: F,
2452
2452
  pinnedBottomRows: [m]
2453
2453
  } : {},
2454
+ expandedChildRows: {},
2454
2455
  hasAggregation: w,
2455
2456
  selectedRows: [.../* @__PURE__ */ new Set([...y])],
2456
2457
  selectedRowsObject: z,
@@ -3285,7 +3286,8 @@ const Jt = (e) => /* @__PURE__ */ J.createElement("svg", { width: "1em", height:
3285
3286
  selectedRowsObject: m,
3286
3287
  unCheckedRows: D,
3287
3288
  isSelectionChanged: !1,
3288
- checkConfiguration: x ? e.checkConfiguration : []
3289
+ checkConfiguration: x ? e.checkConfiguration : [],
3290
+ prevAction: x ? e.prevAction : ""
3289
3291
  };
3290
3292
  }
3291
3293
  case s.BATCH_UPDATE: {
package/dist/index.d.ts CHANGED
@@ -551,6 +551,7 @@ export declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridA
551
551
  logCacheSummary: () => void | null;
552
552
  getCachedRowById: (id: string | number) => SmartGridRowData | null;
553
553
  getRowNode: (key: string | number) => Partial<SmartGridRowNode> | null;
554
+ getRowNodeWithIndex: (rowIndex: number) => Partial<SmartGridRowNode> | null;
554
555
  setVisibleRange: (startRow: number, endRow: number) => void;
555
556
  refreshCache: (options?: SmartGridRefreshOptions) => boolean;
556
557
  deselectAll: () => void;
@@ -893,8 +894,6 @@ export declare interface SmartGridBodyCellDetailProps {
893
894
  hasChildren: boolean;
894
895
  isAggregationParentRowWithAggregatedData: boolean;
895
896
  lazyLoadCellRenderer?: boolean;
896
- totalRows?: number;
897
- totalColumns?: number;
898
897
  childKeyField: string;
899
898
  isCommentFeatureEnabled: boolean;
900
899
  }
@@ -925,6 +924,7 @@ export declare interface SmartGridBodyCellProps {
925
924
  isLeftPinnedRowsAvailable?: boolean;
926
925
  style?: CSSProperties | null;
927
926
  index: number;
927
+ rowId: string | number;
928
928
  }
929
929
 
930
930
  export declare interface SmartGridButtonProps {