@codemirror/view 6.3.0 → 6.4.0
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.
- package/CHANGELOG.md +30 -0
- package/dist/index.cjs +351 -276
- package/dist/index.d.ts +5 -0
- package/dist/index.js +351 -276
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1579,6 +1579,11 @@ interface TooltipView {
|
|
|
1579
1579
|
*/
|
|
1580
1580
|
update?(update: ViewUpdate): void;
|
|
1581
1581
|
/**
|
|
1582
|
+
Called when the tooltip is removed from the editor or the editor
|
|
1583
|
+
is destroyed.
|
|
1584
|
+
*/
|
|
1585
|
+
destroy?(): void;
|
|
1586
|
+
/**
|
|
1582
1587
|
Called when the tooltip has been (re)positioned.
|
|
1583
1588
|
*/
|
|
1584
1589
|
positioned?(): void;
|