block.json
6 months ago
controller.php
6 months ago
index.asset.php
4 months ago
index.js
4 months ago
style-index-rtl.css
6 months ago
style-index.css
6 months ago
view.php
6 months ago
block.json
63 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/cart-order-bump-image", |
| 5 | "title": "Order Bump Image", |
| 6 | "description": "Display the order bump product image.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-cart", |
| 9 | "ancestor": [ |
| 10 | "surecart/cart-order-bump-template" |
| 11 | ], |
| 12 | "attributes": { |
| 13 | "sizing": { |
| 14 | "type": "string", |
| 15 | "default": "cover" |
| 16 | }, |
| 17 | "aspectRatio": { |
| 18 | "type": "string", |
| 19 | "default": "1" |
| 20 | }, |
| 21 | "width": { |
| 22 | "type": "string" |
| 23 | }, |
| 24 | "height": { |
| 25 | "type": "string" |
| 26 | } |
| 27 | }, |
| 28 | "supports": { |
| 29 | "interactivity": true, |
| 30 | "align": [ |
| 31 | "left", |
| 32 | "center", |
| 33 | "right", |
| 34 | "wide", |
| 35 | "full" |
| 36 | ], |
| 37 | "color": { |
| 38 | "text": false, |
| 39 | "background": false |
| 40 | }, |
| 41 | "filter": { |
| 42 | "duotone": true |
| 43 | }, |
| 44 | "spacing": { |
| 45 | "margin": true |
| 46 | }, |
| 47 | "__experimentalBorder": { |
| 48 | "color": true, |
| 49 | "radius": true, |
| 50 | "width": true, |
| 51 | "__experimentalSkipSerialization": true, |
| 52 | "__experimentalDefaultControls": { |
| 53 | "color": true, |
| 54 | "radius": true, |
| 55 | "width": true |
| 56 | } |
| 57 | } |
| 58 | }, |
| 59 | "render": "file:./view.php", |
| 60 | "textdomain": "surecart", |
| 61 | "editorScript": "file:./index.js", |
| 62 | "style": "file:./style-index.css" |
| 63 | } |