@postxl/ui-components 1.4.1 → 1.5.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/index.d.ts +652 -443
- package/dist/index.js +1818 -546
- package/dist/index.js.map +1 -1
- package/package.json +15 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postxl/ui-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "PostXL UI component library - Radix UI primitives with Tailwind CSS styling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"date-fns": "4.1.0",
|
|
83
83
|
"embla-carousel-react": "8.5.1",
|
|
84
84
|
"lucide-react": "0.554.0",
|
|
85
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
85
86
|
"react-day-picker": "9.11.1",
|
|
86
87
|
"react-resizable-panels": "3.0.6",
|
|
87
88
|
"sonner": "2.0.7",
|
|
@@ -98,6 +99,7 @@
|
|
|
98
99
|
"@chromatic-com/storybook": "4.1.2",
|
|
99
100
|
"@storybook/addon-docs": "10.0.0",
|
|
100
101
|
"@storybook/addon-onboarding": "10.0.0",
|
|
102
|
+
"@storybook/addon-vitest": "10.0.0",
|
|
101
103
|
"@storybook/react": "10.0.0",
|
|
102
104
|
"@storybook/react-vite": "10.0.0",
|
|
103
105
|
"@tailwindcss/vite": "4.1.16",
|
|
@@ -107,8 +109,11 @@
|
|
|
107
109
|
"@types/react": "19.1.10",
|
|
108
110
|
"@types/react-dom": "19.1.7",
|
|
109
111
|
"@vitejs/plugin-react": "5.1.0",
|
|
110
|
-
"@vitest/
|
|
112
|
+
"@vitest/browser": "4.0.16",
|
|
113
|
+
"@vitest/browser-playwright": "4.0.16",
|
|
114
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
111
115
|
"jsdom": "27.3.0",
|
|
116
|
+
"playwright": "1.56.1",
|
|
112
117
|
"react": "19.1.1",
|
|
113
118
|
"react-dom": "19.1.1",
|
|
114
119
|
"storybook": "10.0.0",
|
|
@@ -116,7 +121,7 @@
|
|
|
116
121
|
"tsdown": "0.11.4",
|
|
117
122
|
"typescript": "~5.8.3",
|
|
118
123
|
"vite": "7.1.12",
|
|
119
|
-
"vitest": "
|
|
124
|
+
"vitest": "4.0.16"
|
|
120
125
|
},
|
|
121
126
|
"scripts": {
|
|
122
127
|
"build": "tsdown",
|
|
@@ -125,9 +130,15 @@
|
|
|
125
130
|
"prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
|
|
126
131
|
"test": "vitest run",
|
|
127
132
|
"test:unit": "vitest run --project=unit",
|
|
133
|
+
"test:jest": "vitest run --project=unit",
|
|
128
134
|
"test:storybook": "vitest run --project=storybook",
|
|
129
|
-
"test:
|
|
135
|
+
"test:visual": "vitest run --project=visual",
|
|
136
|
+
"test:visual:update": "vitest run --project=visual --update",
|
|
137
|
+
"test:coverage": "vitest run --coverage --exclude \"src/__visual_tests__/**\"",
|
|
138
|
+
"test:coverage:unit": "vitest run --project=unit --coverage",
|
|
130
139
|
"test:types": "tsc --noEmit",
|
|
140
|
+
"ci:setup": "playwright install --with-deps chromium",
|
|
141
|
+
"playwright:install": "playwright install --with-deps chromium",
|
|
131
142
|
"storybook:start": "storybook dev -p 6007",
|
|
132
143
|
"storybook:build": "storybook build"
|
|
133
144
|
}
|