@fecp/designer 5.5.105 → 5.5.106
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/_virtual/exceljs.min.mjs +7 -0
- package/es/_virtual/exceljs.min2.mjs +4 -0
- package/es/designer/package.json.mjs +1 -1
- package/es/designer.css +54 -38
- package/es/node_modules/@vxe-ui/plugin-export-xlsx/es/index.esm.mjs +809 -0
- package/es/node_modules/exceljs/dist/exceljs.min.mjs +23129 -0
- package/es/packages/vue/index.mjs +6 -1
- package/es/packages/vue/src/components/table/Table.vue.mjs +125 -4
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +6 -115
- package/lib/_virtual/exceljs.min.js +7 -0
- package/lib/_virtual/exceljs.min2.js +4 -0
- package/lib/designer/package.json.js +1 -1
- package/lib/designer.css +54 -38
- package/lib/node_modules/@vxe-ui/plugin-export-xlsx/es/index.esm.js +809 -0
- package/lib/node_modules/exceljs/dist/exceljs.min.js +23129 -0
- package/lib/packages/vue/index.js +5 -0
- package/lib/packages/vue/src/components/table/Table.vue.js +125 -4
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +6 -115
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { getDefaultExportFromCjs } from "./_commonjsHelpers.mjs";
|
|
2
|
+
import { __require as requireExceljs_min } from "../node_modules/exceljs/dist/exceljs.min.mjs";
|
|
3
|
+
var exceljs_minExports = requireExceljs_min();
|
|
4
|
+
const ExcelJS = /* @__PURE__ */ getDefaultExportFromCjs(exceljs_minExports);
|
|
5
|
+
export {
|
|
6
|
+
ExcelJS as default
|
|
7
|
+
};
|
package/es/designer.css
CHANGED
|
@@ -6476,10 +6476,10 @@ body,
|
|
|
6476
6476
|
border-radius: 5px;
|
|
6477
6477
|
margin-right: 12px;
|
|
6478
6478
|
margin-top: 2px;
|
|
6479
|
-
}.cell-content .cell-text[data-v-
|
|
6479
|
+
}.cell-content .cell-text[data-v-336afafd] {
|
|
6480
6480
|
display: inline-block;
|
|
6481
6481
|
}
|
|
6482
|
-
.cell-content .copy-icon[data-v-
|
|
6482
|
+
.cell-content .copy-icon[data-v-336afafd] {
|
|
6483
6483
|
cursor: pointer;
|
|
6484
6484
|
color: #909399;
|
|
6485
6485
|
font-size: 14px;
|
|
@@ -6487,7 +6487,7 @@ body,
|
|
|
6487
6487
|
top: 4px;
|
|
6488
6488
|
margin-left: 4px;
|
|
6489
6489
|
}
|
|
6490
|
-
.cell-content .copy-icon[data-v-
|
|
6490
|
+
.cell-content .copy-icon[data-v-336afafd]:hover {
|
|
6491
6491
|
color: #409eff;
|
|
6492
6492
|
}.fec-table-filter[data-v-ba2f1878] {
|
|
6493
6493
|
display: flex;
|
|
@@ -6783,12 +6783,12 @@ body,
|
|
|
6783
6783
|
white-space: nowrap;
|
|
6784
6784
|
overflow: hidden;
|
|
6785
6785
|
text-overflow: ellipsis;
|
|
6786
|
-
}.fec-table[data-v-
|
|
6786
|
+
}.fec-table[data-v-199fae66] {
|
|
6787
6787
|
height: 100%;
|
|
6788
6788
|
flex-grow: 1;
|
|
6789
6789
|
padding: 0 16px;
|
|
6790
6790
|
}
|
|
6791
|
-
.fec-table-container[data-v-
|
|
6791
|
+
.fec-table-container[data-v-199fae66] {
|
|
6792
6792
|
width: 100%;
|
|
6793
6793
|
background: #fff;
|
|
6794
6794
|
box-sizing: border-box;
|
|
@@ -6798,91 +6798,91 @@ body,
|
|
|
6798
6798
|
overflow: hidden;
|
|
6799
6799
|
flex-grow: 1;
|
|
6800
6800
|
}
|
|
6801
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
6801
|
+
.fec-table-container .fec-vxe-table[data-v-199fae66] {
|
|
6802
6802
|
flex: 1;
|
|
6803
6803
|
min-height: 0;
|
|
6804
6804
|
overflow: hidden;
|
|
6805
6805
|
margin-bottom: 16px;
|
|
6806
6806
|
}
|
|
6807
|
-
.fec-table-container[data-v-
|
|
6807
|
+
.fec-table-container[data-v-199fae66] .vxe-table {
|
|
6808
6808
|
font-size: 14px;
|
|
6809
6809
|
font-family: inherit;
|
|
6810
6810
|
}
|
|
6811
|
-
.fec-table-container[data-v-
|
|
6812
|
-
.fec-table-container[data-v-
|
|
6811
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-sort--asc-btn,
|
|
6812
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-sort--desc-btn {
|
|
6813
6813
|
color: #dcdcdc;
|
|
6814
6814
|
}
|
|
6815
|
-
.fec-table-container[data-v-
|
|
6816
|
-
.fec-table-container[data-v-
|
|
6815
|
+
.fec-table-container[data-v-199fae66] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
6816
|
+
.fec-table-container[data-v-199fae66] .vxe-table .serverSort .vxe-sort--desc-btn {
|
|
6817
6817
|
color: #d3edf9;
|
|
6818
6818
|
}
|
|
6819
|
-
.fec-table-container[data-v-
|
|
6819
|
+
.fec-table-container[data-v-199fae66] .vxe-table .serverSort .sort--active {
|
|
6820
6820
|
color: var(--el-color-primary);
|
|
6821
6821
|
}
|
|
6822
|
-
.fec-table-container[data-v-
|
|
6822
|
+
.fec-table-container[data-v-199fae66] .vxe-table .sort--active {
|
|
6823
6823
|
color: var(--el-color-primary);
|
|
6824
6824
|
}
|
|
6825
|
-
.fec-table-container[data-v-
|
|
6825
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--body-wrapper {
|
|
6826
6826
|
overflow: auto;
|
|
6827
6827
|
}
|
|
6828
|
-
.fec-table-container[data-v-
|
|
6829
|
-
.fec-table-container[data-v-
|
|
6830
|
-
.fec-table-container[data-v-
|
|
6828
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--body,
|
|
6829
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--header,
|
|
6830
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--footer {
|
|
6831
6831
|
width: 100% !important;
|
|
6832
6832
|
}
|
|
6833
|
-
.fec-table-container[data-v-
|
|
6833
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-header--column {
|
|
6834
6834
|
background-color: #fff;
|
|
6835
6835
|
}
|
|
6836
|
-
.fec-table-container[data-v-
|
|
6836
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-header--column .vxe-cell {
|
|
6837
6837
|
height: 40px !important;
|
|
6838
6838
|
min-height: 40px !important;
|
|
6839
6839
|
color: #333;
|
|
6840
6840
|
}
|
|
6841
|
-
.fec-table-container[data-v-
|
|
6841
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--header-inner-wrapper {
|
|
6842
6842
|
height: 40px !important;
|
|
6843
6843
|
}
|
|
6844
|
-
.fec-table-container[data-v-
|
|
6844
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-body--column .vxe-cell {
|
|
6845
6845
|
padding: 6px !important;
|
|
6846
6846
|
min-height: 32px !important;
|
|
6847
6847
|
color: #666;
|
|
6848
6848
|
font-size: 13px;
|
|
6849
6849
|
}
|
|
6850
|
-
.fec-table-container[data-v-
|
|
6851
|
-
.fec-table-container[data-v-
|
|
6850
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-body--column .c--tooltip,
|
|
6851
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-body--column .c--title {
|
|
6852
6852
|
height: 32px !important;
|
|
6853
6853
|
min-height: 32px !important;
|
|
6854
6854
|
}
|
|
6855
|
-
.fec-table-container[data-v-
|
|
6855
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--border-line {
|
|
6856
6856
|
border: none;
|
|
6857
6857
|
border-bottom: 1px solid #ebeef5;
|
|
6858
6858
|
border-top: 1px solid #ebeef5;
|
|
6859
6859
|
}
|
|
6860
|
-
.fec-table-container[data-v-
|
|
6861
|
-
.fec-table-container[data-v-
|
|
6860
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
6861
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--scroll-y-wrapper:after {
|
|
6862
6862
|
border: none !important;
|
|
6863
6863
|
}
|
|
6864
|
-
.fec-table-container[data-v-
|
|
6864
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--scroll-y-top-corner {
|
|
6865
6865
|
display: none !important;
|
|
6866
6866
|
}
|
|
6867
|
-
.fec-table-container[data-v-
|
|
6867
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-cell--sort {
|
|
6868
6868
|
font-size: 14px;
|
|
6869
6869
|
}
|
|
6870
|
-
.fec-table-container[data-v-
|
|
6871
|
-
.fec-table-container[data-v-
|
|
6872
|
-
.fec-table-container[data-v-
|
|
6873
|
-
.fec-table-container[data-v-
|
|
6874
|
-
.fec-table-container[data-v-
|
|
6875
|
-
.fec-table-container[data-v-
|
|
6870
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-body--column,
|
|
6871
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-footer--column,
|
|
6872
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-header--column,
|
|
6873
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-body--column,
|
|
6874
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-footer--column,
|
|
6875
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-header--column {
|
|
6876
6876
|
background-image: linear-gradient(#ebeef5, #ebeef5) !important;
|
|
6877
6877
|
}
|
|
6878
|
-
.fec-table-container[data-v-
|
|
6878
|
+
.fec-table-container[data-v-199fae66] .vxe-table .el-button.is-disabled {
|
|
6879
6879
|
color: #ccc !important;
|
|
6880
6880
|
}
|
|
6881
|
-
.fec-table-container[data-v-
|
|
6882
|
-
.fec-table-container[data-v-
|
|
6881
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--scroll-x-handle-appearance,
|
|
6882
|
+
.fec-table-container[data-v-199fae66] .vxe-table .vxe-table--scroll-x-right-corner {
|
|
6883
6883
|
display: none !important;
|
|
6884
6884
|
}
|
|
6885
|
-
.fec-table-sub[data-v-
|
|
6885
|
+
.fec-table-sub[data-v-199fae66] .vxe-table .vxe-table--border-line {
|
|
6886
6886
|
border-top: none;
|
|
6887
6887
|
}
|
|
6888
6888
|
.fec-layout-card[data-v-a6236024] {
|
|
@@ -8360,4 +8360,20 @@ body,
|
|
|
8360
8360
|
}
|
|
8361
8361
|
.fec-form .el-select__wrapper.is-disabled .el-select__selected-item {
|
|
8362
8362
|
color: #666 !important;
|
|
8363
|
+
}
|
|
8364
|
+
.vxe-table-export--panel-column-option[title=操作] {
|
|
8365
|
+
display: none;
|
|
8366
|
+
}
|
|
8367
|
+
.vxe-table-export--panel-table .vxe-table-export--panel-option-row {
|
|
8368
|
+
display: none;
|
|
8369
|
+
}
|
|
8370
|
+
/* 只让第二个显示 */
|
|
8371
|
+
.vxe-table-export--panel-table .vxe-table-export--panel-option-row:nth-child(2) {
|
|
8372
|
+
display: block;
|
|
8373
|
+
}
|
|
8374
|
+
.vxe-table-export--panel-table .vxe-table-export--panel-option-row .vxe-checkbox {
|
|
8375
|
+
display: none;
|
|
8376
|
+
}
|
|
8377
|
+
.vxe-table-export--panel-table .vxe-table-export--panel-option-row .vxe-checkbox:first-child {
|
|
8378
|
+
display: block;
|
|
8363
8379
|
}
|