rune-scroller 0.1.7 → 0.1.9

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/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  export type { RuneScrollerOptions, AnimateOptions, IntersectionOptions, UseIntersectionReturn } from './types';
2
2
  export type { AnimationType } from './animations';
3
- export { runeScroller as default } from './runeScroller.svelte';
4
- export { default as RuneScroller } from './RuneScroller.svelte';
5
- export { animate } from './animate.svelte';
6
- export { useIntersection, useIntersectionOnce } from './useIntersection.svelte';
3
+ export { runeScroller as default } from './runeScroller.svelte.js';
4
+ export { animate } from './animate.svelte.js';
5
+ export { useIntersection, useIntersectionOnce } from './useIntersection.svelte.js';
7
6
  export { calculateRootMargin } from './animations';
package/dist/index.js CHANGED
@@ -1,7 +1,5 @@
1
1
  // Main action (default export)
2
2
  export { runeScroller as default } from './runeScroller.svelte.js';
3
- // Component
4
- export { default as RuneScroller } from './RuneScroller.svelte';
5
3
  // Alternative actions
6
4
  export { animate } from './animate.svelte.js';
7
5
  // Composables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rune-scroller",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Lightweight, high-performance scroll animations for Svelte 5. ~2KB bundle, zero dependencies.",
5
5
  "type": "module",
6
6
  "sideEffects": false,