codevdesign 0.0.3 → 0.0.5

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.
@@ -61,7 +61,7 @@
61
61
 
62
62
  <!-- mobile -->
63
63
  <div v-else>
64
- <v-toolbar class="pa-0 ajouterPointeur barreMenu">
64
+ <v-toolbar class="pa-0 ajouterPointeur barreMenuMobile">
65
65
  <v-app-bar-nav-icon
66
66
  variant="text"
67
67
  @click.stop="menu = !menu"
@@ -185,7 +185,6 @@
185
185
  .barreMenu {
186
186
  color: white !important;
187
187
  padding: 0 10px 0 10px !important;
188
- margin-top: 77px !important;
189
188
  }
190
189
  /* desktop */
191
190
  .v-btn {
@@ -230,16 +229,9 @@
230
229
  }
231
230
 
232
231
  /* mobile couleur du texte de la barre, marge du haut, padding */
233
- .barreMenu {
232
+ .barreMenuMobile {
234
233
  color: white !important;
235
234
  padding: 0 10px 0 10px !important;
236
- margin-top: 65px !important;
237
- }
238
-
239
- /* mobile background de la barre de menu et hauteur */
240
- .v-toolbar {
241
- background-color: #223654;
242
- height: 66px;
243
235
  }
244
236
 
245
237
  /* mobile drawer apparait sous les app bar */
@@ -2,8 +2,7 @@
2
2
  <v-toolbar
3
3
  color="primary"
4
4
  height="72px"
5
- elevation="0"
6
- absolute
5
+ elevation="1"
7
6
  >
8
7
  <v-row
9
8
  class="pl-6 pr-6"
@@ -35,7 +34,10 @@
35
34
  v-if="!estMobile"
36
35
  class="d-flex justify-center"
37
36
  >
38
- <v-app-bar-title class="pl-12">
37
+ <v-app-bar-title
38
+ class="pl-12 ml-12"
39
+ style="font-size: 16px !important"
40
+ >
39
41
  {{ $t('pivEntete.nom_application') }}
40
42
  </v-app-bar-title>
41
43
  </v-col>
@@ -54,7 +56,7 @@
54
56
  v-if="estMobile"
55
57
  cols="12"
56
58
  >
57
- <v-app-bar-title>
59
+ <v-app-bar-title style="font-size: 16px !important">
58
60
  {{ $t('pivEntete.nom_application') }}
59
61
  </v-app-bar-title>
60
62
  </v-col>
package/package.json CHANGED
@@ -1,20 +1,28 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
+ "description": "Composants Vuetify 3 pour les projets Codev",
4
5
  "files": [
5
- "/**/*.vue",
6
- "/**/*.ts",
7
- "/**/*.json"
6
+ "./**/*.vue",
7
+ "./**/*.ts",
8
+ "./**/*.json",
9
+ "./**/*.css",
10
+ "./index.d.ts"
8
11
  ],
9
- "scripts": {},
12
+ "scripts": {
13
+ "build": "vite build"
14
+ },
10
15
  "dependencies": {
11
- "vue": "^3.5.0",
12
16
  "vuetify": "^3.7.0",
13
17
  "vue-i18n": "^11.0.0"
14
18
  },
15
19
  "devDependencies": {
16
20
  "@types/node": "^22.13.5",
17
21
  "@vitejs/plugin-vue": "^5.2.1",
18
- "typescript": "^5.7.3"
22
+ "typescript": "^5.7.3",
23
+ "vite": "^6.2.0"
24
+ },
25
+ "peerDependencies": {
26
+ "vue": "^3.5.0"
19
27
  }
20
28
  }