| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/quote-collection", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Quote Collection", |
| 7 |
"category": "bkbg-blog", |
| 8 |
"description": "Curated editorial multi-quote grid — inspirational quotes, expert opinions, notable sayings.", |
| 9 |
"keywords": [ |
| 10 |
"quotes", |
| 11 |
"collection", |
| 12 |
"grid", |
| 13 |
"sayings", |
| 14 |
"editorial", |
| 15 |
"inspiration" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-quote-collection-editor", |
| 19 |
"style": "bkbg-quote-collection-style", |
| 20 |
"viewScript": "bkbg-quote-collection-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"align": [ |
| 24 |
"wide", |
| 25 |
"full" |
| 26 |
] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"sectionTitle": { |
| 30 |
"type": "string", |
| 31 |
"default": "" |
| 32 |
}, |
| 33 |
"sectionSubtitle": { |
| 34 |
"type": "string", |
| 35 |
"default": "" |
| 36 |
}, |
| 37 |
"showHeader": { |
| 38 |
"type": "boolean", |
| 39 |
"default": false |
| 40 |
}, |
| 41 |
"quotes": { |
| 42 |
"type": "array", |
| 43 |
"items": { |
| 44 |
"type": "object", |
| 45 |
"properties": { |
| 46 |
"text": { |
| 47 |
"type": "string" |
| 48 |
}, |
| 49 |
"author": { |
| 50 |
"type": "string" |
| 51 |
}, |
| 52 |
"role": { |
| 53 |
"type": "string" |
| 54 |
}, |
| 55 |
"source": { |
| 56 |
"type": "string" |
| 57 |
} |
| 58 |
} |
| 59 |
}, |
| 60 |
"default": [ |
| 61 |
{ |
| 62 |
"text": "", |
| 63 |
"author": "", |
| 64 |
"role": "", |
| 65 |
"source": "" |
| 66 |
} |
| 67 |
] |
| 68 |
}, |
| 69 |
"layout": { |
| 70 |
"type": "string", |
| 71 |
"default": "grid" |
| 72 |
}, |
| 73 |
"columns": { |
| 74 |
"type": "integer", |
| 75 |
"default": 2 |
| 76 |
}, |
| 77 |
"quoteStyle": { |
| 78 |
"type": "string", |
| 79 |
"default": "classic" |
| 80 |
}, |
| 81 |
"showQuoteMark": { |
| 82 |
"type": "boolean", |
| 83 |
"default": true |
| 84 |
}, |
| 85 |
"bgColor": { |
| 86 |
"type": "string", |
| 87 |
"default": "#f8f9fa" |
| 88 |
}, |
| 89 |
"cardBg": { |
| 90 |
"type": "string", |
| 91 |
"default": "#ffffff" |
| 92 |
}, |
| 93 |
"cardBorder": { |
| 94 |
"type": "string", |
| 95 |
"default": "#e9ecef" |
| 96 |
}, |
| 97 |
"accentColor": { |
| 98 |
"type": "string", |
| 99 |
"default": "#6366f1" |
| 100 |
}, |
| 101 |
"quoteMarkColor": { |
| 102 |
"type": "string", |
| 103 |
"default": "#e0e7ff" |
| 104 |
}, |
| 105 |
"quoteColor": { |
| 106 |
"type": "string", |
| 107 |
"default": "#111827" |
| 108 |
}, |
| 109 |
"authorColor": { |
| 110 |
"type": "string", |
| 111 |
"default": "#374151" |
| 112 |
}, |
| 113 |
"roleColor": { |
| 114 |
"type": "string", |
| 115 |
"default": "#9ca3af" |
| 116 |
}, |
| 117 |
"titleColor": { |
| 118 |
"type": "string", |
| 119 |
"default": "#111827" |
| 120 |
}, |
| 121 |
"subtitleColor": { |
| 122 |
"type": "string", |
| 123 |
"default": "#6b7280" |
| 124 |
}, |
| 125 |
"gap": { |
| 126 |
"type": "integer", |
| 127 |
"default": 20 |
| 128 |
}, |
| 129 |
"cardRadius": { |
| 130 |
"type": "integer", |
| 131 |
"default": 12 |
| 132 |
}, |
| 133 |
"paddingTop": { |
| 134 |
"type": "integer", |
| 135 |
"default": 0 |
| 136 |
}, |
| 137 |
"paddingBottom": { |
| 138 |
"type": "integer", |
| 139 |
"default": 0 |
| 140 |
}, |
| 141 |
"quoteTypo": { |
| 142 |
"type": "object", |
| 143 |
"default": {} |
| 144 |
}, |
| 145 |
"authorTypo": { |
| 146 |
"type": "object", |
| 147 |
"default": {} |
| 148 |
} |
| 149 |
} |
| 150 |
} |
| 151 |
|