block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
block.json
65 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/slide-out-cart-message", |
| 5 | "title": "Cart Message", |
| 6 | "description": "Display a custom message in the cart", |
| 7 | "category": "surecart-cart", |
| 8 | "version": "1.0.0", |
| 9 | "example": {}, |
| 10 | "textdomain": "surecart", |
| 11 | "ancestor": [ |
| 12 | "surecart/slide-out-cart" |
| 13 | ], |
| 14 | "attributes": { |
| 15 | "text": { |
| 16 | "type": "string" |
| 17 | }, |
| 18 | "border": { |
| 19 | "type": "boolean", |
| 20 | "default": true |
| 21 | }, |
| 22 | "padding": { |
| 23 | "type": "object", |
| 24 | "default": { |
| 25 | "top": "1.25em", |
| 26 | "left": "1.25em", |
| 27 | "bottom": "1.25em", |
| 28 | "right": "1.25em" |
| 29 | } |
| 30 | }, |
| 31 | "backgroundColor": { |
| 32 | "type": "string" |
| 33 | }, |
| 34 | "textColor": { |
| 35 | "type": "string" |
| 36 | } |
| 37 | }, |
| 38 | "supports": { |
| 39 | "interactivity": true, |
| 40 | "html": false, |
| 41 | "multiple": false, |
| 42 | "typography": { |
| 43 | "fontSize": true, |
| 44 | "lineHeight": true, |
| 45 | "textAlign": true, |
| 46 | "__experimentalFontFamily": true, |
| 47 | "__experimentalFontWeight": true, |
| 48 | "__experimentalFontStyle": true, |
| 49 | "__experimentalTextTransform": true, |
| 50 | "__experimentalTextDecoration": true, |
| 51 | "__experimentalLetterSpacing": true, |
| 52 | "__experimentalDefaultControls": { |
| 53 | "fontSize": true, |
| 54 | "fontAppearance": true, |
| 55 | "textTransform": true |
| 56 | } |
| 57 | } |
| 58 | }, |
| 59 | "render": "file:./view.php", |
| 60 | "editorScript": "file:./index.js", |
| 61 | "style": [ |
| 62 | "surecart-text", |
| 63 | "file:./style-index.css" |
| 64 | ] |
| 65 | } |