@feedmepos/mf-common 1.26.17 → 1.27.1-alpha-1

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.
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Deep equality comparison that handles property order, functions, undefined values, circular references,
3
+ * and other edge cases that JSON.stringify cannot handle reliably.
4
+ *
5
+ * @param value - First value to compare
6
+ * @param other - Second value to compare
7
+ * @returns true if values are deeply equal
8
+ */
9
+ export declare function isEqual(value: any, other: any): boolean;
10
+ //# sourceMappingURL=isEqual.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isEqual.d.ts","sourceRoot":"","sources":["../../../src/utils/isEqual.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,GAAG,OAAO,CAEvD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-common",
3
- "version": "1.26.17",
3
+ "version": "1.27.1-alpha-1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -21,7 +21,7 @@
21
21
  "@feedmepos/core": "2.14.36",
22
22
  "@feedmepos/menu": "1.7.7",
23
23
  "@feedmepos/i18n": "0.3.1",
24
- "@feedmepos/custom-attributes": "0.0.0-rc.6",
24
+ "@feedmepos/custom-attributes": "0.0.1-rc.3",
25
25
  "@feedmepos/ui-library": "1.7.0",
26
26
  "@feedmepos/vue-client-monitoring": "0.1.0-beta.6",
27
27
  "@vue/devtools-api": "^6.5.0",
@@ -57,6 +57,7 @@
57
57
  "vite": "^4.4.9",
58
58
  "vite-plugin-dts": "^3.6.0",
59
59
  "vite-plugin-externalize-dependencies": "^0.10.0",
60
+ "vitest": "^1.6.0",
60
61
  "vue-tsc": "^1.8.11"
61
62
  },
62
63
  "scripts": {
@@ -70,6 +71,8 @@
70
71
  "deploy": "pnpm publish --tag latest --no-git-checks .",
71
72
  "build-only": "pnpm build:mf && pnpm build:dts && pnpm build:vitePreset && pnpm copy-common-locales",
72
73
  "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
74
+ "test": "vitest",
75
+ "test:run": "vitest run",
73
76
  "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
74
77
  "format": "prettier --write src/"
75
78
  }