PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / trunk
bBlocks – Essential Gutenberg Blocks & Patterns Collection vtrunk
2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 106 releases
b-blocks / build / image-gallery / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection trunk, at build/image-gallery/block.json

99 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "b-blocks/image-gallery",
4 "title": "Image Gallery",
5 "description": "Display Multiple Images as Gallery.",
6 "category": "bBlocks",
7 "keywords": [
8 "images",
9 "photos",
10 "gallery"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": ""
17 },
18 "images": {
19 "type": "array",
20 "default": []
21 },
22 "columns": {
23 "type": "object",
24 "default": {
25 "desktop": 3,
26 "tablet": 2,
27 "mobile": 1
28 }
29 },
30 "imgPadding": {
31 "type": "object",
32 "default": {}
33 },
34 "imgBorder": {
35 "type": "object",
36 "default": {}
37 },
38 "imgShadow": {
39 "type": "object",
40 "default": {}
41 },
42 "isPreview": {
43 "type": "boolean",
44 "default": true
45 },
46 "isCap": {
47 "type": "boolean",
48 "default": true
49 },
50 "capAlign": {
51 "type": "string",
52 "default": "left"
53 },
54 "capColor": {
55 "type": "string",
56 "default": "#333"
57 },
58 "capTitleTypo": {
59 "type": "object",
60 "default": {
61 "fontSize": {
62 "desktop": "18px",
63 "tablet": "17px",
64 "mobile": "16px"
65 }
66 }
67 },
68 "capDescTypo": {
69 "type": "object",
70 "default": {
71 "fontSize": {
72 "desktop": "15px"
73 }
74 }
75 }
76 },
77 "supports": {
78 "align": [
79 "wide",
80 "full"
81 ],
82 "html": false
83 },
84 "example": {
85 "attributes": {
86 "preview": true
87 }
88 },
89 "editorScript": "file:../index.js",
90 "style": [
91 "file:./view.css",
92 "fancybox"
93 ],
94 "render": "file:./render.php",
95 "viewScript": [
96 "file:./view.js",
97 "fancybox"
98 ]
99 }