PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / split-testimonial / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/split-testimonial/block.json

148 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/split-testimonial",
5 "version": "1.0.0",
6 "title": "Split Testimonial",
7 "category": "bkbg-marketing",
8 "icon": "format-quote",
9 "description": "Hero-size featured testimonial with large pull-quote, author photo, name, title, company, star rating, and full accent/background controls.",
10 "keywords": [
11 "testimonial",
12 "quote",
13 "review",
14 "split",
15 "featured"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-split-testimonial-editor",
19 "style": "bkbg-split-testimonial-style",
20 "viewScript": "bkbg-split-testimonial-frontend",
21 "attributes": {
22 "quote": {
23 "type": "string",
24 "default": "This product completely transformed how our team operates. We saved over 20 hours a week from the very first month."
25 },
26 "authorName": {
27 "type": "string",
28 "default": "Sarah Mitchell"
29 },
30 "authorTitle": {
31 "type": "string",
32 "default": "VP of Operations"
33 },
34 "authorCompany": {
35 "type": "string",
36 "default": "Acme Corp"
37 },
38 "authorImageUrl": {
39 "type": "string",
40 "default": ""
41 },
42 "authorImageId": {
43 "type": "number",
44 "default": 0
45 },
46 "authorAlt": {
47 "type": "string",
48 "default": ""
49 },
50 "stars": {
51 "type": "number",
52 "default": 5
53 },
54 "showStars": {
55 "type": "boolean",
56 "default": true
57 },
58 "showCompany": {
59 "type": "boolean",
60 "default": true
61 },
62 "showQuoteMark": {
63 "type": "boolean",
64 "default": true
65 },
66 "layout": {
67 "type": "string",
68 "default": "left-photo"
69 },
70 "avatarShape": {
71 "type": "string",
72 "default": "circle"
73 },
74 "bgColor": {
75 "type": "string",
76 "default": "#1e1b4b"
77 },
78 "accentBg": {
79 "type": "string",
80 "default": "#7c3aed"
81 },
82 "quoteColor": {
83 "type": "string",
84 "default": "#ffffff"
85 },
86 "authorColor": {
87 "type": "string",
88 "default": "#c4b5fd"
89 },
90 "starColor": {
91 "type": "string",
92 "default": "#fbbf24"
93 },
94 "quoteMarkColor": {
95 "type": "string",
96 "default": "rgba(124,58,237,.45)"
97 },
98 "quoteSize": {
99 "type": "number",
100 "default": 28
101 },
102 "authorSize": {
103 "type": "number",
104 "default": 16
105 },
106 "avatarSize": {
107 "type": "number",
108 "default": 120
109 },
110 "paddingTop": {
111 "type": "number",
112 "default": 80
113 },
114 "paddingBottom": {
115 "type": "number",
116 "default": 80
117 },
118 "maxWidth": {
119 "type": "number",
120 "default": 1100
121 },
122 "quoteFontWeight": {
123 "type": "number",
124 "default": 400
125 },
126 "quoteTypo": {
127 "type": "object",
128 "default": {}
129 },
130 "nameTypo": {
131 "type": "object",
132 "default": {}
133 },
134 "metaTypo": {
135 "type": "object",
136 "default": {}
137 }
138 },
139 "supports": {
140 "html": false,
141 "anchor": true,
142 "className": true,
143 "align": [
144 "wide",
145 "full"
146 ]
147 }
148 }