PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / trunk
GenerateBlocks vtrunk
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / dist / blocks / shape / block.json
generateblocks / dist / blocks / shape Last commit date
block.json 1 year ago index-rtl.css 6 months ago index.asset.php 2 weeks ago index.css 6 months ago index.js 2 weeks ago
block.json
54 lines
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "generateblocks/shape",
5 "title": "Shape",
6 "category": "generateblocks",
7 "description": "A custom SVG shape.",
8 "keywords": [
9 "icon",
10 "shape",
11 "svg",
12 "image"
13 ],
14 "version": "1.0.0",
15 "textdomain": "generateblocks",
16 "attributes": {
17 "uniqueId": {
18 "type": "string",
19 "default": ""
20 },
21 "html": {
22 "type": "string",
23 "source": "html",
24 "selector": ".gb-shape"
25 },
26 "styles": {
27 "type": "object",
28 "default": {}
29 },
30 "css": {
31 "type": "string",
32 "default": ""
33 },
34 "globalClasses": {
35 "type": "array",
36 "default": []
37 },
38 "htmlAttributes": {
39 "type": "object",
40 "default": {}
41 }
42 },
43 "supports": {
44 "align": false,
45 "className": false
46 },
47 "editorScript": "file:./index.js",
48 "editorStyle": [
49 "file:./index.css"
50 ],
51 "usesContext": [
52 "postId"
53 ]
54 }