@linear_non/stellar-kit 2.0.0 → 2.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/events/Raf.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // Raf.js
2
2
  import kitStore from "../kitStore"
3
3
  import emitter, { EVENTS } from "./Emitter"
4
- import { sniffer, lerp } from "../utils"
4
+ import { lerp } from "../utils"
5
5
  import { gsap, ScrollTrigger } from "../libraries/gsap"
6
6
 
7
7
  export default class Raf {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linear_non/stellar-kit",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Stellar frontend core for Non-Linear Studio projects.",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -1,6 +1,6 @@
1
1
  // libs/observer/Observer.js
2
- import { ScrollTrigger } from "@linear_non/stellar-kit/gsap"
3
- import { Emitter } from "@linear_non/stellar-kit/events"
2
+ import { ScrollTrigger } from "../libraries/gsap"
3
+ import { Emitter } from "../events"
4
4
 
5
5
  const DEFAULTS = {
6
6
  trigger: null,
package/plugins/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import Grid from "../Grid"
1
+ import Grid from "./Grid"
2
2
  import Observer from "./Observer"
3
3
  export { splitText, reverseSplit } from "./SplitText"
4
4
  export { Grid, Observer }