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
211 lines
4.2 KiB
JSON
211 lines
4.2 KiB
JSON
{
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
|
"apiVersion": 3,
|
|
"name": "core/table",
|
|
"title": "Table",
|
|
"category": "text",
|
|
"description": "Create structured content in rows and columns to display information.",
|
|
"textdomain": "default",
|
|
"attributes": {
|
|
"hasFixedLayout": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"caption": {
|
|
"type": "rich-text",
|
|
"source": "rich-text",
|
|
"selector": "figcaption"
|
|
},
|
|
"head": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "thead tr",
|
|
"query": {
|
|
"cells": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "td,th",
|
|
"query": {
|
|
"content": {
|
|
"type": "rich-text",
|
|
"source": "rich-text"
|
|
},
|
|
"tag": {
|
|
"type": "string",
|
|
"default": "td",
|
|
"source": "tag"
|
|
},
|
|
"scope": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "scope"
|
|
},
|
|
"align": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "data-align"
|
|
},
|
|
"colspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "colspan"
|
|
},
|
|
"rowspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "rowspan"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"body": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "tbody tr",
|
|
"query": {
|
|
"cells": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "td,th",
|
|
"query": {
|
|
"content": {
|
|
"type": "rich-text",
|
|
"source": "rich-text"
|
|
},
|
|
"tag": {
|
|
"type": "string",
|
|
"default": "td",
|
|
"source": "tag"
|
|
},
|
|
"scope": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "scope"
|
|
},
|
|
"align": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "data-align"
|
|
},
|
|
"colspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "colspan"
|
|
},
|
|
"rowspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "rowspan"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"foot": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "tfoot tr",
|
|
"query": {
|
|
"cells": {
|
|
"type": "array",
|
|
"default": [],
|
|
"source": "query",
|
|
"selector": "td,th",
|
|
"query": {
|
|
"content": {
|
|
"type": "rich-text",
|
|
"source": "rich-text"
|
|
},
|
|
"tag": {
|
|
"type": "string",
|
|
"default": "td",
|
|
"source": "tag"
|
|
},
|
|
"scope": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "scope"
|
|
},
|
|
"align": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "data-align"
|
|
},
|
|
"colspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "colspan"
|
|
},
|
|
"rowspan": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"attribute": "rowspan"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"supports": {
|
|
"anchor": true,
|
|
"align": true,
|
|
"color": {
|
|
"__experimentalSkipSerialization": true,
|
|
"gradients": true,
|
|
"__experimentalDefaultControls": {
|
|
"background": true,
|
|
"text": true
|
|
}
|
|
},
|
|
"spacing": {
|
|
"margin": true,
|
|
"padding": true,
|
|
"__experimentalDefaultControls": {
|
|
"margin": false,
|
|
"padding": false
|
|
}
|
|
},
|
|
"typography": {
|
|
"fontSize": true,
|
|
"lineHeight": true,
|
|
"__experimentalFontFamily": true,
|
|
"__experimentalFontStyle": true,
|
|
"__experimentalFontWeight": true,
|
|
"__experimentalLetterSpacing": true,
|
|
"__experimentalTextTransform": true,
|
|
"__experimentalTextDecoration": true,
|
|
"__experimentalDefaultControls": {
|
|
"fontSize": true
|
|
}
|
|
},
|
|
"__experimentalBorder": {
|
|
"__experimentalSkipSerialization": true,
|
|
"color": true,
|
|
"style": true,
|
|
"width": true,
|
|
"__experimentalDefaultControls": {
|
|
"color": true,
|
|
"style": true,
|
|
"width": true
|
|
}
|
|
},
|
|
"__experimentalSelector": ".wp-block-table > table"
|
|
},
|
|
"styles": [
|
|
{
|
|
"name": "regular",
|
|
"label": "Default",
|
|
"isDefault": true
|
|
},
|
|
{ "name": "stripes", "label": "Stripes" }
|
|
],
|
|
"editorStyle": "wp-block-table-editor",
|
|
"style": "wp-block-table"
|
|
}
|