block.json
5 months ago
index.asset.php
4 months ago
index.js
4 months ago
style-index-rtl.css
4 months ago
style-index.css
4 months ago
view.php
5 months ago
block.json
76 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-quantity-control", |
| 5 | "title": "Control", |
| 6 | "description": "Display the product quantity control", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "icon": "media-interactive", |
| 10 | "ancestor": [ |
| 11 | "surecart/product-quantity" |
| 12 | ], |
| 13 | "keywords": [ |
| 14 | "quantity", |
| 15 | "form", |
| 16 | "product" |
| 17 | ], |
| 18 | "attributes": { |
| 19 | "width": { |
| 20 | "type": "string" |
| 21 | } |
| 22 | }, |
| 23 | "supports": { |
| 24 | "interactivity": true, |
| 25 | "dimensions": { |
| 26 | "minHeight": true, |
| 27 | "width": true |
| 28 | }, |
| 29 | "layout": { |
| 30 | "allowSizingOnChildren": true, |
| 31 | "allowSwitching": true, |
| 32 | "allowInheriting": true, |
| 33 | "default": { |
| 34 | "type": "flex", |
| 35 | "orientation": "horizontal", |
| 36 | "verticalAlignment": "center", |
| 37 | "horizontalAlignment": "space-between", |
| 38 | "flexWrap": "nowrap", |
| 39 | "justifyContent": "space-between" |
| 40 | } |
| 41 | }, |
| 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 | "shadow": true, |
| 59 | "spacing": { |
| 60 | "padding": true, |
| 61 | "margin": true, |
| 62 | "blockGap": true |
| 63 | }, |
| 64 | "color": true, |
| 65 | "__experimentalBorder": { |
| 66 | "radius": true, |
| 67 | "color": true, |
| 68 | "style": true, |
| 69 | "width": true |
| 70 | } |
| 71 | }, |
| 72 | "textdomain": "surecart", |
| 73 | "render": "file:./view.php", |
| 74 | "editorScript": "file:./index.js", |
| 75 | "style": "file:./style-index.css" |
| 76 | } |