mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
removed ngb
This commit is contained in:
parent
5a4c7d7893
commit
341245067f
6 changed files with 2 additions and 11 deletions
|
@ -26,7 +26,6 @@
|
||||||
"@auth0/angular-jwt": "^2.1.0",
|
"@auth0/angular-jwt": "^2.1.0",
|
||||||
"@fullcalendar/core": "^4.2.0",
|
"@fullcalendar/core": "^4.2.0",
|
||||||
"@fullcalendar/interaction": "^4.2.0",
|
"@fullcalendar/interaction": "^4.2.0",
|
||||||
"@ng-bootstrap/ng-bootstrap": "^4.0.1",
|
|
||||||
"@ngu/carousel": "^1.4.9-beta-2",
|
"@ngu/carousel": "^1.4.9-beta-2",
|
||||||
"@ngx-translate/core": "^11.0.1",
|
"@ngx-translate/core": "^11.0.1",
|
||||||
"@ngx-translate/http-loader": "^4.0.0",
|
"@ngx-translate/http-loader": "^4.0.0",
|
||||||
|
@ -45,7 +44,7 @@
|
||||||
"moment": "^2.23.0",
|
"moment": "^2.23.0",
|
||||||
"ng2-cookies": "^1.0.12",
|
"ng2-cookies": "^1.0.12",
|
||||||
"ngx-clipboard": "^12.1.0",
|
"ngx-clipboard": "^12.1.0",
|
||||||
"ngx-infinite-scroll": "^7.1.0",
|
"ngx-infinite-scroll": "^9.0.0",
|
||||||
"ngx-moment": "^3.0.1",
|
"ngx-moment": "^3.0.1",
|
||||||
"ngx-order-pipe": "^2.0.1",
|
"ngx-order-pipe": "^2.0.1",
|
||||||
"please-wait": "^0.0.5",
|
"please-wait": "^0.0.5",
|
||||||
|
|
|
@ -7,7 +7,6 @@ import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
||||||
import { RouterModule, Routes } from "@angular/router";
|
import { RouterModule, Routes } from "@angular/router";
|
||||||
|
|
||||||
import { JwtModule } from "@auth0/angular-jwt";
|
import { JwtModule } from "@auth0/angular-jwt";
|
||||||
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
||||||
import { TranslateLoader, TranslateModule } from "@ngx-translate/core";
|
import { TranslateLoader, TranslateModule } from "@ngx-translate/core";
|
||||||
import { TranslateHttpLoader } from "@ngx-translate/http-loader";
|
import { TranslateHttpLoader } from "@ngx-translate/http-loader";
|
||||||
import { CookieService } from "ng2-cookies";
|
import { CookieService } from "ng2-cookies";
|
||||||
|
@ -125,7 +124,6 @@ export function JwtTokenGetter() {
|
||||||
DialogModule,
|
DialogModule,
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
NavbarModule,
|
NavbarModule,
|
||||||
NgbModule.forRoot(),
|
|
||||||
MatCardModule,
|
MatCardModule,
|
||||||
MatInputModule,
|
MatInputModule,
|
||||||
MatTabsModule,
|
MatTabsModule,
|
||||||
|
|
|
@ -71,6 +71,7 @@ export class DiscoverComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
public async onScroll() {
|
public async onScroll() {
|
||||||
|
console.log("scrolled");
|
||||||
if (!this.contentLoaded) {
|
if (!this.contentLoaded) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { CommonModule } from "@angular/common";
|
||||||
import { NgModule } from "@angular/core";
|
import { NgModule } from "@angular/core";
|
||||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||||
import { RouterModule, Routes } from "@angular/router";
|
import { RouterModule, Routes } from "@angular/router";
|
||||||
import { NgbAccordionModule, NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
||||||
// import { TagInputModule } from "ngx-chips";
|
// import { TagInputModule } from "ngx-chips";
|
||||||
import { ClipboardModule } from "ngx-clipboard";
|
import { ClipboardModule } from "ngx-clipboard";
|
||||||
|
|
||||||
|
@ -116,9 +115,7 @@ const routes: Routes = [
|
||||||
MenuModule,
|
MenuModule,
|
||||||
InputSwitchModule,
|
InputSwitchModule,
|
||||||
InputTextModule,
|
InputTextModule,
|
||||||
NgbModule,
|
|
||||||
TooltipModule,
|
TooltipModule,
|
||||||
NgbAccordionModule,
|
|
||||||
AutoCompleteModule,
|
AutoCompleteModule,
|
||||||
CalendarModule,
|
CalendarModule,
|
||||||
// TagInputModule,
|
// TagInputModule,
|
||||||
|
|
|
@ -7,7 +7,6 @@ import { MultiSelectModule } from "primeng/multiselect";
|
||||||
import { SidebarModule } from "primeng/sidebar";
|
import { SidebarModule } from "primeng/sidebar";
|
||||||
import { TooltipModule } from "primeng/tooltip";
|
import { TooltipModule } from "primeng/tooltip";
|
||||||
|
|
||||||
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
||||||
|
|
||||||
import { UpdateDetailsComponent } from "./updatedetails.component";
|
import { UpdateDetailsComponent } from "./updatedetails.component";
|
||||||
import { UserManagementUserComponent } from "./usermanagement-user.component";
|
import { UserManagementUserComponent } from "./usermanagement-user.component";
|
||||||
|
@ -35,7 +34,6 @@ const routes: Routes = [
|
||||||
FormsModule,
|
FormsModule,
|
||||||
ReactiveFormsModule,
|
ReactiveFormsModule,
|
||||||
RouterModule.forChild(routes),
|
RouterModule.forChild(routes),
|
||||||
NgbModule.forRoot(),
|
|
||||||
MultiSelectModule,
|
MultiSelectModule,
|
||||||
PipeModule,
|
PipeModule,
|
||||||
ConfirmDialogModule,
|
ConfirmDialogModule,
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import { NgModule } from "@angular/core";
|
import { NgModule } from "@angular/core";
|
||||||
import { RouterModule, Routes } from "@angular/router";
|
import { RouterModule, Routes } from "@angular/router";
|
||||||
|
|
||||||
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
||||||
import { OrderModule } from "ngx-order-pipe";
|
import { OrderModule } from "ngx-order-pipe";
|
||||||
import { OverlayPanelModule } from "primeng/overlaypanel";
|
import { OverlayPanelModule } from "primeng/overlaypanel";
|
||||||
import { TabViewModule } from "primeng/tabview";
|
import { TabViewModule } from "primeng/tabview";
|
||||||
|
@ -21,7 +20,6 @@ const routes: Routes = [
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
RouterModule.forChild(routes),
|
RouterModule.forChild(routes),
|
||||||
NgbModule.forRoot(),
|
|
||||||
OrderModule,
|
OrderModule,
|
||||||
OmbiShared,
|
OmbiShared,
|
||||||
TabViewModule,
|
TabViewModule,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue