@seed-design/lynx-css 0.2.0-alpha.3 → 0.2.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/all.css +433 -258
- package/all.min.css +1 -1
- package/base.css +9 -242
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +0 -1
- package/recipes/app-bar-main.css +67 -0
- package/recipes/app-bar-main.d.ts +36 -0
- package/recipes/app-bar-main.mjs +63 -0
- package/recipes/app-bar.css +101 -0
- package/recipes/app-bar.d.ts +32 -0
- package/recipes/app-bar.mjs +74 -0
- package/recipes/badge.css +157 -0
- package/recipes/badge.d.ts +32 -0
- package/recipes/badge.mjs +131 -0
- package/recipes/bottom-sheet-handle.css +5 -4
- package/recipes/bottom-sheet.css +3 -2
- package/recipes/checkbox-group.css +1 -1
- package/recipes/checkbox-group.d.ts +1 -3
- package/recipes/checkbox-group.mjs +2 -12
- package/recipes/checkbox.css +5 -3
- package/recipes/checkmark.css +1 -0
- package/recipes/radio-group.css +1 -1
- package/recipes/radio-group.d.ts +1 -3
- package/recipes/radio-group.mjs +2 -12
- package/recipes/radio.css +5 -3
- package/recipes/radiomark.css +1 -0
- package/recipes/switch.css +7 -5
- package/recipes/switchmark.css +6 -0
- package/recipes/tag-group-item.css +1 -0
- package/recipes/tag-group.css +6 -0
- package/recipes/tag-group.d.ts +1 -1
- package/recipes/tag-group.mjs +4 -0
- package/vars/color/bg.d.ts +1 -1
- package/vars/component/chip.d.ts +21 -1
- package/vars/component/chip.mjs +21 -1
- package/vars/component/image-frame.d.ts +2 -2
- package/vars/component/list-item.d.ts +8 -3
- package/vars/component/list-item.mjs +6 -3
- package/vars/component/menu-sheet.d.ts +2 -2
- package/vars/component/menu-sheet.mjs +2 -2
- package/vars/component/top-navigation.d.ts +0 -9
- package/vars/component/top-navigation.mjs +0 -9
- package/vars/duration.d.ts +2 -1
- package/vars/duration.mjs +2 -1
- package/vars/gradient.d.ts +2 -2
- package/vars/timing-function.d.ts +2 -1
- package/vars/timing-function.mjs +2 -1
- package/all.layered.css +0 -1953
- package/all.layered.min.css +0 -1
- package/base.layered.css +0 -865
- package/base.layered.min.css +0 -1
- package/recipes/action-button.layered.css +0 -406
- package/recipes/action-button.layered.mjs +0 -212
- package/recipes/bottom-sheet-handle.layered.css +0 -21
- package/recipes/bottom-sheet-handle.layered.mjs +0 -36
- package/recipes/bottom-sheet.layered.css +0 -106
- package/recipes/bottom-sheet.layered.mjs +0 -76
- package/recipes/checkbox-group.layered.css +0 -7
- package/recipes/checkbox-group.layered.mjs +0 -46
- package/recipes/checkbox.layered.css +0 -42
- package/recipes/checkbox.layered.mjs +0 -53
- package/recipes/checkmark.layered.css +0 -146
- package/recipes/checkmark.layered.mjs +0 -220
- package/recipes/radio-group.layered.css +0 -7
- package/recipes/radio-group.layered.mjs +0 -46
- package/recipes/radio.layered.css +0 -42
- package/recipes/radio.layered.mjs +0 -53
- package/recipes/radiomark.layered.css +0 -112
- package/recipes/radiomark.layered.mjs +0 -121
- package/recipes/switch.layered.css +0 -48
- package/recipes/switch.layered.mjs +0 -49
- package/recipes/switchmark.layered.css +0 -88
- package/recipes/switchmark.layered.mjs +0 -90
- package/recipes/tag-group-item.layered.css +0 -43
- package/recipes/tag-group-item.layered.mjs +0 -55
- package/recipes/tag-group.layered.css +0 -31
- package/recipes/tag-group.layered.mjs +0 -44
package/vars/component/chip.mjs
CHANGED
|
@@ -258,7 +258,27 @@ export const vars = {
|
|
|
258
258
|
}
|
|
259
259
|
}
|
|
260
260
|
},
|
|
261
|
-
"
|
|
261
|
+
"sizeSmallLayoutWithText": {
|
|
262
|
+
"enabled": {
|
|
263
|
+
"root": {
|
|
264
|
+
"minWidth": "44px"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"sizeMediumLayoutWithText": {
|
|
269
|
+
"enabled": {
|
|
270
|
+
"root": {
|
|
271
|
+
"minWidth": "var(--seed-dimension-x12)"
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"sizeLargeLayoutWithText": {
|
|
276
|
+
"enabled": {
|
|
277
|
+
"root": {
|
|
278
|
+
"minWidth": "var(--seed-dimension-x13)"
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
},
|
|
262
282
|
"sizeSmallLayoutIconOnly": {
|
|
263
283
|
"enabled": {
|
|
264
284
|
"root": {
|
|
@@ -26,7 +26,7 @@ export declare const vars: {
|
|
|
26
26
|
"strokeFalse": {},
|
|
27
27
|
/**
|
|
28
28
|
* 모서리를 둥글게 처리합니다.
|
|
29
|
-
@deprecated `rounded` 옵션은 @seed-design/react@
|
|
29
|
+
@deprecated `rounded` 옵션은 @seed-design/react@2.0.0에서 제거될 예정입니다. `borderRadius="r2"`를 사용하세요.
|
|
30
30
|
Reason: 모서리 스타일은 `borderRadius` prop으로 통일합니다.
|
|
31
31
|
|
|
32
32
|
*/
|
|
@@ -40,7 +40,7 @@ Reason: 모서리 스타일은 `borderRadius` prop으로 통일합니다.
|
|
|
40
40
|
},
|
|
41
41
|
/**
|
|
42
42
|
* 모서리를 둥글게 처리하지 않습니다.
|
|
43
|
-
@deprecated `rounded` 옵션은 @seed-design/react@
|
|
43
|
+
@deprecated `rounded` 옵션은 @seed-design/react@2.0.0에서 제거될 예정입니다. `borderRadius="r2"`를 사용하세요.
|
|
44
44
|
Reason: 모서리 스타일은 `borderRadius` prop으로 통일합니다.
|
|
45
45
|
|
|
46
46
|
*/
|
|
@@ -10,9 +10,11 @@ export declare const vars: {
|
|
|
10
10
|
"marginDuration": "var(--seed-duration-d3)",
|
|
11
11
|
"marginTimingFunction": "var(--seed-timing-function-easing)",
|
|
12
12
|
"borderRadiusDuration": "var(--seed-duration-d3)",
|
|
13
|
-
"borderRadiusTimingFunction": "var(--seed-timing-function-easing)"
|
|
13
|
+
"borderRadiusTimingFunction": "var(--seed-timing-function-easing)",
|
|
14
|
+
"contentScaleDuration": "var(--seed-duration-pressed-scale)",
|
|
15
|
+
"contentScaleTimingFunction": "var(--seed-timing-function-pressed-scale)"
|
|
14
16
|
},
|
|
15
|
-
"
|
|
17
|
+
"body": {
|
|
16
18
|
"gap": "var(--seed-dimension-x0_5)",
|
|
17
19
|
"paddingRight": "var(--seed-dimension-x2_5)"
|
|
18
20
|
},
|
|
@@ -52,8 +54,11 @@ export declare const vars: {
|
|
|
52
54
|
"pressed": {
|
|
53
55
|
"root": {
|
|
54
56
|
"color": "var(--seed-color-bg-transparent-pressed)",
|
|
57
|
+
/** pressed 시 배경 레이어는 좌우 폭이 marginX만큼 줄어들고, 배경 레이어 위 요소들이 위치하는 레이아웃 레이어는 scale로 인해 전체적으로 줄어드는 형태로 두 레이어가 별개로 작동합니다. 이 값은 OS 동작 줄이기 설정의 영향을 받지 않습니다. */
|
|
55
58
|
"marginX": "var(--seed-dimension-x1_5)",
|
|
56
|
-
"cornerRadius": "var(--seed-dimension-x2_5)"
|
|
59
|
+
"cornerRadius": "var(--seed-dimension-x2_5)",
|
|
60
|
+
/** pressed 시 배경 레이어는 좌우 폭이 marginX만큼 줄어들고, 배경 레이어 위 요소들이 위치하는 레이아웃 레이어는 scale로 인해 전체적으로 줄어드는 형태로 두 레이어가 별개로 작동합니다. OS 동작 줄이기 등의 설정이 켜진 경우 이 값을 1로 변경하여 사용합니다. */
|
|
61
|
+
"contentScale": "0.97"
|
|
57
62
|
}
|
|
58
63
|
},
|
|
59
64
|
"highlighted": {
|
|
@@ -10,9 +10,11 @@ export const vars = {
|
|
|
10
10
|
"marginDuration": "var(--seed-duration-d3)",
|
|
11
11
|
"marginTimingFunction": "var(--seed-timing-function-easing)",
|
|
12
12
|
"borderRadiusDuration": "var(--seed-duration-d3)",
|
|
13
|
-
"borderRadiusTimingFunction": "var(--seed-timing-function-easing)"
|
|
13
|
+
"borderRadiusTimingFunction": "var(--seed-timing-function-easing)",
|
|
14
|
+
"contentScaleDuration": "var(--seed-duration-pressed-scale)",
|
|
15
|
+
"contentScaleTimingFunction": "var(--seed-timing-function-pressed-scale)"
|
|
14
16
|
},
|
|
15
|
-
"
|
|
17
|
+
"body": {
|
|
16
18
|
"gap": "var(--seed-dimension-x0_5)",
|
|
17
19
|
"paddingRight": "var(--seed-dimension-x2_5)"
|
|
18
20
|
},
|
|
@@ -53,7 +55,8 @@ export const vars = {
|
|
|
53
55
|
"root": {
|
|
54
56
|
"color": "var(--seed-color-bg-transparent-pressed)",
|
|
55
57
|
"marginX": "var(--seed-dimension-x1_5)",
|
|
56
|
-
"cornerRadius": "var(--seed-dimension-x2_5)"
|
|
58
|
+
"cornerRadius": "var(--seed-dimension-x2_5)",
|
|
59
|
+
"contentScale": "0.97"
|
|
57
60
|
}
|
|
58
61
|
},
|
|
59
62
|
"highlighted": {
|
|
@@ -14,7 +14,8 @@ export declare const vars: {
|
|
|
14
14
|
"color": "var(--seed-color-bg-layer-floating)",
|
|
15
15
|
"maxWidth": "480px",
|
|
16
16
|
"paddingX": "var(--seed-dimension-spacing-x-global-gutter)",
|
|
17
|
-
"
|
|
17
|
+
"paddingTop": "var(--seed-dimension-x6)",
|
|
18
|
+
"paddingBottom": "var(--seed-dimension-x4)",
|
|
18
19
|
"topCornerRadius": "var(--seed-radius-r5)",
|
|
19
20
|
"enterDuration": "var(--seed-duration-d6)",
|
|
20
21
|
"enterTimingFunction": "var(--seed-timing-function-enter-expressive)",
|
|
@@ -23,7 +24,6 @@ export declare const vars: {
|
|
|
23
24
|
},
|
|
24
25
|
"header": {
|
|
25
26
|
"gap": "var(--seed-dimension-x1)",
|
|
26
|
-
"paddingTop": "var(--seed-dimension-x2)",
|
|
27
27
|
"paddingBottom": "var(--seed-dimension-x4)"
|
|
28
28
|
},
|
|
29
29
|
"title": {
|
|
@@ -14,7 +14,8 @@ export const vars = {
|
|
|
14
14
|
"color": "var(--seed-color-bg-layer-floating)",
|
|
15
15
|
"maxWidth": "480px",
|
|
16
16
|
"paddingX": "var(--seed-dimension-spacing-x-global-gutter)",
|
|
17
|
-
"
|
|
17
|
+
"paddingTop": "var(--seed-dimension-x6)",
|
|
18
|
+
"paddingBottom": "var(--seed-dimension-x4)",
|
|
18
19
|
"topCornerRadius": "var(--seed-radius-r5)",
|
|
19
20
|
"enterDuration": "var(--seed-duration-d6)",
|
|
20
21
|
"enterTimingFunction": "var(--seed-timing-function-enter-expressive)",
|
|
@@ -23,7 +24,6 @@ export const vars = {
|
|
|
23
24
|
},
|
|
24
25
|
"header": {
|
|
25
26
|
"gap": "var(--seed-dimension-x1)",
|
|
26
|
-
"paddingTop": "var(--seed-dimension-x2)",
|
|
27
27
|
"paddingBottom": "var(--seed-dimension-x4)"
|
|
28
28
|
},
|
|
29
29
|
"title": {
|
|
@@ -64,15 +64,6 @@ export declare const vars: {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"dividerTrue": {
|
|
68
|
-
"enabled": {
|
|
69
|
-
"root": {
|
|
70
|
-
"strokeColor": "var(--seed-color-stroke-neutral-subtle)",
|
|
71
|
-
"strokeWidth": "1px"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
"dividerFalse": {},
|
|
76
67
|
"titleLayoutTitleOnly": {
|
|
77
68
|
"enabled": {
|
|
78
69
|
"title": {
|
|
@@ -56,15 +56,6 @@ export const vars = {
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"dividerTrue": {
|
|
60
|
-
"enabled": {
|
|
61
|
-
"root": {
|
|
62
|
-
"strokeColor": "var(--seed-color-stroke-neutral-subtle)",
|
|
63
|
-
"strokeWidth": "1px"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"dividerFalse": {},
|
|
68
59
|
"titleLayoutTitleOnly": {
|
|
69
60
|
"enabled": {
|
|
70
61
|
"title": {
|
package/vars/duration.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ export declare const d3 = "var(--seed-duration-d3)";
|
|
|
4
4
|
export declare const d4 = "var(--seed-duration-d4)";
|
|
5
5
|
export declare const d5 = "var(--seed-duration-d5)";
|
|
6
6
|
export declare const d6 = "var(--seed-duration-d6)";
|
|
7
|
-
export declare const colorTransition = "var(--seed-duration-color-transition)";
|
|
7
|
+
export declare const colorTransition = "var(--seed-duration-color-transition)";
|
|
8
|
+
export declare const pressedScale = "var(--seed-duration-pressed-scale)";
|
package/vars/duration.mjs
CHANGED
|
@@ -4,4 +4,5 @@ export const d3 = "var(--seed-duration-d3)";
|
|
|
4
4
|
export const d4 = "var(--seed-duration-d4)";
|
|
5
5
|
export const d5 = "var(--seed-duration-d5)";
|
|
6
6
|
export const d6 = "var(--seed-duration-d6)";
|
|
7
|
-
export const colorTransition = "var(--seed-duration-color-transition)";
|
|
7
|
+
export const colorTransition = "var(--seed-duration-color-transition)";
|
|
8
|
+
export const pressedScale = "var(--seed-duration-pressed-scale)";
|
package/vars/gradient.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
|
|
2
|
-
@deprecated `@seed-design/css@
|
|
2
|
+
@deprecated `@seed-design/css@2.0.0`에서 제거될 예정입니다.
|
|
3
3
|
*/
|
|
4
4
|
export declare const fadeLayerFloating = "var(--seed-gradient-fade-layer-floating)";
|
|
5
5
|
/** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
|
|
6
|
-
@deprecated `@seed-design/css@
|
|
6
|
+
@deprecated `@seed-design/css@2.0.0`에서 제거될 예정입니다.
|
|
7
7
|
*/
|
|
8
8
|
export declare const fadeLayerDefault = "var(--seed-gradient-fade-layer-default)";
|
|
9
9
|
/** 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러입니다. */
|
|
@@ -3,4 +3,5 @@ export declare const easing = "var(--seed-timing-function-easing)";
|
|
|
3
3
|
export declare const enter = "var(--seed-timing-function-enter)";
|
|
4
4
|
export declare const exit = "var(--seed-timing-function-exit)";
|
|
5
5
|
export declare const enterExpressive = "var(--seed-timing-function-enter-expressive)";
|
|
6
|
-
export declare const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
6
|
+
export declare const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
7
|
+
export declare const pressedScale = "var(--seed-timing-function-pressed-scale)";
|
package/vars/timing-function.mjs
CHANGED
|
@@ -3,4 +3,5 @@ export const easing = "var(--seed-timing-function-easing)";
|
|
|
3
3
|
export const enter = "var(--seed-timing-function-enter)";
|
|
4
4
|
export const exit = "var(--seed-timing-function-exit)";
|
|
5
5
|
export const enterExpressive = "var(--seed-timing-function-enter-expressive)";
|
|
6
|
-
export const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
6
|
+
export const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
7
|
+
export const pressedScale = "var(--seed-timing-function-pressed-scale)";
|