@html-next/vertical-collection 4.0.0-beta.0 → 4.0.0-beta.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 CHANGED
@@ -2,6 +2,9 @@ Changelog
2
2
  =========
3
3
 
4
4
 
5
+ ## v4.0.0-beta.1 (2022-09-07)
6
+
7
+
5
8
  ## v4.0.0-beta.0 (2022-08-28)
6
9
 
7
10
  * Drop support for Ember versions prior to 3.12
package/RELEASE.md CHANGED
@@ -58,3 +58,17 @@ release process. It will prompt you to to choose the version number after which
58
58
  you will have the chance to hand tweak the changelog to be used (for the
59
59
  `CHANGELOG.md` and GitHub release), then `release-it` continues on to tagging,
60
60
  pushing the tag and commits, etc.
61
+
62
+ To start a prerelease branch for a new major use:
63
+
64
+ ```sh
65
+ npx release-it major --preRelease=beta
66
+ ```
67
+
68
+ On subsequent prerelease run:
69
+
70
+ ```sh
71
+ npx release-it --preRelease
72
+ ```
73
+
74
+ For more guidance see https://github.com/release-it/release-it/blob/master/docs/pre-releases.md
@@ -539,6 +539,9 @@ export default class Radar {
539
539
  if (item) {
540
540
  insertRangeBefore(this._domPool, null, component.realUpperBound, component.realLowerBound);
541
541
  } else {
542
+ // Insert the virtual component bound back to make sure Glimmer is
543
+ // not confused about the state of the DOM.
544
+ insertRangeBefore(this._itemContainer, null, component.realUpperBound, component.realLowerBound);
542
545
  run(() => {
543
546
  virtualComponents.removeObject(component);
544
547
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-next/vertical-collection",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.1",
4
4
  "description": "infinite-scroll, done right. done.",
5
5
  "keywords": [
6
6
  "occlusion",