| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/ticket-stub", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Ticket Stub", |
| 7 |
"category": "bkbg-marketing", |
| 8 |
"icon": "tickets-alt", |
| 9 |
"description": "Stylized event ticket card with tear-off stub showing seat, row, section, barcode, and key event details.", |
| 10 |
"keywords": [ |
| 11 |
"ticket", |
| 12 |
"event", |
| 13 |
"stub", |
| 14 |
"admission", |
| 15 |
"concert", |
| 16 |
"venue" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-ticket-stub-editor", |
| 20 |
"style": "bkbg-ticket-stub-style", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"align": [ |
| 24 |
"wide", |
| 25 |
"full" |
| 26 |
] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"eventName": { |
| 30 |
"type": "string", |
| 31 |
"default": "Summer Music Festival" |
| 32 |
}, |
| 33 |
"tagline": { |
| 34 |
"type": "string", |
| 35 |
"default": "General Admission" |
| 36 |
}, |
| 37 |
"eventDate": { |
| 38 |
"type": "string", |
| 39 |
"default": "August 15, 2025" |
| 40 |
}, |
| 41 |
"eventTime": { |
| 42 |
"type": "string", |
| 43 |
"default": "7:00 PM" |
| 44 |
}, |
| 45 |
"venue": { |
| 46 |
"type": "string", |
| 47 |
"default": "Central Park, New York" |
| 48 |
}, |
| 49 |
"price": { |
| 50 |
"type": "string", |
| 51 |
"default": "$85.00" |
| 52 |
}, |
| 53 |
"logoEmoji": { |
| 54 |
"type": "string", |
| 55 |
"default": "🎵" |
| 56 |
}, |
| 57 |
"logoEmojiType": { |
| 58 |
"type": "string", |
| 59 |
"default": "custom-char" |
| 60 |
}, |
| 61 |
"logoEmojiDashicon": { |
| 62 |
"type": "string", |
| 63 |
"default": "" |
| 64 |
}, |
| 65 |
"logoEmojiImageUrl": { |
| 66 |
"type": "string", |
| 67 |
"default": "" |
| 68 |
}, |
| 69 |
"seatSection": { |
| 70 |
"type": "string", |
| 71 |
"default": "A" |
| 72 |
}, |
| 73 |
"seatRow": { |
| 74 |
"type": "string", |
| 75 |
"default": "12" |
| 76 |
}, |
| 77 |
"seatNumber": { |
| 78 |
"type": "string", |
| 79 |
"default": "24" |
| 80 |
}, |
| 81 |
"ticketNumber": { |
| 82 |
"type": "string", |
| 83 |
"default": "#00847" |
| 84 |
}, |
| 85 |
"showPrice": { |
| 86 |
"type": "boolean", |
| 87 |
"default": true |
| 88 |
}, |
| 89 |
"showBarcode": { |
| 90 |
"type": "boolean", |
| 91 |
"default": true |
| 92 |
}, |
| 93 |
"showSection": { |
| 94 |
"type": "boolean", |
| 95 |
"default": true |
| 96 |
}, |
| 97 |
"accentColor": { |
| 98 |
"type": "string", |
| 99 |
"default": "#6d28d9" |
| 100 |
}, |
| 101 |
"bgColor": { |
| 102 |
"type": "string", |
| 103 |
"default": "#1e1b4b" |
| 104 |
}, |
| 105 |
"textColor": { |
| 106 |
"type": "string", |
| 107 |
"default": "#ffffff" |
| 108 |
}, |
| 109 |
"stubBg": { |
| 110 |
"type": "string", |
| 111 |
"default": "#4c1d95" |
| 112 |
}, |
| 113 |
"titleTypo": { |
| 114 |
"type": "object", |
| 115 |
"default": {} |
| 116 |
}, |
| 117 |
"bodyTypo": { |
| 118 |
"type": "object", |
| 119 |
"default": {} |
| 120 |
} |
| 121 |
} |
| 122 |
} |
| 123 |
|