codevdesign 0.0.61 → 0.0.62

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.
@@ -41,7 +41,7 @@
41
41
  modelValue: string | null
42
42
  label: string
43
43
  disable: boolean
44
- afficherHint: boolean
44
+ afficherHint?: boolean
45
45
  regleMessageErreur: string
46
46
  density?: 'default' | 'comfortable' | 'compact'
47
47
  maxWidth?: string | number
@@ -183,7 +183,6 @@
183
183
  let ext = reste.slice(0, 7).split('')
184
184
 
185
185
  // Ne garder que le premier slash s’il est à l’index 0 ou 3
186
- const slashIndices = ext.map((c, i) => (c === '/' ? i : -1)).filter(i => i !== -1)
187
186
  ext = ext.filter((c, i) => {
188
187
  if (c !== '/') return true
189
188
  return i === 0 || i === 3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.61",
3
+ "version": "0.0.62",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",