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 / dice-roller / block.json

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

155 lines 3.7 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/dice-roller",
5 "title": "Dice Roller",
6 "category": "bkbg-interactive",
7 "icon": "randomize",
8 "description": "Interactive dice roller supporting d4, d6, d8, d10, d12, d20 and d100. Roll multiple dice, see individual results, totals, and past roll history.",
9 "keywords": [
10 "dice",
11 "roller",
12 "random",
13 "d20",
14 "d6",
15 "RPG",
16 "game",
17 "tabletop"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-dice-roller-editor",
21 "style": "bkbg-dice-roller-style",
22 "viewScript": "bkbg-dice-roller-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Dice Roller"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Roll the dice and test your luck"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "showHistory": {
50 "type": "boolean",
51 "default": true
52 },
53 "showTotal": {
54 "type": "boolean",
55 "default": true
56 },
57 "showModifier": {
58 "type": "boolean",
59 "default": true
60 },
61 "defaultDie": {
62 "type": "string",
63 "default": "d6"
64 },
65 "defaultCount": {
66 "type": "number",
67 "default": 2
68 },
69 "historySize": {
70 "type": "number",
71 "default": 8
72 },
73 "accentColor": {
74 "type": "string",
75 "default": "#dc2626"
76 },
77 "dieColor": {
78 "type": "string",
79 "default": "#1e1b4b"
80 },
81 "dieFace": {
82 "type": "string",
83 "default": "#ffffff"
84 },
85 "totalBg": {
86 "type": "string",
87 "default": "#fef2f2"
88 },
89 "totalColor": {
90 "type": "string",
91 "default": "#dc2626"
92 },
93 "histBg": {
94 "type": "string",
95 "default": "#f9fafb"
96 },
97 "sectionBg": {
98 "type": "string",
99 "default": "#fff1f2"
100 },
101 "cardBg": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "titleColor": {
106 "type": "string",
107 "default": "#111827"
108 },
109 "subtitleColor": {
110 "type": "string",
111 "default": "#6b7280"
112 },
113 "labelColor": {
114 "type": "string",
115 "default": "#374151"
116 },
117 "titleFontSize": {
118 "type": "number",
119 "default": 26
120 },
121 "titleFontWeight": {
122 "type": "string",
123 "default": "700"
124 },
125 "titleLineHeight": {
126 "type": "number",
127 "default": 1.2
128 },
129 "subtitleFontSize": {
130 "type": "number",
131 "default": 14
132 },
133 "subtitleFontWeight": {
134 "type": "string",
135 "default": "400"
136 },
137 "subtitleLineHeight": {
138 "type": "number",
139 "default": 1.5
140 },
141 "contentMaxWidth": {
142 "type": "number",
143 "default": 580
144 },
145 "typoTitle": {
146 "type": "object",
147 "default": {}
148 },
149 "typoSubtitle": {
150 "type": "object",
151 "default": {}
152 }
153 }
154 }
155