File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
3
3
export type ReactSmartSliderProps = {
4
- /*
4
+ /**
5
5
Default undefined.
6
6
If given defines number of columns per container width.
7
7
If 1, width of each child is 100%of container width.
@@ -10,30 +10,30 @@ export type ReactSmartSliderProps = {
10
10
11
11
numCols ?: number ,
12
12
13
- /*
13
+ /**
14
14
Default 0.
15
15
Defines space in pixels between columns.
16
16
Spacing is based on padding of each element.
17
17
*/
18
18
19
19
spacing ?: number ,
20
20
21
- /*
21
+ /**
22
22
Default undefined.
23
23
Overrides base style of track.
24
24
*/
25
25
26
26
trackProps ?: React . CSSProperties ,
27
27
28
- /*
28
+ /**
29
29
Default rectangle.
30
30
Base rectangle element has adaptive width, dependent on length of children.
31
31
Provided JSX.Element replaces original thumb.
32
32
*/
33
33
34
34
thumb ?: JSX . Element ,
35
35
36
- /*
36
+ /**
37
37
Default false.
38
38
Defines direction of scrollbar - horizontal in default.
39
39
If true, it resize automatically.
Original file line number Diff line number Diff line change 74
74
"no-empty" : false ,
75
75
"no-object-literal-type-assertion" : false ,
76
76
"no-submodule-imports" : false ,
77
- "no-console" : false
77
+ "no-console" : false ,
78
+ "jsdoc-format" : false
78
79
}
79
80
}
You can’t perform that action at this time.
0 commit comments