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

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

82 lines 2.0 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/lightbox-gallery",
5 "title": "Lightbox Gallery",
6 "category": "bkbg-media",
7 "icon": "format-gallery",
8 "description": "Image grid where clicking a thumbnail opens a full-screen lightbox with prev/next navigation.",
9 "keywords": [
10 "gallery",
11 "lightbox",
12 "image",
13 "grid",
14 "photos",
15 "zoom"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-lightbox-gallery-editor",
19 "editorStyle": "bkbg-lightbox-gallery-style",
20 "style": "bkbg-lightbox-gallery-style",
21 "viewScript": "bkbg-lightbox-gallery-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "images": {
33 "type": "array",
34 "default": []
35 },
36 "columns": {
37 "type": "number",
38 "default": 3
39 },
40 "gap": {
41 "type": "number",
42 "default": 12
43 },
44 "imageRatio": {
45 "type": "string",
46 "default": "1/1"
47 },
48 "borderRadius": {
49 "type": "number",
50 "default": 8
51 },
52 "showCaptions": {
53 "type": "boolean",
54 "default": false
55 },
56 "overlayBg": {
57 "type": "string",
58 "default": "rgba(0,0,0,0.92)"
59 },
60 "hoverEffect": {
61 "type": "string",
62 "default": "zoom"
63 },
64 "captionFontSize": {
65 "type": "number",
66 "default": 13
67 },
68 "captionFontWeight": {
69 "type": "number",
70 "default": 400
71 },
72 "captionLineHeight": {
73 "type": "number",
74 "default": 1.4
75 },
76 "captionTypo": {
77 "type": "object",
78 "default": {}
79 }
80 }
81 }
82