block.json
83 lines
| 1 | { |
| 2 | "name": "kubio/map", |
| 3 | "category": "kubio-components", |
| 4 | "attributes": { |
| 5 | "kubio": { |
| 6 | "type": "object" |
| 7 | }, |
| 8 | "address": { |
| 9 | "type": "string", |
| 10 | "default": "New York" |
| 11 | }, |
| 12 | "apiKey": { |
| 13 | "type": "string", |
| 14 | "default": "" |
| 15 | }, |
| 16 | "zoom": { |
| 17 | "type": "object", |
| 18 | "default": { |
| 19 | "value": 5 |
| 20 | } |
| 21 | } |
| 22 | }, |
| 23 | "supports": { |
| 24 | "kubio": { |
| 25 | "appearanceEffect": true, |
| 26 | "default": { |
| 27 | "style": { |
| 28 | "descendants": { |
| 29 | "outer": { |
| 30 | "height": { |
| 31 | "value": 350, |
| 32 | "unit": "px" |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | }, |
| 38 | "elementsEnum": { |
| 39 | "OUTER": "outer", |
| 40 | "WRAPPER": "wrapper", |
| 41 | "IFRAME": "iframe" |
| 42 | }, |
| 43 | "elementsByName": { |
| 44 | "outer": { |
| 45 | "wrapper": true, |
| 46 | "default": true |
| 47 | }, |
| 48 | "wrapper": {}, |
| 49 | "iframe": { |
| 50 | "props": { |
| 51 | "className": [ |
| 52 | "map-iframe" |
| 53 | ] |
| 54 | } |
| 55 | } |
| 56 | }, |
| 57 | "template": { |
| 58 | "type": "element", |
| 59 | "props": { |
| 60 | "name": "outer" |
| 61 | }, |
| 62 | "children": [ |
| 63 | { |
| 64 | "type": "element", |
| 65 | "props": { |
| 66 | "name": "wrapper" |
| 67 | }, |
| 68 | "children": [ |
| 69 | { |
| 70 | "type": "element", |
| 71 | "props": { |
| 72 | "name": "iframe", |
| 73 | "tag": "iframe" |
| 74 | } |
| 75 | } |
| 76 | ] |
| 77 | } |
| 78 | ] |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | } |
| 83 |