-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvalidation.js
More file actions
60 lines (60 loc) · 1.28 KB
/
validation.js
File metadata and controls
60 lines (60 loc) · 1.28 KB
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
export default [
{
name: 'show',
uiType: 'toggle',
valueType: 'boolean',
key: 'show',
value: true,
},
{
name: 'name',
uiType: 'select',
valueType: 'string',
key: 'name',
value: 'line-scale-pulse-out-rapid',
validate: {
options: [
'circle',
'cube-grid',
'wave',
'folding-cube',
'three-bounce',
'double-bounce',
'wandering-cubes',
'chasing-dots',
'rotating-plane',
'pulse',
'wordpress',
'ball-grid-beat',
'ball-grid-pulse',
'line-spin-fade-loader',
'ball-spin-fade-loader',
'ball-pulse-rise',
'line-scale',
'line-scale-pulse-out',
'line-scale-pulse-out-rapid',
'pacman',
'line-scale-party',
'ball-triangle-path',
'ball-scale-multiple',
'ball-scale-ripple-multiple',
'ball-pulse-sync',
'ball-beat',
'ball-zig-zag',
'ball-zig-zag-deflect',
'ball-clip-rotate-pulse',
'ball-clip-rotate-multiple',
'ball-clip-rotate',
'ball-scale-ripple',
'triangle-skew-spin',
],
},
},
{
name: 'color',
uiType: 'color',
valueType: 'color',
key: 'color',
value: '#5282ef',
},
];