clxx 2.1.1 → 2.1.2
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/README.md +1 -1
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
- [`is`](./src/utils/is.ts):一些简单的环境判断
|
|
12
12
|
- [`jsonp`](./src/utils/jsonp.ts):发送一个 jsonp 请求
|
|
13
13
|
- [`GET,POST`](./src/utils/request.ts):ajax 请求的简单封装
|
|
14
|
-
- [`
|
|
14
|
+
- [`tick`](./src/utils/tick.ts):嘀嗒器,每帧都会执行
|
|
15
15
|
- [`uniqKey`](./src/utils/uniqKey.ts):生成一个全局唯一的 key
|
|
16
16
|
- [`waitUntil`](./src/utils/wait.ts):执行某种检测,直接条件为真或者超时才返回
|
|
17
17
|
|
package/build/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export { is } from './utils/is';
|
|
|
11
11
|
export { waitFor, waitUntil } from './utils/wait';
|
|
12
12
|
export { normalizeUnit, splitValue, adaptive } from './utils/cssUtil';
|
|
13
13
|
export { createApp, history, getHistory } from './utils/createApp';
|
|
14
|
+
export { createPortalDOM } from './utils/dom';
|
|
14
15
|
export { useInterval } from './Effect/useInterval';
|
|
15
16
|
export { useTick } from './Effect/useTick';
|
|
16
17
|
export { Ago } from './Ago';
|
package/build/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export { is } from './utils/is';
|
|
|
11
11
|
export { waitFor, waitUntil } from './utils/wait';
|
|
12
12
|
export { normalizeUnit, splitValue, adaptive } from './utils/cssUtil';
|
|
13
13
|
export { createApp, history, getHistory } from './utils/createApp';
|
|
14
|
+
export { createPortalDOM } from './utils/dom';
|
|
14
15
|
export { useInterval } from './Effect/useInterval';
|
|
15
16
|
export { useTick } from './Effect/useTick';
|
|
16
17
|
export { Ago } from './Ago';
|