PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
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.3.3, at gutenberg/blocks/twitter/block.json

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