This commit is contained in:
Mirco Wittrien 2023-10-29 23:24:15 +01:00
parent 0e176a66cb
commit 8ff6ba6615
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @name BDFDB
* @author DevilBro
* @authorId 278543574059057154
* @version 3.4.6
* @version 3.4.7
* @description Required Library for DevilBro's Plugins
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -6989,7 +6989,9 @@ module.exports = (_ => {
autoFocus: this.props.autoFocus ? this.props.autoFocus : false,
maxVisibleItems: this.props.maxVisibleItems || 7,
renderOptionLabel: this.props.optionRenderer,
onChange: this.handleChange.bind(this)
select: this.handleChange.bind(this),
serialize: typeof this.props.serialize == "function" ? this.props.serialize : _ => {},
isSelected: typeof this.props.isSelected == "function" ? this.props.isSelected : (value => this.props.value == value)
}), "inputClassName", "optionRenderer"))
});
}

View File

@ -279,7 +279,7 @@
"PopoutContainer": {"props": ["Animation", "defaultProps"]},
"RadioGroup": {"strings": ["itemInfoClassName", "hasSelection", ".radioItemIconClassName"]},
"SearchBar": {"strings": ["this.inputRef", ".containerRef", ".handleOnChange"]},
"SearchableSelect": {"strings": ["serialize", "haspopup", ".maxVisibleItems"]},
"SearchableSelect": {"strings": ["serialize", "haspopup", "maxVisibleItems"]},
"Slider": {"strings": [".stickToMarkers", "sortedMarkers"]},
"TabBar": {"props": ["Item", "Header", "Panel"]},
"Table": {"props": ["SortDirection", "defaultProps"]},