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 / notification-feed / block.json

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

185 lines 5.3 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/notification-feed",
5 "version": "1.0.0",
6 "title": "Notification Feed",
7 "category": "bkbg-blog",
8 "icon": "bell",
9 "description": "Styled activity or notification feed with icon badges, titles, descriptions, timestamps, and read/unread states. Great for changelogs, activity logs, and social feeds.",
10 "keywords": [
11 "notification",
12 "feed",
13 "activity",
14 "log",
15 "alert",
16 "inbox",
17 "timeline"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-notification-feed-editor",
21 "style": "bkbg-notification-feed-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Recent Activity"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "layout": {
39 "type": "string",
40 "default": "card"
41 },
42 "showTimestamp": {
43 "type": "boolean",
44 "default": true
45 },
46 "showDividers": {
47 "type": "boolean",
48 "default": true
49 },
50 "markUnreadBold": {
51 "type": "boolean",
52 "default": true
53 },
54 "maxWidth": {
55 "type": "number",
56 "default": 600
57 },
58 "itemPad": {
59 "type": "number",
60 "default": 16
61 },
62 "iconSize": {
63 "type": "number",
64 "default": 42
65 },
66 "titleFontSize": {
67 "type": "number",
68 "default": 15
69 },
70 "bodyFontSize": {
71 "type": "number",
72 "default": 13
73 },
74 "timeFontSize": {
75 "type": "number",
76 "default": 11
77 },
78 "fontWeight": {
79 "type": "number",
80 "default": 600
81 },
82 "bodyFontWeight": {
83 "type": "number",
84 "default": 400
85 },
86 "titleTypo": {
87 "type": "object",
88 "default": {}
89 },
90 "bodyTypo": {
91 "type": "object",
92 "default": {}
93 },
94 "bgColor": {
95 "type": "string",
96 "default": "#ffffff"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#111827"
101 },
102 "bodyColor": {
103 "type": "string",
104 "default": "#4b5563"
105 },
106 "timeColor": {
107 "type": "string",
108 "default": "#9ca3af"
109 },
110 "dividerColor": {
111 "type": "string",
112 "default": "#f3f4f6"
113 },
114 "unreadDotColor": {
115 "type": "string",
116 "default": "#4f46e5"
117 },
118 "cardBorder": {
119 "type": "string",
120 "default": "#e5e7eb"
121 },
122 "notifications": {
123 "type": "array",
124 "default": [
125 {
126 "icon": "🚀",
127 "iconType": "custom-char",
128 "iconDashicon": "",
129 "iconImageUrl": "",
130 "iconBg": "#ede9fe",
131 "title": "New release deployed",
132 "body": "Version 2.4.0 is now live with performance improvements.",
133 "time": "2 min ago",
134 "unread": true
135 },
136 {
137 "icon": "💬",
138 "iconType": "custom-char",
139 "iconDashicon": "",
140 "iconImageUrl": "",
141 "iconBg": "#dbeafe",
142 "title": "New comment on your post",
143 "body": "Alex left a comment: \"Great write-up, really helpful!\"",
144 "time": "14 min ago",
145 "unread": true
146 },
147 {
148 "icon": "�
149 ",
150 "iconType": "custom-char",
151 "iconDashicon": "",
152 "iconImageUrl": "",
153 "iconBg": "#dcfce7",
154 "title": "Task completed",
155 "body": "\"Redesign dashboard\" was marked as done by Maria.",
156 "time": "1 hr ago",
157 "unread": false
158 },
159 {
160 "icon": "⚠️",
161 "iconType": "custom-char",
162 "iconDashicon": "",
163 "iconImageUrl": "",
164 "iconBg": "#fef9c3",
165 "title": "Storage limit approaching",
166 "body": "You have used 82% of your 5 GB storage quota.",
167 "time": "3 hrs ago",
168 "unread": false
169 },
170 {
171 "icon": "👤",
172 "iconType": "custom-char",
173 "iconDashicon": "",
174 "iconImageUrl": "",
175 "iconBg": "#fce7f3",
176 "title": "New team member joined",
177 "body": "Sam Patel has been added to the Engineering workspace.",
178 "time": "Yesterday",
179 "unread": false
180 }
181 ]
182 }
183 }
184 }
185