Skip to content

Fast and reliable Worktile Design widgets in Angular

Notifications You must be signed in to change notification settings

nanianqiumo/ngx-tethys

 
 

Repository files navigation

ngx-tethys Build Status

An UI components based on Worktile Design and Angular.

Getting Started

Installation

Install ngx-tethys from npm

npm install ngx-tethys --save

Demo

https://worktile.github.io/ngx-tethys

Usage

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 {
}

Development

$ git clone [email protected]:worktile/ngx-tethys.git
$ cd ngx-tethys
$ npm install
$ npm run start

Building & Publish

  1. npm run build;
  2. cd built folder, npm publish

About

Fast and reliable Worktile Design widgets in Angular

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 70.3%
  • CSS 24.1%
  • HTML 5.2%
  • JavaScript 0.4%