
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
A customizable Kanban-style board component built with Angular.
The ng80-board component provides a Kanban-style board that allows users to move cards between columns and reorder columns. The component uses the Angular CDK's drag and drop functionality to handle the card and column moves.
To use the ng80-board component in your project, you need to install the @80ymedia/ng80-board package by running the following command in your project's root directory:
npm install ngx-board
After installing the package, you need to import the BoardModule in your app's module:
import { BoardModule } from 'ngx-board';
@NgModule({
imports: [
BoardModule,
// ...
],
// ...
})
export class AppModule { }
To use the ng80-board component in your template, add the ng80-board tag:
<ng80-board
[board]="board"
(onCardMoved)="onCardMoved($event)"
(onCardClick)="onCardClick($event)"
(onColumnMoved)="onColumnMoved($event)"
></ng80-board>
Where board is an object that conforms to the Board interface.
The Board
interface represents a complete board. Its properties are:
BoardColumn[]
) on the board.The BoardColumn
interface represents a column on a board. Its properties are:
BoardCard[]
) in the column (required).Input | Description |
---|---|
cardSortingDisabled | a boolean to disable the sorting of columns in the board |
board (required) | an instance of Board that defines the structure of the board |
Output | Description |
---|---|
onCardMoved | emitted when a card is moved within or between columns on the board |
onColumnMoved | emitted when a column is moved on the board. |
onCardClick | emitted when a card is clicked. |
reachedEnd | emitted when the user has scrolled to the end of a specific column in the board. |
Here are some usage examples for the BoardComponent outputs:
<ng80-board [board]="board" (onCardClick)="cardClicked($event)">
</ng80-board>
// in component
cardClicked(card: BoardCard) {
// do something when card is clicked
}
<ng80-board
[board]="board"
(onCardMoved)="cardMoved($event)">
</ng80-board>
// in component
cardMoved(event: CdkDragDrop<BoardColumn, BoardColumn, BoardCard<any>>) {
// do something when card is moved
}
<ng80-board
[board]="board"
(onColumnMoved)="columnMoved($event)">
</ng80-board>
// in component
columnMoved(event: CdkDragDrop<BoardColumn[]>) {
// do something when column is moved
}
<ng80-board
[board]="board"
(reachedEnd)="endReached($event)">
</ng80-board>
// in component
endReached(column: BoardColumn) {
// load more cards when column end is reached
}
The ng80-board component allows for customization of the card, column header, and column footer templates through the use of content projection.
To use a custom card template, create a ng-template element with the directive cardTemplate and place it within the ng80-board element. The content within this template will be used as the template for each card.
<ng80-board [board]="board">
<ng-template cardTemplate>
<div class="custom-card-template">
<h2>{{card.title}}</h2>
<p>{{card.description}}</p>
</div>
</ng-template>
</ng80-board>
Similarly, custom templates for the column header and footer can be defined using the boardColumnHeader and boardColumnFooter directives respectively.
<ng80-board [board]="board">
<ng-template cardTpt let-item="item">
<div class="custom-card-template">
<h2>{{card.title}}</h2>
<p>{{card.description}}</p>
</div>
</ng-template>
<ng-template columnHeaderTpt let-column="column">
<div class="custom-column-header">
<h3>{{column.title}}</h3>
</div>
</ng-template>
<ng-template columnFooterTpt let-column="column">
<div class="custom-column-footer">
<button>Add Card</button>
</div>
</ng-template>
</ng80-board>
If you find this library helpful and want to support its development, consider buying me a coffee. Thank you for your support!
Carlos Morcillo is a web developer and open source contributor. You can find more of his work on this website.
FAQs
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
The npm package ngx-board receives a total of 87 weekly downloads. As such, ngx-board popularity was classified as not popular.
We found that ngx-board 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.