block.json
3 years ago
view.asset.php
3 years ago
view.css
3 years ago
view.js
3 years ago
view.rtl.css
3 years ago
block.json
70 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/cookie-consent", |
| 5 | "title": "Cookie Consent", |
| 6 | "description": "Displays a customizable cookie consent banner. To display this block on all pages of your site, please add it inside a Template Part that is present on all your templates, like a Header or a Footer.", |
| 7 | "keywords": [ "cookie", "consent", "privacy", "GDPR", "EU" ], |
| 8 | "version": "12.5.0", |
| 9 | "textdomain": "jetpack", |
| 10 | "category": "grow", |
| 11 | "icon": "<svg viewBox='0 0 25 25' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path stroke='currentColor' fill='white' strokeLinecap='round' strokeLinejoin='round' strokeWidth='2' d='M4.419 12c0-6.4 5.358-8 8.037-8h1.005v4h3.014v3h4.019v1c0 6.4-5.024 8-8.038 8-3.014 0-8.037-1.6-8.037-8zm5.023-4h.001m-2.01 4h0m5.023 1h.001m-2.01 3h0m6.028-1h0'/></svg>", |
| 12 | "supports": { |
| 13 | "align": [ "left", "right", "wide", "full" ], |
| 14 | "alignWide": true, |
| 15 | "anchor": false, |
| 16 | "color": { |
| 17 | "gradients": true, |
| 18 | "link": true |
| 19 | }, |
| 20 | "spacing": { |
| 21 | "padding": true |
| 22 | }, |
| 23 | "customClassName": true, |
| 24 | "className": true, |
| 25 | "html": false, |
| 26 | "lock": false, |
| 27 | "multiple": false, |
| 28 | "reusable": false |
| 29 | }, |
| 30 | "attributes": { |
| 31 | "text": { |
| 32 | "type": "string", |
| 33 | "source": "html", |
| 34 | "selector": "p", |
| 35 | "default": "Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. To find out more, including how to control cookies, see here: <a href=\"https://automattic.com/cookies/\">Cookie Policy</a>." |
| 36 | }, |
| 37 | "style": { |
| 38 | "type": "object", |
| 39 | "default": { |
| 40 | "color": { |
| 41 | "text": "var(--wp--preset--color--contrast)", |
| 42 | "background": "var(--wp--preset--color--tertiary)", |
| 43 | "link": "var(--wp--preset--color--contrast)" |
| 44 | }, |
| 45 | "spacing": { |
| 46 | "padding": { |
| 47 | "top": "1em", |
| 48 | "right": "1em", |
| 49 | "bottom": "1em", |
| 50 | "left": "1em" |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | }, |
| 55 | "align": { |
| 56 | "type": "string", |
| 57 | "default": "wide" |
| 58 | }, |
| 59 | "consentExpiryDays": { |
| 60 | "type": "integer", |
| 61 | "default": 365 |
| 62 | }, |
| 63 | "showOverlay": { |
| 64 | "type": "boolean", |
| 65 | "default": false |
| 66 | } |
| 67 | }, |
| 68 | "editorScript": "file:../editor.js" |
| 69 | } |
| 70 |