Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
ng2-qgrid
Advanced tools
Angular data grid
yarn install ng2-qgrid
import { GridModule } from 'ng2-qgrid';
import { ThemeModule } from '@qgrid/ngx-theme-material';
@NgModule({
imports: [
GridModule,
ThemeModule
]
})
export class AppModule {
}
Note that now q-grid supports 2 themes out of box @angular/material
and basic
, the second one doesn't require @angular/material
to be installed.
@Component({
selector: 'my-component',
template: `
<q-grid [rows]="rows$ | async">
<q-grid-columns generation="deep">
</q-grid-columns>
</q-grid>
`
})
export class MyComponent {
rows$ = this.dataService.getRows();
}
Note that q-grid rows should be an array of objects, any other types like array of numbers or strings will throw an error.
If material
theme is used, it's also required to install angular material
git clone https://github.com/qgrid/ng2.git
yarn install
yarn run start
git clone https://github.com/qgrid/ng2.git
yarn install
yarn run build:manual
git clone https://github.com/qgrid/ng2.git
yarn install
yarn run build:manual
Chrome
latest is supported.FireFox
latest is supported.Safari
latest is supported.Edge
latest is supported.Code licensed under MIT license.
FAQs
Angular data grid
We found that ng2-qgrid 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.