PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / drawing-canvas / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/drawing-canvas/block.json

121 lines 3.0 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/drawing-canvas",
5 "title": "Drawing Canvas",
6 "category": "bkbg-interactive",
7 "icon": "edit",
8 "description": "A fully interactive freehand drawing canvas with multiple tools, undo, and download — right in your page.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-drawing-canvas-editor",
11 "style": "bkbg-drawing-canvas-style",
12 "viewScript": "bkbg-drawing-canvas-frontend",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "title": {
24 "type": "string",
25 "default": "Drawing Canvas"
26 },
27 "subtitle": {
28 "type": "string",
29 "default": "Draw anything — your creativity is the limit!"
30 },
31 "canvasWidth": {
32 "type": "number",
33 "default": 800
34 },
35 "canvasHeight": {
36 "type": "number",
37 "default": 480
38 },
39 "defaultTool": {
40 "type": "string",
41 "default": "pen"
42 },
43 "defaultColor": {
44 "type": "string",
45 "default": "#1e1b4b"
46 },
47 "defaultLineWidth": {
48 "type": "number",
49 "default": 4
50 },
51 "showGrid": {
52 "type": "boolean",
53 "default": false
54 },
55 "showToolbar": {
56 "type": "boolean",
57 "default": true
58 },
59 "showDownload": {
60 "type": "boolean",
61 "default": true
62 },
63 "showUndo": {
64 "type": "boolean",
65 "default": true
66 },
67 "backgroundColor": {
68 "type": "string",
69 "default": "#ffffff"
70 },
71 "gridColor": {
72 "type": "string",
73 "default": "#e5e7eb"
74 },
75 "sectionBg": {
76 "type": "string",
77 "default": "#f8fafc"
78 },
79 "titleColor": {
80 "type": "string",
81 "default": "#1e1b4b"
82 },
83 "accentColor": {
84 "type": "string",
85 "default": "#6366f1"
86 },
87 "fontSize": {
88 "type": "number",
89 "default": 26
90 },
91 "fontWeight": {
92 "type": "string",
93 "default": "800"
94 },
95 "lineHeight": {
96 "type": "number",
97 "default": 1.2
98 },
99 "subtitleSize": {
100 "type": "number",
101 "default": 14
102 },
103 "subtitleFontWeight": {
104 "type": "string",
105 "default": "400"
106 },
107 "subtitleLineHeight": {
108 "type": "number",
109 "default": 1.5
110 },
111 "typoTitle": {
112 "type": "object",
113 "default": {}
114 },
115 "typoSubtitle": {
116 "type": "object",
117 "default": {}
118 }
119 }
120 }
121