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

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

128 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/skewed-section",
4 "title": "Skewed Section",
5 "description": "A content section with diagonal/angled top and/or bottom edges created via CSS clip-path. Place any blocks inside.",
6 "category": "bkbg-layout",
7 "icon": "cover-image",
8 "textdomain": "blockenberg",
9 "keywords": [
10 "skewed",
11 "diagonal",
12 "angled",
13 "section",
14 "clip-path",
15 "slant",
16 "hero"
17 ],
18 "supports": {
19 "html": false,
20 "align": [
21 "wide",
22 "full"
23 ]
24 },
25 "attributes": {
26 "skewTop": {
27 "type": "boolean",
28 "default": false
29 },
30 "skewBottom": {
31 "type": "boolean",
32 "default": true
33 },
34 "topAngle": {
35 "type": "number",
36 "default": 4
37 },
38 "bottomAngle": {
39 "type": "number",
40 "default": 4
41 },
42 "topDirection": {
43 "type": "string",
44 "default": "left-low"
45 },
46 "bottomDirection": {
47 "type": "string",
48 "default": "left-high"
49 },
50 "backgroundColor": {
51 "type": "string",
52 "default": "#1e40af"
53 },
54 "useGradient": {
55 "type": "boolean",
56 "default": false
57 },
58 "gradientEnd": {
59 "type": "string",
60 "default": "#7c3aed"
61 },
62 "gradientAngle": {
63 "type": "number",
64 "default": 135
65 },
66 "backgroundImageUrl": {
67 "type": "string",
68 "default": ""
69 },
70 "backgroundImageId": {
71 "type": "number",
72 "default": 0
73 },
74 "backgroundSize": {
75 "type": "string",
76 "default": "cover"
77 },
78 "backgroundPosition": {
79 "type": "string",
80 "default": "center center"
81 },
82 "overlayColor": {
83 "type": "string",
84 "default": "#1e40af"
85 },
86 "overlayOpacity": {
87 "type": "number",
88 "default": 0
89 },
90 "minHeight": {
91 "type": "number",
92 "default": 400
93 },
94 "paddingTop": {
95 "type": "number",
96 "default": 100
97 },
98 "paddingBottom": {
99 "type": "number",
100 "default": 100
101 },
102 "paddingExtraForSkew": {
103 "type": "boolean",
104 "default": true
105 },
106 "contentMaxWidth": {
107 "type": "number",
108 "default": 1100
109 },
110 "textColor": {
111 "type": "string",
112 "default": "#ffffff"
113 },
114 "textAlign": {
115 "type": "string",
116 "default": "left"
117 },
118 "clipMethod": {
119 "type": "string",
120 "default": "polygon"
121 }
122 },
123 "editorScript": "bkbg-skewed-section-editor",
124 "editorStyle": "bkbg-skewed-section-style",
125 "style": "bkbg-skewed-section-style",
126 "viewScript": "bkbg-skewed-section-frontend"
127 }
128