-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.json
More file actions
66 lines (66 loc) · 1.33 KB
/
block.json
File metadata and controls
66 lines (66 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "w0/book-grid",
"version": "0.1.0",
"title": "Book Grid",
"category": "media",
"icon": "images-alt2",
"description": "Display a responsive, customizable grid of book covers fetched from OpenLibrary by title (or uploaded), with overlay captions, flexible layout, and fallback placeholders.",
"example": {
"attributes": {
"books": [
{ "title": "Pride and Prejudice" },
{ "title": "Moby Dick" }
],
"columnsDesktop": 4,
"columnsTablet": 2,
"columnsMobile": 1,
"itemMargin": 16,
"backgroundColor": "#f7f7f7"
}
},
"attributes": {
"books": {
"type": "array",
"default": []
},
"columnsDesktop": {
"type": "number",
"default": 4
},
"columnsTablet": {
"type": "number",
"default": 2
},
"columnsMobile": {
"type": "number",
"default": 1
},
"itemMargin": {
"type": "number",
"default": 16
},
"backgroundColor": {
"type": "string",
"default": "#f7f7f7"
}
},
"supports": {
"html": false
},
"textdomain": "book-grid",
"editorScript": "file:./build/index.js",
"editorStyle": "file:./build/style-index.css",
"style": "file:./build/style-index.css",
"viewScript": "file:./build/view.js",
"editorLocale": [
"es_ES",
"fr_FR",
"de_DE",
"it_IT",
"pt_BR",
"ja",
"ko_KR"
]
}