@aivenio/aquarium 2.11.1 → 2.12.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 +9 -1
- package/dist/atoms.mjs +9 -1
- package/dist/src/atoms/Select/Select.js +2 -2
- package/dist/src/molecules/Combobox/Combobox.d.ts +6 -1
- package/dist/src/molecules/Combobox/Combobox.js +3 -3
- package/dist/src/molecules/DatePicker/DatePicker.js +2 -2
- package/dist/src/molecules/DatePicker/DateRangePicker.js +4 -4
- package/dist/src/molecules/DropdownMenu/DropdownMenu.js +2 -2
- package/dist/src/molecules/Navigation/Navigation.d.ts +2 -1
- package/dist/src/molecules/Navigation/Navigation.js +3 -3
- package/dist/src/molecules/Tooltip/Tooltip.js +1 -1
- package/dist/system.cjs +21 -11
- package/dist/system.mjs +21 -11
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aivenio/aquarium",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.12.0",
|
4
4
|
"description": "Aiven Aquarium design system",
|
5
5
|
"main": "dist/system.cjs",
|
6
6
|
"module": "dist/system.mjs",
|
@@ -56,7 +56,9 @@
|
|
56
56
|
"dist/"
|
57
57
|
],
|
58
58
|
"scripts": {
|
59
|
-
"test": "
|
59
|
+
"test": "npm run test:vitest && npm run test:jest",
|
60
|
+
"test:vitest": "vitest run",
|
61
|
+
"test:jest": "jest",
|
60
62
|
"test:watch": "vitest",
|
61
63
|
"test:all": "npm run eslint && npm run test && npm run knip",
|
62
64
|
"test:update": "npm run build:generated && vitest run -u && jest --updateSnapshot",
|
@@ -179,8 +181,8 @@
|
|
179
181
|
"classnames": "^2.5.1",
|
180
182
|
"downshift": "^8.2.3",
|
181
183
|
"match-sorter": "^6.3.4",
|
182
|
-
"react-aria": "^3.
|
183
|
-
"react-aria-components": "^1.
|
184
|
+
"react-aria": "^3.37.0",
|
185
|
+
"react-aria-components": "^1.6.0",
|
184
186
|
"react-stately": "^3.31.1",
|
185
187
|
"recharts": "^2.15.1",
|
186
188
|
"tailwind-variants": "^0.2.1"
|