mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
1de40f71be
This patch, somewhat small brings a lot to WordPress. This includes features like: - DataViews. - Customization tools like box shadow, background size and repeat. - UI improvements in the site editor. - Preferences sharing between the post and site editors. - Unified panels and editors between post and site editors. - Improved template mode in the post editor. - Iterations to multiple interactive blocks. - Preparing the blocks and UI for pattern overrides. - and a lot more. Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj. See #60315. Built from https://develop.svn.wordpress.org/trunk@57377 git-svn-id: http://core.svn.wordpress.org/trunk@56883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
142 lines
3.1 KiB
JSON
142 lines
3.1 KiB
JSON
{
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
|
"apiVersion": 3,
|
|
"name": "core/navigation",
|
|
"title": "Navigation",
|
|
"category": "theme",
|
|
"description": "A collection of blocks that allow visitors to get around your site.",
|
|
"keywords": [ "menu", "navigation", "links" ],
|
|
"textdomain": "default",
|
|
"attributes": {
|
|
"ref": {
|
|
"type": "number"
|
|
},
|
|
"textColor": {
|
|
"type": "string"
|
|
},
|
|
"customTextColor": {
|
|
"type": "string"
|
|
},
|
|
"rgbTextColor": {
|
|
"type": "string"
|
|
},
|
|
"backgroundColor": {
|
|
"type": "string"
|
|
},
|
|
"customBackgroundColor": {
|
|
"type": "string"
|
|
},
|
|
"rgbBackgroundColor": {
|
|
"type": "string"
|
|
},
|
|
"showSubmenuIcon": {
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"openSubmenusOnClick": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"overlayMenu": {
|
|
"type": "string",
|
|
"default": "mobile"
|
|
},
|
|
"icon": {
|
|
"type": "string",
|
|
"default": "handle"
|
|
},
|
|
"hasIcon": {
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"__unstableLocation": {
|
|
"type": "string"
|
|
},
|
|
"overlayBackgroundColor": {
|
|
"type": "string"
|
|
},
|
|
"customOverlayBackgroundColor": {
|
|
"type": "string"
|
|
},
|
|
"overlayTextColor": {
|
|
"type": "string"
|
|
},
|
|
"customOverlayTextColor": {
|
|
"type": "string"
|
|
},
|
|
"maxNestingLevel": {
|
|
"type": "number",
|
|
"default": 5
|
|
},
|
|
"templateLock": {
|
|
"type": [ "string", "boolean" ],
|
|
"enum": [ "all", "insert", "contentOnly", false ]
|
|
}
|
|
},
|
|
"providesContext": {
|
|
"textColor": "textColor",
|
|
"customTextColor": "customTextColor",
|
|
"backgroundColor": "backgroundColor",
|
|
"customBackgroundColor": "customBackgroundColor",
|
|
"overlayTextColor": "overlayTextColor",
|
|
"customOverlayTextColor": "customOverlayTextColor",
|
|
"overlayBackgroundColor": "overlayBackgroundColor",
|
|
"customOverlayBackgroundColor": "customOverlayBackgroundColor",
|
|
"fontSize": "fontSize",
|
|
"customFontSize": "customFontSize",
|
|
"showSubmenuIcon": "showSubmenuIcon",
|
|
"openSubmenusOnClick": "openSubmenusOnClick",
|
|
"style": "style",
|
|
"maxNestingLevel": "maxNestingLevel"
|
|
},
|
|
"supports": {
|
|
"align": [ "wide", "full" ],
|
|
"ariaLabel": true,
|
|
"html": false,
|
|
"inserter": true,
|
|
"typography": {
|
|
"fontSize": true,
|
|
"lineHeight": true,
|
|
"__experimentalFontStyle": true,
|
|
"__experimentalFontWeight": true,
|
|
"__experimentalTextTransform": true,
|
|
"__experimentalFontFamily": true,
|
|
"__experimentalLetterSpacing": true,
|
|
"__experimentalTextDecoration": true,
|
|
"__experimentalSkipSerialization": [ "textDecoration" ],
|
|
"__experimentalDefaultControls": {
|
|
"fontSize": true
|
|
}
|
|
},
|
|
"spacing": {
|
|
"blockGap": true,
|
|
"units": [ "px", "em", "rem", "vh", "vw" ],
|
|
"__experimentalDefaultControls": {
|
|
"blockGap": true
|
|
}
|
|
},
|
|
"layout": {
|
|
"allowSwitching": false,
|
|
"allowInheriting": false,
|
|
"allowVerticalAlignment": false,
|
|
"allowSizingOnChildren": true,
|
|
"default": {
|
|
"type": "flex"
|
|
}
|
|
},
|
|
"__experimentalStyle": {
|
|
"elements": {
|
|
"link": {
|
|
"color": {
|
|
"text": "inherit"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"interactivity": true,
|
|
"renaming": false
|
|
},
|
|
"editorStyle": "wp-block-navigation-editor",
|
|
"style": "wp-block-navigation"
|
|
}
|