ztxkutils 2.5.6 → 2.5.9
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/crypto.js +2 -6791
- package/dist/index.js +2 -3
- package/dist/print.d.ts +1 -1
- package/dist/print.js +12 -8909
- package/dist/request.js +2 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -2,13 +2,12 @@ export { c as authority } from './authority-fad2028d.js';
|
|
2
2
|
export { d as dataModel } from './dataModel-1fbaff40.js';
|
3
3
|
export { t as tools } from './tools-d8a41730.js';
|
4
4
|
export { v as validate } from './validate-e43b3240.js';
|
5
|
-
export { r as request } from './request-
|
5
|
+
export { r as request } from './request-af3b5774.js';
|
6
6
|
export { r as reqUrl } from './reqUrl-eb6532ce.js';
|
7
7
|
import './tslib.es6-f9459658.js';
|
8
8
|
import 'dayjs';
|
9
9
|
import 'number-precision';
|
10
10
|
import 'axios';
|
11
11
|
import 'ztxkui';
|
12
|
-
import './
|
13
|
-
import './crypto.js';
|
12
|
+
import './crypto-c481f616.js';
|
14
13
|
import 'crypto';
|
package/dist/print.d.ts
CHANGED
@@ -10,7 +10,7 @@ export declare function addWaterHandle({ waterText, waterClassName }?: {
|
|
10
10
|
* hiddenClassNames 需要隐藏的样式 默认有hiddenPrint
|
11
11
|
*/
|
12
12
|
interface IParams {
|
13
|
-
/** 需要隐藏的样式类名 ['test', 'test1] */
|
13
|
+
/** 需要隐藏的样式类名 ['.test', '.test1] */
|
14
14
|
hiddenClassNames?: string[];
|
15
15
|
}
|
16
16
|
export declare function printCurrentDom({ hiddenClassNames }?: IParams): void;
|