Changeset 50929 for trunk/src/wp-includes/blocks
- Timestamp:
- 05/19/2021 03:07:55 PM (5 years ago)
- Location:
- trunk/src/wp-includes/blocks
- Files:
-
- 51 added
- 43 edited
-
archives/block.json (modified) (1 diff)
-
audio/block.json (modified) (1 diff)
-
block/block.json (modified) (1 diff)
-
button/block.json (modified) (2 diffs)
-
buttons/block.json (modified) (1 diff)
-
calendar/block.json (modified) (1 diff)
-
categories/block.json (modified) (1 diff)
-
code/block.json (modified) (1 diff)
-
column/block.json (modified) (2 diffs)
-
columns/block.json (modified) (1 diff)
-
cover/block.json (modified) (2 diffs)
-
embed/block.json (modified) (1 diff)
-
file/block.json (modified) (1 diff)
-
freeform/block.json (modified) (1 diff)
-
gallery/block.json (modified) (1 diff)
-
group/block.json (modified) (2 diffs)
-
heading/block.json (modified) (2 diffs)
-
html/block.json (modified) (1 diff)
-
image/block.json (modified) (2 diffs)
-
index.php (modified) (1 diff)
-
latest-comments/block.json (modified) (1 diff)
-
latest-posts/block.json (modified) (1 diff)
-
list/block.json (modified) (1 diff)
-
loginout (added)
-
loginout.php (added)
-
loginout/block.json (added)
-
media-text/block.json (modified) (1 diff)
-
missing/block.json (modified) (1 diff)
-
more/block.json (modified) (1 diff)
-
nextpage/block.json (modified) (1 diff)
-
paragraph/block.json (modified) (1 diff)
-
post-author (added)
-
post-author.php (added)
-
post-author/block.json (added)
-
post-content (added)
-
post-content.php (added)
-
post-content/block.json (added)
-
post-date (added)
-
post-date.php (added)
-
post-date/block.json (added)
-
post-excerpt (added)
-
post-excerpt.php (added)
-
post-excerpt/block.json (added)
-
post-featured-image (added)
-
post-featured-image.php (added)
-
post-featured-image/block.json (added)
-
post-terms (added)
-
post-terms.php (added)
-
post-terms/block.json (added)
-
post-title (added)
-
post-title.php (added)
-
post-title/block.json (added)
-
preformatted/block.json (modified) (1 diff)
-
pullquote/block.json (modified) (2 diffs)
-
query (added)
-
query-loop (added)
-
query-loop.php (added)
-
query-loop/block.json (added)
-
query-pagination (added)
-
query-pagination-next (added)
-
query-pagination-next.php (added)
-
query-pagination-next/block.json (added)
-
query-pagination-numbers (added)
-
query-pagination-numbers.php (added)
-
query-pagination-numbers/block.json (added)
-
query-pagination-previous (added)
-
query-pagination-previous.php (added)
-
query-pagination-previous/block.json (added)
-
query-pagination.php (added)
-
query-pagination/block.json (added)
-
query-title (added)
-
query-title.php (added)
-
query-title/block.json (added)
-
query.php (added)
-
query/block.json (added)
-
quote/block.json (modified) (2 diffs)
-
rss/block.json (modified) (1 diff)
-
search/block.json (modified) (1 diff)
-
separator/block.json (modified) (2 diffs)
-
shortcode/block.json (modified) (1 diff)
-
site-tagline (added)
-
site-tagline.php (added)
-
site-tagline/block.json (added)
-
site-title (added)
-
site-title.php (added)
-
site-title/block.json (added)
-
social-link/block.json (modified) (1 diff)
-
social-links/block.json (modified) (2 diffs)
-
spacer/block.json (modified) (1 diff)
-
table/block.json (modified) (2 diffs)
-
tag-cloud/block.json (modified) (1 diff)
-
text-columns/block.json (modified) (1 diff)
-
verse/block.json (modified) (1 diff)
-
video/block.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks/archives/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/archives", 4 "title": "Archives", 4 5 "category": "widgets", 6 "description": "Display a monthly archive of your posts.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "displayAsDropdown": { -
trunk/src/wp-includes/blocks/audio/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/audio", 4 "title": "Audio", 4 5 "category": "media", 6 "description": "Embed a simple audio player.", 7 "keywords": [ "music", "sound", "podcast", "recording" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "src": { -
trunk/src/wp-includes/blocks/block/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/block", 4 "title": "Reusable block", 4 5 "category": "reusable", 6 "description": "Create and save content to reuse across your site. Update the block, and the changes apply everywhere it’s used.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "ref": { -
trunk/src/wp-includes/blocks/button/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/button", 4 "title": "Button", 4 5 "category": "design", 5 6 "parent": [ "core/buttons" ], 7 "description": "Prompt visitors to take action with a button-style link.", 8 "keywords": [ "link" ], 9 "textdomain": "default", 6 10 "attributes": { 7 11 "url": { … … 67 71 "__experimentalSelector": ".wp-block-button__link" 68 72 }, 73 "styles": [ 74 { "name": "fill", "label": "Fill", "isDefault": true }, 75 { "name": "outline", "label": "Outline" } 76 ], 69 77 "editorStyle": "wp-block-button-editor", 70 78 "style": "wp-block-button" -
trunk/src/wp-includes/blocks/buttons/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/buttons", 4 "title": "Buttons", 4 5 "category": "design", 6 "description": "Prompt visitors to take action with a group of button-style links.", 7 "keywords": [ "link" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "contentJustification": { -
trunk/src/wp-includes/blocks/calendar/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/calendar", 4 "title": "Calendar", 4 5 "category": "widgets", 6 "description": "A calendar of your site’s posts.", 7 "keywords": [ "posts", "archive" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "month": { -
trunk/src/wp-includes/blocks/categories/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/categories", 4 "title": "Categories", 4 5 "category": "widgets", 6 "description": "Display a list of all categories.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "displayAsDropdown": { -
trunk/src/wp-includes/blocks/code/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/code", 4 "title": "Code", 4 5 "category": "text", 6 "description": "Display code snippets that respect your spacing and tabs.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "content": { -
trunk/src/wp-includes/blocks/column/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/column", 4 "title": "Column", 4 5 "category": "text", 5 6 "parent": [ "core/columns" ], 7 "description": "A single column within a columns block.", 8 "textdomain": "default", 6 9 "attributes": { 7 10 "verticalAlignment": { … … 12 15 }, 13 16 "templateLock": { 14 " type": "string"17 "enum": [ "all", "insert", false ] 15 18 } 16 19 }, -
trunk/src/wp-includes/blocks/columns/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/columns", 4 "title": "Columns", 4 5 "category": "design", 6 "description": "Add a block that displays content in multiple columns, then add whatever content blocks you’d like.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "verticalAlignment": { -
trunk/src/wp-includes/blocks/cover/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/cover", 4 "title": "Cover", 4 5 "category": "media", 6 "description": "Add an image or video with a text overlay — great for headers.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "url": { … … 57 60 "spacing": { 58 61 "padding": true 62 }, 63 "color": { 64 "__experimentalDuotone": "> .wp-block-cover__image-background, > .wp-block-cover__video-background", 65 "text": false, 66 "background": false 59 67 } 60 68 }, -
trunk/src/wp-includes/blocks/embed/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/embed", 4 "title": "Embed", 4 5 "category": "embed", 6 "description": "Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "url": { -
trunk/src/wp-includes/blocks/file/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/file", 4 "title": "File", 4 5 "category": "media", 6 "description": "Add a link to a downloadable file.", 7 "keywords": [ "document", "pdf", "download" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "id": { -
trunk/src/wp-includes/blocks/freeform/block.json
r50066 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/freeform", 4 "title": "Classic", 4 5 "category": "text", 6 "description": "Use the classic WordPress editor.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "content": { -
trunk/src/wp-includes/blocks/gallery/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/gallery", 4 "title": "Gallery", 4 5 "category": "media", 6 "description": "Display multiple images in a rich gallery.", 7 "keywords": [ "images", "photos" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "images": { -
trunk/src/wp-includes/blocks/group/block.json
r50761 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/group", 4 "title": "Group", 4 5 "category": "design", 6 "description": "Combine blocks into a group.", 7 "keywords": [ "container", "wrapper", "row", "section" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "tagName": { … … 9 13 }, 10 14 "templateLock": { 11 " type": "string"15 "enum": [ "all", "insert", false ] 12 16 } 13 17 }, -
trunk/src/wp-includes/blocks/heading/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/heading", 4 "title": "Heading", 4 5 "category": "text", 6 "description": "Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.", 7 "keywords": [ "title", "subtitle" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "textAlign": { … … 31 35 "fontSize": true, 32 36 "lineHeight": true, 33 "__experimentalSelector": { 34 "core/heading/h1": { 35 "selector": "h1", 36 "title": "h1", 37 "attributes": { 38 "level": 1 39 } 40 }, 41 "core/heading/h2": { 42 "selector": "h2", 43 "title": "h2", 44 "attributes": { 45 "level": 2 46 } 47 }, 48 "core/heading/h3": { 49 "selector": "h3", 50 "title": "h3", 51 "attributes": { 52 "level": 3 53 } 54 }, 55 "core/heading/h4": { 56 "selector": "h4", 57 "title": "h4", 58 "attributes": { 59 "level": 4 60 } 61 }, 62 "core/heading/h5": { 63 "selector": "h5", 64 "title": "h5", 65 "attributes": { 66 "level": 5 67 } 68 }, 69 "core/heading/h6": { 70 "selector": "h6", 71 "title": "h6", 72 "attributes": { 73 "level": 6 74 } 75 } 76 }, 37 "__experimentalSelector": "h1,h2,h3,h4,h5,h6", 77 38 "__unstablePasteTextInline": true 78 39 }, -
trunk/src/wp-includes/blocks/html/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/html", 4 "title": "Custom HTML", 4 5 "category": "widgets", 6 "description": "Add custom HTML code and preview it as you edit.", 7 "keywords": [ "embed" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "content": { -
trunk/src/wp-includes/blocks/image/block.json
r50137 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/image", 4 "title": "Image", 4 5 "category": "media", 6 "description": "Insert an image to make a visual statement.", 7 "keywords": [ "img", "photo", "picture" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "align": { … … 73 77 "supports": { 74 78 "anchor": true, 79 "color": { 80 "__experimentalDuotone": "img", 81 "text": false, 82 "background": false 83 }, 75 84 "__experimentalBorder": { 76 85 "radius": true 77 86 } 78 87 }, 88 "styles": [ 89 { 90 "name": "default", 91 "label": "Default", 92 "isDefault": true 93 }, 94 { "name": "rounded", "label": "Rounded" } 95 ], 79 96 "editorStyle": "wp-block-image-editor", 80 97 "style": "wp-block-image" -
trunk/src/wp-includes/blocks/index.php
r50927 r50929 14 14 require ABSPATH . WPINC . '/blocks/latest-comments.php'; 15 15 require ABSPATH . WPINC . '/blocks/latest-posts.php'; 16 require ABSPATH . WPINC . '/blocks/loginout.php'; 17 require ABSPATH . WPINC . '/blocks/post-author.php'; 18 require ABSPATH . WPINC . '/blocks/post-content.php'; 19 require ABSPATH . WPINC . '/blocks/post-date.php'; 20 require ABSPATH . WPINC . '/blocks/post-excerpt.php'; 21 require ABSPATH . WPINC . '/blocks/post-featured-image.php'; 22 require ABSPATH . WPINC . '/blocks/post-terms.php'; 23 require ABSPATH . WPINC . '/blocks/post-title.php'; 24 require ABSPATH . WPINC . '/blocks/query.php'; 25 require ABSPATH . WPINC . '/blocks/query-loop.php'; 26 require ABSPATH . WPINC . '/blocks/query-pagination.php'; 27 require ABSPATH . WPINC . '/blocks/query-pagination-next.php'; 28 require ABSPATH . WPINC . '/blocks/query-pagination-numbers.php'; 29 require ABSPATH . WPINC . '/blocks/query-pagination-previous.php'; 30 require ABSPATH . WPINC . '/blocks/query-title.php'; 16 31 require ABSPATH . WPINC . '/blocks/rss.php'; 17 32 require ABSPATH . WPINC . '/blocks/search.php'; 18 33 require ABSPATH . WPINC . '/blocks/shortcode.php'; 34 require ABSPATH . WPINC . '/blocks/site-tagline.php'; 35 require ABSPATH . WPINC . '/blocks/site-title.php'; 19 36 require ABSPATH . WPINC . '/blocks/social-link.php'; 20 37 require ABSPATH . WPINC . '/blocks/tag-cloud.php'; -
trunk/src/wp-includes/blocks/latest-comments/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/latest-comments", 4 "title": "Latest Comments", 4 5 "category": "widgets", 6 "description": "Display a list of your most recent comments.", 7 "keywords": [ "recent comments" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "commentsToShow": { -
trunk/src/wp-includes/blocks/latest-posts/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/latest-posts", 4 "title": "Latest Posts", 4 5 "category": "widgets", 6 "description": "Display a list of your most recent posts.", 7 "keywords": [ "recent posts" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "categories": { -
trunk/src/wp-includes/blocks/list/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/list", 4 "title": "List", 4 5 "category": "text", 6 "description": "Create a bulleted or numbered list.", 7 "keywords": [ "bullet list", "ordered list", "numbered list" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "ordered": { -
trunk/src/wp-includes/blocks/media-text/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/media-text", 4 "title": "Media & Text", 4 5 "category": "media", 6 "description": "Set media and words side-by-side for a richer layout.", 7 "keywords": [ "image", "video" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "align": { -
trunk/src/wp-includes/blocks/missing/block.json
r49226 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/missing", 4 "title": "Unsupported", 4 5 "category": "text", 6 "description": "Your site doesn’t include support for this block.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "originalName": { -
trunk/src/wp-includes/blocks/more/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/more", 4 "title": "More", 4 5 "category": "design", 6 "description": "Content before this block will be shown in the excerpt on your archives page.", 7 "keywords": [ "read more" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "customText": { -
trunk/src/wp-includes/blocks/nextpage/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/nextpage", 4 "title": "Page Break", 4 5 "category": "design", 6 "description": "Separate your content into a multi-page experience.", 7 "keywords": [ "next page", "pagination" ], 5 8 "parent": [ "core/post-content" ], 9 "textdomain": "default", 6 10 "supports": { 7 11 "customClassName": false, -
trunk/src/wp-includes/blocks/paragraph/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/paragraph", 4 "title": "Paragraph", 4 5 "category": "text", 6 "description": "Start with the building block of all narrative.", 7 "keywords": [ "text" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "align": { -
trunk/src/wp-includes/blocks/preformatted/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/preformatted", 4 "title": "Preformatted", 4 5 "category": "text", 6 "description": "Add text that respects your spacing and tabs, and also allows styling.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "content": { -
trunk/src/wp-includes/blocks/pullquote/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/pullquote", 4 "title": "Pullquote", 4 5 "category": "text", 6 "description": "Give special visual emphasis to a quote from your text.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "value": { … … 35 38 "align": [ "left", "right", "wide", "full" ] 36 39 }, 40 "styles": [ 41 { 42 "name": "default", 43 "label": "Default", 44 "isDefault": true 45 }, 46 { "name": "solid-color", "label": "Solid color" } 47 ], 37 48 "editorStyle": "wp-block-pullquote-editor", 38 49 "style": "wp-block-pullquote" -
trunk/src/wp-includes/blocks/quote/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/quote", 4 "title": "Quote", 4 5 "category": "text", 6 "description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar", 7 "keywords": [ "blockquote", "cite" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "value": { … … 26 30 "anchor": true 27 31 }, 32 "styles": [ 33 { 34 "name": "default", 35 "label": "Default", 36 "isDefault": true 37 }, 38 { "name": "large", "label": "Large" } 39 ], 28 40 "editorStyle": "wp-block-quote-editor", 29 41 "style": "wp-block-quote" -
trunk/src/wp-includes/blocks/rss/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/rss", 4 "title": "RSS", 4 5 "category": "widgets", 6 "description": "Display entries from any RSS or Atom feed.", 7 "keywords": [ "atom", "feed" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "columns": { -
trunk/src/wp-includes/blocks/search/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/search", 4 "title": "Search", 4 5 "category": "widgets", 6 "description": "Help visitors find your content.", 7 "keywords": [ "find" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "label": { -
trunk/src/wp-includes/blocks/separator/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/separator", 4 "title": "Separator", 4 5 "category": "design", 6 "description": "Create a break between ideas or sections with a horizontal separator.", 7 "keywords": [ "horizontal-line", "hr", "divider" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "color": { … … 15 19 "align": [ "center", "wide", "full" ] 16 20 }, 21 "styles": [ 22 { "name": "default", "label": "Default", "isDefault": true }, 23 { "name": "wide", "label": "Wide Line" }, 24 { "name": "dots", "label": "Dots" } 25 ], 17 26 "editorStyle": "wp-block-separator-editor", 18 27 "style": "wp-block-separator" -
trunk/src/wp-includes/blocks/shortcode/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/shortcode", 4 "title": "Shortcode", 4 5 "category": "widgets", 6 "description": "Insert additional custom elements with a WordPress shortcode.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "text": { -
trunk/src/wp-includes/blocks/social-link/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/social-link", 4 "title": "Social Icon", 4 5 "category": "widgets", 5 6 "parent": [ "core/social-links" ], 7 "description": "Display an icon linking to a social media profile or website.", 8 "textdomain": "default", 6 9 "attributes": { 7 10 "url": { -
trunk/src/wp-includes/blocks/social-links/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/social-links", 4 "title": "Social Icons", 4 5 "category": "widgets", 6 "description": "Display icons linking to your social media profiles or websites.", 7 "keywords": [ "links" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "iconColor": { … … 39 43 "anchor": true 40 44 }, 45 "styles": [ 46 { "name": "default", "label": "Default", "isDefault": true }, 47 { "name": "logos-only", "label": "Logos Only" }, 48 { "name": "pill-shape", "label": "Pill Shape" } 49 ], 41 50 "editorStyle": "wp-block-social-links-editor", 42 51 "style": "wp-block-social-links" -
trunk/src/wp-includes/blocks/spacer/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/spacer", 4 "title": "Spacer", 4 5 "category": "design", 6 "description": "Add white space between blocks and customize its height.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "height": { -
trunk/src/wp-includes/blocks/table/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/table", 4 "title": "Table", 4 5 "category": "text", 6 "description": "Insert a table — perfect for sharing charts and data.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "hasFixedLayout": { 7 10 "type": "boolean", 8 11 "default": false 9 },10 "backgroundColor": {11 "type": "string"12 12 }, 13 13 "caption": { … … 126 126 "anchor": true, 127 127 "align": true, 128 "color": { 129 "__experimentalSkipSerialization": true, 130 "gradients": true 131 }, 132 "__experimentalBorder": { 133 "__experimentalSkipSerialization": true, 134 "color": true, 135 "style": true, 136 "width": true 137 }, 128 138 "__experimentalSelector": ".wp-block-table > table" 129 139 }, 140 "styles": [ 141 { 142 "name": "regular", 143 "label": "Default", 144 "isDefault": true 145 }, 146 { "name": "stripes", "label": "Stripes" } 147 ], 130 148 "editorStyle": "wp-block-table-editor", 131 149 "style": "wp-block-table" -
trunk/src/wp-includes/blocks/tag-cloud/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/tag-cloud", 4 "title": "Tag Cloud", 4 5 "category": "widgets", 6 "description": "A cloud of your most used tags.", 7 "textdomain": "default", 5 8 "attributes": { 6 9 "taxonomy": { -
trunk/src/wp-includes/blocks/text-columns/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/text-columns", 4 "title": "Text Columns (deprecated)", 4 5 "icon": "columns", 5 6 "category": "design", 7 "description": "This block is deprecated. Please use the Columns block instead.", 8 "textdomain": "default", 6 9 "attributes": { 7 10 "content": { -
trunk/src/wp-includes/blocks/verse/block.json
r50824 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/verse", 4 "title": "Verse", 4 5 "category": "text", 6 "description": "Insert poetry. Use special spacing formats. Or quote song lyrics.", 7 "keywords": [ "poetry", "poem" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "content": { -
trunk/src/wp-includes/blocks/video/block.json
r50048 r50929 2 2 "apiVersion": 2, 3 3 "name": "core/video", 4 "title": "Video", 4 5 "category": "media", 6 "description": "Embed a video from your media library or upload a new one.", 7 "keywords": [ "movie" ], 8 "textdomain": "default", 5 9 "attributes": { 6 10 "autoplay": {
Note: See TracChangeset
for help on using the changeset viewer.