@finema/finework-layer 1.0.85 → 1.0.86
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,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.86](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.85...1.0.86) (2026-06-24)
|
|
4
|
+
|
|
3
5
|
## [1.0.85](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.84...1.0.85) (2026-06-24)
|
|
4
6
|
|
|
5
7
|
## [1.0.84](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.83...1.0.84) (2026-06-24)
|
|
@@ -108,13 +108,14 @@ const form = useForm({
|
|
|
108
108
|
title: v.pipe(v.string(), v.minLength(1, 'กรุณาระบุหัวข้อ')),
|
|
109
109
|
description: v.pipe(v.string(), v.minLength(1, 'กรุณาระบุรายละเอียด')),
|
|
110
110
|
type: v.pipe(v.string(), v.minLength(1, 'กรุณาเลือกประเภท')),
|
|
111
|
-
|
|
111
|
+
app: v.nullish(v.string()),
|
|
112
|
+
file: v.nullish(v.object({
|
|
112
113
|
url: v.string(),
|
|
113
114
|
name: v.string(),
|
|
114
115
|
path: v.string(),
|
|
115
116
|
size: v.number(),
|
|
116
117
|
id: v.string(),
|
|
117
|
-
}
|
|
118
|
+
})),
|
|
118
119
|
}),
|
|
119
120
|
),
|
|
120
121
|
})
|
|
@@ -139,6 +140,7 @@ const formFields = createFormFields(() => [
|
|
|
139
140
|
label: 'ระบบ',
|
|
140
141
|
name: 'app',
|
|
141
142
|
placeholder: 'เลือกระบบ',
|
|
143
|
+
clearable: true,
|
|
142
144
|
options: UserModuleOptions,
|
|
143
145
|
},
|
|
144
146
|
},
|