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 / regex-tester / block.json

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

126 lines 3.2 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/regex-tester",
5 "version": "1.0.0",
6 "title": "Regex Tester",
7 "category": "bkbg-dev",
8 "icon": "search",
9 "description": "Live regular expression tester with match highlighting, capture groups, and flag controls.",
10 "keywords": [
11 "regex",
12 "regexp",
13 "regular expression",
14 "pattern",
15 "developer",
16 "tool"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-regex-tester-editor",
20 "style": "bkbg-regex-tester-style",
21 "viewScript": "bkbg-regex-tester-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Regex Tester"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Test regular expressions with live match highlighting"
39 },
40 "defaultPattern": {
41 "type": "string",
42 "default": "\\b\\w+@\\w+\\.\\w+\\b"
43 },
44 "defaultFlags": {
45 "type": "string",
46 "default": "gi"
47 },
48 "defaultTestStr": {
49 "type": "string",
50 "default": "Contact us at hello@example.com or support@company.org\nVisit our site at https://example.com for more info."
51 },
52 "showGroups": {
53 "type": "boolean",
54 "default": true
55 },
56 "showCheatsheet": {
57 "type": "boolean",
58 "default": false
59 },
60 "editorHeight": {
61 "type": "integer",
62 "default": 160
63 },
64 "accentColor": {
65 "type": "string",
66 "default": "#f59e0b"
67 },
68 "matchBg": {
69 "type": "string",
70 "default": "#fef3c7"
71 },
72 "matchBorder": {
73 "type": "string",
74 "default": "#f59e0b"
75 },
76 "groupColors": {
77 "type": "string",
78 "default": "#bfdbfe,#bbf7d0,#fecaca,#e9d5ff"
79 },
80 "cardBg": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "editorBg": {
85 "type": "string",
86 "default": "#1e1e2e"
87 },
88 "editorText": {
89 "type": "string",
90 "default": "#cdd6f4"
91 },
92 "sectionBg": {
93 "type": "string",
94 "default": "#f9fafb"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#111827"
99 },
100 "subtitleColor": {
101 "type": "string",
102 "default": "#6b7280"
103 },
104 "labelColor": {
105 "type": "string",
106 "default": "#374151"
107 },
108 "errorColor": {
109 "type": "string",
110 "default": "#dc2626"
111 },
112 "contentMaxWidth": {
113 "type": "integer",
114 "default": 780
115 },
116 "titleTypo": {
117 "type": "object",
118 "default": {}
119 },
120 "editorTypo": {
121 "type": "object",
122 "default": {}
123 }
124 }
125 }
126