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 / word-counter / block.json

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

209 lines 5.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/word-counter",
5 "title": "Word Counter",
6 "category": "bkbg-dev",
7 "icon": "editor-paragraph",
8 "description": "An interactive word counter tool. Users paste or type text and instantly see word count, character count, sentence count, paragraph count, reading time, and speaking time.",
9 "keywords": [
10 "word",
11 "counter",
12 "character",
13 "text",
14 "reading",
15 "time",
16 "writing",
17 "tool",
18 "count",
19 "analyzer"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-word-counter-editor",
23 "style": "bkbg-word-counter-style",
24 "viewScript": "bkbg-word-counter-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "title": {
36 "type": "string",
37 "default": "Word Counter"
38 },
39 "subtitle": {
40 "type": "string",
41 "default": "Paste or type your text below for an instant analysis."
42 },
43 "showTitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "showSubtitle": {
48 "type": "boolean",
49 "default": true
50 },
51 "placeholder": {
52 "type": "string",
53 "default": "Start typing or paste your text here…"
54 },
55 "defaultText": {
56 "type": "string",
57 "default": ""
58 },
59 "showCharNoSpaces": {
60 "type": "boolean",
61 "default": true
62 },
63 "showSentences": {
64 "type": "boolean",
65 "default": true
66 },
67 "showParagraphs": {
68 "type": "boolean",
69 "default": true
70 },
71 "showReadingTime": {
72 "type": "boolean",
73 "default": true
74 },
75 "showSpeakingTime": {
76 "type": "boolean",
77 "default": true
78 },
79 "showCharLimit": {
80 "type": "boolean",
81 "default": false
82 },
83 "charLimit": {
84 "type": "number",
85 "default": 500
86 },
87 "readingWPM": {
88 "type": "number",
89 "default": 238
90 },
91 "speakingWPM": {
92 "type": "number",
93 "default": 130
94 },
95 "accentColor": {
96 "type": "string",
97 "default": "#6c3fb5"
98 },
99 "cardBg": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "textareaBg": {
104 "type": "string",
105 "default": "#f9fafb"
106 },
107 "textareaBorder": {
108 "type": "string",
109 "default": "#e5e7eb"
110 },
111 "statCardBg": {
112 "type": "string",
113 "default": "#f5f3ff"
114 },
115 "statCardBorder": {
116 "type": "string",
117 "default": "#ede9fe"
118 },
119 "wordCountColor": {
120 "type": "string",
121 "default": "#6c3fb5"
122 },
123 "charCountColor": {
124 "type": "string",
125 "default": "#3b82f6"
126 },
127 "sentenceColor": {
128 "type": "string",
129 "default": "#10b981"
130 },
131 "paragraphColor": {
132 "type": "string",
133 "default": "#f59e0b"
134 },
135 "readingColor": {
136 "type": "string",
137 "default": "#8b5cf6"
138 },
139 "speakingColor": {
140 "type": "string",
141 "default": "#ec4899"
142 },
143 "limitBarFill": {
144 "type": "string",
145 "default": "#6c3fb5"
146 },
147 "limitBarOver": {
148 "type": "string",
149 "default": "#ef4444"
150 },
151 "limitBarBg": {
152 "type": "string",
153 "default": "#e5e7eb"
154 },
155 "titleColor": {
156 "type": "string",
157 "default": "#1e1b4b"
158 },
159 "subtitleColor": {
160 "type": "string",
161 "default": "#6b7280"
162 },
163 "labelColor": {
164 "type": "string",
165 "default": "#374151"
166 },
167 "sectionBg": {
168 "type": "string",
169 "default": ""
170 },
171 "titleSize": {
172 "type": "number",
173 "default": 28
174 },
175 "titleTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "statValueSize": {
180 "type": "number",
181 "default": 36
182 },
183 "textareaHeight": {
184 "type": "number",
185 "default": 200
186 },
187 "cardRadius": {
188 "type": "number",
189 "default": 16
190 },
191 "inputRadius": {
192 "type": "number",
193 "default": 8
194 },
195 "maxWidth": {
196 "type": "number",
197 "default": 680
198 },
199 "paddingTop": {
200 "type": "number",
201 "default": 60
202 },
203 "paddingBottom": {
204 "type": "number",
205 "default": 60
206 }
207 }
208 }
209