@jetbrains/ring-ui 6.0.79 → 6.0.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,6 @@ export default class SelectFilter extends Component<SelectFilterProps> {
9
9
  static defaultProps: {
10
10
  inputRef: typeof noop;
11
11
  };
12
- componentWillUnmount(): void;
13
12
  focus(): void;
14
13
  blur(): void;
15
14
  input?: HTMLInputElement | HTMLTextAreaElement | null;
@@ -11,9 +11,6 @@ export default class SelectFilter extends Component {
11
11
  static defaultProps = {
12
12
  inputRef: noop
13
13
  };
14
- componentWillUnmount() {
15
- this.blur();
16
- }
17
14
  focus() {
18
15
  const { input } = this;
19
16
  if (input && input !== document.activeElement) {
@@ -40,6 +40,7 @@ export default class Tooltip extends Component {
40
40
  this.addListeners();
41
41
  }
42
42
  else if (prevProps.title && !this.props.title) {
43
+ this.hidePopup();
43
44
  this.listeners.removeAll();
44
45
  }
45
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetbrains/ring-ui",
3
- "version": "6.0.79",
3
+ "version": "6.0.81",
4
4
  "description": "JetBrains UI library",
5
5
  "author": "JetBrains",
6
6
  "license": "Apache-2.0",