@postxl/ui-components 1.4.0 → 1.4.2
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/index.js +28 -16
- package/dist/index.js.map +1 -1
- package/package.json +14 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postxl/ui-components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "PostXL UI component library - Radix UI primitives with Tailwind CSS styling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -98,6 +98,7 @@
|
|
|
98
98
|
"@chromatic-com/storybook": "4.1.2",
|
|
99
99
|
"@storybook/addon-docs": "10.0.0",
|
|
100
100
|
"@storybook/addon-onboarding": "10.0.0",
|
|
101
|
+
"@storybook/addon-vitest": "10.0.0",
|
|
101
102
|
"@storybook/react": "10.0.0",
|
|
102
103
|
"@storybook/react-vite": "10.0.0",
|
|
103
104
|
"@tailwindcss/vite": "4.1.16",
|
|
@@ -107,8 +108,11 @@
|
|
|
107
108
|
"@types/react": "19.1.10",
|
|
108
109
|
"@types/react-dom": "19.1.7",
|
|
109
110
|
"@vitejs/plugin-react": "5.1.0",
|
|
110
|
-
"@vitest/
|
|
111
|
+
"@vitest/browser": "4.0.16",
|
|
112
|
+
"@vitest/browser-playwright": "4.0.16",
|
|
113
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
111
114
|
"jsdom": "27.3.0",
|
|
115
|
+
"playwright": "1.56.1",
|
|
112
116
|
"react": "19.1.1",
|
|
113
117
|
"react-dom": "19.1.1",
|
|
114
118
|
"storybook": "10.0.0",
|
|
@@ -116,7 +120,7 @@
|
|
|
116
120
|
"tsdown": "0.11.4",
|
|
117
121
|
"typescript": "~5.8.3",
|
|
118
122
|
"vite": "7.1.12",
|
|
119
|
-
"vitest": "
|
|
123
|
+
"vitest": "4.0.16"
|
|
120
124
|
},
|
|
121
125
|
"scripts": {
|
|
122
126
|
"build": "tsdown",
|
|
@@ -125,9 +129,15 @@
|
|
|
125
129
|
"prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
|
|
126
130
|
"test": "vitest run",
|
|
127
131
|
"test:unit": "vitest run --project=unit",
|
|
132
|
+
"test:jest": "vitest run --project=unit",
|
|
128
133
|
"test:storybook": "vitest run --project=storybook",
|
|
129
|
-
"test:
|
|
134
|
+
"test:visual": "vitest run --project=visual",
|
|
135
|
+
"test:visual:update": "vitest run --project=visual --update",
|
|
136
|
+
"test:coverage": "vitest run --coverage --exclude \"src/__visual_tests__/**\"",
|
|
137
|
+
"test:coverage:unit": "vitest run --project=unit --coverage",
|
|
130
138
|
"test:types": "tsc --noEmit",
|
|
139
|
+
"ci:setup": "playwright install --with-deps chromium",
|
|
140
|
+
"playwright:install": "playwright install --with-deps chromium",
|
|
131
141
|
"storybook:start": "storybook dev -p 6007",
|
|
132
142
|
"storybook:build": "storybook build"
|
|
133
143
|
}
|