@aircall/ds 0.2.7 → 0.9.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/README.md +95 -11
- package/dist/globals.css +1 -1
- package/dist/index.d.ts +996 -420
- package/dist/index.js +2219 -801
- package/package.json +31 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aircall/ds",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": [
|
|
@@ -29,58 +29,54 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@aircall/numbers": "*",
|
|
31
31
|
"@aircall/react-icons": "*",
|
|
32
|
+
"@tanstack/react-table": "^8.0.0",
|
|
33
|
+
"date-fns": "^4.0.0",
|
|
32
34
|
"react": "^18.0.0 || ^19.0.0",
|
|
35
|
+
"react-day-picker": "^9.0.0",
|
|
33
36
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
34
37
|
},
|
|
38
|
+
"peerDependenciesMeta": {
|
|
39
|
+
"@tanstack/react-table": {
|
|
40
|
+
"optional": true
|
|
41
|
+
},
|
|
42
|
+
"react-day-picker": {
|
|
43
|
+
"optional": true
|
|
44
|
+
},
|
|
45
|
+
"date-fns": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
35
49
|
"dependencies": {
|
|
36
|
-
"@base-ui/react": "1.
|
|
37
|
-
"@radix-ui/react-avatar": "1.1.9",
|
|
38
|
-
"@radix-ui/react-checkbox": "1.3.3",
|
|
39
|
-
"@radix-ui/react-collapsible": "1.1.12",
|
|
40
|
-
"@radix-ui/react-dialog": "1.1.13",
|
|
41
|
-
"@radix-ui/react-dropdown-menu": "2.1.14",
|
|
42
|
-
"@radix-ui/react-label": "2.1.7",
|
|
43
|
-
"@radix-ui/react-popover": "1.1.15",
|
|
44
|
-
"@radix-ui/react-progress": "1.1.7",
|
|
45
|
-
"@radix-ui/react-radio-group": "1.3.8",
|
|
46
|
-
"@radix-ui/react-scroll-area": "1.2.10",
|
|
47
|
-
"@radix-ui/react-select": "2.2.4",
|
|
48
|
-
"@radix-ui/react-separator": "1.1.7",
|
|
49
|
-
"@radix-ui/react-slider": "1.3.5",
|
|
50
|
-
"@radix-ui/react-slot": "1.2.2",
|
|
51
|
-
"@radix-ui/react-switch": "1.2.5",
|
|
52
|
-
"@radix-ui/react-tabs": "1.1.12",
|
|
53
|
-
"@radix-ui/react-toggle": "1.1.9",
|
|
54
|
-
"@radix-ui/react-toggle-group": "1.1.10",
|
|
55
|
-
"@radix-ui/react-tooltip": "1.2.7",
|
|
50
|
+
"@base-ui/react": "1.3.0",
|
|
56
51
|
"class-variance-authority": "0.7.1",
|
|
57
52
|
"clsx": "2.1.1",
|
|
58
53
|
"cmdk": "1.1.1",
|
|
59
54
|
"embla-carousel-react": "8.6.0",
|
|
60
55
|
"emoji-picker-react": "4.4.9",
|
|
61
56
|
"input-otp": "1.4.2",
|
|
62
|
-
"lucide-react": "0.562.0",
|
|
63
57
|
"next-themes": "0.4.6",
|
|
64
58
|
"sonner": "2.0.3",
|
|
65
59
|
"tailwind-merge": "3.4.0",
|
|
66
60
|
"tw-animate-css": "1.4.0",
|
|
67
|
-
"vaul": "1.1.2",
|
|
68
61
|
"zod": "3.24.2"
|
|
69
62
|
},
|
|
70
63
|
"devDependencies": {
|
|
71
64
|
"@aircall/numbers": "*",
|
|
72
65
|
"@aircall/react-icons": "*",
|
|
73
66
|
"@aircall/tsconfig": "1.4.3",
|
|
74
|
-
"@chromatic-com/storybook": "
|
|
67
|
+
"@chromatic-com/storybook": "5.0.2",
|
|
75
68
|
"@faker-js/faker": "10.2.0",
|
|
76
69
|
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
|
77
|
-
"@storybook/addon-a11y": "10.
|
|
78
|
-
"@storybook/addon-
|
|
79
|
-
"@storybook/addon-
|
|
80
|
-
"@storybook/addon-
|
|
81
|
-
"@storybook/
|
|
70
|
+
"@storybook/addon-a11y": "10.3.3",
|
|
71
|
+
"@storybook/addon-designs": "^11.1.3",
|
|
72
|
+
"@storybook/addon-docs": "10.3.3",
|
|
73
|
+
"@storybook/addon-mcp": "0.4.2",
|
|
74
|
+
"@storybook/addon-themes": "10.3.3",
|
|
75
|
+
"@storybook/addon-vitest": "10.3.3",
|
|
76
|
+
"@storybook/react-vite": "10.3.3",
|
|
82
77
|
"@tailwindcss/cli": "4.1.18",
|
|
83
78
|
"@tailwindcss/postcss": "4.1.18",
|
|
79
|
+
"@tanstack/react-table": "8.20.6",
|
|
84
80
|
"@turbo/gen": "2.4.2",
|
|
85
81
|
"@types/node": "24",
|
|
86
82
|
"@types/react": "19",
|
|
@@ -88,12 +84,14 @@
|
|
|
88
84
|
"@vitest/browser-playwright": "4.0.17",
|
|
89
85
|
"@vitest/coverage-v8": "4.0.17",
|
|
90
86
|
"chromatic": "13.3.5",
|
|
87
|
+
"date-fns": "4.1.0",
|
|
91
88
|
"playwright": "1.57.0",
|
|
92
89
|
"react": "19.2.3",
|
|
93
90
|
"react-compiler-runtime": "1.0.0",
|
|
91
|
+
"react-day-picker": "9.14.0",
|
|
94
92
|
"react-dom": "19.2.3",
|
|
95
|
-
"storybook": "10.
|
|
96
|
-
"storybook-addon-pseudo-states": "10.
|
|
93
|
+
"storybook": "10.3.3",
|
|
94
|
+
"storybook-addon-pseudo-states": "10.3.3",
|
|
97
95
|
"tailwindcss": "4.1.18",
|
|
98
96
|
"tsdown": "0.20.0-beta.3",
|
|
99
97
|
"typescript": "5.9.3",
|
|
@@ -107,8 +105,10 @@
|
|
|
107
105
|
"build:package": "pnpm run build:js && pnpm run build:css",
|
|
108
106
|
"lint": "eslint . --max-warnings 0",
|
|
109
107
|
"shadcn:add": "pnpx shadcn@latest add",
|
|
108
|
+
"registry:build": "node scripts/build-registry.mjs",
|
|
110
109
|
"sb:dev": "storybook dev -p 6008",
|
|
111
110
|
"sb:build": "storybook build",
|
|
111
|
+
"sb:build:deploy": "pnpm run registry:build && storybook build",
|
|
112
112
|
"sb:test": "vitest --project=storybook",
|
|
113
113
|
"sb:build:chromatic": "storybook build --test --stats-json",
|
|
114
114
|
"chromatic": "chromatic --storybook-build-dir=./storybook-static"
|