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 / instagram / block.json

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

63 lines 1.2 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/instagram",
5 "category": "ghostkit",
6 "title": "Instagram",
7 "description": "Show Instagram feed and user data.",
8 "keywords": ["instagram"],
9 "supports": {
10 "html": false,
11 "className": false,
12 "align": ["wide", "full"]
13 },
14 "attributes": {
15 "accessToken": {
16 "type": "string"
17 },
18 "count": {
19 "type": "number",
20 "default": 8
21 },
22 "columns": {
23 "type": "number",
24 "default": 4
25 },
26 "gap": {
27 "type": "string",
28 "default": "sm"
29 },
30 "gapCustom": {
31 "type": "number"
32 },
33 "showProfile": {
34 "type": "boolean",
35 "default": true
36 },
37 "showProfileAvatar": {
38 "type": "boolean",
39 "default": true
40 },
41 "profileAvatarSize": {
42 "type": "number",
43 "default": 70
44 },
45 "showProfileName": {
46 "type": "boolean",
47 "default": true
48 },
49 "showProfileStats": {
50 "type": "boolean",
51 "default": true
52 },
53 "showProfileBio": {
54 "type": "boolean",
55 "default": true
56 },
57 "showProfileWebsite": {
58 "type": "boolean",
59 "default": true
60 }
61 }
62 }
63