Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fixes invalid links #3095

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ only utilize theme on this doc page.
<svelte:fragment slot="panel">
{#if method === 0}
<p>
Use the following <a class="anchor" href="https://svelte.dev/tutorial/actions" target="_blank" rel="noreferrer"
Use the following <a class="anchor" href="https://v4.svelte.dev/tutorial/actions" target="_blank" rel="noreferrer"
>Svelte action</a
> to filter any element. Pass the filter name as the only parameter.
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<h3 class="h3" data-toc-ignore>Deprecated</h3>
<!-- prettier-ignore -->
<p>
This feature is being phased out as we transition to <a class="underline" href="https://github.com/skeletonlabs/skeleton/discussions/2375" target="_blank">Skeleton v3</a>. This component will remain functional for all 2.x releases. However, we recommend you migrate to <a class="underline" href="https://next.skeleton.dev/docs/get-started/layouts" target="_blank">custom layouts</a> as soon as possible. While this guide is provided for Skeleton v3, the only prerequisite is Tailwind. Which means you can use these techniques today!
This feature is being phased out as we transition to <a class="underline" href="https://github.com/skeletonlabs/skeleton/discussions/2375" target="_blank">Skeleton v3</a>. This component will remain functional for all 2.x releases. However, we recommend you migrate to <a class="underline" href="https://skeleton.dev/docs/guides/layouts" target="_blank">custom layouts</a> as soon as possible. While this guide is provided for Skeleton v3, the only prerequisite is Tailwind. Which means you can use these techniques today!
</p>
</div>
<div class="alert-actions">
<a class="btn variant-filled" href="https://next.skeleton.dev/docs/get-started/layouts" target="_blank">Layout Guide</a>
<a class="btn variant-filled" href="https://skeleton.dev/docs/guides/layouts" target="_blank">Layout Guide</a>
</div>
</aside>
<div class="space-y-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h1 class="h1">Transitions</h1>
<!-- prettier-ignore -->
<p>
Skeleton provides a simple interface for modifying Svelte component transitions. This supports <a class="anchor" href="https://svelte.dev/docs#run-time-svelte-transition" target="_blank" rel="noreferrer">Svelte-provided transitions</a>, such as: <code class="code">fade</code>, <code class="code">blur</code>, <code class="code">fly</code>, <code class="code">slide</code>, and <code class="code">scale</code>. As well as custom <a class="anchor" href="https://svelte.dev/tutorial/custom-css-transitions" target="_blank" rel="noreferrer">CSS</a> and <a class="anchor" href="https://svelte.dev/tutorial/custom-js-transitions" target="_blank" rel="noreferrer">Javascript</a> transitions.
Skeleton provides a simple interface for modifying Svelte component transitions. This supports <a class="anchor" href="https://svelte.dev/docs#run-time-svelte-transition" target="_blank" rel="noreferrer">Svelte-provided transitions</a>, such as: <code class="code">fade</code>, <code class="code">blur</code>, <code class="code">fly</code>, <code class="code">slide</code>, and <code class="code">scale</code>. As well as custom <a class="anchor" href="https://v4.svelte.dev/tutorial/custom-css-transitions" target="_blank" rel="noreferrer">CSS</a> and <a class="anchor" href="https://v4.svelte.dev/tutorial/custom-js-transitions" target="_blank" rel="noreferrer">Javascript</a> transitions.
</p>
</header>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
<section class="space-y-4">
<h2 class="h2">Animation</h2>
<!-- prettier-ignore -->
<p><a class="anchor" href="https://svelte.dev/tutorial/transition" target="_blank" rel="noreferrer">Svelte Transitions</a> can provide smooth transition animations when the alert state changes.</p>
<p><a class="anchor" href="https://v4.svelte.dev/tutorial/transition" target="_blank" rel="noreferrer">Svelte Transitions</a> can provide smooth transition animations when the alert state changes.</p>
<CodeBlock language="html" code={`<aside class="alert" transition:fade={{ duration: 200 }}>(content)</aside>`} />
</section>
</svelte:fragment>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<p>
In some situations you may want to force the crawler action to update on demand. Use the <code class="code">key</code> parameter and
pass a value that will be modified, which operates similar to Svelte's
<a class="anchor" href="https://svelte.dev/tutorial/key-blocks" target="_blank">key blocks</a>. This can be useful for scanning for
<a class="anchor" href="https://v4.svelte.dev/tutorial/key-blocks" target="_blank">key blocks</a>. This can be useful for scanning for
new page headers for tabbed content.
</p>
<CodeBlock
Expand Down
Loading