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

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

159 lines 3.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/image-gallery",
5 "version": "1.0.0",
6 "title": "Image Gallery",
7 "category": "bkbg-media",
8 "icon": "format-gallery",
9 "description": "Responsive image gallery with grid/masonry layouts, lightbox, and hover effects.",
10 "keywords": [
11 "gallery",
12 "images",
13 "photos",
14 "lightbox",
15 "masonry",
16 "grid"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-image-gallery-editor",
20 "style": "bkbg-image-gallery-style",
21 "viewScript": "bkbg-image-gallery-frontend",
22 "attributes": {
23 "images": {
24 "type": "array",
25 "default": [],
26 "items": {
27 "type": "object"
28 }
29 },
30 "layout": {
31 "type": "string",
32 "default": "grid"
33 },
34 "columns": {
35 "type": "number",
36 "default": 3
37 },
38 "columnsMobile": {
39 "type": "number",
40 "default": 1
41 },
42 "columnsTablet": {
43 "type": "number",
44 "default": 2
45 },
46 "gap": {
47 "type": "number",
48 "default": 12
49 },
50 "aspectRatio": {
51 "type": "string",
52 "default": "square"
53 },
54 "borderRadius": {
55 "type": "number",
56 "default": 8
57 },
58 "lightbox": {
59 "type": "boolean",
60 "default": true
61 },
62 "showCaptions": {
63 "type": "boolean",
64 "default": false
65 },
66 "captionStyle": {
67 "type": "string",
68 "default": "overlay"
69 },
70 "hoverEffect": {
71 "type": "string",
72 "default": "zoom"
73 },
74 "hoverOverlayBg": {
75 "type": "string",
76 "default": "rgba(0,0,0,0.45)"
77 },
78 "overlayIconColor": {
79 "type": "string",
80 "default": "#ffffff"
81 },
82 "captionBg": {
83 "type": "string",
84 "default": "rgba(0,0,0,0.55)"
85 },
86 "captionColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "bgColor": {
91 "type": "string",
92 "default": ""
93 },
94 "filterEnabled": {
95 "type": "boolean",
96 "default": false
97 },
98 "filterBgColor": {
99 "type": "string",
100 "default": ""
101 },
102 "filterActiveColor": {
103 "type": "string",
104 "default": "#2563eb"
105 },
106 "filterTextColor": {
107 "type": "string",
108 "default": ""
109 },
110 "filterBorderRadius": {
111 "type": "number",
112 "default": 6
113 },
114 "captionFontSize": {
115 "type": "number",
116 "default": 12
117 },
118 "captionFontWeight": {
119 "type": "number",
120 "default": 400
121 },
122 "captionLineHeight": {
123 "type": "number",
124 "default": 1.4
125 },
126 "filterFontSize": {
127 "type": "number",
128 "default": 13
129 },
130 "filterFontWeight": {
131 "type": "number",
132 "default": 500
133 },
134 "filterLineHeight": {
135 "type": "number",
136 "default": 1.4
137 },
138 "captionTypo": {
139 "type": "object",
140 "default": {}
141 },
142 "filterTypo": {
143 "type": "object",
144 "default": {}
145 }
146 },
147 "supports": {
148 "html": false,
149 "align": [
150 "wide",
151 "full"
152 ],
153 "spacing": {
154 "margin": true,
155 "padding": true
156 }
157 }
158 }
159