@qasa/qds-ui 1.0.1 → 1.0.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.d.ts +456 -206
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +27 -28
package/package.json
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qasa/qds-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"homepage": "https://qds.qasa.com",
|
|
4
5
|
"license": "UNLICENSED",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/qasase/
|
|
8
|
+
"url": "git+https://github.com/qasase/front-end.git",
|
|
8
9
|
"directory": "packages/qds-ui"
|
|
9
10
|
},
|
|
10
|
-
"
|
|
11
|
+
"style": "./dist/preset.css",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
11
15
|
"type": "module",
|
|
12
16
|
"sideEffects": [
|
|
13
17
|
"*.css"
|
|
14
18
|
],
|
|
15
19
|
"main": "./dist/index.js",
|
|
16
20
|
"types": "./dist/index.d.ts",
|
|
17
|
-
"style": "./dist/preset.css",
|
|
18
21
|
"exports": {
|
|
19
22
|
".": {
|
|
20
23
|
"types": "./dist/index.d.ts",
|
|
@@ -22,33 +25,35 @@
|
|
|
22
25
|
},
|
|
23
26
|
"./preset.css": "./dist/preset.css"
|
|
24
27
|
},
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"class-variance-authority": "^0.7.1",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"radix-ui": "1.3.4",
|
|
32
|
+
"tailwind-merge": "^3.2.0"
|
|
33
|
+
},
|
|
28
34
|
"devDependencies": {
|
|
29
|
-
"@testing-library/jest-dom": "
|
|
30
|
-
"@testing-library/react": "
|
|
31
|
-
"@testing-library/user-event": "
|
|
32
|
-
"@types/node": "
|
|
33
|
-
"@types/react": "19.2.
|
|
35
|
+
"@testing-library/jest-dom": "6.9.1",
|
|
36
|
+
"@testing-library/react": "16.3.2",
|
|
37
|
+
"@testing-library/user-event": "14.6.1",
|
|
38
|
+
"@types/node": "24.11.0",
|
|
39
|
+
"@types/react": "19.2.14",
|
|
34
40
|
"@types/react-dom": "19.2.3",
|
|
35
|
-
"@vitejs/plugin-react": "
|
|
36
|
-
"eslint": "9.39.1",
|
|
41
|
+
"@vitejs/plugin-react": "5.1.4",
|
|
37
42
|
"globby": "^14.0.2",
|
|
38
|
-
"jsdom": "
|
|
43
|
+
"jsdom": "27.4.0",
|
|
39
44
|
"lucide-react": "^0.507.0",
|
|
40
45
|
"motion": "^12.4.7",
|
|
41
|
-
"react": "19.2.
|
|
42
|
-
"react-dom": "19.2.
|
|
46
|
+
"react": "19.2.5",
|
|
47
|
+
"react-dom": "19.2.5",
|
|
43
48
|
"rimraf": "^6.0.1",
|
|
44
|
-
"tailwindcss": "
|
|
49
|
+
"tailwindcss": "4.1.10",
|
|
45
50
|
"tsup": "^8.4.0",
|
|
46
51
|
"tsx": "^4.19.4",
|
|
47
|
-
"typescript": "
|
|
48
|
-
"vitest": "
|
|
52
|
+
"typescript": "6.0.3",
|
|
53
|
+
"vitest": "4.1.0",
|
|
49
54
|
"vitest-axe": "1.0.0-pre.5",
|
|
50
55
|
"vitest-matchmedia-mock": "^2.0.3",
|
|
51
|
-
"@repo/
|
|
56
|
+
"@repo/typescript-config": "1.0.0"
|
|
52
57
|
},
|
|
53
58
|
"peerDependencies": {
|
|
54
59
|
"motion": ">=12.0.0",
|
|
@@ -56,19 +61,13 @@
|
|
|
56
61
|
"react-dom": ">=19.0.0",
|
|
57
62
|
"tailwindcss": ">=4.0.0"
|
|
58
63
|
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"class-variance-authority": "^0.7.1",
|
|
61
|
-
"clsx": "^2.1.1",
|
|
62
|
-
"radix-ui": "1.3.4",
|
|
63
|
-
"tailwind-merge": "^3.2.0"
|
|
64
|
-
},
|
|
65
64
|
"scripts": {
|
|
66
65
|
"dev": "tsup --watch",
|
|
67
66
|
"build": "tsup",
|
|
68
67
|
"clean": "rimraf dist",
|
|
69
68
|
"test": "vitest run",
|
|
70
69
|
"test:watch": "vitest --watch",
|
|
71
|
-
"lint": "
|
|
70
|
+
"lint": "oxlint --deny-warnings",
|
|
72
71
|
"typecheck": "tsc --noEmit"
|
|
73
72
|
}
|
|
74
73
|
}
|