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 / lorem-ipsum-generator / block.json

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

145 lines 3.6 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/lorem-ipsum-generator",
5 "title": "Lorem Ipsum Generator",
6 "category": "bkbg-dev",
7 "icon": "editor-paragraph",
8 "description": "Generate placeholder Lorem Ipsum text by paragraphs, sentences, words, or lists — with optional HTML output and one-click copy.",
9 "keywords": [
10 "lorem ipsum",
11 "placeholder",
12 "dummy text",
13 "generator",
14 "writing",
15 "content"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-lorem-ipsum-generator-editor",
19 "style": "bkbg-lorem-ipsum-generator-style",
20 "viewScript": "bkbg-lorem-ipsum-generator-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Lorem Ipsum Generator"
34 },
35 "showTitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "subtitle": {
40 "type": "string",
41 "default": "Generate professional placeholder text instantly."
42 },
43 "showSubtitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "defaultMode": {
48 "type": "string",
49 "default": "paragraphs"
50 },
51 "defaultCount": {
52 "type": "number",
53 "default": 3
54 },
55 "startWithLorem": {
56 "type": "boolean",
57 "default": true
58 },
59 "showHtmlToggle": {
60 "type": "boolean",
61 "default": true
62 },
63 "showStats": {
64 "type": "boolean",
65 "default": true
66 },
67 "outputHeight": {
68 "type": "number",
69 "default": 260
70 },
71 "accentColor": {
72 "type": "string",
73 "default": "#6c3fb5"
74 },
75 "sectionBg": {
76 "type": "string",
77 "default": "#f5f3ff"
78 },
79 "cardBg": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "outputBg": {
84 "type": "string",
85 "default": "#fafafa"
86 },
87 "outputBorder": {
88 "type": "string",
89 "default": "#e5e7eb"
90 },
91 "outputTextColor": {
92 "type": "string",
93 "default": "#374151"
94 },
95 "titleColor": {
96 "type": "string",
97 "default": "#1e1b4b"
98 },
99 "subtitleColor": {
100 "type": "string",
101 "default": "#6b7280"
102 },
103 "labelColor": {
104 "type": "string",
105 "default": "#374151"
106 },
107 "tabBg": {
108 "type": "string",
109 "default": "#f3f4f6"
110 },
111 "cardRadius": {
112 "type": "number",
113 "default": 16
114 },
115 "outputRadius": {
116 "type": "number",
117 "default": 10
118 },
119 "maxWidth": {
120 "type": "number",
121 "default": 720
122 },
123 "paddingTop": {
124 "type": "number",
125 "default": 60
126 },
127 "paddingBottom": {
128 "type": "number",
129 "default": 60
130 },
131 "titleTypo": {
132 "type": "object",
133 "default": {}
134 },
135 "subtitleTypo": {
136 "type": "object",
137 "default": {}
138 },
139 "outputTypo": {
140 "type": "object",
141 "default": {}
142 }
143 }
144 }
145