Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 32 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | export default { |
||
2 | defaults: { |
||
3 | control: { |
||
4 | title: 'Universal', |
||
5 | linkable: true, |
||
6 | units: { |
||
7 | default: 'percentage', |
||
8 | enabled: [ 'px', 'percentage', 'em' ] |
||
9 | }, |
||
10 | sliders: [ |
||
11 | { name: 'top', label: 'Top', cssProperty: 'border-top-width' }, |
||
12 | { name: 'right', label: 'Right', cssProperty: 'border-right-width' }, |
||
13 | { name: 'bottom', label: 'Bottom', cssProperty: 'border-bottom-width' }, |
||
14 | { name: 'left', label: 'Left', cssProperty: 'border-left-width' } |
||
15 | ] |
||
16 | }, |
||
17 | slider: { |
||
18 | px: { |
||
19 | min: 0, |
||
20 | max: 100 |
||
21 | }, |
||
22 | '%': { |
||
23 | min: 0, |
||
24 | max: 100 |
||
25 | }, |
||
26 | em: { |
||
27 | min: 0.1, |
||
28 | max: 5 |
||
29 | } |
||
30 | } |
||
31 | } |
||
32 | }; |
||
33 |