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 / reaction-bar / block.json

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

173 lines 4.3 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/reaction-bar",
5 "version": "1.0.0",
6 "title": "Reaction Bar",
7 "category": "bkbg-interactive",
8 "icon": "heart",
9 "description": "Display emoji reaction counters (GitHub / Notion / Slack style) to show community sentiment on any content.",
10 "keywords": [
11 "reaction",
12 "emoji",
13 "like",
14 "vote",
15 "poll",
16 "sentiment",
17 "github",
18 "feedback",
19 "upvote"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-reaction-bar-editor",
23 "editorStyle": "bkbg-reaction-bar-style",
24 "style": "bkbg-reaction-bar-style",
25 "viewScript": "bkbg-reaction-bar-frontend",
26 "supports": {
27 "html": false,
28 "anchor": true,
29 "className": true,
30 "align": [
31 "wide",
32 "full"
33 ]
34 },
35 "attributes": {
36 "title": {
37 "type": "string",
38 "default": "Was this helpful?"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "layout": {
45 "type": "string",
46 "default": "buttons"
47 },
48 "showCount": {
49 "type": "boolean",
50 "default": true
51 },
52 "showLabel": {
53 "type": "boolean",
54 "default": true
55 },
56 "totalLabel": {
57 "type": "string",
58 "default": "reactions"
59 },
60 "showTotal": {
61 "type": "boolean",
62 "default": true
63 },
64 "animate": {
65 "type": "boolean",
66 "default": true
67 },
68 "reactions": {
69 "type": "array",
70 "default": [
71 {
72 "emoji": "\ud83d\udc4d",
73 "label": "Helpful",
74 "count": 47
75 },
76 {
77 "emoji": "\u2764\ufe0f",
78 "label": "Love it",
79 "count": 31
80 },
81 {
82 "emoji": "\ud83c\udf89",
83 "label": "Celebrate",
84 "count": 18
85 },
86 {
87 "emoji": "\ud83d\udca1",
88 "label": "Insightful",
89 "count": 22
90 },
91 {
92 "emoji": "\ud83e\udd14",
93 "label": "Thoughtful",
94 "count": 9
95 },
96 {
97 "emoji": "\ud83d\ude80",
98 "label": "Ship it",
99 "count": 14
100 }
101 ]
102 },
103 "emojiSize": {
104 "type": "number",
105 "default": 22
106 },
107 "borderRadius": {
108 "type": "number",
109 "default": 16
110 },
111 "itemRadius": {
112 "type": "number",
113 "default": 100
114 },
115 "bgColor": {
116 "type": "string",
117 "default": "#ffffff"
118 },
119 "borderColor": {
120 "type": "string",
121 "default": "#e5e7eb"
122 },
123 "titleColor": {
124 "type": "string",
125 "default": "#111827"
126 },
127 "itemBg": {
128 "type": "string",
129 "default": "#f9fafb"
130 },
131 "itemBorderColor": {
132 "type": "string",
133 "default": "#e5e7eb"
134 },
135 "itemHoverBg": {
136 "type": "string",
137 "default": "#f3f4f6"
138 },
139 "countColor": {
140 "type": "string",
141 "default": "#374151"
142 },
143 "labelColor": {
144 "type": "string",
145 "default": "#6b7280"
146 },
147 "totalColor": {
148 "type": "string",
149 "default": "#9ca3af"
150 },
151 "activeItemBg": {
152 "type": "string",
153 "default": "#eff6ff"
154 },
155 "activeItemBorder": {
156 "type": "string",
157 "default": "#bfdbfe"
158 },
159 "activeCountColor": {
160 "type": "string",
161 "default": "#1d4ed8"
162 },
163 "titleTypo": {
164 "type": "object",
165 "default": {}
166 },
167 "countTypo": {
168 "type": "object",
169 "default": {}
170 }
171 }
172 }
173