@finema/core 1.4.16 → 1.4.18

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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.16",
3
+ "version": "1.4.18",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addPlugin, addComponen
2
2
  import 'lodash-es';
3
3
 
4
4
  const name = "@finema/core";
5
- const version = "1.4.16";
5
+ const version = "1.4.18";
6
6
 
7
7
  const colors = {
8
8
  black: "#20243E",
@@ -1 +1,2 @@
1
+ import { type IListLoaderOptions, type IUseListLoader } from '../types/loaderTypes';
1
2
  export declare const useListLoader: <T = any, O = Record<string, any>>(loaderOptions: IListLoaderOptions<T, O>) => IUseListLoader<T, O>;
@@ -1 +1,2 @@
1
+ import { type IObjectLoaderOptions, type IUseObjectLoader } from '../types/loaderTypes';
1
2
  export declare const useObjectLoader: <T = any, B = any, O = Record<string, any>>(loaderOptions: IObjectLoaderOptions<T, B, O>) => IUseObjectLoader<T, B, O>;
@@ -1,3 +1,4 @@
1
+ import { type IPageLoaderOptions, type IUsePageLoader } from '../types/loaderTypes';
1
2
  export declare const initPageOptions: (options: {
2
3
  limit: number;
3
4
  primary: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.16",
3
+ "version": "1.4.18",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -25,8 +25,8 @@
25
25
  "dev": "nuxi dev playground",
26
26
  "dev:build": "nuxi build playground",
27
27
  "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
28
- "lint": "eslint .",
29
- "lint:fix": "eslint . --fix",
28
+ "lint": "eslint . --cache",
29
+ "lint:fix": "eslint . --fix --cache",
30
30
  "test": "vitest run",
31
31
  "test:watch": "vitest watch",
32
32
  "release": "release-it --ci",
@@ -34,21 +34,21 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@nuxt/kit": "^3.7.4",
37
- "@nuxt/ui": "^2.11.1",
37
+ "@nuxt/ui": "^2.12.0",
38
38
  "@pinia/nuxt": "^0.5.1",
39
- "@vee-validate/nuxt": "^4.12.3",
40
- "@vee-validate/zod": "^4.12.3",
41
- "@vuepic/vue-datepicker": "^7.4.0",
42
- "axios": "^1.6.2",
43
- "date-fns": "^3.0.6",
44
- "i18next": "^23.7.11",
39
+ "@vee-validate/nuxt": "^4.12.4",
40
+ "@vee-validate/zod": "^4.12.4",
41
+ "@vuepic/vue-datepicker": "^7.4.1",
42
+ "axios": "^1.6.5",
43
+ "date-fns": "^3.2.0",
44
+ "i18next": "^23.7.16",
45
45
  "lodash-es": "^4.17.21",
46
46
  "nuxt-security": "^1.0.0",
47
47
  "pinia": "^2.1.7",
48
48
  "qrcode.vue": "^3.4.1",
49
49
  "url-join": "^5.0.0",
50
50
  "zod": "^3.22.4",
51
- "zod-i18n-map": "^2.23.0"
51
+ "zod-i18n-map": "^2.25.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@finema/eslint-config": "^1.2.0",
@@ -59,25 +59,25 @@
59
59
  "@nuxt/test-utils": "^3.9.0",
60
60
  "@release-it/conventional-changelog": "^8.0.1",
61
61
  "@types/lodash-es": "^4.17.12",
62
- "@types/node": "^18.18.1",
62
+ "@types/node": "^20.10.8",
63
63
  "@vue/test-utils": "^2.4.3",
64
64
  "changelogen": "^0.5.5",
65
65
  "eslint": "^8.56.0",
66
- "happy-dom": "^12.10.3",
66
+ "happy-dom": "^13.0.0",
67
67
  "husky": "^8.0.3",
68
68
  "lint-staged": "^15.2.0",
69
- "nuxt": "^3.8.2",
69
+ "nuxt": "^3.9.1",
70
70
  "playwright-core": "^1.40.1",
71
71
  "prettier": "^3.1.1",
72
72
  "release-it": "^17.0.1",
73
73
  "sass": "^1.69.5",
74
- "stylelint": "^16.0.2",
74
+ "stylelint": "^16.1.0",
75
75
  "stylelint-config-prettier-scss": "^1.0.0",
76
- "stylelint-config-standard-scss": "^12.0.0",
77
- "vitest": "^1.1.0"
76
+ "stylelint-config-standard-scss": "^13.0.0",
77
+ "vitest": "^1.1.3"
78
78
  },
79
79
  "lint-staged": {
80
- "*.{ts,vue,tsx,js}": "eslint --fix",
80
+ "*.{ts,vue,tsx,js}": "eslint --fix --cache",
81
81
  "*.{html,json}": "prettier --write"
82
82
  }
83
83
  }