-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
258 changed files
with
502 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
<script> | ||
<script lang="ts"> | ||
import type { Snippet } from "svelte"; | ||
import type { HTMLAnchorAttributes } from "svelte/elements"; | ||
import { page } from "$app/stores"; | ||
export let href = ""; | ||
interface Props { | ||
children: Snippet; | ||
href: string; | ||
} | ||
/** @type {"page"|undefined} */ | ||
$: ariaCurrent = $page.url.pathname === href ? "page" : undefined; | ||
let { href = "", children, ...rest }: Props & HTMLAnchorAttributes = $props(); | ||
let ariaCurrent = $derived($page.url.pathname === href ? ("page" as const) : undefined); | ||
</script> | ||
|
||
<a {href} aria-current={ariaCurrent} {...$$restProps}> | ||
<slot /> | ||
<a {href} aria-current={ariaCurrent} {...rest}> | ||
{@render children?.()} | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
<script> | ||
<script lang="ts"> | ||
import type { HTMLAttributes } from "svelte/elements"; | ||
import { onMount } from "svelte"; | ||
import { browser } from "$app/environment"; | ||
import { initSidemenus } from "$lib/manon.js"; | ||
import { initSidemenus } from "$lib/manon"; | ||
let props: HTMLAttributes<HTMLElement> = $props(); | ||
onMount(initSidemenus); | ||
</script> | ||
|
||
<nav | ||
data-open-label="Zijbalknavigatie" | ||
data-close-label="Sluit zijbalknavigatie" | ||
aria-label="Document-navigatie" | ||
{...$$props} | ||
{...props} | ||
> | ||
<slot /> | ||
{@render props.children?.()} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<script> | ||
import DefaultHeader from "$lib/DefaultHeader.svelte"; | ||
import DefaultFooter from "$lib/DefaultFooter.svelte"; | ||
let { children } = $props(); | ||
</script> | ||
|
||
<DefaultHeader /> | ||
|
||
<slot /> | ||
{@render children?.()} | ||
|
||
<DefaultFooter /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Manon"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Componenten"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Accordeon testpagina"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Accordeon"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/application-base/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/article-content-wrapper-test/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Main testpagina"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/article-content-wrapper/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Article content wrapper"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Article testpagina"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Artikel"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Body text set"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Kleuren"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/breadcrumb-bar-example/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Kruimelpad voorbeeld"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Kruimelpad - breadcrumb-bar"; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Knoppen (basisweergave)"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-call-to-action-test/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = '"Call to action" testpagina'; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-call-to-action/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Call to action button"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-container-test/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Knoppen groeperen testpagina"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-container/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Knoppen groeperen"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-destructive-test/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Destructieve knop testpagina"; | ||
</script> | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-destructive/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Destructieve knop"; | ||
</script> | ||
|
||
|
6 changes: 3 additions & 3 deletions
6
docs/src/routes/(docs)/components/button-dropdown/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/src/routes/(docs)/components/button-ghost-test/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = '"Ghost button" testpagina'; | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script context="module"> | ||
<script module> | ||
export const breadcrumb = "Ghost button"; | ||
</script> | ||
|
||
|
Oops, something went wrong.