@uniai-fe/uds-foundation 0.4.0 → 0.4.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/dist/index.css +4 -4
- package/package.json +3 -3
- package/src/init/reset.scss +4 -2
package/dist/index.css
CHANGED
|
@@ -205,11 +205,11 @@
|
|
|
205
205
|
opacity: 1;
|
|
206
206
|
color: #959595;
|
|
207
207
|
}
|
|
208
|
-
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
|
|
208
|
+
input:focus::-moz-placeholder:not([readonly], [disabled]), textarea:focus::-moz-placeholder:not([readonly], [disabled]) {
|
|
209
209
|
color: transparent;
|
|
210
210
|
}
|
|
211
|
-
input:focus::placeholder,
|
|
212
|
-
textarea:focus::placeholder {
|
|
211
|
+
input:focus::placeholder:not([readonly], [disabled]),
|
|
212
|
+
textarea:focus::placeholder:not([readonly], [disabled]) {
|
|
213
213
|
color: transparent;
|
|
214
214
|
}
|
|
215
215
|
[type=button],
|
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
background-color: #fff;
|
|
283
283
|
}
|
|
284
284
|
progress::-webkit-progress-value {
|
|
285
|
-
background-color:
|
|
285
|
+
background-color: gray;
|
|
286
286
|
}
|
|
287
287
|
html,
|
|
288
288
|
body {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-foundation",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "UNIAI Design System; Design Foundation Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
-
"packageManager": "pnpm@10.32.
|
|
15
|
+
"packageManager": "pnpm@10.32.1",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=24",
|
|
18
18
|
"pnpm": ">=10"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"postcss": "^8.5.8",
|
|
112
112
|
"postcss-cli": "^11.0.1",
|
|
113
113
|
"prettier": "^3.8.1",
|
|
114
|
-
"sass": "^1.
|
|
114
|
+
"sass": "^1.98.0",
|
|
115
115
|
"tsup": "^8.5.1",
|
|
116
116
|
"typescript": "~5.9.3"
|
|
117
117
|
}
|
package/src/init/reset.scss
CHANGED
|
@@ -226,7 +226,9 @@
|
|
|
226
226
|
|
|
227
227
|
input:focus::placeholder,
|
|
228
228
|
textarea:focus::placeholder {
|
|
229
|
-
|
|
229
|
+
&:not([readonly], [disabled]) {
|
|
230
|
+
color: transparent;
|
|
231
|
+
}
|
|
230
232
|
}
|
|
231
233
|
|
|
232
234
|
[type="button"],
|
|
@@ -301,6 +303,6 @@
|
|
|
301
303
|
}
|
|
302
304
|
|
|
303
305
|
progress::-webkit-progress-value {
|
|
304
|
-
background-color:
|
|
306
|
+
background-color: gray;
|
|
305
307
|
}
|
|
306
308
|
}
|