vxe-table 4.20.6 → 4.20.7
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/dist/all.esm.js +6 -6
- package/dist/style.css +1 -1
- package/dist/style.min.css +1 -1
- package/es/{iconfont.1784791298289.ttf → iconfont.1784868296497.ttf} +0 -0
- package/es/iconfont.1784868296497.woff +0 -0
- package/es/iconfont.1784868296497.woff2 +0 -0
- package/es/index.css +1 -1
- package/es/index.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/custom/panel.js +2 -2
- package/es/table/module/export/util.js +1 -1
- package/es/table/style.css +42 -21
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +2 -2
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +42 -21
- package/es/vxe-table/style.min.css +1 -1
- package/lib/{iconfont.1784791298289.ttf → iconfont.1784868296497.ttf} +0 -0
- package/lib/iconfont.1784868296497.woff +0 -0
- package/lib/iconfont.1784868296497.woff2 +0 -0
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +6 -6
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/custom/panel.js +2 -2
- package/lib/table/module/custom/panel.min.js +1 -1
- package/lib/table/module/export/util.js +1 -1
- package/lib/table/module/export/util.min.js +1 -1
- package/lib/table/style/style.css +42 -21
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +2 -2
- 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-table/style/style.css +42 -21
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/module/custom/panel.ts +2 -2
- package/packages/table/module/export/util.ts +1 -1
- package/packages/ui/index.ts +1 -1
- package/styles/components/icon.scss +5 -1
- package/styles/helpers/baseMixin.scss +16 -5
- package/styles/icon/iconfont.ttf +0 -0
- package/styles/icon/iconfont.woff +0 -0
- package/styles/icon/iconfont.woff2 +0 -0
- package/es/iconfont.1784791298289.woff +0 -0
- package/es/iconfont.1784791298289.woff2 +0 -0
- package/lib/iconfont.1784791298289.woff +0 -0
- package/lib/iconfont.1784791298289.woff2 +0 -0
package/dist/all.esm.js
CHANGED
|
@@ -44,7 +44,7 @@ function eqEmptyValue(cellValue) {
|
|
|
44
44
|
return cellValue === '' || XEUtils.eqNull(cellValue);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
const version = "4.20.
|
|
47
|
+
const version = "4.20.7";
|
|
48
48
|
VxeUI.version = version;
|
|
49
49
|
VxeUI.tableVersion = version;
|
|
50
50
|
VxeUI.setConfig({
|
|
@@ -425,7 +425,7 @@ VxeUI.setIcon({
|
|
|
425
425
|
TOOLBAR_TOOLS_PRINT: iconPrefix + 'print',
|
|
426
426
|
TOOLBAR_TOOLS_FULLSCREEN: iconPrefix + 'fullscreen',
|
|
427
427
|
TOOLBAR_TOOLS_MINIMIZE: iconPrefix + 'minimize',
|
|
428
|
-
TOOLBAR_TOOLS_CUSTOM: iconPrefix + '
|
|
428
|
+
TOOLBAR_TOOLS_CUSTOM: iconPrefix + 'setting',
|
|
429
429
|
TOOLBAR_TOOLS_FIXED_LEFT: iconPrefix + 'fixed-left',
|
|
430
430
|
TOOLBAR_TOOLS_FIXED_LEFT_ACTIVE: iconPrefix + 'fixed-left-fill',
|
|
431
431
|
TOOLBAR_TOOLS_FIXED_RIGHT: iconPrefix + 'fixed-right',
|
|
@@ -756,7 +756,7 @@ function wheelScrollTopTo(diffNum, cb) {
|
|
|
756
756
|
}
|
|
757
757
|
|
|
758
758
|
const { log } = VxeUI;
|
|
759
|
-
const tableVersion = `table v${"4.20.
|
|
759
|
+
const tableVersion = `table v${"4.20.7"}`;
|
|
760
760
|
function createComponentLog(name) {
|
|
761
761
|
const uiVersion = VxeUI.uiVersion ? `ui v${VxeUI.uiVersion}` : '';
|
|
762
762
|
const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
|
|
@@ -6909,8 +6909,8 @@ var TableCustomPanelComponent = defineVxeComponent({
|
|
|
6909
6909
|
immediate: false,
|
|
6910
6910
|
disabled: isHidden,
|
|
6911
6911
|
modelValue: column.renderResizeWidth,
|
|
6912
|
-
min: customMinWidth ||
|
|
6913
|
-
max: customMaxWidth ||
|
|
6912
|
+
min: customMinWidth || 0,
|
|
6913
|
+
max: customMaxWidth || 9999,
|
|
6914
6914
|
'onUpdate:modelValue'(value) {
|
|
6915
6915
|
const width = Math.max(0, Number(value));
|
|
6916
6916
|
column.renderResizeWidth = width;
|
|
@@ -10447,7 +10447,7 @@ hooks$5.add('tableEditModule', {
|
|
|
10447
10447
|
});
|
|
10448
10448
|
|
|
10449
10449
|
// 默认导出或打印的 HTML 样式
|
|
10450
|
-
const defaultHtmlStyle = 'body{padding:0;color:rgba(0,0,0,0.7);font-family:"Microsoft YaHei",微软雅黑,"MicrosoftJhengHei",华文细黑,STHeiti,MingLiu
|
|
10450
|
+
const defaultHtmlStyle = 'body{padding:0;color:rgba(0,0,0,0.7);font-family:"Microsoft YaHei",微软雅黑,"MicrosoftJhengHei",华文细黑,STHeiti,MingLiu}body *{-webkit-box-sizing:border-box;box-sizing:border-box}.vxe-table{border-collapse:collapse;text-align:left;border-spacing:0}.vxe-table.is--default-width,.vxe-table.is--auto-width{width:100%}.vxe-table.is--scale-width{table-layout:fixed}.vxe-table,.vxe-table th,.vxe-table td,.vxe-table td{white-space:pre-line;word-break:break-all;border-color:#D0D0D0;border-style:solid;border-width:0}.border--default,.border--full,.border--outer{border-top-width:1px}.border--default,.border--full,.border--outer{border-left-width:1px}.border--outer,.border--default th,.border--default td,.border--full th,.border--full td,.border--outer th,.border--inner th,.border--inner td{border-bottom-width:1px}.border--default,.border--outer,.border--full th,.border--full td{border-right-width:1px}.border--default th,.border--full th,.border--outer th{background-color:#f8f8f9}.vxe-table td>div,.vxe-table th>div{padding:0.5em 0.4em}.col--center{text-align:center}.col--right{text-align:right}.vxe-table .col--ellipsis>div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all}.vxe-table--tree-node{text-align:left}.vxe-table--tree-node-wrapper{position:relative}.vxe-table--tree-icon-wrapper{position:absolute;top:50%;width:1em;height:1em;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.vxe-table--tree-unfold-icon,.vxe-table--tree-fold-icon{position:absolute;width:0;height:0;border-style:solid;border-width:0.5em;border-right-color:transparent;border-bottom-color:transparent}.vxe-table--tree-unfold-icon{left:.3em;top:0;border-left-color:#939599;border-top-color:transparent}.vxe-table--tree-fold-icon{left:0;top:.3em;border-left-color:transparent;border-top-color:#939599}.vxe-table--tree-cell{display:block;padding-left:1.5em}.vxe-table input[type="checkbox"]{margin:0}.vxe-table input[type="checkbox"],.vxe-table input[type="radio"],.vxe-table input[type="checkbox"]+span,.vxe-table input[type="radio"]+span{vertical-align:middle;padding-left:0.4em}';
|
|
10451
10451
|
function getExportBlobByContent(content, options) {
|
|
10452
10452
|
return new Blob([content], { type: `text/${options.type};charset=utf-8;` });
|
|
10453
10453
|
}
|