| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/message-thread", |
| 4 |
"title": "Message Thread", |
| 5 |
"category": "bkbg-content", |
| 6 |
"icon": "format-chat", |
| 7 |
"description": "Styled message conversation thread with chat bubbles, avatars, timestamps, and sender labels.", |
| 8 |
"textdomain": "blockenberg", |
| 9 |
"editorScript": "bkbg-message-thread-editor", |
| 10 |
"style": "bkbg-message-thread-style", |
| 11 |
"attributes": { |
| 12 |
"title": { |
| 13 |
"type": "string", |
| 14 |
"default": "" |
| 15 |
}, |
| 16 |
"showTitle": { |
| 17 |
"type": "boolean", |
| 18 |
"default": false |
| 19 |
}, |
| 20 |
"showTimestamps": { |
| 21 |
"type": "boolean", |
| 22 |
"default": true |
| 23 |
}, |
| 24 |
"showAvatars": { |
| 25 |
"type": "boolean", |
| 26 |
"default": true |
| 27 |
}, |
| 28 |
"showSenderNames": { |
| 29 |
"type": "boolean", |
| 30 |
"default": true |
| 31 |
}, |
| 32 |
"bubbleRadius": { |
| 33 |
"type": "number", |
| 34 |
"default": 18 |
| 35 |
}, |
| 36 |
"maxWidth": { |
| 37 |
"type": "number", |
| 38 |
"default": 680 |
| 39 |
}, |
| 40 |
"fontSize": { |
| 41 |
"type": "number", |
| 42 |
"default": 14 |
| 43 |
}, |
| 44 |
"bgColor": { |
| 45 |
"type": "string", |
| 46 |
"default": "#f1f5f9" |
| 47 |
}, |
| 48 |
"titleColor": { |
| 49 |
"type": "string", |
| 50 |
"default": "#111827" |
| 51 |
}, |
| 52 |
"selfBg": { |
| 53 |
"type": "string", |
| 54 |
"default": "#6366f1" |
| 55 |
}, |
| 56 |
"selfText": { |
| 57 |
"type": "string", |
| 58 |
"default": "#ffffff" |
| 59 |
}, |
| 60 |
"otherBg": { |
| 61 |
"type": "string", |
| 62 |
"default": "#ffffff" |
| 63 |
}, |
| 64 |
"otherText": { |
| 65 |
"type": "string", |
| 66 |
"default": "#111827" |
| 67 |
}, |
| 68 |
"tsColor": { |
| 69 |
"type": "string", |
| 70 |
"default": "#94a3b8" |
| 71 |
}, |
| 72 |
"messages": { |
| 73 |
"type": "array", |
| 74 |
"default": [ |
| 75 |
{ |
| 76 |
"sender": "Alice", |
| 77 |
"side": "other", |
| 78 |
"text": "Hey! Did you get a chance to review the new design mockups?", |
| 79 |
"time": "10:02 AM", |
| 80 |
"avatar": "A", |
| 81 |
"avatarColor": "#10b981" |
| 82 |
}, |
| 83 |
{ |
| 84 |
"sender": "You", |
| 85 |
"side": "self", |
| 86 |
"text": "Just finished! I love the new dashboard layout. The analytics page looks amazing.", |
| 87 |
"time": "10:04 AM", |
| 88 |
"avatar": "Y", |
| 89 |
"avatarColor": "#6366f1" |
| 90 |
}, |
| 91 |
{ |
| 92 |
"sender": "Alice", |
| 93 |
"side": "other", |
| 94 |
"text": "Glad you liked it 🎉 Do you think we should go with the dark or light theme as default?", |
| 95 |
"time": "10:05 AM", |
| 96 |
"avatar": "A", |
| 97 |
"avatarColor": "#10b981" |
| 98 |
}, |
| 99 |
{ |
| 100 |
"sender": "You", |
| 101 |
"side": "self", |
| 102 |
"text": "I'd lean towards light as default, but offer a toggle for dark mode. More accessible that way.", |
| 103 |
"time": "10:07 AM", |
| 104 |
"avatar": "Y", |
| 105 |
"avatarColor": "#6366f1" |
| 106 |
}, |
| 107 |
{ |
| 108 |
"sender": "Alice", |
| 109 |
"side": "other", |
| 110 |
"text": "Perfect. I'll update the prototype and share it with the team by EOD.", |
| 111 |
"time": "10:08 AM", |
| 112 |
"avatar": "A", |
| 113 |
"avatarColor": "#10b981" |
| 114 |
} |
| 115 |
] |
| 116 |
}, |
| 117 |
"titleSize": { |
| 118 |
"type": "number", |
| 119 |
"default": 16 |
| 120 |
}, |
| 121 |
"titleTypo": { |
| 122 |
"type": "object", |
| 123 |
"default": {} |
| 124 |
}, |
| 125 |
"bodyTypo": { |
| 126 |
"type": "object", |
| 127 |
"default": {} |
| 128 |
}, |
| 129 |
"metaTypo": { |
| 130 |
"type": "object", |
| 131 |
"default": {} |
| 132 |
} |
| 133 |
} |
| 134 |
} |
| 135 |
|