Make WordPress Core


Ignore:
Timestamp:
10/28/2025 12:24:06 PM (10 months ago)
Author:
ellatrix
Message:

Update Gutenberg packages for Beta 2.

Merges commits on the wp/6.9 branch.
See https://github.com/WordPress/gutenberg/commits/wp/6.9/.

Fixes #64158.
Props priethor, ellatrix.

File:
1 edited

Legend:

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

    r61009 r61077  
    66    'title' => 'Accordion',
    77    'category' => 'design',
    8     'description' => 'Displays a group of accordion headings and associated expandable content.',
     8    'description' => 'Displays a foldable layout that groups content in collapsible sections.',
    99    'example' => array(
    1010     
     
    105105    'title' => 'Accordion Heading',
    106106    'category' => 'design',
    107     'description' => 'Displays an accordion heading.',
     107    'description' => 'Toggles the accordion panel.',
    108108    'parent' => array(
    109109      'core/accordion-item'
     
    204204    'title' => 'Accordion Item',
    205205    'category' => 'design',
    206     'description' => 'Displays a section of content in an accordion, including a heading and expandable content.',
     206    'description' => 'Wraps the heading and panel in one unit.',
    207207    'parent' => array(
    208208      'core/accordion'
     
    272272    'title' => 'Accordion Panel',
    273273    'category' => 'design',
    274     'description' => 'Displays an accordion panel.',
     274    'description' => 'Contains the hidden or revealed content beneath the heading.',
    275275    'parent' => array(
    276276      'core/accordion-item'
     
    29222922    'attributes' => array(
    29232923      'label' => array(
    2924         'type' => 'string'
     2924        'type' => 'string',
     2925        'role' => 'content'
    29252926      )
    29262927    ),
     
    50125013    'title' => 'Date',
    50135014    'category' => 'theme',
    5014     'description' => 'Display the publish date for an entry such as a post or page.',
     5015    'description' => 'Display a custom date.',
    50155016    'textdomain' => 'default',
    50165017    'attributes' => array(
Note: See TracChangeset for help on using the changeset viewer.