0.3.5 • Published 6 years ago

ngx-query v0.3.5

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

ngx-query

Build Status codecov npm version devDependency Status GitHub issues GitHub stars GitHub license

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

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.3-update05

7 years ago

0.2.3-update04

7 years ago

0.2.3-update03

7 years ago

0.2.3-update02

7 years ago

0.2.3-update01

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago