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.
@helveg/ngx-spreadsheet
Advanced tools
Lightweight spreadsheet module for Angular
https://helveg.github.io/ngx-spreadsheet/
First, install this module in your project.
$ npm install --save ngx-spreadsheet
Import NgxSpreadsheetModule into your module.
import { NgxSpreadsheetModule } from 'ngx-spreadsheet';
...
@NgModule({
imports: [
NgxSpreadsheetModule,
],
})
export class AppModule { }
Now you can use the spreadsheet component in your app components, for example in app.component.ts:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<ngx-spreadsheet [rows]="3" [cols]="6">
</ngx-spreadsheet>
`
})
export class AppComponent {}
or
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<ngx-spreadsheet [data]="data">
</ngx-spreadsheet>
`
})
export class AppComponent {
// Spreadsheet initialization: Read A two-dimensional array
data: string[][] = [
['Product ID', 'Product Category', 'Status', 'Price', 'Date'],
['PID1', 'Hat', 'Review', '2883', '"2021/8/9 20:25:05"'],
['PID2', 'Bag', 'Discard', '7336', '"2021/8/9 20:25:05"']
];
}
import {Component} from '@angular/core';
import {NgxSpreadsheetComponent, SpreadsheetSettings} from 'ngx-spreadsheet';
@Component({
selector: 'app-root',
template: `
<ngx-spreadsheet [settings]="settings">
</ngx-spreadsheet>
<button (click)="getData(nss)">Get data</button>
`
})
export class AppComponent {
// Spreadsheet initialization: Read A two-dimensional array
settings: SpreadsheetSettings = SpreadsheetSettings.load([
['Product ID', 'Product Category', 'Status', 'Price', 'Date'],
['PID1', 'Hat', 'Review', '2883', '"2021/8/9 20:25:05"'],
['PID2', 'Bag', 'Discard', '7336', '"2021/8/9 20:25:05"']
]);
getData(nss: NgxSpreadsheetComponent): void {
console.log(nss.data_);
}
}
import { Component } from '@angular/core';
import { SpreadsheetSettings } from 'ngx-spreadsheet';
@Component({
selector: 'app-root',
template: `
<ngx-spreadsheet [settings]="settings">
</ngx-spreadsheet>
`
})
export class AppComponent {
options: SpreadsheetSettingOptions = {
contextMenuRowLabel: {
INSERT_ROW_ABOVE: '上に1行追加',
INSERT_ROW_BELOW: '下に1行追加',
DELETE_ROW: '行を削除'
},
contextMenuColLabel: {
INSERT_COLUMN_LEFT: "左に1列追加",
INSERT_COLUMN_RIGHT: "右に1列追加",
DELETE_COLUMN: "列を削除",
}
};
// Spreadsheet initialization
settings: SpreadsheetSettings = SpreadsheetSettings.empty(3, 6, this.options);
// or
// settings: SpreadsheetSettings = SpreadsheetSettings.load([ ... ], this.options);
}
FAQs
Lightweight spreadsheet module for Angular
The npm package @helveg/ngx-spreadsheet receives a total of 1 weekly downloads. As such, @helveg/ngx-spreadsheet popularity was classified as not popular.
We found that @helveg/ngx-spreadsheet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.