Skip to content

Commit ca23a1a

Browse files
committed
bumped to v0.7.9
1 parent 8633109 commit ca23a1a

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

dist/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,10 @@
615615
onMount(() => {
616616
$$invalidate(48, htmlNode = document.querySelector("html"));
617617
$$invalidate(49, htmlNodeOriginalCursor = htmlNode.style.cursor);
618+
619+
return () => {
620+
$$invalidate(48, htmlNode.style.cursor = htmlNodeOriginalCursor, htmlNode);
621+
};
618622
});
619623

620624
// update all values (preciseValue, visibleValue)

dist/index.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,10 @@ function instance($$self, $$props, $$invalidate) {
609609
onMount(() => {
610610
$$invalidate(48, htmlNode = document.querySelector("html"));
611611
$$invalidate(49, htmlNodeOriginalCursor = htmlNode.style.cursor);
612+
613+
return () => {
614+
$$invalidate(48, htmlNode.style.cursor = htmlNodeOriginalCursor, htmlNode);
615+
};
612616
});
613617

614618
// update all values (preciseValue, visibleValue)

example/public/build/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/public/build/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"src",
3131
"dist"
3232
],
33-
"version": "0.7.8",
33+
"version": "0.7.9",
3434
"repository": {
3535
"type": "git",
3636
"url": "git+https://github.com/bohnacker/svelte-number-spinner.git"

0 commit comments

Comments
 (0)