fix(common): reimplement missing function forceAnimateBLabel

This commit is contained in:
2026-02-13 17:18:05 +01:00
parent f674404ff2
commit 8adfee550b

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 }); defineOptions({ render: () => null });
</script> </script>