@aircall/ds 0.2.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/README.md +297 -0
- package/dist/globals.css +2 -0
- package/dist/index.d.ts +111 -0
- package/dist/index.js +976 -0
- package/package.json +116 -0
- package/src/fonts/FellixAircall-Bold.woff2 +0 -0
- package/src/fonts/FellixAircall-Light.woff2 +0 -0
- package/src/fonts/FellixAircall-Medium.woff2 +0 -0
- package/src/fonts/FellixAircall-Regular.woff2 +0 -0
- package/src/fonts/FellixAircall-SemiBold.woff2 +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aircall/ds",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.css"
|
|
8
|
+
],
|
|
9
|
+
"description": "Aircall Design System - Modern UI Component Library",
|
|
10
|
+
"author": "Aircall",
|
|
11
|
+
"license": "ISC",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"src/fonts",
|
|
18
|
+
"README.md",
|
|
19
|
+
"package.json"
|
|
20
|
+
],
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"default": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./globals.css": "./dist/globals.css",
|
|
27
|
+
"./fonts/*": "./src/fonts/*.woff2"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@aircall/numbers": "*",
|
|
31
|
+
"@aircall/react-icons": "*",
|
|
32
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
33
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@radix-ui/react-avatar": "1.1.9",
|
|
37
|
+
"@radix-ui/react-checkbox": "1.3.3",
|
|
38
|
+
"@radix-ui/react-collapsible": "1.1.12",
|
|
39
|
+
"@radix-ui/react-dialog": "1.1.13",
|
|
40
|
+
"@radix-ui/react-dropdown-menu": "2.1.14",
|
|
41
|
+
"@radix-ui/react-label": "2.1.7",
|
|
42
|
+
"@radix-ui/react-popover": "1.1.15",
|
|
43
|
+
"@radix-ui/react-progress": "1.1.7",
|
|
44
|
+
"@radix-ui/react-radio-group": "1.3.8",
|
|
45
|
+
"@radix-ui/react-scroll-area": "1.2.10",
|
|
46
|
+
"@radix-ui/react-select": "2.2.4",
|
|
47
|
+
"@radix-ui/react-separator": "1.1.7",
|
|
48
|
+
"@radix-ui/react-slider": "1.3.5",
|
|
49
|
+
"@radix-ui/react-slot": "^1.2.2",
|
|
50
|
+
"@radix-ui/react-switch": "1.2.5",
|
|
51
|
+
"@radix-ui/react-tabs": "1.1.12",
|
|
52
|
+
"@radix-ui/react-toggle": "1.1.9",
|
|
53
|
+
"@radix-ui/react-toggle-group": "1.1.10",
|
|
54
|
+
"@radix-ui/react-tooltip": "1.2.7",
|
|
55
|
+
"class-variance-authority": "^0.7.1",
|
|
56
|
+
"clsx": "^2.1.1",
|
|
57
|
+
"cmdk": "1.1.1",
|
|
58
|
+
"embla-carousel-react": "8.6.0",
|
|
59
|
+
"emoji-picker-react": "4.4.9",
|
|
60
|
+
"lucide-react": "0.562.0",
|
|
61
|
+
"next-themes": "0.4.6",
|
|
62
|
+
"sonner": "2.0.3",
|
|
63
|
+
"tailwind-merge": "^3.3.0",
|
|
64
|
+
"tw-animate-css": "^1.2.4",
|
|
65
|
+
"vaul": "1.1.2",
|
|
66
|
+
"zod": "^3.24.2"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@aircall/numbers": "*",
|
|
70
|
+
"@aircall/react-icons": "*",
|
|
71
|
+
"@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
|
+
"@chromatic-com/storybook": "4.1.3",
|
|
76
|
+
"@storybook/addon-a11y": "10.1.5",
|
|
77
|
+
"@storybook/addon-docs": "10.1.5",
|
|
78
|
+
"@storybook/addon-themes": "10.1.5",
|
|
79
|
+
"@storybook/addon-vitest": "10.1.5",
|
|
80
|
+
"@storybook/react-vite": "10.1.5",
|
|
81
|
+
"@tailwindcss/cli": "4.1.18",
|
|
82
|
+
"@tailwindcss/postcss": "^4.0.8",
|
|
83
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
|
84
|
+
"@turbo/gen": "^2.4.2",
|
|
85
|
+
"@types/node": "^24",
|
|
86
|
+
"@types/react": "^19",
|
|
87
|
+
"@types/react-dom": "^19",
|
|
88
|
+
"@vitest/browser-playwright": "4.0.16",
|
|
89
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
90
|
+
"chromatic": "13.3.4",
|
|
91
|
+
"playwright": "1.57.0",
|
|
92
|
+
"storybook": "10.1.5",
|
|
93
|
+
"storybook-addon-pseudo-states": "10.1.5",
|
|
94
|
+
"tailwindcss": "^4.0.8",
|
|
95
|
+
"tsup": "7.1.0",
|
|
96
|
+
"typescript": "5.9.3",
|
|
97
|
+
"vite": "5.4.2",
|
|
98
|
+
"vitest": "4.0.16"
|
|
99
|
+
},
|
|
100
|
+
"scripts": {
|
|
101
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
102
|
+
"build:js": "tsup --config ./tsup.config.ts",
|
|
103
|
+
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./dist/globals.css --minify",
|
|
104
|
+
"build:package": "pnpm run build:js && pnpm run build:css",
|
|
105
|
+
"lint": "eslint . --max-warnings 0",
|
|
106
|
+
"shadcn:add": "pnpx shadcn@latest add",
|
|
107
|
+
"sb:dev": "storybook dev -p 6008",
|
|
108
|
+
"sb:build": "storybook build",
|
|
109
|
+
"sb:test": "vitest --project=storybook",
|
|
110
|
+
"sb:build:chromatic": "storybook build --test --stats-json",
|
|
111
|
+
"chromatic": "chromatic --storybook-build-dir=./storybook-static"
|
|
112
|
+
},
|
|
113
|
+
"types": "./dist/index.d.ts",
|
|
114
|
+
"module": "./dist/index.js",
|
|
115
|
+
"main": "./dist/index.js"
|
|
116
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|