Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ngx-tiny/tabs

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ngx-tiny/tabs

![minzipped size](https://img.shields.io/bundlephobia/minzip/@ngx-tiny/tabs?style=for-the-badge) ![last commit](https://img.shields.io/github/last-commit/aavanzyl/ngx-tiny?style=for-the-badge) ![licence](https://img.shields.io/npm/l/@ngx-tiny/tabs?style

  • 10.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-44.44%
Maintainers
1
Weekly downloads
 
Created
Source

@ngx-tiny/tabs

minzipped size last commit licence

Angular Tabs Component.

  • Angular 10 implementation
  • Works with SSR
  • No Dependencies required
  • Support Router routes
  • Lightweight
  • Themeable to own requirements

Installation

$ npm i @ngx-tiny/tabs

Example

ngx-tabs example

Documentation

Full Docs:

You can find the full documentation at https://aavanzyl.github.io/ngx-tiny which includes

  • Installation instructions
  • Usage and Demos
  • API Reference

Quick Start:

  1. Install with npm: npm install @ngx-tiny/tabs --save

  2. Add NgxTabsModule to your @NgModule like example below

    
    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import { NgxTabsModule } from '@ngx-tiny/tabs';
    
    import { AppComponent } from './app.component';
    
    @NgModule({
        imports: [BrowserModule, NgxTabsModule],
        declarations: [AppComponent],
        bootstrap: [AppComponent]
    })
    
    export class AppModule { }
    
    
  3. Add the component to your view for basic

    <ngx-tabs>
        <ngx-tab [active]="true" name="Tab 1">
            Tab 1
        </ngx-tab>
        <ngx-tab name="Tab 2">
            Tab 2
        </ngx-tab>
        <ngx-tab name="Tab 3">
            Tab 3
        </ngx-tab>
    </ngx-tabs>
    

    The examples above are quite basic. The picker has much more features and configurations.

Support

Support me by becoming a patron and buying me a beer :)

License

See the LICENSE file.

Keywords

FAQs

Package last updated on 27 Aug 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc