codevdesign 2.0.8 → 2.0.9

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.
@@ -13,7 +13,7 @@
13
13
  <img
14
14
  id="logoFooter"
15
15
  alt="Gouvernement du Québec."
16
- src="/images/QUEBEC_couleur.svg"
16
+ :src="logoSrc"
17
17
  width="117"
18
18
  height="35"
19
19
  />
@@ -58,10 +58,10 @@
58
58
  const theme = useTheme()
59
59
 
60
60
  // dark theme... trouble de lien en prod avec le computed
61
- /* const logoSrc = computed(
61
+ const logoSrc = computed(
62
62
  () =>
63
- `${import.meta.env.BASE_URL}images/${theme.global.current.value.dark ? 'QUEBEC_blanc.svg' : 'QUEBEC_couleur.svg'}`,
64
- )*/
63
+ `${import.meta.env.BASE_URL}/images/${theme.global.current.value.dark ? 'QUEBEC_blanc.svg' : 'QUEBEC_couleur.svg'}`,
64
+ )
65
65
 
66
66
  const anneeEnCours = computed<number>(() => {
67
67
  return new Date().getFullYear()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Composants Vuetify 4 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",