@finema/core 1.4.163 → 1.4.165

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.163",
3
+ "version": "1.4.165",
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.163";
4
+ const version = "1.4.165";
5
5
 
6
6
  const colors = {
7
7
  black: "#20243E",
@@ -1,11 +1,5 @@
1
1
  <template>
2
- <UTable
3
- :loading="status.isLoading"
4
- :columns="columns"
5
- :rows="rawData"
6
- :progress="null as unknown as any"
7
- v-bind="$attrs"
8
- >
2
+ <UTable :loading="status.isLoading" :columns="columns" :rows="rawData" v-bind="$attrs">
9
3
  <template #loading-state>
10
4
  <div class="flex h-60 items-center justify-center">
11
5
  <Icon name="i-svg-spinners:180-ring-with-bg" class="text-primary size-8" />
@@ -21,24 +15,28 @@
21
15
  v-if="column.type === COLUMN_TYPES.NUMBER"
22
16
  :value="transformValue(column, row)"
23
17
  :column="column"
18
+ :class="column.class"
24
19
  :row="row"
25
20
  />
26
21
  <ColumnImage
27
22
  v-else-if="column.type === COLUMN_TYPES.IMAGE"
28
23
  :value="transformValue(column, row)"
29
24
  :column="column"
25
+ :class="column.class"
30
26
  :row="row"
31
27
  />
32
28
  <ColumnDateTime
33
29
  v-else-if="column.type === COLUMN_TYPES.DATE_TIME"
34
30
  :value="transformValue(column, row)"
35
31
  :column="column"
32
+ :class="column.class"
36
33
  :row="row"
37
34
  />
38
35
  <ColumnDate
39
36
  v-else-if="column.type === COLUMN_TYPES.DATE"
40
37
  :value="transformValue(column, row)"
41
38
  :column="column"
39
+ :class="column.class"
42
40
  :row="row"
43
41
  />
44
42
  <component
@@ -46,6 +44,7 @@
46
44
  v-else-if="column.type === COLUMN_TYPES.COMPONENT"
47
45
  :value="transformValue(column, row)"
48
46
  :column="column"
47
+ :class="column.class"
49
48
  :row="row"
50
49
  />
51
50
  <ColumnText v-else :value="transformValue(column, row)" :column="column" :row="row" />
@@ -1 +1,3 @@
1
- export declare const tabs: any;
1
+ import type { DeepPartial } from '#ui/types';
2
+ import type * as config from '#ui/ui.config';
3
+ export declare const tabs: DeepPartial<(typeof config)['tabs']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.163",
3
+ "version": "1.4.165",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",