PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / card-stack / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/card-stack/block.json

196 lines 5.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/card-stack",
5 "title": "Card Stack",
6 "category": "bkbg-effects",
7 "icon": "layout",
8 "description": "A fanned or stacked pile of cards with hover-spread interaction. Perfect for testimonials, case studies, or feature highlights.",
9 "keywords": [
10 "cards",
11 "stack",
12 "fan",
13 "testimonial",
14 "swipe",
15 "stacked",
16 "deck",
17 "pile"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-card-stack-editor",
21 "editorStyle": "bkbg-card-stack-style",
22 "style": "bkbg-card-stack-style",
23 "viewScript": "bkbg-card-stack-frontend",
24 "supports": {
25 "html": false,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "cards": {
33 "type": "array",
34 "default": [
35 {
36 "id": "c1",
37 "title": "10× faster deployments",
38 "desc": "We cut our release cycle from two weeks to a single afternoon. The workflow automation alone is worth every penny.",
39 "quote": true,
40 "author": "Sarah K.",
41 "role": "CTO, Verve Labs",
42 "avatarUrl": "",
43 "avatarId": 0,
44 "imageUrl": "",
45 "imageId": 0,
46 "imageAlt": "",
47 "tag": "Case Study",
48 "tagColor": "#ffffff",
49 "tagBg": "#6c3fb5",
50 "accentColor": "#6c3fb5",
51 "bgColor": "#ffffff",
52 "textColor": "#111827"
53 },
54 {
55 "id": "c2",
56 "title": "Revenue up 40% in Q1",
57 "desc": "The new checkout flow reduced friction and our conversion rate jumped immediately after go-live.",
58 "quote": true,
59 "author": "Marco T.",
60 "role": "Head of Growth, Helios",
61 "avatarUrl": "",
62 "avatarId": 0,
63 "imageUrl": "",
64 "imageId": 0,
65 "imageAlt": "",
66 "tag": "Customer Story",
67 "tagColor": "#ffffff",
68 "tagBg": "#3b82f6",
69 "accentColor": "#3b82f6",
70 "bgColor": "#f0f9ff",
71 "textColor": "#1e3a5f"
72 },
73 {
74 "id": "c3",
75 "title": "Team onboarded in one day",
76 "desc": "No training sessions needed. The intuitive interface meant everyone was productive from day one.",
77 "quote": true,
78 "author": "Priya M.",
79 "role": "Engineering Director, Flux",
80 "avatarUrl": "",
81 "avatarId": 0,
82 "imageUrl": "",
83 "imageId": 0,
84 "imageAlt": "",
85 "tag": "Testimonial",
86 "tagColor": "#ffffff",
87 "tagBg": "#10b981",
88 "accentColor": "#10b981",
89 "bgColor": "#f0fdf4",
90 "textColor": "#14532d"
91 }
92 ]
93 },
94 "stackStyle": {
95 "type": "string",
96 "default": "fan"
97 },
98 "cardWidth": {
99 "type": "number",
100 "default": 380
101 },
102 "cardMinHeight": {
103 "type": "number",
104 "default": 260
105 },
106 "cardRadius": {
107 "type": "number",
108 "default": 16
109 },
110 "rotationSpread": {
111 "type": "number",
112 "default": 6
113 },
114 "offsetX": {
115 "type": "number",
116 "default": 10
117 },
118 "offsetY": {
119 "type": "number",
120 "default": 6
121 },
122 "maxVisibleBehind": {
123 "type": "number",
124 "default": 2
125 },
126 "showTag": {
127 "type": "boolean",
128 "default": true
129 },
130 "showAuthor": {
131 "type": "boolean",
132 "default": true
133 },
134 "showQuoteMark": {
135 "type": "boolean",
136 "default": true
137 },
138 "showNavDots": {
139 "type": "boolean",
140 "default": true
141 },
142 "animateIn": {
143 "type": "boolean",
144 "default": true
145 },
146 "titleSize": {
147 "type": "number",
148 "default": 20
149 },
150 "descSize": {
151 "type": "number",
152 "default": 15
153 },
154 "tagSize": {
155 "type": "number",
156 "default": 11
157 },
158 "authorSize": {
159 "type": "number",
160 "default": 13
161 },
162 "cardPadding": {
163 "type": "number",
164 "default": 32
165 },
166 "globalCardBg": {
167 "type": "string",
168 "default": "#ffffff"
169 },
170 "globalTextColor": {
171 "type": "string",
172 "default": "#111827"
173 },
174 "bgColor": {
175 "type": "string",
176 "default": ""
177 },
178 "paddingTop": {
179 "type": "number",
180 "default": 48
181 },
182 "paddingBottom": {
183 "type": "number",
184 "default": 48
185 },
186 "typoTitle": {
187 "type": "object",
188 "default": {}
189 },
190 "typoDesc": {
191 "type": "object",
192 "default": {}
193 }
194 }
195 }
196