@finema/core 1.4.173 → 1.4.176

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.173",
3
+ "version": "1.4.176",
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 { defu } from 'defu';
3
3
 
4
4
  const name = "@finema/core";
5
- const version = "1.4.173";
5
+ const version = "1.4.176";
6
6
 
7
7
  const colorModeOptions = {
8
8
  preference: "light"
@@ -216,6 +216,12 @@ const module = defineNuxtModule({
216
216
  },
217
217
  tailwindConfig.content
218
218
  );
219
+ tailwindConfig.safelist = [
220
+ ...tailwindConfig.safelist || [],
221
+ {
222
+ pattern: /^bg-(success|info|danger|warning)-200$/
223
+ }
224
+ ];
219
225
  });
220
226
  await installModule("@nuxt/ui", {
221
227
  safelistColors: ["secondary", "success", "info", "danger", "warning"]
@@ -10,8 +10,8 @@ export interface INotification {
10
10
  closeButton?: Button;
11
11
  timeout: number;
12
12
  actions?: NotificationAction[];
13
- click?: Function;
14
- callback?: Function;
13
+ click?: (...args: any[]) => void;
14
+ callback?: (...args: any[]) => void;
15
15
  color?: NotificationColor;
16
16
  ui?: any;
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.173",
3
+ "version": "1.4.176",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "scripts": {
24
24
  "prepack": "nuxt-module-build build",
25
- "dev": "nuxi dev playground",
26
- "docs": "nuxi dev docs",
25
+ "dev": "nuxi dev playground -o",
26
+ "docs": "nuxi dev docs -o",
27
27
  "dev:build": "nuxi build playground",
28
28
  "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare docs",
29
29
  "docs:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare docs",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@nuxt/kit": "^3.12.4",
39
- "@nuxt/ui": "2.18.3",
39
+ "@nuxt/ui": "2.18.4",
40
40
  "@pinia/nuxt": "^0.5.2",
41
41
  "@vee-validate/nuxt": "^4.13.2",
42
42
  "@vee-validate/zod": "^4.13.2",
@@ -59,7 +59,7 @@
59
59
  "devDependencies": {
60
60
  "@finema/eslint-config": "^1.2.0",
61
61
  "@nuxt/devtools": "^1.3.9",
62
- "@nuxt/eslint-config": "^0.2.0",
62
+ "@nuxt/eslint-config": "^0.5.0",
63
63
  "@nuxt/module-builder": "^0.5.5",
64
64
  "@nuxt/schema": "^3.12.4",
65
65
  "@nuxt/test-utils": "^3.13.1",
@@ -81,7 +81,7 @@
81
81
  "stylelint-config-prettier-scss": "^1.0.0",
82
82
  "stylelint-config-standard-scss": "^13.0.0",
83
83
  "vitest": "^2.0.4",
84
- "vue": "^3.4.34"
84
+ "vue": "^3.4.36"
85
85
  },
86
86
  "lint-staged": {
87
87
  "*.{ts,vue,tsx,js}": "eslint --fix --cache"
@@ -89,5 +89,5 @@
89
89
  "workspaces": [
90
90
  "./*"
91
91
  ],
92
- "packageManager": "yarn@4.3.1"
92
+ "packageManager": "yarn@4.4.0"
93
93
  }