@finema/core 1.4.177 → 1.4.179

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.177",
3
+ "version": "1.4.179",
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.177";
5
+ const version = "1.4.179";
6
6
 
7
7
  const colorModeOptions = {
8
8
  preference: "light"
@@ -137,10 +137,18 @@ const handleOpenFile = () => {
137
137
 
138
138
  const handleDeleteFile = (index: number) => {
139
139
  selectedFiles.value.splice(index, 1)
140
+
141
+ const updatedValue = [...selectedFiles.value]
142
+
143
+ updatedValue.splice(index, 1)
144
+ selectedFiles.value = updatedValue
140
145
  }
141
146
 
142
147
  const handleDeleteFileView = (index: number) => {
143
- value.value.splice(index, 1)
148
+ const updatedValue = [...value.value]
149
+
150
+ updatedValue.splice(index, 1)
151
+ value.value = updatedValue
144
152
  emits('delete')
145
153
  }
146
154
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.177",
3
+ "version": "1.4.179",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -44,6 +44,7 @@
44
44
  "@vueup/vue-quill": "^1.2.0",
45
45
  "@wdns/vue-code-block": "^2.3.3",
46
46
  "axios": "^1.7.2",
47
+ "cheerio": "1.0.0-rc.12",
47
48
  "date-fns": "^3.3.1",
48
49
  "defu": "^6.1.4",
49
50
  "i18next": "^23.12.2",