1.0.3 • Published 4 years ago

@codehint-ng/tabs v1.0.3

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

@codehint-ng/tabs

A simple flexible tabs Angular component to group content with tabs.

Usage

1) Register the @codehint-ng/tabs in your module:

    import { CngTabsModule } from '@codehint-ng/tabs';

    @NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        CngTabsModule,
        ...
    ],
    ...

2) Use components in your Angular application:

    <cng-tabs>
      <cng-tab #tabFirst>First Tab Title</cng-tab>
      <cng-tab #tabSecond [idHidden]="someFlag">Second Tab Title</cng-tab>
    </cng-tabs>

    <div [cngTabContentOf]="tabFirst">First Tab Content</div>
    <div [cngTabContentOf]="tabSecond">First Tab Content</div>
1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago