@maas/vue-equipment 0.26.4 → 0.26.5
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/nuxt/module.json
CHANGED
|
@@ -21,6 +21,7 @@ interface Props {
|
|
|
21
21
|
to?: FromTo
|
|
22
22
|
debug?: boolean
|
|
23
23
|
}
|
|
24
|
+
|
|
24
25
|
const props = withDefaults(defineProps<Props>(), {
|
|
25
26
|
from: 'top-bottom',
|
|
26
27
|
to: 'bottom-top',
|
|
@@ -67,7 +68,7 @@ useIntersectionObserver(
|
|
|
67
68
|
calculate()
|
|
68
69
|
}
|
|
69
70
|
},
|
|
70
|
-
{ rootMargin: '150% 0px 150% 0px',
|
|
71
|
+
{ rootMargin: '150% 0px 150% 0px', immediate: true }
|
|
71
72
|
)
|
|
72
73
|
|
|
73
74
|
provide(ScrollProgressKey, readonly(progress))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maas/vue-equipment",
|
|
3
3
|
"description": "A magic collection of Vue composables, plugins, components and directives",
|
|
4
|
-
"version": "0.26.
|
|
4
|
+
"version": "0.26.5",
|
|
5
5
|
"author": "Robin Scholz <https://github.com/robinscholz>, Christoph Jeworutzki <https://github.com/ChristophJeworutzki>",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"@antfu/ni": "^0.21.12",
|