PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / 2.1.7
bBlocks – Essential Gutenberg Blocks & Patterns Collection v2.1.7
2.1.7 2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 All 107 releases
b-blocks / build / mailto / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection 2.1.7, at build/mailto/block.json

106 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "b-blocks/mailto",
4 "title": "Mail To",
5 "description": "Mail with a single click.",
6 "category": "bBlocks",
7 "keywords": [
8 "Send mail",
9 "Mail us",
10 "Email sending"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": ""
17 },
18 "mailtoAlign": {
19 "type": "string",
20 "default": "center"
21 },
22 "receiverMail": {
23 "type": "string",
24 "default": ""
25 },
26 "style": {
27 "type": "string",
28 "default": "default"
29 },
30 "btn": {
31 "type": "string",
32 "selector": "a.mailtoButton span",
33 "default": "Send E-mail"
34 },
35 "btnTypo": {
36 "type": "object",
37 "default": {
38 "fontSize": {
39 "desktop": "22px",
40 "tablet": "20px",
41 "mobile": "18px"
42 },
43 "fontWeight": 600
44 }
45 },
46 "btnColors": {
47 "type": "object",
48 "default": {
49 "color": "#fff",
50 "bg": "#146EF5"
51 }
52 },
53 "btnHovColors": {
54 "type": "object",
55 "default": {
56 "color": "#fff",
57 "bg": "#FF7A00"
58 }
59 },
60 "btnPadding": {
61 "type": "object",
62 "default": {
63 "vertical": "18px",
64 "horizontal": "45px"
65 }
66 },
67 "btnBorder": {
68 "type": "object",
69 "default": {
70 "radius": "50px"
71 }
72 },
73 "icon": {
74 "type": "object",
75 "default": {
76 "class": "fa fa-paper-plane"
77 }
78 },
79 "iconPosition": {
80 "type": "string",
81 "default": "left"
82 }
83 },
84 "supports": {
85 "align": [
86 "wide",
87 "full"
88 ],
89 "html": false
90 },
91 "example": {
92 "attributes": {
93 "preview": true
94 }
95 },
96 "editorScript": "file:../index.js",
97 "style": [
98 "file:./view.css",
99 "fontAwesome"
100 ],
101 "render": "file:./render.php",
102 "viewScript": [
103 "file:./view.js",
104 "mailtoui"
105 ]
106 }