PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / trunk
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses vtrunk
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / assets / src / apps / js / blocks / course-elements / course-button / block.json

block.json in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses trunk, at assets/src/apps/js/blocks/course-elements/course-button/block.json

69 lines 1.4 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": "learnpress/course-button",
5 "title": "Course Button",
6 "category": "learnpress-course-elements",
7 "icon": "button",
8 "description": "Renders template Button Course PHP templates.",
9 "textdomain": "learnpress",
10 "keywords": [ "button single course", "learnpress" ],
11 "ancestor": [ "learnpress/single-course" ],
12 "usesContext": [ "lpCourseData" ],
13 "attributes": {
14 "textAlign": {
15 "type": "string",
16 "default": "center"
17 },
18 "justifyContent": {
19 "type": "string",
20 "default": "center"
21 },
22 "alignItems": {
23 "type": "string",
24 "default": "top"
25 },
26 "width": {
27 "type": "string",
28 "default": "100"
29 }
30 },
31 "supports": {
32 "multiple": true,
33 "align": [ "wide", "full" ],
34 "html": false,
35 "typography": {
36 "fontSize": true,
37 "__experimentalDefaultControls": { "fontSize": true }
38 },
39 "color": {
40 "background": true,
41 "text": true,
42 "__experimentalDefaultControls": {
43 "background": true,
44 "text": true
45 }
46 },
47 "__experimentalBorder": {
48 "color": true,
49 "radius": true,
50 "width": true,
51 "__experimentalDefaultControls": {
52 "width": false,
53 "color": false,
54 "radius": false
55 }
56 },
57 "spacing": {
58 "margin": true,
59 "padding": true,
60 "content": true,
61 "__experimentalDefaultControls": {
62 "margin": false,
63 "padding": false,
64 "content": true
65 }
66 }
67 }
68 }
69