@lukekaalim/act-web 3.2.0 → 3.2.1
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/CHANGELOG.md +9 -0
- package/package.json +3 -3
- package/space.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @lukekaalim/act-web
|
|
2
2
|
|
|
3
|
+
## 3.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0017c07: Fix packages emitting debugging console logs
|
|
8
|
+
- Updated dependencies [0017c07]
|
|
9
|
+
- @lukekaalim/act-backstage@1.2.1
|
|
10
|
+
- @lukekaalim/act-recon@1.1.1
|
|
11
|
+
|
|
3
12
|
## 3.2.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukekaalim/act-web",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "mod.ts",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@lukekaalim/act": "^3.1.0",
|
|
8
|
-
"@lukekaalim/act-recon": "^1.1.
|
|
9
|
-
"@lukekaalim/act-backstage": "^1.2.
|
|
8
|
+
"@lukekaalim/act-recon": "^1.1.1",
|
|
9
|
+
"@lukekaalim/act-backstage": "^1.2.1"
|
|
10
10
|
}
|
|
11
11
|
}
|
package/space.ts
CHANGED
|
@@ -40,11 +40,9 @@ export const createWebSpace = (tree: recon.CommitTree, root: HTMLElement, docume
|
|
|
40
40
|
setProps(el, next, prev);
|
|
41
41
|
},
|
|
42
42
|
link(el, parent) {
|
|
43
|
-
console.log('attaching', el, 'to', (parent || root));
|
|
44
43
|
(parent || root).appendChild(el);
|
|
45
44
|
},
|
|
46
45
|
unlink(el, parent) {
|
|
47
|
-
console.log('detaching', el, 'to', (parent || root));
|
|
48
46
|
(parent || root).removeChild(el);
|
|
49
47
|
},
|
|
50
48
|
sort(el, newChildren) {
|