File tree Expand file tree Collapse file tree 8 files changed +1268
-1278
lines changed
Expand file tree Collapse file tree 8 files changed +1268
-1278
lines changed Original file line number Diff line number Diff line change 1+ # 4.8.9
2+
3+ - Fix 'undefined' classname for ``` __container ```
4+
15# 4.8.8
26
37- Remove lib folder for github
Original file line number Diff line number Diff line change 1+ declare module '*.css' {
2+ interface IClassNames {
3+ [ className : string ] : string
4+ }
5+ const classNames : IClassNames ;
6+ export = classNames ;
7+ }
Load Diff This file was deleted.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 5656 "@babel/preset-typescript" : " ^7.1.0" ,
5757 "@testing-library/react" : " ^9.3.2" ,
5858 "@types/jest" : " ^23.3.5" ,
59+ "@types/prismjs" : " ^1.26.0" ,
5960 "@types/react" : " ^16.8.14" ,
6061 "@types/react-dom" : " ^16.8.4" ,
6162 "awesome-typescript-loader" : " ^5.2.1" ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ interface Props {
122122 showArrow ?: boolean ;
123123 keyword ?: string ;
124124 optionList : OptionListItem [ ] ;
125- onChange : ( res : object , e : React . MouseEvent < HTMLElement > ) => void ;
125+ onChange : ( res : { [ key : string ] : any } , e : React . MouseEvent < HTMLElement > ) => void ;
126126 onBlur ?: ( e : React . FocusEvent < HTMLElement > | Event ) => void ;
127127 onFocus ?: ( e : React . FocusEvent < HTMLElement > ) => void ;
128128 onClick ?: ( e : React . MouseEvent < HTMLElement > ) => void ;
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ select {
5454
5555.textbox__container {
5656 /*position: relative;*/
57+ opacity : 1 ;
5758}
5859
5960input [type = 'password' ].textbox__input ,
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
66module . exports = {
77 context : PATH . ROOT_PATH ,
88 entry : {
9- index : PATH . ROOT_PATH + 'example/index.js' ,
10- // index: PATH.ROOT_PATH + 'example/index.tsx'
9+ // index: PATH.ROOT_PATH + 'example/index.js',
10+ index : PATH . ROOT_PATH + 'example/index.tsx'
1111 } ,
1212 module : {
1313 rules : [
You can’t perform that action at this time.
0 commit comments