fix(common): reimplement missing function forceAnimateBLabel

This commit is contained in:
2026-02-13 17:18:05 +01:00
parent d7bca21bd7
commit fd5a0230f1

View File

@@ -144,5 +144,14 @@ useKeyDown(({ key, repeated }) => {
}
});
const forceAnimateBLabel = () =>
animateLabelChange(
(v) => (bButtonOffsetY = v),
(l) => (displayedBLabel = l),
props.bLabel,
);
defineExpose({ forceAnimateBLabel });
defineOptions({ render: () => null });
</script>