| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "core/paragraph", |
| 5 |
"title": "Paragraph", |
| 6 |
"category": "text", |
| 7 |
"description": "Start with the basic building block of all narrative.", |
| 8 |
"keywords": [ "text" ], |
| 9 |
"textdomain": "default", |
| 10 |
"attributes": { |
| 11 |
"content": { |
| 12 |
"type": "rich-text", |
| 13 |
"source": "rich-text", |
| 14 |
"selector": "p", |
| 15 |
"role": "content" |
| 16 |
}, |
| 17 |
"dropCap": { |
| 18 |
"type": "boolean", |
| 19 |
"default": false |
| 20 |
}, |
| 21 |
"placeholder": { |
| 22 |
"type": "string" |
| 23 |
}, |
| 24 |
"direction": { |
| 25 |
"type": "string", |
| 26 |
"enum": [ "ltr", "rtl" ] |
| 27 |
} |
| 28 |
}, |
| 29 |
"supports": { |
| 30 |
"align": [ "wide", "full" ], |
| 31 |
"splitting": true, |
| 32 |
"anchor": true, |
| 33 |
"className": false, |
| 34 |
"__experimentalBorder": { |
| 35 |
"color": true, |
| 36 |
"radius": true, |
| 37 |
"style": true, |
| 38 |
"width": true |
| 39 |
}, |
| 40 |
"color": { |
| 41 |
"gradients": true, |
| 42 |
"link": true, |
| 43 |
"__experimentalDefaultControls": { |
| 44 |
"background": true, |
| 45 |
"text": true |
| 46 |
} |
| 47 |
}, |
| 48 |
"spacing": { |
| 49 |
"margin": true, |
| 50 |
"padding": true, |
| 51 |
"__experimentalDefaultControls": { |
| 52 |
"margin": false, |
| 53 |
"padding": false |
| 54 |
} |
| 55 |
}, |
| 56 |
"typography": { |
| 57 |
"fontSize": true, |
| 58 |
"lineHeight": true, |
| 59 |
"textAlign": true, |
| 60 |
"textColumns": true, |
| 61 |
"textIndent": true, |
| 62 |
"__experimentalFontFamily": true, |
| 63 |
"__experimentalTextDecoration": true, |
| 64 |
"__experimentalFontStyle": true, |
| 65 |
"__experimentalFontWeight": true, |
| 66 |
"__experimentalLetterSpacing": true, |
| 67 |
"__experimentalTextTransform": true, |
| 68 |
"__experimentalWritingMode": true, |
| 69 |
"fitText": true, |
| 70 |
"__experimentalDefaultControls": { |
| 71 |
"fontSize": true |
| 72 |
} |
| 73 |
}, |
| 74 |
"__experimentalSelector": "p", |
| 75 |
"__unstablePasteTextInline": true, |
| 76 |
"interactivity": { |
| 77 |
"clientNavigation": true |
| 78 |
} |
| 79 |
}, |
| 80 |
"selectors": { |
| 81 |
"root": "p", |
| 82 |
"typography": { |
| 83 |
"textIndent": ".wp-block-paragraph + .wp-block-paragraph" |
| 84 |
} |
| 85 |
}, |
| 86 |
"editorStyle": "wp-block-paragraph-editor", |
| 87 |
"style": "wp-block-paragraph" |
| 88 |
} |
| 89 |
|