ztxkutils 2.8.15 → 2.8.16

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/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export { c as authority } from './authority-5bc06c1a.js';
2
2
  export { d as dataModel } from './dataModel-1fbaff40.js';
3
- export { t as tools } from './tools-4de9d743.js';
3
+ export { t as tools } from './tools-439efebb.js';
4
4
  export { v as validate } from './validate-3e15dd74.js';
5
5
  export { r as request } from './request-09b081d4.js';
6
6
  export { r as reqUrl } from './reqUrl-88fcc5c5.js';
@@ -253,6 +253,16 @@ function copyContent(text) {
253
253
  textarea.select();
254
254
  document === null || document === void 0 ? void 0 : document.execCommand('copy');
255
255
  document.body.removeChild(textarea);
256
+ }
257
+ /**
258
+ * @author 陈亚雄
259
+ * @description 处理转义字符
260
+ */
261
+ function dangerouslySetXss(str) {
262
+ var arrEntities = { lt: '', gt: '', nbsp: ' ', amp: '&', quot: '"' };
263
+ return str.replace(/&(lt|gt|nbsp|amp|quot);/gi, function (all, t) {
264
+ return arrEntities[t];
265
+ });
256
266
  }
257
267
 
258
268
  var tools = /*#__PURE__*/Object.freeze({
@@ -271,7 +281,8 @@ var tools = /*#__PURE__*/Object.freeze({
271
281
  SHOWFRAME_KEY: SHOWFRAME_KEY,
272
282
  showFrame: showFrame,
273
283
  getUrlSearch: getUrlSearch,
274
- copyContent: copyContent
284
+ copyContent: copyContent,
285
+ dangerouslySetXss: dangerouslySetXss
275
286
  });
276
287
 
277
- export { SHOWFRAME_KEY as S, timeTransfrom as a, toThousand as b, clearAssignStr as c, divide as d, exactRound as e, transformFileSize as f, getUrlSearch as g, copyContent as h, isEqualByKey as i, loadFileRename as l, showFrame as s, tools as t };
288
+ export { SHOWFRAME_KEY as S, timeTransfrom as a, toThousand as b, clearAssignStr as c, divide as d, exactRound as e, transformFileSize as f, getUrlSearch as g, copyContent as h, isEqualByKey as i, dangerouslySetXss as j, loadFileRename as l, showFrame as s, tools as t };
package/dist/tools.d.ts CHANGED
@@ -64,3 +64,8 @@ export declare function getUrlSearch(): {};
64
64
  * @description 复制
65
65
  */
66
66
  export declare function copyContent(text: string): void;
67
+ /**
68
+ * @author 陈亚雄
69
+ * @description 处理转义字符
70
+ */
71
+ export declare function dangerouslySetXss(str: string): string;
package/dist/tools.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import './tslib.es6-f9459658.js';
2
2
  import 'dayjs';
3
3
  export { minus, plus, times } from 'number-precision';
4
- export { S as SHOWFRAME_KEY, c as clearAssignStr, h as copyContent, d as divide, e as exactRound, g as getUrlSearch, i as isEqualByKey, l as loadFileRename, s as showFrame, a as timeTransfrom, b as toThousand, f as transformFileSize } from './tools-4de9d743.js';
4
+ export { S as SHOWFRAME_KEY, c as clearAssignStr, h as copyContent, j as dangerouslySetXss, d as divide, e as exactRound, g as getUrlSearch, i as isEqualByKey, l as loadFileRename, s as showFrame, a as timeTransfrom, b as toThousand, f as transformFileSize } from './tools-439efebb.js';
package/dist/workflow.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { useEffect } from 'react';
2
- import { g as getUrlSearch } from './tools-4de9d743.js';
2
+ import { g as getUrlSearch } from './tools-439efebb.js';
3
3
  import { WORKFLOW_HIDEFRAME_KEY } from './constants.js';
4
4
  import './tslib.es6-f9459658.js';
5
5
  import 'dayjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ztxkutils",
3
- "version": "2.8.15",
3
+ "version": "2.8.16",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",