@finema/finework-layer 0.2.63 → 0.2.65

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.65](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.64...0.2.65) (2025-11-25)
4
+
5
+ ### Bug Fixes
6
+
7
+ * update Thai date settings to true and adjust date formats ([e42f71f](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/e42f71f3f2655e26a6608c194115af5acea490df))
8
+
9
+ ## [0.2.64](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.63...0.2.64) (2025-11-24)
10
+
11
+ ### Bug Fixes
12
+
13
+ * z-index layout ([1de4c8a](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/1de4c8a82c012b3c837938eef847dc78749fba94))
14
+
3
15
  ## [0.2.63](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.62...0.2.63) (2025-11-24)
4
16
 
5
17
  ### Bug Fixes
package/app/app.config.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export default defineAppConfig({
2
2
  core: {
3
- is_thai_year: false,
4
- is_thai_month: false,
3
+ is_thai_year: true,
4
+ is_thai_month: true,
5
5
  date_format: 'dd MMM yyyy',
6
6
  month_format: 'MMM yyyy',
7
- date_time_format: 'dd/MM/yyyy HH:mm',
7
+ date_time_format: 'dd MMM yyyy HH:mm',
8
8
  color: '#335AFF',
9
9
  limit_per_page: 10,
10
10
  locale: 'en',
@@ -3,7 +3,7 @@
3
3
  <div
4
4
  :class="[
5
5
  `
6
- fixed inset-0 z-30 hidden w-auto
6
+ fixed inset-0 z-[102] hidden w-auto
7
7
  lg:block
8
8
  `,
9
9
  {
@@ -30,7 +30,7 @@
30
30
  ]"
31
31
  >
32
32
  <nav
33
- class="fixed top-0 left-0 z-20 flex min-h-[64px] w-screen items-center justify-between gap-4 bg-white px-5 lg:min-h-[72px] lg:justify-end"
33
+ class="fixed top-0 left-0 z-[101] flex min-h-[64px] w-screen items-center justify-between gap-4 bg-white px-5 lg:min-h-[72px] lg:justify-end"
34
34
  style="box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04)"
35
35
  >
36
36
  <div class="flex items-center gap-4">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.63",
4
+ "version": "0.2.65",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",