@finema/core 1.4.209 → 1.4.211

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.209",
3
+ "version": "1.4.211",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addPlugin, addComponen
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@finema/core";
5
- const version = "1.4.209";
5
+ const version = "1.4.211";
6
6
 
7
7
  const colorModeOptions = {
8
8
  preference: "light"
@@ -52,7 +52,7 @@
52
52
  import { computed, type PropType } from 'vue'
53
53
  import { useElementVisibility } from '@vueuse/core'
54
54
  import { StringHelper } from '#core/utils/StringHelper'
55
- import { ref, useWatchTrue, watch } from '#imports'
55
+ import { ref, useWatchChange, useWatchTrue, watch } from '#imports'
56
56
  import type { IFlexDeckOptions } from '#core/components/FlexDeck/types'
57
57
  import Empty from '#core/components/Empty.vue'
58
58
 
@@ -125,6 +125,13 @@ const totalInnerRawData = computed((): number => {
125
125
  return innerRawData.value?.length || 0
126
126
  })
127
127
 
128
+ useWatchChange(
129
+ () => props.pageOptions?.currentPage,
130
+ (value: number) => {
131
+ page.value = value
132
+ }
133
+ )
134
+
128
135
  useWatchTrue(
129
136
  () => props.status.isSuccess,
130
137
  () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.209",
3
+ "version": "1.4.211",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@nuxt/kit": "^3.13.1",
39
- "@nuxt/ui": "2.18.6",
39
+ "@nuxt/ui": "2.18.7",
40
40
  "@pinia/nuxt": "^0.5.4",
41
41
  "@tiptap/extension-image": "^2.8.0",
42
42
  "@tiptap/extension-link": "^2.8.0",