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

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

154 lines 3.8 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/embed-preview",
5 "title": "Embed Preview",
6 "category": "bkbg-media",
7 "icon": "embed-generic",
8 "description": "Privacy-friendly click-to-load embed with a custom thumbnail, CTA overlay, and optional privacy notice.",
9 "keywords": [
10 "embed",
11 "figma",
12 "loom",
13 "iframe",
14 "preview",
15 "video",
16 "lazy"
17 ],
18 "editorScript": "bkbg-embed-preview-editor",
19 "style": "bkbg-embed-preview-style",
20 "viewScript": "bkbg-embed-preview-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "embedUrl": {
30 "type": "string",
31 "default": ""
32 },
33 "embedProvider": {
34 "type": "string",
35 "default": "custom"
36 },
37 "embedTitle": {
38 "type": "string",
39 "default": "Open in Figma"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "description": {
46 "type": "string",
47 "default": ""
48 },
49 "showDescription": {
50 "type": "boolean",
51 "default": false
52 },
53 "thumbnailUrl": {
54 "type": "string",
55 "default": ""
56 },
57 "thumbnailId": {
58 "type": "number",
59 "default": 0
60 },
61 "ctaLabel": {
62 "type": "string",
63 "default": "Click to open"
64 },
65 "ctaStyle": {
66 "type": "string",
67 "default": "filled"
68 },
69 "aspectRatio": {
70 "type": "string",
71 "default": "16-9"
72 },
73 "customHeight": {
74 "type": "number",
75 "default": 480
76 },
77 "maxWidth": {
78 "type": "number",
79 "default": 900
80 },
81 "borderRadius": {
82 "type": "number",
83 "default": 12
84 },
85 "showBrand": {
86 "type": "boolean",
87 "default": true
88 },
89 "showLoadingBar": {
90 "type": "boolean",
91 "default": true
92 },
93 "privacyNote": {
94 "type": "string",
95 "default": "No data is loaded until you click."
96 },
97 "showPrivacyNote": {
98 "type": "boolean",
99 "default": true
100 },
101 "iframeSandbox": {
102 "type": "string",
103 "default": "allow-scripts allow-same-origin allow-forms allow-popups allow-presentation"
104 },
105 "overlayBg": {
106 "type": "string",
107 "default": "#0f172a"
108 },
109 "overlayOpacity": {
110 "type": "number",
111 "default": 55
112 },
113 "ctaBg": {
114 "type": "string",
115 "default": "#6366f1"
116 },
117 "ctaColor": {
118 "type": "string",
119 "default": "#ffffff"
120 },
121 "titleColor": {
122 "type": "string",
123 "default": "#f8fafc"
124 },
125 "descColor": {
126 "type": "string",
127 "default": "#cbd5e1"
128 },
129 "privacyColor": {
130 "type": "string",
131 "default": "#94a3b8"
132 },
133 "borderColor": {
134 "type": "string",
135 "default": "#e5e7eb"
136 },
137 "descSize": {
138 "type": "number",
139 "default": 14
140 },
141 "ctaLabelSize": {
142 "type": "number",
143 "default": 14
144 },
145 "titleSize": {
146 "type": "number",
147 "default": 18
148 },
149 "typoTitle": { "type": "object", "default": {} },
150 "typoDesc": { "type": "object", "default": {} },
151 "typoCta": { "type": "object", "default": {} }
152 }
153 }
154