Icon.tsx
1 year ago
app.tsx
1 year ago
block.json
1 year ago
edit.tsx
1 year ago
index.tsx
1 year ago
render.php
1 year ago
styles.scss
1 year ago
block.json
73 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "givewp/campaign-stats-block", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Campaign Statistics", |
| 7 | "category": "give", |
| 8 | "description": "Displays the campaign’s statistics.", |
| 9 | "attributes": { |
| 10 | "campaignId": { |
| 11 | "type": "integer" |
| 12 | }, |
| 13 | "statistic": { |
| 14 | "type": "string", |
| 15 | "enum": [ |
| 16 | "top-donation", |
| 17 | "average-donation" |
| 18 | ], |
| 19 | "default": "top-donation" |
| 20 | } |
| 21 | }, |
| 22 | "supports": { |
| 23 | "align": [ |
| 24 | "wide", |
| 25 | "full" |
| 26 | ], |
| 27 | "anchor": true, |
| 28 | "className": true, |
| 29 | "splitting": true, |
| 30 | "__experimentalBorder": { |
| 31 | "color": true, |
| 32 | "radius": true, |
| 33 | "style": true, |
| 34 | "width": true |
| 35 | }, |
| 36 | "color": { |
| 37 | "gradients": true, |
| 38 | "link": true, |
| 39 | "__experimentalDefaultControls": { |
| 40 | "background": true, |
| 41 | "text": true |
| 42 | } |
| 43 | }, |
| 44 | "spacing": { |
| 45 | "margin": true, |
| 46 | "padding": true, |
| 47 | "__experimentalDefaultControls": { |
| 48 | "margin": false, |
| 49 | "padding": false |
| 50 | } |
| 51 | }, |
| 52 | "typography": { |
| 53 | "fontSize": true, |
| 54 | "lineHeight": true, |
| 55 | "__experimentalFontFamily": true, |
| 56 | "__experimentalFontStyle": true, |
| 57 | "__experimentalFontWeight": true, |
| 58 | "__experimentalLetterSpacing": true, |
| 59 | "__experimentalTextTransform": true, |
| 60 | "__experimentalTextDecoration": true, |
| 61 | "__experimentalWritingMode": true, |
| 62 | "__experimentalDefaultControls": { |
| 63 | "fontSize": true |
| 64 | } |
| 65 | } |
| 66 | }, |
| 67 | "example": {}, |
| 68 | "textdomain": "give", |
| 69 | "render": "file:./render.php", |
| 70 | "viewScript": "file:../../../../build/campaignStatsBlockApp.js", |
| 71 | "style": "file:../../../../build/campaignStatsBlockApp.css" |
| 72 | } |
| 73 |