Skip to content

Commit

Permalink
releases 4.2.38
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Nov 3, 2024
1 parent c51adee commit 34f3e7a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
* [x] col 列
* [x] collapse 展开面板
* [x] collapse-pane 展开面板-容器
* [ ] color-picker 颜色选择器
* [x] countdown 倒计时
* [x] date-picker 日期选择器
* [x] drawer 抽屉
* [x] empty 空数据
Expand Down Expand Up @@ -92,13 +94,17 @@
* [x] radio 单选框
* [x] radio-button 单选框-按钮
* [x] radio-group 单选框-组
* [x] rate 评分
* [x] result 结果
* [x] row 行
* [x] select 下拉框
* [x] slider 滑块
* [x] steps 步骤条
* [ ] steps 步骤条
* [x] switch 开关
* [x] tab-pane 页签-容器
* [x] tabs 页签
* [x] text-ellipsis 多行文本溢出
* [x] table-select 表格下拉框
* [x] textarea 文本域
* [x] tip 提示
* [x] tooltip 文字提示
Expand Down Expand Up @@ -275,8 +281,8 @@ export default {

该群供大家交流問題,如果群人数已满,将会不定期剔除不活跃的。

![qq](https://vxeui.com/static/donation/qq1.png)
![qq](https://vxeui.com/static/donation/qq2.png)
![qq](https://vxeui.com/resource/donation/qq1.png)
![qq](https://vxeui.com/resource/donation/qq2.png)

## 运行项目

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-pc-ui",
"version": "4.2.37",
"version": "4.2.38",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
1 change: 1 addition & 0 deletions styles/components/textarea.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
}
&[disabled] {
cursor: not-allowed;
color: var(--vxe-ui-font-disabled-color);
background-color: var(--vxe-ui-input-disabled-background-color);
}
}
Expand Down
6 changes: 3 additions & 3 deletions types/components/form-item.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export namespace VxeFormItemPropTypes {
name?: string
props?: P
attrs?: Record<string, any>
events?: Record<string, (cellParams: VxeFormItemSlotTypes.DefaultSlotParams<D>, ...args: any[]) => any>
events?: Record<string, (itemParams: VxeFormItemSlotTypes.DefaultSlotParams<D>, ...args: any[]) => any>
/**
* 下拉选项列表(需要渲染器支持)
*/
Expand Down Expand Up @@ -320,9 +320,9 @@ export namespace VxeFormItemEvents { }

export namespace VxeFormItemSlotTypes {
export interface DefaultSlotParams<D = any> {
$form: VxeFormConstructor
$form: VxeFormConstructor<D>
$grid: VxeGridConstructor | null
data: any
data: D
item: VxeFormDefines.ItemInfo
disabled: boolean | undefined
readonly: boolean | undefined
Expand Down

0 comments on commit 34f3e7a

Please sign in to comment.