@newview/ui 1.1.85 → 1.1.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/ui",
3
- "version": "1.1.85",
3
+ "version": "1.1.86",
4
4
  "author": "newview",
5
5
  "type": "module",
6
6
  "main": "./dist/newview-ui.umd.cjs",
@@ -385,6 +385,10 @@ export interface GridSettingJava {
385
385
  * 显示标题
386
386
  */
387
387
  showHeader?: boolean;
388
+ /**
389
+ * 显示表尾
390
+ */
391
+ showFooter?: boolean
388
392
  /**
389
393
  * 给行附加 className
390
394
  */
@@ -523,6 +527,11 @@ export interface GridEventJava extends VxeTableListeners {
523
527
  * @returns
524
528
  */
525
529
  event_pageChangeBefore?: () => boolean;
530
+ /**
531
+ * 表尾自定义方法
532
+ * @returns
533
+ */
534
+ event_footerMethod?: ({columns,data}) => void
526
535
  }
527
536
 
528
537
  /**