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