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

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

190 lines 4.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/sticky-scroll",
5 "version": "1.0.0",
6 "title": "Sticky Scroll",
7 "category": "bkbg-effects",
8 "icon": "schedule",
9 "description": "Apple-style storytelling layout: one column stays pinned while the opposite column scrolls through feature panels.",
10 "keywords": [
11 "sticky",
12 "scroll",
13 "pinned",
14 "storytelling",
15 "features",
16 "showcase",
17 "two column",
18 "parallax",
19 "sectioned"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-sticky-scroll-editor",
23 "editorStyle": "bkbg-sticky-scroll-style",
24 "style": "bkbg-sticky-scroll-style",
25 "viewScript": "bkbg-sticky-scroll-frontend",
26 "supports": {
27 "html": false,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "pinnedSide": {
35 "type": "string",
36 "default": "left"
37 },
38 "items": {
39 "type": "array",
40 "default": [
41 {
42 "id": "s1",
43 "eyebrow": "Step 01",
44 "title": "Connect your tools",
45 "desc": "Integrate with 200+ apps in seconds. No code required \u2014 just click, authorize, and you're live.",
46 "imageUrl": "",
47 "imageId": 0,
48 "imageAlt": "",
49 "accentColor": "#6c3fb5"
50 },
51 {
52 "id": "s2",
53 "eyebrow": "Step 02",
54 "title": "Build your workflow",
55 "desc": "Drag and drop triggers, conditions, and actions to create automations that match your exact process.",
56 "imageUrl": "",
57 "imageId": 0,
58 "imageAlt": "",
59 "accentColor": "#3b82f6"
60 },
61 {
62 "id": "s3",
63 "eyebrow": "Step 03",
64 "title": "Go live and scale",
65 "desc": "Publish with one click. Monitor runs in real-time and iterate without downtime.",
66 "imageUrl": "",
67 "imageId": 0,
68 "imageAlt": "",
69 "accentColor": "#10b981"
70 }
71 ]
72 },
73 "stickyTop": {
74 "type": "number",
75 "default": 80
76 },
77 "columnGap": {
78 "type": "number",
79 "default": 60
80 },
81 "pinnedWidth": {
82 "type": "number",
83 "default": 50
84 },
85 "imageRadius": {
86 "type": "number",
87 "default": 16
88 },
89 "imageShadow": {
90 "type": "boolean",
91 "default": true
92 },
93 "imagePlaceholderColor": {
94 "type": "string",
95 "default": "#e5e7eb"
96 },
97 "showEyebrow": {
98 "type": "boolean",
99 "default": true
100 },
101 "showAccentDot": {
102 "type": "boolean",
103 "default": true
104 },
105 "activateOnScroll": {
106 "type": "boolean",
107 "default": true
108 },
109 "panelPaddingY": {
110 "type": "number",
111 "default": 80
112 },
113 "eyebrowSize": {
114 "type": "number",
115 "default": 13
116 },
117 "titleSize": {
118 "type": "number",
119 "default": 32
120 },
121 "descSize": {
122 "type": "number",
123 "default": 17
124 },
125 "eyebrowColor": {
126 "type": "string",
127 "default": "#6c3fb5"
128 },
129 "titleColor": {
130 "type": "string",
131 "default": "#111827"
132 },
133 "descColor": {
134 "type": "string",
135 "default": "#4b5563"
136 },
137 "dotColor": {
138 "type": "string",
139 "default": "#e5e7eb"
140 },
141 "dotActiveColor": {
142 "type": "string",
143 "default": "#6c3fb5"
144 },
145 "bgColor": {
146 "type": "string",
147 "default": ""
148 },
149 "paddingTop": {
150 "type": "number",
151 "default": 64
152 },
153 "paddingBottom": {
154 "type": "number",
155 "default": 64
156 },
157 "titleFontWeight": {
158 "type": "string",
159 "default": "700"
160 },
161 "descFontWeight": {
162 "type": "string",
163 "default": "400"
164 },
165 "eyebrowFontWeight": {
166 "type": "string",
167 "default": "600"
168 },
169 "titleLineHeight": {
170 "type": "number",
171 "default": 1.2
172 },
173 "descLineHeight": {
174 "type": "number",
175 "default": 1.6
176 },
177 "eyebrowTypo": {
178 "type": "object",
179 "default": {}
180 },
181 "titleTypo": {
182 "type": "object",
183 "default": {}
184 },
185 "descTypo": {
186 "type": "object",
187 "default": {}
188 }
189 }
190 }