PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 2.0.2
GenerateBlocks v2.0.2
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 / loop-item / block.json
generateblocks / dist / blocks / loop-item Last commit date
block.json 1 year ago index-rtl.css 1 year ago index.asset.php 1 year ago index.css 1 year ago index.js 1 year ago
block.json
72 lines
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "generateblocks/loop-item",
5 "title": "Loop Item",
6 "category": "generateblocks",
7 "description": "The item that is looped inside of the Looper.",
8 "keywords": [
9 "text",
10 "heading",
11 "headline",
12 "paragraph"
13 ],
14 "version": "1.0.0",
15 "textdomain": "generateblocks",
16 "parent": [
17 "generateblocks/looper"
18 ],
19 "attributes": {
20 "uniqueId": {
21 "type": "string",
22 "default": ""
23 },
24 "tagName": {
25 "type": "string",
26 "default": "",
27 "enum": [
28 "div",
29 "li",
30 "a",
31 "article",
32 "section",
33 "aside"
34 ]
35 },
36 "styles": {
37 "type": "object",
38 "default": {}
39 },
40 "css": {
41 "type": "string",
42 "default": ""
43 },
44 "globalClasses": {
45 "type": "array",
46 "default": []
47 },
48 "htmlAttributes": {
49 "type": "object",
50 "default": {}
51 }
52 },
53 "supports": {
54 "align": false,
55 "className": false
56 },
57 "editorScript": "file:./index.js",
58 "editorStyle": [
59 "file:./index.css"
60 ],
61 "usesContext": [
62 "generateblocks/queryData",
63 "generateblocks/queryType",
64 "generateblocks/loopIndex",
65 "generateblocks/loopItem",
66 "generateblocks/loopPreviewId",
67 "generateblocks/hasLoopItems",
68 "generateblocks/queryId",
69 "generateblocks/setLoopPreviewId",
70 "postId"
71 ]
72 }