vxe-pc-ui 4.4.8 → 4.4.10
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/es/icon/style.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/upload/src/upload.js +82 -70
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +10 -6
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/upload/src/upload.js +8 -4
- package/lib/upload/src/upload.min.js +1 -1
- package/package.json +1 -1
- package/packages/upload/src/upload.ts +91 -79
- package/types/components/grid.d.ts +18 -2
- package/types/components/menu.d.ts +4 -3
- package/types/components/pager.d.ts +4 -2
- package/types/components/table-module/keyboard.d.ts +3 -2
- package/types/components/table.d.ts +26 -2
- /package/es/icon/{iconfont.1741427391009.ttf → iconfont.1741767880820.ttf} +0 -0
- /package/es/icon/{iconfont.1741427391009.woff → iconfont.1741767880820.woff} +0 -0
- /package/es/icon/{iconfont.1741427391009.woff2 → iconfont.1741767880820.woff2} +0 -0
- /package/es/{iconfont.1741427391009.ttf → iconfont.1741767880820.ttf} +0 -0
- /package/es/{iconfont.1741427391009.woff → iconfont.1741767880820.woff} +0 -0
- /package/es/{iconfont.1741427391009.woff2 → iconfont.1741767880820.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1741427391009.ttf → iconfont.1741767880820.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1741427391009.woff → iconfont.1741767880820.woff} +0 -0
- /package/lib/icon/style/{iconfont.1741427391009.woff2 → iconfont.1741767880820.woff2} +0 -0
- /package/lib/{iconfont.1741427391009.ttf → iconfont.1741767880820.ttf} +0 -0
- /package/lib/{iconfont.1741427391009.woff → iconfont.1741767880820.woff} +0 -0
- /package/lib/{iconfont.1741427391009.woff2 → iconfont.1741767880820.woff2} +0 -0
|
@@ -368,7 +368,25 @@ export namespace VxeTablePropTypes {
|
|
|
368
368
|
/**
|
|
369
369
|
* 当前行配置项
|
|
370
370
|
*/
|
|
371
|
-
export interface
|
|
371
|
+
export interface CurrentRowConfig<D = any> {
|
|
372
|
+
/**
|
|
373
|
+
* 只对 mouse-config.selected 启用有效,是否跟随单元格选中而移动高亮行
|
|
374
|
+
*/
|
|
375
|
+
isFollowSelected?: boolean
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* 当前列配置项
|
|
380
|
+
*/
|
|
381
|
+
export interface CurrentColumnConfig<D = any> {
|
|
382
|
+
/**
|
|
383
|
+
* 触发方式
|
|
384
|
+
*/
|
|
385
|
+
trigger?: 'default' | 'header' | 'cell' | '' | null
|
|
386
|
+
/**
|
|
387
|
+
* 只对 mouse-config.selected 启用有效,是否跟随单元格选中而移动高亮列
|
|
388
|
+
*/
|
|
389
|
+
isFollowSelected?: boolean
|
|
372
390
|
}
|
|
373
391
|
|
|
374
392
|
/**
|
|
@@ -2652,7 +2670,11 @@ export interface VxeTableProps<D = any> {
|
|
|
2652
2670
|
/**
|
|
2653
2671
|
* 当前行配置项
|
|
2654
2672
|
*/
|
|
2655
|
-
|
|
2673
|
+
currentRowConfig?: VxeTablePropTypes.CurrentRowConfig<D>
|
|
2674
|
+
/**
|
|
2675
|
+
* 当前列配置项
|
|
2676
|
+
*/
|
|
2677
|
+
currentColumnConfig?: VxeTablePropTypes.CurrentColumnConfig<D>
|
|
2656
2678
|
/**
|
|
2657
2679
|
* 已废弃,被 rowDragConfig 替换
|
|
2658
2680
|
* @deprecated
|
|
@@ -2869,6 +2891,7 @@ export interface TablePrivateComputed<D = any> {
|
|
|
2869
2891
|
computeScrollbarXToTop: ComputedRef<boolean>
|
|
2870
2892
|
computeScrollbarYToLeft: ComputedRef<boolean>
|
|
2871
2893
|
computeColumnOpts: ComputedRef<VxeTablePropTypes.ColumnOpts>
|
|
2894
|
+
computeCurrentColumnOpts: ComputedRef<VxeTablePropTypes.CurrentColumnConfig>
|
|
2872
2895
|
computeScrollXThreshold: ComputedRef<number>
|
|
2873
2896
|
computeScrollYThreshold: ComputedRef<number>
|
|
2874
2897
|
computeDefaultRowHeight: ComputedRef<number>
|
|
@@ -2876,6 +2899,7 @@ export interface TablePrivateComputed<D = any> {
|
|
|
2876
2899
|
computeHeaderCellOpts: ComputedRef<VxeTablePropTypes.HeaderCellConfig>
|
|
2877
2900
|
computeFooterCellOpts: ComputedRef<VxeTablePropTypes.FooterCellConfig>
|
|
2878
2901
|
computeRowOpts: ComputedRef<VxeTablePropTypes.RowOpts>
|
|
2902
|
+
computeCurrentRowOpts: ComputedRef<VxeTablePropTypes.CurrentRowConfig>
|
|
2879
2903
|
computeRowDragOpts: ComputedRef<VxeTablePropTypes.RowDragConfig>
|
|
2880
2904
|
computeColumnDragOpts: ComputedRef<VxeTablePropTypes.ColumnDragConfig>
|
|
2881
2905
|
computeResizeOpts: ComputedRef<VxeTablePropTypes.ResizeOpts>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|