block.json in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites 1.0.1, at src/blocks/image-carousel/block.json
| 1 | { |
| 2 | "name": "blockspare/blockspare-carousel", |
| 3 | "category": "blockspare", |
| 4 | "attributes": { |
| 5 | "align": { |
| 6 | "type": "string" |
| 7 | }, |
| 8 | "images": { |
| 9 | "type": "array", |
| 10 | "default": [], |
| 11 | "selector": "img", |
| 12 | "query": { |
| 13 | "url": { |
| 14 | "type": "string", |
| 15 | "source": "attribute", |
| 16 | "attribute": "src" |
| 17 | }, |
| 18 | "alt": { |
| 19 | "type": "string", |
| 20 | "source": "attribute", |
| 21 | "attribute": "alt", |
| 22 | "default": "" |
| 23 | }, |
| 24 | "id": { |
| 25 | "type": "string", |
| 26 | "source": "attribute", |
| 27 | "attribute": "data-id" |
| 28 | }, |
| 29 | "width": { |
| 30 | "type": "string", |
| 31 | "source": "attribute", |
| 32 | "attribute": "data-width" |
| 33 | } |
| 34 | } |
| 35 | }, |
| 36 | "imageSize": { |
| 37 | "type": "string", |
| 38 | "default": "thumbnail" |
| 39 | }, |
| 40 | "showsliderNextPrev":{ |
| 41 | "type": "boolean", |
| 42 | "default": true |
| 43 | }, |
| 44 | "showDots":{ |
| 45 | "type": "boolean", |
| 46 | "default": false |
| 47 | }, |
| 48 | "numberofSlide":{ |
| 49 | "type": "number", |
| 50 | "default": 2 |
| 51 | }, |
| 52 | "enableAutoPlay": { |
| 53 | "type": "boolean", |
| 54 | "default": true |
| 55 | }, |
| 56 | "carouselSpeed":{ |
| 57 | "type": "number", |
| 58 | "default": "1000" |
| 59 | }, |
| 60 | "carouselNextIcon":{ |
| 61 | "type": "string", |
| 62 | "default": "fas fa-chevron-right" |
| 63 | }, |
| 64 | |
| 65 | "navigationColor":{ |
| 66 | "type": "string", |
| 67 | "default": "#fff" |
| 68 | }, |
| 69 | "gutterSpace": { |
| 70 | "type": "number", |
| 71 | "default": 1 |
| 72 | }, |
| 73 | "colorFilter": { |
| 74 | "type": "string", |
| 75 | "default": "blockspare-original" |
| 76 | }, |
| 77 | "showOriginalOnHover": { |
| 78 | "type": "boolean", |
| 79 | "default": false |
| 80 | }, |
| 81 | "navigationSize": { |
| 82 | "type": "string", |
| 83 | "default": "blockspare-navigation-small" |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 |