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

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

129 lines 3.7 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/text-columns",
5 "title": "Text Columns",
6 "category": "bkbg-layout",
7 "icon": "columns",
8 "description": "Magazine-style multi-column text layout with drop cap, column rule / divider, pull quote spanning all columns and per-column WYSIWYG editing.",
9 "keywords": [
10 "columns",
11 "text",
12 "magazine",
13 "editorial",
14 "multi-column",
15 "dropcap",
16 "newspaper"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-text-columns-editor",
20 "style": "bkbg-text-columns-style",
21 "viewScript": "bkbg-text-columns-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "columnCount": {
33 "type": "number",
34 "default": 2
35 },
36 "columns": {
37 "type": "array",
38 "default": [
39 {
40 "content": "<p>The first chapter begins here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p><p>Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>"
41 },
42 {
43 "content": "<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem.</p><p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione sequi nesciunt.</p>"
44 }
45 ]
46 },
47 "dropCap": {
48 "type": "boolean",
49 "default": false
50 },
51 "dropCapSize": {
52 "type": "number",
53 "default": 3
54 },
55 "dropCapColor": {
56 "type": "string",
57 "default": "#111827"
58 },
59 "showRule": {
60 "type": "boolean",
61 "default": true
62 },
63 "ruleStyle": {
64 "type": "string",
65 "default": "solid"
66 },
67 "ruleWidth": {
68 "type": "number",
69 "default": 1
70 },
71 "columnGap": {
72 "type": "number",
73 "default": 40
74 },
75 "pullQuote": {
76 "type": "string",
77 "default": ""
78 },
79 "showPullQuote": {
80 "type": "boolean",
81 "default": false
82 },
83 "pullQuotePos": {
84 "type": "string",
85 "default": "between"
86 },
87 "bodyTypo": {
88 "type": "object",
89 "default": {}
90 },
91 "pullQuoteTypo": {
92 "type": "object",
93 "default": {}
94 },
95 "textAlign": {
96 "type": "string",
97 "default": "left"
98 },
99 "paddingTop": {
100 "type": "number",
101 "default": 0
102 },
103 "paddingBottom": {
104 "type": "number",
105 "default": 0
106 },
107 "bgColor": {
108 "type": "string",
109 "default": ""
110 },
111 "textColor": {
112 "type": "string",
113 "default": "#374151"
114 },
115 "ruleColor": {
116 "type": "string",
117 "default": "#d1d5db"
118 },
119 "pullQuoteBorder": {
120 "type": "string",
121 "default": "#6366f1"
122 },
123 "pullQuoteColor": {
124 "type": "string",
125 "default": "#111827"
126 }
127 }
128 }
129