1
0
mirror of synced 2025-12-08 06:38:39 +08:00

支持 footer-data

This commit is contained in:
xuliangzhan
2024-04-08 11:28:19 +08:00
parent 4c4723b8a2
commit 57f0906664
5 changed files with 14 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.5.22-beta.2",
"version": "4.5.22-beta.6",
"description": "一个基于 vue 的 PC 端表单/表格组件支持增删改查、虚拟列表、虚拟树、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、弹窗、自定义模板、渲染器、JSON 配置式...",
"scripts": {
"update": "npm install --legacy-peer-deps",
@@ -29,7 +29,7 @@
"typings": "types/index.d.ts",
"dependencies": {
"dom-zindex": "^1.0.1",
"xe-utils": "^3.5.22"
"xe-utils": "^3.5.24"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.7",

View File

@@ -51,6 +51,8 @@ export default [
'change-fnr', // 废弃
'open-fnr',
'show-fnr',
'hide-fnr',
'fnr-change',
'fnr-find',
'fnr-find-all',

View File

@@ -63,6 +63,12 @@ export interface VxeTableProMethods<D = VxeTableDataRow> {
*
*/
openReplace(): Promise<any>
/**
*
*/
openFNR(options: {
type?: 'find' | 'replace' | '' | null
}): Promise<any>
/**
*
*/
@@ -353,6 +359,8 @@ export type VxeTableProEmits = [
'change-fnr', // 废弃
'open-fnr',
'show-fnr',
'hide-fnr',
'fnr-change',
'fnr-find',
'fnr-find-all',

View File

@@ -1 +1 @@
export * from './pro'
export * from './extend-cell-area'

2
types/table.d.ts vendored
View File

@@ -1,6 +1,6 @@
import { RenderFunction, SetupContext, Ref, ComputedRef, ComponentPublicInstance, ComponentInternalInstance, VNode } from 'vue'
import { VXEComponent, VxeComponentBase, VxeEvent, SizeType, ValueOf, VNodeStyle, SlotVNodeType } from './component'
import { VxeTableProEmits, VxeTableProDefines } from './plugins/pro'
import { VxeTableProEmits, VxeTableProDefines } from './plugins/extend-cell-area'
import { VxeColumnPropTypes, VxeColumnProps, VxeColumnSlotTypes } from './column'
import { VXETableConfigOptions, VxeGlobalRendererHandles } from './v-x-e-table'
import { VxeToolbarConstructor, VxeToolbarInstance } from './toolbar'