@finema/core 1.4.161 → 1.4.163

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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.161",
3
+ "version": "1.4.163",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineNuxtModule, createResolver, installModule, addPlugin, addComponentsDir, addImportsDir } from '@nuxt/kit';
2
2
 
3
3
  const name = "@finema/core";
4
- const version = "1.4.161";
4
+ const version = "1.4.163";
5
5
 
6
6
  const colors = {
7
7
  black: "#20243E",
@@ -1,5 +1,11 @@
1
1
  <template>
2
- <UTable :loading="status.isLoading" :columns="columns" :rows="rawData" v-bind="$attrs">
2
+ <UTable
3
+ :loading="status.isLoading"
4
+ :columns="columns"
5
+ :rows="rawData"
6
+ :progress="null as unknown as any"
7
+ v-bind="$attrs"
8
+ >
3
9
  <template #loading-state>
4
10
  <div class="flex h-60 items-center justify-center">
5
11
  <Icon name="i-svg-spinners:180-ring-with-bg" class="text-primary size-8" />
@@ -1,5 +1,5 @@
1
1
  <template>
2
- {{ getValue }}
2
+ {{ getValue || '-' }}
3
3
  </template>
4
4
  <script lang="ts" setup>
5
5
  import { computed } from 'vue'
@@ -1,5 +1,5 @@
1
1
  <template>
2
- {{ getValue }}
2
+ {{ getValue || '-' }}
3
3
  </template>
4
4
  <script lang="ts" setup>
5
5
  import { computed } from 'vue'
@@ -20,6 +20,10 @@ const getValue = computed<string>(() => {
20
20
  return StringHelper.truncate(value, max)
21
21
  }
22
22
 
23
+ if (typeof value === 'string') {
24
+ return value || '-'
25
+ }
26
+
23
27
  return value ?? '-'
24
28
  })
25
29
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.161",
3
+ "version": "1.4.163",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -35,17 +35,17 @@
35
35
  "prepare": "husky install"
36
36
  },
37
37
  "dependencies": {
38
- "@nuxt/kit": "^3.11.2",
38
+ "@nuxt/kit": "^3.12.3",
39
39
  "@nuxt/ui": "2.15.2",
40
40
  "@pinia/nuxt": "^0.5.1",
41
- "@vee-validate/nuxt": "^4.13.0",
42
- "@vee-validate/zod": "^4.13.0",
41
+ "@vee-validate/nuxt": "^4.13.2",
42
+ "@vee-validate/zod": "^4.13.2",
43
43
  "@vuepic/vue-datepicker": "^8.2.0",
44
44
  "@vueup/vue-quill": "^1.2.0",
45
45
  "@wdns/vue-code-block": "^2.3.2",
46
46
  "axios": "^1.7.2",
47
47
  "date-fns": "^3.3.1",
48
- "i18next": "^23.10.1",
48
+ "i18next": "^23.11.5",
49
49
  "maska": "^2.1.11",
50
50
  "nuxt-lodash": "^2.5.3",
51
51
  "nuxt-security": "^1.2.2",
@@ -57,10 +57,10 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@finema/eslint-config": "^1.2.0",
60
- "@nuxt/devtools": "^1.3.3",
60
+ "@nuxt/devtools": "^1.3.9",
61
61
  "@nuxt/eslint-config": "^0.2.0",
62
62
  "@nuxt/module-builder": "^0.5.5",
63
- "@nuxt/schema": "^3.11.2",
63
+ "@nuxt/schema": "^3.12.3",
64
64
  "@nuxt/test-utils": "^3.13.1",
65
65
  "@release-it/conventional-changelog": "^8.0.1",
66
66
  "@types/node": "^20.10.17",
@@ -71,7 +71,7 @@
71
71
  "happy-dom": "^13.0.0",
72
72
  "husky": "^9.0.11",
73
73
  "lint-staged": "^15.2.0",
74
- "nuxt": "^3.11.2",
74
+ "nuxt": "^3.12.3",
75
75
  "playwright-core": "^1.42.1",
76
76
  "prettier": "^3.1.1",
77
77
  "release-it": "^17.0.1",
@@ -80,7 +80,7 @@
80
80
  "stylelint-config-prettier-scss": "^1.0.0",
81
81
  "stylelint-config-standard-scss": "^13.0.0",
82
82
  "vitest": "^1.3.1",
83
- "vue": "^3.4.27"
83
+ "vue": "^3.4.31"
84
84
  },
85
85
  "resolutions": {
86
86
  "@nuxtjs/tailwindcss": "6.11.4"
@@ -91,5 +91,5 @@
91
91
  "workspaces": [
92
92
  "./*"
93
93
  ],
94
- "packageManager": "yarn@4.2.2"
94
+ "packageManager": "yarn@4.3.1"
95
95
  }