feat(controlManager): add getter for letter spacing value

This commit is contained in:
Ilia Mashkov
2026-01-30 00:48:29 +03:00
parent fb843c87af
commit 87c4e04458

View File

@@ -43,6 +43,10 @@ export class TypographyControlManager {
get height() { get height() {
return this.#controls.get('line_height')?.instance.value; return this.#controls.get('line_height')?.instance.value;
} }
get spacing() {
return this.#controls.get('letter_spacing')?.instance.value;
}
} }
/** /**