@linear_non/stellar-kit 3.0.2 → 3.0.4

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.
@@ -310,4 +310,4 @@ export class ApplicationManager {
310
310
  if (document.readyState !== "loading") return Promise.resolve()
311
311
  return new Promise(res => document.addEventListener("DOMContentLoaded", res, { once: true }))
312
312
  }
313
- }
313
+ }
@@ -165,10 +165,11 @@ export default class PageEngine {
165
165
 
166
166
  this.scroll.current = nextScroll
167
167
  this.scroll.direction = delta > 0 ? "down" : "up"
168
-
168
+
169
169
  this.mouse.x = mouse.x
170
170
  this.mouse.y = mouse.y
171
-
171
+
172
+ // Debug.log("ENGINE", "Tick scroll:", this.scroll)
172
173
  this.manager.tick?.({
173
174
  mouse: this.mouse,
174
175
  scroll: this.scroll,
@@ -241,4 +242,4 @@ export default class PageEngine {
241
242
  this.smooth = null
242
243
  }
243
244
  }
244
- }
245
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linear_non/stellar-kit",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "Stellar frontend core for Non-Linear Studio projects.",
5
5
  "type": "module",
6
6
  "main": "/core/index.js",