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 / sticky-note / block.json

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

99 lines 1.7 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/sticky-note",
5 "title": "Sticky Note",
6 "category": "bkbg-content",
7 "icon": "sticky",
8 "description": "Colored post-it style note with optional rotation, shadow, curl corner and handwritten font.",
9 "keywords": [
10 "sticky",
11 "note",
12 "post-it",
13 "reminder",
14 "memo",
15 "tip"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-sticky-note-editor",
19 "editorStyle": "bkbg-sticky-note-style",
20 "style": "bkbg-sticky-note-style",
21 "viewScript": "bkbg-sticky-note-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": []
27 },
28 "attributes": {
29 "text": {
30 "type": "string",
31 "default": "Don't forget to check this out!"
32 },
33 "noteColor": {
34 "type": "string",
35 "default": "#fef08a"
36 },
37 "textColor": {
38 "type": "string",
39 "default": "#333333"
40 },
41 "headingText": {
42 "type": "string",
43 "default": ""
44 },
45 "preset": {
46 "type": "string",
47 "default": "yellow"
48 },
49 "rotated": {
50 "type": "boolean",
51 "default": true
52 },
53 "rotationDeg": {
54 "type": "number",
55 "default": -2
56 },
57 "handwrittenFont": {
58 "type": "boolean",
59 "default": false
60 },
61 "curlCorner": {
62 "type": "boolean",
63 "default": true
64 },
65 "shadow": {
66 "type": "boolean",
67 "default": true
68 },
69 "width": {
70 "type": "number",
71 "default": 220
72 },
73 "fontSize": {
74 "type": "number",
75 "default": 15
76 },
77 "padding": {
78 "type": "number",
79 "default": 20
80 },
81 "fontWeight": {
82 "type": "string",
83 "default": "400"
84 },
85 "lineHeight": {
86 "type": "number",
87 "default": 1.5
88 },
89 "headingTypo": {
90 "type": "object",
91 "default": {}
92 },
93 "textTypo": {
94 "type": "object",
95 "default": {}
96 }
97 }
98 }
99