| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/pullquote-pro", |
| 5 |
"title": "Pullquote Pro", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "format-quote", |
| 8 |
"description": "Eye-catching quotation with large typography, decorative marks, author avatar, and alignment options.", |
| 9 |
"keywords": [ |
| 10 |
"pullquote", |
| 11 |
"quote", |
| 12 |
"citation", |
| 13 |
"blockquote", |
| 14 |
"magazine", |
| 15 |
"author" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-pullquote-pro-editor", |
| 19 |
"editorStyle": "bkbg-pullquote-pro-style", |
| 20 |
"style": "bkbg-pullquote-pro-style", |
| 21 |
"viewScript": "bkbg-pullquote-pro-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"quoteText": { |
| 33 |
"type": "string", |
| 34 |
"default": "Design is not just what it looks like and feels like. Design is how it works." |
| 35 |
}, |
| 36 |
"authorName": { |
| 37 |
"type": "string", |
| 38 |
"default": "Steve Jobs" |
| 39 |
}, |
| 40 |
"authorRole": { |
| 41 |
"type": "string", |
| 42 |
"default": "Co-founder, Apple" |
| 43 |
}, |
| 44 |
"showAvatar": { |
| 45 |
"type": "boolean", |
| 46 |
"default": false |
| 47 |
}, |
| 48 |
"avatarUrl": { |
| 49 |
"type": "string", |
| 50 |
"default": "" |
| 51 |
}, |
| 52 |
"avatarId": { |
| 53 |
"type": "number", |
| 54 |
"default": 0 |
| 55 |
}, |
| 56 |
"avatarSize": { |
| 57 |
"type": "number", |
| 58 |
"default": 56 |
| 59 |
}, |
| 60 |
"quoteMarkStyle": { |
| 61 |
"type": "string", |
| 62 |
"default": "curved" |
| 63 |
}, |
| 64 |
"layout": { |
| 65 |
"type": "string", |
| 66 |
"default": "center" |
| 67 |
}, |
| 68 |
"showAccent": { |
| 69 |
"type": "boolean", |
| 70 |
"default": true |
| 71 |
}, |
| 72 |
"accentPosition": { |
| 73 |
"type": "string", |
| 74 |
"default": "left" |
| 75 |
}, |
| 76 |
"accentColor": { |
| 77 |
"type": "string", |
| 78 |
"default": "#6c3fb5" |
| 79 |
}, |
| 80 |
"accentWidth": { |
| 81 |
"type": "number", |
| 82 |
"default": 4 |
| 83 |
}, |
| 84 |
"bgColor": { |
| 85 |
"type": "string", |
| 86 |
"default": "" |
| 87 |
}, |
| 88 |
"textColor": { |
| 89 |
"type": "string", |
| 90 |
"default": "#222222" |
| 91 |
}, |
| 92 |
"markColor": { |
| 93 |
"type": "string", |
| 94 |
"default": "#d1c4e9" |
| 95 |
}, |
| 96 |
"quoteTypo": { |
| 97 |
"type": "object", |
| 98 |
"default": {} |
| 99 |
}, |
| 100 |
"authorTypo": { |
| 101 |
"type": "object", |
| 102 |
"default": {} |
| 103 |
}, |
| 104 |
"preset": { |
| 105 |
"type": "string", |
| 106 |
"default": "editorial" |
| 107 |
}, |
| 108 |
"borderRadius": { |
| 109 |
"type": "number", |
| 110 |
"default": 8 |
| 111 |
}, |
| 112 |
"paddingV": { |
| 113 |
"type": "number", |
| 114 |
"default": 40 |
| 115 |
}, |
| 116 |
"paddingH": { |
| 117 |
"type": "number", |
| 118 |
"default": 40 |
| 119 |
}, |
| 120 |
"shadow": { |
| 121 |
"type": "boolean", |
| 122 |
"default": false |
| 123 |
} |
| 124 |
} |
| 125 |
} |
| 126 |
|