Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference-guides/core-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Displays a section of content in an accordion, including a heading and expandabl
- **Category:** design
- **Parent:** core/accordion
- **Allowed Blocks:** core/accordion-heading, core/accordion-panel
- **Supports:** color (background, gradients, text), contentRole, interactivity, shadow, spacing (blockGap, margin), typography (fontSize, lineHeight)
- **Supports:** color (background, gradients, text), contentRole, interactivity, shadow, spacing (blockGap, margin), typography (fontSize, lineHeight), ~~html~~
- **Attributes:** openByDefault

## Accordion Panel
Expand All @@ -46,7 +46,7 @@ Displays an accordion panel. ([Source](https://github.com/WordPress/gutenberg/tr
- **Name:** core/accordion-panel
- **Category:** design
- **Parent:** core/accordion-item
- **Supports:** color (background, gradients, text), contentRole, interactivity, shadow, spacing (blockGap, padding), typography (fontSize, lineHeight), ~~blockVisibility~~
- **Supports:** color (background, gradients, text), contentRole, interactivity, shadow, spacing (blockGap, padding), typography (fontSize, lineHeight), ~~blockVisibility~~, ~~html~~
- **Attributes:** allowedBlocks, isSelected, openByDefault, templateLock

## Archives
Expand Down
1 change: 1 addition & 0 deletions packages/block-library/src/accordion-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"parent": [ "core/accordion" ],
"allowedBlocks": [ "core/accordion-heading", "core/accordion-panel" ],
"supports": {
"html": false,
"color": {
"background": true,
"gradients": true
Expand Down
1 change: 1 addition & 0 deletions packages/block-library/src/accordion-panel/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"description": "Displays an accordion panel.",
"parent": [ "core/accordion-item" ],
"supports": {
"html": false,
"color": {
"background": true,
"gradients": true
Expand Down
Loading