sag_components 2.0.0-beta16 → 2.0.0-beta18

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
@@ -640,10 +640,55 @@ declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disable
640
640
  placeHolder?: string | undefined;
641
641
  width?: string | undefined;
642
642
  checkBoxColor?: string | undefined;
643
- onChange?: ((event: any) => void) | undefined;
643
+ onChange?: (() => void) | undefined;
644
644
  options?: any[] | undefined;
645
645
  selectedValue?: any[] | undefined;
646
- }): react_jsx_runtime.JSX.Element;
646
+ }): react_jsx_runtime.JSX.Element;
647
+ declare namespace QuickFilter {
648
+ namespace propTypes {
649
+ const hoverColor: any;
650
+ const multipleSelection: any;
651
+ const disabled: any;
652
+ const error: any;
653
+ const errorMessage: any;
654
+ const label: any;
655
+ const labelColor: any;
656
+ const placeHolder: any;
657
+ const width: any;
658
+ const checkBoxColor: any;
659
+ const onChange: any;
660
+ const options: any;
661
+ const selectedValue: any;
662
+ }
663
+ namespace defaultProps {
664
+ const hoverColor_1: string;
665
+ export { hoverColor_1 as hoverColor };
666
+ const multipleSelection_1: boolean;
667
+ export { multipleSelection_1 as multipleSelection };
668
+ const disabled_1: boolean;
669
+ export { disabled_1 as disabled };
670
+ const error_1: boolean;
671
+ export { error_1 as error };
672
+ const errorMessage_1: string;
673
+ export { errorMessage_1 as errorMessage };
674
+ const label_1: string;
675
+ export { label_1 as label };
676
+ const labelColor_1: string;
677
+ export { labelColor_1 as labelColor };
678
+ const placeHolder_1: string;
679
+ export { placeHolder_1 as placeHolder };
680
+ const width_1: string;
681
+ export { width_1 as width };
682
+ const checkBoxColor_1: string;
683
+ export { checkBoxColor_1 as checkBoxColor };
684
+ export function onChange_1(): void;
685
+ export { onChange_1 as onChange };
686
+ const options_1: never[];
687
+ export { options_1 as options };
688
+ const selectedValue_1: never[];
689
+ export { selectedValue_1 as selectedValue };
690
+ }
691
+ }
647
692
 
648
693
  declare function OneColumnContainer(props: any): react_jsx_runtime.JSX.Element;
649
694