Skip to content

Commit

Permalink
Resolving proptypes validation error
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirSaif committed Jul 7, 2024
1 parent 8cd350a commit 8f70633
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ DualListInternal.propTypes = {
filterValues: PropTypes.func,
rightValues: PropTypes.array,
handleValuesClick: PropTypes.func,
isFilterCaseInSensitive: PropTypes.bool,
WrapperProps: PropTypes.object,
LeftWrapperProps: PropTypes.object,
RightWrapperProps: PropTypes.object,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ interface InternalDualListSelectProps {
filterOptionsText?: ReactNode;
leftValues?: DualListSelectOption[];
rightValues?: DualListSelectOption[];
isFilterCaseInSensitive?: boolean;
/** Sub components customization API */
OptionsListProps?: SegmentProps;
OptionProps?: DualListSelectOptionProps;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ DualList.propTypes = {
validateOnMount: PropTypes.bool,
leftSortTitle: PropTypes.node,
rightSortTitle: PropTypes.node,
isFilterCaseInSensitive: PropTypes.bool,
/** Sub components customization API */
OptionsListProps: PropTypes.object,
OptionProps: PropTypes.object,
Expand Down

0 comments on commit 8f70633

Please sign in to comment.