-
Notifications
You must be signed in to change notification settings - Fork 0
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 #280 from OnroerendErfgoed/develop
release 1.13.0
- Loading branch information
Showing
14 changed files
with
207 additions
and
37 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
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
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 @@ | ||
<template> | ||
<vl-modal id="confirm-cancel-changes-modal"> | ||
<h2 class="vl-title vl-title--h2 vl-modal-dialog__title"> | ||
Ben je zeker dat je deze wijzigingen niet wilt bewaren? | ||
</h2> | ||
<div class="vl-u-spacer-bottom"> | ||
<p class="vl-u-spacer-bottom"> | ||
Bij het sluiten van deze fiche zullen je onbewaarde wijzigingen verloren gaan. Zorg ervoor dat je eerst je | ||
wijzigingen bewaart, alvorens deze pagina te verlaten. | ||
</p> | ||
</div> | ||
<div class="vl-u-flex vl-u-flex-align-center"> | ||
<vl-button data-cy="confirm-button" class="vl-button vl-u-spacer-right" @click="emit('confirm')" | ||
>Ja, annuleer mijn wijzigingen</vl-button | ||
> | ||
<vl-button data-cy="cancel-button" class="vl-button large" @click="emit('close')" | ||
>Nee, behoud mijn wijzigingen</vl-button | ||
> | ||
</div> | ||
</vl-modal> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { VlButton, VlModal } from '@govflanders/vl-ui-design-system-vue3'; | ||
const emit = defineEmits(['confirm', 'close']); | ||
</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
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.