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 / barcode-generator / block.json

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

105 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/barcode-generator",
5 "title": "Barcode Generator",
6 "category": "bkbg-dev",
7 "icon": "editor-code",
8 "description": "Generate Code128 barcodes from any text or number. Customize bar height, width, colors, and download as PNG.",
9 "keywords": [
10 "barcode",
11 "code128",
12 "qr",
13 "scan",
14 "label",
15 "generator"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-barcode-generator-editor",
19 "style": "bkbg-barcode-generator-style",
20 "viewScript": "bkbg-barcode-generator-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Barcode Generator"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Enter text to generate a barcode"
38 },
39 "defaultText": {
40 "type": "string",
41 "default": "BLOCKENBERG-2024"
42 },
43 "barHeight": {
44 "type": "number",
45 "default": 80
46 },
47 "barWidth": {
48 "type": "number",
49 "default": 2
50 },
51 "showLabel": {
52 "type": "boolean",
53 "default": true
54 },
55 "showDownload": {
56 "type": "boolean",
57 "default": true
58 },
59 "showCopy": {
60 "type": "boolean",
61 "default": true
62 },
63 "accentColor": {
64 "type": "string",
65 "default": "#1f2937"
66 },
67 "barColor": {
68 "type": "string",
69 "default": "#000000"
70 },
71 "bgColor": {
72 "type": "string",
73 "default": "#ffffff"
74 },
75 "sectionBg": {
76 "type": "string",
77 "default": "#f9fafb"
78 },
79 "titleColor": {
80 "type": "string",
81 "default": "#111827"
82 },
83 "buttonBg": {
84 "type": "string",
85 "default": "#1f2937"
86 },
87 "fontSize": {
88 "type": "number",
89 "default": 26
90 },
91 "subtitleSize": {
92 "type": "number",
93 "default": 14
94 },
95 "titleTypo": {
96 "type": "object",
97 "default": {}
98 },
99 "subtitleTypo": {
100 "type": "object",
101 "default": {}
102 }
103 }
104 }
105