codevdesign 2.0.1 → 2.0.3
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 +345 -55
- package/composants/csqcRecherche.vue +219 -214
- package/composants/csqcTable/csqcTable.vue +847 -677
- package/composants/gabarit/csqcMenu.vue +6 -0
- package/locales/en.json +5 -0
- package/locales/fr.json +5 -0
- package/package.json +2 -2
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
>
|
|
31
31
|
<template #activator="{ props }">
|
|
32
32
|
<v-btn
|
|
33
|
+
variant="text"
|
|
33
34
|
color="white"
|
|
35
|
+
:active-color="'white'"
|
|
34
36
|
v-bind="props"
|
|
35
37
|
:active="estActifSousliste(item)"
|
|
36
38
|
>
|
|
@@ -224,8 +226,12 @@
|
|
|
224
226
|
}
|
|
225
227
|
/* desktop */
|
|
226
228
|
.v-btn {
|
|
229
|
+
font-size: 0.875rem;
|
|
227
230
|
font-weight: 400;
|
|
228
231
|
height: 72px !important;
|
|
232
|
+
letter-spacing: 0.0892857em;
|
|
233
|
+
text-indent: 0.0892857em;
|
|
234
|
+
text-transform: uppercase;
|
|
229
235
|
}
|
|
230
236
|
/* desktop */
|
|
231
237
|
.v-btn--active {
|
package/locales/en.json
CHANGED
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
"rechercheAvanceeDefaut": "Advanced search",
|
|
75
75
|
"rechercher": "Search"
|
|
76
76
|
},
|
|
77
|
+
"pagination": {
|
|
78
|
+
"elementsParPage": "Items per page:",
|
|
79
|
+
"tous": "All",
|
|
80
|
+
"total": "items"
|
|
81
|
+
},
|
|
77
82
|
"message": {
|
|
78
83
|
"chaiseSelection": "No selection for this unit",
|
|
79
84
|
"chaiseSelectionToutes": "Please make a selection for all units.",
|
package/locales/fr.json
CHANGED
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
"rechercheAvanceeDefaut": "Recherche avancée",
|
|
92
92
|
"rechercher": "Rechercher"
|
|
93
93
|
},
|
|
94
|
+
"pagination": {
|
|
95
|
+
"elementsParPage": "Éléments par page :",
|
|
96
|
+
"tous": "Tous",
|
|
97
|
+
"total": "éléments"
|
|
98
|
+
},
|
|
94
99
|
"message": {
|
|
95
100
|
"chaiseSelection": "Aucune sélection pour cette unité",
|
|
96
101
|
"chaiseSelectionToutes": "Veuillez faire une sélection pour toutes les unités.",
|
package/package.json
CHANGED