Skip to content

Commit b01d476

Browse files
committed
Merge remote-tracking branch 'sveltejs/main' into update-up-to-20230309
2 parents 8b3a04e + cc3548a commit b01d476

File tree

42 files changed

+410
-650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+410
-650
lines changed

content/tutorial/01-svelte/01-introduction/01-welcome-to-svelte/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Svelte は、web アプリケーションを構築するためのツールです
1212

1313
これらのコンポーネントは小さくて効率的な JavaScript モジュールに _コンパイル_ されるため、従来の UI フレームワークには付き物だったオーバーヘッドがありません。
1414

15-
アプリ全体を Svelte で作ることもできますし (例えば [SvelteKit](https://kit.svelte.jp) のようなアプリケーションフレームワークを使用)、既存のコードベースに部分的/段階的に追加することもできます。また、どんな場所でも機能するスタンドアロンパッケージとしてコンポーネントを配布することもできます。
15+
アプリ全体を Svelte で作ることもできますし (例えば [SvelteKit](https://kit.svelte.jp) のようなアプリケーションフレームワークを使用して。SvelteKit はこのチュートリアルで学習できます)、既存のコードベースに部分的/段階的に追加することもできます。また、どんな場所でも機能するスタンドアロンパッケージとしてコンポーネントを配布することもできます。
1616

1717
## このチュートリアルの使い方
1818

content/tutorial/01-svelte/01-introduction/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Introduction",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/02-reactivity/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Reactivity",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/03-props/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Props",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/04-logic/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Logic",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/05-events/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Events",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/06-bindings/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Bindings",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

content/tutorial/01-svelte/07-lifecycle/02-ondestroy/app-b/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script>
22
import Timer from './Timer.svelte';
33
4-
let open = true;
4+
let open = false;
55
let seconds = 0;
66
77
const toggle = () => (open = !open);

content/tutorial/01-svelte/07-lifecycle/03-update/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title: beforeUpdate and afterUpdate
33
---
44

5-
> この練習問題で使用される Eliza Chatbot が現時点では動作しません。代わりに、既存のチュートリアルをお試しください: https://svelte.jp/tutorial/update
6-
75
`beforeUpdate` 関数は DOM が更新される直前に作業をスケジュールします。`afterUpdate` はそれと対になるもので、DOM がデータと同期した後にコードを実行するために使用されます。
86

97
これらは、要素のスクロール位置を更新するなど、純粋な状態駆動では実現が困難なことを、命令的に行うのに便利です。

content/tutorial/01-svelte/07-lifecycle/meta.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"title": "Lifecycle",
33
"scope": {
44
"prefix": "/src/lib/",
5-
"depth": 2,
65
"name": "src"
76
},
87
"focus": "/src/lib/App.svelte"

0 commit comments

Comments
 (0)