支持 footer-data
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -51,6 +51,8 @@ export default [
|
||||
'change-fnr', // 废弃
|
||||
|
||||
'open-fnr',
|
||||
'show-fnr',
|
||||
'hide-fnr',
|
||||
'fnr-change',
|
||||
'fnr-find',
|
||||
'fnr-find-all',
|
||||
|
||||
@@ -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',
|
||||
2
types/plugins/index.d.ts
vendored
2
types/plugins/index.d.ts
vendored
@@ -1 +1 @@
|
||||
export * from './pro'
|
||||
export * from './extend-cell-area'
|
||||
|
||||
2
types/table.d.ts
vendored
2
types/table.d.ts
vendored
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user