@uniformdev/canvas 19.147.1-alpha.6 → 19.147.1-alpha.8
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.esm.js +2 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +4 -4
package/dist/index.esm.js
CHANGED
@@ -1082,6 +1082,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1082
1082
|
} else {
|
1083
1083
|
throw new Error("Unknown node type");
|
1084
1084
|
}
|
1085
|
+
visitDescendants = false;
|
1085
1086
|
},
|
1086
1087
|
insertAfter: (nodes) => {
|
1087
1088
|
const currentNodeInfo = currentQueueEntry.ancestorsAndSelf[0];
|
@@ -1167,6 +1168,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1167
1168
|
} else {
|
1168
1169
|
throw new Error("Unknown node type");
|
1169
1170
|
}
|
1171
|
+
visitDescendants = false;
|
1170
1172
|
},
|
1171
1173
|
insertAfter: (nodes) => {
|
1172
1174
|
const nodesToInsert = Array.isArray(nodes) ? nodes : [nodes];
|
package/dist/index.js
CHANGED
@@ -1219,6 +1219,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1219
1219
|
} else {
|
1220
1220
|
throw new Error("Unknown node type");
|
1221
1221
|
}
|
1222
|
+
visitDescendants = false;
|
1222
1223
|
},
|
1223
1224
|
insertAfter: (nodes) => {
|
1224
1225
|
const currentNodeInfo = currentQueueEntry.ancestorsAndSelf[0];
|
@@ -1304,6 +1305,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1304
1305
|
} else {
|
1305
1306
|
throw new Error("Unknown node type");
|
1306
1307
|
}
|
1308
|
+
visitDescendants = false;
|
1307
1309
|
},
|
1308
1310
|
insertAfter: (nodes) => {
|
1309
1311
|
const nodesToInsert = Array.isArray(nodes) ? nodes : [nodes];
|
package/dist/index.mjs
CHANGED
@@ -1082,6 +1082,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1082
1082
|
} else {
|
1083
1083
|
throw new Error("Unknown node type");
|
1084
1084
|
}
|
1085
|
+
visitDescendants = false;
|
1085
1086
|
},
|
1086
1087
|
insertAfter: (nodes) => {
|
1087
1088
|
const currentNodeInfo = currentQueueEntry.ancestorsAndSelf[0];
|
@@ -1167,6 +1168,7 @@ function walkNodeTree(node, visitor, options) {
|
|
1167
1168
|
} else {
|
1168
1169
|
throw new Error("Unknown node type");
|
1169
1170
|
}
|
1171
|
+
visitDescendants = false;
|
1170
1172
|
},
|
1171
1173
|
insertAfter: (nodes) => {
|
1172
1174
|
const nodesToInsert = Array.isArray(nodes) ? nodes : [nodes];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "19.147.1-alpha.
|
3
|
+
"version": "19.147.1-alpha.8+41ac704d63",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -38,8 +38,8 @@
|
|
38
38
|
"pusher-js": "8.2.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "19.147.1-alpha.
|
42
|
-
"@uniformdev/context": "19.147.1-alpha.
|
41
|
+
"@uniformdev/assets": "19.147.1-alpha.8+41ac704d63",
|
42
|
+
"@uniformdev/context": "19.147.1-alpha.8+41ac704d63",
|
43
43
|
"immer": "10.0.4"
|
44
44
|
},
|
45
45
|
"files": [
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "41ac704d631a859a44d06e3d9fa370b2a7e041f1"
|
52
52
|
}
|