@uniai-fe/uds-foundation 0.1.8 → 0.2.0
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 +9 -1
- package/package.json +7 -7
- package/src/init/reset.scss +5 -1
package/dist/index.css
CHANGED
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
overflow-wrap: break-word;
|
|
9
9
|
word-break: break-word;
|
|
10
10
|
}
|
|
11
|
+
*::-moz-placeholder {
|
|
12
|
+
-moz-user-select: none;
|
|
13
|
+
user-select: none;
|
|
14
|
+
}
|
|
15
|
+
*::placeholder {
|
|
16
|
+
-webkit-user-select: none;
|
|
17
|
+
-moz-user-select: none;
|
|
18
|
+
user-select: none;
|
|
19
|
+
}
|
|
11
20
|
*,
|
|
12
21
|
*::before,
|
|
13
22
|
*::after {
|
|
@@ -19,7 +28,6 @@
|
|
|
19
28
|
* {
|
|
20
29
|
letter-spacing: -0.02em;
|
|
21
30
|
flex-shrink: 0;
|
|
22
|
-
overscroll-behavior-y: none;
|
|
23
31
|
font-family: var(--font-family-sans, "Pretendard JP Variable", "Pretendard JP", "Pretendard Variable", "Pretendard", "Inter", sans-serif);
|
|
24
32
|
}
|
|
25
33
|
*:focus,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-foundation",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
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.28.
|
|
15
|
+
"packageManager": "pnpm@10.28.2",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=24",
|
|
18
18
|
"pnpm": ">=10"
|
|
@@ -103,14 +103,14 @@
|
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@types/node": "^24.10.2",
|
|
106
|
-
"@types/react": "^19.2.
|
|
107
|
-
"react": "^19.2.
|
|
106
|
+
"@types/react": "^19.2.11",
|
|
107
|
+
"react": "^19.2.4",
|
|
108
108
|
"@uniai-fe/tsconfig": "workspace:*",
|
|
109
|
-
"autoprefixer": "^10.4.
|
|
109
|
+
"autoprefixer": "^10.4.24",
|
|
110
110
|
"postcss": "^8.5.6",
|
|
111
111
|
"postcss-cli": "^11.0.1",
|
|
112
|
-
"prettier": "^3.
|
|
113
|
-
"sass": "^1.97.
|
|
112
|
+
"prettier": "^3.8.1",
|
|
113
|
+
"sass": "^1.97.3",
|
|
114
114
|
"tsup": "^8.5.1",
|
|
115
115
|
"typescript": "~5.9.3"
|
|
116
116
|
}
|
package/src/init/reset.scss
CHANGED
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
word-break: break-word;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
*::placeholder {
|
|
11
|
+
user-select: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
10
14
|
*,
|
|
11
15
|
*::before,
|
|
12
16
|
*::after {
|
|
@@ -19,7 +23,7 @@
|
|
|
19
23
|
* {
|
|
20
24
|
letter-spacing: -0.02em;
|
|
21
25
|
flex-shrink: 0;
|
|
22
|
-
overscroll-behavior-y: none;
|
|
26
|
+
// overscroll-behavior-y: none; // 전역적인 스크롤 동작 오류로 인해 주석처리함 (2026. 02. 10.)
|
|
23
27
|
font-family: var(
|
|
24
28
|
--font-family-sans,
|
|
25
29
|
"Pretendard JP Variable",
|