Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@epicfaace/ngdatasheet
Advanced tools
Datasheet component for Angular 2 that allows user interaction and prettified display alike.
This component is still under development. Breaking changes are subject to release with no notice.
npm install --save ngdatasheet
Import NgDatasheetModule into your NgModule:
...
import { NgModule } from '@angular/core';
import { NgDatasheetModule } from 'ngdatasheet/ngdatasheet';
...
...
@NgModule({
imports: [ NgDatasheetModule ]
...
In your component define a 2-D data array:
public data: any[][] = [
['Item', 'Unit price', 'Quantity', 'Price'],
['Joy Division shirt', 25, 4, 100],
['Cutoff jeans', 30, 24, 720],
['Peeps', 1.25, 100, 125],
['Subtotal', , , 945],
['Tax', , '3.0%', .03*945],
['Total', , , 945 + .03*945]
]
And bind to it in your template:
<ng-datasheet [(data)]="data"></ng-datasheet>
Output:
data
property:
<ng-datasheet></ng-datasheet>
using a directive<ng-template>
with selector as supplied in the appropriate spot in the data
arrayFAQs
Simple, lightweight datasheet component for Angular 2.
The npm package @epicfaace/ngdatasheet receives a total of 13 weekly downloads. As such, @epicfaace/ngdatasheet popularity was classified as not popular.
We found that @epicfaace/ngdatasheet 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.