This commit is contained in:
Mirco Wittrien 2019-10-04 20:18:28 +02:00
parent 1c9eddbe2d
commit 020f744b18
2 changed files with 5 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -5175,7 +5175,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
var LibraryComponents = {};
LibraryComponents.Button = BDFDB.WebModules.findByProperties('Colors', 'Hovers', 'Looks');
LibraryComponents.ContextMenu = BDFDB.WebModules.findByName('NativeContextMenu');
LibraryComponents.ContextMenuItem = BDFDB.WebModules.findByString("{className:(0,l.default)(i.default.item,(t={},t[i.default.clickable]=!v");
LibraryComponents.ContextMenuItem = BDFDB.WebModules.findByString('{className:i.default.label}', '{className:i.default.hint}');
LibraryComponents.ContextMenuItemGroup = BDFDB.WebModules.findByString('{className:i.default.itemGroup}');
LibraryComponents.ContextMenuSliderItem = BDFDB.WebModules.findByName('SliderMenuItem');
LibraryComponents.ContextMenuSubItem = BDFDB.WebModules.findByName('FluxContainer(SubMenuItem)');
@ -6227,6 +6227,9 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
BDFDB.addEventListener(BDFDB, document, 'mousedown.BDFDBMousePosition', e => {
BDFDB.mousePosition = e;
});
BDFDB.addEventListener(BDFDB, window, 'focus.BDFDBPressedKeysReset', e => {
BDFDB.pressedKeys = [];
});
BDFDB.patchModules = {
V2C_List: 'componentDidMount',