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 / text-case-converter / block.json

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

168 lines 4.1 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/text-case-converter",
5 "version": "1.0.0",
6 "title": "Text Case Converter",
7 "category": "bkbg-dev",
8 "icon": "editor-textcolor",
9 "description": "Live text transformer: paste any text and instantly get it in multiple case formats with one-click copy.",
10 "keywords": [
11 "text",
12 "case",
13 "convert",
14 "uppercase",
15 "camelcase",
16 "transform"
17 ],
18 "supports": {
19 "html": false,
20 "align": [
21 "wide",
22 "full"
23 ]
24 },
25 "textdomain": "blockenberg",
26 "editorScript": "bkbg-text-case-converter-editor",
27 "style": "bkbg-text-case-converter-style",
28 "viewScript": "bkbg-text-case-converter-frontend",
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Text Case Converter"
33 },
34 "subtitle": {
35 "type": "string",
36 "default": "Paste your text below and copy any case instantly"
37 },
38 "showTitle": {
39 "type": "boolean",
40 "default": true
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "placeholder": {
47 "type": "string",
48 "default": "Paste or type your text here…"
49 },
50 "showUppercase": {
51 "type": "boolean",
52 "default": true
53 },
54 "showLowercase": {
55 "type": "boolean",
56 "default": true
57 },
58 "showTitleCase": {
59 "type": "boolean",
60 "default": true
61 },
62 "showSentenceCase": {
63 "type": "boolean",
64 "default": true
65 },
66 "showCamelCase": {
67 "type": "boolean",
68 "default": true
69 },
70 "showPascalCase": {
71 "type": "boolean",
72 "default": true
73 },
74 "showSnakeCase": {
75 "type": "boolean",
76 "default": true
77 },
78 "showKebabCase": {
79 "type": "boolean",
80 "default": true
81 },
82 "showCopyButtons": {
83 "type": "boolean",
84 "default": true
85 },
86 "accentColor": {
87 "type": "string",
88 "default": "#6c3fb5"
89 },
90 "cardBg": {
91 "type": "string",
92 "default": ""
93 },
94 "inputBg": {
95 "type": "string",
96 "default": "#f9fafb"
97 },
98 "inputBorder": {
99 "type": "string",
100 "default": "#e5e7eb"
101 },
102 "rowBg": {
103 "type": "string",
104 "default": "#f9fafb"
105 },
106 "rowBorder": {
107 "type": "string",
108 "default": "#e5e7eb"
109 },
110 "rowLabelColor": {
111 "type": "string",
112 "default": "#6b7280"
113 },
114 "rowValueColor": {
115 "type": "string",
116 "default": "#1f2937"
117 },
118 "copyBg": {
119 "type": "string",
120 "default": "#6c3fb5"
121 },
122 "copyColor": {
123 "type": "string",
124 "default": "#ffffff"
125 },
126 "titleColor": {
127 "type": "string",
128 "default": ""
129 },
130 "subtitleColor": {
131 "type": "string",
132 "default": ""
133 },
134 "sectionBg": {
135 "type": "string",
136 "default": ""
137 },
138 "titleTypo": {
139 "type": "object",
140 "default": {}
141 },
142 "subtitleTypo": {
143 "type": "object",
144 "default": {}
145 },
146 "cardRadius": {
147 "type": "number",
148 "default": 16
149 },
150 "rowRadius": {
151 "type": "number",
152 "default": 10
153 },
154 "maxWidth": {
155 "type": "number",
156 "default": 640
157 },
158 "paddingTop": {
159 "type": "number",
160 "default": 60
161 },
162 "paddingBottom": {
163 "type": "number",
164 "default": 60
165 }
166 }
167 }
168