| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/thumbnail-gallery", |
| 5 |
"title": "Thumbnail Gallery", |
| 6 |
"description": "Large main image with a scrollable thumbnail strip navigation.", |
| 7 |
"category": "bkbg-media", |
| 8 |
"icon": "format-gallery", |
| 9 |
"keywords": [ |
| 10 |
"gallery", |
| 11 |
"thumbnail", |
| 12 |
"images", |
| 13 |
"carousel", |
| 14 |
"lightbox" |
| 15 |
], |
| 16 |
"editorScript": "bkbg-thumbnail-gallery-editor", |
| 17 |
"editorStyle": "bkbg-thumbnail-gallery-style", |
| 18 |
"style": "bkbg-thumbnail-gallery-style", |
| 19 |
"viewScript": "bkbg-thumbnail-gallery-frontend", |
| 20 |
"supports": { |
| 21 |
"html": false, |
| 22 |
"anchor": true, |
| 23 |
"className": true, |
| 24 |
"align": [ |
| 25 |
"wide", |
| 26 |
"full" |
| 27 |
] |
| 28 |
}, |
| 29 |
"attributes": { |
| 30 |
"images": { |
| 31 |
"type": "array", |
| 32 |
"default": [ |
| 33 |
{ |
| 34 |
"url": "https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=80", |
| 35 |
"id": 0, |
| 36 |
"alt": "Mountain landscape", |
| 37 |
"caption": "Majestic mountain peaks at sunrise", |
| 38 |
"title": "Mountains" |
| 39 |
}, |
| 40 |
{ |
| 41 |
"url": "https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1200&q=80", |
| 42 |
"id": 0, |
| 43 |
"alt": "Forest path", |
| 44 |
"caption": "Misty forest trail in the morning", |
| 45 |
"title": "Forest" |
| 46 |
}, |
| 47 |
{ |
| 48 |
"url": "https://images.unsplash.com/photo-1518020382113-a7e8fc38eac9?w=1200&q=80", |
| 49 |
"id": 0, |
| 50 |
"alt": "Ocean view", |
| 51 |
"caption": "Crystal clear waters of the coast", |
| 52 |
"title": "Ocean" |
| 53 |
}, |
| 54 |
{ |
| 55 |
"url": "https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=1200&q=80", |
| 56 |
"id": 0, |
| 57 |
"alt": "Wildflowers", |
| 58 |
"caption": "Vibrant wildflower meadow in bloom", |
| 59 |
"title": "Wildflowers" |
| 60 |
}, |
| 61 |
{ |
| 62 |
"url": "https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1200&q=80", |
| 63 |
"id": 0, |
| 64 |
"alt": "Desert dunes", |
| 65 |
"caption": "Golden sand dunes at dusk", |
| 66 |
"title": "Desert" |
| 67 |
}, |
| 68 |
{ |
| 69 |
"url": "https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=1200&q=80", |
| 70 |
"id": 0, |
| 71 |
"alt": "River valley", |
| 72 |
"caption": "Serene river winding through the valley", |
| 73 |
"title": "River" |
| 74 |
} |
| 75 |
] |
| 76 |
}, |
| 77 |
"thumbPosition": { |
| 78 |
"type": "string", |
| 79 |
"default": "bottom" |
| 80 |
}, |
| 81 |
"thumbSize": { |
| 82 |
"type": "number", |
| 83 |
"default": 72 |
| 84 |
}, |
| 85 |
"thumbGap": { |
| 86 |
"type": "number", |
| 87 |
"default": 8 |
| 88 |
}, |
| 89 |
"thumbBorderRadius": { |
| 90 |
"type": "number", |
| 91 |
"default": 6 |
| 92 |
}, |
| 93 |
"mainAspect": { |
| 94 |
"type": "string", |
| 95 |
"default": "16/9" |
| 96 |
}, |
| 97 |
"mainBorderRadius": { |
| 98 |
"type": "number", |
| 99 |
"default": 12 |
| 100 |
}, |
| 101 |
"mainObjectFit": { |
| 102 |
"type": "string", |
| 103 |
"default": "cover" |
| 104 |
}, |
| 105 |
"showCaptions": { |
| 106 |
"type": "boolean", |
| 107 |
"default": true |
| 108 |
}, |
| 109 |
"showCounter": { |
| 110 |
"type": "boolean", |
| 111 |
"default": true |
| 112 |
}, |
| 113 |
"showZoom": { |
| 114 |
"type": "boolean", |
| 115 |
"default": true |
| 116 |
}, |
| 117 |
"showArrows": { |
| 118 |
"type": "boolean", |
| 119 |
"default": true |
| 120 |
}, |
| 121 |
"animationType": { |
| 122 |
"type": "string", |
| 123 |
"default": "fade" |
| 124 |
}, |
| 125 |
"autoPlay": { |
| 126 |
"type": "boolean", |
| 127 |
"default": false |
| 128 |
}, |
| 129 |
"autoPlayDelay": { |
| 130 |
"type": "number", |
| 131 |
"default": 4000 |
| 132 |
}, |
| 133 |
"thumbActiveBorderWidth": { |
| 134 |
"type": "number", |
| 135 |
"default": 2 |
| 136 |
}, |
| 137 |
"maxWidth": { |
| 138 |
"type": "number", |
| 139 |
"default": 900 |
| 140 |
}, |
| 141 |
"paddingTop": { |
| 142 |
"type": "number", |
| 143 |
"default": 0 |
| 144 |
}, |
| 145 |
"paddingBottom": { |
| 146 |
"type": "number", |
| 147 |
"default": 0 |
| 148 |
}, |
| 149 |
"bgColor": { |
| 150 |
"type": "string", |
| 151 |
"default": "" |
| 152 |
}, |
| 153 |
"mainBg": { |
| 154 |
"type": "string", |
| 155 |
"default": "#000000" |
| 156 |
}, |
| 157 |
"captionBg": { |
| 158 |
"type": "string", |
| 159 |
"default": "rgba(0,0,0,0.6)" |
| 160 |
}, |
| 161 |
"captionColor": { |
| 162 |
"type": "string", |
| 163 |
"default": "#ffffff" |
| 164 |
}, |
| 165 |
"counterBg": { |
| 166 |
"type": "string", |
| 167 |
"default": "rgba(0,0,0,0.55)" |
| 168 |
}, |
| 169 |
"counterColor": { |
| 170 |
"type": "string", |
| 171 |
"default": "#ffffff" |
| 172 |
}, |
| 173 |
"thumbActiveBorder": { |
| 174 |
"type": "string", |
| 175 |
"default": "#6366f1" |
| 176 |
}, |
| 177 |
"thumbBg": { |
| 178 |
"type": "string", |
| 179 |
"default": "#e5e7eb" |
| 180 |
}, |
| 181 |
"arrowBg": { |
| 182 |
"type": "string", |
| 183 |
"default": "rgba(0,0,0,0.45)" |
| 184 |
}, |
| 185 |
"arrowColor": { |
| 186 |
"type": "string", |
| 187 |
"default": "#ffffff" |
| 188 |
}, |
| 189 |
"zoomIconColor": { |
| 190 |
"type": "string", |
| 191 |
"default": "#ffffff" |
| 192 |
}, |
| 193 |
"zoomIconBg": { |
| 194 |
"type": "string", |
| 195 |
"default": "rgba(0,0,0,0.45)" |
| 196 |
}, |
| 197 |
"captionTypo": { |
| 198 |
"type": "object", |
| 199 |
"default": {} |
| 200 |
}, |
| 201 |
"counterTypo": { |
| 202 |
"type": "object", |
| 203 |
"default": {} |
| 204 |
} |
| 205 |
} |
| 206 |
} |
| 207 |
|