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 / reading-time / block.json

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

85 lines 2.0 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/reading-time",
5 "title": "Reading Time",
6 "category": "bkbg-blog",
7 "icon": "clock",
8 "description": "Displays estimated reading time calculated from the post content. Fully customizable styling.",
9 "keywords": [
10 "reading time",
11 "read",
12 "estimate",
13 "minutes",
14 "clock"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-reading-time-editor",
18 "editorStyle": "bkbg-reading-time-style",
19 "style": "bkbg-reading-time-style",
20 "viewScript": "bkbg-reading-time-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "wpm": {
32 "type": "number",
33 "default": 200
34 },
35 "prefix": {
36 "type": "string",
37 "default": ""
38 },
39 "suffix": {
40 "type": "string",
41 "default": "min read"
42 },
43 "showIcon": {
44 "type": "boolean",
45 "default": true
46 },
47 "icon": {
48 "type": "string",
49 "default": "clock"
50 },
51 "displayStyle": {
52 "type": "string",
53 "default": "badge"
54 },
55 "textAlign": {
56 "type": "string",
57 "default": "left"
58 },
59 "badgeTypo": {
60 "type": "object",
61 "default": {}
62 },
63 "bgColor": {
64 "type": "string",
65 "default": "#ede9fc"
66 },
67 "textColor": {
68 "type": "string",
69 "default": "#6c3fb5"
70 },
71 "borderRadius": {
72 "type": "number",
73 "default": 40
74 },
75 "paddingX": {
76 "type": "number",
77 "default": 14
78 },
79 "paddingY": {
80 "type": "number",
81 "default": 6
82 }
83 }
84 }
85