npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cloudbae-frontend/ui

v1.0.4

Published

@cloudbae-frontend/ui是一个基于 Angular 的组件库,并基于最小改动,最小学习成本的前提下,拓展了部分表单控件,提供了很多网页上的视觉交互组件、指令、服务、过滤器等等。并提供了一套侵入性很小的底层css样式表。

Downloads

16

Readme

简介

@cloudbae-frontend/ui是一个基于 Angular 的组件库,并基于最小改动,最小学习成本的前提下,拓展了部分表单控件,提供了很多网页上的视觉交互组件、指令、服务、过滤器等等。并提供了一套侵入性很小的底层css样式表。

可以这么说,如果你会使用 Angular,那使用@cloudbae-frontend/ui基本就无需看文档。


最小更改原则 + 最低学习成本原则

就拿常见的表单控件来说,原来你可能是这么写的:

<input type="checkbox" name="name" [(ngModel)]="model">

现在你可以这样写:

<ui-input type="checkbox" name="name" [(ngModel)]="model"></ui-input>

基本无需改动就可以实现功能,且支持disabledreadonly等等原生属性

在线文档及演示

live demo

更新日志

CHANGELOG.md

安装

npm install @cloudbae-frontend/ui --save

在你的项目中引入cloudbae-ui

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { UIModule } from '@cloudbae-frontend/ui';

// 这里是依赖的样式表,你也可以直接通过 link 标签引入
// 如果你想自定义样式,你可以通过 scss 源文件来修改其中的样式
// scss 文件目录 node_modules/@cloudbae-frontend/ui/assets/scss/
import '@cloudbae-frontend/ui/index.min.css'; 


@NgModule({
    imports: [
        /* ..other modules.. */
        UIModule.forRoot(), // 如果是子模块或异步模块,如路由模块,则不要调用
        BrowserModule,
        BrowserAnimationsModule // UIModule 依赖动画模块
    ]
})

export class AppModule {
}

在根组件注明<ui-app></ui-app>组件

<!-- app.component.html -->

<ui-app>
  <!-- your code ... -->
</ui-app>

现在你就可以使用@cloudbae-frontend/ui所提供的所有功能了。 更详细的文档请点击https://www.tanboui.com/ui