block.json
2 weeks ago
index-rtl.css
2 weeks ago
index.asset.php
2 weeks ago
index.css
2 weeks ago
index.js
2 weeks ago
style-index-rtl.css
2 weeks ago
style-index.css
2 weeks ago
block.json
69 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "superb-addons/table-of-contents", |
| 5 | "version": "0.2.0", |
| 6 | "title": "Superb Table of Contents", |
| 7 | "category": "superb-addons-blocks", |
| 8 | "icon": "editor-ol", |
| 9 | "description": "Automatically generate a navigable table of contents from your headings with smooth scroll, anchor links, and heading level filtering.", |
| 10 | "keywords": [ |
| 11 | "table of contents", |
| 12 | "toc", |
| 13 | "table", |
| 14 | "contents", |
| 15 | "content", |
| 16 | "overview" |
| 17 | ], |
| 18 | "supports": { |
| 19 | "html": false, |
| 20 | "align": ["wide", "full", "left", "right"], |
| 21 | "color": { |
| 22 | "background": true, |
| 23 | "gradients": true, |
| 24 | "text": false, |
| 25 | "link": false |
| 26 | }, |
| 27 | "spacing": { |
| 28 | "margin": true, |
| 29 | "padding": true |
| 30 | }, |
| 31 | "shadow": true, |
| 32 | "border": { |
| 33 | "color": true, |
| 34 | "radius": true, |
| 35 | "style": true, |
| 36 | "width": true |
| 37 | }, |
| 38 | "__experimentalBorder": { |
| 39 | "color": true, |
| 40 | "radius": true, |
| 41 | "style": true, |
| 42 | "width": true |
| 43 | } |
| 44 | }, |
| 45 | "attributes": { |
| 46 | "toolbarAlignment": { "type": "string", "default": "left" }, |
| 47 | "fontSizeTitle": { "type": "number", "default": 32 }, |
| 48 | "fontSizeText": { "type": "number", "default": 14 }, |
| 49 | "colorTitle": { "type": "string" }, |
| 50 | "colorTitleWPC": { "type": "string" }, |
| 51 | "colorText": { "type": "string" }, |
| 52 | "colorTextWPC": { "type": "string" }, |
| 53 | "colorAnchor": { "type": "string" }, |
| 54 | "colorAnchorWPC": { "type": "string" }, |
| 55 | "labelTitle": { "type": "string", "default": "Table of Contents" }, |
| 56 | "labelTitleEnabled": { "type": "boolean", "default": true }, |
| 57 | "headingBlocks": { "type": "array", "default": [] }, |
| 58 | "autoAnchorLinks": { "type": "boolean", "default": true }, |
| 59 | "smoothScroll": { "type": "boolean", "default": true }, |
| 60 | "listStyle": { "type": "string", "default": "ordered" }, |
| 61 | "excludedHeadingLevels": { "type": "array", "default": [] }, |
| 62 | "IsPreview": { "type": "boolean", "default": false } |
| 63 | }, |
| 64 | "textdomain": "superb-blocks", |
| 65 | "editorScript": "file:./index.js", |
| 66 | "editorStyle": "file:./index.css", |
| 67 | "style": "file:./style-index.css" |
| 68 | } |
| 69 |