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 / chat-bubble / block.json

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

183 lines 4.9 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/chat-bubble",
5 "version": "1.0.0",
6 "title": "Chat Bubbles",
7 "category": "bkbg-content",
8 "icon": "format-chat",
9 "description": "Decorative chat-conversation UI — perfect for testimonials in a messaging format, product walkthroughs, or dialogue-based storytelling.",
10 "keywords": [
11 "chat",
12 "bubble",
13 "message",
14 "testimonial",
15 "conversation",
16 "sms",
17 "dialogue"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-chat-bubble-editor",
21 "editorStyle": "bkbg-chat-bubble-style",
22 "style": "bkbg-chat-bubble-style",
23 "viewScript": "bkbg-chat-bubble-frontend",
24 "supports": {
25 "html": false,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "messages": {
33 "type": "array",
34 "default": [
35 {
36 "id": "m1",
37 "side": "left",
38 "senderName": "Support Team",
39 "senderInitials": "ST",
40 "avatarUrl": "",
41 "avatarId": 0,
42 "text": "Hey! How can we help you today?",
43 "time": "9:41 AM"
44 },
45 {
46 "id": "m2",
47 "side": "right",
48 "senderName": "Customer",
49 "senderInitials": "JD",
50 "avatarUrl": "",
51 "avatarId": 0,
52 "text": "I just signed up — this product is incredible! Got a quick question about billing.",
53 "time": "9:42 AM"
54 },
55 {
56 "id": "m3",
57 "side": "left",
58 "senderName": "Support Team",
59 "senderInitials": "ST",
60 "avatarUrl": "",
61 "avatarId": 0,
62 "text": "Happy to help! Ask away 😊",
63 "time": "9:42 AM"
64 },
65 {
66 "id": "m4",
67 "side": "right",
68 "senderName": "Customer",
69 "senderInitials": "JD",
70 "avatarUrl": "",
71 "avatarId": 0,
72 "text": "Can I switch plans mid-cycle? No hidden fees?",
73 "time": "9:43 AM"
74 }
75 ]
76 },
77 "chatStyle": {
78 "type": "string",
79 "default": "modern"
80 },
81 "maxWidth": {
82 "type": "number",
83 "default": 560
84 },
85 "bubbleRadius": {
86 "type": "number",
87 "default": 18
88 },
89 "avatarSize": {
90 "type": "number",
91 "default": 36
92 },
93 "messageGap": {
94 "type": "number",
95 "default": 12
96 },
97 "showAvatars": {
98 "type": "boolean",
99 "default": true
100 },
101 "showTimestamp": {
102 "type": "boolean",
103 "default": true
104 },
105 "showSenderName": {
106 "type": "boolean",
107 "default": true
108 },
109 "typingIndicator": {
110 "type": "boolean",
111 "default": true
112 },
113 "fontSize": {
114 "type": "number",
115 "default": 14
116 },
117 "leftBubbleBg": {
118 "type": "string",
119 "default": "#f3f4f6"
120 },
121 "leftBubbleColor": {
122 "type": "string",
123 "default": "#111827"
124 },
125 "rightBubbleBg": {
126 "type": "string",
127 "default": "#6c3fb5"
128 },
129 "rightBubbleColor": {
130 "type": "string",
131 "default": "#ffffff"
132 },
133 "avatarBg": {
134 "type": "string",
135 "default": "#e5e7eb"
136 },
137 "timeColor": {
138 "type": "string",
139 "default": "#9ca3af"
140 },
141 "chatBg": {
142 "type": "string",
143 "default": "#ffffff"
144 },
145 "showBorder": {
146 "type": "boolean",
147 "default": true
148 },
149 "borderColor": {
150 "type": "string",
151 "default": "#e5e7eb"
152 },
153 "containerRadius": {
154 "type": "number",
155 "default": 16
156 },
157 "bgColor": {
158 "type": "string",
159 "default": ""
160 },
161 "paddingTop": {
162 "type": "number",
163 "default": 32
164 },
165 "paddingBottom": {
166 "type": "number",
167 "default": 32
168 },
169 "fontWeight": {
170 "type": "string",
171 "default": "400"
172 },
173 "lineHeight": {
174 "type": "number",
175 "default": 1.5
176 },
177 "typoBubble": {
178 "type": "object",
179 "default": {}
180 }
181 }
182 }
183