Skip to content

Commit

Permalink
update version 1.5.0 and break change imports names
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Oct 5, 2024
1 parent 71de352 commit fa7bfde
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
12 changes: 6 additions & 6 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 @@ -21,7 +21,7 @@
"@angular/platform-browser-dynamic": "^18.2.7",
"@angular/router": "^18.2.7",
"rxjs": "~7.8.1",
"slidecontent-angular": "^1.4.1",
"slidecontent-angular": "^1.5.0",
"tslib": "^2.7.0",
"uuid": "^10.0.0",
"zone.js": "~0.14.10"
Expand Down
24 changes: 9 additions & 15 deletions src/app/views/home/home.module.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";

import { HomeComponent } from './home.component';
import { HomeComponent } from "./home.component";

import { HomeRoutingModule } from './home-routing.module';
// import { SlideModule } from '../../../../projects/slidecontent-angular/src/public-api';
import { SlideModule } from 'slidecontent-angular';
import { HomeRoutingModule } from "./home-routing.module";
// import { SlideContentAngular } from '../../../../projects/slidecontent-angular/src/public-api';
import { SlideContentAngular } from "slidecontent-angular";

@NgModule({
declarations: [
HomeComponent
],
imports: [
CommonModule,
SlideModule,
HomeRoutingModule
]
declarations: [HomeComponent],
imports: [SlideContentAngular, CommonModule, HomeRoutingModule],
})
export class HomeModule { }
export class HomeModule {}

0 comments on commit fa7bfde

Please sign in to comment.