block.json
1 year ago
controller.php
1 year 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.php
1 year ago
block.json
58 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/slide-out-cart-submit", |
| 5 | "title": "Cart Submit Button", |
| 6 | "description": "The cart submit button", |
| 7 | "textdomain": "surecart", |
| 8 | "version": "1.0.0", |
| 9 | "category": "surecart-cart", |
| 10 | "example": {}, |
| 11 | "ancestor": [ |
| 12 | "surecart/slide-out-cart" |
| 13 | ], |
| 14 | "attributes": { |
| 15 | "text": { |
| 16 | "type": "string", |
| 17 | "default": "Checkout" |
| 18 | }, |
| 19 | "border": { |
| 20 | "type": "boolean" |
| 21 | }, |
| 22 | "sectionBackgroundColor": { |
| 23 | "type": "string" |
| 24 | }, |
| 25 | "padding": { |
| 26 | "type": "object", |
| 27 | "default": { |
| 28 | "top": "1.25em", |
| 29 | "left": "1.25em", |
| 30 | "bottom": "1.25em", |
| 31 | "right": "1.25em" |
| 32 | } |
| 33 | } |
| 34 | }, |
| 35 | "supports": { |
| 36 | "interactivity": true, |
| 37 | "anchor": true, |
| 38 | "align": false, |
| 39 | "alignWide": false, |
| 40 | "html": false, |
| 41 | "inserter": false, |
| 42 | "multiple": false, |
| 43 | "__experimentalSelector": ".wp-block-button .wp-block-button__link", |
| 44 | "color": { |
| 45 | "__experimentalSkipSerialization": true, |
| 46 | "background": true, |
| 47 | "text": true |
| 48 | } |
| 49 | }, |
| 50 | "render": "file:./view.php", |
| 51 | "editorScript": "file:./index.js", |
| 52 | "style": [ |
| 53 | "surecart-wp-buttons", |
| 54 | "surecart-wp-button", |
| 55 | "file:./style-index.css", |
| 56 | "wp-block-button" |
| 57 | ] |
| 58 | } |