Skip to content

Commit

Permalink
fix: tooltip created in destroyed view (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 authored Feb 17, 2025
1 parent 155aaad commit cbe6cc6
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ BugSplat's [@bugsplat/ngb-filterable-dropdown](https://www.npmjs.com/package/@bu

## 🏗 Installation

Install `@bugsplat/ngb-filterable-dropdown` and the associated peer dependencies [@ng-bootstrap/ng-bootstrap](https://ng-bootstrap.github.io/#/home) and [Bootstrap](https://getbootstrap.com/):
Install `@bugsplat/ngb-filterable-dropdown` and the associated peer dependencies [@bugsplat/ng-bootstrap](https://ng-bootstrap.github.io/#/home) and [Bootstrap](https://getbootstrap.com/):

`npm i @bugsplat/ngb-filterable-dropdown @ng-boostrap/ng-bootstrap bootstrap`
`npm i @bugsplat/ngb-filterable-dropdown @bugsplat/ng-bootstrap bootstrap`

## 🏃 Usage

Expand Down
36 changes: 18 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@angular/platform-browser": "^19.1.6",
"@angular/platform-browser-dynamic": "^19.1.6",
"@angular/router": "^19.1.6",
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
"@bugsplat/ng-bootstrap": "^19.0.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"rxjs": "^7.8.1",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngb-filterable-dropdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@angular/common": ">=19.0.0",
"@angular/core": ">=19.0.0",
"@angular/cdk": ">=19.0.0",
"@ng-bootstrap/ng-bootstrap": ">=18.0.0",
"@bugsplat/ng-bootstrap": ">=19.0.1",
"bootstrap": ">=5.3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
tick,
} from "@angular/core/testing";
import { ReactiveFormsModule } from "@angular/forms";
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
import { NgbModule } from "@bugsplat/ng-bootstrap";
import { firstValueFrom } from "rxjs";
import { NgbFilterableDropdownSelectionMode } from "../ngb-filterable-drop-down-selection-mode";
import { NgbCustomFilterableDropdownComponent } from "./ngb-custom-filterable-dropdown.component";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
NgbDropdownMenu,
NgbDropdownToggle,
NgbTooltip,
} from "@ng-bootstrap/ng-bootstrap";
} from "@bugsplat/ng-bootstrap";
import { debounceTime, Subscription } from "rxjs";
import {
ItemCreatedEvent,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CommonModule } from "@angular/common";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { ReactiveFormsModule } from "@angular/forms";
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
import { NgbModule } from "@bugsplat/ng-bootstrap";
import { MultiSelectPipe } from "../internals/multi-select-pipe/multi-select-pipe";
import { NgbFilterableDropdownSelectionMode } from "../ngb-filterable-drop-down-selection-mode";
import { NgbFilterableDropdownComponent } from "./ngb-filterable-dropdown.component";
Expand Down

0 comments on commit cbe6cc6

Please sign in to comment.