-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
84 lines (84 loc) · 2.1 KB
/
schema.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"type": "component",
"metadata": {},
"schema": {
"name": "tour_shepherd",
"friendlyName": "Tour",
"description": "A component that allows you to create dynamic walkthroughs",
"icon": "HelpOutline",
"settings": [
{
"type": "text",
"key": "tourName",
"label": "Shepherd Tour Name",
"defaultValue": "tourName1",
"required": true
},
{
"type": "text",
"key": "tourSteps",
"label": "Tour Steps - Use GUI to Populate",
"required": true
},
{
"section": true,
"name": "Advanced Customization",
"settings": [
{
"type": "boolean",
"label": "Modal Overlay",
"key": "useModalOverlay",
"defaultValue": true
},
{
"type": "boolean",
"label": "Auto-Start on Load",
"key": "autoStart",
"defaultValue": true
},
{
"type": "text",
"label": "Auto-Start Dependent Field",
"key": "autoStartField",
"defaultValue": true,
"dependsOn": "autoStart"
},
{
"type": "boolean",
"label": "Confirm Cancel dialog",
"key": "confirmCancel",
"defaultValue": true
},
{
"type": "text",
"key": "confirmCancelMessage",
"label": "Confirm Cancel Message",
"dependsOn": "confirmCancel"
},
{
"type": "boolean",
"label": "Exit On Escape",
"key": "exitOnEsc",
"defaultValue": true
},
{
"type": "boolean",
"label": "Keyboard Navigation",
"key": "keyboardNavigation",
"defaultValue": true
},
{
"type": "event",
"key": "onCompletion",
"label": "On Completion"
},
{
"type": "event",
"key": "onCancel",
"label": "On Cancel"
}
]
}
]
}
}