@abelfubu/tangerine 中文文档教程

发布于 3年前 浏览 29 更新于 3年前

Tangerine UI

Tangerine 是 Angular 的 UI 库,易于使用功能组件实现。

Installation

运行 npm i @abelfubu/tangerine

Angular config

要开始使用 tangerine UI 库,只需在主 app.module 中导入模块

import { BrowserModule } from "@angular/platform-browser";
import { NgModule } from "@angular/core";

import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { ReactiveFormsModule } from "@angular/forms";
// Import Tangerine module
import { TangerineModule } from "projects/tangerine/src/public-api";

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    AppRoutingModule,
    // Configure with the forRoot() method
    TangerineModule.forRoot(),
    ReactiveFormsModule,
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Input component

只需用组件包装一个普通的 html 输入,您可以添加任何图标,包装元素内的 svg 图标、font-awesone 或材质图标。

该组件接受标签属性

<tng-input [ngClass]="checkErrors(form.controls.username)">
  <input
    type="text"
    name="username"
    formControlName="username"
    placeholder="Name"
  />
  <i class="far fa-user"></i>
</tng-input>

Input Component

Rating

添加组件,可以配置你想要的星星数量和currentRating,当editable flag为在组件上发出值,以便可以收听它。

Attributes

  • color, by default 'goldenrod'
  • stars, the number of stars to render
  • size, the size in px of each star
  • currentRating, the current rating…
  • editable, flag to make the component editable
  • rainbow, multiple colors behaviour
  • (newRating), event to listen to when the stars are clicked
<tng-rating
  currentRating="3"
  color="#232323"
  stars="10"
  size="42"
  editable
  rainbow
  (newRating)="getRating($event)"
></tng-rating>

评级组件

Tangerine UI

Tangerine is a UI Library for Angular, easy to implement with functional components.

Installation

Run npm i @abelfubu/tangerine

Angular config

To start using the tangerine UI library just import the module in the main app.module

import { BrowserModule } from "@angular/platform-browser";
import { NgModule } from "@angular/core";

import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { ReactiveFormsModule } from "@angular/forms";
// Import Tangerine module
import { TangerineModule } from "projects/tangerine/src/public-api";

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    AppRoutingModule,
    // Configure with the forRoot() method
    TangerineModule.forRoot(),
    ReactiveFormsModule,
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Input component

Just wrap a normal html input with thecomponent, you can add any icon, be it a svg icon, font-awesone or material icon inside the wraping element.

The component accepts a label property

<tng-input [ngClass]="checkErrors(form.controls.username)">
  <input
    type="text"
    name="username"
    formControlName="username"
    placeholder="Name"
  />
  <i class="far fa-user"></i>
</tng-input>

Input Component

Rating

Add thecomponent, it's possible to configure the amount of stars you want it to have and the currentRating, When the editable flag is on the component emits values so that it can be listened to.

Attributes

  • color, by default 'goldenrod'
  • stars, the number of stars to render
  • size, the size in px of each star
  • currentRating, the current rating…
  • editable, flag to make the component editable
  • rainbow, multiple colors behaviour
  • (newRating), event to listen to when the stars are clicked
<tng-rating
  currentRating="3"
  color="#232323"
  stars="10"
  size="42"
  editable
  rainbow
  (newRating)="getRating($event)"
></tng-rating>

Rating Component

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文