
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
ngx-wrapper-tiny-slider
Advanced tools
A simple angular wrapper for tiny slider. This project is a copy of this package because i need this wrapper up to date, and support SSR.
npm i ngx-simple-countdown
Important ! To compile we need to add this line in your tsconfig.json, because there is a bug inside the tiny slider librairy
"compilerOptions": {
...
"skipLibCheck": true <----
}
import { NgxWrapperTinySliderModule } from 'ngx-wrapper-tiny-slider';
@NgModule({
imports: [NgxWrapperTinySliderModule]
})
export class AppModule {}
<ngx-wrapper-tiny-slider #tinySlider [config]="tinySliderConfig">
<div class="item">
<img src="https://picsum.photos/250/300" />
</div>
<div class="item">
<img src="https://picsum.photos/200/300" />
</div>
<div class="item">
<img src="https://picsum.photos/250/350" />
</div>
</ngx-wrapper-tiny-slider>
<button (click)="goTo('prev')">prev</button>
<button (click)="goTo('next')">next</button>
import { TinySliderInstance, TinySliderSettings } from 'tiny-slider';
export class AppComponent implements OnInit {
// GET SLIDER INSTANCE HERE
@ViewChild('tinySlider', { static: false }) tinySlider: TinySliderInstance;
// ADD THE SLIDER CONFIG HERE (show tiny slider documentation for more)
public tinySliderConfig: TinySliderSettings = {
gutter: 20,
items: 1,
mouseDrag: true
};
constructor() {}
ngOnInit() {}
// USE THE INSTANCE OF THE SLIDER TO UPDATE SLIDER
public goTo(foo: number | 'next' | 'prev' | 'first' | 'last'): void {
this.tinySlider.goTo(foo);
}
}
First add [initManually]="true" in the component properties
<ngx-wrapper-tiny-slider
#tinySlider
[config]="tinySliderConfig"
[initManually]="true"
></ngx-wrapper-tiny-slider>
when this property is active, you have to initialize the slider yourself. So add this method in your ngAfterViewInit (or where do you need) :
ngAfterViewInit(): void {
this.tinySlider.initSlider();
}
FAQs
A simple Angular 20 wrapper for Tiny Slider
The npm package ngx-wrapper-tiny-slider receives a total of 27 weekly downloads. As such, ngx-wrapper-tiny-slider popularity was classified as not popular.
We found that ngx-wrapper-tiny-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.