PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.0.2
Tableberg – Simple Gutenberg Table Block v0.0.2
1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.5.8 All 41 releases
tableberg / src / image / block.json

block.json in Tableberg – Simple Gutenberg Table Block 0.0.2, at src/image/block.json

94 lines 2.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 "version": "0.0.1",
5 "title": "Tableberg Image",
6 "name": "tableberg/image",
7 "category": "design",
8 "parent": [
9 "tableberg/cell"
10 ],
11 "description": "Tableberg Image",
12 "attributes": {
13 "media": {
14 "type": "object",
15 "default": {}
16 },
17 "height": {
18 "type": "string",
19 "default": ""
20 },
21 "width": {
22 "type": "string",
23 "default": ""
24 },
25 "alt": {
26 "type": "string",
27 "default": ""
28 },
29 "aspectRatio": {
30 "type": "string",
31 "default": ""
32 },
33 "scale": {
34 "type": "string",
35 "default": ""
36 },
37 "sizeSlug": {
38 "type": "string",
39 "default": "large"
40 },
41 "caption": {
42 "type": "string",
43 "default": ""
44 },
45 "href": {
46 "type": "string",
47 "default": ""
48 },
49 "linkClass": {
50 "type": "string",
51 "default": ""
52 },
53 "linkDestination": {
54 "type": "string",
55 "default": ""
56 },
57 "rel": {
58 "type": "string",
59 "default": ""
60 },
61 "linkTarget": {
62 "type": "string",
63 "default": ""
64 },
65 "border": {
66 "type": "object",
67 "default": {}
68 },
69 "borderRadius": {
70 "type": "object",
71 "default": {}
72 }
73 },
74 "supports": {
75 "align": true,
76 "anchor": true,
77 "color": {
78 "text": false,
79 "background": false
80 },
81 "filter": {
82 "duotone": true
83 },
84 "selectors": {
85 "filter": {
86 "duotone": ".wp-block-tableberg-image img, .wp-block-tableberg-image .components-placeholder"
87 }
88 }
89 },
90 "textdomain": "tableberg",
91 "editorScript": "file:./index.tsx",
92 "editorStyle": "file:./index.css",
93 "style": "file:./style-index.css"
94 }