File tree 3 files changed +11
-15
lines changed
3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 2
2
"singleQuote": true,
3
3
"trailingComma": "all",
4
4
"printWidth": 100,
5
+ "proseWrap": "never",
5
6
"overrides": [
6
7
{
7
8
"files": ".prettierrc",
8
9
"options": {
9
10
"parser": "json"
10
11
}
11
- },
12
- {
13
- "files": ".stylelintrc",
14
- "options": {
15
- "parser": "json"
16
- }
17
12
}
18
13
]
19
- }
14
+ }
Original file line number Diff line number Diff line change @@ -619,10 +619,10 @@ const Select = {
619
619
inputBlur ( e ) {
620
620
const target = e . relatedTarget || document . activeElement ;
621
621
if (
622
- target &&
623
- this . selectTriggerRef &&
624
- this . selectTriggerRef . getInnerMenu ( ) &&
625
- this . selectTriggerRef . getInnerMenu ( ) . $el === target ||
622
+ ( target &&
623
+ this . selectTriggerRef &&
624
+ this . selectTriggerRef . getInnerMenu ( ) &&
625
+ this . selectTriggerRef . getInnerMenu ( ) . $el === target ) ||
626
626
contains ( e . target , target )
627
627
) {
628
628
e . target . focus ( ) ;
@@ -1519,10 +1519,10 @@ const Select = {
1519
1519
key : 'selection' ,
1520
1520
} ;
1521
1521
//if (!isMultipleOrTagsOrCombobox(props)) {
1522
- // selectionProps.on.keydown = this.onKeyDown;
1523
- // selectionProps.on.focus = this.selectionRefFocus;
1524
- // selectionProps.on.blur = this.selectionRefBlur;
1525
- // selectionProps.attrs.tabIndex = props.disabled ? -1 : props.tabIndex;
1522
+ // selectionProps.on.keydown = this.onKeyDown;
1523
+ // selectionProps.on.focus = this.selectionRefFocus;
1524
+ // selectionProps.on.blur = this.selectionRefBlur;
1525
+ // selectionProps.attrs.tabIndex = props.disabled ? -1 : props.tabIndex;
1526
1526
//}
1527
1527
const rootCls = {
1528
1528
[ prefixCls ] : true ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ let files = [];
18
18
19
19
const ignoreFiles = [
20
20
'**/node_modules/**' ,
21
+ 'package.json' ,
21
22
'build/**' ,
22
23
'es/**' ,
23
24
'lib/**' ,
You can’t perform that action at this time.
0 commit comments