From 745c7778060eebc77e38f5d33fac804473d33172 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 21 May 2020 13:29:55 -0700 Subject: [PATCH 01/30] site: move .dev TLD info from FAQ to readme (#4883) --- README.md | 3 +++ site/content/faq/300-is-svelte-dev-down.md | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 site/content/faq/300-is-svelte-dev-down.md diff --git a/README.md b/README.md index fa725804a9..0d9b59a4cc 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,9 @@ npm install && npm run update npm run dev ``` +### Is svelte.dev down? + +Probably not, but it's possible. If you can't seem to access any `.dev` sites, check out [this SuperUser question and answer](https://superuser.com/q/1413402). ## License diff --git a/site/content/faq/300-is-svelte-dev-down.md b/site/content/faq/300-is-svelte-dev-down.md deleted file mode 100644 index a7ce9984b7..0000000000 --- a/site/content/faq/300-is-svelte-dev-down.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -question: Is svelte.dev down? ---- - -Probably not, but it's possible. If you can't seem to access any `.dev` sites, check out [this SuperUser question and answer](https://superuser.com/q/1413402). \ No newline at end of file From 97db5cc7f73c97b7a94f4fa5ee8a0a28978e65bc Mon Sep 17 00:00:00 2001 From: Matt Wolff Date: Thu, 21 May 2020 16:33:58 -0400 Subject: [PATCH 02/30] docs: add blur to list of svelte/transition exports --- site/content/docs/03-run-time.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/03-run-time.md b/site/content/docs/03-run-time.md index 56c58634b7..97eabd1146 100644 --- a/site/content/docs/03-run-time.md +++ b/site/content/docs/03-run-time.md @@ -521,7 +521,7 @@ $: $size = big ? 100 : 10; ### `svelte/transition` -The `svelte/transition` module exports six functions: `fade`, `fly`, `slide`, `scale`, `draw` and `crossfade`. They are for use with Svelte [`transitions`](docs#transition_fn). +The `svelte/transition` module exports seven functions: `fade`, `blur`, `fly`, `slide`, `scale`, `draw` and `crossfade`. They are for use with Svelte [`transitions`](docs#transition_fn). #### `fade` From f624d6e292e6cf960200ba9ae42e3d5fdf7d7003 Mon Sep 17 00:00:00 2001 From: Daniel Imfeld Date: Thu, 21 May 2020 10:37:29 -1000 Subject: [PATCH 03/30] docs: `value` cannot be set via spread for indirectly bound values (#4832) --- site/content/docs/02-template-syntax.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 29a2cf75a4..153eb1b4cc 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -121,6 +121,9 @@ An element or component can have multiple spread attributes, interspersed with r ``` + +> The `value` attribute of an `input` element or its children `option` elements must not be set with spread attributes when using `bind:group` or `bind:checked`. Svelte needs to be able to see the element's `value` directly in the markup in these cases so that it can link it to the bound variable. + --- ### Text expressions From e34f2088434423914bbc91b84a450a7f7477252b Mon Sep 17 00:00:00 2001 From: Tan Li Hau Date: Fri, 22 May 2020 04:47:27 +0800 Subject: [PATCH 04/30] reselect ` with `bind:value` when the available `