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 / click-to-tweet / block.json

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

111 lines 2.7 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/click-to-tweet",
5 "title": "Click to Tweet",
6 "category": "bkbg-blog",
7 "icon": "twitter",
8 "description": "Elegant pull-quote block with a one-click Twitter/X share button.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-click-to-tweet-editor",
11 "style": "bkbg-click-to-tweet-style",
12 "viewScript": "bkbg-click-to-tweet-frontend",
13 "attributes": {
14 "quote": {
15 "type": "string",
16 "default": "Enter a memorable quote to share on X…"
17 },
18 "attribution": {
19 "type": "string",
20 "default": ""
21 },
22 "showAttribution": {
23 "type": "boolean",
24 "default": false
25 },
26 "buttonLabel": {
27 "type": "string",
28 "default": "Share on X"
29 },
30 "includeUrl": {
31 "type": "boolean",
32 "default": true
33 },
34 "cardStyle": {
35 "type": "string",
36 "default": "card"
37 },
38 "quoteColor": {
39 "type": "string",
40 "default": "#111827"
41 },
42 "attributionColor": {
43 "type": "string",
44 "default": "#6b7280"
45 },
46 "bgColor": {
47 "type": "string",
48 "default": "#f9fafb"
49 },
50 "borderColor": {
51 "type": "string",
52 "default": "#e5e7eb"
53 },
54 "accentColor": {
55 "type": "string",
56 "default": "#7c3aed"
57 },
58 "buttonBg": {
59 "type": "string",
60 "default": "#000000"
61 },
62 "buttonColor": {
63 "type": "string",
64 "default": "#ffffff"
65 },
66 "quoteSize": {
67 "type": "number",
68 "default": 22
69 },
70 "showQuoteIcon": {
71 "type": "boolean",
72 "default": true
73 },
74 "borderRadius": {
75 "type": "number",
76 "default": 12
77 },
78 "maxWidth": {
79 "type": "number",
80 "default": 700
81 },
82 "paddingTop": {
83 "type": "number",
84 "default": 40
85 },
86 "paddingBottom": {
87 "type": "number",
88 "default": 40
89 },
90 "quoteFontWeight": {
91 "type": "string",
92 "default": "400"
93 },
94 "quoteLineHeight": {
95 "type": "number",
96 "default": 1.5
97 },
98 "typoQuote": {
99 "type": "object",
100 "default": {}
101 }
102 },
103 "supports": {
104 "html": false,
105 "align": [
106 "wide",
107 "full"
108 ]
109 }
110 }
111