wp/wp-includes/blocks/list/block.json
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
--- a/wp/wp-includes/blocks/list/block.json	Tue Dec 15 15:52:01 2020 +0100
+++ b/wp/wp-includes/blocks/list/block.json	Wed Sep 21 18:19:35 2022 +0200
@@ -1,21 +1,25 @@
 {
+	"apiVersion": 2,
 	"name": "core/list",
+	"title": "List",
 	"category": "text",
+	"description": "Create a bulleted or numbered list.",
+	"keywords": [ "bullet list", "ordered list", "numbered list" ],
+	"textdomain": "default",
 	"attributes": {
 		"ordered": {
 			"type": "boolean",
-			"default": false
+			"default": false,
+			"__experimentalRole": "content"
 		},
 		"values": {
 			"type": "string",
 			"source": "html",
 			"selector": "ol,ul",
 			"multiline": "li",
-			"__unstableMultilineWrapperTags": [
-				"ol",
-				"ul"
-			],
-			"default": ""
+			"__unstableMultilineWrapperTags": [ "ol", "ul" ],
+			"default": "",
+			"__experimentalRole": "content"
 		},
 		"type": {
 			"type": "string"
@@ -25,12 +29,24 @@
 		},
 		"reversed": {
 			"type": "boolean"
+		},
+		"placeholder": {
+			"type": "string"
 		}
 	},
 	"supports": {
 		"anchor": true,
 		"className": false,
+		"typography": {
+			"fontSize": true,
+			"__experimentalFontFamily": true
+		},
+		"color": {
+			"gradients": true
+		},
 		"__unstablePasteTextInline": true,
-		"lightBlockWrapper": true
-	}
+		"__experimentalSelector": "ol,ul"
+	},
+	"editorStyle": "wp-block-list-editor",
+	"style": "wp-block-list"
 }