@live-change/vue3-components 0.8.141 → 0.8.143

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 (2) hide show
  1. package/logic/locale.js +2 -1
  2. package/package.json +3 -3
package/logic/locale.js CHANGED
@@ -149,7 +149,8 @@ export class Locale {
149
149
  }
150
150
 
151
151
  localTime(date) {
152
- return new Date(new Date(date).getTime() + this.timezoneOffset?.value)
152
+ if(typeof window !== 'undefined') return date // convert to local time only on server
153
+ return new Date(new Date(date).getTime() - this.timezoneOffset?.value * 60 * 1000)
153
154
  }
154
155
 
155
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-components",
3
- "version": "0.8.141",
3
+ "version": "0.8.143",
4
4
  "description": "Live Change Framework - vue components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-stack",
23
23
  "dependencies": {
24
- "@live-change/vue3-ssr": "^0.8.141",
24
+ "@live-change/vue3-ssr": "^0.8.143",
25
25
  "debug": "^4.3.4",
26
26
  "mitt": "3.0.1",
27
27
  "vue": "^3.4.29"
28
28
  },
29
- "gitHead": "cafaa203cb334801a288116970521929ae3465a9"
29
+ "gitHead": "66b5f7afb324c434fbc61971fa8e3ec8bf9359d0"
30
30
  }