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 / clipboard-copy / block.json

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

126 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/clipboard-copy",
4 "title": "Clipboard Copy",
5 "category": "bkbg-dev",
6 "description": "Display a copyable code, coupon, or text with a one-click copy button.",
7 "keywords": [
8 "copy",
9 "clipboard",
10 "coupon",
11 "code"
12 ],
13 "textdomain": "blockenberg",
14 "editorScript": "bkbg-clipboard-copy-editor",
15 "editorStyle": "bkbg-clipboard-copy-style",
16 "style": "bkbg-clipboard-copy-style",
17 "viewScript": "bkbg-clipboard-copy-frontend",
18 "supports": {
19 "html": false,
20 "anchor": true,
21 "className": true,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "textToCopy": {
29 "type": "string",
30 "default": "SAVE20"
31 },
32 "label": {
33 "type": "string",
34 "default": "Copy Code"
35 },
36 "copiedLabel": {
37 "type": "string",
38 "default": "Copied! ✓"
39 },
40 "showCode": {
41 "type": "boolean",
42 "default": true
43 },
44 "style": {
45 "type": "string",
46 "default": "card"
47 },
48 "size": {
49 "type": "string",
50 "default": "md"
51 },
52 "iconEnabled": {
53 "type": "boolean",
54 "default": true
55 },
56 "description": {
57 "type": "string",
58 "default": ""
59 },
60 "alignment": {
61 "type": "string",
62 "default": "left"
63 },
64 "bgColor": {
65 "type": "string",
66 "default": "#f9fafb"
67 },
68 "borderColor": {
69 "type": "string",
70 "default": "#e5e7eb"
71 },
72 "btnBg": {
73 "type": "string",
74 "default": "#111827"
75 },
76 "btnColor": {
77 "type": "string",
78 "default": "#ffffff"
79 },
80 "btnHoverBg": {
81 "type": "string",
82 "default": "#374151"
83 },
84 "codeBg": {
85 "type": "string",
86 "default": "#f3f4f6"
87 },
88 "codeColor": {
89 "type": "string",
90 "default": "#111827"
91 },
92 "codeFontSize": {
93 "type": "number",
94 "default": 16
95 },
96 "fontSize": {
97 "type": "number",
98 "default": 14
99 },
100 "fontWeight": {
101 "type": "number",
102 "default": 600
103 },
104 "borderRadius": {
105 "type": "number",
106 "default": 8
107 },
108 "toastDuration": {
109 "type": "number",
110 "default": 2000
111 },
112 "descSize": {
113 "type": "number",
114 "default": 13
115 },
116 "typoCode": {
117 "type": "object",
118 "default": {}
119 },
120 "typoDesc": {
121 "type": "object",
122 "default": {}
123 }
124 }
125 }
126