@aleph-alpha/ui-library 1.0.0 → 1.1.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@aleph-alpha/ui-library",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/system/lib.js",
@@ -25,7 +25,7 @@
25
25
  "scripts-info": {
26
26
  "test": "Runs unit tests once",
27
27
  "test:watch": "Runs unit tests in watch mode during development",
28
- "test:storybook": "Runs Storybook component tests using Vitest browser mode",
28
+ "test:storybook": "Builds Storybook and runs axe tests via test-runner",
29
29
  "test:all": "Runs all tests (unit + storybook)",
30
30
  "storybook": "Starts interactive Storybook development server on port 6006 for local component development",
31
31
  "test:e2e": "Runs end-to-end integration tests with Playwright"
@@ -46,6 +46,9 @@
46
46
  "@unocss/vite": "^66.5.10",
47
47
  "@vitest/browser": "^3.0.0",
48
48
  "eslint-plugin-jsdoc": "^61.0.0",
49
+ "concurrently": "9.2.1",
50
+ "http-server": "14.1.1",
51
+ "wait-on": "9.0.3",
49
52
  "eslint-plugin-vuejs-accessibility": "^2.4.1",
50
53
  "playwright": "^1.57.0",
51
54
  "postcss": "8.5.6",
@@ -67,6 +70,7 @@
67
70
  },
68
71
  "dependencies": {
69
72
  "@floating-ui/vue": "1.1.9",
73
+ "@tanstack/vue-table": "^8.21.3",
70
74
  "@vueuse/core": "14.1.0",
71
75
  "class-variance-authority": "^0.7.1",
72
76
  "clsx": "^2.1.1",
@@ -80,10 +84,13 @@
80
84
  "build": "node scripts/prepare-build.cjs && vite build",
81
85
  "ci": "pnpm install --immutable --immutable-cache --check-cache",
82
86
  "dev": "vite build --watch",
87
+ "format:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx,vue,json,css,scss}'",
88
+ "format:fix": "prettier --write 'src/**/*.{ts,tsx,js,jsx,vue,json,css,scss}'",
83
89
  "lint": "eslint 'src/**/*.{js,vue,ts}' --cache",
84
90
  "test": "vitest --run --project=unit",
85
91
  "test:watch": "vitest --project=unit",
86
- "test:storybook": "vitest --run --project=storybook",
92
+ "test:storybook": "pnpm concurrently -k --ks SIGKILL -s command-test -n \"storybook,test\" \"pnpm http-server ../../dist/storybook/ui-library --port 4400 --silent\" \"wait-on tcp:4400 && test-storybook --url http://127.0.0.1:4400\"",
93
+ "test:storybook:local": "pnpm build-storybook && pnpm concurrently -k --ks SIGKILL -s command-test -n \"storybook,test\" \"pnpm http-server storybook-static --port 4400 --silent\" \"wait-on tcp:4400 && test-storybook --url http://127.0.0.1:4400\"",
87
94
  "test:all": "vitest --run",
88
95
  "storybook": "storybook dev -p 6006",
89
96
  "build-storybook": "storybook build",