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

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

188 lines 5.1 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/pricing-slider",
5 "title": "Pricing Slider",
6 "category": "bkbg-marketing",
7 "icon": "slides",
8 "description": "Interactive pricing section with a usage/tier slider \u2014 drag to select a plan and prices update dynamically with smooth animation.",
9 "keywords": [
10 "pricing",
11 "slider",
12 "plan",
13 "subscription",
14 "tier",
15 "interactive",
16 "billing"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-pricing-slider-editor",
20 "style": "bkbg-pricing-slider-style",
21 "viewScript": "bkbg-pricing-slider-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "heading": {
33 "type": "string",
34 "default": "Simple, transparent pricing"
35 },
36 "subheading": {
37 "type": "string",
38 "default": "Scale up or down as your needs change."
39 },
40 "showBilling": {
41 "type": "boolean",
42 "default": true
43 },
44 "annualDiscount": {
45 "type": "number",
46 "default": 20
47 },
48 "initialTier": {
49 "type": "number",
50 "default": 1
51 },
52 "currency": {
53 "type": "string",
54 "default": "$"
55 },
56 "period": {
57 "type": "string",
58 "default": "/month"
59 },
60 "ctaText": {
61 "type": "string",
62 "default": "Get Started"
63 },
64 "tiers": {
65 "type": "array",
66 "default": [
67 {
68 "label": "Starter",
69 "users": "Up to 5 users",
70 "monthlyPrice": 19,
71 "features": [
72 "5 projects",
73 "10 GB storage",
74 "Email support",
75 "Basic analytics"
76 ]
77 },
78 {
79 "label": "Growth",
80 "users": "Up to 20 users",
81 "monthlyPrice": 49,
82 "features": [
83 "Unlimited projects",
84 "50 GB storage",
85 "Priority support",
86 "Advanced analytics",
87 "Custom domain"
88 ]
89 },
90 {
91 "label": "Pro",
92 "users": "Up to 100 users",
93 "monthlyPrice": 99,
94 "features": [
95 "Unlimited projects",
96 "200 GB storage",
97 "24/7 support",
98 "Advanced analytics",
99 "Custom domain",
100 "API access"
101 ]
102 },
103 {
104 "label": "Enterprise",
105 "users": "Unlimited",
106 "monthlyPrice": 199,
107 "features": [
108 "Unlimited projects",
109 "1 TB storage",
110 "Dedicated support",
111 "Custom analytics",
112 "Custom domain",
113 "API access",
114 "SSO / SAML"
115 ]
116 }
117 ]
118 },
119 "cardRadius": {
120 "type": "number",
121 "default": 24
122 },
123 "sectionBg": {
124 "type": "string",
125 "default": "#f8fafc"
126 },
127 "cardBg": {
128 "type": "string",
129 "default": "#ffffff"
130 },
131 "headingColor": {
132 "type": "string",
133 "default": "#1e1b4b"
134 },
135 "priceColor": {
136 "type": "string",
137 "default": "#6366f1"
138 },
139 "featureColor": {
140 "type": "string",
141 "default": "#374151"
142 },
143 "accentColor": {
144 "type": "string",
145 "default": "#6366f1"
146 },
147 "ctaBg": {
148 "type": "string",
149 "default": "#6366f1"
150 },
151 "ctaColor": {
152 "type": "string",
153 "default": "#ffffff"
154 },
155 "sliderColor": {
156 "type": "string",
157 "default": "#6366f1"
158 },
159 "trackBg": {
160 "type": "string",
161 "default": "#e5e7eb"
162 },
163 "checkColor": {
164 "type": "string",
165 "default": "#6366f1"
166 },
167 "headingTypo": {
168 "type": "object",
169 "default": {}
170 },
171 "subheadingTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "priceTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "ctaTypo": {
180 "type": "object",
181 "default": {}
182 },
183 "featureTypo": {
184 "type": "object",
185 "default": {}
186 }
187 }
188 }