mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-13 08:33:01 -04:00
ShowHiddenChannels: better ui, alternative display mode (#446)
Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
parent
8a43e9b25f
commit
75050e74ca
3 changed files with 141 additions and 83 deletions
|
@ -75,6 +75,7 @@ export let Button: any;
|
|||
export const ButtonLooks = findByPropsLazy("BLANK", "FILLED", "INVERTED") as Record<"FILLED" | "INVERTED" | "OUTLINED" | "LINK" | "BLANK", string>;
|
||||
export let Switch: any;
|
||||
export let Tooltip: Components.Tooltip;
|
||||
export let Timestamp: any;
|
||||
export let Router: any;
|
||||
export let TextInput: any;
|
||||
export let Text: (props: TextProps) => JSX.Element;
|
||||
|
@ -185,6 +186,8 @@ waitFor(["Hovers", "Looks", "Sizes"], m => Button = m);
|
|||
|
||||
waitFor(filters.byCode("tooltipNote", "ringTarget"), m => Switch = m);
|
||||
|
||||
waitFor(filters.byCode(".Messages.MESSAGE_EDITED_TIMESTAMP_A11Y_LABEL.format"), m => Timestamp = m);
|
||||
|
||||
waitFor(["Positions", "Colors"], m => Tooltip = m);
|
||||
waitFor(m => m.Types?.PRIMARY === "cardPrimary", m => Card = m);
|
||||
|
||||
|
@ -307,4 +310,3 @@ export const ContextMenu = mapMangledModuleLazy('type:"CONTEXT_MENU_OPEN"', {
|
|||
export const MaskedLinkStore = mapMangledModuleLazy('"MaskedLinkStore"', {
|
||||
openUntrustedLink: filters.byCode(".apply(this,arguments)")
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue