@tarojs/runtime 3.5.5 → 3.5.6
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/dom/element.d.ts +2 -2
- package/dist/dom/node.d.ts +2 -2
- package/dist/dom/root.d.ts +1 -1
- package/dist/dom-external/mutation-observer/index.d.ts +2 -2
- package/dist/dsl/common.d.ts +1 -0
- package/dist/dsl/instance.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/runtime.esm.d.ts +72 -71
- package/dist/runtime.esm.js +14 -9
- package/dist/runtime.esm.js.map +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { Func } from '../interface';
|
|
1
2
|
import type { TaroElement } from '../dom/element';
|
|
2
3
|
import type { TaroNode } from '../dom/node';
|
|
3
4
|
import type { TaroText } from '../dom/text';
|
|
4
|
-
import { Func } from '../interface';
|
|
5
5
|
export declare const incrementId: () => () => string;
|
|
6
6
|
export declare function isElement(node: TaroNode): node is TaroElement;
|
|
7
7
|
export declare function isText(node: TaroNode): node is TaroText;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/runtime",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.6",
|
|
4
4
|
"description": "taro runtime for mini apps.",
|
|
5
5
|
"main": "dist/runtime.esm.js",
|
|
6
6
|
"module": "dist/runtime.esm.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@tarojs/shared": "3.5.
|
|
21
|
+
"@tarojs/shared": "3.5.6",
|
|
22
22
|
"lodash-es": "4.17.21"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|