https://github.com/matai-tech/matai-pro
Angular components about material
https://github.com/matai-tech/matai-pro
angular angular-components
Last synced: about 2 months ago
JSON representation
Angular components about material
- Host: GitHub
- URL: https://github.com/matai-tech/matai-pro
- Owner: matai-tech
- License: mit
- Created: 2018-11-20T12:01:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-20T11:06:50.000Z (over 7 years ago)
- Last Synced: 2025-06-16T10:21:42.010Z (about 1 year ago)
- Topics: angular, angular-components
- Language: TypeScript
- Homepage: https://matai-tech.github.io/matai-pro-doc
- Size: 257 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MataiPro
[](https://travis-ci.org/matai-tech/matai-pro.svg?branch=master)
[](https://github.com/matai-tech/matai-pro/blob/master/LICENSE)
[](https://www.npmjs.com/package/matai-pro)
Dev environment is from [ng-zorro-antd](https://github.com/NG-ZORRO/ng-zorro-antd)
## Quick start
```shell
$ npm install three -S
$ npm install matai-pro -S
```
```ts
// app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { MataiProModule } from 'matai-pro';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
MataiProModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```
## Development
```shell
$ git clone https://github.com/matai-tech/matai-pro.git
$ cd matai-pro
$ npm install
$ npm run start
```
## Publish
```shell
$ npm config set scope mta-tech
$ npm run release
# after CI passed
$ npm run generate
$ cd publish && npm publish
```