@fecp/designer 5.3.2 → 5.3.3
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/designer.css +3 -3
- package/es/packages/designer/package.json.mjs +1 -1
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +9 -2
- package/lib/designer.css +3 -3
- package/lib/packages/designer/package.json.js +1 -1
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +9 -2
- package/package.json +1 -1
package/es/designer.css
CHANGED
|
@@ -5569,10 +5569,10 @@ body,
|
|
|
5569
5569
|
}
|
|
5570
5570
|
[data-v-f1c90d7c] .vgl-item > .el-container {
|
|
5571
5571
|
height: auto !important;
|
|
5572
|
-
}.cell-content .cell-text[data-v-
|
|
5572
|
+
}.cell-content .cell-text[data-v-2352d631] {
|
|
5573
5573
|
display: inline-block;
|
|
5574
5574
|
}
|
|
5575
|
-
.cell-content .copy-icon[data-v-
|
|
5575
|
+
.cell-content .copy-icon[data-v-2352d631] {
|
|
5576
5576
|
cursor: pointer;
|
|
5577
5577
|
color: #909399;
|
|
5578
5578
|
font-size: 14px;
|
|
@@ -5580,7 +5580,7 @@ body,
|
|
|
5580
5580
|
top: 4px;
|
|
5581
5581
|
margin-left: 4px;
|
|
5582
5582
|
}
|
|
5583
|
-
.cell-content .copy-icon[data-v-
|
|
5583
|
+
.cell-content .copy-icon[data-v-2352d631]:hover {
|
|
5584
5584
|
color: #409eff;
|
|
5585
5585
|
}.fec-table-filter[data-v-366e01c3] {
|
|
5586
5586
|
display: flex;
|
|
@@ -5,6 +5,7 @@ import { getCurrentInstance, computed, createElementBlock, openBlock, createBloc
|
|
|
5
5
|
import "../../../../../node_modules/.pnpm/vxe-table@4.17.47_vue@3.5.13_typescript@5.7.3_/node_modules/vxe-table/es/components.mjs";
|
|
6
6
|
import { CopyDocument as copy_document_default } from "../../../../../node_modules/.pnpm/@element-plus_icons-vue@2.3.2_vue@3.5.13_typescript@5.7.3_/node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
7
7
|
import { checkFilterMatch } from "../../utils/parseFilterConfig.mjs";
|
|
8
|
+
import { removeEmptyValues } from "../../utils/common.mjs";
|
|
8
9
|
/* empty css */
|
|
9
10
|
/* empty css */
|
|
10
11
|
/* empty css */
|
|
@@ -276,7 +277,13 @@ const _sfc_main = {
|
|
|
276
277
|
table: props.tableRef
|
|
277
278
|
}
|
|
278
279
|
});
|
|
279
|
-
const getEventHandlers = (row, item, eventConfig) =>
|
|
280
|
+
const getEventHandlers = (row, item, eventConfig) => {
|
|
281
|
+
return createEventHandlers(
|
|
282
|
+
item,
|
|
283
|
+
{ ...row, ...removeEmptyValues(props.hiddenFormData) },
|
|
284
|
+
eventConfig
|
|
285
|
+
);
|
|
286
|
+
};
|
|
280
287
|
return (_ctx, _cache) => {
|
|
281
288
|
const _component_el_link = ElLink;
|
|
282
289
|
const _component_el_icon = ElIcon;
|
|
@@ -381,7 +388,7 @@ const _sfc_main = {
|
|
|
381
388
|
};
|
|
382
389
|
}
|
|
383
390
|
};
|
|
384
|
-
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
391
|
+
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2352d631"]]);
|
|
385
392
|
export {
|
|
386
393
|
TableColumn as default
|
|
387
394
|
};
|
package/lib/designer.css
CHANGED
|
@@ -5569,10 +5569,10 @@ body,
|
|
|
5569
5569
|
}
|
|
5570
5570
|
[data-v-f1c90d7c] .vgl-item > .el-container {
|
|
5571
5571
|
height: auto !important;
|
|
5572
|
-
}.cell-content .cell-text[data-v-
|
|
5572
|
+
}.cell-content .cell-text[data-v-2352d631] {
|
|
5573
5573
|
display: inline-block;
|
|
5574
5574
|
}
|
|
5575
|
-
.cell-content .copy-icon[data-v-
|
|
5575
|
+
.cell-content .copy-icon[data-v-2352d631] {
|
|
5576
5576
|
cursor: pointer;
|
|
5577
5577
|
color: #909399;
|
|
5578
5578
|
font-size: 14px;
|
|
@@ -5580,7 +5580,7 @@ body,
|
|
|
5580
5580
|
top: 4px;
|
|
5581
5581
|
margin-left: 4px;
|
|
5582
5582
|
}
|
|
5583
|
-
.cell-content .copy-icon[data-v-
|
|
5583
|
+
.cell-content .copy-icon[data-v-2352d631]:hover {
|
|
5584
5584
|
color: #409eff;
|
|
5585
5585
|
}.fec-table-filter[data-v-366e01c3] {
|
|
5586
5586
|
display: flex;
|
|
@@ -7,6 +7,7 @@ const vue = require("vue");
|
|
|
7
7
|
require("../../../../../node_modules/.pnpm/vxe-table@4.17.47_vue@3.5.13_typescript@5.7.3_/node_modules/vxe-table/es/components.js");
|
|
8
8
|
const index$3 = require("../../../../../node_modules/.pnpm/@element-plus_icons-vue@2.3.2_vue@3.5.13_typescript@5.7.3_/node_modules/@element-plus/icons-vue/dist/index.js");
|
|
9
9
|
const parseFilterConfig = require("../../utils/parseFilterConfig.js");
|
|
10
|
+
const common = require("../../utils/common.js");
|
|
10
11
|
;/* empty css */
|
|
11
12
|
;/* empty css */
|
|
12
13
|
;/* empty css */
|
|
@@ -278,7 +279,13 @@ const _sfc_main = {
|
|
|
278
279
|
table: props.tableRef
|
|
279
280
|
}
|
|
280
281
|
});
|
|
281
|
-
const getEventHandlers = (row, item, eventConfig) =>
|
|
282
|
+
const getEventHandlers = (row, item, eventConfig) => {
|
|
283
|
+
return createEventHandlers(
|
|
284
|
+
item,
|
|
285
|
+
{ ...row, ...common.removeEmptyValues(props.hiddenFormData) },
|
|
286
|
+
eventConfig
|
|
287
|
+
);
|
|
288
|
+
};
|
|
282
289
|
return (_ctx, _cache) => {
|
|
283
290
|
const _component_el_link = index$1.ElLink;
|
|
284
291
|
const _component_el_icon = index$2.ElIcon;
|
|
@@ -383,5 +390,5 @@ const _sfc_main = {
|
|
|
383
390
|
};
|
|
384
391
|
}
|
|
385
392
|
};
|
|
386
|
-
const TableColumn = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
393
|
+
const TableColumn = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-2352d631"]]);
|
|
387
394
|
exports.default = TableColumn;
|