PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / alert / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/alert/block.json

161 lines 3.8 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/alert",
5 "title": "Alert / Notice",
6 "category": "bkbg-content",
7 "icon": "warning",
8 "description": "Info, success, warning or error notice block with icon, title and body text. Pure CSS — zero JS.",
9 "keywords": [
10 "alert",
11 "notice",
12 "warning",
13 "info",
14 "error",
15 "success",
16 "message",
17 "tip",
18 "callout"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-alert-editor",
22 "editorStyle": "bkbg-alert-style",
23 "style": "bkbg-alert-style",
24 "viewScript": "bkbg-alert-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "alertType": {
36 "type": "string",
37 "default": "info"
38 },
39 "useCustomColors": {
40 "type": "boolean",
41 "default": false
42 },
43 "customBgColor": {
44 "type": "string",
45 "default": "#eff6ff"
46 },
47 "customBorderColor": {
48 "type": "string",
49 "default": "#3b82f6"
50 },
51 "customIconColor": {
52 "type": "string",
53 "default": "#3b82f6"
54 },
55 "customTitleColor": {
56 "type": "string",
57 "default": "#1e3a5f"
58 },
59 "customTextColor": {
60 "type": "string",
61 "default": "#1e40af"
62 },
63 "borderStyle": {
64 "type": "string",
65 "default": "left"
66 },
67 "borderWidth": {
68 "type": "number",
69 "default": 4
70 },
71 "borderRadius": {
72 "type": "number",
73 "default": 8
74 },
75 "showIcon": {
76 "type": "boolean",
77 "default": true
78 },
79 "iconStyle": {
80 "type": "string",
81 "default": "auto"
82 },
83 "iconSize": {
84 "type": "number",
85 "default": 22
86 },
87 "iconPosition": {
88 "type": "string",
89 "default": "top"
90 },
91 "showTitle": {
92 "type": "boolean",
93 "default": true
94 },
95 "titleText": {
96 "type": "string",
97 "default": "Heads up!"
98 },
99 "titleTag": {
100 "type": "string",
101 "default": "p"
102 },
103 "titleSize": {
104 "type": "number",
105 "default": 15
106 },
107 "titleWeight": {
108 "type": "number",
109 "default": 700
110 },
111 "bodyText": {
112 "type": "string",
113 "default": "This is a notice block. You can use it to highlight important information on your page."
114 },
115 "bodySize": {
116 "type": "number",
117 "default": 14
118 },
119 "bodyWeight": {
120 "type": "number",
121 "default": 400
122 },
123 "bodyLH": {
124 "type": "number",
125 "default": 1.6
126 },
127 "paddingTop": {
128 "type": "number",
129 "default": 16
130 },
131 "paddingRight": {
132 "type": "number",
133 "default": 20
134 },
135 "paddingBottom": {
136 "type": "number",
137 "default": 16
138 },
139 "paddingLeft": {
140 "type": "number",
141 "default": 20
142 },
143 "gapIconContent": {
144 "type": "number",
145 "default": 14
146 },
147 "gapTitleBody": {
148 "type": "number",
149 "default": 4
150 },
151 "titleTypo": {
152 "type": "object",
153 "default": {}
154 },
155 "bodyTypo": {
156 "type": "object",
157 "default": {}
158 }
159 }
160 }
161