Make WordPress Core


Ignore:
Timestamp:
10/21/2025 07:11:53 AM (3 months ago)
Author:
ellatrix
Message:

Editor: update packages.

Updates the packages to match Gutenberg version 21.9.0 RC2.

Also updates the sync script to work with the new package-lock.json format.
Some reusable block tests were adjusted to work with more render arguments.
Added core-data to the ignore list for verify:source-maps because Yjs has been bundled by accident. To be removed in a follow-up. See https://core.trac.wordpress.org/ticket/64120. See https://github.com/WordPress/gutenberg/pull/72503.

See: https://github.com/WordPress/wordpress-develop/pull/10355.
See: https://core.trac.wordpress.org/ticket/64117.

Props ellatrix, dmsnell.
Fixes #64117.

File:
1 edited

Legend:

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

    r59775 r61009  
    99    "attributes": {
    1010        "url": {
    11             "type": "string"
     11            "type": "string",
     12            "role": "content"
    1213        },
    1314        "useFeaturedImage": {
     
    6970            "default": true
    7071        },
    71         "allowedBlocks": {
    72             "type": "array"
    73         },
    7472        "templateLock": {
    7573            "type": [ "string", "boolean" ],
     
    8280        "sizeSlug": {
    8381            "type": "string"
     82        },
     83        "poster": {
     84            "type": "string",
     85            "source": "attribute",
     86            "selector": "video",
     87            "attribute": "poster"
    8488        }
    8589    },
     
    112116        },
    113117        "color": {
    114             "__experimentalDuotone": "> .wp-block-cover__image-background, > .wp-block-cover__video-background",
    115118            "heading": true,
    116119            "text": true,
     
    140143        "interactivity": {
    141144            "clientNavigation": true
     145        },
     146        "filter": {
     147            "duotone": true
     148        },
     149        "allowedBlocks": true
     150    },
     151    "selectors": {
     152        "filter": {
     153            "duotone": ".wp-block-cover > .wp-block-cover__image-background, .wp-block-cover > .wp-block-cover__video-background"
    142154        }
    143155    },
Note: See TracChangeset for help on using the changeset viewer.