| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/creative-button", |
| 5 |
"title": "Creative Button", |
| 6 |
"description": "A single button with 6 advanced hover effect styles — fill slide, color wipe, 3D press, arrow reveal, ripple, and outline morph. Perfect for standout calls-to-action.", |
| 7 |
"category": "bkbg-effects", |
| 8 |
"textdomain": "blockenberg", |
| 9 |
"editorScript": "bkbg-creative-button-editor", |
| 10 |
"style": "bkbg-creative-button-style", |
| 11 |
"viewScript": "bkbg-creative-button-frontend", |
| 12 |
"icon": "button", |
| 13 |
"supports": { |
| 14 |
"html": false, |
| 15 |
"anchor": true, |
| 16 |
"className": true, |
| 17 |
"align": [ |
| 18 |
"wide", |
| 19 |
"full" |
| 20 |
] |
| 21 |
}, |
| 22 |
"attributes": { |
| 23 |
"label": { |
| 24 |
"type": "string", |
| 25 |
"default": "Get Started" |
| 26 |
}, |
| 27 |
"url": { |
| 28 |
"type": "string", |
| 29 |
"default": "#" |
| 30 |
}, |
| 31 |
"openNewTab": { |
| 32 |
"type": "boolean", |
| 33 |
"default": false |
| 34 |
}, |
| 35 |
"hoverEffect": { |
| 36 |
"type": "string", |
| 37 |
"default": "slide" |
| 38 |
}, |
| 39 |
"buttonStyle": { |
| 40 |
"type": "string", |
| 41 |
"default": "filled" |
| 42 |
}, |
| 43 |
"corners": { |
| 44 |
"type": "string", |
| 45 |
"default": "rounded" |
| 46 |
}, |
| 47 |
"icon": { |
| 48 |
"type": "string", |
| 49 |
"default": "→" |
| 50 |
}, |
| 51 |
"iconType": { |
| 52 |
"type": "string", |
| 53 |
"default": "custom-char" |
| 54 |
}, |
| 55 |
"iconDashicon": { |
| 56 |
"type": "string", |
| 57 |
"default": "arrow-right-alt" |
| 58 |
}, |
| 59 |
"iconImageUrl": { |
| 60 |
"type": "string", |
| 61 |
"default": "" |
| 62 |
}, |
| 63 |
"showIcon": { |
| 64 |
"type": "boolean", |
| 65 |
"default": true |
| 66 |
}, |
| 67 |
"iconPosition": { |
| 68 |
"type": "string", |
| 69 |
"default": "right" |
| 70 |
}, |
| 71 |
"fullWidth": { |
| 72 |
"type": "boolean", |
| 73 |
"default": false |
| 74 |
}, |
| 75 |
"centered": { |
| 76 |
"type": "boolean", |
| 77 |
"default": true |
| 78 |
}, |
| 79 |
"bgColor": { |
| 80 |
"type": "string", |
| 81 |
"default": "#7c3aed" |
| 82 |
}, |
| 83 |
"textColor": { |
| 84 |
"type": "string", |
| 85 |
"default": "#ffffff" |
| 86 |
}, |
| 87 |
"hoverBg": { |
| 88 |
"type": "string", |
| 89 |
"default": "#4f46e5" |
| 90 |
}, |
| 91 |
"hoverColor": { |
| 92 |
"type": "string", |
| 93 |
"default": "#ffffff" |
| 94 |
}, |
| 95 |
"borderColor": { |
| 96 |
"type": "string", |
| 97 |
"default": "#7c3aed" |
| 98 |
}, |
| 99 |
"borderWidth": { |
| 100 |
"type": "number", |
| 101 |
"default": 2 |
| 102 |
}, |
| 103 |
"gradientFrom": { |
| 104 |
"type": "string", |
| 105 |
"default": "#7c3aed" |
| 106 |
}, |
| 107 |
"gradientTo": { |
| 108 |
"type": "string", |
| 109 |
"default": "#2563eb" |
| 110 |
}, |
| 111 |
"fontSize": { |
| 112 |
"type": "number", |
| 113 |
"default": 16 |
| 114 |
}, |
| 115 |
"paddingH": { |
| 116 |
"type": "number", |
| 117 |
"default": 32 |
| 118 |
}, |
| 119 |
"paddingV": { |
| 120 |
"type": "number", |
| 121 |
"default": 14 |
| 122 |
}, |
| 123 |
"iconSize": { |
| 124 |
"type": "number", |
| 125 |
"default": 16 |
| 126 |
}, |
| 127 |
"typoBtn": { |
| 128 |
"type": "object", |
| 129 |
"default": {} |
| 130 |
} |
| 131 |
} |
| 132 |
} |
| 133 |
|