2020-07-01 08:29:03 -04:00
|
|
|
{
|
2022-04-12 11:12:47 -04:00
|
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
2023-06-27 10:24:19 -04:00
|
|
|
"apiVersion": 3,
|
2020-07-01 08:29:03 -04:00
|
|
|
"name": "core/heading",
|
2021-05-19 11:09:27 -04:00
|
|
|
"title": "Heading",
|
2020-07-01 08:29:03 -04:00
|
|
|
"category": "text",
|
2021-05-19 11:09:27 -04:00
|
|
|
"description": "Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",
|
|
|
|
"keywords": [ "title", "subtitle" ],
|
|
|
|
"textdomain": "default",
|
2020-07-01 08:29:03 -04:00
|
|
|
"attributes": {
|
2020-11-01 23:56:37 -05:00
|
|
|
"textAlign": {
|
2020-07-01 08:29:03 -04:00
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"content": {
|
Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.
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
2024-01-29 16:07:12 -05:00
|
|
|
"type": "rich-text",
|
|
|
|
"source": "rich-text",
|
2020-07-01 08:29:03 -04:00
|
|
|
"selector": "h1,h2,h3,h4,h5,h6",
|
2024-09-30 01:11:31 -04:00
|
|
|
"role": "content"
|
2020-07-01 08:29:03 -04:00
|
|
|
},
|
|
|
|
"level": {
|
|
|
|
"type": "number",
|
|
|
|
"default": 2
|
|
|
|
},
|
2024-09-19 21:55:35 -04:00
|
|
|
"levelOptions": {
|
|
|
|
"type": "array"
|
|
|
|
},
|
2020-07-01 08:29:03 -04:00
|
|
|
"placeholder": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"supports": {
|
2020-10-20 09:36:16 -04:00
|
|
|
"align": [ "wide", "full" ],
|
2020-07-01 08:29:03 -04:00
|
|
|
"anchor": true,
|
2023-02-07 02:04:52 -05:00
|
|
|
"className": true,
|
2024-05-23 15:39:28 -04:00
|
|
|
"splitting": true,
|
2024-09-19 21:55:35 -04:00
|
|
|
"__experimentalBorder": {
|
|
|
|
"color": true,
|
|
|
|
"radius": true,
|
|
|
|
"style": true,
|
|
|
|
"width": true,
|
|
|
|
"__experimentalDefaultControls": {
|
|
|
|
"color": true,
|
|
|
|
"radius": true,
|
|
|
|
"style": true,
|
|
|
|
"width": true
|
|
|
|
}
|
|
|
|
},
|
2020-10-20 09:36:16 -04:00
|
|
|
"color": {
|
2022-09-20 11:43:29 -04:00
|
|
|
"gradients": true,
|
2022-04-12 11:12:47 -04:00
|
|
|
"link": true,
|
|
|
|
"__experimentalDefaultControls": {
|
|
|
|
"background": true,
|
|
|
|
"text": true
|
|
|
|
}
|
2020-07-01 08:29:03 -04:00
|
|
|
},
|
2021-11-08 09:29:21 -05:00
|
|
|
"spacing": {
|
2022-09-20 11:43:29 -04:00
|
|
|
"margin": true,
|
2023-07-07 03:21:17 -04:00
|
|
|
"padding": true,
|
|
|
|
"__experimentalDefaultControls": {
|
|
|
|
"margin": false,
|
|
|
|
"padding": false
|
|
|
|
}
|
2021-11-08 09:29:21 -05:00
|
|
|
},
|
2021-06-08 04:09:53 -04:00
|
|
|
"typography": {
|
|
|
|
"fontSize": true,
|
|
|
|
"lineHeight": true,
|
2022-09-20 11:43:29 -04:00
|
|
|
"__experimentalFontFamily": true,
|
2021-11-08 09:29:21 -05:00
|
|
|
"__experimentalFontStyle": true,
|
|
|
|
"__experimentalFontWeight": true,
|
|
|
|
"__experimentalLetterSpacing": true,
|
|
|
|
"__experimentalTextTransform": true,
|
2022-09-20 11:43:29 -04:00
|
|
|
"__experimentalTextDecoration": true,
|
2023-09-26 10:23:26 -04:00
|
|
|
"__experimentalWritingMode": true,
|
2021-11-08 09:29:21 -05:00
|
|
|
"__experimentalDefaultControls": {
|
Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.
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
2024-01-29 16:07:12 -05:00
|
|
|
"fontSize": true
|
2021-11-08 09:29:21 -05:00
|
|
|
}
|
2021-06-08 04:09:53 -04:00
|
|
|
},
|
2021-11-08 09:29:21 -05:00
|
|
|
"__unstablePasteTextInline": true,
|
2024-02-09 13:22:22 -05:00
|
|
|
"__experimentalSlashInserter": true,
|
|
|
|
"interactivity": {
|
|
|
|
"clientNavigation": true
|
|
|
|
}
|
2021-01-27 21:04:13 -05:00
|
|
|
},
|
|
|
|
"editorStyle": "wp-block-heading-editor",
|
|
|
|
"style": "wp-block-heading"
|
2020-07-01 08:29:03 -04:00
|
|
|
}
|