4.1.5 • Published 10 months ago

@om-tlh/bee v4.1.5

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

An enterprise-class UI design language and React UI library.

CI status NPM version NPM downloads

Renovate status

Discussions Issues need help

English | Português | 简体中文 | Українською | Spanish | 日本語

✨ Features

  • 🌈 Enterprise-class UI designed for web applications.
  • 📦 A set of high-quality React components out of the box.
  • 🛡 Written in TypeScript with predictable static types.
  • ⚙️ Whole package of design resources and development tools.
  • 🌍 Internationalization support for dozens of languages.
  • 🎨 Powerful theme customization in every detail.

🖥 Environment Support

  • Modern browsers and Internet Explorer 11 (with polyfills)
  • Server-side Rendering
  • Electron
IE / EdgeFirefoxChromeSafariElectron
IE11, Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versions

📦 Install

npm install @om-tlh/bee
yarn add @om-tlh/bee

🔨 Usage

import { Button, DatePicker } from '@om-tlh/bee';

const App = () => (
  <>
    <Button type="primary">PRESS ME</Button>
    <DatePicker placeholder="select date" />
  </>
);

And import style manually:

import '@om-tlh/bee/dist/bee.css'; // or '@om-tlh/bee/dist/bee.less'

TypeScript

@om-tlh/bee is written in TypeScript with complete definitions, check Use in TypeScript to get started.

🌍 Internationalization

Dozens of languages supported in @om-tlh/bee, see i18n.

🔗 Links

⌨️ Development

Use Gitpod, a free online dev environment for GitHub.

Open in Gitpod

Or clone locally:

$ git clone git@codeup.aliyun.com:647ea659d2963c5649be1d3e/Bee/bee.git
$ cd bee
$ npm install
$ npm start

Open your browser and visit http://127.0.0.1:8001 , see more at Development.