PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / scripts / block-library / playlist / block.json
build/scripts/block-library/playlist
block.json 1.4 KB 6 months ago

block.json in Gutenberg 23.2.0, at build/scripts/block-library/playlist/block.json

80 lines 1.4 KB Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "__experimental": true,
5 "name": "core/playlist",
6 "title": "Playlist",
7 "category": "media",
8 "description": "Embed a simple playlist.",
9 "keywords": [ "music", "sound" ],
10 "textdomain": "default",
11 "allowedBlocks": [ "core/playlist-track" ],
12 "attributes": {
13 "currentTrack": {
14 "type": "string"
15 },
16 "type": {
17 "type": "string",
18 "default": "audio"
19 },
20 "order": {
21 "type": "string",
22 "default": "asc"
23 },
24 "showTracklist": {
25 "type": "boolean",
26 "default": true
27 },
28 "showImages": {
29 "type": "boolean",
30 "default": true
31 },
32 "showArtists": {
33 "type": "boolean",
34 "default": true
35 },
36 "showNumbers": {
37 "type": "boolean",
38 "default": true
39 },
40 "caption": {
41 "type": "string"
42 }
43 },
44 "providesContext": {
45 "showArtists": "showArtists",
46 "currentTrack": "currentTrack"
47 },
48 "supports": {
49 "anchor": true,
50 "align": true,
51 "color": {
52 "gradients": true,
53 "link": true,
54 "__experimentalDefaultControls": {
55 "background": true,
56 "text": true
57 }
58 },
59 "__experimentalBorder": {
60 "color": true,
61 "radius": true,
62 "style": true,
63 "width": true,
64 "__experimentalDefaultControls": {
65 "color": true,
66 "radius": true,
67 "style": true,
68 "width": true
69 }
70 },
71 "interactivity": true,
72 "spacing": {
73 "margin": true,
74 "padding": true
75 }
76 },
77 "editorStyle": "wp-block-playlist-editor",
78 "style": "wp-block-playlist"
79 }
80