From 20899b016cb77f56d71d88eb18a428374043094e Mon Sep 17 00:00:00 2001 From: Kazuhiro Sera Date: Mon, 11 Mar 2024 22:09:04 +0900 Subject: [PATCH] Add missing "border" proerty to "rich_text_quote" block element (#1753) --- packages/types/src/block-kit/block-elements.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/types/src/block-kit/block-elements.ts b/packages/types/src/block-kit/block-elements.ts index c2c4d09b8..9dde595f8 100644 --- a/packages/types/src/block-kit/block-elements.ts +++ b/packages/types/src/block-kit/block-elements.ts @@ -951,6 +951,11 @@ export interface RichTextQuote { * @description An array of {@link RichTextElement} comprising the quote block. */ elements: RichTextElement[]; + /** + * @description Whether to render a quote-block-like border on the inline side of the text quote. + * `0` renders no border, while `1` renders a border. Defaults to `0`. + */ + border?: 0 | 1; } /**