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

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

95 lines 2.2 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/callout",
5 "title": "Callout",
6 "category": "bkbg-content",
7 "icon": "megaphone",
8 "description": "Highlighted panel for tips, warnings or success messages with icon, title and dismissible option.",
9 "keywords": [
10 "callout",
11 "tip",
12 "warning",
13 "info",
14 "note",
15 "panel",
16 "highlight"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-callout-editor",
20 "editorStyle": "bkbg-callout-style",
21 "style": "bkbg-callout-style",
22 "viewScript": "bkbg-callout-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "calloutType": {
34 "type": "string",
35 "default": "info"
36 },
37 "showIcon": {
38 "type": "boolean",
39 "default": true
40 },
41 "iconSvg": {
42 "type": "string",
43 "default": ""
44 },
45 "title": {
46 "type": "string",
47 "default": "Did you know?"
48 },
49 "body": {
50 "type": "string",
51 "default": "This is an important tip or note for your readers."
52 },
53 "borderStyle": {
54 "type": "string",
55 "default": "left"
56 },
57 "dismissible": {
58 "type": "boolean",
59 "default": false
60 },
61 "bgColor": {
62 "type": "string",
63 "default": ""
64 },
65 "borderColor": {
66 "type": "string",
67 "default": ""
68 },
69 "textColor": {
70 "type": "string",
71 "default": ""
72 },
73 "paddingV": {
74 "type": "number",
75 "default": 16
76 },
77 "paddingH": {
78 "type": "number",
79 "default": 20
80 },
81 "borderRadius": {
82 "type": "number",
83 "default": 6
84 },
85 "typoTitle": {
86 "type": "object",
87 "default": {}
88 },
89 "typoBody": {
90 "type": "object",
91 "default": {}
92 }
93 }
94 }
95