@qasa/qds-ui 0.27.0 → 0.27.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/preset.css CHANGED
@@ -1,11 +1,13 @@
1
+ /* When defining theme variables that reference other variables, we need to use the `inline` option */
1
2
  @theme inline {
2
- /* Remove all default font families */
3
3
  --font-*: initial;
4
4
  --font-sans: var(--font-family-sans), Helvetica, -apple-system, Arial, sans-serif;
5
5
  --font-semi-mono: var(--font-family-semi-mono), Helvetica, -apple-system, Arial, sans-serif;
6
+ }
7
+
8
+ @theme {
6
9
  --font-semi-mono--font-feature-settings: 'ss05';
7
10
 
8
- /* Remove all default font weights */
9
11
  --font-weight-*: initial;
10
12
  --font-weight-normal: 400;
11
13
  --font-weight-medium: 500;
@@ -35,7 +37,7 @@
35
37
  --color-gray-30: #e5e5df;
36
38
  --color-gray-40: #d6d6cd;
37
39
  --color-gray-50: #a3a396;
38
- --color-gray-60: #78786c;
40
+ --color-gray-60: #76766a;
39
41
  --color-gray-70: #545448;
40
42
  --color-gray-80: #424236;
41
43
  --color-gray-90: #26261d;
@@ -76,7 +78,7 @@
76
78
  --color-yellow-80: #c58b00;
77
79
  --color-yellow-90: #9b6d00;
78
80
 
79
- /*
81
+ /*
80
82
  Based on Tailwind V3's default spacing scale,
81
83
  but with some unnecessary values removed (e.g. 10px)
82
84
  */
@@ -119,17 +121,21 @@
119
121
  --radius-lg: 24px;
120
122
  --radius-xl: 32px;
121
123
  --radius-2xl: 48px;
122
- /* Full rounding is included by default */
124
+ --radius-full: 9999px;
123
125
 
124
126
  --shadow-*: initial;
125
- --shadow-sm: 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
127
+ --shadow-sm:
128
+ 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
126
129
  0px 3.9px 9.4px 0px rgba(0, 0, 0, 0.035);
127
- --shadow-md: 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
130
+ --shadow-md:
131
+ 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
128
132
  0px 3.9px 9.4px 0px rgba(0, 0, 0, 0.035), 0px 7px 16.8px 0px rgba(0, 0, 0, 0.0417);
129
- --shadow-lg: 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
133
+ --shadow-lg:
134
+ 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
130
135
  0px 3.9px 9.4px 0px rgba(0, 0, 0, 0.035), 0px 7px 16.8px 0px rgba(0, 0, 0, 0.0417),
131
136
  0px 13px 31.3px 0px rgba(0, 0, 0, 0.0503);
132
- --shadow-xl: 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
137
+ --shadow-xl:
138
+ 0px 0.9px 2.1px 0px rgba(0, 0, 0, 0.0197), 0px 2.1px 5px 0px rgba(0, 0, 0, 0.0283),
133
139
  0px 3.9px 9.4px 0px rgba(0, 0, 0, 0.035), 0px 7px 16.8px 0px rgba(0, 0, 0, 0.0417),
134
140
  0px 13px 31.3px 0px rgba(0, 0, 0, 0.0503), 0px 31px 75px 0px rgba(0, 0, 0, 0.07);
135
141
  }
@@ -231,13 +237,13 @@
231
237
  font-synthesis: none;
232
238
  }
233
239
  body {
234
- @apply font-sans text-base text-brown;
240
+ @apply text-brown font-sans text-base;
235
241
  }
236
242
 
237
243
  button,
238
244
  a,
239
245
  [role='button'] {
240
- @apply outline-none ring-brown ring-offset-2;
246
+ @apply ring-brown outline-none ring-offset-2;
241
247
  &:focus-visible {
242
248
  @apply ring-2;
243
249
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qasa/qds-ui",
3
- "version": "0.27.0",
3
+ "version": "0.27.2",
4
4
  "license": "UNLICENSED",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,24 +30,25 @@
30
30
  "@emotion/is-prop-valid": "^1.3.1",
31
31
  "@emotion/react": "^11.14.0",
32
32
  "@emotion/styled": "^11.14.0",
33
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
33
34
  "@testing-library/jest-dom": "^6.6.3",
34
35
  "@testing-library/react": "^16.2.0",
35
36
  "@testing-library/user-event": "^14.6.0",
36
37
  "@types/node": "^22.13.5",
37
38
  "@types/react": "^19.0.10",
38
39
  "@types/react-dom": "^19.0.4",
39
- "@typescript-eslint/eslint-plugin": "^7.4.0",
40
- "@typescript-eslint/parser": "^7.4.0",
40
+ "@typescript-eslint/eslint-plugin": "^8.28.0",
41
+ "@typescript-eslint/parser": "^8.28.0",
41
42
  "@vitejs/plugin-react": "^4.3.4",
42
- "eslint": "^8.57.0",
43
- "eslint-config-prettier": "^9.1.0",
43
+ "eslint": "^8.57.1",
44
+ "eslint-config-prettier": "^10.1.1",
45
+ "eslint-config-turbo": "2.4.2",
44
46
  "eslint-import-resolver-typescript": "^3.6.1",
45
- "eslint-plugin-eslint-comments": "^3.2.0",
46
- "eslint-plugin-import": "^2.29.1",
47
- "eslint-plugin-jsx-a11y": "^6.8.0",
48
- "eslint-plugin-prettier": "^5.1.3",
49
- "eslint-plugin-react": "^7.34.1",
50
- "eslint-plugin-react-hooks": "^4.6.0",
47
+ "eslint-plugin-import": "^2.31.0",
48
+ "eslint-plugin-jsx-a11y": "^6.10.2",
49
+ "eslint-plugin-only-warn": "^1.1.0",
50
+ "eslint-plugin-react": "^7.37.4",
51
+ "eslint-plugin-react-hooks": "^5.2.0",
51
52
  "globby": "^14.0.2",
52
53
  "jsdom": "^26.0.0",
53
54
  "lucide-react": "^0.475.0",
@@ -58,7 +59,7 @@
58
59
  "tailwindcss": "^4.0.0",
59
60
  "tsup": "^8.0.2",
60
61
  "tsx": "^4.19.2",
61
- "typescript": "^5.7.3",
62
+ "typescript": "^5.8.2",
62
63
  "vitest": "<3",
63
64
  "vitest-axe": "1.0.0-pre.3",
64
65
  "vitest-matchmedia-mock": "^2.0.0"
@@ -89,8 +90,7 @@
89
90
  "clean": "rimraf dist",
90
91
  "test": "vitest run",
91
92
  "test:watch": "vitest --watch",
92
- "lint": "eslint .",
93
- "typecheck": "tsc --noEmit",
94
- "lint:ci": "NODE_ENV=production eslint ."
93
+ "lint": "eslint . --max-warnings=0",
94
+ "typecheck": "tsc --noEmit"
95
95
  }
96
96
  }