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 / spotlight-card / block.json

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

181 lines 4.3 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/spotlight-card",
4 "title": "Spotlight Card",
5 "category": "bkbg-effects",
6 "icon": "star-filled",
7 "description": "Card with a radial gradient spotlight that follows the mouse cursor on hover.",
8 "keywords": [
9 "spotlight",
10 "card",
11 "hover",
12 "effect",
13 "glow",
14 "interactive"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-spotlight-card-editor",
18 "editorStyle": "bkbg-spotlight-card-style",
19 "style": "bkbg-spotlight-card-style",
20 "viewScript": "bkbg-spotlight-card-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true
25 },
26 "attributes": {
27 "heading": {
28 "type": "string",
29 "default": "Spotlight Card"
30 },
31 "text": {
32 "type": "string",
33 "default": "Hover over this card to see the spotlight effect follow your cursor."
34 },
35 "tag": {
36 "type": "string",
37 "default": "h3"
38 },
39 "icon": {
40 "type": "string",
41 "default": "star-filled"
42 },
43 "showIcon": {
44 "type": "boolean",
45 "default": true
46 },
47 "iconSize": {
48 "type": "number",
49 "default": 40
50 },
51 "iconColor": {
52 "type": "string",
53 "default": "#6c3fb5"
54 },
55 "imageUrl": {
56 "type": "string",
57 "default": ""
58 },
59 "imageId": {
60 "type": "number",
61 "default": 0
62 },
63 "showImage": {
64 "type": "boolean",
65 "default": false
66 },
67 "imageHeight": {
68 "type": "number",
69 "default": 200
70 },
71 "badgeText": {
72 "type": "string",
73 "default": "NEW"
74 },
75 "showBadge": {
76 "type": "boolean",
77 "default": false
78 },
79 "badgeBg": {
80 "type": "string",
81 "default": "#6c3fb5"
82 },
83 "badgeColor": {
84 "type": "string",
85 "default": "#ffffff"
86 },
87 "linkLabel": {
88 "type": "string",
89 "default": "Learn more →"
90 },
91 "linkUrl": {
92 "type": "string",
93 "default": "#"
94 },
95 "showLink": {
96 "type": "boolean",
97 "default": true
98 },
99 "linkColor": {
100 "type": "string",
101 "default": "#6c3fb5"
102 },
103 "spotlightColor": {
104 "type": "string",
105 "default": "#8b5cf6"
106 },
107 "spotlightOpacity": {
108 "type": "number",
109 "default": 15
110 },
111 "spotlightSize": {
112 "type": "number",
113 "default": 350
114 },
115 "cardBg": {
116 "type": "string",
117 "default": "#1e1b2e"
118 },
119 "cardBorder": {
120 "type": "string",
121 "default": "#2d2a4a"
122 },
123 "cardRadius": {
124 "type": "number",
125 "default": 16
126 },
127 "cardPadding": {
128 "type": "number",
129 "default": 28
130 },
131 "headingColor": {
132 "type": "string",
133 "default": "#f1f5f9"
134 },
135 "textColor": {
136 "type": "string",
137 "default": "#94a3b8"
138 },
139 "headingSize": {
140 "type": "number",
141 "default": 20
142 },
143 "headingFontWeight": {
144 "type": "string",
145 "default": "700"
146 },
147 "headingLineHeight": {
148 "type": "number",
149 "default": 1.3
150 },
151 "textSize": {
152 "type": "number",
153 "default": 15
154 },
155 "textLineHeight": {
156 "type": "number",
157 "default": 1.6
158 },
159 "showBorder": {
160 "type": "boolean",
161 "default": true
162 },
163 "borderWidth": {
164 "type": "number",
165 "default": 1
166 },
167 "headingTypo": {
168 "type": "object",
169 "default": {}
170 },
171 "textTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "linkTypo": {
176 "type": "object",
177 "default": {}
178 }
179 }
180 }
181