codevdesign 1.0.36 → 1.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/composants/csqcAide.vue +55 -55
- package/composants/csqcAlerteErreur.vue +87 -87
- package/composants/csqcChaise/chaiseConteneur.vue +367 -367
- package/composants/csqcChaise/chaiseItem.vue +54 -54
- package/composants/csqcCodeBudgetaireGenerique.vue +336 -336
- package/composants/csqcConfirmation.vue +75 -75
- package/composants/csqcDate.vue +57 -57
- package/composants/csqcDialogue.vue +118 -118
- package/composants/csqcEditeurTexteRiche.vue +380 -380
- package/composants/csqcEntete.vue +163 -163
- package/composants/csqcImportCSV.vue +125 -125
- package/composants/csqcModaleSaisie.vue +98 -95
- package/composants/csqcOptionSwitch.vue +120 -120
- package/composants/csqcRecherche.vue +213 -213
- package/composants/csqcSnackbar.vue +88 -88
- package/composants/csqcTable/csqcTable.vue +383 -383
- package/composants/csqcTable/csqcTableModaleChoixColonnes.vue +586 -586
- package/composants/csqcTexteBilingue.vue +175 -175
- package/composants/csqcTiroir.vue +156 -156
- package/composants/gabarit/csqcMenu.vue +281 -281
- package/composants/gabarit/pivEntete.vue +205 -205
- package/index.ts +75 -75
- package/modeles/composants/csqcMenuModele.ts +18 -18
- package/modeles/composants/datatableColonne.ts +31 -31
- package/outils/appAxios.ts +116 -116
- package/outils/rafraichisseurToken.ts +187 -187
- package/package.json +1 -1
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<csqcDialogue
|
|
3
|
-
ref="modale"
|
|
4
|
-
:titre="props.titre"
|
|
5
|
-
:operation-en-cours="operationEnCours"
|
|
6
|
-
activator="supprimer"
|
|
7
|
-
v-bind="$attrs"
|
|
8
|
-
:largeur="props.largeur"
|
|
9
|
-
@ok="confirmer"
|
|
10
|
-
@annuler="annuler"
|
|
11
|
-
>
|
|
12
|
-
<v-form
|
|
13
|
-
ref="form"
|
|
14
|
-
@submit.prevent
|
|
15
|
-
>
|
|
16
|
-
<v-row>
|
|
17
|
-
<v-col
|
|
18
|
-
cols="12"
|
|
19
|
-
class="pa-0 ma-0"
|
|
20
|
-
>
|
|
21
|
-
<span v-html="texte"></span>
|
|
22
|
-
</v-col>
|
|
23
|
-
</v-row>
|
|
24
|
-
</v-form>
|
|
25
|
-
</csqcDialogue>
|
|
26
|
-
</template>
|
|
27
|
-
|
|
28
|
-
<script lang="ts" setup>
|
|
29
|
-
import { ref } from 'vue'
|
|
30
|
-
import csqcDialogue from './csqcDialogue.vue'
|
|
31
|
-
|
|
32
|
-
const modale = ref<InstanceType<typeof csqcDialogue> | null>(null)
|
|
33
|
-
const utilisateurATermine = ref(false)
|
|
34
|
-
const reponse = ref(false)
|
|
35
|
-
const texte = ref('')
|
|
36
|
-
const modeAlerte = ref(false)
|
|
37
|
-
|
|
38
|
-
const props = defineProps({
|
|
39
|
-
operationEnCours: { type: Boolean, default: false },
|
|
40
|
-
titre: { type: String, default: '' },
|
|
41
|
-
largeur: { type: String, default: '525px' },
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
const ouvrir = async (message: string, modeAlerteParam: boolean = false) => {
|
|
45
|
-
texte.value = message
|
|
46
|
-
modeAlerte.value = modeAlerteParam
|
|
47
|
-
utilisateurATermine.value = false
|
|
48
|
-
modale.value?.ouvrir()
|
|
49
|
-
|
|
50
|
-
while (!utilisateurATermine.value) {
|
|
51
|
-
await new Promise(resolve => setTimeout(resolve, 100)) // Attendre 100ms
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
return reponse.value
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const confirmer = (): void => {
|
|
58
|
-
reponse.value = true
|
|
59
|
-
utilisateurATermine.value = true
|
|
60
|
-
|
|
61
|
-
if (modeAlerte.value) fermer()
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
const annuler = (): void => {
|
|
65
|
-
reponse.value = false
|
|
66
|
-
utilisateurATermine.value = true
|
|
67
|
-
fermer()
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
const fermer = (): void => {
|
|
71
|
-
modale.value?.fermer()
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
defineExpose({ ouvrir, fermer })
|
|
75
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<csqcDialogue
|
|
3
|
+
ref="modale"
|
|
4
|
+
:titre="props.titre"
|
|
5
|
+
:operation-en-cours="operationEnCours"
|
|
6
|
+
activator="supprimer"
|
|
7
|
+
v-bind="$attrs"
|
|
8
|
+
:largeur="props.largeur"
|
|
9
|
+
@ok="confirmer"
|
|
10
|
+
@annuler="annuler"
|
|
11
|
+
>
|
|
12
|
+
<v-form
|
|
13
|
+
ref="form"
|
|
14
|
+
@submit.prevent
|
|
15
|
+
>
|
|
16
|
+
<v-row>
|
|
17
|
+
<v-col
|
|
18
|
+
cols="12"
|
|
19
|
+
class="pa-0 ma-0"
|
|
20
|
+
>
|
|
21
|
+
<span v-html="texte"></span>
|
|
22
|
+
</v-col>
|
|
23
|
+
</v-row>
|
|
24
|
+
</v-form>
|
|
25
|
+
</csqcDialogue>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script lang="ts" setup>
|
|
29
|
+
import { ref } from 'vue'
|
|
30
|
+
import csqcDialogue from './csqcDialogue.vue'
|
|
31
|
+
|
|
32
|
+
const modale = ref<InstanceType<typeof csqcDialogue> | null>(null)
|
|
33
|
+
const utilisateurATermine = ref(false)
|
|
34
|
+
const reponse = ref(false)
|
|
35
|
+
const texte = ref('')
|
|
36
|
+
const modeAlerte = ref(false)
|
|
37
|
+
|
|
38
|
+
const props = defineProps({
|
|
39
|
+
operationEnCours: { type: Boolean, default: false },
|
|
40
|
+
titre: { type: String, default: '' },
|
|
41
|
+
largeur: { type: String, default: '525px' },
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
const ouvrir = async (message: string, modeAlerteParam: boolean = false) => {
|
|
45
|
+
texte.value = message
|
|
46
|
+
modeAlerte.value = modeAlerteParam
|
|
47
|
+
utilisateurATermine.value = false
|
|
48
|
+
modale.value?.ouvrir()
|
|
49
|
+
|
|
50
|
+
while (!utilisateurATermine.value) {
|
|
51
|
+
await new Promise(resolve => setTimeout(resolve, 100)) // Attendre 100ms
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return reponse.value
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const confirmer = (): void => {
|
|
58
|
+
reponse.value = true
|
|
59
|
+
utilisateurATermine.value = true
|
|
60
|
+
|
|
61
|
+
if (modeAlerte.value) fermer()
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
const annuler = (): void => {
|
|
65
|
+
reponse.value = false
|
|
66
|
+
utilisateurATermine.value = true
|
|
67
|
+
fermer()
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const fermer = (): void => {
|
|
71
|
+
modale.value?.fermer()
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
defineExpose({ ouvrir, fermer })
|
|
75
|
+
</script>
|
package/composants/csqcDate.vue
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<v-date-input
|
|
3
|
-
v-model="dateValeur"
|
|
4
|
-
v-bind="$attrs"
|
|
5
|
-
input-format="yyyy-MM-dd"
|
|
6
|
-
variant="outlined"
|
|
7
|
-
prepend-icon=""
|
|
8
|
-
prepend-inner-icon="$calendar"
|
|
9
|
-
density="comfortable"
|
|
10
|
-
@update:model-value="formatDate"
|
|
11
|
-
></v-date-input>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script setup lang="ts">
|
|
15
|
-
import { ref, watch } from 'vue'
|
|
16
|
-
import { VDateInput } from 'vuetify/labs/VDateInput'
|
|
17
|
-
|
|
18
|
-
const props = withDefaults(
|
|
19
|
-
defineProps<{
|
|
20
|
-
modelValue: string | Date | null
|
|
21
|
-
}>(),
|
|
22
|
-
{},
|
|
23
|
-
)
|
|
24
|
-
|
|
25
|
-
const emit = defineEmits(['update:modelValue'])
|
|
26
|
-
const dateValeur = ref<Date | string | null>(props.modelValue)
|
|
27
|
-
|
|
28
|
-
const formatDate = (date: Date | string | null) => {
|
|
29
|
-
if (date == null) {
|
|
30
|
-
emit('update:modelValue', null)
|
|
31
|
-
return
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
if (typeof date === 'string') {
|
|
35
|
-
emit('update:modelValue', props.modelValue)
|
|
36
|
-
return
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
//Transformer la date en string
|
|
40
|
-
const d = new Date(date)
|
|
41
|
-
const yyyy = d.getFullYear()
|
|
42
|
-
const mm = String(d.getMonth() + 1).padStart(2, '0')
|
|
43
|
-
const dd = String(d.getDate()).padStart(2, '0')
|
|
44
|
-
const formatte = `${yyyy}-${mm}-${dd}`
|
|
45
|
-
dateValeur.value = formatte
|
|
46
|
-
|
|
47
|
-
emit('update:modelValue', dateValeur.value)
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
// Synchronise les props externes avec l'état interne
|
|
51
|
-
watch(
|
|
52
|
-
() => props.modelValue,
|
|
53
|
-
nouvelle => {
|
|
54
|
-
dateValeur.value = nouvelle
|
|
55
|
-
},
|
|
56
|
-
)
|
|
57
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<v-date-input
|
|
3
|
+
v-model="dateValeur"
|
|
4
|
+
v-bind="$attrs"
|
|
5
|
+
input-format="yyyy-MM-dd"
|
|
6
|
+
variant="outlined"
|
|
7
|
+
prepend-icon=""
|
|
8
|
+
prepend-inner-icon="$calendar"
|
|
9
|
+
density="comfortable"
|
|
10
|
+
@update:model-value="formatDate"
|
|
11
|
+
></v-date-input>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script setup lang="ts">
|
|
15
|
+
import { ref, watch } from 'vue'
|
|
16
|
+
import { VDateInput } from 'vuetify/labs/VDateInput'
|
|
17
|
+
|
|
18
|
+
const props = withDefaults(
|
|
19
|
+
defineProps<{
|
|
20
|
+
modelValue: string | Date | null
|
|
21
|
+
}>(),
|
|
22
|
+
{},
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
const emit = defineEmits(['update:modelValue'])
|
|
26
|
+
const dateValeur = ref<Date | string | null>(props.modelValue)
|
|
27
|
+
|
|
28
|
+
const formatDate = (date: Date | string | null) => {
|
|
29
|
+
if (date == null) {
|
|
30
|
+
emit('update:modelValue', null)
|
|
31
|
+
return
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (typeof date === 'string') {
|
|
35
|
+
emit('update:modelValue', props.modelValue)
|
|
36
|
+
return
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
//Transformer la date en string
|
|
40
|
+
const d = new Date(date)
|
|
41
|
+
const yyyy = d.getFullYear()
|
|
42
|
+
const mm = String(d.getMonth() + 1).padStart(2, '0')
|
|
43
|
+
const dd = String(d.getDate()).padStart(2, '0')
|
|
44
|
+
const formatte = `${yyyy}-${mm}-${dd}`
|
|
45
|
+
dateValeur.value = formatte
|
|
46
|
+
|
|
47
|
+
emit('update:modelValue', dateValeur.value)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// Synchronise les props externes avec l'état interne
|
|
51
|
+
watch(
|
|
52
|
+
() => props.modelValue,
|
|
53
|
+
nouvelle => {
|
|
54
|
+
dateValeur.value = nouvelle
|
|
55
|
+
},
|
|
56
|
+
)
|
|
57
|
+
</script>
|
|
@@ -1,118 +1,118 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<v-dialog
|
|
3
|
-
v-model="dialog"
|
|
4
|
-
v-bind="$attrs"
|
|
5
|
-
class="pa-0 ma-0"
|
|
6
|
-
:width="largeur"
|
|
7
|
-
:fullscreen="display.xs.value"
|
|
8
|
-
max-width="650"
|
|
9
|
-
:persistent="props.persistant"
|
|
10
|
-
@keydown.esc="!persistant ? annuler : ''"
|
|
11
|
-
@click:outside="!persistant ? annuler : ''"
|
|
12
|
-
>
|
|
13
|
-
<v-card class="pa-0 ma-0 pl-8 pt-8">
|
|
14
|
-
<!-- Bouton en haut à droite -->
|
|
15
|
-
<v-btn
|
|
16
|
-
icon="mdi-close"
|
|
17
|
-
variant="text"
|
|
18
|
-
class="position-absolute couleurHover"
|
|
19
|
-
style="top: 5px; right: 5px"
|
|
20
|
-
@click="annuler"
|
|
21
|
-
></v-btn>
|
|
22
|
-
|
|
23
|
-
<v-card-title
|
|
24
|
-
class="pa-0 ma-0 pb-6"
|
|
25
|
-
style="font-size: 24px; white-space: normal; word-break: break-word"
|
|
26
|
-
>
|
|
27
|
-
<slot name="titre"></slot>
|
|
28
|
-
<div text-h5><span v-html="titre"></span></div>
|
|
29
|
-
</v-card-title>
|
|
30
|
-
|
|
31
|
-
<v-card-text class="pa-0 ma-0 pb-6 pr-6">
|
|
32
|
-
<v-container>
|
|
33
|
-
<slot></slot>
|
|
34
|
-
<slot name="content"></slot>
|
|
35
|
-
</v-container>
|
|
36
|
-
</v-card-text>
|
|
37
|
-
<v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
|
|
38
|
-
<slot name="actions"></slot>
|
|
39
|
-
<v-btn
|
|
40
|
-
v-if="btnAnnuler"
|
|
41
|
-
color="primary"
|
|
42
|
-
:loading="operationEnCours"
|
|
43
|
-
variant="text"
|
|
44
|
-
@click="annuler"
|
|
45
|
-
>
|
|
46
|
-
{{ btnAnnulerTexte ? btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
47
|
-
</v-btn>
|
|
48
|
-
|
|
49
|
-
<v-btn
|
|
50
|
-
v-if="btnOk"
|
|
51
|
-
class="Gouttiere"
|
|
52
|
-
color="primary"
|
|
53
|
-
:loading="operationEnCours"
|
|
54
|
-
:disabled="btnOkDesactiver"
|
|
55
|
-
variant="flat"
|
|
56
|
-
@click="okBouton"
|
|
57
|
-
>
|
|
58
|
-
{{ btnOkTexte ? btnOkTexte : $t('csqc.bouton.ok') }}
|
|
59
|
-
</v-btn>
|
|
60
|
-
</v-card-actions>
|
|
61
|
-
</v-card>
|
|
62
|
-
</v-dialog>
|
|
63
|
-
</template>
|
|
64
|
-
|
|
65
|
-
<script setup lang="ts">
|
|
66
|
-
import { ref } from 'vue'
|
|
67
|
-
import { useDisplay } from 'vuetify'
|
|
68
|
-
|
|
69
|
-
const display = useDisplay()
|
|
70
|
-
|
|
71
|
-
// Déclaration des props
|
|
72
|
-
const props = defineProps({
|
|
73
|
-
largeur: { type: String, default: '50vw' },
|
|
74
|
-
persistant: { type: Boolean, default: true },
|
|
75
|
-
operationEnCours: { type: Boolean, default: false },
|
|
76
|
-
btnAnnuler: { type: Boolean, default: true },
|
|
77
|
-
btnOk: { type: Boolean, default: true },
|
|
78
|
-
btnAnnulerTexte: { type: String, default: '' },
|
|
79
|
-
btnOkTexte: { type: String, default: '' },
|
|
80
|
-
titre: { type: String, default: '' },
|
|
81
|
-
btnOkDesactiver: { type: Boolean, default: false },
|
|
82
|
-
})
|
|
83
|
-
|
|
84
|
-
// Déclaration des événements émis
|
|
85
|
-
const emit = defineEmits(['annuler', 'ok'])
|
|
86
|
-
|
|
87
|
-
// Gestion de l'état du dialogue
|
|
88
|
-
const dialog = ref(false)
|
|
89
|
-
|
|
90
|
-
// Méthodes pour gérer l'ouverture et la fermeture
|
|
91
|
-
const ouvrir = () => {
|
|
92
|
-
dialog.value = true
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
const fermer = () => {
|
|
96
|
-
dialog.value = false
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// Gestion des actions des boutons
|
|
100
|
-
const annuler = () => {
|
|
101
|
-
emit('annuler')
|
|
102
|
-
fermer()
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
const okBouton = () => {
|
|
106
|
-
emit('ok')
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// permet d'exporter les 2 actions
|
|
110
|
-
defineExpose({ ouvrir, fermer })
|
|
111
|
-
</script>
|
|
112
|
-
|
|
113
|
-
<style lang="css" scoped>
|
|
114
|
-
.v-card__text,
|
|
115
|
-
.v-card__title {
|
|
116
|
-
word-break: normal; /* empeche le wrap de couper un mot en XS */
|
|
117
|
-
}
|
|
118
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<v-dialog
|
|
3
|
+
v-model="dialog"
|
|
4
|
+
v-bind="$attrs"
|
|
5
|
+
class="pa-0 ma-0"
|
|
6
|
+
:width="largeur"
|
|
7
|
+
:fullscreen="display.xs.value"
|
|
8
|
+
max-width="650"
|
|
9
|
+
:persistent="props.persistant"
|
|
10
|
+
@keydown.esc="!persistant ? annuler : ''"
|
|
11
|
+
@click:outside="!persistant ? annuler : ''"
|
|
12
|
+
>
|
|
13
|
+
<v-card class="pa-0 ma-0 pl-8 pt-8">
|
|
14
|
+
<!-- Bouton en haut à droite -->
|
|
15
|
+
<v-btn
|
|
16
|
+
icon="mdi-close"
|
|
17
|
+
variant="text"
|
|
18
|
+
class="position-absolute couleurHover"
|
|
19
|
+
style="top: 5px; right: 5px"
|
|
20
|
+
@click="annuler"
|
|
21
|
+
></v-btn>
|
|
22
|
+
|
|
23
|
+
<v-card-title
|
|
24
|
+
class="pa-0 ma-0 pb-6"
|
|
25
|
+
style="font-size: 24px; white-space: normal; word-break: break-word"
|
|
26
|
+
>
|
|
27
|
+
<slot name="titre"></slot>
|
|
28
|
+
<div text-h5><span v-html="titre"></span></div>
|
|
29
|
+
</v-card-title>
|
|
30
|
+
|
|
31
|
+
<v-card-text class="pa-0 ma-0 pb-6 pr-6">
|
|
32
|
+
<v-container>
|
|
33
|
+
<slot></slot>
|
|
34
|
+
<slot name="content"></slot>
|
|
35
|
+
</v-container>
|
|
36
|
+
</v-card-text>
|
|
37
|
+
<v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
|
|
38
|
+
<slot name="actions"></slot>
|
|
39
|
+
<v-btn
|
|
40
|
+
v-if="btnAnnuler"
|
|
41
|
+
color="primary"
|
|
42
|
+
:loading="operationEnCours"
|
|
43
|
+
variant="text"
|
|
44
|
+
@click="annuler"
|
|
45
|
+
>
|
|
46
|
+
{{ btnAnnulerTexte ? btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
47
|
+
</v-btn>
|
|
48
|
+
|
|
49
|
+
<v-btn
|
|
50
|
+
v-if="btnOk"
|
|
51
|
+
class="Gouttiere"
|
|
52
|
+
color="primary"
|
|
53
|
+
:loading="operationEnCours"
|
|
54
|
+
:disabled="btnOkDesactiver"
|
|
55
|
+
variant="flat"
|
|
56
|
+
@click="okBouton"
|
|
57
|
+
>
|
|
58
|
+
{{ btnOkTexte ? btnOkTexte : $t('csqc.bouton.ok') }}
|
|
59
|
+
</v-btn>
|
|
60
|
+
</v-card-actions>
|
|
61
|
+
</v-card>
|
|
62
|
+
</v-dialog>
|
|
63
|
+
</template>
|
|
64
|
+
|
|
65
|
+
<script setup lang="ts">
|
|
66
|
+
import { ref } from 'vue'
|
|
67
|
+
import { useDisplay } from 'vuetify'
|
|
68
|
+
|
|
69
|
+
const display = useDisplay()
|
|
70
|
+
|
|
71
|
+
// Déclaration des props
|
|
72
|
+
const props = defineProps({
|
|
73
|
+
largeur: { type: String, default: '50vw' },
|
|
74
|
+
persistant: { type: Boolean, default: true },
|
|
75
|
+
operationEnCours: { type: Boolean, default: false },
|
|
76
|
+
btnAnnuler: { type: Boolean, default: true },
|
|
77
|
+
btnOk: { type: Boolean, default: true },
|
|
78
|
+
btnAnnulerTexte: { type: String, default: '' },
|
|
79
|
+
btnOkTexte: { type: String, default: '' },
|
|
80
|
+
titre: { type: String, default: '' },
|
|
81
|
+
btnOkDesactiver: { type: Boolean, default: false },
|
|
82
|
+
})
|
|
83
|
+
|
|
84
|
+
// Déclaration des événements émis
|
|
85
|
+
const emit = defineEmits(['annuler', 'ok'])
|
|
86
|
+
|
|
87
|
+
// Gestion de l'état du dialogue
|
|
88
|
+
const dialog = ref(false)
|
|
89
|
+
|
|
90
|
+
// Méthodes pour gérer l'ouverture et la fermeture
|
|
91
|
+
const ouvrir = () => {
|
|
92
|
+
dialog.value = true
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const fermer = () => {
|
|
96
|
+
dialog.value = false
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Gestion des actions des boutons
|
|
100
|
+
const annuler = () => {
|
|
101
|
+
emit('annuler')
|
|
102
|
+
fermer()
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const okBouton = () => {
|
|
106
|
+
emit('ok')
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// permet d'exporter les 2 actions
|
|
110
|
+
defineExpose({ ouvrir, fermer })
|
|
111
|
+
</script>
|
|
112
|
+
|
|
113
|
+
<style lang="css" scoped>
|
|
114
|
+
.v-card__text,
|
|
115
|
+
.v-card__title {
|
|
116
|
+
word-break: normal; /* empeche le wrap de couper un mot en XS */
|
|
117
|
+
}
|
|
118
|
+
</style>
|