Skip to content

Commit 5a193a4

Browse files
committed
chore(ng-bootstrap): update to 19rc and revert temp disable
1 parent 290e3d5 commit 5a193a4

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

package-lock.json

Lines changed: 8 additions & 8 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
@@ -62,7 +62,7 @@
6262
"@angular/ssr": "^20.0.0",
6363
"@igniteui/material-icons-extended": "^3.1.0",
6464
"@microsoft/signalr": "^8.0.7",
65-
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
65+
"@ng-bootstrap/ng-bootstrap": "^19.0.0-rc.0",
6666
"@popperjs/core": "2.11.8",
6767
"@types/file-saver": "^2.0.2",
6868
"@types/hammerjs": "^2.0.39",

src/app/app.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ApplicationConfig, importProvidersFrom } from "@angular/core";
33
import { FormsModule } from "@angular/forms";
44
import { BrowserModule, HammerModule, provideClientHydration, withEventReplay } from "@angular/platform-browser";
55
import { provideAnimations } from "@angular/platform-browser/animations";
6-
// import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
6+
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
77
import { provideRouter } from "@angular/router";
88
import { AppRoutes } from "./app.routes";
99
import { OverflowService } from "./services/overflow.service";
@@ -14,7 +14,7 @@ export const AppConfig: ApplicationConfig = {
1414
BrowserModule,
1515
FormsModule,
1616
HammerModule,
17-
// NgbModule
17+
NgbModule
1818
),
1919
provideHttpClient(withInterceptorsFromDi()),
2020
provideAnimations(),

src/app/theming/theming.routes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ export const ThemingRoutes: Routes = [
5252
data: themingRoutesData['angular-sample'],
5353
path: 'angular-sample'
5454
},
55-
// {
56-
// component: BootstrapComponent,
57-
// data: themingRoutesData['bootstrap-sample'],
58-
// path: 'bootstrap-sample'
59-
// }
55+
{
56+
component: BootstrapComponent,
57+
data: themingRoutesData['bootstrap-sample'],
58+
path: 'bootstrap-sample'
59+
}
6060
];

0 commit comments

Comments
 (0)