codevdesign 1.0.42 → 1.0.44
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/csqcCodeBudgetaireGenerique.vue +336 -336
- package/composants/csqcDialogue.vue +118 -118
- package/composants/csqcEditeurTexteRiche.vue +380 -380
- package/composants/csqcOptionSwitch.vue +102 -102
- package/composants/csqcRecherche.vue +214 -213
- package/composants/csqcRechercheUtilisateur.vue +198 -198
- package/composants/csqcSnackbar.vue +88 -88
- package/composants/csqcTable/csqcTable.vue +537 -383
- package/composants/csqcTable/csqcTableModaleChoixColonnes.vue +831 -586
- package/composants/csqcTable/sortableDataTable.ts +24 -0
- package/composants/csqcTiroir.vue +156 -156
- package/index.ts +75 -75
- package/locales/fr.json +14 -0
- package/outils/rafraichisseurToken.ts +187 -187
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import Sortable, { type SortableEvent } from 'sortablejs'
|
|
2
|
+
import type { Directive } from 'vue'
|
|
3
|
+
|
|
4
|
+
export type EmitSorted = (evt: SortableEvent) => void
|
|
5
|
+
|
|
6
|
+
export const vSortableDataTable: Directive<HTMLElement, EmitSorted> = {
|
|
7
|
+
mounted(el, binding) {
|
|
8
|
+
const tbody = el.querySelector('tbody')
|
|
9
|
+
if (!tbody) return
|
|
10
|
+
|
|
11
|
+
const sortable = Sortable.create(tbody, {
|
|
12
|
+
animation: 150,
|
|
13
|
+
handle: '.drag-handle',
|
|
14
|
+
onEnd: evt => binding.value?.(evt),
|
|
15
|
+
})
|
|
16
|
+
|
|
17
|
+
; (el as any).__csqcSortable = sortable
|
|
18
|
+
},
|
|
19
|
+
beforeUnmount(el) {
|
|
20
|
+
const sortable = (el as any).__csqcSortable as Sortable | undefined
|
|
21
|
+
sortable?.destroy()
|
|
22
|
+
delete (el as any).__csqcSortable
|
|
23
|
+
},
|
|
24
|
+
}
|
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<v-navigation-drawer
|
|
3
|
-
v-model="visible"
|
|
4
|
-
location="right"
|
|
5
|
-
temporary
|
|
6
|
-
v-bind="$attrs"
|
|
7
|
-
:width="grosseurTiroir"
|
|
8
|
-
class="pa-0 elevation-2 csqc-ligneBleue"
|
|
9
|
-
:persistent="persistant"
|
|
10
|
-
@keydown.esc="!persistant ? fermeture : ''"
|
|
11
|
-
@click:outside="!persistant ? fermeture : ''"
|
|
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
|
|
19
|
-
style="top: 5px; right: 5px"
|
|
20
|
-
@click="fermeture"
|
|
21
|
-
></v-btn>
|
|
22
|
-
|
|
23
|
-
<v-card-title
|
|
24
|
-
class="pa-0 ma-0 pb-6 text-wrap"
|
|
25
|
-
style="font-size: 24px"
|
|
26
|
-
>
|
|
27
|
-
<slot name="titre"></slot>
|
|
28
|
-
<div text-h5>{{ titre }}</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
|
-
variant="text"
|
|
43
|
-
:loading="operationEnCours"
|
|
44
|
-
@click="fermeture"
|
|
45
|
-
>
|
|
46
|
-
{{ props.btnAnnulerTexte ? props.btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
47
|
-
</v-btn>
|
|
48
|
-
|
|
49
|
-
<v-btn
|
|
50
|
-
v-if="btnOk"
|
|
51
|
-
class="Gouttiere"
|
|
52
|
-
color="primary"
|
|
53
|
-
variant="flat"
|
|
54
|
-
:loading="operationEnCours"
|
|
55
|
-
:disabled="btnOkDesactiver || operationEnCours"
|
|
56
|
-
@click="okBouton"
|
|
57
|
-
>
|
|
58
|
-
{{ props.btnOkTexte ? props.btnOkTexte : $t('csqc.bouton.ok') }}
|
|
59
|
-
</v-btn>
|
|
60
|
-
</v-card-actions>
|
|
61
|
-
</v-card>
|
|
62
|
-
</v-navigation-drawer>
|
|
63
|
-
</template>
|
|
64
|
-
<script lang="ts" setup>
|
|
65
|
-
import { ref, computed } from 'vue'
|
|
66
|
-
import { useDisplay } from 'vuetify'
|
|
67
|
-
|
|
68
|
-
const visible = ref(false)
|
|
69
|
-
const display = useDisplay()
|
|
70
|
-
|
|
71
|
-
// Déclaration des props
|
|
72
|
-
const props = defineProps({
|
|
73
|
-
titre: {
|
|
74
|
-
type: String,
|
|
75
|
-
default: '',
|
|
76
|
-
required: false,
|
|
77
|
-
},
|
|
78
|
-
btnAnnuler: {
|
|
79
|
-
type: Boolean,
|
|
80
|
-
default: true,
|
|
81
|
-
required: false,
|
|
82
|
-
},
|
|
83
|
-
btnOk: {
|
|
84
|
-
type: Boolean,
|
|
85
|
-
default: true,
|
|
86
|
-
required: false,
|
|
87
|
-
},
|
|
88
|
-
btnAnnulerTexte: {
|
|
89
|
-
type: String,
|
|
90
|
-
default: '',
|
|
91
|
-
required: false,
|
|
92
|
-
},
|
|
93
|
-
btnOkDesactiver: {
|
|
94
|
-
type: Boolean,
|
|
95
|
-
default: false,
|
|
96
|
-
required: false,
|
|
97
|
-
},
|
|
98
|
-
operationEnCours: { type: Boolean, default: false },
|
|
99
|
-
persistant: { type: Boolean, default: true },
|
|
100
|
-
btnOkTexte: {
|
|
101
|
-
type: String,
|
|
102
|
-
default: '',
|
|
103
|
-
required: false,
|
|
104
|
-
},
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
// Déclaration des événements
|
|
108
|
-
const emit = defineEmits(['fermer', 'ok'])
|
|
109
|
-
|
|
110
|
-
// Méthodes
|
|
111
|
-
const ouvrir = () => {
|
|
112
|
-
visible.value = true
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
const fermer = () => {
|
|
116
|
-
visible.value = false
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
const fermeture = () => {
|
|
120
|
-
emit('fermer')
|
|
121
|
-
fermer()
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
const okBouton = () => {
|
|
125
|
-
emit('ok')
|
|
126
|
-
fermer()
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// Calcul des tailles du tiroir en fonction du breakpoint
|
|
130
|
-
const grosseurTiroir = computed(() => {
|
|
131
|
-
switch (display.name.value) {
|
|
132
|
-
case 'xs':
|
|
133
|
-
return ''
|
|
134
|
-
case 'sm':
|
|
135
|
-
return 0.95 * display.width.value
|
|
136
|
-
case 'md':
|
|
137
|
-
return 0.8 * display.width.value
|
|
138
|
-
case 'lg':
|
|
139
|
-
return 0.7 * display.width.value
|
|
140
|
-
case 'xl':
|
|
141
|
-
return 0.6 * display.width.value
|
|
142
|
-
case 'xxl':
|
|
143
|
-
return 0.5 * display.width.value
|
|
144
|
-
default:
|
|
145
|
-
return ''
|
|
146
|
-
}
|
|
147
|
-
})
|
|
148
|
-
|
|
149
|
-
defineExpose({ ouvrir, fermer })
|
|
150
|
-
</script>
|
|
151
|
-
|
|
152
|
-
<style>
|
|
153
|
-
.csqc-ligneBleue {
|
|
154
|
-
border-left: 30px #095797 solid !important;
|
|
155
|
-
}
|
|
156
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<v-navigation-drawer
|
|
3
|
+
v-model="visible"
|
|
4
|
+
location="right"
|
|
5
|
+
temporary
|
|
6
|
+
v-bind="$attrs"
|
|
7
|
+
:width="grosseurTiroir"
|
|
8
|
+
class="pa-0 elevation-2 csqc-ligneBleue"
|
|
9
|
+
:persistent="persistant"
|
|
10
|
+
@keydown.esc="!persistant ? fermeture : ''"
|
|
11
|
+
@click:outside="!persistant ? fermeture : ''"
|
|
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 iconeHover"
|
|
19
|
+
style="top: 5px; right: 5px"
|
|
20
|
+
@click="fermeture"
|
|
21
|
+
></v-btn>
|
|
22
|
+
|
|
23
|
+
<v-card-title
|
|
24
|
+
class="pa-0 ma-0 pb-6 text-wrap"
|
|
25
|
+
style="font-size: 24px"
|
|
26
|
+
>
|
|
27
|
+
<slot name="titre"></slot>
|
|
28
|
+
<div text-h5>{{ titre }}</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
|
+
variant="text"
|
|
43
|
+
:loading="operationEnCours"
|
|
44
|
+
@click="fermeture"
|
|
45
|
+
>
|
|
46
|
+
{{ props.btnAnnulerTexte ? props.btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
47
|
+
</v-btn>
|
|
48
|
+
|
|
49
|
+
<v-btn
|
|
50
|
+
v-if="btnOk"
|
|
51
|
+
class="Gouttiere"
|
|
52
|
+
color="primary"
|
|
53
|
+
variant="flat"
|
|
54
|
+
:loading="operationEnCours"
|
|
55
|
+
:disabled="btnOkDesactiver || operationEnCours"
|
|
56
|
+
@click="okBouton"
|
|
57
|
+
>
|
|
58
|
+
{{ props.btnOkTexte ? props.btnOkTexte : $t('csqc.bouton.ok') }}
|
|
59
|
+
</v-btn>
|
|
60
|
+
</v-card-actions>
|
|
61
|
+
</v-card>
|
|
62
|
+
</v-navigation-drawer>
|
|
63
|
+
</template>
|
|
64
|
+
<script lang="ts" setup>
|
|
65
|
+
import { ref, computed } from 'vue'
|
|
66
|
+
import { useDisplay } from 'vuetify'
|
|
67
|
+
|
|
68
|
+
const visible = ref(false)
|
|
69
|
+
const display = useDisplay()
|
|
70
|
+
|
|
71
|
+
// Déclaration des props
|
|
72
|
+
const props = defineProps({
|
|
73
|
+
titre: {
|
|
74
|
+
type: String,
|
|
75
|
+
default: '',
|
|
76
|
+
required: false,
|
|
77
|
+
},
|
|
78
|
+
btnAnnuler: {
|
|
79
|
+
type: Boolean,
|
|
80
|
+
default: true,
|
|
81
|
+
required: false,
|
|
82
|
+
},
|
|
83
|
+
btnOk: {
|
|
84
|
+
type: Boolean,
|
|
85
|
+
default: true,
|
|
86
|
+
required: false,
|
|
87
|
+
},
|
|
88
|
+
btnAnnulerTexte: {
|
|
89
|
+
type: String,
|
|
90
|
+
default: '',
|
|
91
|
+
required: false,
|
|
92
|
+
},
|
|
93
|
+
btnOkDesactiver: {
|
|
94
|
+
type: Boolean,
|
|
95
|
+
default: false,
|
|
96
|
+
required: false,
|
|
97
|
+
},
|
|
98
|
+
operationEnCours: { type: Boolean, default: false },
|
|
99
|
+
persistant: { type: Boolean, default: true },
|
|
100
|
+
btnOkTexte: {
|
|
101
|
+
type: String,
|
|
102
|
+
default: '',
|
|
103
|
+
required: false,
|
|
104
|
+
},
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
// Déclaration des événements
|
|
108
|
+
const emit = defineEmits(['fermer', 'ok'])
|
|
109
|
+
|
|
110
|
+
// Méthodes
|
|
111
|
+
const ouvrir = () => {
|
|
112
|
+
visible.value = true
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const fermer = () => {
|
|
116
|
+
visible.value = false
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const fermeture = () => {
|
|
120
|
+
emit('fermer')
|
|
121
|
+
fermer()
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const okBouton = () => {
|
|
125
|
+
emit('ok')
|
|
126
|
+
fermer()
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Calcul des tailles du tiroir en fonction du breakpoint
|
|
130
|
+
const grosseurTiroir = computed(() => {
|
|
131
|
+
switch (display.name.value) {
|
|
132
|
+
case 'xs':
|
|
133
|
+
return ''
|
|
134
|
+
case 'sm':
|
|
135
|
+
return 0.95 * display.width.value
|
|
136
|
+
case 'md':
|
|
137
|
+
return 0.8 * display.width.value
|
|
138
|
+
case 'lg':
|
|
139
|
+
return 0.7 * display.width.value
|
|
140
|
+
case 'xl':
|
|
141
|
+
return 0.6 * display.width.value
|
|
142
|
+
case 'xxl':
|
|
143
|
+
return 0.5 * display.width.value
|
|
144
|
+
default:
|
|
145
|
+
return ''
|
|
146
|
+
}
|
|
147
|
+
})
|
|
148
|
+
|
|
149
|
+
defineExpose({ ouvrir, fermer })
|
|
150
|
+
</script>
|
|
151
|
+
|
|
152
|
+
<style>
|
|
153
|
+
.csqc-ligneBleue {
|
|
154
|
+
border-left: 30px #095797 solid !important;
|
|
155
|
+
}
|
|
156
|
+
</style>
|
package/index.ts
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
import csqcAlerteErreur from './composants/csqcAlerteErreur.vue'
|
|
2
|
-
import csqcDialogue from './composants/csqcDialogue.vue'
|
|
3
|
-
import csqcOptionSwitch from './composants/csqcOptionSwitch.vue'
|
|
4
|
-
import csqcRecherche from './composants/csqcRecherche.vue'
|
|
5
|
-
import csqcSnackbar from './composants/csqcSnackbar.vue'
|
|
6
|
-
import csqcTiroir from './composants/csqcTiroir.vue'
|
|
7
|
-
import pivEntete from './composants/gabarit/pivEntete.vue'
|
|
8
|
-
import pivFooter from './composants/gabarit/pivPiedPage.vue'
|
|
9
|
-
import csqcMenu from './composants/gabarit/csqcMenu.vue'
|
|
10
|
-
import csqcConfirmation from './composants/csqcConfirmation.vue'
|
|
11
|
-
import csqcSaisie from './composants/csqcModaleSaisie.vue'
|
|
12
|
-
import csqcDate from './composants/csqcDate.vue'
|
|
13
|
-
import csqcTable from './composants/csqcTable/csqcTable.vue'
|
|
14
|
-
import csqcCodeBudgetaire from './composants/csqcCodeBudgetaireGenerique.vue'
|
|
15
|
-
import csqcChaise from './composants/csqcChaise/chaiseConteneur.vue'
|
|
16
|
-
import csqcAide from './composants/csqcAide.vue'
|
|
17
|
-
import csqcEntete from './composants/csqcEntete.vue'
|
|
18
|
-
import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
|
|
19
|
-
|
|
20
|
-
import csqcEditeurTexteRiche from './composants/csqcEditeurTexteRiche.vue'
|
|
21
|
-
import csqcImportCSV from './composants/csqcImportCSV.vue'
|
|
22
|
-
import csqcRechercheUtilisateur from './composants/csqcRechercheUtilisateur.vue'
|
|
23
|
-
import validateurs from './composants/validateurs'
|
|
24
|
-
|
|
25
|
-
// modèles
|
|
26
|
-
import NotificationGabaritDefaut from './modeles/notificationGabaritDefaut'
|
|
27
|
-
import modeleSnackbar from './modeles/composants/snackbar'
|
|
28
|
-
import modeleDatatableColonne from './modeles/composants/datatableColonne'
|
|
29
|
-
import apiReponse from './modeles/apiReponse'
|
|
30
|
-
import data from './modeles/data'
|
|
31
|
-
import response from './modeles/response'
|
|
32
|
-
|
|
33
|
-
// outils
|
|
34
|
-
import csqcRafraichisseurToken from './outils/rafraichisseurToken'
|
|
35
|
-
import csqcOutils from './outils/csqcOutils'
|
|
36
|
-
|
|
37
|
-
// i18n
|
|
38
|
-
import csqcEn from './locales/en.json'
|
|
39
|
-
import csqcFr from './locales/fr.json'
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
export {
|
|
43
|
-
csqcFr,
|
|
44
|
-
csqcEn,
|
|
45
|
-
csqcAlerteErreur,
|
|
46
|
-
csqcDialogue,
|
|
47
|
-
csqcConfirmation,
|
|
48
|
-
csqcSaisie,
|
|
49
|
-
csqcDate,
|
|
50
|
-
csqcOptionSwitch,
|
|
51
|
-
csqcRecherche,
|
|
52
|
-
csqcSnackbar,
|
|
53
|
-
csqcTable,
|
|
54
|
-
csqcTiroir,
|
|
55
|
-
csqcMenu,
|
|
56
|
-
csqcCodeBudgetaire,
|
|
57
|
-
csqcChaise,
|
|
58
|
-
pivFooter,
|
|
59
|
-
pivEntete,
|
|
60
|
-
csqcAide,
|
|
61
|
-
csqcEntete,
|
|
62
|
-
csqcTexteBilingue,
|
|
63
|
-
csqcEditeurTexteRiche,
|
|
64
|
-
validateurs,
|
|
65
|
-
csqcImportCSV,
|
|
66
|
-
csqcRechercheUtilisateur,
|
|
67
|
-
csqcRafraichisseurToken,
|
|
68
|
-
csqcOutils,
|
|
69
|
-
modeleSnackbar,
|
|
70
|
-
modeleDatatableColonne as colonne,
|
|
71
|
-
apiReponse,
|
|
72
|
-
data,
|
|
73
|
-
response,
|
|
74
|
-
NotificationGabaritDefaut,
|
|
75
|
-
}
|
|
1
|
+
import csqcAlerteErreur from './composants/csqcAlerteErreur.vue'
|
|
2
|
+
import csqcDialogue from './composants/csqcDialogue.vue'
|
|
3
|
+
import csqcOptionSwitch from './composants/csqcOptionSwitch.vue'
|
|
4
|
+
import csqcRecherche from './composants/csqcRecherche.vue'
|
|
5
|
+
import csqcSnackbar from './composants/csqcSnackbar.vue'
|
|
6
|
+
import csqcTiroir from './composants/csqcTiroir.vue'
|
|
7
|
+
import pivEntete from './composants/gabarit/pivEntete.vue'
|
|
8
|
+
import pivFooter from './composants/gabarit/pivPiedPage.vue'
|
|
9
|
+
import csqcMenu from './composants/gabarit/csqcMenu.vue'
|
|
10
|
+
import csqcConfirmation from './composants/csqcConfirmation.vue'
|
|
11
|
+
import csqcSaisie from './composants/csqcModaleSaisie.vue'
|
|
12
|
+
import csqcDate from './composants/csqcDate.vue'
|
|
13
|
+
import csqcTable from './composants/csqcTable/csqcTable.vue'
|
|
14
|
+
import csqcCodeBudgetaire from './composants/csqcCodeBudgetaireGenerique.vue'
|
|
15
|
+
import csqcChaise from './composants/csqcChaise/chaiseConteneur.vue'
|
|
16
|
+
import csqcAide from './composants/csqcAide.vue'
|
|
17
|
+
import csqcEntete from './composants/csqcEntete.vue'
|
|
18
|
+
import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
|
|
19
|
+
|
|
20
|
+
import csqcEditeurTexteRiche from './composants/csqcEditeurTexteRiche.vue'
|
|
21
|
+
import csqcImportCSV from './composants/csqcImportCSV.vue'
|
|
22
|
+
import csqcRechercheUtilisateur from './composants/csqcRechercheUtilisateur.vue'
|
|
23
|
+
import validateurs from './composants/validateurs'
|
|
24
|
+
|
|
25
|
+
// modèles
|
|
26
|
+
import NotificationGabaritDefaut from './modeles/notificationGabaritDefaut'
|
|
27
|
+
import modeleSnackbar from './modeles/composants/snackbar'
|
|
28
|
+
import modeleDatatableColonne from './modeles/composants/datatableColonne'
|
|
29
|
+
import apiReponse from './modeles/apiReponse'
|
|
30
|
+
import data from './modeles/data'
|
|
31
|
+
import response from './modeles/response'
|
|
32
|
+
|
|
33
|
+
// outils
|
|
34
|
+
import csqcRafraichisseurToken from './outils/rafraichisseurToken'
|
|
35
|
+
import csqcOutils from './outils/csqcOutils'
|
|
36
|
+
|
|
37
|
+
// i18n
|
|
38
|
+
import csqcEn from './locales/en.json'
|
|
39
|
+
import csqcFr from './locales/fr.json'
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
export {
|
|
43
|
+
csqcFr,
|
|
44
|
+
csqcEn,
|
|
45
|
+
csqcAlerteErreur,
|
|
46
|
+
csqcDialogue,
|
|
47
|
+
csqcConfirmation,
|
|
48
|
+
csqcSaisie,
|
|
49
|
+
csqcDate,
|
|
50
|
+
csqcOptionSwitch,
|
|
51
|
+
csqcRecherche,
|
|
52
|
+
csqcSnackbar,
|
|
53
|
+
csqcTable,
|
|
54
|
+
csqcTiroir,
|
|
55
|
+
csqcMenu,
|
|
56
|
+
csqcCodeBudgetaire,
|
|
57
|
+
csqcChaise,
|
|
58
|
+
pivFooter,
|
|
59
|
+
pivEntete,
|
|
60
|
+
csqcAide,
|
|
61
|
+
csqcEntete,
|
|
62
|
+
csqcTexteBilingue,
|
|
63
|
+
csqcEditeurTexteRiche,
|
|
64
|
+
validateurs,
|
|
65
|
+
csqcImportCSV,
|
|
66
|
+
csqcRechercheUtilisateur,
|
|
67
|
+
csqcRafraichisseurToken,
|
|
68
|
+
csqcOutils,
|
|
69
|
+
modeleSnackbar,
|
|
70
|
+
modeleDatatableColonne as colonne,
|
|
71
|
+
apiReponse,
|
|
72
|
+
data,
|
|
73
|
+
response,
|
|
74
|
+
NotificationGabaritDefaut,
|
|
75
|
+
}
|
package/locales/fr.json
CHANGED
|
@@ -30,6 +30,20 @@
|
|
|
30
30
|
"info": "Cette réclamation devra être vérifiée par la ou les unités suivantes. Pour celles ayant plus d'une possibilité, veuillez sélectionner le choix qui vous convient.",
|
|
31
31
|
"titre": "Préférence de suivi"
|
|
32
32
|
},
|
|
33
|
+
"csqcDatatable": {
|
|
34
|
+
"choixColonnes": {
|
|
35
|
+
"defautTooltip": "Vue par défaut",
|
|
36
|
+
"activerTooltip": "Activer la vue",
|
|
37
|
+
"titre": "Choix de colonnes",
|
|
38
|
+
"vues": "Vue | Vue | Vues",
|
|
39
|
+
"nomVue": "Nom de la vue",
|
|
40
|
+
"nomVueRequis": "Le nom de la vue est requis",
|
|
41
|
+
"ordre": "Ordre",
|
|
42
|
+
"nomColonne": "Colonne | Colonne | Colonnes",
|
|
43
|
+
"nomVueExiste": "Le nom de la vue existe déjà",
|
|
44
|
+
"activezUneColonne": "Activez une colonne"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
33
47
|
"csqcEmploisEmploye": {
|
|
34
48
|
"dateDebut": "Date de début",
|
|
35
49
|
"dateFin": "Date de fin",
|