@raclettejs/core 0.1.7 → 0.1.8

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.8] - 11.09.2025
11
+
12
+ ### Changed
13
+
14
+ - language and theme toggle in user menu now always store preference in localstorage, not just in dev mode
15
+
10
16
  ## [0.1.7] - 11.09.2025
11
17
 
12
18
  ### Style
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/core",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "racletteJS core package",
5
5
  "repository": "https://gitlab.com/raclettejs/core",
6
6
  "author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
@@ -153,15 +153,11 @@ const isInDev = computed(
153
153
 
154
154
  const toggleTheme = () => {
155
155
  theme.value = theme.value === "light" ? "dark" : "light"
156
- if (isInDev.value) {
157
- userTheme.value = theme.value
158
- }
156
+ userTheme.value = theme.value
159
157
  }
160
158
 
161
159
  const storeLocale = () => {
162
- if (isInDev.value) {
163
- userLanguage.value = locale.value
164
- }
160
+ userLanguage.value = locale.value
165
161
  }
166
162
 
167
163
  const refreshQueries = () => {