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 / perspective-device / block.json

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

94 lines 2.2 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/perspective-device",
5 "title": "Perspective Device",
6 "category": "bkbg-effects",
7 "icon": "desktop",
8 "description": "CSS device mockup (browser, phone, tablet, laptop) with screenshot inside — perfect for hero sections.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-perspective-device-editor",
11 "style": "bkbg-perspective-device-style",
12 "attributes": {
13 "screenshotUrl": {
14 "type": "string",
15 "default": ""
16 },
17 "screenshotId": {
18 "type": "number",
19 "default": 0
20 },
21 "screenshotAlt": {
22 "type": "string",
23 "default": "App screenshot"
24 },
25 "deviceType": {
26 "type": "string",
27 "default": "browser"
28 },
29 "perspective": {
30 "type": "string",
31 "default": "flat"
32 },
33 "deviceTheme": {
34 "type": "string",
35 "default": "light"
36 },
37 "showReflection": {
38 "type": "boolean",
39 "default": false
40 },
41 "showShadow": {
42 "type": "boolean",
43 "default": true
44 },
45 "maxWidth": {
46 "type": "number",
47 "default": 860
48 },
49 "align": {
50 "type": "string",
51 "default": "center"
52 },
53 "paddingTop": {
54 "type": "number",
55 "default": 48
56 },
57 "paddingBottom": {
58 "type": "number",
59 "default": 48
60 },
61 "sectionBg": {
62 "type": "string",
63 "default": ""
64 },
65 "frameColor": {
66 "type": "string",
67 "default": ""
68 },
69 "screenBg": {
70 "type": "string",
71 "default": "#f1f5f9"
72 },
73 "shadowColor": {
74 "type": "string",
75 "default": ""
76 }
77 },
78 "supports": {
79 "html": false,
80 "align": [
81 "wide",
82 "full"
83 ]
84 },
85 "keywords": [
86 "device",
87 "mockup",
88 "browser",
89 "phone",
90 "screenshot",
91 "hero"
92 ]
93 }
94