sag_components 2.0.0-beta209 → 2.0.0-beta211

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
@@ -422,7 +422,7 @@ declare namespace CollapseHeader {
422
422
  }
423
423
  }
424
424
 
425
- declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, checkBoxColor, onChange, options, selectedValue, }: {
425
+ declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, height, checkBoxColor, dropdownHeight, onChange, options, selectedValue, }: {
426
426
  hoverColor?: string;
427
427
  multipleSelection?: boolean;
428
428
  xIconShow?: boolean;
@@ -433,7 +433,9 @@ declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disable
433
433
  labelColor?: string;
434
434
  placeHolder?: string;
435
435
  width?: string;
436
+ height?: string;
436
437
  checkBoxColor?: string;
438
+ dropdownHeight?: string;
437
439
  onChange?: (value: any) => void;
438
440
  options?: any[];
439
441
  selectedValue?: any[];