codevdesign 0.0.47 → 0.0.49

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.
Files changed (35) hide show
  1. package/README.md +117 -117
  2. package/composants/csqcAide.vue +2 -2
  3. package/composants/csqcAlerteErreur.vue +86 -86
  4. package/composants/csqcChaise/chaiseConteneur.vue +330 -330
  5. package/composants/csqcChaise/chaiseItem.vue +53 -53
  6. package/composants/csqcConfirmation.vue +74 -74
  7. package/composants/csqcDialogue.vue +3 -4
  8. package/composants/csqcEntete.vue +127 -127
  9. package/composants/csqcOptionSwitch.vue +2 -2
  10. package/composants/csqcRecherche.vue +5 -2
  11. package/composants/csqcSnackbar.vue +1 -2
  12. package/composants/csqcTable/csqcTable.vue +2 -2
  13. package/composants/csqcTable/csqcTableExportExcel.vue +4 -4
  14. package/composants/csqcTexteBilingue.vue +13 -13
  15. package/composants/csqcTiroir.vue +1 -2
  16. package/composants/gabarit/csqcMenu.vue +7 -5
  17. package/composants/gabarit/pivEntete.vue +9 -6
  18. package/composants/gabarit/pivPiedPage.vue +70 -70
  19. package/composants/validateurs.ts +183 -181
  20. package/index.ts +68 -68
  21. package/modeles/apiReponse.ts +12 -12
  22. package/modeles/composants/datatableColonne.ts +14 -14
  23. package/modeles/composants/snackbar.ts +18 -18
  24. package/modeles/data.ts +24 -24
  25. package/modeles/droitIntervention.ts +14 -14
  26. package/modeles/groupeCE.ts +23 -23
  27. package/modeles/groupeCEIntervalle.ts +24 -24
  28. package/modeles/intervention.ts +35 -35
  29. package/modeles/notificationGabaritDefaut.ts +10 -10
  30. package/modeles/response.ts +12 -12
  31. package/modeles/role.ts +31 -31
  32. package/modeles/roleMin.ts +12 -12
  33. package/modeles/unite.ts +41 -41
  34. package/modeles/utilisateur.ts +32 -32
  35. package/package.json +1 -1
@@ -1,14 +1,14 @@
1
- class droitIntervention {
2
- uniteId: number
3
- chaiseId: number
4
- niveauChaise: number
5
- typeIntervenant: number
6
- constructor(uniteId: number = 0, chaiseId: number = 0, niveauChaise: number = 0, typeIntervenant: number = 0) {
7
- this.uniteId = uniteId
8
- this.chaiseId = chaiseId
9
- this.niveauChaise = niveauChaise
10
- this.typeIntervenant = typeIntervenant
11
- }
12
- }
13
-
14
- export default droitIntervention
1
+ class droitIntervention {
2
+ uniteId: number
3
+ chaiseId: number
4
+ niveauChaise: number
5
+ typeIntervenant: number
6
+ constructor(uniteId: number = 0, chaiseId: number = 0, niveauChaise: number = 0, typeIntervenant: number = 0) {
7
+ this.uniteId = uniteId
8
+ this.chaiseId = chaiseId
9
+ this.niveauChaise = niveauChaise
10
+ this.typeIntervenant = typeIntervenant
11
+ }
12
+ }
13
+
14
+ export default droitIntervention
@@ -1,23 +1,23 @@
1
- import GroupeCEIntervalle from './groupeCEIntervalle'
2
- class GroupeCE {
3
- id: number
4
- commissionScolaireId: number
5
- nom: string
6
- groupeCEIntervalles: GroupeCEIntervalle[]
7
- parentId?: number
8
-
9
- constructor(
10
- id: number = 0,
11
- commissionScolaireId: number = 0,
12
- nom: string = '',
13
- groupeCEIntervalles: GroupeCEIntervalle[] = [],
14
- parentId: number = 0,
15
- ) {
16
- this.id = id
17
- this.commissionScolaireId = commissionScolaireId
18
- this.nom = nom
19
- this.groupeCEIntervalles = groupeCEIntervalles
20
- this.parentId = parentId
21
- }
22
- }
23
- export default GroupeCE
1
+ import GroupeCEIntervalle from './groupeCEIntervalle'
2
+ class GroupeCE {
3
+ id: number
4
+ commissionScolaireId: number
5
+ nom: string
6
+ groupeCEIntervalles: GroupeCEIntervalle[]
7
+ parentId?: number
8
+
9
+ constructor(
10
+ id: number = 0,
11
+ commissionScolaireId: number = 0,
12
+ nom: string = '',
13
+ groupeCEIntervalles: GroupeCEIntervalle[] = [],
14
+ parentId: number = 0,
15
+ ) {
16
+ this.id = id
17
+ this.commissionScolaireId = commissionScolaireId
18
+ this.nom = nom
19
+ this.groupeCEIntervalles = groupeCEIntervalles
20
+ this.parentId = parentId
21
+ }
22
+ }
23
+ export default GroupeCE
@@ -1,24 +1,24 @@
1
- class GroupeCEIntervalle {
2
- id: number
3
- corpsEmploiMin: string
4
- corpsEmploiMax: string
5
- groupeCEId: number
6
- min: number
7
- max: number
8
- constructor(
9
- id: number = 0,
10
- corpsEmploiMin: string = '',
11
- corpsEmploiMax: string = '',
12
- groupeCEId: number = 0,
13
- min: number,
14
- max: number,
15
- ) {
16
- this.id = id
17
- this.corpsEmploiMin = corpsEmploiMin
18
- this.corpsEmploiMax = corpsEmploiMax
19
- this.groupeCEId = groupeCEId
20
- this.min = min
21
- this.max = max
22
- }
23
- }
24
- export default GroupeCEIntervalle
1
+ class GroupeCEIntervalle {
2
+ id: number
3
+ corpsEmploiMin: string
4
+ corpsEmploiMax: string
5
+ groupeCEId: number
6
+ min: number
7
+ max: number
8
+ constructor(
9
+ id: number = 0,
10
+ corpsEmploiMin: string = '',
11
+ corpsEmploiMax: string = '',
12
+ groupeCEId: number = 0,
13
+ min: number,
14
+ max: number,
15
+ ) {
16
+ this.id = id
17
+ this.corpsEmploiMin = corpsEmploiMin
18
+ this.corpsEmploiMax = corpsEmploiMax
19
+ this.groupeCEId = groupeCEId
20
+ this.min = min
21
+ this.max = max
22
+ }
23
+ }
24
+ export default GroupeCEIntervalle
@@ -1,35 +1,35 @@
1
- class Intervention {
2
- id: number
3
- demandeId: number
4
- uniteId: number
5
- chaiseId?: number
6
- niveauChaise?: number
7
- typeIntervenant: number
8
- utilisateurIdAyantIntervenu?: number
9
- dateIntervention?: Date
10
- etat: number
11
-
12
- constructor(
13
- id: number = 0,
14
- demandeId: number = 0,
15
- uniteId: number = 0,
16
- typeIntervenant: number = 0,
17
- etat: number = 0,
18
- chaiseId?: number,
19
- niveauChaise?: number,
20
- utilisateurIdAyantIntervenu?: number,
21
- dateIntervention?: Date,
22
- ) {
23
- this.id = id
24
- this.demandeId = demandeId
25
- this.uniteId = uniteId
26
- this.typeIntervenant = typeIntervenant
27
- this.etat = etat
28
- this.chaiseId = chaiseId
29
- this.niveauChaise = niveauChaise
30
- this.utilisateurIdAyantIntervenu = utilisateurIdAyantIntervenu
31
- this.dateIntervention = dateIntervention
32
- }
33
- }
34
-
35
- export default Intervention
1
+ class Intervention {
2
+ id: number
3
+ demandeId: number
4
+ uniteId: number
5
+ chaiseId?: number
6
+ niveauChaise?: number
7
+ typeIntervenant: number
8
+ utilisateurIdAyantIntervenu?: number
9
+ dateIntervention?: Date
10
+ etat: number
11
+
12
+ constructor(
13
+ id: number = 0,
14
+ demandeId: number = 0,
15
+ uniteId: number = 0,
16
+ typeIntervenant: number = 0,
17
+ etat: number = 0,
18
+ chaiseId?: number,
19
+ niveauChaise?: number,
20
+ utilisateurIdAyantIntervenu?: number,
21
+ dateIntervention?: Date,
22
+ ) {
23
+ this.id = id
24
+ this.demandeId = demandeId
25
+ this.uniteId = uniteId
26
+ this.typeIntervenant = typeIntervenant
27
+ this.etat = etat
28
+ this.chaiseId = chaiseId
29
+ this.niveauChaise = niveauChaise
30
+ this.utilisateurIdAyantIntervenu = utilisateurIdAyantIntervenu
31
+ this.dateIntervention = dateIntervention
32
+ }
33
+ }
34
+
35
+ export default Intervention
@@ -1,10 +1,10 @@
1
- class NotificationGabaritDefaut {
2
- message: string
3
- sujet: string
4
- constructor(message: string = '', sujet: string = '') {
5
- this.message = message
6
- this.sujet = sujet
7
- }
8
- }
9
-
10
- export default NotificationGabaritDefaut
1
+ class NotificationGabaritDefaut {
2
+ message: string
3
+ sujet: string
4
+ constructor(message: string = '', sujet: string = '') {
5
+ this.message = message
6
+ this.sujet = sujet
7
+ }
8
+ }
9
+
10
+ export default NotificationGabaritDefaut
@@ -1,12 +1,12 @@
1
- import data from './data'
2
- class response {
3
- public data: data | null
4
- public status: number
5
-
6
- constructor(data: data | null = null, status: number = 0) {
7
- this.data = data
8
- this.status = status
9
- }
10
- }
11
-
12
- export default response
1
+ import data from './data'
2
+ class response {
3
+ public data: data | null
4
+ public status: number
5
+
6
+ constructor(data: data | null = null, status: number = 0) {
7
+ this.data = data
8
+ this.status = status
9
+ }
10
+ }
11
+
12
+ export default response
package/modeles/role.ts CHANGED
@@ -1,31 +1,31 @@
1
- import RoleMin from './roleMin'
2
-
3
- class Role extends RoleMin {
4
- ordreAffichage: number
5
- descriptionEn: string
6
- descriptionFr: string
7
- nomFr: string
8
- nomEn: string
9
- utilisateursId: string[]
10
- constructor(
11
- descriptionEn: string = '',
12
- ordreAffichage: number = 0,
13
- descriptionFr: string = '',
14
- nomFr: string = '',
15
- nomEn: string = '',
16
- utilisateursId: string[] = [],
17
- identifiant: string = '',
18
- id: number = 0,
19
- formulaireId: number = 0,
20
- ) {
21
- super(identifiant, id, formulaireId) // Appel au constructeur de la classe parente
22
- this.descriptionEn = descriptionEn
23
- this.ordreAffichage = ordreAffichage
24
- this.descriptionFr = descriptionFr
25
- this.nomFr = nomFr
26
- this.nomEn = nomEn
27
- this.utilisateursId = utilisateursId
28
- }
29
- }
30
-
31
- export default Role
1
+ import RoleMin from './roleMin'
2
+
3
+ class Role extends RoleMin {
4
+ ordreAffichage: number
5
+ descriptionEn: string
6
+ descriptionFr: string
7
+ nomFr: string
8
+ nomEn: string
9
+ utilisateursId: string[]
10
+ constructor(
11
+ descriptionEn: string = '',
12
+ ordreAffichage: number = 0,
13
+ descriptionFr: string = '',
14
+ nomFr: string = '',
15
+ nomEn: string = '',
16
+ utilisateursId: string[] = [],
17
+ identifiant: string = '',
18
+ id: number = 0,
19
+ formulaireId: number = 0,
20
+ ) {
21
+ super(identifiant, id, formulaireId) // Appel au constructeur de la classe parente
22
+ this.descriptionEn = descriptionEn
23
+ this.ordreAffichage = ordreAffichage
24
+ this.descriptionFr = descriptionFr
25
+ this.nomFr = nomFr
26
+ this.nomEn = nomEn
27
+ this.utilisateursId = utilisateursId
28
+ }
29
+ }
30
+
31
+ export default Role
@@ -1,12 +1,12 @@
1
- class RoleMin {
2
- identifiant: string
3
- formulaireId?: number
4
- id: number
5
- constructor(identifiant: string = '', id: number = 0, formulaireId: number = 0) {
6
- this.id = id
7
- this.identifiant = identifiant
8
- this.formulaireId = formulaireId
9
- }
10
- }
11
-
12
- export default RoleMin
1
+ class RoleMin {
2
+ identifiant: string
3
+ formulaireId?: number
4
+ id: number
5
+ constructor(identifiant: string = '', id: number = 0, formulaireId: number = 0) {
6
+ this.id = id
7
+ this.identifiant = identifiant
8
+ this.formulaireId = formulaireId
9
+ }
10
+ }
11
+
12
+ export default RoleMin
package/modeles/unite.ts CHANGED
@@ -1,41 +1,41 @@
1
- class Unite {
2
- id: number
3
- commissionScolaireId: number
4
- nom: string
5
- estActif: boolean
6
- numero: string
7
- numeroEcoleJeune: string
8
- numeroCentreAdulte: string
9
- numeroEcoleJeuneStr: string
10
- numeroCentreAdulteStr: string
11
- estJeune: boolean
12
- estAdulte: boolean
13
-
14
- constructor(
15
- id: number = 0,
16
- commissionScolaireId: number = 0,
17
- nom: string = '',
18
- estActif: boolean = false,
19
- numero: string = '',
20
- numeroEcoleJeune: string = '',
21
- numeroCentreAdulte: string = '',
22
- numeroEcoleJeuneStr: string = '',
23
- numeroCentreAdulteStr: string = '',
24
- estJeune: boolean = false,
25
- estAdulte: boolean = false,
26
- ) {
27
- this.id = id
28
- this.commissionScolaireId = commissionScolaireId
29
- this.nom = nom
30
- this.estActif = estActif
31
- this.numero = numero
32
- this.numeroEcoleJeune = numeroEcoleJeune
33
- this.numeroCentreAdulte = numeroCentreAdulte
34
- this.numeroEcoleJeuneStr = numeroEcoleJeuneStr
35
- this.numeroCentreAdulteStr = numeroCentreAdulteStr
36
- this.estJeune = estJeune
37
- this.estAdulte = estAdulte
38
- }
39
- }
40
-
41
- export default Unite
1
+ class Unite {
2
+ id: number
3
+ commissionScolaireId: number
4
+ nom: string
5
+ estActif: boolean
6
+ numero: string
7
+ numeroEcoleJeune: string
8
+ numeroCentreAdulte: string
9
+ numeroEcoleJeuneStr: string
10
+ numeroCentreAdulteStr: string
11
+ estJeune: boolean
12
+ estAdulte: boolean
13
+
14
+ constructor(
15
+ id: number = 0,
16
+ commissionScolaireId: number = 0,
17
+ nom: string = '',
18
+ estActif: boolean = false,
19
+ numero: string = '',
20
+ numeroEcoleJeune: string = '',
21
+ numeroCentreAdulte: string = '',
22
+ numeroEcoleJeuneStr: string = '',
23
+ numeroCentreAdulteStr: string = '',
24
+ estJeune: boolean = false,
25
+ estAdulte: boolean = false,
26
+ ) {
27
+ this.id = id
28
+ this.commissionScolaireId = commissionScolaireId
29
+ this.nom = nom
30
+ this.estActif = estActif
31
+ this.numero = numero
32
+ this.numeroEcoleJeune = numeroEcoleJeune
33
+ this.numeroCentreAdulte = numeroCentreAdulte
34
+ this.numeroEcoleJeuneStr = numeroEcoleJeuneStr
35
+ this.numeroCentreAdulteStr = numeroCentreAdulteStr
36
+ this.estJeune = estJeune
37
+ this.estAdulte = estAdulte
38
+ }
39
+ }
40
+
41
+ export default Unite
@@ -1,32 +1,32 @@
1
- class Utilisateur {
2
- commissionScolaireId: number
3
- courriel: string
4
- id: number
5
- identifiant: string
6
- langue: string
7
- matricule: string
8
- nom: string
9
- prenom: string
10
-
11
- constructor(
12
- commissionScolaireId: number = 0,
13
- courriel: string = '',
14
- id: number = 0,
15
- identifiant: string = '',
16
- langue: string = '',
17
- matricule: string = '',
18
- nom: string = '',
19
- prenom: string = '',
20
- ) {
21
- this.commissionScolaireId = commissionScolaireId
22
- this.courriel = courriel
23
- this.id = id
24
- this.identifiant = identifiant
25
- this.langue = langue
26
- this.matricule = matricule
27
- this.nom = nom
28
- this.prenom = prenom
29
- }
30
- }
31
-
32
- export default Utilisateur
1
+ class Utilisateur {
2
+ commissionScolaireId: number
3
+ courriel: string
4
+ id: number
5
+ identifiant: string
6
+ langue: string
7
+ matricule: string
8
+ nom: string
9
+ prenom: string
10
+
11
+ constructor(
12
+ commissionScolaireId: number = 0,
13
+ courriel: string = '',
14
+ id: number = 0,
15
+ identifiant: string = '',
16
+ langue: string = '',
17
+ matricule: string = '',
18
+ nom: string = '',
19
+ prenom: string = '',
20
+ ) {
21
+ this.commissionScolaireId = commissionScolaireId
22
+ this.courriel = courriel
23
+ this.id = id
24
+ this.identifiant = identifiant
25
+ this.langue = langue
26
+ this.matricule = matricule
27
+ this.nom = nom
28
+ this.prenom = prenom
29
+ }
30
+ }
31
+
32
+ export default Utilisateur
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",