Skip to content

Commit b19a59d

Browse files
chore(release): 0.21.1 [skip ci]
1 parent 480113d commit b19a59d

File tree

8 files changed

+1272
-1308
lines changed

8 files changed

+1272
-1308
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.21.1](https://github.com/atom-community/atom-ide-datatip/compare/v0.21.0...v0.21.1) (2021-01-24)
2+
3+
4+
### Bug Fixes
5+
6+
* do not show datatip on cursor stay ([f34e02a](https://github.com/atom-community/atom-ide-datatip/commit/f34e02a9a2e0039c6b11dc8ca118a056bceea8fc))
7+
* make config a json file ([86b7b0d](https://github.com/atom-community/atom-ide-datatip/commit/86b7b0dab614184722da2793bc3e97316a0f9a08))
8+
* show datatip on mouse move automatically ([d2196b4](https://github.com/atom-community/atom-ide-datatip/commit/d2196b4b9aadaa500077976fe0e38506b8918fda))
9+
110
# [0.21.0](https://github.com/atom-community/atom-ide-datatip/compare/v0.20.4...v0.21.0) (2021-01-23)
211

312

dist/datatip-manager.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ export declare class DataTipManager {
2323
dispose(): void;
2424
get datatipService(): ProviderRegistry<DatatipProvider>;
2525
watchEditor(editor: TextEditor): Disposable | undefined;
26-
updateCurrentEditor(editor: TextEditor): void;
26+
updateCurrentEditor(editor: TextEditor | null): void;
2727
onCursorMoveEvt(evt: CursorPositionChangedEvent): void;
2828
onMouseMoveEvt(evt: MouseEvent): void;
2929
onMouseWheel(evt: WheelEvent): void;
30-
onCommandEvt(evt: CommandEvent): void;
31-
showDataTip(editor: TextEditor, position: Point, evt: CursorPositionChangedEvent | MouseEvent | null): Promise<void>;
30+
onCommandEvt(evt: CommandEvent<TextEditorElement>): void;
31+
showDataTip(editor: TextEditor, position: Point): Promise<void>;
3232
mountDataTipWithMarker(editor: TextEditor, range: Range, position: Point, view: ViewContainer): CompositeDisposable | null;
3333
unmountDataTip(): void;
3434
}

dist/main.d.ts

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,5 @@
11
import type { DatatipService } from "atom-ide-base";
2+
export { default as config } from "./config.json";
23
export declare function activate(): Promise<void>;
34
export declare function deactivate(): void;
45
export declare function provideDatatipService(): DatatipService;
5-
export declare const config: {
6-
showDataTipOnCursorMove: {
7-
title: string;
8-
description: string;
9-
type: string;
10-
default: boolean;
11-
};
12-
showDataTipOnMouseMove: {
13-
title: string;
14-
description: string;
15-
type: string;
16-
default: boolean;
17-
};
18-
hoverTime: {
19-
title: string;
20-
description: string;
21-
type: string;
22-
default: number;
23-
};
24-
glowOnHover: {
25-
title: string;
26-
description: string;
27-
type: string;
28-
default: boolean;
29-
};
30-
};

dist/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tsconfig.tsbuildinfo

Lines changed: 89 additions & 239 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)