@aircall/ds 0.2.2 → 0.2.4
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/globals.css +1 -1
- package/dist/index.d.ts +1074 -105
- package/dist/index.js +2293 -958
- package/package.json +25 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aircall/ds",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": [
|
|
@@ -46,60 +46,62 @@
|
|
|
46
46
|
"@radix-ui/react-select": "2.2.4",
|
|
47
47
|
"@radix-ui/react-separator": "1.1.7",
|
|
48
48
|
"@radix-ui/react-slider": "1.3.5",
|
|
49
|
-
"@radix-ui/react-slot": "
|
|
49
|
+
"@radix-ui/react-slot": "1.2.2",
|
|
50
50
|
"@radix-ui/react-switch": "1.2.5",
|
|
51
51
|
"@radix-ui/react-tabs": "1.1.12",
|
|
52
52
|
"@radix-ui/react-toggle": "1.1.9",
|
|
53
53
|
"@radix-ui/react-toggle-group": "1.1.10",
|
|
54
54
|
"@radix-ui/react-tooltip": "1.2.7",
|
|
55
|
-
"class-variance-authority": "
|
|
56
|
-
"clsx": "
|
|
55
|
+
"class-variance-authority": "0.7.1",
|
|
56
|
+
"clsx": "2.1.1",
|
|
57
57
|
"cmdk": "1.1.1",
|
|
58
58
|
"embla-carousel-react": "8.6.0",
|
|
59
59
|
"emoji-picker-react": "4.4.9",
|
|
60
|
+
"input-otp": "1.4.2",
|
|
60
61
|
"lucide-react": "0.562.0",
|
|
61
62
|
"next-themes": "0.4.6",
|
|
62
63
|
"sonner": "2.0.3",
|
|
63
|
-
"tailwind-merge": "
|
|
64
|
-
"tw-animate-css": "
|
|
64
|
+
"tailwind-merge": "3.4.0",
|
|
65
|
+
"tw-animate-css": "1.4.0",
|
|
65
66
|
"vaul": "1.1.2",
|
|
66
|
-
"zod": "
|
|
67
|
+
"zod": "3.24.2"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
70
|
"@aircall/numbers": "*",
|
|
70
71
|
"@aircall/react-icons": "*",
|
|
71
72
|
"@aircall/tsconfig": "1.4.3",
|
|
72
|
-
"react": "^19.0.0",
|
|
73
|
-
"react-compiler-runtime": "19.1.0-rc.2",
|
|
74
|
-
"react-dom": "^19.0.0",
|
|
75
73
|
"@chromatic-com/storybook": "4.1.3",
|
|
74
|
+
"@faker-js/faker": "10.2.0",
|
|
75
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
|
76
76
|
"@storybook/addon-a11y": "10.1.5",
|
|
77
77
|
"@storybook/addon-docs": "10.1.5",
|
|
78
78
|
"@storybook/addon-themes": "10.1.5",
|
|
79
79
|
"@storybook/addon-vitest": "10.1.5",
|
|
80
80
|
"@storybook/react-vite": "10.1.5",
|
|
81
81
|
"@tailwindcss/cli": "4.1.18",
|
|
82
|
-
"@tailwindcss/postcss": "
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@types/
|
|
86
|
-
"@types/react": "
|
|
87
|
-
"@
|
|
88
|
-
"@vitest/
|
|
89
|
-
"@vitest/coverage-v8": "4.0.16",
|
|
82
|
+
"@tailwindcss/postcss": "4.1.18",
|
|
83
|
+
"@turbo/gen": "2.4.2",
|
|
84
|
+
"@types/node": "24",
|
|
85
|
+
"@types/react": "19",
|
|
86
|
+
"@types/react-dom": "19",
|
|
87
|
+
"@vitest/browser-playwright": "4.0.17",
|
|
88
|
+
"@vitest/coverage-v8": "4.0.17",
|
|
90
89
|
"chromatic": "13.3.4",
|
|
91
90
|
"playwright": "1.57.0",
|
|
91
|
+
"react": "19.2.3",
|
|
92
|
+
"react-compiler-runtime": "1.0.0",
|
|
93
|
+
"react-dom": "19.2.3",
|
|
92
94
|
"storybook": "10.1.5",
|
|
93
95
|
"storybook-addon-pseudo-states": "10.1.5",
|
|
94
|
-
"tailwindcss": "
|
|
95
|
-
"
|
|
96
|
+
"tailwindcss": "4.1.18",
|
|
97
|
+
"tsdown": "0.20.0-beta.3",
|
|
96
98
|
"typescript": "5.9.3",
|
|
97
|
-
"vite": "
|
|
98
|
-
"vitest": "4.0.
|
|
99
|
+
"vite": "7.3.1",
|
|
100
|
+
"vitest": "4.0.17"
|
|
99
101
|
},
|
|
100
102
|
"scripts": {
|
|
101
103
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
102
|
-
"build:js": "
|
|
104
|
+
"build:js": "tsdown --config ./tsdown.config.ts",
|
|
103
105
|
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./dist/globals.css --minify",
|
|
104
106
|
"build:package": "pnpm run build:js && pnpm run build:css",
|
|
105
107
|
"lint": "eslint . --max-warnings 0",
|