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

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

108 lines 2.5 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/gradient-blob",
4 "title": "Gradient Blob",
5 "description": "Full-width section with animated CSS gradient blobs as background and InnerBlocks for content.",
6 "category": "bkbg-effects",
7 "icon": "art",
8 "keywords": [
9 "blob",
10 "gradient",
11 "animated",
12 "section",
13 "background"
14 ],
15 "textdomain": "blockenberg",
16 "editorScript": "bkbg-gradient-blob-editor",
17 "editorStyle": "bkbg-gradient-blob-style",
18 "style": "bkbg-gradient-blob-style",
19 "viewScript": "bkbg-gradient-blob-frontend",
20 "supports": {
21 "html": false,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "color1": {
29 "type": "string",
30 "default": "#c084fc"
31 },
32 "color2": {
33 "type": "string",
34 "default": "#818cf8"
35 },
36 "color3": {
37 "type": "string",
38 "default": "#f0abfc"
39 },
40 "bgColor": {
41 "type": "string",
42 "default": "#faf5ff"
43 },
44 "textColor": {
45 "type": "string",
46 "default": ""
47 },
48 "animSpeed": {
49 "type": "integer",
50 "default": 10
51 },
52 "blobSize": {
53 "type": "integer",
54 "default": 60
55 },
56 "blobOpacity": {
57 "type": "integer",
58 "default": 60
59 },
60 "blobBlur": {
61 "type": "integer",
62 "default": 80
63 },
64 "minHeight": {
65 "type": "integer",
66 "default": 500
67 },
68 "paddingTop": {
69 "type": "integer",
70 "default": 80
71 },
72 "paddingBottom": {
73 "type": "integer",
74 "default": 80
75 },
76 "contentMaxWidth": {
77 "type": "integer",
78 "default": 720
79 },
80 "centerContent": {
81 "type": "boolean",
82 "default": true
83 },
84 "numBlobs": {
85 "type": "integer",
86 "default": 3
87 },
88 "paused": {
89 "type": "boolean",
90 "default": false
91 },
92 "align": {
93 "type": "string",
94 "default": "full"
95 }
96 },
97 "editorBlock": {
98 "defaultValue": {
99 "allowedBlocks": [
100 "core/heading",
101 "core/paragraph",
102 "core/buttons",
103 "core/image"
104 ]
105 }
106 }
107 }
108