
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@code-workers.io/ngx-list
Advanced tools
A generic and customizable list component for Angular. ## Installation ```bash npm i @code-workers.io/ngx-list ```
A generic and customizable list component for Angular.
npm i @code-workers.io/ngx-list
Lists are a very common UI component in almost every application. However, to build a really generic and flexible list component, in terms of the appearance of the list items some advanced techniques are required.
Those advanced techniques are often either not well enough documented or just not really known.
// in some component
<ngx-list
[items]="items"
<ng-template [ngxListContext]="items" let-item let-active="active" let-selected="selected">
<div (click)="onSelect(item)"
class="border border-gray-300 shadow-lg rounded-lg bg-white px-10 py-8 mb-4"
[class.item_active]="active"
[class.item_selected]="selected"
>
<span >{{item.name}} | {{item.id}} </span>
</div>
</ng-template>
</ngx-list>
The Styles:
.item_active {
@apply bg-gray-300/30;
}
.item_selected {
@apply bg-blue-500/30;
}
The styles are built with Tailwind CSS
FAQs
A generic and customizable list component for Angular. ## Installation ```bash npm i @code-workers.io/ngx-list ```
We found that @code-workers.io/ngx-list 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.