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

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

127 lines 2.1 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/sidenote",
5 "title": "Sidenote",
6 "description": "Floated editorial annotation or margin note — pull text aside left or right with full styling.",
7 "category": "bkbg-blog",
8 "icon": "editor-insertmore",
9 "keywords": [
10 "sidenote",
11 "annotation",
12 "aside",
13 "margin",
14 "note",
15 "editorial",
16 "pull"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-sidenote-editor",
20 "style": "bkbg-sidenote-style",
21 "viewScript": "bkbg-sidenote-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "text": {
31 "type": "string",
32 "default": ""
33 },
34 "label": {
35 "type": "string",
36 "default": "Note"
37 },
38 "showLabel": {
39 "type": "boolean",
40 "default": true
41 },
42 "icon": {
43 "type": "string",
44 "default": "📝"
45 },
46 "iconType": {
47 "type": "string",
48 "default": "custom-char"
49 },
50 "iconDashicon": {
51 "type": "string",
52 "default": "edit"
53 },
54 "iconImageUrl": {
55 "type": "string",
56 "default": ""
57 },
58 "showIcon": {
59 "type": "boolean",
60 "default": true
61 },
62 "position": {
63 "type": "string",
64 "default": "right"
65 },
66 "style": {
67 "type": "string",
68 "default": "bordered"
69 },
70 "width": {
71 "type": "number",
72 "default": 260
73 },
74 "bgColor": {
75 "type": "string",
76 "default": "#fffbeb"
77 },
78 "borderColor": {
79 "type": "string",
80 "default": "#fbbf24"
81 },
82 "accentColor": {
83 "type": "string",
84 "default": "#d97706"
85 },
86 "labelColor": {
87 "type": "string",
88 "default": "#92400e"
89 },
90 "textColor": {
91 "type": "string",
92 "default": "#78350f"
93 },
94 "iconColor": {
95 "type": "string",
96 "default": "#d97706"
97 },
98 "fontSize": {
99 "type": "number",
100 "default": 13
101 },
102 "borderRadius": {
103 "type": "number",
104 "default": 6
105 },
106 "paddingTop": {
107 "type": "number",
108 "default": 0
109 },
110 "paddingBottom": {
111 "type": "number",
112 "default": 0
113 },
114 "fontWeight": {
115 "type": "number",
116 "default": 600
117 },
118 "labelTypo": {
119 "type": "object",
120 "default": {}
121 },
122 "textTypo": {
123 "type": "object",
124 "default": {}
125 }
126 }
127 }