* not show spining mask in ie <= 10
fix#14365
* revert, let's use css check for this
* add styleChecker
* add pointer-events check
* delay check spin not support when did mount
* use css hack replace style check
* master: (45 commits)
Add type definitions for Steps.Step (#14468)
add select check to fix edge wave issue (#14469)
Fix for Pagination ellipsis misalignment (#14473)
change sentry id
✅ Add sentry in ant.design
💄 New Sketch resources!
fix transfer ref (#14441)
Add onMouseEnter and onMouseLeave for Menu Item (#14454)
update snapshot (#14467)
📝 beautify code style in documentation (#14457)
Updating type: TreeSelectProps.getPopupContainer (#14443)
change error version
3.12.4 changelog (#14436)
Format
Fix the bug that radio onchange will be ovrride by radioGroup onchange (#14364)
docs: updated doc for create-react-app
fix prefixCls of empty go to div (#14404)
update snapshot (#14406)
add radius on table-placeholder to fix table small size border clip (#14398)
fix style of Input.Search with enterButton (#14397)
...
TreeSelectProps extends AbstractSelectProps. However, the method signatures are different causing compilation issue with typescript:
```
Failed to compile.
/home/kasra/Desktop/Repos/frontend/node_modules/antd/lib/tree-select/interface.d.ts
Type error: Interface 'TreeSelectProps' incorrectly extends interface 'AbstractSelectProps'.
Types of property 'getPopupContainer' are incompatible.
Type '((triggerNode: Element) => HTMLElement) | undefined' is not assignable to type '((triggerNode?: Element | undefined) => HTMLElement) | undefined'.
Type '(triggerNode: Element) => HTMLElement' is not assignable to type '(triggerNode?: Element | undefined) => HTMLElement'.
Types of parameters 'triggerNode' and 'triggerNode' are incompatible.
Type 'Element | undefined' is not assignable to type 'Element'.
Type 'undefined' is not assignable to type 'Element'. TS2430
24 | rootPId?: string;
25 | }
> 26 | export interface TreeSelectProps extends AbstractSelectProps {
| ^
27 | autoFocus?: boolean;
28 | defaultValue?: string | number | Array<any>;
```