@credithub/harlan-components 1.128.0 → 1.129.0
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/components/chart/hooks/useChartData.js +5 -1
- package/dist/components/chart/utils/dataProcessing.js +0 -7
- package/dist/components/protestos/protestosSp.js +1 -3
- package/dist/components/scoreSerasa/scoreSerasa.js +15 -6
- package/dist/components/scoreSerasa/scoreSerasaProbUtils.d.ts +24 -0
- package/dist/components/scoreSerasa/scoreSerasaProbUtils.js +66 -0
- package/dist/contexts/createDataContext.js +3 -3
- package/lib/cjs/index.js +89 -18
- package/lib/esm/index.js +90 -19
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@credithub/harlan-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.129.0",
|
|
4
4
|
"description": "Provide a set of web components to be used in Harlan and other projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"harlan",
|
|
@@ -27,8 +27,9 @@
|
|
|
27
27
|
"dev": "vite",
|
|
28
28
|
"serve:dev": "vite preview",
|
|
29
29
|
"test:ci": "npm run build",
|
|
30
|
+
"test:unit": "vitest run",
|
|
30
31
|
"prepare": "husky",
|
|
31
|
-
"test": "npm run test:ci"
|
|
32
|
+
"test": "npm run test:unit && npm run test:ci"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"@credithub/webservice": "^1.9.9",
|
|
@@ -105,7 +106,8 @@
|
|
|
105
106
|
"tsc-alias": "^1.8.8",
|
|
106
107
|
"typescript": "^5.2.2",
|
|
107
108
|
"vite": "^5.4.0",
|
|
108
|
-
"vite-plugin-svgr": "^4.2.0"
|
|
109
|
+
"vite-plugin-svgr": "^4.2.0",
|
|
110
|
+
"vitest": "^3.2.0"
|
|
109
111
|
},
|
|
110
112
|
"peerDependencies": {
|
|
111
113
|
"react": "^18.3.1 || ^19.0.0",
|