# @beisen-platform/common-label

> 表单项前面的Label文字

Latest version **1.0.3-rc.8** (published 2019-11-08) · ISC license · 0 weekly downloads

## Install

```sh
npm install @beisen-platform/common-label
pnpm add @beisen-platform/common-label
yarn add @beisen-platform/common-label
bun add @beisen-platform/common-label
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3-rc.8 |
| Published | 2019-11-08 |
| First published | 2018-11-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 14.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | beisen |
| Maintainers | beisencorp |
| Keywords | beisen, react-component, es6 |

## Links

- npm: https://www.npmjs.com/package/@beisen-platform/common-label
- Repository: http://gitlab.beisencorp.com/ux-cnpm/ux-common-label
- npm.io page: https://npm.io/package/@beisen-platform/common-label

## Dependencies (3)

- [@beisen-platform/tool-tip](https://npm.io/package/@beisen-platform/tool-tip.md)
- [@beisen-platform/common-func](https://npm.io/package/@beisen-platform/common-func.md)
- [@beisen-platform/react-icons](https://npm.io/package/@beisen-platform/react-icons.md)

## Recent versions

- 1.0.3-rc.8 (latest) — 2019-11-08
- 1.0.3-rc.7 — 2019-11-08
- 1.0.3-rc.6 — 2019-11-05
- 1.0.3-rc.5 — 2019-11-05
- 1.0.3-rc.4 — 2019-07-04
- 1.0.3-rc.1 — 2019-04-29
- 1.0.3 — 2019-04-16
- 1.0.2 — 2019-03-15
- 1.0.1 — 2019-01-29
- 1.0.0 — 2019-01-25
- 0.0.31 — 2018-11-28

## README

# common-label 使用说明

## 项目运行

1. cnpm install 或 npm install cnpm使用教程

2. npm run dev （开发环境打包 port:8080）

3. npm run test （测试用例）

4. npm run build （生产环境打包）

## common-label参数

```

{
	readOnly:false,
	required: true,
	helpMsg:'qdwdqwd',
	sideTip:false, //toolTip是否左右显示
	hiddenTip:false, //toolTip是否显示
	labelText: 'AutoComplete', //左侧 label 文字
	hiddenLabel: false,  //隐藏整个组件
	lablePos: true, //label位置，true时在左边，false在上边
	lableTxt: false, //label中文字对齐方式，true左对齐，false右对齐
	iconClick: function(){} //没有iconClick这个字段即不支持此功能。 有即是支持这个特性
}
```

## common-label调用方法

1.安装npm组件包

```
npm install @beisen/common-label --save-dev
```

2.引用组件

  ```
import CommonLabel from "@beisen/common-label"
  ```


3. 传入参数

	该参数为上述参数，传入方式使用: {...参数}
	```
	{
		readOnly:false,
		required: true,
		helpMsg:'qdwdqwd',
		sideTip:false, //toolTip是否左右显示
		hiddenTip:false, //toolTip是否显示
		labelText: 'AutoComplete', //左侧 label 文字
		lablePos: true, //label位置，true时在左边，false在上边
		lableTxt: false, //label中文字对齐方式，true左对齐，false右对齐
	}

	render () {
			return (
				<CommonLabel {...data} />
			)
		}
	```

---
_Source: https://npm.io/package/@beisen-platform/common-label · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
