@finema/finework-layer 0.2.106 → 0.2.107

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
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.107](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.106...0.2.107) (2026-01-08)
4
+
5
+ ### Bug Fixes
6
+
7
+ * date time form now ([2ed66f0](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/2ed66f094a26136f7b7f3fcf40a37f4e42301df7))
8
+
3
9
  ## [0.2.106](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.105...0.2.106) (2026-01-08)
4
10
 
5
11
  ### Bug Fixes
@@ -24,7 +24,7 @@ const getValue = computed(() => {
24
24
  ? locales.th
25
25
  : locales.enUS
26
26
 
27
- const targetDate = new Date(new Date(props.value).getTime() + new Date().getTimezoneOffset() * 60000)
27
+ const targetDate = new Date(props.value)
28
28
  const daysDiff = differenceInDays(new Date(), targetDate)
29
29
 
30
30
  if (daysDiff <= 6) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.106",
4
+ "version": "0.2.107",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",