Browse Source

fix: missing autoFocus prop in Slider. Fixes #26982 (#26995)

pull/26998/head
Lim Shang Yi 4 years ago
committed by GitHub
parent
commit
08ca032550
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      components/slider/index.tsx

1
components/slider/index.tsx

@ -47,6 +47,7 @@ export interface SliderBaseProps {
tooltipVisible?: boolean; tooltipVisible?: boolean;
tooltipPlacement?: TooltipPlacement; tooltipPlacement?: TooltipPlacement;
getTooltipPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; getTooltipPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
autoFocus?: boolean;
} }
export interface SliderSingleProps extends SliderBaseProps { export interface SliderSingleProps extends SliderBaseProps {

Loading…
Cancel
Save