@inceptionbg/iui 2.0.41 → 2.0.42

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
@@ -331,6 +331,7 @@ interface ITableDataActions<T = unknown> {
331
331
  interface ITableFilterData {
332
332
  filters: ITableFilter;
333
333
  customFilterIdList?: string[];
334
+ setCustomFilterIdList?: (columnsIds: string[]) => string[];
334
335
  activeFilterNo?: number;
335
336
  additionalFilters?: ReactElement;
336
337
  defaultSearch?: IAnyObject;
@@ -522,6 +523,8 @@ interface ISelectData extends IValueLabel {
522
523
  [id: string]: any;
523
524
  }
524
525
  interface BaseSelectProps {
526
+ id?: string;
527
+ name?: string;
525
528
  variant: 'basic' | 'async' | 'async-creatable';
526
529
  label?: string;
527
530
  value?: any;