ia-table 0.14.1 → 0.14.3

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/index.d.ts CHANGED
@@ -841,6 +841,7 @@ export declare interface SmartGridBodyCellDetailProps {
841
841
  hasChildren: boolean;
842
842
  isAggregationParentRowWithAggregatedData: boolean;
843
843
  lazyLoadCellRenderer?: boolean;
844
+ childKeyField: string;
844
845
  }
845
846
 
846
847
  export declare interface SmartGridBodyCellProps {
@@ -1569,6 +1570,7 @@ export declare interface SmartGridExpandableCellProps {
1569
1570
  isRowGroupEnabled: boolean;
1570
1571
  updatedCellId: string | number;
1571
1572
  isGroupRowExpanded: boolean;
1573
+ childKeyField: string;
1572
1574
  }
1573
1575
 
1574
1576
  export declare type SmartGridExpandedChildRows = {
@@ -2055,6 +2057,7 @@ export declare interface SmartGridInputProps {
2055
2057
  height?: string | number;
2056
2058
  onFocus?: (e: FocusEvent_2<HTMLInputElement>) => void;
2057
2059
  onBlur?: (e: FocusEvent_2<HTMLInputElement>) => void;
2060
+ autoFocus?: boolean;
2058
2061
  }
2059
2062
 
2060
2063
  export declare type SmartGridInputType = "text" | "password" | "email" | "number" | "tel" | "int" | "url";
@@ -3154,7 +3157,7 @@ export declare interface SmartGridStateContext {
3154
3157
  height: number;
3155
3158
  padding: number;
3156
3159
  };
3157
- aggregationTotalRow: SmartGridRowData | null;
3160
+ aggregationTotalRow: Record<number, SmartGridRowData> | null;
3158
3161
  hasAggregation: boolean;
3159
3162
  callBackRef: MutableRefObject<SmartGridCallbackRefCurrent | null>;
3160
3163
  exportCallbackRef: MutableRefObject<{
@@ -3551,6 +3554,12 @@ export declare interface SmartGridTableProps extends SmartGridSaveViewCallbackRe
3551
3554
  splitRendererKeys?: string[];
3552
3555
  removeSelectionOnOperation?: boolean;
3553
3556
  pivotConfig?: SmartGridPivotConfig;
3557
+ /**
3558
+ * Controls whether the table should show loading state.
3559
+ * When `false` and data is null/empty, the table will show "No data available" instead of shimmer/loading.
3560
+ * When `true` or undefined (default), normal loading behavior applies.
3561
+ */
3562
+ loadingData?: boolean;
3554
3563
  }
3555
3564
 
3556
3565
  export declare interface SmartGridTableRef {