2020-07-01 12:29:03 +00:00
|
|
|
{
|
2022-04-12 15:12:47 +00:00
|
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
2023-06-27 14:24:19 +00:00
|
|
|
"apiVersion": 3,
|
2020-07-01 12:29:03 +00:00
|
|
|
"name": "core/file",
|
2021-05-19 15:09:27 +00:00
|
|
|
"title": "File",
|
2020-07-01 12:29:03 +00:00
|
|
|
"category": "media",
|
2021-05-19 15:09:27 +00:00
|
|
|
"description": "Add a link to a downloadable file.",
|
|
|
|
"keywords": [ "document", "pdf", "download" ],
|
|
|
|
"textdomain": "default",
|
2020-07-01 12:29:03 +00:00
|
|
|
"attributes": {
|
|
|
|
"id": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"href": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2021-11-08 14:29:21 +00:00
|
|
|
"fileId": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "a:not([download])",
|
|
|
|
"attribute": "id"
|
|
|
|
},
|
2020-07-01 12:29:03 +00:00
|
|
|
"fileName": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "html",
|
|
|
|
"selector": "a:not([download])"
|
|
|
|
},
|
|
|
|
"textLinkHref": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "a:not([download])",
|
|
|
|
"attribute": "href"
|
|
|
|
},
|
|
|
|
"textLinkTarget": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "a:not([download])",
|
|
|
|
"attribute": "target"
|
|
|
|
},
|
|
|
|
"showDownloadButton": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"downloadButtonText": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "html",
|
|
|
|
"selector": "a[download]"
|
2021-05-07 11:48:27 +00:00
|
|
|
},
|
|
|
|
"displayPreview": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"previewHeight": {
|
|
|
|
"type": "number",
|
|
|
|
"default": 600
|
2020-07-01 12:29:03 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"supports": {
|
2020-07-07 14:43:35 +00:00
|
|
|
"anchor": true,
|
2023-06-27 14:24:19 +00:00
|
|
|
"align": true,
|
2023-09-26 14:23:26 +00:00
|
|
|
"spacing": {
|
|
|
|
"margin": true,
|
|
|
|
"padding": true
|
|
|
|
},
|
2023-06-27 14:24:19 +00:00
|
|
|
"color": {
|
|
|
|
"gradients": true,
|
|
|
|
"link": true,
|
|
|
|
"text": false,
|
|
|
|
"__experimentalDefaultControls": {
|
|
|
|
"background": true,
|
|
|
|
"link": true
|
|
|
|
}
|
2023-09-26 14:23:26 +00:00
|
|
|
},
|
|
|
|
"interactivity": true
|
2021-01-28 02:04:13 +00:00
|
|
|
},
|
2021-06-25 15:52:22 +00:00
|
|
|
"viewScript": "file:./view.min.js",
|
2021-01-28 02:04:13 +00:00
|
|
|
"editorStyle": "wp-block-file-editor",
|
|
|
|
"style": "wp-block-file"
|
2020-07-01 12:29:03 +00:00
|
|
|
}
|