block.json
6 months ago
index.asset.php
6 months ago
index.js
6 months ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.asset.php
1 year ago
view.js
1 year ago
view.php
4 months ago
block.json
49 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/currency-switcher", |
| 5 | "title": "Currency Switcher", |
| 6 | "description": "Display a currency switcher dropdown.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart", |
| 9 | "example": {}, |
| 10 | "attributes": { |
| 11 | "position": { |
| 12 | "type": "string", |
| 13 | "default": "right" |
| 14 | } |
| 15 | }, |
| 16 | "supports": { |
| 17 | "interactivity": true, |
| 18 | "spacing": { |
| 19 | "padding": true, |
| 20 | "margin": [ |
| 21 | "top", |
| 22 | "bottom" |
| 23 | ] |
| 24 | }, |
| 25 | "typography": { |
| 26 | "fontSize": true, |
| 27 | "lineHeight": true, |
| 28 | "__experimentalFontWeight": true |
| 29 | }, |
| 30 | "color": { |
| 31 | "text": true, |
| 32 | "background": false, |
| 33 | "enableContrastChecker": true |
| 34 | }, |
| 35 | "currencyConversion": true |
| 36 | }, |
| 37 | "textdomain": "surecart", |
| 38 | "editorScript": "file:./index.js", |
| 39 | "render": "file:./view.php", |
| 40 | "style": [ |
| 41 | "surecart-dropdown", |
| 42 | "surecart-button", |
| 43 | "file:./style-index.css" |
| 44 | ], |
| 45 | "viewScriptModule": [ |
| 46 | "@surecart/dropdown", |
| 47 | "file:./view.js" |
| 48 | ] |
| 49 | } |