| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockspare/blockspare-carousel", |
| 5 |
"title": "Image Carousel", |
| 6 |
"category": "blockspare", |
| 7 |
"description": "Image carousel with customizable transition effects and navigation controls.", |
| 8 |
"supports": { |
| 9 |
"align": [ |
| 10 |
"wide", |
| 11 |
"full", |
| 12 |
"center" |
| 13 |
] |
| 14 |
}, |
| 15 |
"attributes": { |
| 16 |
"align": { |
| 17 |
"type": "string" |
| 18 |
}, |
| 19 |
"animation": { |
| 20 |
"type": "string", |
| 21 |
"default": "" |
| 22 |
}, |
| 23 |
"images": { |
| 24 |
"type": "array", |
| 25 |
"default": [], |
| 26 |
"selector": "img", |
| 27 |
"query": { |
| 28 |
"url": { |
| 29 |
"type": "string", |
| 30 |
"source": "attribute", |
| 31 |
"attribute": "src" |
| 32 |
}, |
| 33 |
"alt": { |
| 34 |
"type": "string", |
| 35 |
"source": "attribute", |
| 36 |
"attribute": "alt", |
| 37 |
"default": "" |
| 38 |
}, |
| 39 |
"id": { |
| 40 |
"type": "string", |
| 41 |
"source": "attribute", |
| 42 |
"attribute": "data-id" |
| 43 |
}, |
| 44 |
"width": { |
| 45 |
"type": "string", |
| 46 |
"source": "attribute", |
| 47 |
"attribute": "data-width" |
| 48 |
} |
| 49 |
} |
| 50 |
}, |
| 51 |
"imageSize": { |
| 52 |
"type": "string", |
| 53 |
"default": "thumbnail" |
| 54 |
}, |
| 55 |
"showsliderNextPrev": { |
| 56 |
"type": "boolean", |
| 57 |
"default": true |
| 58 |
}, |
| 59 |
"showDots": { |
| 60 |
"type": "boolean", |
| 61 |
"default": false |
| 62 |
}, |
| 63 |
"numberofSlide": { |
| 64 |
"type": "number", |
| 65 |
"default": 2 |
| 66 |
}, |
| 67 |
"enableAutoPlay": { |
| 68 |
"type": "boolean", |
| 69 |
"default": true |
| 70 |
}, |
| 71 |
"carouselSpeed": { |
| 72 |
"type": "number", |
| 73 |
"default": "1000" |
| 74 |
}, |
| 75 |
"carouselNextIcon": { |
| 76 |
"type": "string", |
| 77 |
"default": "fas fa-chevron-right" |
| 78 |
}, |
| 79 |
"navigationColor": { |
| 80 |
"type": "string", |
| 81 |
"default": "#000" |
| 82 |
}, |
| 83 |
"gutterSpace": { |
| 84 |
"type": "number", |
| 85 |
"default": 1 |
| 86 |
}, |
| 87 |
"colorFilter": { |
| 88 |
"type": "string", |
| 89 |
"default": "blockspare-original" |
| 90 |
}, |
| 91 |
"showOriginalOnHover": { |
| 92 |
"type": "boolean", |
| 93 |
"default": false |
| 94 |
}, |
| 95 |
"navigationSize": { |
| 96 |
"type": "string", |
| 97 |
"default": "blockspare-navigation-small" |
| 98 |
}, |
| 99 |
"navigationShape": { |
| 100 |
"type": "string", |
| 101 |
"default": "lpc-navigation-1" |
| 102 |
}, |
| 103 |
"navigationShapeColor": { |
| 104 |
"type": "string", |
| 105 |
"default": "#fff" |
| 106 |
}, |
| 107 |
"marginTop": { |
| 108 |
"type": "number", |
| 109 |
"default": 30 |
| 110 |
}, |
| 111 |
"marginRight": { |
| 112 |
"type": "number", |
| 113 |
"default": 0 |
| 114 |
}, |
| 115 |
"marginBottom": { |
| 116 |
"type": "number", |
| 117 |
"default": 30 |
| 118 |
}, |
| 119 |
"marginLeft": { |
| 120 |
"type": "number", |
| 121 |
"default": 0 |
| 122 |
}, |
| 123 |
"enableEqualHeight": { |
| 124 |
"type": "boolean", |
| 125 |
"default": true |
| 126 |
}, |
| 127 |
"borderRadius": { |
| 128 |
"type": "number", |
| 129 |
"default": 0 |
| 130 |
}, |
| 131 |
"uniqueClass": { |
| 132 |
"type": "string", |
| 133 |
"default": "" |
| 134 |
}, |
| 135 |
"blockHoverEffect": { |
| 136 |
"type": "string", |
| 137 |
"default": "" |
| 138 |
}, |
| 139 |
"imageHoverEffect": { |
| 140 |
"type": "string", |
| 141 |
"default": "" |
| 142 |
} |
| 143 |
}, |
| 144 |
"editorScript": "file:./index.js", |
| 145 |
"editorStyle": "file:./index.css", |
| 146 |
"style": "file:./style-index.css", |
| 147 |
"viewScript": "file:./view.js" |
| 148 |
} |