codevdesign 0.0.82 → 0.0.84

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.
@@ -18,40 +18,45 @@
18
18
  style="top: 5px; right: 5px"
19
19
  @click="annuler"
20
20
  ></v-btn>
21
- <slot name="titre">
22
- <v-card-title
23
- class="pa-0 ma-0"
24
- style="font-size: 24px; white-space: normal; word-break: break-word"
21
+
22
+ <v-card-title
23
+ class="pa-0 ma-0 pb-6"
24
+ style="font-size: 24px; white-space: normal; word-break: break-word"
25
+ >
26
+ <slot name="titre"></slot>
27
+ <div text-h5><span v-html="titre"></span></div>
28
+ </v-card-title>
29
+
30
+ <v-card-text class="pa-0 ma-0 pb-6 pr-6">
31
+ <v-container>
32
+ <slot></slot>
33
+ <slot name="content"></slot>
34
+ </v-container>
35
+ </v-card-text>
36
+ <v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
37
+ <slot name="actions"></slot>
38
+ <v-btn
39
+ v-if="btnAnnuler"
40
+ color="primary"
41
+ :loading="operationEnCours"
42
+ variant="text"
43
+ @click="annuler"
25
44
  >
26
- <div text-h5><span v-html="titre"></span></div>
27
- </v-card-title>
28
- </slot>
29
- <slot name="contenu"> </slot>
30
- <slot name="actions">
31
- <v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
32
- <v-btn
33
- v-if="btnAnnuler"
34
- color="primary"
35
- :loading="operationEnCours"
36
- variant="text"
37
- @click="annuler"
38
- >
39
- {{ btnAnnulerTexte ? btnAnnulerTexte : $t('csqc.bouton.annuler') }}
40
- </v-btn>
45
+ {{ btnAnnulerTexte ? btnAnnulerTexte : $t('csqc.bouton.annuler') }}
46
+ </v-btn>
41
47
 
42
- <v-btn
43
- v-if="btnOk"
44
- class="Gouttiere"
45
- color="primary"
46
- :loading="operationEnCours"
47
- :disabled="btnOkDesactiver"
48
- variant="flat"
49
- @click="okBouton"
50
- >
51
- {{ btnOkTexte ? btnOkTexte : $t('csqc.bouton.ok') }}
52
- </v-btn>
53
- </v-card-actions>
54
- </slot>
48
+ <v-btn
49
+ v-if="btnOk"
50
+ class="Gouttiere"
51
+ color="primary"
52
+ :loading="operationEnCours"
53
+ :disabled="btnOkDesactiver"
54
+ variant="flat"
55
+ @click="okBouton"
56
+ >
57
+ {{ btnOkTexte ? btnOkTexte : $t('csqc.bouton.ok') }}
58
+ </v-btn>
59
+ </v-card-actions>
55
60
  </v-card>
56
61
  </v-dialog>
57
62
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.82",
3
+ "version": "0.0.84",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",