0.0.4 • Published 8 years ago
@antstudio/antsui-public v0.0.4
AntsUI
Installation
To install this library, run:
$ npm install antsui --save
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AntUiModule } from 'antsui';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AntUiModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once the library is imported, you can use its components, directives and pipes in your Angular application:
<!-- You can now use your library component in app.component.html -->
<h1>
{{title}}
</h1>
<sampleComponent></sampleComponent>
Features list
- Custom buttons (https://goo.gl/OiFulm)
- Custom textboxes (https://goo.gl/EB24ia)
- Custom checkboxes/radios (https://goo.gl/UdAcZL)
- Custom toggles (https://goo.gl/kJON4S)
- Custom loader ()
- Custom form loader (for form submission and ajax)
- Custom editable control (simple inline form for editing details)
License
Commercial license
A full license is coming soon
If anyone would like to use AntsUI commercially without the obligation to share the source code, please contact Anton Sidorov.
Open source license
For open source applications, AntsUI can be licensed under GPLv3 compatible licenses. If you'd like to keep your source code private, contact us for the commercial license.
GPLv3 © Anton Sidorov