An UI components based on Worktile Design and Angular.
Install ngx-tethys from npm
npm install ngx-tethys --save
https://worktile.github.io/ngx-tethys
Import root module into every module (e.g. AppModule
) where you want to use the components, directives, and services.
import { NgxTethysModule } from 'ngx-tethys';
@NgModule({
imports: [ NgxTethysModule ]
})
export class AppModule {
}
You can freely import the specified feature modules.
import { ThyButtonModule } from 'ngx-tethys/button';
import { ThyLayoutModule } from 'ngx-tethys/layout';
@NgModule({
imports: [ ThyButtonModule, ThyLayoutModule ]
})
export class AppModule {
}
$ git clone [email protected]:worktile/ngx-tethys.git
$ cd ngx-tethys
$ npm install
$ npm run start
npm run build
;- cd
built
folder,npm publish