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 / update-notice / block.json

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

119 lines 2.8 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/update-notice",
5 "title": "Update Notice",
6 "description": "Editorial article update and correction notice with date, summary, and change history.",
7 "category": "bkbg-blog",
8 "icon": "clock",
9 "keywords": [
10 "update",
11 "notice",
12 "correction",
13 "revised",
14 "changelog",
15 "editorial",
16 "last updated"
17 ],
18 "editorScript": "bkbg-update-notice-editor",
19 "style": "bkbg-update-notice-style",
20 "viewScript": "bkbg-update-notice-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "type": {
30 "type": "string",
31 "default": "updated"
32 },
33 "primaryDate": {
34 "type": "string",
35 "default": ""
36 },
37 "primarySummary": {
38 "type": "string",
39 "default": ""
40 },
41 "originalPublishDate": {
42 "type": "string",
43 "default": ""
44 },
45 "showOriginalDate": {
46 "type": "boolean",
47 "default": false
48 },
49 "history": {
50 "type": "array",
51 "default": []
52 },
53 "showHistory": {
54 "type": "boolean",
55 "default": false
56 },
57 "style": {
58 "type": "string",
59 "default": "banner"
60 },
61 "bgColor": {
62 "type": "string",
63 "default": "#eff6ff"
64 },
65 "borderColor": {
66 "type": "string",
67 "default": "#bfdbfe"
68 },
69 "accentColor": {
70 "type": "string",
71 "default": "#2563eb"
72 },
73 "iconColor": {
74 "type": "string",
75 "default": "#2563eb"
76 },
77 "textColor": {
78 "type": "string",
79 "default": "#1e3a8a"
80 },
81 "labelColor": {
82 "type": "string",
83 "default": "#1d4ed8"
84 },
85 "dateColor": {
86 "type": "string",
87 "default": "#3b82f6"
88 },
89 "historyBg": {
90 "type": "string",
91 "default": "#dbeafe"
92 },
93 "historyTextColor": {
94 "type": "string",
95 "default": "#1e40af"
96 },
97 "borderRadius": {
98 "type": "number",
99 "default": 6
100 },
101 "paddingTop": {
102 "type": "number",
103 "default": 0
104 },
105 "paddingBottom": {
106 "type": "number",
107 "default": 0
108 },
109 "labelTypo": {
110 "type": "object",
111 "default": {}
112 },
113 "summaryTypo": {
114 "type": "object",
115 "default": {}
116 }
117 }
118 }
119