@wzyjs/utils 0.3.29 → 0.3.31
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/{web/antd.d.ts → common/antd/index.d.ts} +1 -0
- package/dist/common/base/array.d.ts +0 -2
- package/dist/common/base/index.d.ts +0 -1
- package/dist/common/base/object.d.ts +1 -7
- package/dist/common/base/other.d.ts +1 -3
- package/dist/common/base/promise.d.ts +1 -1
- package/dist/common/base/string.d.ts +10 -10
- package/dist/common/dayjs/index.d.ts +0 -2
- package/dist/common/index.d.ts +2 -2
- package/dist/node.cjs.js +153 -2642
- package/dist/node.esm.js +151 -2640
- package/dist/web/download.d.ts +1 -1
- package/dist/web/element.d.ts +1 -5
- package/dist/web.cjs.js +1742 -4062
- package/dist/web.d.ts +2 -2
- package/dist/web.esm.js +1742 -4062
- package/package.json +3 -2
- package/dist/common/base/number.d.ts +0 -5
- package/dist/common/image/index.d.ts +0 -1
- package/dist/web/location.d.ts +0 -8
- package/dist/web/style.d.ts +0 -10
package/dist/web.d.ts
CHANGED
|
@@ -7,10 +7,10 @@ export { default as consola } from 'consola';
|
|
|
7
7
|
export { default as classnames } from 'classnames';
|
|
8
8
|
export { default as localforage } from 'localforage';
|
|
9
9
|
export { default as copy } from 'copy-to-clipboard';
|
|
10
|
+
export { default as prettyBytes } from 'pretty-bytes';
|
|
10
11
|
import lodash from 'lodash';
|
|
11
12
|
export declare const _: lodash.LoDashStatic;
|
|
12
13
|
export * from './common';
|
|
13
|
-
export * from './web/style';
|
|
14
14
|
export * from './web/element';
|
|
15
|
-
export * from './web/location';
|
|
16
15
|
export * from './web/clipboard';
|
|
16
|
+
export * from './web/download';
|