@qasa/qds-ui 0.24.0 → 0.25.1
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 +3 -2
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/preset.css +5 -10
- package/package.json +9 -10
package/dist/preset.css
CHANGED
|
@@ -7,15 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
/* Remove all default font weights */
|
|
9
9
|
--font-weight-*: initial;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
--
|
|
13
|
-
|
|
14
|
-
/* Remove all default line heights */
|
|
15
|
-
--leading-*: initial;
|
|
16
|
-
|
|
17
|
-
/* Remove all default letter spacings */
|
|
18
|
-
--tracking-*: initial;
|
|
10
|
+
--font-weight-normal: 400;
|
|
11
|
+
--font-weight-medium: 500;
|
|
12
|
+
--font-weight-bold: 700;
|
|
19
13
|
|
|
20
14
|
--color-*: initial;
|
|
21
15
|
/* Brand colors */
|
|
@@ -151,8 +145,9 @@
|
|
|
151
145
|
button,
|
|
152
146
|
a,
|
|
153
147
|
[role='button'] {
|
|
148
|
+
@apply outline-none ring-brown ring-offset-2;
|
|
154
149
|
&:focus-visible {
|
|
155
|
-
@apply
|
|
150
|
+
@apply ring-2;
|
|
156
151
|
}
|
|
157
152
|
}
|
|
158
153
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qasa/qds-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@testing-library/jest-dom": "^6.6.3",
|
|
34
34
|
"@testing-library/react": "^16.2.0",
|
|
35
35
|
"@testing-library/user-event": "^14.6.0",
|
|
36
|
-
"@types/node": "^
|
|
36
|
+
"@types/node": "^22.13.5",
|
|
37
37
|
"@types/react": "^19.0.10",
|
|
38
38
|
"@types/react-dom": "^19.0.4",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
@@ -52,14 +52,13 @@
|
|
|
52
52
|
"jsdom": "^26.0.0",
|
|
53
53
|
"lucide-react": "^0.475.0",
|
|
54
54
|
"motion": "^12.4.7",
|
|
55
|
-
"prettier": "^3.2.5",
|
|
56
55
|
"react": "^19.0.0",
|
|
57
56
|
"react-dom": "^19.0.0",
|
|
58
57
|
"rimraf": "^3.0.2",
|
|
59
58
|
"tailwindcss": "^4.0.0",
|
|
60
59
|
"tsup": "^8.0.2",
|
|
61
60
|
"tsx": "^4.19.2",
|
|
62
|
-
"typescript": "^5.
|
|
61
|
+
"typescript": "^5.7.3",
|
|
63
62
|
"vitest": "<3",
|
|
64
63
|
"vitest-axe": "1.0.0-pre.3",
|
|
65
64
|
"vitest-matchmedia-mock": "^2.0.0"
|
|
@@ -85,13 +84,13 @@
|
|
|
85
84
|
},
|
|
86
85
|
"scripts": {
|
|
87
86
|
"dev": "tsup --watch",
|
|
88
|
-
"build": "pnpm build
|
|
89
|
-
"build
|
|
87
|
+
"build": "pnpm build-safelist && tsup",
|
|
88
|
+
"build-safelist": "tsx scripts/build-safelist/run.ts",
|
|
90
89
|
"clean": "rimraf dist",
|
|
91
|
-
"test": "vitest",
|
|
90
|
+
"test": "vitest run",
|
|
91
|
+
"test:watch": "vitest --watch",
|
|
92
92
|
"lint": "eslint .",
|
|
93
|
-
"
|
|
94
|
-
"lint:ci": "NODE_ENV=production eslint ."
|
|
95
|
-
"lint:prettier": "prettier --check ./src"
|
|
93
|
+
"typecheck": "tsc --noEmit",
|
|
94
|
+
"lint:ci": "NODE_ENV=production eslint ."
|
|
96
95
|
}
|
|
97
96
|
}
|