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 / search-bar / block.json

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

94 lines 2.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/search-bar",
5 "title": "Search Bar",
6 "category": "bkbg-content",
7 "icon": "search",
8 "description": "Styled search field and button for site search with live AJAX suggestions option.",
9 "keywords": [
10 "search",
11 "find",
12 "bar",
13 "field",
14 "input",
15 "query"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-search-bar-editor",
19 "editorStyle": "bkbg-search-bar-style",
20 "style": "bkbg-search-bar-style",
21 "viewScript": "bkbg-search-bar-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "placeholder": {
33 "type": "string",
34 "default": "Search…"
35 },
36 "btnLabel": {
37 "type": "string",
38 "default": "Search"
39 },
40 "showBtn": {
41 "type": "boolean",
42 "default": true
43 },
44 "btnIcon": {
45 "type": "boolean",
46 "default": true
47 },
48 "alignment": {
49 "type": "string",
50 "default": "center"
51 },
52 "maxWidth": {
53 "type": "number",
54 "default": 560
55 },
56 "fieldBg": {
57 "type": "string",
58 "default": "#ffffff"
59 },
60 "fieldBorder": {
61 "type": "string",
62 "default": "#d1d5db"
63 },
64 "fieldText": {
65 "type": "string",
66 "default": "#111827"
67 },
68 "btnBg": {
69 "type": "string",
70 "default": "#6c3fb5"
71 },
72 "btnText": {
73 "type": "string",
74 "default": "#ffffff"
75 },
76 "borderRadius": {
77 "type": "number",
78 "default": 8
79 },
80 "fieldHeight": {
81 "type": "number",
82 "default": 48
83 },
84 "fontSize": {
85 "type": "number",
86 "default": 15
87 },
88 "liveSearch": {
89 "type": "boolean",
90 "default": false
91 }
92 }
93 }
94