Skip to content

Commit 7bf80bb

Browse files
committed
release(0.1.12): add a flag to not hide tooltip on multi select
1 parent 752dc3a commit 7bf80bb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

projects/angular-tags-input/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-tags-input/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iomechs/angular-tags-input",
3-
"version": "0.1.11",
3+
"version": "0.1.13",
44
"peerDependencies": {
55
"@angular/common": "^8.2.11",
66
"@angular/core": "^8.2.11"

projects/angular-tags-input/src/lib/dropdown/dropdown.component.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ export class DropdownComponent
5050
inputTooltipOverlayOrigin: CdkOverlayOrigin;
5151
tooltipTimeout: number;
5252
inputTooltipShown: boolean;
53+
inputTooltipPositions = [
54+
{ originX: 'start', originY: 'bottom', overlayX: 'start', overlayY: 'top' },
55+
{ originX: 'start', originY: 'top', overlayX: 'start', overlayY: 'bottom' },
56+
{ originX: 'end', originY: 'bottom', overlayX: 'end', overlayY: 'bottom' },
57+
{ originX: 'end', originY: 'top', overlayX: 'end', overlayY: 'bottom' },
58+
];
5359
constructor(private readonly tagsInputService: AngularTagsInputService) { }
5460

5561
ngOnInit() {

0 commit comments

Comments
 (0)