--- a/wp/wp-includes/blocks/gallery/block.json Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-includes/blocks/gallery/block.json Fri Sep 05 18:40:08 2025 +0200
@@ -1,9 +1,10 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
- "apiVersion": 2,
+ "apiVersion": 3,
"name": "core/gallery",
"title": "Gallery",
"category": "media",
+ "allowedBlocks": [ "core/image" ],
"description": "Display multiple images in a rich gallery.",
"keywords": [ "images", "photos" ],
"textdomain": "default",
@@ -46,8 +47,8 @@
"attribute": "data-id"
},
"caption": {
- "type": "string",
- "source": "html",
+ "type": "rich-text",
+ "source": "rich-text",
"selector": ".blocks-gallery-item__caption"
}
}
@@ -61,10 +62,10 @@
},
"shortCodeTransforms": {
"type": "array",
- "default": [],
"items": {
"type": "object"
- }
+ },
+ "default": []
},
"columns": {
"type": "number",
@@ -72,14 +73,18 @@
"maximum": 8
},
"caption": {
- "type": "string",
- "source": "html",
+ "type": "rich-text",
+ "source": "rich-text",
"selector": ".blocks-gallery-caption"
},
"imageCrop": {
"type": "boolean",
"default": true
},
+ "randomOrder": {
+ "type": "boolean",
+ "default": false
+ },
"fixedHeight": {
"type": "boolean",
"default": true
@@ -110,19 +115,31 @@
"html": false,
"units": [ "px", "em", "rem", "vh", "vw" ],
"spacing": {
- "blockGap": true,
+ "margin": true,
+ "padding": true,
+ "blockGap": [ "horizontal", "vertical" ],
"__experimentalSkipSerialization": [ "blockGap" ],
"__experimentalDefaultControls": {
- "blockGap": true
+ "blockGap": true,
+ "margin": false,
+ "padding": false
}
},
- "__experimentalLayout": {
+ "color": {
+ "text": false,
+ "background": true,
+ "gradients": true
+ },
+ "layout": {
"allowSwitching": false,
"allowInheriting": false,
"allowEditing": false,
"default": {
"type": "flex"
}
+ },
+ "interactivity": {
+ "clientNavigation": true
}
},
"editorStyle": "wp-block-gallery-editor",