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

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

135 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/image-box",
4 "title": "Image Box",
5 "category": "bkbg-media",
6 "description": "A clickable image card with overlay title, hover effects, and a link.",
7 "keywords": [
8 "image",
9 "card",
10 "category",
11 "overlay",
12 "hover"
13 ],
14 "textdomain": "blockenberg",
15 "editorScript": "bkbg-image-box-editor",
16 "editorStyle": "bkbg-image-box-style",
17 "style": "bkbg-image-box-style",
18 "viewScript": "bkbg-image-box-frontend",
19 "supports": {
20 "html": false,
21 "anchor": true,
22 "className": true,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "imageUrl": {
30 "type": "string",
31 "default": ""
32 },
33 "imageId": {
34 "type": "number",
35 "default": 0
36 },
37 "imageAlt": {
38 "type": "string",
39 "default": ""
40 },
41 "title": {
42 "type": "string",
43 "default": "Category Name"
44 },
45 "subtitle": {
46 "type": "string",
47 "default": ""
48 },
49 "linkUrl": {
50 "type": "string",
51 "default": ""
52 },
53 "linkTarget": {
54 "type": "string",
55 "default": "_self"
56 },
57 "imageRatio": {
58 "type": "string",
59 "default": "75"
60 },
61 "hoverEffect": {
62 "type": "string",
63 "default": "zoom"
64 },
65 "overlay": {
66 "type": "boolean",
67 "default": true
68 },
69 "overlayColor": {
70 "type": "string",
71 "default": "rgba(0,0,0,0.4)"
72 },
73 "overlayHoverOpacity": {
74 "type": "number",
75 "default": 60
76 },
77 "titlePosition": {
78 "type": "string",
79 "default": "over-bottom"
80 },
81 "titleSize": {
82 "type": "number",
83 "default": 20
84 },
85 "titleWeight": {
86 "type": "string",
87 "default": "700"
88 },
89 "titleLineHeight": {
90 "type": "number",
91 "default": 1.3
92 },
93 "titleColor": {
94 "type": "string",
95 "default": "#ffffff"
96 },
97 "subtitleSize": {
98 "type": "number",
99 "default": 14
100 },
101 "subtitleFontWeight": {
102 "type": "string",
103 "default": "400"
104 },
105 "subtitleLineHeight": {
106 "type": "number",
107 "default": 1.5
108 },
109 "titleTypo": {
110 "type": "object",
111 "default": {}
112 },
113 "subtitleTypo": {
114 "type": "object",
115 "default": {}
116 },
117 "subtitleColor": {
118 "type": "string",
119 "default": "rgba(255,255,255,0.85)"
120 },
121 "borderRadius": {
122 "type": "number",
123 "default": 12
124 },
125 "shadow": {
126 "type": "string",
127 "default": "md"
128 },
129 "width": {
130 "type": "number",
131 "default": 100
132 }
133 }
134 }
135