@agregio-solutions/design-system 1.86.4 → 1.87.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.
@@ -0,0 +1,2 @@
1
+ import { IconBaseProps } from '..';
2
+ export default function IconCaret(props: IconBaseProps): import("react/jsx-runtime").JSX.Element;
@@ -20,6 +20,7 @@ import { default as business } from './components/business';
20
20
  import { default as calendar } from './components/calendar';
21
21
  import { default as calendar_today } from './components/calendar_today';
22
22
  import { default as cancel } from './components/cancel';
23
+ import { default as caret } from './components/caret';
23
24
  import { default as chart_curves } from './components/chart_curves';
24
25
  import { default as chart_curves_rounded } from './components/chart_curves_rounded';
25
26
  import { default as chart_plus } from './components/chart_plus';
@@ -175,6 +176,7 @@ export declare const AVAILABLE_ICONS: {
175
176
  calendar_today: typeof calendar_today;
176
177
  calendar: typeof calendar;
177
178
  cancel: typeof cancel;
179
+ caret: typeof caret;
178
180
  chart_curves_rounded: typeof chart_curves_rounded;
179
181
  chart_curves: typeof chart_curves;
180
182
  chart_plus: typeof chart_plus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agregio-solutions/design-system",
3
- "version": "1.86.4",
3
+ "version": "1.87.0",
4
4
  "description": "React Component library and Storybook that is part of the Design System for Agregio Solutions",
5
5
  "type": "module",
6
6
  "module": "dist/design-system.js",
@@ -18,22 +18,20 @@
18
18
  "chromatic": "chromatic",
19
19
  "eslint": "eslint .",
20
20
  "formatters": "npm run prettier:check && npm run eslint && npm run typescript:check",
21
- "integrity": "npm run formatters && npm run build && npm run vitest:all && npm run storybook:test:integrity",
21
+ "integrity": "npm run formatters && npm run build && npm run vitest:all && npm run storybook:test",
22
22
  "jest:compatibility-check": "npm run build && jest internal/test-jest-compatibility.jest.js",
23
23
  "pre-commit": "lint-staged && npm run typescript:check && npm run vitest:only-changed && npm run storybook:test:only-changed",
24
24
  "prepare": "husky",
25
25
  "prettier:check": "prettier . --check --ignore-path .gitignore",
26
26
  "prettier:write": "prettier . --write --ignore-path .gitignore",
27
27
  "repomix": "repomix",
28
- "storybook:start": "http-server storybook-static -p 6006 --silent",
29
28
  "storybook": "storybook dev -p 6006",
30
- "storybook:test": "test-storybook --url http://localhost:6006 --browsers chromium",
31
- "storybook:test:integrity": "npm run build-storybook && npx start-server-and-test storybook:start http://localhost:6006 storybook:test",
32
- "storybook:test:only-changed": "start-server-and-test storybook 6006 'npm run storybook:test -- -- -o'",
29
+ "storybook:test": "vitest run --project storybook",
30
+ "storybook:test:only-changed": "vitest run --project storybook --changed",
33
31
  "typescript:check": "tsc --noEmit",
34
- "vitest:all": "vitest run",
35
- "vitest:only-changed": "vitest run --changed",
36
- "vitest:watch": "vitest"
32
+ "vitest:all": "vitest run --project unit",
33
+ "vitest:only-changed": "vitest run --project unit --changed",
34
+ "vitest:watch": "vitest --project unit"
37
35
  },
38
36
  "devDependencies": {
39
37
  "@emotion/react": "^11.14.0",
@@ -46,8 +44,8 @@
46
44
  "@storybook/addon-a11y": "^10.2.3",
47
45
  "@storybook/addon-docs": "^10.2.3",
48
46
  "@storybook/addon-links": "^10.2.3",
47
+ "@storybook/addon-vitest": "^10.2.13",
49
48
  "@storybook/react-vite": "^10.2.3",
50
- "@storybook/test-runner": "^0.24.2",
51
49
  "@tanstack/react-query": "^5.90.20",
52
50
  "@tanstack/react-table": "^8.21.3",
53
51
  "@types/lodash": "^4.17.23",
@@ -55,6 +53,8 @@
55
53
  "@types/react": "^19.2.10",
56
54
  "@types/react-dom": "^19.2.3",
57
55
  "@vitejs/plugin-react": "^5.1.2",
56
+ "@vitest/browser": "^4.0.18",
57
+ "@vitest/browser-playwright": "^4.0.18",
58
58
  "chromatic": "^13.3.5",
59
59
  "conventional-changelog-conventionalcommits": "^9.1.0",
60
60
  "eslint-config-prettier": "^10.1.8",
@@ -62,12 +62,12 @@
62
62
  "eslint-plugin-react": "^7.37.5",
63
63
  "eslint-plugin-react-hooks": "^7.0.1",
64
64
  "eslint-plugin-storybook": "^10.2.3",
65
- "http-server": "^14.1.1",
66
65
  "husky": "^9.1.7",
67
66
  "jest": "^30.2.0",
68
67
  "lint-staged": "^16.2.7",
69
68
  "lodash": "^4.17.23",
70
69
  "mockdate": "^3.0.5",
70
+ "playwright": "^1.58.2",
71
71
  "prettier": "^3.8.1",
72
72
  "react": "19.2.3",
73
73
  "react-dom": "19.2.3",
@@ -77,7 +77,6 @@
77
77
  "remark-gfm": "^4.0.1",
78
78
  "repomix": "^1.11.1",
79
79
  "semantic-release": "^25.0.3",
80
- "start-server-and-test": "^2.1.3",
81
80
  "storybook": "^10.2.3",
82
81
  "typescript-eslint": "^8.54.0",
83
82
  "vite-plugin-dts": "^4.5.4",