@finema/finework-layer 2.0.31 → 2.0.32
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,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.32](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.31...2.0.32) (2026-08-18)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add file deletion handler and adjust feedback button z-index ([013396d](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/013396d9e021ffd2cfb9756417c5f33a239436d0))
|
|
8
|
+
|
|
3
9
|
## [2.0.31](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.30...2.0.31) (2026-08-18)
|
|
4
10
|
|
|
5
11
|
### Features
|
|
@@ -195,6 +195,13 @@ const formFields = createFormFields(() => [
|
|
|
195
195
|
accept: '.jpg,.jpeg,.png,.gif,.webp',
|
|
196
196
|
maxSize: 5120,
|
|
197
197
|
},
|
|
198
|
+
on: {
|
|
199
|
+
change: () => {},
|
|
200
|
+
success: () => {},
|
|
201
|
+
delete: (file: any) => {
|
|
202
|
+
form.setFieldValue('files', form.values.files?.filter((f: any) => f.id !== file.id))
|
|
203
|
+
},
|
|
204
|
+
},
|
|
198
205
|
},
|
|
199
206
|
])
|
|
200
207
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="fixed right-5 bottom-7 z-
|
|
2
|
+
<div class="fixed right-5 bottom-7 z-40">
|
|
3
3
|
<button
|
|
4
4
|
class="group bg-primary-600 ring-primary-200 relative flex size-10 cursor-pointer items-center justify-center rounded-full shadow-lg ring-2 transition-all duration-200 hover:bg-primary-700 hover:scale-105 hover:shadow-xl md:size-12"
|
|
5
5
|
title="แจ้งปัญหา / ขอ Feature"
|