This commit is contained in:
Mirco Wittrien 2019-11-04 10:40:18 +01:00
parent 6bbfaf709f
commit 8a38210707
2 changed files with 18 additions and 10 deletions

View File

@ -4083,6 +4083,7 @@ var BDFDB = {
DiscordClassModules.Game = BDFDB.ModuleUtils.findByProperties("game", "gameName"); DiscordClassModules.Game = BDFDB.ModuleUtils.findByProperties("game", "gameName");
DiscordClassModules.GameIcon = BDFDB.ModuleUtils.findByProperties("gameIcon", "small", "xsmall"); DiscordClassModules.GameIcon = BDFDB.ModuleUtils.findByProperties("gameIcon", "small", "xsmall");
DiscordClassModules.GameLibrary = BDFDB.ModuleUtils.findByProperties("gameLibrary", "scroller"); DiscordClassModules.GameLibrary = BDFDB.ModuleUtils.findByProperties("gameLibrary", "scroller");
DiscordClassModules.GameLibraryTable = BDFDB.ModuleUtils.findByProperties("stickyHeader", "emptyStateText");
DiscordClassModules.GifFavoriteButton = BDFDB.ModuleUtils.findByProperties("gifFavoriteButton", "showPulse"); DiscordClassModules.GifFavoriteButton = BDFDB.ModuleUtils.findByProperties("gifFavoriteButton", "showPulse");
DiscordClassModules.GiftInventory = BDFDB.ModuleUtils.findByProperties("root", "body", "scroller"); DiscordClassModules.GiftInventory = BDFDB.ModuleUtils.findByProperties("root", "body", "scroller");
DiscordClassModules.GoLiveDetails = BDFDB.ModuleUtils.findByProperties("panel", "gameWrapper"); DiscordClassModules.GoLiveDetails = BDFDB.ModuleUtils.findByProperties("panel", "gameWrapper");
@ -4170,7 +4171,7 @@ var BDFDB = {
DiscordClassModules.Slider = BDFDB.ModuleUtils.findByProperties("slider", "grabber"); DiscordClassModules.Slider = BDFDB.ModuleUtils.findByProperties("slider", "grabber");
DiscordClassModules.Spoiler = BDFDB.ModuleUtils.findByProperties("spoilerContainer", "hidden"); DiscordClassModules.Spoiler = BDFDB.ModuleUtils.findByProperties("spoilerContainer", "hidden");
DiscordClassModules.Switch = BDFDB.ModuleUtils.findByProperties("switchDisabled", "valueChecked"); DiscordClassModules.Switch = BDFDB.ModuleUtils.findByProperties("switchDisabled", "valueChecked");
DiscordClassModules.Table = BDFDB.ModuleUtils.findByProperties("stickyHeader", "emptyStateText"); DiscordClassModules.Table = BDFDB.ModuleUtils.findByProperties("stickyHeader", "sortIcon");
DiscordClassModules.Text = BDFDB.ModuleUtils.findByProperties("defaultColor", "defaultMarginh1"); DiscordClassModules.Text = BDFDB.ModuleUtils.findByProperties("defaultColor", "defaultMarginh1");
DiscordClassModules.TextColor = BDFDB.ModuleUtils.findByProperties("colorStandard", "colorMuted", "colorError"); DiscordClassModules.TextColor = BDFDB.ModuleUtils.findByProperties("colorStandard", "colorMuted", "colorError");
DiscordClassModules.TextColor2 = BDFDB.ModuleUtils.findByProperties("base", "muted", "wrapper"); DiscordClassModules.TextColor2 = BDFDB.ModuleUtils.findByProperties("base", "muted", "wrapper");
@ -4668,9 +4669,13 @@ var BDFDB = {
gameiconsmall: ["GameIcon", "small"], gameiconsmall: ["GameIcon", "small"],
gameiconxsmall: ["GameIcon", "xsmall"], gameiconxsmall: ["GameIcon", "xsmall"],
gamelibrary: ["GameLibrary", "gameLibrary"], gamelibrary: ["GameLibrary", "gameLibrary"],
gamelibrarytable: ["Table", "table"], gamelibrarytable: ["GameLibraryTable", "table"],
gamelibrarytableheader: ["Table", "header"], gamelibrarytableheader: ["GameLibraryTable", "header"],
gamelibrarytablestickyheader: ["Table", "stickyHeader"], gamelibrarytableheadercell: ["GameLibraryTable", "headerCell"],
gamelibrarytableheadercellsorted: ["GameLibraryTable", "headerCellSorted"],
gamelibrarytablerow: ["GameLibraryTable", "row"],
gamelibrarytablerowwrapper: ["GameLibraryTable", "rowWrapper"],
gamelibrarytablestickyheader: ["GameLibraryTable", "stickyHeader"],
gamename: ["Game", "gameName"], gamename: ["Game", "gameName"],
gamenameinput: ["Game", "gameNameInput"], gamenameinput: ["Game", "gameNameInput"],
giffavoritebutton: ["MessageAccessory", "gifFavoriteButton"], giffavoritebutton: ["MessageAccessory", "gifFavoriteButton"],
@ -5317,11 +5322,14 @@ var BDFDB = {
tabbarheadercontainer: ["RecentMentions", "headerTabBarWrapper"], tabbarheadercontainer: ["RecentMentions", "headerTabBarWrapper"],
tabbarheaderitem: ["RecentMentions", "tabBarItem"], tabbarheaderitem: ["RecentMentions", "tabBarItem"],
tabbaritem: ["UserProfile", "tabBarItem"], tabbaritem: ["UserProfile", "tabBarItem"],
tabbartop: ["Item", "top"], tableheadercell: ["Table", "headerCell"],
tableheader: ["SettingsTable", "header"], tableheadercellclickable: ["Table", "clickable"],
tableheadername: ["SettingsTable", "headerName"], tableheadercellcontent: ["Table", "headerCellContent"],
tableheaderoption: ["SettingsTable", "headerOption"], tableheadercellsorted: ["Table", "headerCellSorted"],
tableheadersize: ["SettingsTable", "headerSize"], tableheadersorticon: ["Table", "sortIcon"],
tablerow: ["Table", "row"],
tablespacerheader: ["Table", "spacerHeader"],
tablestickyheader: ["Table", "stickyHeader"],
textarea: ["ChannelTextArea", "textArea"], textarea: ["ChannelTextArea", "textArea"],
textareaattachbutton: ["ChannelTextArea", "attachButton"], textareaattachbutton: ["ChannelTextArea", "attachButton"],
textareaattachbuttondivider: ["ChannelTextArea", "attachButtonDivider"], textareaattachbuttondivider: ["ChannelTextArea", "attachButtonDivider"],

File diff suppressed because one or more lines are too long