@finema/finework-layer 0.2.80 → 0.2.81

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
+ ## [0.2.81](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.80...0.2.81) (2025-12-08)
4
+
5
+ ### Bug Fixes
6
+
7
+ * move FileAppType enum to a separate constants file ([cc5dad8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/cc5dad86f93876c6cecfd12715f10a0c62371b11))
8
+
3
9
  ## [0.2.80](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.79...0.2.80) (2025-12-08)
4
10
 
5
11
  ## [0.2.79](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.78...0.2.79) (2025-12-08)
@@ -119,9 +119,9 @@
119
119
  />
120
120
  <slot
121
121
  name="sidebar-tailing"
122
- :isCollapsed="isCollapsed"
123
- :isMobile="isMobile"
124
- :isGroup="isGroup"
122
+ :is-collapsed="isCollapsed"
123
+ :is-mobile="isMobile"
124
+ :is-group="isGroup"
125
125
  />
126
126
  </div>
127
127
  <div
@@ -1,14 +1,5 @@
1
1
  import type { AxiosRequestConfig } from 'axios'
2
2
 
3
- export enum FileAppType {
4
- COMMON = 'COMMON',
5
- PMO = 'PMO',
6
- HR = 'HR',
7
- FINANCE = 'FINANCE',
8
- QUOTATION = 'QUOTATION',
9
- TODO = 'TODO',
10
- }
11
-
12
3
  export const useRequestOptions = () => {
13
4
  const config = useRuntimeConfig()
14
5
 
@@ -0,0 +1,9 @@
1
+ export enum FileAppType {
2
+ COMMON = 'COMMON',
3
+ PMO = 'PMO',
4
+ HR = 'HR',
5
+ FINANCE = 'FINANCE',
6
+ QUOTATION = 'QUOTATION',
7
+ TODO = 'TODO',
8
+ LEGAL = 'LEGAL',
9
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.2.80",
4
+ "version": "0.2.81",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",