chrome-devtools-frontend 1.0.968818 → 1.0.969345

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.
@@ -238,12 +238,14 @@ function createCSSTooltip(active: ActiveTooltip): CodeMirror.Tooltip {
238
238
  changes: text === active.text ? undefined :
239
239
  {from: active.pos, to: active.pos + text.length, insert: active.text},
240
240
  });
241
+ widget.hideWidget();
241
242
  view.focus();
242
243
  }
243
244
  });
244
245
  widget.element.addEventListener('focusout', event => {
245
246
  if (event.relatedTarget && !widget.element.contains(event.relatedTarget as Node)) {
246
247
  view.dispatch({effects: setTooltip.of(null)});
248
+ widget.hideWidget();
247
249
  }
248
250
  }, false);
249
251
  widget.element.addEventListener('mousedown', event => event.consume());
@@ -16,3 +16,13 @@ To update this package, adjust the version ranges in package.json if necessary,
16
16
  ```
17
17
 
18
18
  It will use npm to locally install the necessary packages and their dependencies, and bundle them into a single file (codemirror.js and codemirror.d.ts) with rollup.
19
+
20
+ If you want to easily obtain all the latest versions of the packages, run the following:
21
+
22
+ ```
23
+ npm i
24
+ npm outdated
25
+ ```
26
+
27
+ This will show you a table with all the latest versions of each package.
28
+ You will need to manually update the versions in the `package.json` file.