PluginProbe
Getwid – Gutenberg Blocks / 3.0.1
Getwid – Gutenberg Blocks v3.0.1
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / assets / blocks / social-links / block.json

block.json in Getwid – Gutenberg Blocks 3.0.1, at assets/blocks/social-links/block.json

115 lines 2.4 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 "textdomain": "getwid",
5 "name": "getwid/social-links",
6 "description": "Adds links to social media profiles.",
7 "category": "getwid-blocks",
8 "title": "Social Links",
9 "keywords": [
10 "facebook",
11 "twitter",
12 "share"
13 ],
14 "supports": {
15 "align": [
16 "wide",
17 "full"
18 ]
19 },
20 "attributes": {
21 "backgroundColor": {
22 "type": "string"
23 },
24 "textColor": {
25 "type": "string"
26 },
27 "customBackgroundColor": {
28 "type": "string"
29 },
30 "customTextColor": {
31 "type": "string"
32 },
33 "align": {
34 "type": "string"
35 },
36 "textAlignmentDesktop": {
37 "type": "string"
38 },
39 "textAlignmentTablet": {
40 "type": "string"
41 },
42 "textAlignmentMobile": {
43 "type": "string"
44 },
45 "icons": {
46 "type": "array",
47 "default": [
48 {
49 "icon": "fab fa-facebook-f",
50 "link": "https://www.facebook.com/",
51 "rel": ""
52 },
53 {
54 "icon": "fab fa-twitter",
55 "link": "https://twitter.com/",
56 "rel": ""
57 },
58 {
59 "icon": "fab fa-instagram",
60 "link": "https://www.instagram.com/",
61 "rel": ""
62 },
63 {
64 "icon": "fab fa-youtube",
65 "link": "https://www.youtube.com/",
66 "rel": ""
67 }
68 ],
69 "source": "query",
70 "selector": ".wp-block-getwid-social-links__link",
71 "query": {
72 "icon": {
73 "source": "attribute",
74 "selector": "i",
75 "attribute": "class"
76 },
77 "title": {
78 "type": "string",
79 "source": "html",
80 "selector": ".wp-block-getwid-social-links__label"
81 },
82 "link": {
83 "source": "attribute",
84 "attribute": "href",
85 "type": "string",
86 "default": "#"
87 },
88 "linkTarget": {
89 "source": "attribute",
90 "attribute": "target"
91 },
92 "rel": {
93 "source": "attribute",
94 "attribute": "rel"
95 }
96 }
97 },
98 "iconsStyle": {
99 "type": "string",
100 "default": "default"
101 },
102 "iconsSize": {
103 "type": "number"
104 },
105 "iconsSpacing": {
106 "type": "string",
107 "default": "default"
108 }
109 },
110 "editorScript": "file:./index.js",
111 "editorStyle": "file:./index.css",
112 "style": [
113 "file:./style-index.css"
114 ]
115 }