remove generic_confirm

This commit is contained in:
Henry Jameson 2026-06-10 18:34:43 +03:00
commit 22789bb7db
2 changed files with 0 additions and 63 deletions

View file

@ -1,40 +0,0 @@
import ConfirmModal from './confirm_modal.vue'
//import Select from 'src/components/select/select.vue'
export default {
props: {
title: {
type: String,
},
message: {
type: String,
},
cancelText: {
type: String,
},
confirmText: {
type: String,
},
},
emits: ['hide', 'show', 'action'],
data: () => ({
showing: false,
}),
components: {
ConfirmModal,
},
methods: {
show() {
this.showing = true
this.$emit('show')
},
hide() {
this.showing = false
this.$emit('hide')
},
doGeneric() {
this.$emit('action')
this.hide()
},
},
}

View file

@ -1,23 +0,0 @@
<template>
<ConfirmModal
v-if="showing"
:title="title"
:cancel-text="cancelText"
:confirm-text="confirmText"
@accepted="doGeneric"
@cancelled="hide"
>
<template #default>
<span v-text="message" />
</template>
</ConfirmModal>
</template>
<script src="./generic_confirm.js" />
<style lang="scss">
.expiry-amount {
width: 4em;
text-align: right;
}
</style>