| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/text-path", |
| 5 |
"title": "Text Path", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"description": "Render text along a curved SVG path — arc, wave, circle or S-curve.", |
| 8 |
"keywords": [ |
| 9 |
"text", |
| 10 |
"path", |
| 11 |
"svg", |
| 12 |
"curve", |
| 13 |
"arc", |
| 14 |
"wave", |
| 15 |
"circle", |
| 16 |
"typography" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-text-path-editor", |
| 20 |
"style": "bkbg-text-path-style", |
| 21 |
"viewScript": "bkbg-text-path-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"text": { |
| 33 |
"type": "string", |
| 34 |
"default": "Your Curved Text Goes Here • Beautiful Typography •" |
| 35 |
}, |
| 36 |
"pathType": { |
| 37 |
"type": "string", |
| 38 |
"default": "arc" |
| 39 |
}, |
| 40 |
"svgWidth": { |
| 41 |
"type": "number", |
| 42 |
"default": 800 |
| 43 |
}, |
| 44 |
"svgHeight": { |
| 45 |
"type": "number", |
| 46 |
"default": 200 |
| 47 |
}, |
| 48 |
"arcRadius": { |
| 49 |
"type": "number", |
| 50 |
"default": 300 |
| 51 |
}, |
| 52 |
"arcDirection": { |
| 53 |
"type": "string", |
| 54 |
"default": "top" |
| 55 |
}, |
| 56 |
"waveAmplitude": { |
| 57 |
"type": "number", |
| 58 |
"default": 40 |
| 59 |
}, |
| 60 |
"waveFrequency": { |
| 61 |
"type": "number", |
| 62 |
"default": 2 |
| 63 |
}, |
| 64 |
"startOffset": { |
| 65 |
"type": "number", |
| 66 |
"default": 10 |
| 67 |
}, |
| 68 |
"titleTypo": { |
| 69 |
"type": "object", |
| 70 |
"default": {} |
| 71 |
}, |
| 72 |
"textAnchor": { |
| 73 |
"type": "string", |
| 74 |
"default": "start" |
| 75 |
}, |
| 76 |
"showPath": { |
| 77 |
"type": "boolean", |
| 78 |
"default": false |
| 79 |
}, |
| 80 |
"pathStrokeColor": { |
| 81 |
"type": "string", |
| 82 |
"default": "#e2e8f0" |
| 83 |
}, |
| 84 |
"pathStrokeWidth": { |
| 85 |
"type": "number", |
| 86 |
"default": 1 |
| 87 |
}, |
| 88 |
"animate": { |
| 89 |
"type": "boolean", |
| 90 |
"default": false |
| 91 |
}, |
| 92 |
"animateDuration": { |
| 93 |
"type": "number", |
| 94 |
"default": 12 |
| 95 |
}, |
| 96 |
"repeatCount": { |
| 97 |
"type": "string", |
| 98 |
"default": "indefinite" |
| 99 |
}, |
| 100 |
"textColor": { |
| 101 |
"type": "string", |
| 102 |
"default": "#0f172a" |
| 103 |
}, |
| 104 |
"sectionBg": { |
| 105 |
"type": "string", |
| 106 |
"default": "" |
| 107 |
}, |
| 108 |
"align2": { |
| 109 |
"type": "string", |
| 110 |
"default": "center" |
| 111 |
} |
| 112 |
} |
| 113 |
} |
| 114 |
|