This commit is contained in:
Mirco Wittrien 2020-09-10 10:19:12 +02:00
parent 46226bcfbf
commit 1e7041a960
5 changed files with 3782 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

2748
Library/.res/BDFDB.data.json Normal file

File diff suppressed because it is too large Load Diff

1030
Library/.res/BDFDB.raw.css Normal file

File diff suppressed because it is too large Load Diff

View File

@ -8125,6 +8125,8 @@
InternalComponents.LibraryComponents.EmojiButton = BDFDB.ModuleUtils.findByName("EmojiButton");
InternalComponents.LibraryComponents.EmojiPicker = BDFDB.ModuleUtils.findByString("allowManagedEmojis", "EMOJI_PICKER_TAB_PANEL_ID", "diversitySelector");
InternalComponents.LibraryComponents.EmojiPickerButton = InternalBDFDB.loadPatchedComp("EmojiPickerButton") || reactInitialized && class BDFDB_EmojiPickerButton extends LibraryModules.React.Component {
handleEmojiChange(emoji) {
if (emoji != null) {
@ -8156,7 +8158,7 @@
position: InternalComponents.LibraryComponents.PopoutContainer.Positions.TOP,
align: InternalComponents.LibraryComponents.PopoutContainer.Align.LEFT,
renderPopout: instance => {
return BDFDB.ReactUtils.createElement(BDFDB.ModuleUtils.findByString("allowManagedEmojis", "EMOJI_PICKER_TAB_PANEL_ID", "diversitySelector"), {
return BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.EmojiPicker, {
closePopout: instance.close,
onSelectEmoji: this.handleEmojiChange.bind(this),
allowManagedEmojis: this.props.allowManagedEmojis

File diff suppressed because one or more lines are too long