-
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.
Merge pull request #6 from ionivetech/release/1.3.0
Release/1.3.0
- Loading branch information
Showing
67 changed files
with
9,962 additions
and
7,134 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# Nuxt dev/build outputs | ||
.output | ||
.data | ||
.nuxt | ||
.nitro | ||
.cache | ||
dist | ||
|
||
# Node dependencies | ||
node_modules | ||
|
||
# Lock | ||
package-lock.json | ||
yarn-lock.yaml | ||
pnpm-lock.yaml | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Misc | ||
.DS_Store | ||
.fleet | ||
.idea | ||
|
||
# Local env files | ||
.env | ||
.env.* | ||
!.env.example | ||
# Nuxt dev/build outputs | ||
.output | ||
.data | ||
.nuxt | ||
.nitro | ||
.cache | ||
dist | ||
|
||
# Node dependencies | ||
node_modules | ||
|
||
# Lock | ||
package-lock.json | ||
yarn-lock.yaml | ||
pnpm-lock.yaml | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Misc | ||
.DS_Store | ||
.fleet | ||
.idea | ||
|
||
# Local env files | ||
.env | ||
.env.* | ||
!.env.example |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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,27 @@ | ||
<script lang="ts" setup> | ||
const search = defineModel<string>() | ||
defineProps<{ | ||
placeholder: string | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div class="relative w-full md:w-8/12 lg:w-6/12"> | ||
<input | ||
v-model="search" | ||
type="text" | ||
:placeholder="placeholder" | ||
class="input-search" | ||
> | ||
|
||
<div | ||
class="absolute inset-y-2/4 right-1 flex size-8 -translate-y-2/4 items-center justify-center rounded-full bg-teal-600 dark:bg-slate-700 md:right-2 md:size-9" | ||
> | ||
<Icon | ||
name="radix-icons:magnifying-glass" | ||
class="text-xl text-white" | ||
/> | ||
</div> | ||
</div> | ||
</template> |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<script lang="ts" setup> | ||
const search = defineModel<string>() | ||
// Props | ||
withDefaults( | ||
defineProps<{ hadithHistorySelected: string }>(), | ||
{ hadithHistorySelected: '' }, | ||
) | ||
const emits = defineEmits<{ | ||
(e: 'change-hadith-history', value: string): void | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div class="search-section-wrapper"> | ||
<!-- Icon --> | ||
<Icon | ||
name="fa6-solid:book-open" | ||
class="text-[70px] text-white sm:text-[95px]" | ||
/> | ||
|
||
<!-- Search field --> | ||
<InputSearch | ||
v-model="search" | ||
placeholder="Cari nomor hadits" | ||
/> | ||
|
||
<!-- List name of history --> | ||
<HadithHistoryList | ||
:selected="hadithHistorySelected" | ||
@change-hadith-history="emits('change-hadith-history', $event)" | ||
/> | ||
</div> | ||
</template> |
2 changes: 1 addition & 1 deletion
2
components/hadith/HistoryList.vue → app/components/hadith/HistoryList.vue
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
5 changes: 2 additions & 3 deletions
5
components/header/DetailSurah.vue → app/components/header/DetailSurah.vue
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
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
Oops, something went wrong.