@finema/finework-layer 1.0.85 → 1.0.87

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.87](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.86...1.0.87) (2026-06-24)
4
+
5
+ ## [1.0.86](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.85...1.0.86) (2026-06-24)
6
+
3
7
  ## [1.0.85](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.84...1.0.85) (2026-06-24)
4
8
 
5
9
  ## [1.0.84](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.83...1.0.84) (2026-06-24)
package/app/app.vue CHANGED
@@ -6,6 +6,6 @@
6
6
  }"
7
7
  >
8
8
  <NuxtPage />
9
- <IssueLog />
9
+ <!-- <IssueLog /> -->
10
10
  </App>
11
11
  </template>
@@ -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
- file: v.object({
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
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.85",
4
+ "version": "1.0.87",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",