rune-scroller 0.1.7 → 0.1.8
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 +3 -4
- package/dist/index.js +0 -2
- package/package.json +1 -1
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 {
|
|
5
|
-
export {
|
|
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
|