From 6807b05e9bd41f013364fae0cbcce83cf1ed37b6 Mon Sep 17 00:00:00 2001 From: Stephen Kraus <8003332+stephenmk@users.noreply.github.com> Date: Wed, 31 Jan 2024 07:23:57 -0600 Subject: Allow `clip-path`, `background`, `text-emphasis` styles in structured content (#556) * Allow `clip-path` and `background` styles in structured content * Allow `text-emphasis` style in structured content --------- Co-authored-by: stephenmk --- types/ext/structured-content.d.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'types/ext') diff --git a/types/ext/structured-content.d.ts b/types/ext/structured-content.d.ts index e40a6730..8ab459b6 100644 --- a/types/ext/structured-content.d.ts +++ b/types/ext/structured-content.d.ts @@ -55,6 +55,7 @@ export type StructuredContentStyle = { fontWeight?: FontWeight; fontSize?: string; color?: string; + background?: string; backgroundColor?: string; textDecorationLine?: TextDecorationLineOrNone | TextDecorationLine[]; textDecorationStyle?: TextDecorationStyle; @@ -63,8 +64,10 @@ export type StructuredContentStyle = { borderStyle?: string; borderRadius?: string; borderWidth?: string; + clipPath?: string; verticalAlign?: VerticalAlign; textAlign?: TextAlign; + textEmphasis?: string; textShadow?: string; margin?: string; marginTop?: number | string; -- cgit v1.2.3