Merge pull request #936 from Perlence/fix/extension-editor-padding-x

fix(coding-agent): propagate paddingX to custom editors
This commit is contained in:
Mario Zechner
2026-01-24 20:48:41 +01:00
committed by GitHub
2 changed files with 9 additions and 0 deletions

View File

@@ -62,4 +62,7 @@ export interface EditorComponent extends Component {
/** Border color function */
borderColor?: (str: string) => string;
/** Set horizontal padding */
setPaddingX?(padding: number): void;
}