codevdesign 0.0.40 → 0.0.42
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.
|
@@ -64,13 +64,7 @@
|
|
|
64
64
|
</template>
|
|
65
65
|
|
|
66
66
|
<script setup lang="ts" generic="T extends { id: number }">
|
|
67
|
-
import {
|
|
68
|
-
estRequis as estRequisRegle,
|
|
69
|
-
estUniqueBilingue,
|
|
70
|
-
estMinimumLongueur,
|
|
71
|
-
estMaximumLongueur,
|
|
72
|
-
} from './../validateurs'
|
|
73
|
-
|
|
67
|
+
import { estRequis as estRequisRegle, estUniqueBilingue, estMinimumLongueur, estMaximumLongueur } from './validateurs'
|
|
74
68
|
import { ChoixLangue } from '@/enums/choixLangue'
|
|
75
69
|
import { computed, type PropType, toRefs } from 'vue'
|
|
76
70
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ChoixLangue } from '@/enums/choixLangue'
|
|
2
|
-
|
|
3
|
-
import i18n from '@/plugins/i18n.js'
|
|
2
|
+
import i18n from '@/plugins/i18n'
|
|
4
3
|
const { t } = i18n.global
|
|
5
4
|
|
|
6
5
|
/**
|
|
@@ -175,5 +174,4 @@ export default {
|
|
|
175
174
|
estMaximumLongueur,
|
|
176
175
|
estUnique,
|
|
177
176
|
estUniqueBilingue,
|
|
178
|
-
// ...toutes tes fonctions à exporter
|
|
179
177
|
}
|
package/index.ts
CHANGED
|
@@ -12,7 +12,7 @@ import csqcTable from './composants/csqcTable/csqcTable.vue'
|
|
|
12
12
|
import csqcChaise from './composants/csqcChaise/chaiseConteneur.vue'
|
|
13
13
|
import csqcAide from './composants/csqcAide.vue'
|
|
14
14
|
import csqcEntete from './composants/csqcEntete.vue'
|
|
15
|
-
|
|
15
|
+
import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
|
|
16
16
|
|
|
17
17
|
//import validateurs from './validateurs'
|
|
18
18
|
|
|
@@ -50,7 +50,7 @@ export {
|
|
|
50
50
|
pivEntete,
|
|
51
51
|
csqcAide,
|
|
52
52
|
csqcEntete,
|
|
53
|
-
|
|
53
|
+
csqcTexteBilingue,
|
|
54
54
|
//validateurs,
|
|
55
55
|
Utilisateur,
|
|
56
56
|
Unite,
|