PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.4.1
Block Animations, Motion & Scroll Effects – Ghost Kit v3.4.1
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / twitter / block.json

block.json in Block Animations, Motion & Scroll Effects – Ghost Kit 3.4.1, at gutenberg/blocks/twitter/block.json

107 lines 1.8 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": "ghostkit/twitter",
5 "category": "ghostkit",
6 "title": "Twitter",
7 "description": "Show Twitter feed and user data.",
8 "keywords": ["twitter"],
9 "supports": {
10 "inserter": false,
11 "html": false,
12 "className": false,
13 "align": ["wide", "full"]
14 },
15 "attributes": {
16 "consumerKey": {
17 "type": "string"
18 },
19 "consumerSecret": {
20 "type": "string"
21 },
22 "accessToken": {
23 "type": "string"
24 },
25 "accessTokenSecret": {
26 "type": "string"
27 },
28 "userName": {
29 "type": "string",
30 "default": "nkdevv"
31 },
32 "count": {
33 "type": "number",
34 "default": 3
35 },
36
37 "showReplies": {
38 "type": "boolean",
39 "default": false
40 },
41 "showRetweets": {
42 "type": "boolean",
43 "default": true
44 },
45 "showFeedAvatar": {
46 "type": "boolean",
47 "default": true
48 },
49 "feedAvatarSize": {
50 "type": "number",
51 "default": 48
52 },
53 "showFeedName": {
54 "type": "boolean",
55 "default": true
56 },
57 "showFeedDate": {
58 "type": "boolean",
59 "default": true
60 },
61 "feedTextMode": {
62 "type": "string"
63 },
64 "feedTextConvertLinks": {
65 "type": "string",
66 "default": "links_media"
67 },
68 "showFeedActions": {
69 "type": "boolean",
70 "default": true
71 },
72
73 "showProfile": {
74 "type": "boolean",
75 "default": true
76 },
77 "showProfileAvatar": {
78 "type": "boolean",
79 "default": true
80 },
81 "profileAvatarSize": {
82 "type": "number",
83 "default": 70
84 },
85 "showProfileName": {
86 "type": "boolean",
87 "default": true
88 },
89 "showProfileStats": {
90 "type": "boolean",
91 "default": true
92 },
93 "showProfileDescription": {
94 "type": "boolean",
95 "default": true
96 },
97 "showProfileWebsite": {
98 "type": "boolean",
99 "default": true
100 },
101 "showProfileLocation": {
102 "type": "boolean",
103 "default": true
104 }
105 }
106 }
107