PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 5.0.1
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v5.0.1
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
blockspare / build / block / accordion / block.json

block.json in BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs 5.0.1, at build/block/accordion/block.json

110 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockspare/blockspare-accordion",
5 "title": "Accordion",
6 "category": "blockspare",
7 "description": "Create expandable accordion sections with customizable content and styling.",
8 "supports": {
9 "align": [
10 "wide",
11 "full",
12 "center"
13 ]
14 },
15 "attributes": {
16 "align": {
17 "type": "string",
18 "default": "center"
19 },
20 "uniqueClass": {
21 "type": "string"
22 },
23 "className": {
24 "type": "string"
25 },
26 "animation": {
27 "type": "string",
28 "default": ""
29 },
30 "defaultItems": {
31 "type": "number",
32 "default": 3
33 },
34 "uniqueId": {
35 "type": "string",
36 "default": ""
37 },
38 "itemToggle": {
39 "type": "boolean",
40 "default": true
41 },
42 "titleFontSize": {
43 "type": "number",
44 "default": 18
45 },
46 "titleFontFamily": {
47 "type": "string",
48 "default": "Default"
49 },
50 "titleFontWeight": {
51 "type": "string",
52 "default": ""
53 },
54 "titleFontSubset": {
55 "type": "string"
56 },
57 "titleFontSizeType": {
58 "type": "string",
59 "default": "px"
60 },
61 "titleFontSizeMobile": {
62 "type": "number",
63 "default": 14
64 },
65 "titleFontSizeTablet": {
66 "type": "number",
67 "default": 16
68 },
69 "titleLoadGoogleFonts": {
70 "type": "boolean",
71 "default": false
72 },
73 "paddingTop": {
74 "type": "number",
75 "default": 20
76 },
77 "paddingRight": {
78 "type": "number",
79 "default": 0
80 },
81 "paddingBottom": {
82 "type": "number",
83 "default": 20
84 },
85 "paddingLeft": {
86 "type": "number",
87 "default": 0
88 },
89 "marginTop": {
90 "type": "number",
91 "default": 30
92 },
93 "marginRight": {
94 "type": "number",
95 "default": 0
96 },
97 "marginBottom": {
98 "type": "number",
99 "default": 30
100 },
101 "marginLeft": {
102 "type": "number",
103 "default": 0
104 }
105 },
106 "editorScript": "file:./index.js",
107 "editorStyle": "file:./index.css",
108 "style": "file:./style-index.css",
109 "viewScript": "file:./view.js"
110 }