Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export type EuiDatePickerRangeProps = CommonProps &
| 'readOnly'
| 'fullWidth'
| 'compressed'
| 'clear'
| 'prepend'
| 'append'
> & {
Expand Down Expand Up @@ -114,6 +115,7 @@ export const EuiDatePickerRange: FunctionComponent<EuiDatePickerRangeProps> = ({
disabled,
onFocus,
onBlur,
clear,
append,
prepend,
...rest
Expand Down Expand Up @@ -214,6 +216,7 @@ export const EuiDatePickerRange: FunctionComponent<EuiDatePickerRangeProps> = ({
isDisabled={disabled}
isInvalid={isInvalid}
isLoading={isLoading}
clear={clear}
append={inline ? undefined : append}
prepend={inline ? undefined : prepend}
css={
Expand Down
Loading