![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@beisen/commoninput
Advanced tools
cnpm install 或 npm install cnpm使用教程
npm run dev (开发环境打包 port:8080)
npm run test (测试用例)
npm run build (生产环境打包)
data:{
"status": "show"
,"isActive": false //蓝线是否出现
,"placeHolder": "请输入" //input中的placeholder
,"defaultValue":"技术" //input中的defaultvalue
,"readonly": false //只读态
,"errorStatus": false //报错
,"errorMsg":"sacasc" //报错信息,为空时不显示
,"PromptMsg":"" //报错信息,为空时不显示
,"selectDate":[
{
"value":0
,"name":"查看详情1"
,"pname":"细节看撒1"
,"isActive":false
,"isChecked":true
},{
"value":1
,"name":"查看详情2"
,"pname":"细节看撒2"
,"isActive":false
,"isChecked":true
} ,{
"value":2
,"name":"查看详情3"
,"pname":"细节看撒3"
,"isActive":false
,"isChecked":true
} ,{
"value":3
,"name":"查看详情4"
,"pname":"细节看撒4"
,"isActive":false
,"isChecked":true
}
]//数据
,handlerClick: function(event){
console.log(event.target)
}//组件点击事件
,itemClose: function(event, item, index, selectDate){
self.itemClose(index)
}//删除按钮回调
,inputChange: function(event, status, value){
console.log(value)
}//input的change事件
,inputClick: function(event, status, value){
console.log(value)
self.inputClick();
}//input的点击事件
,inputBlur: function(event, status, value){
console.log(value)
self.inputBlur();
}//input的blur事件
}
1.安装npm组件包
npm install @beisen/CommonInput --save-dev
2.引用组件
import CommonInput from "@beisen/CommonInput"
3.传入参数
data:{
"status": "show"
,"isActive": false //蓝线是否出现
,"placeHolder": "请输入" //input中的placeholder
,"defaultValue":"技术" //input中的defaultvalue
,"readonly": false //只读态
,"errorStatus": false //报错
,"errorMsg":"sacasc" //报错信息,为空时不显示
,"PromptMsg":"" //报错信息,为空时不显示
,"selectDate":[
{
"value":0
,"name":"查看详情1"
,"pname":"细节看撒1"
,"isActive":false
,"isChecked":true
},{
"value":1
,"name":"查看详情2"
,"pname":"细节看撒2"
,"isActive":false
,"isChecked":true
} ,{
"value":2
,"name":"查看详情3"
,"pname":"细节看撒3"
,"isActive":false
,"isChecked":true
} ,{
"value":3
,"name":"查看详情4"
,"pname":"细节看撒4"
,"isActive":false
,"isChecked":true
}
]//数据
,handlerClick: function(event){
console.log(event.target)
}//组件点击事件
,itemClose: function(event, item, index, selectDate){
self.itemClose(index)
}//删除按钮回调
,inputChange: function(event, status, value){
console.log(value)
}//input的change事件
,inputClick: function(event, status, value){
console.log(value)
self.inputClick();
}//input的点击事件
,inputBlur: function(event, status, value){
console.log(value)
self.inputBlur();
}//input的blur事件
}
render () {
return (
<CommonInput {...this.state.data} />
)
}
FAQs
CommonInput
The npm package @beisen/commoninput receives a total of 3 weekly downloads. As such, @beisen/commoninput popularity was classified as not popular.
We found that @beisen/commoninput demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.