@indfnd/common 0.1.40 → 0.1.41
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 +7 -0
- package/dist/ind-common.es.js +7 -17
- package/dist/ind-common.umd.cjs +12 -12
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/src/styles/reset.less +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.41](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.40...v0.1.41) (2024-04-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 表格鼠标滚动数字改变处理 ([6cc6a82](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/6cc6a826ccf40b758567d08dbef72aff31df8b18))
|
|
11
|
+
|
|
5
12
|
### [0.1.40](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.39...v0.1.40) (2024-04-15)
|
|
6
13
|
|
|
7
14
|
|
package/dist/ind-common.es.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Button as Button$1, ButtonGroup as ButtonGroup$1, Input, Drawer as Drawer$1, Dropdown as Dropdown$1, Modal as Modal$1, Form, FormItem, Select as Select$1, Option, Row, Col, Menu, MenuItem, Badge, DropdownMenu, DropdownItem, Submenu, Tag, Header, Layout, Content, Spin, Poptip as Poptip$1, CheckboxGroup, Checkbox, RadioGroup, Radio, Card, Message, LoadingBar } from "view-design";
|
|
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,
|
|
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.40";
|
|
6
6
|
const author = "huxuetong";
|
|
7
7
|
const publishConfig = {
|
|
8
8
|
registry: "https://registry.npmjs.org/"
|
|
@@ -50942,6 +50942,9 @@ const __vue2_script$12 = {
|
|
|
50942
50942
|
click: (event) => {
|
|
50943
50943
|
event.preventDefault();
|
|
50944
50944
|
return false;
|
|
50945
|
+
},
|
|
50946
|
+
mousewheel: (event) => {
|
|
50947
|
+
event.target.blur();
|
|
50945
50948
|
}
|
|
50946
50949
|
},
|
|
50947
50950
|
class: "ag-input"
|
|
@@ -64208,23 +64211,10 @@ var app = {
|
|
|
64208
64211
|
await removeMenuCollectApi({ appId, permissionId });
|
|
64209
64212
|
},
|
|
64210
64213
|
async getIndexInfo({ commit: commit2 }) {
|
|
64211
|
-
const indexDesc = getIndexDescCache();
|
|
64212
|
-
if (indexDesc) {
|
|
64213
|
-
commit2(
|
|
64214
|
-
"setIndexDesc",
|
|
64215
|
-
_.reduce(
|
|
64216
|
-
indexDesc,
|
|
64217
|
-
(sum, d) => {
|
|
64218
|
-
sum[d.indexCode] = d.indexDesc;
|
|
64219
|
-
return sum;
|
|
64220
|
-
},
|
|
64221
|
-
{}
|
|
64222
|
-
)
|
|
64223
|
-
);
|
|
64224
|
-
return indexDesc;
|
|
64225
|
-
}
|
|
64226
64214
|
const { data } = await listIndexDescApi();
|
|
64215
|
+
console.log("listIndexDescApi is", data);
|
|
64227
64216
|
setIndexDescCache(data);
|
|
64217
|
+
const indexDesc = data;
|
|
64228
64218
|
commit2(
|
|
64229
64219
|
"setIndexDesc",
|
|
64230
64220
|
_.reduce(
|