block.json
1 year ago
controller.php
1 year ago
index.asset.php
5 months ago
index.js
5 months ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
block.json
44 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/cart-icon", |
| 5 | "title": "Floating Cart Icon", |
| 6 | "description": "The cart icon that shows your cart quantity.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-cart", |
| 9 | "example": {}, |
| 10 | "attributes": {}, |
| 11 | "supports": { |
| 12 | "interactivity": true, |
| 13 | "inserter": false, |
| 14 | "spacing": { |
| 15 | "padding": true, |
| 16 | "margin": true, |
| 17 | "__experimentalDefaultControls": { |
| 18 | "padding": true, |
| 19 | "margin": true |
| 20 | } |
| 21 | }, |
| 22 | "color": { |
| 23 | "text": true, |
| 24 | "background": true |
| 25 | }, |
| 26 | "__experimentalBorder": { |
| 27 | "width": true, |
| 28 | "color": true, |
| 29 | "__experimentalDefaultControls": { |
| 30 | "width": true, |
| 31 | "color": true |
| 32 | } |
| 33 | } |
| 34 | }, |
| 35 | "render": "file:./view.php", |
| 36 | "textdomain": "surecart", |
| 37 | "editorScript": "file:./index.js", |
| 38 | "style": [ |
| 39 | "file:./style-index.css" |
| 40 | ], |
| 41 | "viewScriptModule": [ |
| 42 | "@surecart/checkout" |
| 43 | ] |
| 44 | } |