PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / trunk
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More vtrunk
4.1.0 4.0.9 4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 trunk 1.0.0 2.0.0 2.0.1 2.0.2 2.0.3 3.0 3.0.1 3.0.2 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.4.0 3.4.1 3.4.2 3.4.5 3.4.6 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.6 3.5.7 3.5.8 3.5.9 3.6.0 3.6.1 3.6.2 3.7.0 3.7.1
superb-blocks / blocks / table-of-contents / block.json
superb-blocks / blocks / table-of-contents Last commit date
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