@html-next/vertical-collection 4.0.0 → 4.0.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,19 @@ Changelog
|
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## v4.0.1 (2022-11-07)
|
|
7
|
+
|
|
8
|
+
#### :memo: Documentation
|
|
9
|
+
* [#381](https://github.com/html-next/vertical-collection/pull/381) Fix README ([@runspired](https://github.com/runspired))
|
|
10
|
+
|
|
11
|
+
#### Committers: 4
|
|
12
|
+
- Alex Navasardyan ([@twokul](https://github.com/twokul))
|
|
13
|
+
- Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
14
|
+
- Matthew Beale ([@mixonic](https://github.com/mixonic))
|
|
15
|
+
- [@Atrue](https://github.com/Atrue)
|
|
16
|
+
|
|
17
|
+
|
|
5
18
|
## v4.0.0 (2022-09-12)
|
|
6
19
|
|
|
7
20
|
* Drops support for Ember < 3.12-LTS.
|
package/README.md
CHANGED
|
@@ -327,6 +327,7 @@ const VerticalCollection = Component.extend({
|
|
|
327
327
|
_radar.bufferSize = this.bufferSize;
|
|
328
328
|
|
|
329
329
|
_radar.scheduleUpdate(true);
|
|
330
|
+
this._clearScheduledActions();
|
|
330
331
|
|
|
331
332
|
return _radar.virtualComponents;
|
|
332
333
|
}),
|
|
@@ -335,6 +336,12 @@ const VerticalCollection = Component.extend({
|
|
|
335
336
|
return scheduler.schedule(queueName, job, this.token);
|
|
336
337
|
},
|
|
337
338
|
|
|
339
|
+
_clearScheduledActions() {
|
|
340
|
+
clearTimeout(this._nextSendActions);
|
|
341
|
+
this._nextSendActions = null;
|
|
342
|
+
this._scheduledActions.length = 0;
|
|
343
|
+
},
|
|
344
|
+
|
|
338
345
|
_scheduleSendAction(action, index) {
|
|
339
346
|
this._scheduledActions.push([action, index]);
|
|
340
347
|
|