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
75 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-review-form-content", |
| 5 | "title": "Review Form Content", |
| 6 | "description": "Provide a content textarea field for product reviews.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "example": {}, |
| 10 | "ancestor": [ |
| 11 | "surecart/product-review-form" |
| 12 | ], |
| 13 | "attributes": { |
| 14 | "label": { |
| 15 | "type": "string", |
| 16 | "default": "Your review" |
| 17 | }, |
| 18 | "placeholder": { |
| 19 | "type": "string", |
| 20 | "default": "" |
| 21 | }, |
| 22 | "rows": { |
| 23 | "type": "number", |
| 24 | "default": 4 |
| 25 | }, |
| 26 | "text_align": { |
| 27 | "type": "string" |
| 28 | } |
| 29 | }, |
| 30 | "supports": { |
| 31 | "interactivity": true, |
| 32 | "color": { |
| 33 | "gradients": true, |
| 34 | "link": false, |
| 35 | "__experimentalDefaultControls": { |
| 36 | "background": true, |
| 37 | "text": true |
| 38 | } |
| 39 | }, |
| 40 | "spacing": { |
| 41 | "margin": true, |
| 42 | "padding": true, |
| 43 | "__experimentalDefaultControls": { |
| 44 | "padding": true |
| 45 | } |
| 46 | }, |
| 47 | "typography": { |
| 48 | "fontSize": true, |
| 49 | "lineHeight": true, |
| 50 | "__experimentalFontWeight": true |
| 51 | }, |
| 52 | "__experimentalBorder": { |
| 53 | "color": true, |
| 54 | "radius": true, |
| 55 | "style": true, |
| 56 | "width": true, |
| 57 | "__experimentalDefaultControls": { |
| 58 | "color": true, |
| 59 | "radius": true, |
| 60 | "style": true, |
| 61 | "width": true |
| 62 | } |
| 63 | } |
| 64 | }, |
| 65 | "textdomain": "surecart", |
| 66 | "render": "file:./view.php", |
| 67 | "editorScript": "file:./index.js", |
| 68 | "style": [ |
| 69 | "surecart-form-control", |
| 70 | "file:./style-index.css" |
| 71 | ], |
| 72 | "viewScriptModule": [ |
| 73 | "@surecart/product-review-form" |
| 74 | ] |
| 75 | } |