Skip to content

Commit

Permalink
remove superfluous stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 21, 2024
1 parent db258d9 commit 1b19792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
15 changes: 0 additions & 15 deletions src/lib/components/AbstractContent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,6 @@
export let lastPage = '/';
export let nextPage = '/';
export let infoPage = '/';
export function onclickNext() {
console.log('Next page', nextPage);
}
export function onclickLast() {
console.log('Last page', lastPage);
}
export function onclickInfo() {
console.log('Info page', infoPage);
}
</script>

<!-- Top element: basic navigation-->
Expand Down Expand Up @@ -93,7 +81,6 @@
<BottomNavItem
btnName="Zurück"
btnClass="text-gray-500 dark:text-gray-400 hover:text-primary-800 dark:hover:text-primary-500 group-hover:text-primary-800 dark:group-hover:text-primary-500"
on:click={onclickLast}
href={lastPage}
>
<CaretLeftSolid
Expand All @@ -104,7 +91,6 @@
<BottomNavItem
btnName="Hilfe"
btnClass="text-gray-500 dark:text-gray-400 hover:text-primary-800 dark:hover:text-primary-500 group-hover:text-primary-800 dark:group-hover:text-primary-500"
on:click={onclickLast}
href={infoPage}
>
<LightbulbSolid
Expand All @@ -115,7 +101,6 @@
<BottomNavItem
btnName="Weiter"
btnClass="text-gray-500 dark:text-gray-400 hover:text-primary-800 dark:hover:text-primary-500 group-hover:text-primary-800 dark:group-hover:text-primary-500"
on:click={onclickNext}
href={nextPage}
>
<CaretRightSolid
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/DataInput/AbstractDataInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* @type {any[]}
*/
// @ts-ignore
export let data = [];
export let heading = 'dummy dropdown data';
export let data;
export let heading;
export let itemComponent; // = AbstractDropdownItem;
</script>

Expand Down

0 comments on commit 1b19792

Please sign in to comment.