@aivenio/aquarium 2.17.0 → 2.18.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/atoms.cjs +34 -0
- package/dist/atoms.mjs +34 -0
- package/dist/src/icons/collapsePanel.d.ts +9 -0
- package/dist/src/icons/collapsePanel.js +11 -0
- package/dist/src/icons/expandPanel.d.ts +9 -0
- package/dist/src/icons/expandPanel.js +11 -0
- package/dist/src/icons/index.d.ts +2 -0
- package/dist/src/icons/index.js +3 -1
- package/dist/src/molecules/DataList/DataList.js +3 -2
- package/dist/src/molecules/DataList/DataListComponents.js +3 -2
- package/dist/src/molecules/DataList/DataListGroup.js +7 -4
- package/dist/src/molecules/DataTable/DataTable.js +6 -4
- package/dist/src/molecules/ItemList/ItemList.js +11 -7
- package/dist/src/utils/table/types.d.ts +0 -1
- package/dist/src/utils/table/types.js +1 -3
- package/dist/system.cjs +54 -6
- package/dist/system.mjs +54 -6
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/package.json +9 -11
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aivenio/aquarium",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.18.0",
|
4
4
|
"description": "Aiven Aquarium design system",
|
5
5
|
"main": "dist/system.cjs",
|
6
6
|
"module": "dist/system.mjs",
|
@@ -56,12 +56,12 @@
|
|
56
56
|
"dist/"
|
57
57
|
],
|
58
58
|
"scripts": {
|
59
|
-
"test": "npm run test:vitest
|
59
|
+
"test": "npm run test:vitest",
|
60
60
|
"test:vitest": "vitest run",
|
61
|
-
"test:jest": "jest",
|
62
61
|
"test:watch": "vitest",
|
63
|
-
"test:all": "npm run eslint && npm run test && npm run knip",
|
64
|
-
"test:update": "npm run build:generated && vitest run -u &&
|
62
|
+
"test:all": "npm run eslint && npm run test && npm run knip && npm run test-storybook",
|
63
|
+
"test:update": "npm run build:generated && vitest run -u && test-storybook -u",
|
64
|
+
"test-storybook": "test-storybook",
|
65
65
|
"eslint": "npm run eslint:prebuild && npm run eslint:check:src",
|
66
66
|
"eslint:prebuild": "npm run build:generated",
|
67
67
|
"eslint:fix": "npm run eslint:check:src -- --fix",
|
@@ -101,9 +101,9 @@
|
|
101
101
|
"@mdx-js/mdx": "^3.1.0",
|
102
102
|
"@storybook/addon-a11y": "^7.6.20",
|
103
103
|
"@storybook/addon-essentials": "^7.6.20",
|
104
|
+
"@storybook/addon-interactions": "^7.6.20",
|
104
105
|
"@storybook/addon-links": "^7.6.20",
|
105
106
|
"@storybook/addon-mdx-gfm": "^7.6.20",
|
106
|
-
"@storybook/addon-storyshots": "^7.6.20",
|
107
107
|
"@storybook/addon-styling-webpack": "^1.0.1",
|
108
108
|
"@storybook/addon-toolbars": "^7.6.20",
|
109
109
|
"@storybook/addons": "^7.6.20",
|
@@ -111,6 +111,8 @@
|
|
111
111
|
"@storybook/preset-typescript": "^3.0.0",
|
112
112
|
"@storybook/react": "^7.6.20",
|
113
113
|
"@storybook/react-webpack5": "^7.6.20",
|
114
|
+
"@storybook/test": "^7.6.20",
|
115
|
+
"@storybook/test-runner": "~0.16.0",
|
114
116
|
"@storybook/theming": "^7.6.20",
|
115
117
|
"@testing-library/dom": "^9.3.4",
|
116
118
|
"@testing-library/jest-dom": "^6.6.3",
|
@@ -119,7 +121,6 @@
|
|
119
121
|
"@tryfabric/mack": "^1.2.1",
|
120
122
|
"@types/common-tags": "^1.8.4",
|
121
123
|
"@types/jest": "^29.5.14",
|
122
|
-
"@types/jest-axe": "^3.5.9",
|
123
124
|
"@types/lodash-es": "^4.17.12",
|
124
125
|
"@types/node": "^22.13.10",
|
125
126
|
"@types/react": "^18.2.25",
|
@@ -127,6 +128,7 @@
|
|
127
128
|
"@vitejs/plugin-react": "^4.3.4",
|
128
129
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
129
130
|
"arg": "^5.0.2",
|
131
|
+
"axe-playwright": "^2.0.3",
|
130
132
|
"common-tags": "^1.8.2",
|
131
133
|
"css-loader": "^5.2.7",
|
132
134
|
"css-minimizer-webpack-plugin": "^1.3.0",
|
@@ -137,10 +139,6 @@
|
|
137
139
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
138
140
|
"eslint-plugin-react": "^7.37.4",
|
139
141
|
"eslint-plugin-storybook": "^0.11.4",
|
140
|
-
"jest": "^29.7.0",
|
141
|
-
"jest-axe": "^8.0.0",
|
142
|
-
"jest-environment-jsdom": "^29.7.0",
|
143
|
-
"jest-fail-on-console": "^3.3.1",
|
144
142
|
"knip": "^5.46.0",
|
145
143
|
"lodash-es": "^4.17.21",
|
146
144
|
"log-watcher-webpack-plugin": "^1.0.4",
|