File tree Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " Component that customizes the list and inserts shadow when scrolling exists" ,
5
5
"main" : " dist/index.js" ,
6
6
"module" : " dist/index.js" ,
7
+ "types" : " dist/index.d.ts" ,
7
8
"homepage" : " https://react-shadow-scroll.netlify.com/" ,
8
9
"author" : " André Lins <andrelucas01@hotmail.com> (https://andrelmlins.github.io/)" ,
9
10
"scripts" : {
40
41
"eslint-plugin-react" : " ^7.19.0" ,
41
42
"prettier" : " ^1.19.1" ,
42
43
"react" : " ^16.13.0" ,
43
- "react-dependency-scripts" : " ^1.0.2 " ,
44
+ "react-dependency-scripts" : " ^1.0.6 " ,
44
45
"react-dom" : " ^16.13.0" ,
45
46
"styled-components" : " ^5.0.1"
46
47
},
Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+
3
+ export interface ReactShadowScrollComponentProps {
4
+ scrollColor ?: string ;
5
+ scrollColorHover ?: string ;
6
+ scrollWidth ?: number ;
7
+ isShadow ?: boolean ;
8
+ shadow ?: string ;
9
+ styleSubcontainer ?: object ;
10
+ }
11
+
12
+ export default class ReactShadowScrollComponent extends React . Component <
13
+ ReactShadowScrollComponentProps
14
+ > { }
Original file line number Diff line number Diff line change @@ -7900,10 +7900,10 @@ raw-body@2.4.0:
7900
7900
iconv-lite "0.4.24"
7901
7901
unpipe "1.0.0"
7902
7902
7903
- react-dependency-scripts@^1.0.2 :
7904
- version "1.0.5 "
7905
- resolved "https://registry.yarnpkg.com/react-dependency-scripts/-/react-dependency-scripts-1.0.5 .tgz#72b771beefb49980844be4c4e89bf3e835b047df "
7906
- integrity sha512-OygHoTS3ZJ5w1nmpGsC2hWSb/F4Eur4oNqSc6anN030pFpLrlLjXsdJEnQU9/NYEkh7xw2FYD/KucfMnHeo7Rg ==
7903
+ react-dependency-scripts@^1.0.6 :
7904
+ version "1.0.6 "
7905
+ resolved "https://registry.yarnpkg.com/react-dependency-scripts/-/react-dependency-scripts-1.0.6 .tgz#d56fa4db8e2b4e7c428bd00c8b758dc2122381dd "
7906
+ integrity sha512-nQIqrrDyW/GB0/K/FEF3ehQ4AN6qdgEp6+dL6OK/3L66oJevkgKI4pVCdXXjGfa4AJqctmCcnp4FFvYT5bwajw ==
7907
7907
dependencies :
7908
7908
" @babel/core" " ^7.9.6"
7909
7909
" @babel/plugin-proposal-class-properties" " ^7.8.3"
You can’t perform that action at this time.
0 commit comments