@ssa-ui-kit/widgets 3.19.0 → 3.20.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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@ssa-ui-kit/widgets",
3
- "version": "3.19.0",
3
+ "version": "3.20.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
7
7
  ".": {
8
8
  "types": "./dist/index.d.ts",
9
- "import": "./dist/index.js",
9
+ "import": "./dist/index.mjs",
10
10
  "require": "./dist/index.js",
11
11
  "default": "./dist/index.js"
12
12
  }
@@ -34,9 +34,9 @@
34
34
  "@floating-ui/react": "0.27.4",
35
35
  "dotenv": "16.0.3",
36
36
  "loose-envify": "1.4.0",
37
- "@ssa-ui-kit/hooks": "^3.19.0",
38
- "@ssa-ui-kit/utils": "^3.19.0",
39
- "@ssa-ui-kit/core": "^3.19.0"
37
+ "@ssa-ui-kit/core": "^3.20.0",
38
+ "@ssa-ui-kit/hooks": "^3.20.0",
39
+ "@ssa-ui-kit/utils": "^3.20.0"
40
40
  },
41
41
  "browserslist": [
42
42
  ">0.1%",
@@ -64,8 +64,8 @@
64
64
  "@nivo/line": "^0.99.0",
65
65
  "@nivo/pie": "^0.99.0",
66
66
  "@nivo/scales": "^0.99.0",
67
- "react": "19.x",
68
- "react-dom": "19.x",
67
+ "react": ">=19",
68
+ "react-dom": ">=19",
69
69
  "react-hook-form": "^7.46.1",
70
70
  "react-router-dom": "6.x || 7.x"
71
71
  },
@@ -74,9 +74,11 @@
74
74
  "optional": true
75
75
  }
76
76
  },
77
+ "module": "dist/index.mjs",
77
78
  "scripts": {
79
+ "clean": "node ../../scripts/clean.mjs",
78
80
  "test": "jest -i --no-cache",
79
- "build": "webpack --mode=production --node-env=production && tsc --build ./tsconfig.build.json && resolve-tspaths -p ./tsconfig.build.json",
81
+ "build": "node ../../scripts/clean.mjs && webpack --mode=production --node-env=production && tsc --build ./tsconfig.build.json && resolve-tspaths -p ./tsconfig.build.json",
80
82
  "sb:dev": "env storybook dev -p 6007",
81
83
  "sb:build": "env storybook build",
82
84
  "test:e2e": "pnpm exec playwright test --project=chromium",