PluginProbe
Gutenberg / 19.6.0
Gutenberg v19.6.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / block-library / blocks / social-links / block.json

block.json in Gutenberg 19.6.0, at build/block-library/blocks/social-links/block.json

106 lines 2.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 "apiVersion": 3,
4 "name": "core/social-links",
5 "title": "Social Icons",
6 "category": "widgets",
7 "allowedBlocks": [ "core/social-link" ],
8 "description": "Display icons linking to your social profiles or sites.",
9 "keywords": [ "links" ],
10 "textdomain": "default",
11 "attributes": {
12 "iconColor": {
13 "type": "string"
14 },
15 "customIconColor": {
16 "type": "string"
17 },
18 "iconColorValue": {
19 "type": "string"
20 },
21 "iconBackgroundColor": {
22 "type": "string"
23 },
24 "customIconBackgroundColor": {
25 "type": "string"
26 },
27 "iconBackgroundColorValue": {
28 "type": "string"
29 },
30 "openInNewTab": {
31 "type": "boolean",
32 "default": false
33 },
34 "showLabels": {
35 "type": "boolean",
36 "default": false
37 },
38 "size": {
39 "type": "string"
40 }
41 },
42 "providesContext": {
43 "openInNewTab": "openInNewTab",
44 "showLabels": "showLabels",
45 "iconColor": "iconColor",
46 "iconColorValue": "iconColorValue",
47 "iconBackgroundColor": "iconBackgroundColor",
48 "iconBackgroundColorValue": "iconBackgroundColorValue"
49 },
50 "supports": {
51 "align": [ "left", "center", "right" ],
52 "anchor": true,
53 "__experimentalExposeControlsToChildren": true,
54 "layout": {
55 "allowSwitching": false,
56 "allowInheriting": false,
57 "allowVerticalAlignment": false,
58 "default": {
59 "type": "flex"
60 }
61 },
62 "color": {
63 "enableContrastChecker": false,
64 "background": true,
65 "gradients": true,
66 "text": false,
67 "__experimentalDefaultControls": {
68 "background": false
69 }
70 },
71 "spacing": {
72 "blockGap": [ "horizontal", "vertical" ],
73 "margin": true,
74 "padding": true,
75 "units": [ "px", "em", "rem", "vh", "vw" ],
76 "__experimentalDefaultControls": {
77 "blockGap": true,
78 "margin": true,
79 "padding": false
80 }
81 },
82 "interactivity": {
83 "clientNavigation": true
84 },
85 "__experimentalBorder": {
86 "radius": true,
87 "color": true,
88 "width": true,
89 "style": true,
90 "__experimentalDefaultControls": {
91 "radius": true,
92 "color": true,
93 "width": true,
94 "style": true
95 }
96 }
97 },
98 "styles": [
99 { "name": "default", "label": "Default", "isDefault": true },
100 { "name": "logos-only", "label": "Logos Only" },
101 { "name": "pill-shape", "label": "Pill Shape" }
102 ],
103 "editorStyle": "wp-block-social-links-editor",
104 "style": "wp-block-social-links"
105 }
106