Make WordPress Core


Ignore:
Timestamp:
09/20/2024 01:53:52 AM (4 months ago)
Author:
noisysocks
Message:

Editor: Update packages for 6.7 Beta 1.

Syncs @wordpress/* packages to the wp-6.7 npm tag.

Fixes #61906.
Props peterwilsoncc, gziolo, kevin940726.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/categories/block.json

    r57578 r59072  
    33    "apiVersion": 3,
    44    "name": "core/categories",
    5     "title": "Categories List",
     5    "title": "Terms List",
    66    "category": "widgets",
    7     "description": "Display a list of all categories.",
     7    "description": "Display a list of all terms of a given taxonomy.",
     8    "keywords": [ "categories" ],
    89    "textdomain": "default",
    910    "attributes": {
     11        "taxonomy": {
     12            "type": "string",
     13            "default": "category"
     14        },
    1015        "displayAsDropdown": {
    1116            "type": "boolean",
     
    2732            "type": "boolean",
    2833            "default": false
     34        },
     35        "label": {
     36            "type": "string",
     37            "__experimentalRole": "content"
     38        },
     39        "showLabel": {
     40            "type": "boolean",
     41            "default": true
    2942        }
    3043    },
     44    "usesContext": [ "enhancedPagination" ],
    3145    "supports": {
    3246        "align": true,
     
    5569        "interactivity": {
    5670            "clientNavigation": true
     71        },
     72        "__experimentalBorder": {
     73            "radius": true,
     74            "color": true,
     75            "width": true,
     76            "style": true,
     77            "__experimentalDefaultControls": {
     78                "radius": true,
     79                "color": true,
     80                "width": true,
     81                "style": true
     82            }
    5783        }
    5884    },
Note: See TracChangeset for help on using the changeset viewer.