mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
1fbf5fa51d
Updates the editor npm packages to latest versions. See https://github.com/WordPress/wordpress-develop/pull/6612. Props ellatrix, mukesh27, youknowriad, mamaduka. Built from https://develop.svn.wordpress.org/trunk@58187 git-svn-id: http://core.svn.wordpress.org/trunk@57650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
103 lines
2.3 KiB
JSON
103 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
|
"apiVersion": 3,
|
|
"name": "core/post-featured-image",
|
|
"title": "Featured Image",
|
|
"category": "theme",
|
|
"description": "Display a post's featured image.",
|
|
"textdomain": "default",
|
|
"attributes": {
|
|
"isLink": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"aspectRatio": {
|
|
"type": "string"
|
|
},
|
|
"width": {
|
|
"type": "string"
|
|
},
|
|
"height": {
|
|
"type": "string"
|
|
},
|
|
"scale": {
|
|
"type": "string",
|
|
"default": "cover"
|
|
},
|
|
"sizeSlug": {
|
|
"type": "string"
|
|
},
|
|
"rel": {
|
|
"type": "string",
|
|
"attribute": "rel",
|
|
"default": ""
|
|
},
|
|
"linkTarget": {
|
|
"type": "string",
|
|
"default": "_self"
|
|
},
|
|
"overlayColor": {
|
|
"type": "string"
|
|
},
|
|
"customOverlayColor": {
|
|
"type": "string"
|
|
},
|
|
"dimRatio": {
|
|
"type": "number",
|
|
"default": 0
|
|
},
|
|
"gradient": {
|
|
"type": "string"
|
|
},
|
|
"customGradient": {
|
|
"type": "string"
|
|
},
|
|
"useFirstImageFromPost": {
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
},
|
|
"usesContext": [ "postId", "postType", "queryId" ],
|
|
"supports": {
|
|
"align": [ "left", "right", "center", "wide", "full" ],
|
|
"color": {
|
|
"text": false,
|
|
"background": false
|
|
},
|
|
"__experimentalBorder": {
|
|
"color": true,
|
|
"radius": true,
|
|
"width": true,
|
|
"__experimentalSkipSerialization": true,
|
|
"__experimentalDefaultControls": {
|
|
"color": true,
|
|
"radius": true,
|
|
"width": true
|
|
}
|
|
},
|
|
"filter": {
|
|
"duotone": true
|
|
},
|
|
"shadow": {
|
|
"__experimentalSkipSerialization": true
|
|
},
|
|
"html": false,
|
|
"spacing": {
|
|
"margin": true,
|
|
"padding": true
|
|
},
|
|
"interactivity": {
|
|
"clientNavigation": true
|
|
}
|
|
},
|
|
"selectors": {
|
|
"border": ".wp-block-post-featured-image img, .wp-block-post-featured-image .block-editor-media-placeholder, .wp-block-post-featured-image .wp-block-post-featured-image__overlay",
|
|
"shadow": ".wp-block-post-featured-image img, .wp-block-post-featured-image .components-placeholder",
|
|
"filter": {
|
|
"duotone": ".wp-block-post-featured-image img, .wp-block-post-featured-image .wp-block-post-featured-image__placeholder, .wp-block-post-featured-image .components-placeholder__illustration, .wp-block-post-featured-image .components-placeholder::before"
|
|
}
|
|
},
|
|
"editorStyle": "wp-block-post-featured-image-editor",
|
|
"style": "wp-block-post-featured-image"
|
|
}
|