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 / terminal-mockup / block.json

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

160 lines 4.1 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/terminal-mockup",
5 "title": "Terminal Mockup",
6 "category": "bkbg-dev",
7 "icon": "editor-code",
8 "description": "A realistic terminal / CLI window with typewriter animation, coloured prompt, command & output lines. Great for dev-tool landing pages.",
9 "keywords": [
10 "terminal",
11 "cli",
12 "command",
13 "code",
14 "mockup",
15 "shell",
16 "bash",
17 "console",
18 "typewriter"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-terminal-mockup-editor",
22 "editorStyle": "bkbg-terminal-mockup-style",
23 "style": "bkbg-terminal-mockup-style",
24 "viewScript": "bkbg-terminal-mockup-frontend",
25 "supports": {
26 "html": false,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "lines": {
34 "type": "array",
35 "default": [
36 {
37 "id": "l1",
38 "type": "command",
39 "text": "npm install blockenberg",
40 "prompt": true
41 },
42 {
43 "id": "l2",
44 "type": "output",
45 "text": "added 142 packages in 2.1s",
46 "prompt": false
47 },
48 {
49 "id": "l3",
50 "type": "blank",
51 "text": "",
52 "prompt": false
53 },
54 {
55 "id": "l4",
56 "type": "command",
57 "text": "npm run dev",
58 "prompt": true
59 },
60 {
61 "id": "l5",
62 "type": "output",
63 "text": "✔ Build complete — 1.3 kB gzipped",
64 "prompt": false
65 },
66 {
67 "id": "l6",
68 "type": "comment",
69 "text": "# Ready to ship 🚀",
70 "prompt": false
71 }
72 ]
73 },
74 "theme": {
75 "type": "string",
76 "default": "dark"
77 },
78 "showChrome": {
79 "type": "boolean",
80 "default": true
81 },
82 "windowTitle": {
83 "type": "string",
84 "default": "bash"
85 },
86 "showLineNumbers": {
87 "type": "boolean",
88 "default": false
89 },
90 "typewriterMode": {
91 "type": "boolean",
92 "default": true
93 },
94 "typewriterSpeed": {
95 "type": "number",
96 "default": 40
97 },
98 "promptSymbol": {
99 "type": "string",
100 "default": "$"
101 },
102 "promptHost": {
103 "type": "string",
104 "default": "user@server"
105 },
106 "codeTypo": {
107 "type": "object",
108 "default": {}
109 },
110 "maxWidth": {
111 "type": "number",
112 "default": 700
113 },
114 "borderRadius": {
115 "type": "number",
116 "default": 10
117 },
118 "windowPadding": {
119 "type": "number",
120 "default": 20
121 },
122 "showCursor": {
123 "type": "boolean",
124 "default": true
125 },
126 "bgColor": {
127 "type": "string",
128 "default": ""
129 },
130 "termBg": {
131 "type": "string",
132 "default": ""
133 },
134 "commandColor": {
135 "type": "string",
136 "default": ""
137 },
138 "outputColor": {
139 "type": "string",
140 "default": ""
141 },
142 "commentColor": {
143 "type": "string",
144 "default": ""
145 },
146 "promptColor": {
147 "type": "string",
148 "default": ""
149 },
150 "paddingTop": {
151 "type": "number",
152 "default": 32
153 },
154 "paddingBottom": {
155 "type": "number",
156 "default": 32
157 }
158 }
159 }
160