-
Notifications
You must be signed in to change notification settings - Fork 1
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
7 changed files
with
41 additions
and
3 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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<script> | ||
import AbstractContent from '$lib/components/AbstractContent.svelte'; | ||
import AbstractDropdown from '$lib/components/AbstractDropdown.svelte'; | ||
import { DropdownDataElement } from '$lib/js/dropdowndata.js'; | ||
const letteroptions = ['a', 'b', 'c', 'd']; | ||
const defaultOptions = ['gar nicht', 'ansatzweise', 'weitgehend', 'zuverlässig']; | ||
const dropdownData = [ | ||
new DropdownDataElement( | ||
'standing up', | ||
letteroptions, | ||
'How well can the child stand up from sitting or crawling around and how readily is it able to do so' | ||
), | ||
new DropdownDataElement( | ||
'gripping a pen the right way', | ||
defaultOptions, | ||
'How well can the child hold a pen or pencil and how coordinated can it use it' | ||
), | ||
new DropdownDataElement( | ||
'talking in full sentences', | ||
letteroptions, | ||
'How well articulated is the child in its speech and how well can it express itself' | ||
) | ||
]; | ||
const heading = 'some initial dummy dropdown page'; | ||
</script> | ||
|
||
<AbstractContent showBottomNavbar={true} lastPage="/" nextPage="/nextdropdown" infoPage="/info"> | ||
<AbstractDropdown {dropdownData} {heading} /> | ||
</AbstractContent> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<script> | ||
import '../../app.css'; | ||
</script> | ||
|
||
<slot></slot> |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export const prerender = true; |
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