ia-table 0.13.0 → 0.13.1

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +12 -5
  2. package/dist/index.js +1331 -1312
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1153,12 +1153,18 @@ export declare interface SmartGridCheckboxProps {
1153
1153
  className?: string;
1154
1154
  }
1155
1155
 
1156
+ export declare type SmartGridCheckConfigraitonSearchField = {
1157
+ type: string;
1158
+ filterType: string;
1159
+ filter: string;
1160
+ };
1161
+
1156
1162
  export declare interface SmartGridCheckConfiguration {
1157
1163
  checkedRows?: string[];
1158
1164
  unCheckedRows?: string[];
1159
1165
  checkAll?: boolean;
1160
- searchColumns?: SmartGridFilterModel | {
1161
- [key: string]: SmartGridFilterModel[];
1166
+ searchColumns?: SmartGridCheckConfigraitonSearchField | {
1167
+ [key: string]: SmartGridCheckConfigraitonSearchField;
1162
1168
  };
1163
1169
  unCheckAll?: boolean;
1164
1170
  }
@@ -1428,9 +1434,9 @@ export declare interface SmartGridDateRangeValue {
1428
1434
  export declare type SmartGridDefaultColDef = {
1429
1435
  minWidth: number;
1430
1436
  headerComponentParams?: {
1431
- innerHeaderComponent: ((params: SmartGridHeaderStyleParams) => JSX.Element | string) | null;
1437
+ innerHeaderComponent: React.FC<SmartGridHeaderStyleParams> | null;
1432
1438
  };
1433
- headerComponent?: ((params: SmartGridHeaderStyleParams) => JSX.Element | string) | null;
1439
+ headerComponent?: React.FC<SmartGridHeaderStyleParams> | null;
1434
1440
  };
1435
1441
 
1436
1442
  export declare type SmartGridDispatch = (action: {
@@ -2367,6 +2373,7 @@ export declare interface SmartGridRefreshOptions {
2367
2373
  purge?: boolean;
2368
2374
  resetPage?: boolean;
2369
2375
  userInitiated?: boolean;
2376
+ resetFilters?: boolean;
2370
2377
  }
2371
2378
 
2372
2379
  export declare interface SmartGridRemoveLazyLoadParams {
@@ -2814,7 +2821,7 @@ export declare interface SmartGridSortWithHeaderNameProps {
2814
2821
  maxHeight: number;
2815
2822
  maxLineCount: number;
2816
2823
  } | null;
2817
- innerHeaderComponent?: ((props: SmartGridHeaderStyleParams) => JSX.Element | string) | null;
2824
+ innerHeaderComponent?: React.FC<SmartGridHeaderStyleParams> | null;
2818
2825
  customHeaderProps?: SmartGridHeaderStyleParams;
2819
2826
  }
2820
2827