forked from FlaminWrap/budibase-signature-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
187 lines (186 loc) · 4.38 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"type": "component",
"metadata": {},
"schema": {
"name": "Budibase-Signature-Plugin",
"friendlyName": "Signature",
"description": "A plugin that allows signatures to be created and saved in budibase",
"icon": "AnnotatePen",
"settings": [
{
"type": "field/string",
"key": "field",
"label": "Field",
"required": true
},
{
"type": "text",
"key": "label",
"label": "Label",
"defaultValue": "Signature Field"
},
{
"type": "text",
"key": "width",
"label": "Width",
"defaultValue": "800px",
"required": true
},
{
"type": "text",
"key": "height",
"label": "Height",
"defaultValue": "400px",
"required": true
},
{
"type": "number",
"key": "penWidth",
"label": "Pen Size",
"defaultValue": 4,
"min": 1,
"max": 50,
"required": true
},
{
"type": "text",
"key": "color",
"label": "Pen Colour",
"defaultValue": "#000000",
"required": true
},
{
"type": "text",
"key": "background",
"label": "Background Colour",
"defaultValue": "#FFFFFF",
"required": true
},
{
"type": "boolean",
"key": "saveBackgroundColour",
"label": "Save Background Colour",
"defaultValue": true
},
{
"type": "select",
"label": "Border Outline",
"key": "borderOutline",
"defaultValue": "none",
"showInBar": true,
"barStyle": "picker",
"options": [
{
"label": "Dashed",
"value": "dashed"
},
{
"label": "Dotted",
"value": "dotted"
},
{
"label": "Double",
"value": "double"
},
{
"label": "Groove",
"value": "groove"
},
{
"label": "Inset",
"value": "inset"
},
{
"label": "None",
"value": "none"
},
{
"label": "Outset",
"value": "outset"
},
{
"label": "Ridge",
"value": "ridge"
},
{
"label": "Solid",
"value": "solid"
}
]
},
{
"type": "text",
"key": "borderColor",
"label": "Border Colour",
"defaultValue": "#000000"
},
{
"type": "text",
"key": "borderWidth",
"label": "Border Thickness",
"defaultValue": "1px"
},
{
"type": "boolean",
"key": "showClearSignatureButton",
"label": "Show Clear Signature Button",
"defaultValue": true
},
{
"type": "boolean",
"key": "showButtonIcon",
"label": "Show Clear Signature Button Icon",
"defaultValue": true,
"dependsOn": {
"setting": "showClearSignatureButton",
"value": true
}
},
{
"type": "text",
"key": "clearSignatureButtonText",
"label": "Clear Signature Button Text",
"defaultValue": "Clear Signature",
"dependsOn": {
"setting": "showClearSignatureButton",
"value": true
}
},
{
"type": "text",
"key": "modalTitle",
"label": "Clear Signature Dialog Modal Title",
"defaultValue": "Clear Signature",
"dependsOn": {
"setting": "showClearSignatureButton",
"value": true
}
},
{
"type": "text",
"key": "modalBody",
"label": "Clear Signature Dialog Modal Body Text",
"defaultValue": "This will clear the current signature, do you want to contiune?",
"dependsOn": {
"setting": "showClearSignatureButton",
"value": true
}
},
{
"type": "text",
"key": "modalActionButtonText",
"label": "Clear Signature Dialog Modal Action Button Text",
"defaultValue": "Erase",
"dependsOn": {
"setting": "showClearSignatureButton",
"value": true
}
},
{
"type": "validation/string",
"label": "Validation",
"key": "validation"
}
]
}
}