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

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

109 lines 2.6 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",
5 "version": "1.0.0",
6 "title": "Embed / iFrame",
7 "category": "bkbg-media",
8 "icon": "embed-generic",
9 "description": "Responsive iframe embed for Calendly, Typeform, Google Forms, Airtable, YouTube, Vimeo, or any URL. Full aspect-ratio control and loading options.",
10 "keywords": [
11 "embed",
12 "iframe",
13 "calendly",
14 "typeform",
15 "form",
16 "video",
17 "airtable",
18 "notion",
19 "figma",
20 "external"
21 ],
22 "textdomain": "blockenberg",
23 "editorScript": "bkbg-embed-editor",
24 "editorStyle": "bkbg-embed-style",
25 "style": "bkbg-embed-style",
26 "viewScript": "bkbg-embed-frontend",
27 "supports": {
28 "html": false,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "url": {
36 "type": "string",
37 "default": ""
38 },
39 "title": {
40 "type": "string",
41 "default": "Embedded content"
42 },
43 "aspectRatio": {
44 "type": "string",
45 "default": "16:9"
46 },
47 "customHeight": {
48 "type": "number",
49 "default": 600
50 },
51 "maxWidth": {
52 "type": "number",
53 "default": 0
54 },
55 "borderRadius": {
56 "type": "number",
57 "default": 8
58 },
59 "showBorder": {
60 "type": "boolean",
61 "default": false
62 },
63 "borderColor": {
64 "type": "string",
65 "default": "#e5e7eb"
66 },
67 "borderWidth": {
68 "type": "number",
69 "default": 1
70 },
71 "allowFullscreen": {
72 "type": "boolean",
73 "default": true
74 },
75 "scrolling": {
76 "type": "string",
77 "default": "auto"
78 },
79 "loading": {
80 "type": "string",
81 "default": "lazy"
82 },
83 "sandbox": {
84 "type": "string",
85 "default": ""
86 },
87 "showPlaceholder": {
88 "type": "boolean",
89 "default": true
90 },
91 "placeholderText": {
92 "type": "string",
93 "default": "Enter a URL in the block settings to embed content."
94 },
95 "bgColor": {
96 "type": "string",
97 "default": ""
98 },
99 "paddingTop": {
100 "type": "number",
101 "default": 32
102 },
103 "paddingBottom": {
104 "type": "number",
105 "default": 32
106 }
107 }
108 }
109