From 02db8a387e8c4d97275aa3eb98824ad4fce35747 Mon Sep 17 00:00:00 2001 From: lipemat Date: Mon, 15 Feb 2021 15:44:02 -0500 Subject: [PATCH] Support `category` in BlockVariation Available in Gutenberg 9.9 https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/ https://github.com/WordPress/gutenberg/pull/28482 --- wordpress__blocks/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/wordpress__blocks/index.d.ts b/wordpress__blocks/index.d.ts index 8ef8578..284f31a 100644 --- a/wordpress__blocks/index.d.ts +++ b/wordpress__blocks/index.d.ts @@ -48,6 +48,7 @@ declare module '@wordpress/blocks' { name: string; title: string; description?: string; + category?: string; icon?: Icon; isDefault?: boolean; attributes?: BlockAttributes;