PluginProbe
ActivityPub / 9.2.0
ActivityPub v9.2.0
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
activitypub / build / following / block.json

block.json in ActivityPub 9.2.0, at build/following/block.json

66 lines 1.3 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 "name": "activitypub/following",
4 "apiVersion": 3,
5 "version": "9.2.0",
6 "title": "Fediverse Following",
7 "category": "widgets",
8 "description": "Display the accounts you follow in the Fediverse on your website.",
9 "textdomain": "activitypub",
10 "icon": "groups",
11 "keywords": [
12 "fediverse",
13 "activitypub",
14 "following",
15 "mastodon"
16 ],
17 "supports": {
18 "html": false,
19 "interactivity": true
20 },
21 "attributes": {
22 "selectedUser": {
23 "type": "string",
24 "default": "blog"
25 },
26 "per_page": {
27 "type": "number",
28 "default": 10
29 },
30 "order": {
31 "type": "string",
32 "default": "desc",
33 "enum": [
34 "asc",
35 "desc"
36 ]
37 }
38 },
39 "usesContext": [
40 "postType",
41 "postId"
42 ],
43 "styles": [
44 {
45 "name": "default",
46 "label": "Default",
47 "isDefault": true
48 },
49 {
50 "name": "card",
51 "label": "Card"
52 },
53 {
54 "name": "compact",
55 "label": "Compact"
56 }
57 ],
58 "editorScript": "file:./index.js",
59 "editorStyle": "file:./index.css",
60 "viewScriptModule": "file:./view.js",
61 "viewScript": "wp-api-fetch",
62 "style": [
63 "file:./style-index.css"
64 ],
65 "render": "file:./render.php"
66 }