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

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

107 lines 3.4 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/unfold",
5 "title": "Unfold",
6 "category": "bkbg-effects",
7 "icon": "sort",
8 "description": "Expandable content section that starts collapsed with a fade gradient and expands smoothly on button click.",
9 "keywords": [
10 "expand",
11 "read more",
12 "toggle",
13 "spoiler",
14 "collapsible",
15 "unfold"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-unfold-editor",
19 "style": "bkbg-unfold-style",
20 "viewScript": "bkbg-unfold-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "content": {
32 "type": "string",
33 "source": "html",
34 "selector": ".bkbg-ufd-content-src",
35 "default": "<p>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 ullamco laboris nisi ut aliquip ex ea commodo consequat.</p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p><p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>"
36 },
37 "previewHeight": {
38 "type": "integer",
39 "default": 200
40 },
41 "expandText": {
42 "type": "string",
43 "default": "Read More ↓"
44 },
45 "collapseText": {
46 "type": "string",
47 "default": "Show Less ↑"
48 },
49 "showCollapseBtn": {
50 "type": "boolean",
51 "default": true
52 },
53 "gradientHeight": {
54 "type": "integer",
55 "default": 60
56 },
57 "animationDuration": {
58 "type": "integer",
59 "default": 400
60 },
61 "buttonAlign": {
62 "type": "string",
63 "default": "center"
64 },
65 "buttonStyle": {
66 "type": "string",
67 "default": "filled"
68 },
69 "borderRadius": {
70 "type": "integer",
71 "default": 8
72 },
73 "contentTypo": {
74 "type": "object",
75 "default": {}
76 },
77 "buttonTypo": {
78 "type": "object",
79 "default": {}
80 },
81 "sectionBg": {
82 "type": "string",
83 "default": "#ffffff"
84 },
85 "contentColor": {
86 "type": "string",
87 "default": "#374151"
88 },
89 "gradientTo": {
90 "type": "string",
91 "default": "#ffffff"
92 },
93 "accentColor": {
94 "type": "string",
95 "default": "#6366f1"
96 },
97 "buttonBg": {
98 "type": "string",
99 "default": "#6366f1"
100 },
101 "buttonColor": {
102 "type": "string",
103 "default": "#ffffff"
104 }
105 }
106 }
107