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 / gallery-showcase / block.json

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

177 lines 4.3 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/gallery-showcase",
5 "version": "1.0.0",
6 "title": "Gallery Showcase",
7 "category": "bkbg-media",
8 "icon": "format-gallery",
9 "description": "Featured image with a clickable thumbnail strip — click any thumbnail to swap the main large view. Perfect for portfolio details, product image galleries, and case study illustrations.",
10 "keywords": [
11 "gallery",
12 "showcase",
13 "thumbnails",
14 "product",
15 "portfolio",
16 "viewer"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-gallery-showcase-editor",
20 "style": "bkbg-gallery-showcase-style",
21 "viewScript": "bkbg-gallery-showcase-frontend",
22 "attributes": {
23 "images": {
24 "type": "array",
25 "default": [],
26 "items": {
27 "type": "object"
28 }
29 },
30 "thumbnailPosition": {
31 "type": "string",
32 "default": "bottom"
33 },
34 "thumbnailsVisible": {
35 "type": "number",
36 "default": 5
37 },
38 "thumbnailGap": {
39 "type": "number",
40 "default": 8
41 },
42 "thumbnailRadius": {
43 "type": "number",
44 "default": 8
45 },
46 "mainRadius": {
47 "type": "number",
48 "default": 16
49 },
50 "mainAspect": {
51 "type": "string",
52 "default": "4/3"
53 },
54 "mainObjectFit": {
55 "type": "string",
56 "default": "cover"
57 },
58 "showCaption": {
59 "type": "boolean",
60 "default": true
61 },
62 "captionPosition": {
63 "type": "string",
64 "default": "overlay"
65 },
66 "showCounter": {
67 "type": "boolean",
68 "default": true
69 },
70 "enableLightbox": {
71 "type": "boolean",
72 "default": true
73 },
74 "lightboxOverlayBg": {
75 "type": "string",
76 "default": "rgba(0,0,0,0.92)"
77 },
78 "enableKeyboard": {
79 "type": "boolean",
80 "default": true
81 },
82 "showArrows": {
83 "type": "boolean",
84 "default": true
85 },
86 "arrowStyle": {
87 "type": "string",
88 "default": "circle"
89 },
90 "showZoom": {
91 "type": "boolean",
92 "default": false
93 },
94 "transitionType": {
95 "type": "string",
96 "default": "fade"
97 },
98 "transitionDuration": {
99 "type": "number",
100 "default": 320
101 },
102 "mainShadow": {
103 "type": "boolean",
104 "default": true
105 },
106 "captionBg": {
107 "type": "string",
108 "default": "rgba(0,0,0,0.55)"
109 },
110 "captionColor": {
111 "type": "string",
112 "default": "#ffffff"
113 },
114 "captionSize": {
115 "type": "number",
116 "default": 14
117 },
118 "typoCaption": {
119 "type": "object",
120 "default": {}
121 },
122 "typoCounter": {
123 "type": "object",
124 "default": {}
125 },
126 "activeBorderColor": {
127 "type": "string",
128 "default": "#6c3fb5"
129 },
130 "activeBorderWidth": {
131 "type": "number",
132 "default": 3
133 },
134 "arrowBg": {
135 "type": "string",
136 "default": "rgba(0,0,0,0.5)"
137 },
138 "arrowColor": {
139 "type": "string",
140 "default": "#ffffff"
141 },
142 "counterBg": {
143 "type": "string",
144 "default": "rgba(0,0,0,0.45)"
145 },
146 "counterColor": {
147 "type": "string",
148 "default": "#ffffff"
149 },
150 "bgColor": {
151 "type": "string",
152 "default": ""
153 },
154 "paddingTop": {
155 "type": "number",
156 "default": 40
157 },
158 "paddingBottom": {
159 "type": "number",
160 "default": 40
161 }
162 },
163 "supports": {
164 "html": false,
165 "anchor": true,
166 "className": true,
167 "align": [
168 "wide",
169 "full"
170 ],
171 "spacing": {
172 "margin": true,
173 "padding": true
174 }
175 }
176 }
177