vxe-pc-ui 4.8.13 → 4.8.14
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/README.md +8 -4
- package/es/icon/style.css +1 -1
- package/es/split/style.css +27 -33
- package/es/split/style.min.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/vxe-split/style.css +27 -33
- package/es/vxe-split/style.min.css +1 -1
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +2 -2
- package/lib/index.umd.min.js +1 -1
- package/lib/split/style/style.css +27 -33
- package/lib/split/style/style.min.css +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/vxe-split/style/style.css +27 -33
- package/lib/vxe-split/style/style.min.css +1 -1
- package/package.json +1 -1
- package/styles/components/split.scss +25 -42
- package/styles/theme/base.scss +4 -2
- package/styles/theme/dark.scss +2 -1
- package/styles/theme/light.scss +2 -1
- package/styles/variable.scss +2 -1
- package/types/components/gantt-module/gantt-view.d.ts +5 -1
- package/types/components/gantt.d.ts +105 -16
- package/types/components/grid.d.ts +3 -2
- package/types/components/table.d.ts +9 -6
- package/types/ui/global-icon.d.ts +6 -0
- /package/es/icon/{iconfont.1754905375075.ttf → iconfont.1755066105728.ttf} +0 -0
- /package/es/icon/{iconfont.1754905375075.woff → iconfont.1755066105728.woff} +0 -0
- /package/es/icon/{iconfont.1754905375075.woff2 → iconfont.1755066105728.woff2} +0 -0
- /package/es/{iconfont.1754905375075.ttf → iconfont.1755066105728.ttf} +0 -0
- /package/es/{iconfont.1754905375075.woff → iconfont.1755066105728.woff} +0 -0
- /package/es/{iconfont.1754905375075.woff2 → iconfont.1755066105728.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.ttf → iconfont.1755066105728.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.woff → iconfont.1755066105728.woff} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.woff2 → iconfont.1755066105728.woff2} +0 -0
- /package/lib/{iconfont.1754905375075.ttf → iconfont.1755066105728.ttf} +0 -0
- /package/lib/{iconfont.1754905375075.woff → iconfont.1755066105728.woff} +0 -0
- /package/lib/{iconfont.1754905375075.woff2 → iconfont.1755066105728.woff2} +0 -0
|
@@ -3476,12 +3476,6 @@ export interface TableReactData<D = any> {
|
|
|
3476
3476
|
* @deprecated
|
|
3477
3477
|
*/
|
|
3478
3478
|
rowHeight: number
|
|
3479
|
-
// 表头高度
|
|
3480
|
-
tHeaderHeight: number
|
|
3481
|
-
// 表体高度
|
|
3482
|
-
tBodyHeight: number
|
|
3483
|
-
// 表尾高度
|
|
3484
|
-
tFooterHeight: number
|
|
3485
3479
|
// 表格父容器的高度
|
|
3486
3480
|
parentHeight: number
|
|
3487
3481
|
// 是否使用分组表头
|
|
@@ -3503,6 +3497,8 @@ export interface TableReactData<D = any> {
|
|
|
3503
3497
|
rowGroupColumn: VxeTableDefines.ColumnInfo<D> | null | undefined
|
|
3504
3498
|
// 展开列信息
|
|
3505
3499
|
expandColumn: VxeTableDefines.ColumnInfo<D> | null | undefined
|
|
3500
|
+
checkboxColumn: VxeTableDefines.ColumnInfo<D> | null | undefined
|
|
3501
|
+
radioColumn: VxeTableDefines.ColumnInfo<D> | null | undefined
|
|
3506
3502
|
hasFixedColumn: boolean
|
|
3507
3503
|
// 树节点列信息
|
|
3508
3504
|
treeNodeColumn: any
|
|
@@ -3875,6 +3871,13 @@ export interface TableInternalData<D = any> {
|
|
|
3875
3871
|
// 甘特图
|
|
3876
3872
|
xeGanttView?: VxeGanttViewConstructor & VxeGanttViewPrivateMethods
|
|
3877
3873
|
|
|
3874
|
+
// 表头高度
|
|
3875
|
+
tHeaderHeight: number
|
|
3876
|
+
// 表体高度
|
|
3877
|
+
tBodyHeight: number
|
|
3878
|
+
// 表尾高度
|
|
3879
|
+
tFooterHeight: number
|
|
3880
|
+
|
|
3878
3881
|
// 内部属性
|
|
3879
3882
|
_lastResizeTime?: any
|
|
3880
3883
|
_keyCtx?: any
|
|
@@ -264,5 +264,11 @@ declare module '@vxe-ui/core' {
|
|
|
264
264
|
SPLIT_BOTTOM_ACTION?: string
|
|
265
265
|
SPLIT_LEFT_ACTION?: string
|
|
266
266
|
SPLIT_RIGHT_ACTION?: string
|
|
267
|
+
|
|
268
|
+
// gantt
|
|
269
|
+
GANTT_VIEW_LEFT_OPEN?: string
|
|
270
|
+
GANTT_VIEW_LEFT_CLOSE?: string
|
|
271
|
+
GANTT_VIEW_RIGHT_OPEN?: string
|
|
272
|
+
GANTT_VIEW_RIGHT_CLOSE?: string
|
|
267
273
|
}
|
|
268
274
|
}
|
|
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
|