PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / tooltip / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/tooltip/block.json

103 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/tooltip",
5 "title": "Tooltip",
6 "category": "bkbg-content",
7 "icon": "info",
8 "description": "Display a word or phrase with a hover tooltip popup — great for definitions, abbreviations, and inline explanations.",
9 "keywords": [
10 "tooltip",
11 "popover",
12 "hint",
13 "definition",
14 "abbreviation",
15 "hover",
16 "info"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-tooltip-editor",
20 "editorStyle": "bkbg-tooltip-style",
21 "style": "bkbg-tooltip-style",
22 "viewScript": "bkbg-tooltip-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "triggerText": {
34 "type": "string",
35 "default": "Hover over me"
36 },
37 "tooltipContent": {
38 "type": "string",
39 "default": "This is the tooltip explanation. Add any helpful context here."
40 },
41 "position": {
42 "type": "string",
43 "default": "top"
44 },
45 "triggerStyle": {
46 "type": "string",
47 "default": "underline-dotted"
48 },
49 "maxWidth": {
50 "type": "number",
51 "default": 260
52 },
53 "showArrow": {
54 "type": "boolean",
55 "default": true
56 },
57 "animationType": {
58 "type": "string",
59 "default": "fade"
60 },
61 "align": {
62 "type": "string",
63 "default": "left"
64 },
65 "triggerTypo": {
66 "type": "object",
67 "default": {}
68 },
69 "tooltipTypo": {
70 "type": "object",
71 "default": {}
72 },
73 "tooltipPadding": {
74 "type": "number",
75 "default": 12
76 },
77 "tooltipRadius": {
78 "type": "number",
79 "default": 8
80 },
81 "triggerColor": {
82 "type": "string",
83 "default": "#6366f1"
84 },
85 "underlineColor": {
86 "type": "string",
87 "default": "#6366f1"
88 },
89 "highlightBg": {
90 "type": "string",
91 "default": "#ede9fe"
92 },
93 "tooltipBg": {
94 "type": "string",
95 "default": "#1e293b"
96 },
97 "tooltipColor": {
98 "type": "string",
99 "default": "#f8fafc"
100 }
101 }
102 }
103