1
0
mirror of synced 2025-12-10 07:58:13 +08:00

修复pager样式

This commit is contained in:
xuliangzhan
2023-06-10 08:22:30 +08:00
parent 2715801ffd
commit 2e329bd430
3 changed files with 4 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.4.2-beta.4",
"version": "4.4.2-beta.5",
"description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟列表、虚拟树、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、弹窗、自定义模板、渲染器等...",
"scripts": {
"update": "npm install --legacy-peer-deps",

View File

@@ -41,6 +41,7 @@
outline: 0;
padding: 0;
border: 1px solid transparent;
font-size: inherit;
&:not(.is--disabled) {
&:focus {
box-shadow: 0 0 0.25em 0 var(--vxe-primary-color);

View File

@@ -341,7 +341,7 @@ export namespace VxeTableProDefines {
export interface CellAreaArrowsEndEventParams<D = VxeTableDataRow> extends EventParams<D>, CellAreaArrowsEndParams<D> { }
export interface ActiveCellChangeStartParams<D = VxeTableDataRow> {
activeArea: VxeTableProDefines.MouseCellArea
activeArea: VxeTableProDefines.MouseActiveCellArea
row: D
column: VxeTableDefines.ColumnInfo<D>
isTab: boolean
@@ -354,7 +354,7 @@ export namespace VxeTableProDefines {
export interface ActiveCellChangeStartEventParams<D = VxeTableDataRow> extends EventParams<D>, ActiveCellChangeStartParams<D> { }
export interface ActiveCellChangeEndParams<D = VxeTableDataRow> extends ActiveCellChangeStartParams<D> {
beforeActiveArea: VxeTableProDefines.MouseCellArea
beforeActiveArea: VxeTableProDefines.MouseActiveCellArea
}
export interface ActiveCellChangeEndEventParams<D = VxeTableDataRow> extends EventParams<D>, ActiveCellChangeEndParams<D> { }
}