1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 23:00:54 +00:00
* Fixed: The button to expand chat not appearing when using theater mode along with Swap Sidebars.
* Fixed: Emote / link cards not appearing correctly when using moderator view.

* API Added: `searchParentNode(input: InputNode, criteria: (node: ReactNode) => boolean)` method to `site.fine` for finding React internal nodes, useful for locating stateless components for extracting props.
* API Added: `getRenderers()`, `getActions()` methods for `chat.actions` to get bulk data.
* API Added: `getBadge(id: string | number)` method for `chat.badges` to get a badge.
* API Added: `getUser(...).getBadges()` method for `chat` to get a user's badges.
* API Added: The `action-editor` component for `chat.actions` has an additional `extra_appearance_editor` field for adding additional inputs.
* API Changed: The `removeAction(...keys: string[])` and `removeRenderer(...keys: string[])` methods for `chat.actions` now support multiple keys to allow for more efficient removal.
This commit is contained in:
SirStendec 2024-03-29 13:33:14 -04:00
parent a02c14d84c
commit 38e557e809
11 changed files with 170 additions and 52 deletions

View file

@ -376,6 +376,7 @@
:inline="item.inline"
:mod_icons="has_icons"
:context="item.context"
:extra_appearance="item.extra_appearance_editor"
:vuectx="context"
:modifiers="item.modifiers"
:hover_modifier="item.hover_modifier"
@ -817,4 +818,4 @@ export default {
}
}
</script>
</script>