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

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

131 lines 3.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/sponsored-disclosure",
5 "title": "Sponsored Disclosure",
6 "description": "FTC-compliant sponsored/paid partnership disclosure label.",
7 "category": "bkbg-blog",
8 "icon": "warning",
9 "keywords": [
10 "sponsored",
11 "paid",
12 "disclosure",
13 "advertisement",
14 "ftc",
15 "partnership"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-sponsored-disclosure-editor",
19 "style": "bkbg-sponsored-disclosure-style",
20 "viewScript": "bkbg-sponsored-disclosure-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "disclosureType": {
30 "type": "string",
31 "default": "sponsored"
32 },
33 "customLabel": {
34 "type": "string",
35 "default": ""
36 },
37 "text": {
38 "type": "string",
39 "default": ""
40 },
41 "showText": {
42 "type": "boolean",
43 "default": false
44 },
45 "showIcon": {
46 "type": "boolean",
47 "default": true
48 },
49 "icon": {
50 "type": "string",
51 "default": "📢"
52 },
53 "iconType": {
54 "type": "string",
55 "default": "custom-char"
56 },
57 "iconDashicon": {
58 "type": "string",
59 "default": "megaphone"
60 },
61 "iconImageUrl": {
62 "type": "string",
63 "default": ""
64 },
65 "style": {
66 "type": "string",
67 "default": "pill"
68 },
69 "align": {
70 "type": "string",
71 "default": "left"
72 },
73 "bgColor": {
74 "type": "string",
75 "default": "#fff7ed"
76 },
77 "borderColor": {
78 "type": "string",
79 "default": "#fed7aa"
80 },
81 "textColor": {
82 "type": "string",
83 "default": "#9a3412"
84 },
85 "labelBg": {
86 "type": "string",
87 "default": "#f97316"
88 },
89 "labelColor": {
90 "type": "string",
91 "default": "#ffffff"
92 },
93 "fontSize": {
94 "type": "number",
95 "default": 12
96 },
97 "fontWeight": {
98 "type": "string",
99 "default": "600"
100 },
101 "lineHeight": {
102 "type": "number",
103 "default": 1.5
104 },
105 "letterSpacing": {
106 "type": "string",
107 "default": "0.04em"
108 },
109 "borderRadius": {
110 "type": "number",
111 "default": 999
112 },
113 "paddingTop": {
114 "type": "number",
115 "default": 0
116 },
117 "paddingBottom": {
118 "type": "number",
119 "default": 0
120 },
121 "labelTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "textTypo": {
126 "type": "object",
127 "default": {}
128 }
129 }
130 }
131