block.json
1 year ago
controller.php
5 months ago
index-rtl.css
1 year ago
index.asset.php
1 month ago
index.css
1 year ago
index.js
1 month ago
style-index-rtl.css
4 months ago
style-index.css
4 months ago
view.php
5 months ago
block.json
83 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/slide-out-cart", |
| 5 | "title": "Cart", |
| 6 | "description": "Display SureCart slide out cart", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-cart", |
| 9 | "icon": "media-interactive", |
| 10 | "example": {}, |
| 11 | "attributes": { |
| 12 | "title": { |
| 13 | "type": "string", |
| 14 | "default": "Cart" |
| 15 | }, |
| 16 | "width": { |
| 17 | "type": "string", |
| 18 | "default": "525px" |
| 19 | } |
| 20 | }, |
| 21 | "supports": { |
| 22 | "interactivity": true, |
| 23 | "layout": { |
| 24 | "__experimentalDefault": "grid", |
| 25 | "__experimentalDefaultControls": { |
| 26 | "layout": true |
| 27 | } |
| 28 | }, |
| 29 | "__experimentalBorder": { |
| 30 | "color": true, |
| 31 | "radius": true, |
| 32 | "style": true, |
| 33 | "width": true, |
| 34 | "__experimentalDefaultControls": { |
| 35 | "color": true, |
| 36 | "radius": true, |
| 37 | "style": true, |
| 38 | "width": true |
| 39 | } |
| 40 | }, |
| 41 | "html": false, |
| 42 | "multiple": false, |
| 43 | "spacing": { |
| 44 | "padding": true, |
| 45 | "margin": true, |
| 46 | "blockGap": true |
| 47 | }, |
| 48 | "currencyConversion": true, |
| 49 | "typography": { |
| 50 | "fontSize": true, |
| 51 | "lineHeight": false, |
| 52 | "textAlign": false |
| 53 | }, |
| 54 | "color": { |
| 55 | "text": true, |
| 56 | "background": true, |
| 57 | "enableContrastChecker": true |
| 58 | } |
| 59 | }, |
| 60 | "render": "file:./view.php", |
| 61 | "textdomain": "surecart", |
| 62 | "editorScript": "file:./index.js", |
| 63 | "style": [ |
| 64 | "surecart-drawer", |
| 65 | "surecart-block-ui", |
| 66 | "surecart-alert", |
| 67 | "file:./style-index.css", |
| 68 | "surecart-theme-base" |
| 69 | ], |
| 70 | "editorStyle": [ |
| 71 | "file:./index.css" |
| 72 | ], |
| 73 | "viewScript": [ |
| 74 | "wp-url", |
| 75 | "wp-api-fetch", |
| 76 | "wp-i18n", |
| 77 | "wp-a11y" |
| 78 | ], |
| 79 | "viewScriptModule": [ |
| 80 | "@surecart/checkout", |
| 81 | "@surecart/cart" |
| 82 | ] |
| 83 | } |