
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
angular2-tabs
Advanced tools
Simple to use Tab option for Angular2
Github only contains the source code for this project, to get the transpiled code for use in your project you will need to install it from npm.
Simply use the following command:
npm install angular2-tabs --save
<an-tablist #list="anTabList" anListClass="diff-class"></an-tablist>
<an-tabs [anList]="list">
<div *anTabDefault="tabOne">
The Contents of Tab one
<div anNextTab="hello">Next</div>
</div>
<div *anTab="'hello'">
The Contents of Tab Two
<div [anNextTab]="tabOne"></div>
</div>
</an-tabs>
import {ANGULAR_TABS_DIRECTIVES, TabInterface} from "angular2-tabs/core";
@Component({
...
directives: [ANGULAR_TABS_DIRECTIVES]
})
export class IndexComponent {
tabOne: TabInterface = {id: "test", title: 'test Title', canActivate: () => {return true;}}
}
The location of the TabList, this can be anywhere on the page. A local variable needs to be set, in this case #list
. The name of anTabList
is used.
The location that the Tabs are going to displayed. Only one will be displayed at a time.
A Template that contains the html that will be displayed when this tab is open.
The default tab to be displayed. The last default tab that can be displayed (using canActivate) will be displayed when the tabs are loaded.
Directive to allow a "next" button to a Tab, must be placed within a tab. Takes either the id name as a string, or takes the TabInterface
object used to create the Tab.
In this case tabOne
is used to be pass information to the first tab. Property title
is the title of the tab, and will be displayed in the tabList. The canActivate
property is a function used to determine if a tab can be displayed.
You will need to customize the list using your own CSS. The list will recieve either an-tablist
or a custom class name defined with anListClass
.
(added to Tab-list only only)
These classes are added to the li
.
(added to both Tab-list and anNextTab tags)
These classes are added to the li
based on if the tab can be activated based on the canActivate
function passed in.
To contribute, please fork this repository, then clone your repository. Once cloned feel free to make any changes you like.
When you clone the repository, you will only recieve the Typescript files, typings and tsconfig. There is no testing included, as this is pretty simple.
A Special thanks to those at Angular2
for creating angular2.
0.1.0-beta.6
an-cantactivate
if tab can't activateno Changes recorded
FAQs
Tabs for angular2
The npm package angular2-tabs receives a total of 18 weekly downloads. As such, angular2-tabs popularity was classified as not popular.
We found that angular2-tabs demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.