@finema/finework-layer 0.0.4 → 0.0.6

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
+ ## [0.0.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.5...0.0.6) (2025-10-09)
4
+
5
+ ## [0.0.5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.4...0.0.5) (2025-10-09)
6
+
3
7
  ## [0.0.4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.3...0.0.4) (2025-10-09)
4
8
 
5
9
  ## [0.0.3](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.0.2...0.0.3) (2025-10-09)
package/bun.lock CHANGED
@@ -10,6 +10,7 @@
10
10
  "@nuxt/eslint": "latest",
11
11
  "@nuxt/test-utils": "^3.19.2",
12
12
  "@release-it/conventional-changelog": "^10.0.1",
13
+ "@types/node": "^24.7.0",
13
14
  "eslint": "^9.37.0",
14
15
  "nuxt": "^4.1.3",
15
16
  "release-it": "^19.0.5",
@@ -681,6 +682,8 @@
681
682
 
682
683
  "@types/mdurl": ["@types/mdurl@2.0.0", "", {}, "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg=="],
683
684
 
685
+ "@types/node": ["@types/node@24.7.0", "", { "dependencies": { "undici-types": "~7.14.0" } }, "sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw=="],
686
+
684
687
  "@types/normalize-package-data": ["@types/normalize-package-data@2.4.4", "", {}, "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="],
685
688
 
686
689
  "@types/parse-path": ["@types/parse-path@7.1.0", "", { "dependencies": { "parse-path": "*" } }, "sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q=="],
@@ -2123,6 +2126,8 @@
2123
2126
 
2124
2127
  "undici": ["undici@6.21.3", "", {}, "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw=="],
2125
2128
 
2129
+ "undici-types": ["undici-types@7.14.0", "", {}, "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA=="],
2130
+
2126
2131
  "unenv": ["unenv@2.0.0-rc.21", "", { "dependencies": { "defu": "^6.1.4", "exsolve": "^1.0.7", "ohash": "^2.0.11", "pathe": "^2.0.3", "ufo": "^1.6.1" } }, "sha512-Wj7/AMtE9MRnAXa6Su3Lk0LNCfqDYgfwVjwRFVum9U7wsto1imuHqk4kTm7Jni+5A0Hn7dttL6O/zjvUvoo+8A=="],
2127
2132
 
2128
2133
  "unhead": ["unhead@2.0.19", "", { "dependencies": { "hookable": "^5.5.3" } }, "sha512-gEEjkV11Aj+rBnY6wnRfsFtF2RxKOLaPN4i+Gx3UhBxnszvV6ApSNZbGk7WKyy/lErQ6ekPN63qdFL7sa1leow=="],
package/nuxt.config.ts CHANGED
@@ -10,13 +10,13 @@ const { resolve } = createResolver(import.meta.url)
10
10
  export default defineNuxtConfig({
11
11
  modules: ['@nuxt/eslint', '@nuxt/test-utils', '@finema/core'],
12
12
  imports: {
13
- dirs: ['~/constants', '~/loaders', '~/helpers', '~/types'],
13
+ dirs: ['./constants', './loaders', './helpers', './types'],
14
14
  },
15
15
  alias: { '#layer': resolve('./') },
16
16
  devtools: {
17
17
  enabled: true,
18
18
  },
19
- css: [join(currentDir, './app/assets/main.css'), '@vuepic/vue-datepicker/dist/main.css'],
19
+ css: [join(currentDir, './app/assets/css/main.css'), '@vuepic/vue-datepicker/dist/main.css'],
20
20
  ui: {
21
21
  theme: {
22
22
  colors: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",
@@ -21,7 +21,8 @@
21
21
  "nuxt": "^4.1.3",
22
22
  "release-it": "^19.0.5",
23
23
  "typescript": "^5.9.3",
24
- "vue": "latest"
24
+ "vue": "latest",
25
+ "@types/node": "^24.7.0"
25
26
  },
26
27
  "dependencies": {
27
28
  "@finema/core": "^2.43.1"