block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 year ago
index.js
1 year ago
view.php
1 year ago
block.json
50 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/price-setup-fee", |
| 5 | "title": "Price Setup Fee", |
| 6 | "description": "Displays the setup fee of a price.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "icon": "money-alt", |
| 10 | "usesContext": [ |
| 11 | "surecart/priceId", |
| 12 | "surecart/price" |
| 13 | ], |
| 14 | "ancestor": [ |
| 15 | "surecart/product-price-choice-template" |
| 16 | ], |
| 17 | "supports": { |
| 18 | "interactivity": true, |
| 19 | "anchor": true, |
| 20 | "color": { |
| 21 | "gradients": true, |
| 22 | "text": true, |
| 23 | "background": true, |
| 24 | "__experimentalDefaultControls": { |
| 25 | "text": true, |
| 26 | "background": true |
| 27 | } |
| 28 | }, |
| 29 | "typography": { |
| 30 | "fontSize": true, |
| 31 | "lineHeight": true, |
| 32 | "textAlign": true, |
| 33 | "__experimentalFontFamily": true, |
| 34 | "__experimentalFontWeight": true, |
| 35 | "__experimentalFontStyle": true, |
| 36 | "__experimentalTextTransform": true, |
| 37 | "__experimentalTextDecoration": true, |
| 38 | "__experimentalLetterSpacing": true, |
| 39 | "__experimentalDefaultControls": { |
| 40 | "fontSize": true, |
| 41 | "fontAppearance": true, |
| 42 | "textTransform": true |
| 43 | } |
| 44 | }, |
| 45 | "currencyConversion": true |
| 46 | }, |
| 47 | "textdomain": "surecart", |
| 48 | "render": "file:./view.php", |
| 49 | "editorScript": "file:./index.js" |
| 50 | } |