Skip to content

Commit cbe6cc6

Browse files
authored
fix: tooltip created in destroyed view (#111)
1 parent 155aaad commit cbe6cc6

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ BugSplat's [@bugsplat/ngb-filterable-dropdown](https://www.npmjs.com/package/@bu
1717

1818
## 🏗 Installation
1919

20-
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/):
20+
Install `@bugsplat/ngb-filterable-dropdown` and the associated peer dependencies [@bugsplat/ng-bootstrap](https://ng-bootstrap.github.io/#/home) and [Bootstrap](https://getbootstrap.com/):
2121

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

2424
## 🏃 Usage
2525

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@angular/platform-browser": "^19.1.6",
4141
"@angular/platform-browser-dynamic": "^19.1.6",
4242
"@angular/router": "^19.1.6",
43-
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
43+
"@bugsplat/ng-bootstrap": "^19.0.1",
4444
"@popperjs/core": "^2.11.8",
4545
"bootstrap": "^5.3.3",
4646
"rxjs": "^7.8.1",

projects/ngb-filterable-dropdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@angular/common": ">=19.0.0",
1818
"@angular/core": ">=19.0.0",
1919
"@angular/cdk": ">=19.0.0",
20-
"@ng-bootstrap/ng-bootstrap": ">=18.0.0",
20+
"@bugsplat/ng-bootstrap": ">=19.0.1",
2121
"bootstrap": ">=5.3.3"
2222
}
2323
}

projects/ngb-filterable-dropdown/src/lib/ngb-custom-filterable-dropdown/ngb-custom-filterable-dropdown.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
tick,
88
} from "@angular/core/testing";
99
import { ReactiveFormsModule } from "@angular/forms";
10-
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
10+
import { NgbModule } from "@bugsplat/ng-bootstrap";
1111
import { firstValueFrom } from "rxjs";
1212
import { NgbFilterableDropdownSelectionMode } from "../ngb-filterable-drop-down-selection-mode";
1313
import { NgbCustomFilterableDropdownComponent } from "./ngb-custom-filterable-dropdown.component";

projects/ngb-filterable-dropdown/src/lib/ngb-custom-filterable-dropdown/ngb-custom-filterable-dropdown.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
NgbDropdownMenu,
2525
NgbDropdownToggle,
2626
NgbTooltip,
27-
} from "@ng-bootstrap/ng-bootstrap";
27+
} from "@bugsplat/ng-bootstrap";
2828
import { debounceTime, Subscription } from "rxjs";
2929
import {
3030
ItemCreatedEvent,

projects/ngb-filterable-dropdown/src/lib/ngb-filterable-dropdown/ngb-filterable-dropdown.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CommonModule } from "@angular/common";
22
import { ComponentFixture, TestBed } from "@angular/core/testing";
33
import { ReactiveFormsModule } from "@angular/forms";
4-
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
4+
import { NgbModule } from "@bugsplat/ng-bootstrap";
55
import { MultiSelectPipe } from "../internals/multi-select-pipe/multi-select-pipe";
66
import { NgbFilterableDropdownSelectionMode } from "../ngb-filterable-drop-down-selection-mode";
77
import { NgbFilterableDropdownComponent } from "./ngb-filterable-dropdown.component";

0 commit comments

Comments
 (0)