@indfnd/common 0.1.13 → 0.1.14

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 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.14](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.13...v0.1.14) (2024-03-30)
6
+
7
+
8
+ ### Features
9
+
10
+ * 表格居右对齐;支持form表单链接 ([395d689](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/395d6890a6277c4243fe04ddd7d640ab0909fd18))
11
+
5
12
  ### [0.1.13](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.12...v0.1.13) (2024-03-30)
6
13
 
7
14
 
@@ -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, 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, getIndexDescCache, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
3
3
  import Vue$1 from "vue";
4
4
  const name$1 = "@indfnd/common";
5
- const version = "0.1.12";
5
+ const version = "0.1.13";
6
6
  const author = "huxuetong";
7
7
  const publishConfig = {
8
8
  registry: "https://registry.npmjs.org/"
@@ -48564,6 +48564,23 @@ var FormImpl = {
48564
48564
  } else {
48565
48565
  const disabled = d.disabled instanceof Function ? d.disabled(this.form) : d.disabled;
48566
48566
  switch (d.type) {
48567
+ case "link": {
48568
+ itemInner = h(
48569
+ "span",
48570
+ {
48571
+ ref: d.formKey,
48572
+ style: { color: "var(--ind-primary-color)", cursor: "pointer" },
48573
+ on: {
48574
+ click: (event) => {
48575
+ d.onClick && d.onClick(this.form);
48576
+ event.preventDefault();
48577
+ }
48578
+ }
48579
+ },
48580
+ this.form[d.formKey]
48581
+ );
48582
+ break;
48583
+ }
48567
48584
  case "input":
48568
48585
  case "email":
48569
48586
  case "phone":