Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
projection-grid-vue
Advanced tools
```vue <template lang="pug"> .grid-example .filter-container .grid-container grid(config="gridConfig", grid-dataSource="gridDataSource") scroll(view-port={{window}} virtualized header.sticky={{ {offset => () => { // calculatin
To build the library:
npm run build
To build the basic demo:
npm run demo
To start the dev page with hot reloading
npm run dev
To run all tests
npm test
To generate doc file based on jsdoc
npm run jsdoc
coverage threashold is defined in the root package.json. Default test task will check the coverage.
<template lang="pug">
.grid-example
.filter-container
.grid-container
grid(config="gridConfig", grid-dataSource="gridDataSource")
scroll(view-port={{window}} virtualized header.sticky={{ {offset => () => {
// calculating offset
}} }})
filter(v-bind:conditions="filters")
.pagination-control-container
</template>
<script>
import VueProjectionGrid, { ScrollingPlugin, FilterPlugin } from 'projection-grid-vue';
export default {
components: {
grid: VueProjectionGrid,
scroll: ScrollingPlugin,
filter: FilterPlugin,
},
data() {
return {
gridConfig: {
tableClasses: ['bingadsgrid'],
columns: [
// ...columns
],
},
gridDataSource: query => {
// ...fetching data
},
}
},
computed() {
filters() {
// get filters from external filter controls
}
}
}
</script>
FAQs
```vue <template lang="pug"> .grid-example .filter-container .grid-container grid(config="gridConfig", grid-dataSource="gridDataSource") scroll(view-port={{window}} virtualized header.sticky={{ {offset => () => { // calculatin
The npm package projection-grid-vue receives a total of 0 weekly downloads. As such, projection-grid-vue popularity was classified as not popular.
We found that projection-grid-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.