Package Exports
- ngx-query
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ngx-query) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ngx-query
Demo
https://xuemingfeng.github.io/ngx-query/
Table of contents
About
ngx-query is a component for Angular 4+. A person searches data easily through ngx-query.
Features
- Quck search panel
- Advanced search panel
- Query templates
- Custom value input box
- Custom Toolbar
- Multi-language
Installation
Install through npm:
npm install --save ngx-query
Then include in your apps module:
import { Component, NgModule } from '@angular/core';
import { NgxQueryModule } from 'ngx-query';
@NgModule({
imports: [
NgxQueryModule.forRoot({
labels:{
buttons: {
'quick': 'Quick',
...
},
...
},
...
})
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<ng-query #ngxQuery [title]="queryTitle" [fields]="fields" [queryTemplates]="queryTemplates" (query)="search($event)"></ng-query>'
})
export class MyComponent {}
You may also find it useful to view the demo source.
Usage without a module bundler
<script src="node_modules/ngx-query/bundles/ngx-query.umd.js"></script>
<script>
// everything is exported ngxQuery namespace
</script>
Documentation
All documentation is auto-generated from the source via compodoc and can be viewed here: https://xuemingfeng.github.io/ngx-query/docs/
Development
Prepare your environment
- Install Node.js and NPM
- Install local dev dependencies:
npm install
while current directory is this repo
Development server
Run npm start
to start a development server on port 8000 with auto reload + tests.
Testing
Run npm test
to run tests once or npm run test:watch
to continually run tests.
Release
- Bump the version in package.json (once the module hits 1.0 this will become automatic)
npm run release
License
MIT