diff --git a/CHANGELOG.md b/CHANGELOG.md index 67d3205a5..876892246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ Dates are in `YYYY-MM-DD` format and versions are in [semantic versioning](http: ### Fixed - Repaired borrowed bindings from other sources. +- Prevent project reevaluation during typing. ## 0.10.7 2024-07-27 diff --git a/package.json b/package.json index 7c6d42991..30f9d34cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wordplay", - "version": "0.10.6", + "version": "0.10.8", "scripts": { "postinstall": "run-script-os", "postinstall:default": "svelte-kit sync && cp .env.template .env", diff --git a/src/components/output/OutputView.svelte b/src/components/output/OutputView.svelte index ae122d6d9..99b659196 100644 --- a/src/components/output/OutputView.svelte +++ b/src/components/output/OutputView.svelte @@ -996,7 +996,7 @@ filter, ease-in, height ease-in; - transition-duration: calc(var(--animation-factor) * 200ms); + transition-duration: calc(var(--animation-factor) * 500ms); /** Query the container size */ container-type: inline-size; diff --git a/src/components/project/ProjectView.svelte b/src/components/project/ProjectView.svelte index a01817fc3..d8bff5ea8 100644 --- a/src/components/project/ProjectView.svelte +++ b/src/components/project/ProjectView.svelte @@ -1,5 +1,5 @@