Make WordPress Core


Ignore:
Timestamp:
01/28/2021 02:01:50 AM (4 years ago)
Author:
noisysocks
Message:

Editor: Update @wordpress npm packages

Update @wordpress npm packages to the latest published versions. This means that
the block editor includes functionality that exists in Gutenberg 9.8.

See #52334.
Props isabel_brison.

File:
1 edited

Legend:

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

    r49473 r50048  
    3131        "lineHeight": true,
    3232        "__experimentalSelector": {
    33             "core/heading/h1": "h1",
    34             "core/heading/h2": "h2",
    35             "core/heading/h3": "h3",
    36             "core/heading/h4": "h4",
    37             "core/heading/h5": "h5",
    38             "core/heading/h6": "h6"
     33            "core/heading/h1": {
     34                "selector": "h1",
     35                "title": "h1",
     36                "attributes": {
     37                    "level": 1
     38                }
     39            },
     40            "core/heading/h2": {
     41                "selector": "h2",
     42                "title": "h2",
     43                "attributes": {
     44                    "level": 2
     45                }
     46            },
     47            "core/heading/h3": {
     48                "selector": "h3",
     49                "title": "h3",
     50                "attributes": {
     51                    "level": 3
     52                }
     53            },
     54            "core/heading/h4": {
     55                "selector": "h4",
     56                "title": "h4",
     57                "attributes": {
     58                    "level": 4
     59                }
     60            },
     61            "core/heading/h5": {
     62                "selector": "h5",
     63                "title": "h5",
     64                "attributes": {
     65                    "level": 5
     66                }
     67            },
     68            "core/heading/h6": {
     69                "selector": "h6",
     70                "title": "h6",
     71                "attributes": {
     72                    "level": 6
     73                }
     74            }
    3975        },
    4076        "__unstablePasteTextInline": true
    41     }
     77    },
     78    "editorStyle": "wp-block-heading-editor",
     79    "style": "wp-block-heading"
    4280}
Note: See TracChangeset for help on using the changeset viewer.