| 1 |
<?php |
| 2 |
// This file is generated. Do not modify it manually. |
| 3 |
return array( |
| 4 |
'table' => array( |
| 5 |
'$schema' => 'https://schemas.wp.org/trunk/block.json', |
| 6 |
'apiVersion' => 3, |
| 7 |
'name' => 'tablepress/table', |
| 8 |
'version' => '3.0', |
| 9 |
'title' => 'TablePress table', |
| 10 |
'category' => 'media', |
| 11 |
'icon' => 'list-view', |
| 12 |
'description' => 'Embed a TablePress table.', |
| 13 |
'keywords' => array( |
| 14 |
'table' |
| 15 |
), |
| 16 |
'textdomain' => 'tablepress', |
| 17 |
'attributes' => array( |
| 18 |
'id' => array( |
| 19 |
'type' => 'string', |
| 20 |
'default' => '' |
| 21 |
), |
| 22 |
'parameters' => array( |
| 23 |
'type' => 'string', |
| 24 |
'default' => '' |
| 25 |
) |
| 26 |
), |
| 27 |
'supports' => array( |
| 28 |
'align' => false, |
| 29 |
'html' => false, |
| 30 |
'customClassName' => false |
| 31 |
), |
| 32 |
'editorScript' => 'file:build/index.js', |
| 33 |
'editorStyle' => 'file:build/index.css' |
| 34 |
) |
| 35 |
); |
| 36 |
|