@indfnd/common 0.1.45 → 0.1.46
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/CHANGELOG.md +12 -0
- package/dist/ind-common.es.js +5 -4
- package/dist/ind-common.umd.cjs +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.46](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.45...v0.1.46) (2024-04-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 报表选择组件表头鼠标悬浮展示指标 ([f511b76](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/f511b76cc243f232024f477b9d1ce6b6ab4c867d))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **dropdown:** 修改组件控制显示状态时,没有正确触发clickoutside事件的问题 ([9ed4e44](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/9ed4e44695a3d6a38aaf12d2138d3efbd1793575))
|
|
16
|
+
|
|
5
17
|
### [0.1.45](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.44...v0.1.45) (2024-04-19)
|
|
6
18
|
|
|
7
19
|
|
package/dist/ind-common.es.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Button as Button$1, ButtonGroup as ButtonGroup$1, Input, Drawer as Draw
|
|
|
2
2
|
import { isNil, formatDate as formatDate$1, useConfig, getLocalStorage, getQuarterNum, formatQuarter, str2Date, isDate, isArray, checkIdCard, checkVehicleNo, checkPhone, getDictMapApi, axios, isFunction, isString, uuid, exportJsonToExcel as exportJsonToExcel$1, importJsonFromExcel, on, off, deleteMenuHistoryApi, deleteMenuCollectApi, getMenuHistoryApi, getMenuCollectApi, listItemTreeApi, getPriceInfo, MIME_TYPE, base64ToBlob, putOssFileApi, isEqual, getCaptchaURL, guid, setLocalStorage, removeLocalStorage, clearSessionStorage, cryptor, getToken, putOssFileUrl, getOssFileUrl, responseInterceptors, config as config$1, setToken, loginApi, clearUserInfoCache, clearPermissionCache, logoutApi, getUserInfoCache, getUserInfoApi, setUserInfoCache, getSessionStorage, setSessionStorage, getAppListApi, getPermissionCache, getPermissionApi, setPermissionCache, menuHistoryApi, addMenuCollectApi, removeMenuCollectApi, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
|
|
3
3
|
import Vue$1 from "vue";
|
|
4
4
|
const name$1 = "@indfnd/common";
|
|
5
|
-
const version = "0.1.
|
|
5
|
+
const version = "0.1.45";
|
|
6
6
|
const author = "huxuetong";
|
|
7
7
|
const publishConfig = {
|
|
8
8
|
registry: "https://registry.npmjs.org/"
|
|
@@ -48313,7 +48313,7 @@ const __vue2_script$1c = {
|
|
|
48313
48313
|
return;
|
|
48314
48314
|
if (this.isShowing)
|
|
48315
48315
|
return;
|
|
48316
|
-
if (this.confirm) {
|
|
48316
|
+
if (this.confirm && this.trigger !== "custom") {
|
|
48317
48317
|
this.close();
|
|
48318
48318
|
} else if (this.trigger === "custom") {
|
|
48319
48319
|
this.$emit("on-transfer-click-outside", e);
|
|
@@ -52728,7 +52728,7 @@ const __vue2_script$X = {
|
|
|
52728
52728
|
agColumn.hide = column.hide;
|
|
52729
52729
|
}
|
|
52730
52730
|
if (column.headerTooltip) {
|
|
52731
|
-
agColumn.headerTooltip = column.headerTooltip;
|
|
52731
|
+
agColumn.headerTooltip = agColumn.headerTooltip || column.headerTooltip;
|
|
52732
52732
|
}
|
|
52733
52733
|
if (column.tooltipShowDelay) {
|
|
52734
52734
|
agColumn.tooltipShowDelay = column.tooltipShowDelay;
|
|
@@ -60693,7 +60693,7 @@ function generateColumnsByTreeNodes(treeNodes) {
|
|
|
60693
60693
|
deepEach$1({}, columnsClone, (d) => {
|
|
60694
60694
|
var _a;
|
|
60695
60695
|
;
|
|
60696
|
-
d.field = d.pathStr ? (_a = d.pathStr) == null ? void 0 : _a.replace("ALL_", "") : d.id, d.headerName = d.title;
|
|
60696
|
+
d.field = d.pathStr ? (_a = d.pathStr) == null ? void 0 : _a.replace("ALL_", "") : d.id, d.headerName = d.title, d.headerTooltip = d.title;
|
|
60697
60697
|
});
|
|
60698
60698
|
let rlt = [];
|
|
60699
60699
|
columnsClone.forEach((d) => {
|
|
@@ -60728,6 +60728,7 @@ function getFilterColumnsByParams(options, columns) {
|
|
|
60728
60728
|
});
|
|
60729
60729
|
return {
|
|
60730
60730
|
headerName: d.productName,
|
|
60731
|
+
headerTooltip: d.productName,
|
|
60731
60732
|
children: childrenClone
|
|
60732
60733
|
};
|
|
60733
60734
|
});
|