@ambuj.bhaskar/react-component-library 0.18.23-alpha → 0.18.24-alpha

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
@@ -515,6 +515,33 @@ export declare type AwiSliderProps = {
515
515
  inputEdit?: boolean;
516
516
  };
517
517
 
518
+ export declare const AwiTableBar: default_2.FC<AwiTableBarProps>;
519
+
520
+ declare type AwiTableBarButton = {
521
+ icon?: string;
522
+ name: string;
523
+ onClick?: () => void;
524
+ title?: string;
525
+ type?: string;
526
+ isDisabled?: boolean;
527
+ backgroundColor?: string;
528
+ isActive?: boolean;
529
+ isSelected?: boolean;
530
+ };
531
+
532
+ export declare type AwiTableBarProps = {
533
+ showSearch?: boolean;
534
+ leftButtons?: AwiTableBarButton[];
535
+ rightButtons?: AwiTableBarButton[];
536
+ searchFunction?: (value: any) => any;
537
+ searchDelay?: number;
538
+ onSearchClick?: () => any;
539
+ searchPlaceHolder?: string;
540
+ showSearchEye?: boolean;
541
+ borderRequired?: boolean;
542
+ borderColor?: string;
543
+ };
544
+
518
545
  export declare const AwiTableBody: React.FC<AwiTableBodyProps>;
519
546
 
520
547
  export declare type AwiTableBodyProps = {