-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblock.json
107 lines (107 loc) · 2.73 KB
/
block.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$schema": "https://json.schemastore.org/block.json",
"apiVersion": 2,
"name": "givewp/donation-form-block",
"version": "1.1.1",
"title": "Donation Form Block for Stripe",
"category": "widgets",
"icon": "smiley",
"description": "A beautiful donation form block for Stripe by GiveWP. Accept donations in minutes.",
"supports": {
"html": false
},
"attributes": {
"donationAmounts": {
"type": "array",
"default": [
5,
10,
25,
50,
100,
250
]
},
"defaultAmount": {
"type": "integer",
"default": 50
},
"backgroundId": {
"type": "integer",
"default": 0
},
"backgroundUrl": {
"type": "string",
"default": ""
},
"countryCode": {
"type": "string",
"default": "US"
},
"currencyCode": {
"type": "string",
"default": "USD"
},
"currencySymbol": {
"type": "string",
"default": "$"
},
"color": {
"type": "string",
"default": "#1E8CBE"
},
"introHeading": {
"type": "string",
"default": "How much would you like to donate today?"
},
"introSubheading": {
"type": "string",
"default": "All donations directly impact our cause. Any support is appreciated."
},
"fieldsHeading": {
"type": "string",
"default": "Who’s giving today?"
},
"fieldsSubheading": {
"type": "string",
"default": "This information is only used to securely process your donation."
},
"donateBtnText": {
"type": "string",
"default": "Donate Now"
},
"enableLink": {
"type": "boolean",
"default": false
},
"formId": {
"type": "integer",
"default": 0
},
"enableRecaptchaBackend": {
"type": "boolean",
"default": false
},
"recaptchaSitekey": {
"type": "string",
"default": ""
},
"liveMode": {
"type": "boolean",
"default": false
},
"preview": {
"type": "boolean",
"default": false
}
},
"example": {
"attributes": {
"preview": true
}
},
"textdomain": "donation-form-block",
"editorScript": "file:./build/index.js",
"editorStyle": "file:./build/index.css",
"style": ""
}