File tree Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 22 "singleQuote": true,
33 "trailingComma": "all",
44 "printWidth": 100,
5+ "proseWrap": "never",
56 "overrides": [
67 {
78 "files": ".prettierrc",
89 "options": {
910 "parser": "json"
1011 }
11- },
12- {
13- "files": ".stylelintrc",
14- "options": {
15- "parser": "json"
16- }
1712 }
1813 ]
19- }
14+ }
Original file line number Diff line number Diff line change @@ -619,10 +619,10 @@ const Select = {
619619 inputBlur ( e ) {
620620 const target = e . relatedTarget || document . activeElement ;
621621 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 ) ||
626626 contains ( e . target , target )
627627 ) {
628628 e . target . focus ( ) ;
@@ -1519,10 +1519,10 @@ const Select = {
15191519 key : 'selection' ,
15201520 } ;
15211521 //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;
15261526 //}
15271527 const rootCls = {
15281528 [ prefixCls ] : true ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ let files = [];
1818
1919const ignoreFiles = [
2020 '**/node_modules/**' ,
21+ 'package.json' ,
2122 'build/**' ,
2223 'es/**' ,
2324 'lib/**' ,
You can’t perform that action at this time.
0 commit comments