block.json
35 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "srfm/payment-history", |
| 5 | "title": "Payment History", |
| 6 | "description": "Display subscriptions and payment history for logged-in users with detail overlays and subscription management.", |
| 7 | "category": "sureforms", |
| 8 | "keywords": [ "payment", "history", "transactions", "account", "billing" ], |
| 9 | "textdomain": "sureforms", |
| 10 | "supports": { |
| 11 | "reusable": false, |
| 12 | "html": false, |
| 13 | "multiple": false |
| 14 | }, |
| 15 | "example": { |
| 16 | "attributes": { |
| 17 | "isPreview": true |
| 18 | } |
| 19 | }, |
| 20 | "attributes": { |
| 21 | "isPreview": { |
| 22 | "type": "boolean", |
| 23 | "default": false |
| 24 | }, |
| 25 | "perPage": { |
| 26 | "type": "number", |
| 27 | "default": 10 |
| 28 | }, |
| 29 | "showSubscription": { |
| 30 | "type": "boolean", |
| 31 | "default": true |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |