block.json
2 years ago
view.asset.php
2 years ago
view.css
2 years ago
view.js
2 years ago
view.rtl.css
2 years ago
block.json
189 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/tiled-gallery", |
| 5 | "title": "Tiled Gallery", |
| 6 | "description": "Display multiple images in an elegantly organized tiled layout.", |
| 7 | "keywords": [ |
| 8 | "columns", |
| 9 | "images", |
| 10 | "photos", |
| 11 | "pictures", |
| 12 | "square", |
| 13 | "circle", |
| 14 | "mosaic" |
| 15 | ], |
| 16 | "version": "12.5.0", |
| 17 | "textdomain": "jetpack", |
| 18 | "category": "media", |
| 19 | "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z'/></svg>", |
| 20 | "supports": { |
| 21 | "align": [ |
| 22 | "center", |
| 23 | "wide", |
| 24 | "full" |
| 25 | ], |
| 26 | "color": { |
| 27 | "gradients": true, |
| 28 | "text": false |
| 29 | }, |
| 30 | "customClassName": false, |
| 31 | "html": false, |
| 32 | "spacing": { |
| 33 | "margin": true, |
| 34 | "padding": true |
| 35 | }, |
| 36 | "__experimentalHideChildBlockControls": true |
| 37 | }, |
| 38 | "providesContext": { |
| 39 | "imageCrop": "imageCrop" |
| 40 | }, |
| 41 | "styles": [ |
| 42 | { |
| 43 | "name": "rectangular", |
| 44 | "label": "Tiled mosaic", |
| 45 | "isDefault": true |
| 46 | }, |
| 47 | { |
| 48 | "name": "circle", |
| 49 | "label": "Circles" |
| 50 | }, |
| 51 | { |
| 52 | "name": "square", |
| 53 | "label": "Square tiles" |
| 54 | }, |
| 55 | { |
| 56 | "name": "columns", |
| 57 | "label": "Tiled columns" |
| 58 | } |
| 59 | ], |
| 60 | "attributes": { |
| 61 | "align": { |
| 62 | "type": "string", |
| 63 | "default": "center" |
| 64 | }, |
| 65 | "className": { |
| 66 | "type": "string", |
| 67 | "default": "is-style-rectangular" |
| 68 | }, |
| 69 | "columns": { |
| 70 | "type": "number" |
| 71 | }, |
| 72 | "columnWidths": { |
| 73 | "type": "array", |
| 74 | "default": [] |
| 75 | }, |
| 76 | "ids": { |
| 77 | "type": "array", |
| 78 | "default": [] |
| 79 | }, |
| 80 | "imageFilter": { |
| 81 | "type": "string" |
| 82 | }, |
| 83 | "images": { |
| 84 | "type": "array", |
| 85 | "default": [], |
| 86 | "source": "query", |
| 87 | "selector": ".tiled-gallery__item", |
| 88 | "query": { |
| 89 | "alt": { |
| 90 | "attribute": "alt", |
| 91 | "default": "", |
| 92 | "selector": "img", |
| 93 | "source": "attribute" |
| 94 | }, |
| 95 | "height": { |
| 96 | "attribute": "data-height", |
| 97 | "type": "number", |
| 98 | "selector": "img", |
| 99 | "source": "attribute" |
| 100 | }, |
| 101 | "id": { |
| 102 | "attribute": "data-id", |
| 103 | "selector": "img", |
| 104 | "source": "attribute" |
| 105 | }, |
| 106 | "link": { |
| 107 | "attribute": "data-link", |
| 108 | "selector": "img", |
| 109 | "source": "attribute" |
| 110 | }, |
| 111 | "url": { |
| 112 | "attribute": "data-url", |
| 113 | "selector": "img", |
| 114 | "source": "attribute" |
| 115 | }, |
| 116 | "width": { |
| 117 | "attribute": "data-width", |
| 118 | "selector": "img", |
| 119 | "source": "attribute", |
| 120 | "type": "number" |
| 121 | } |
| 122 | } |
| 123 | }, |
| 124 | "imageCrop": { |
| 125 | "type": "boolean", |
| 126 | "default": true |
| 127 | }, |
| 128 | "linkTo": { |
| 129 | "default": "none", |
| 130 | "type": "string" |
| 131 | }, |
| 132 | "roundedCorners": { |
| 133 | "type": "integer", |
| 134 | "default": 0 |
| 135 | } |
| 136 | }, |
| 137 | "example": { |
| 138 | "attributes": { |
| 139 | "align": "center", |
| 140 | "className": "is-style-rectangular", |
| 141 | "images": [ |
| 142 | { |
| 143 | "alt": "", |
| 144 | "link": "", |
| 145 | "url": "tiledGalleryExample1", |
| 146 | "width": 160, |
| 147 | "height": 95 |
| 148 | }, |
| 149 | { |
| 150 | "alt": "", |
| 151 | "link": "", |
| 152 | "url": "tiledGalleryExample2", |
| 153 | "width": 160, |
| 154 | "height": 107 |
| 155 | }, |
| 156 | { |
| 157 | "alt": "", |
| 158 | "link": "", |
| 159 | "url": "tiledGalleryExample3", |
| 160 | "width": 304, |
| 161 | "height": 203 |
| 162 | }, |
| 163 | { |
| 164 | "alt": "", |
| 165 | "link": "", |
| 166 | "url": "tiledGalleryExample4", |
| 167 | "width": 312, |
| 168 | "height": 207 |
| 169 | }, |
| 170 | { |
| 171 | "alt": "", |
| 172 | "link": "", |
| 173 | "url": "tiledGalleryExample5", |
| 174 | "width": 152, |
| 175 | "height": 101 |
| 176 | }, |
| 177 | { |
| 178 | "alt": "", |
| 179 | "link": "", |
| 180 | "url": "tiledGalleryExample6", |
| 181 | "width": 152, |
| 182 | "height": 105 |
| 183 | } |
| 184 | ], |
| 185 | "linkTo": "none" |
| 186 | } |
| 187 | }, |
| 188 | "editorScript": "file:../editor.js" |
| 189 | } |