@bigbinary/neetoui 5.2.42 → 5.2.43

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/index.d.ts CHANGED
@@ -416,8 +416,9 @@ export interface TableProps {
416
416
  enableColumnResize?: boolean;
417
417
  enableColumnReorder?: boolean;
418
418
  onColumnUpdate?: (columns: any[]) => void;
419
- [key: string]: any;
420
419
  preserveTableStateInQuery?: boolean;
420
+ onColumnHide?: (columnKey: string) => void;
421
+ [key: string]: any;
421
422
  }
422
423
 
423
424
  export interface TagProps {
@@ -534,6 +535,7 @@ export interface PopoverProps {
534
535
  interactive?: boolean;
535
536
  hideAfter?: number;
536
537
  hideOnTargetExit?: boolean;
538
+ className?: string;
537
539
  [key: string]: any;
538
540
  }
539
541