PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
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 / star-rating / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.6, at blocks/star-rating/block.json

120 lines 2.4 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/star-rating",
5 "title": "Star Rating",
6 "category": "blockenberg",
7 "icon": "star-filled",
8 "description": "Static visual star rating (1–5 stars) with optional label and numeric score. CSS-only, perfect inside testimonial cards.",
9 "keywords": ["star", "rating", "review", "testimonial", "score"],
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-star-rating-editor",
12 "editorStyle": "bkbg-star-rating-style",
13 "style": "bkbg-star-rating-style",
14 "viewScript": "bkbg-star-rating-frontend",
15 "supports": {
16 "html": false,
17 "anchor": true,
18 "className": true
19 },
20 "attributes": {
21 "blockId": {
22 "type": "string",
23 "default": ""
24 },
25
26 "rating": {
27 "type": "number",
28 "default": 4
29 },
30 "maxStars": {
31 "type": "number",
32 "default": 5
33 },
34 "starShape": {
35 "type": "string",
36 "default": "star"
37 },
38 "starSize": {
39 "type": "number",
40 "default": 28
41 },
42 "starGap": {
43 "type": "number",
44 "default": 3
45 },
46
47 "textAlign": {
48 "type": "string",
49 "default": "left"
50 },
51
52 "showLabel": {
53 "type": "boolean",
54 "default": true
55 },
56 "label": {
57 "type": "string",
58 "default": "Excellent product!"
59 },
60 "labelPosition": {
61 "type": "string",
62 "default": "below"
63 },
64 "labelSize": {
65 "type": "number",
66 "default": 14
67 },
68 "labelWeight": {
69 "type": "number",
70 "default": 400
71 },
72 "labelColor": {
73 "type": "string",
74 "default": "#6b7280"
75 },
76 "labelLH": {
77 "type": "number",
78 "default": 1.5
79 },
80 "labelSpacing": {
81 "type": "number",
82 "default": 8
83 },
84
85 "showNumeric": {
86 "type": "boolean",
87 "default": false
88 },
89 "numericTemplate": {
90 "type": "string",
91 "default": "{rating} out of {max}"
92 },
93 "numericSize": {
94 "type": "number",
95 "default": 13
96 },
97 "numericWeight": {
98 "type": "number",
99 "default": 600
100 },
101 "numericColor": {
102 "type": "string",
103 "default": "#1e293b"
104 },
105 "numericSpacing": {
106 "type": "number",
107 "default": 6
108 },
109
110 "filledColor": {
111 "type": "string",
112 "default": "#f59e0b"
113 },
114 "emptyColor": {
115 "type": "string",
116 "default": "#e2e8f0"
117 }
118 }
119 }
120