@uniai-fe/uds-foundation 0.4.4 → 0.4.6
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 +23 -4
- package/package.json +5 -5
- package/src/init/reset.scss +42 -1
package/dist/index.css
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
* {
|
|
29
29
|
letter-spacing: -0.02em;
|
|
30
30
|
flex-shrink: 0;
|
|
31
|
-
font-family: var(--font-family-sans, "Pretendard JP Variable", "Pretendard JP", "Pretendard Variable", "Pretendard", "Inter", sans-serif);
|
|
31
|
+
font-family: var(--font-family-sans, "Pretendard JP Variable", "Pretendard JP", "Pretendard Variable", "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", Roboto, "Helvetica", "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Malgun Gothic", "dotum", Oxygen, "Oxygen-Sans", "Ubuntu", "Cantarell", "Inter", sans-serif);
|
|
32
32
|
}
|
|
33
33
|
*:focus,
|
|
34
34
|
*:focus-within,
|
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
q::before,
|
|
105
105
|
q::after {
|
|
106
106
|
content: "";
|
|
107
|
+
content: none;
|
|
107
108
|
}
|
|
108
109
|
img,
|
|
109
110
|
svg {
|
|
@@ -157,6 +158,9 @@
|
|
|
157
158
|
height: fit-content;
|
|
158
159
|
font-size: 0;
|
|
159
160
|
}
|
|
161
|
+
mark {
|
|
162
|
+
display: inline;
|
|
163
|
+
}
|
|
160
164
|
a {
|
|
161
165
|
display: block;
|
|
162
166
|
color: #333;
|
|
@@ -194,6 +198,8 @@
|
|
|
194
198
|
user-select: none;
|
|
195
199
|
}
|
|
196
200
|
select::-ms-expand {
|
|
201
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
202
|
+
filter: alpha(opacity=0);
|
|
197
203
|
opacity: 0;
|
|
198
204
|
}
|
|
199
205
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
@@ -234,10 +240,16 @@
|
|
|
234
240
|
-webkit-appearance: none;
|
|
235
241
|
appearance: none;
|
|
236
242
|
}
|
|
243
|
+
::-webkit-search-cancel-button {
|
|
244
|
+
caret-color: transparent;
|
|
245
|
+
border-color: transparent;
|
|
246
|
+
display: none;
|
|
247
|
+
}
|
|
237
248
|
::-webkit-file-upload-button {
|
|
238
249
|
-webkit-appearance: button;
|
|
239
250
|
appearance: button;
|
|
240
251
|
}
|
|
252
|
+
input[type=text],
|
|
241
253
|
input[type=date],
|
|
242
254
|
input[type=number] {
|
|
243
255
|
-webkit-appearance: none;
|
|
@@ -262,7 +274,14 @@
|
|
|
262
274
|
}
|
|
263
275
|
input[type=range]::-webkit-slider-thumb {
|
|
264
276
|
-webkit-appearance: none;
|
|
265
|
-
|
|
277
|
+
-moz-appearance: none;
|
|
278
|
+
appearance: none;
|
|
279
|
+
}
|
|
280
|
+
input[type=range]::-ms-track {
|
|
281
|
+
cursor: pointer;
|
|
282
|
+
background: transparent;
|
|
283
|
+
border-color: transparent;
|
|
284
|
+
color: transparent;
|
|
266
285
|
}
|
|
267
286
|
input[type=checkbox] {
|
|
268
287
|
-webkit-appearance: checkbox;
|
|
@@ -274,8 +293,8 @@
|
|
|
274
293
|
}
|
|
275
294
|
progress {
|
|
276
295
|
-webkit-appearance: none;
|
|
277
|
-
|
|
278
|
-
|
|
296
|
+
-moz-appearance: none;
|
|
297
|
+
appearance: none;
|
|
279
298
|
border: 1px solid #e1e1e1;
|
|
280
299
|
}
|
|
281
300
|
progress::-webkit-progress-bar {
|
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.6",
|
|
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.33.
|
|
15
|
+
"packageManager": "pnpm@10.33.3",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=24",
|
|
18
18
|
"pnpm": ">=10"
|
|
@@ -103,12 +103,12 @@
|
|
|
103
103
|
"publish:public": "bash ../../../scripts/npm-publish.sh"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
|
-
"@types/node": "^24.
|
|
106
|
+
"@types/node": "^24.12.3",
|
|
107
107
|
"@types/react": "^19.2.14",
|
|
108
|
-
"react": "^19.2.
|
|
108
|
+
"react": "^19.2.6",
|
|
109
109
|
"@uniai-fe/tsconfig": "workspace:*",
|
|
110
110
|
"autoprefixer": "^10.5.0",
|
|
111
|
-
"postcss": "^8.5.
|
|
111
|
+
"postcss": "^8.5.14",
|
|
112
112
|
"postcss-cli": "^11.0.1",
|
|
113
113
|
"prettier": "^3.8.3",
|
|
114
114
|
"sass": "^1.99.0",
|
package/src/init/reset.scss
CHANGED
|
@@ -30,9 +30,26 @@
|
|
|
30
30
|
"Pretendard JP",
|
|
31
31
|
"Pretendard Variable",
|
|
32
32
|
"Pretendard",
|
|
33
|
+
"Noto Sans KR",
|
|
34
|
+
-apple-system,
|
|
35
|
+
BlinkMacSystemFont,
|
|
36
|
+
"Apple SD Gothic Neo",
|
|
37
|
+
"Segoe UI",
|
|
38
|
+
Roboto,
|
|
39
|
+
"Helvetica",
|
|
40
|
+
"Helvetica Neue",
|
|
41
|
+
"Apple Color Emoji",
|
|
42
|
+
"Segoe UI Emoji",
|
|
43
|
+
"Segoe UI Symbol",
|
|
44
|
+
"Malgun Gothic",
|
|
45
|
+
"dotum",
|
|
46
|
+
Oxygen,
|
|
47
|
+
"Oxygen-Sans",
|
|
48
|
+
"Ubuntu",
|
|
49
|
+
"Cantarell",
|
|
33
50
|
"Inter",
|
|
34
51
|
sans-serif
|
|
35
|
-
); //
|
|
52
|
+
); // 변경 설명: legacy reset의 폰트 fallback 자산을 foundation standard reset fallback 체계로 승격한다.
|
|
36
53
|
}
|
|
37
54
|
|
|
38
55
|
*:focus,
|
|
@@ -121,6 +138,7 @@
|
|
|
121
138
|
q::before,
|
|
122
139
|
q::after {
|
|
123
140
|
content: "";
|
|
141
|
+
content: none;
|
|
124
142
|
}
|
|
125
143
|
|
|
126
144
|
img,
|
|
@@ -179,6 +197,10 @@
|
|
|
179
197
|
font-size: 0;
|
|
180
198
|
}
|
|
181
199
|
|
|
200
|
+
mark {
|
|
201
|
+
display: inline;
|
|
202
|
+
}
|
|
203
|
+
|
|
182
204
|
a {
|
|
183
205
|
display: block;
|
|
184
206
|
color: #333;
|
|
@@ -215,6 +237,8 @@
|
|
|
215
237
|
}
|
|
216
238
|
|
|
217
239
|
select::-ms-expand {
|
|
240
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
241
|
+
filter: alpha(opacity=0);
|
|
218
242
|
opacity: 0;
|
|
219
243
|
}
|
|
220
244
|
|
|
@@ -251,10 +275,17 @@
|
|
|
251
275
|
appearance: none;
|
|
252
276
|
}
|
|
253
277
|
|
|
278
|
+
::-webkit-search-cancel-button {
|
|
279
|
+
caret-color: transparent;
|
|
280
|
+
border-color: transparent;
|
|
281
|
+
display: none;
|
|
282
|
+
}
|
|
283
|
+
|
|
254
284
|
::-webkit-file-upload-button {
|
|
255
285
|
appearance: button;
|
|
256
286
|
}
|
|
257
287
|
|
|
288
|
+
input[type="text"],
|
|
258
289
|
input[type="date"],
|
|
259
290
|
input[type="number"] {
|
|
260
291
|
appearance: none;
|
|
@@ -281,9 +312,18 @@
|
|
|
281
312
|
}
|
|
282
313
|
|
|
283
314
|
input[type="range"]::-webkit-slider-thumb {
|
|
315
|
+
-webkit-appearance: none;
|
|
316
|
+
-moz-appearance: none;
|
|
284
317
|
appearance: none;
|
|
285
318
|
}
|
|
286
319
|
|
|
320
|
+
input[type="range"]::-ms-track {
|
|
321
|
+
cursor: pointer;
|
|
322
|
+
background: transparent;
|
|
323
|
+
border-color: transparent;
|
|
324
|
+
color: transparent;
|
|
325
|
+
}
|
|
326
|
+
|
|
287
327
|
input[type="checkbox"] {
|
|
288
328
|
appearance: checkbox;
|
|
289
329
|
}
|
|
@@ -293,6 +333,7 @@
|
|
|
293
333
|
}
|
|
294
334
|
|
|
295
335
|
progress {
|
|
336
|
+
-webkit-appearance: none;
|
|
296
337
|
appearance: none;
|
|
297
338
|
border: 1px solid #e1e1e1;
|
|
298
339
|
}
|