@seed-design/rootage-artifacts 0.0.0-alpha-20260414104312
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/README.md +10 -0
- package/collections.yaml +24 -0
- package/color.yaml +855 -0
- package/components/action-button.yaml +460 -0
- package/components/action-chip.yaml +150 -0
- package/components/action-sheet-close-button.yaml +45 -0
- package/components/action-sheet-item.yaml +52 -0
- package/components/action-sheet.yaml +115 -0
- package/components/avatar-stack.yaml +86 -0
- package/components/avatar.yaml +161 -0
- package/components/badge.yaml +210 -0
- package/components/bottom-sheet-close-button.yaml +38 -0
- package/components/bottom-sheet-handle.yaml +48 -0
- package/components/bottom-sheet.yaml +156 -0
- package/components/callout.yaml +213 -0
- package/components/checkbox-group.yaml +17 -0
- package/components/checkbox.yaml +59 -0
- package/components/checkmark.yaml +152 -0
- package/components/chip-tablist.yaml +28 -0
- package/components/chip.yaml +267 -0
- package/components/content-placeholder.yaml +45 -0
- package/components/contextual-floating-button.yaml +161 -0
- package/components/control-chip.yaml +169 -0
- package/components/dialog.yaml +131 -0
- package/components/divider.yaml +17 -0
- package/components/extended-action-sheet-close-button.yaml +48 -0
- package/components/extended-action-sheet-item.yaml +67 -0
- package/components/extended-action-sheet.yaml +134 -0
- package/components/extended-fab.yaml +109 -0
- package/components/fab.yaml +46 -0
- package/components/field-label.yaml +33 -0
- package/components/field.yaml +159 -0
- package/components/floating-action-button.yaml +99 -0
- package/components/help-bubble.yaml +127 -0
- package/components/identity-placeholder.yaml +23 -0
- package/components/image-frame-floater.yaml +18 -0
- package/components/image-frame-indicator.yaml +42 -0
- package/components/image-frame-reaction-button.yaml +60 -0
- package/components/image-frame.yaml +37 -0
- package/components/inline-banner.yaml +197 -0
- package/components/input-button.yaml +171 -0
- package/components/link-content.yaml +61 -0
- package/components/list-header.yaml +43 -0
- package/components/list-item.yaml +149 -0
- package/components/manner-temp-badge.yaml +102 -0
- package/components/manner-temp.yaml +80 -0
- package/components/menu-item.yaml +156 -0
- package/components/menu-sheet-close-button.yaml +48 -0
- package/components/menu-sheet-item.yaml +104 -0
- package/components/menu-sheet.yaml +136 -0
- package/components/menu.yaml +117 -0
- package/components/notification-badge.yaml +74 -0
- package/components/page-banner.yaml +302 -0
- package/components/progress-circle.yaml +105 -0
- package/components/radio-group.yaml +17 -0
- package/components/radio.yaml +59 -0
- package/components/radiomark.yaml +113 -0
- package/components/reaction-button.yaml +161 -0
- package/components/scroll-fog.yaml +23 -0
- package/components/segmented-control-indicator.yaml +38 -0
- package/components/segmented-control-item.yaml +76 -0
- package/components/segmented-control.yaml +23 -0
- package/components/select-box-checkmark.yaml +52 -0
- package/components/select-box-group.yaml +20 -0
- package/components/select-box.yaml +176 -0
- package/components/skeleton.yaml +73 -0
- package/components/slider-thumb.yaml +45 -0
- package/components/slider-tick.yaml +27 -0
- package/components/slider.yaml +169 -0
- package/components/snackbar.yaml +137 -0
- package/components/switch.yaml +66 -0
- package/components/switchmark.yaml +147 -0
- package/components/tab.yaml +57 -0
- package/components/tablist.yaml +64 -0
- package/components/tag-group-item.yaml +119 -0
- package/components/tag-group.yaml +40 -0
- package/components/text-button.yaml +46 -0
- package/components/text-input.yaml +234 -0
- package/components/toggle-button.yaml +201 -0
- package/components/top-navigation.yaml +106 -0
- package/components/typography.yaml +380 -0
- package/dimension.yaml +88 -0
- package/duration.yaml +29 -0
- package/font-size.yaml +77 -0
- package/font-weight.yaml +16 -0
- package/gradient.yaml +134 -0
- package/line-height.yaml +77 -0
- package/package.json +20 -0
- package/radius.yaml +40 -0
- package/shadow.yaml +63 -0
- package/timing-function.yaml +37 -0
package/gradient.yaml
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: gradient
|
|
4
|
+
name: Gradient
|
|
5
|
+
lastUpdated: 26-01-14
|
|
6
|
+
data:
|
|
7
|
+
collection: color
|
|
8
|
+
tokens:
|
|
9
|
+
$gradient.glow-magic:
|
|
10
|
+
description: 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러입니다.
|
|
11
|
+
values:
|
|
12
|
+
theme-light:
|
|
13
|
+
type: gradient
|
|
14
|
+
value:
|
|
15
|
+
- color: "#fef6f7"
|
|
16
|
+
position: 0
|
|
17
|
+
- color: "#fef0e7"
|
|
18
|
+
position: 0.8
|
|
19
|
+
- color: "#f9f7f5"
|
|
20
|
+
position: 1
|
|
21
|
+
theme-dark:
|
|
22
|
+
type: gradient
|
|
23
|
+
value:
|
|
24
|
+
- color: "#2d252d"
|
|
25
|
+
position: 0
|
|
26
|
+
- color: "#3a312b"
|
|
27
|
+
position: 0.8
|
|
28
|
+
- color: "#333232"
|
|
29
|
+
position: 1
|
|
30
|
+
$gradient.glow-magic-pressed:
|
|
31
|
+
description: 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러의 pressed컬러입니다.
|
|
32
|
+
values:
|
|
33
|
+
theme-light:
|
|
34
|
+
type: gradient
|
|
35
|
+
value:
|
|
36
|
+
- color: "#fbf0f2"
|
|
37
|
+
position: 0
|
|
38
|
+
- color: "#ffe8db"
|
|
39
|
+
position: 0.8
|
|
40
|
+
- color: "#f5f2ef"
|
|
41
|
+
position: 1
|
|
42
|
+
theme-dark:
|
|
43
|
+
type: gradient
|
|
44
|
+
value:
|
|
45
|
+
- color: "#3e333e"
|
|
46
|
+
position: 0
|
|
47
|
+
- color: "#51453e"
|
|
48
|
+
position: 0.8
|
|
49
|
+
- color: "#434242"
|
|
50
|
+
position: 1
|
|
51
|
+
$gradient.highlight-magic:
|
|
52
|
+
description: 아이콘 및 shape 영역에서 AI 기능을 표현할 때 사용하는 컬러입니다.
|
|
53
|
+
values:
|
|
54
|
+
theme-light:
|
|
55
|
+
type: gradient
|
|
56
|
+
value:
|
|
57
|
+
- color: "#ff6600"
|
|
58
|
+
position: 0.2
|
|
59
|
+
- color: "#d25aca"
|
|
60
|
+
position: 1
|
|
61
|
+
theme-dark:
|
|
62
|
+
type: gradient
|
|
63
|
+
value:
|
|
64
|
+
- color: "#ff6600"
|
|
65
|
+
position: 0.2
|
|
66
|
+
- color: "#d25aca"
|
|
67
|
+
position: 1
|
|
68
|
+
$gradient.highlight-magic-pressed:
|
|
69
|
+
description: ""
|
|
70
|
+
values:
|
|
71
|
+
theme-light:
|
|
72
|
+
type: gradient
|
|
73
|
+
value:
|
|
74
|
+
- color: "#e14f00"
|
|
75
|
+
position: 0.2
|
|
76
|
+
- color: "#ae58bf"
|
|
77
|
+
position: 1
|
|
78
|
+
theme-dark:
|
|
79
|
+
type: gradient
|
|
80
|
+
value:
|
|
81
|
+
- color: "#ff9e65"
|
|
82
|
+
position: 0.2
|
|
83
|
+
- color: "#e89bee"
|
|
84
|
+
position: 1
|
|
85
|
+
$gradient.shimmer-magic:
|
|
86
|
+
description: Skeleton AI shimmer
|
|
87
|
+
values:
|
|
88
|
+
theme-light:
|
|
89
|
+
type: gradient
|
|
90
|
+
value:
|
|
91
|
+
- color: "#fff9f500"
|
|
92
|
+
position: 0
|
|
93
|
+
- color: "#fff9f5cc"
|
|
94
|
+
position: 0.46
|
|
95
|
+
- color: "#fff9f5cc"
|
|
96
|
+
position: 0.54
|
|
97
|
+
- color: "#fff9f500"
|
|
98
|
+
position: 1
|
|
99
|
+
theme-dark:
|
|
100
|
+
type: gradient
|
|
101
|
+
value:
|
|
102
|
+
- color: "#fff9f500"
|
|
103
|
+
position: 0
|
|
104
|
+
- color: "#fff9f51a"
|
|
105
|
+
position: 0.46
|
|
106
|
+
- color: "#fff9f51a"
|
|
107
|
+
position: 0.54
|
|
108
|
+
- color: "#fff9f500"
|
|
109
|
+
position: 1
|
|
110
|
+
$gradient.shimmer-neutral:
|
|
111
|
+
description: Skeleton shimmer
|
|
112
|
+
values:
|
|
113
|
+
theme-light:
|
|
114
|
+
type: gradient
|
|
115
|
+
value:
|
|
116
|
+
- color: "#ffffff00"
|
|
117
|
+
position: 0
|
|
118
|
+
- color: "#ffffffab"
|
|
119
|
+
position: 0.46
|
|
120
|
+
- color: "#ffffffab"
|
|
121
|
+
position: 0.54
|
|
122
|
+
- color: "#ffffff00"
|
|
123
|
+
position: 1
|
|
124
|
+
theme-dark:
|
|
125
|
+
type: gradient
|
|
126
|
+
value:
|
|
127
|
+
- color: "#ffffff00"
|
|
128
|
+
position: 0
|
|
129
|
+
- color: "#ffffff1a"
|
|
130
|
+
position: 0.46
|
|
131
|
+
- color: "#ffffff1a"
|
|
132
|
+
position: 0.54
|
|
133
|
+
- color: "#ffffff00"
|
|
134
|
+
position: 1
|
package/line-height.yaml
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: line-height
|
|
4
|
+
name: Line Height
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$line-height.t1:
|
|
9
|
+
values:
|
|
10
|
+
default: 0.9375rem # 15px ÷ 16
|
|
11
|
+
$line-height.t2:
|
|
12
|
+
values:
|
|
13
|
+
default: 1rem # 16px ÷ 16
|
|
14
|
+
$line-height.t3:
|
|
15
|
+
values:
|
|
16
|
+
default: 1.125rem # 18px ÷ 16
|
|
17
|
+
$line-height.t4:
|
|
18
|
+
values:
|
|
19
|
+
default: 1.1875rem # 19px ÷ 16
|
|
20
|
+
$line-height.t5:
|
|
21
|
+
values:
|
|
22
|
+
default: 1.375rem # 22px ÷ 16
|
|
23
|
+
$line-height.t6:
|
|
24
|
+
values:
|
|
25
|
+
default: 1.5rem # 24px ÷ 16
|
|
26
|
+
$line-height.t7:
|
|
27
|
+
values:
|
|
28
|
+
default: 1.6875rem # 27px ÷ 16
|
|
29
|
+
$line-height.t8:
|
|
30
|
+
values:
|
|
31
|
+
default: 1.875rem # 30px ÷ 16
|
|
32
|
+
$line-height.t9:
|
|
33
|
+
values:
|
|
34
|
+
default: 2rem # 32px ÷ 16
|
|
35
|
+
$line-height.t10:
|
|
36
|
+
values:
|
|
37
|
+
default: 2.1875rem # 35px ÷ 16
|
|
38
|
+
$line-height.t1-static:
|
|
39
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
40
|
+
values:
|
|
41
|
+
default: 15px
|
|
42
|
+
$line-height.t2-static:
|
|
43
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
44
|
+
values:
|
|
45
|
+
default: 16px
|
|
46
|
+
$line-height.t3-static:
|
|
47
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
48
|
+
values:
|
|
49
|
+
default: 18px
|
|
50
|
+
$line-height.t4-static:
|
|
51
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
52
|
+
values:
|
|
53
|
+
default: 19px
|
|
54
|
+
$line-height.t5-static:
|
|
55
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
56
|
+
values:
|
|
57
|
+
default: 22px
|
|
58
|
+
$line-height.t6-static:
|
|
59
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
60
|
+
values:
|
|
61
|
+
default: 24px
|
|
62
|
+
$line-height.t7-static:
|
|
63
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
64
|
+
values:
|
|
65
|
+
default: 27px
|
|
66
|
+
$line-height.t8-static:
|
|
67
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
68
|
+
values:
|
|
69
|
+
default: 30px
|
|
70
|
+
$line-height.t9-static:
|
|
71
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
72
|
+
values:
|
|
73
|
+
default: 32px
|
|
74
|
+
$line-height.t10-static:
|
|
75
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
76
|
+
values:
|
|
77
|
+
default: 35px
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@seed-design/rootage-artifacts",
|
|
3
|
+
"version": "0.0.0-alpha-20260414104312",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/daangn/seed-design.git",
|
|
7
|
+
"directory": "packages/rootage"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"rootage:generate": "bun rootage json-schema ./components"
|
|
11
|
+
},
|
|
12
|
+
"main": "package.json",
|
|
13
|
+
"files": [
|
|
14
|
+
"*.yaml",
|
|
15
|
+
"components/*.yaml"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/radius.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: radius
|
|
4
|
+
name: Radius
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$radius.r0_5:
|
|
9
|
+
values:
|
|
10
|
+
default: 2px
|
|
11
|
+
$radius.r1:
|
|
12
|
+
values:
|
|
13
|
+
default: 4px
|
|
14
|
+
$radius.r1_5:
|
|
15
|
+
values:
|
|
16
|
+
default: 6px
|
|
17
|
+
$radius.r2:
|
|
18
|
+
values:
|
|
19
|
+
default: 8px
|
|
20
|
+
$radius.r2_5:
|
|
21
|
+
values:
|
|
22
|
+
default: 10px
|
|
23
|
+
$radius.r3:
|
|
24
|
+
values:
|
|
25
|
+
default: 12px
|
|
26
|
+
$radius.r3_5:
|
|
27
|
+
values:
|
|
28
|
+
default: 14px
|
|
29
|
+
$radius.r4:
|
|
30
|
+
values:
|
|
31
|
+
default: 16px
|
|
32
|
+
$radius.r5:
|
|
33
|
+
values:
|
|
34
|
+
default: 20px
|
|
35
|
+
$radius.r6:
|
|
36
|
+
values:
|
|
37
|
+
default: 24px
|
|
38
|
+
$radius.full:
|
|
39
|
+
values:
|
|
40
|
+
default: 9999px
|
package/shadow.yaml
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: shadow
|
|
4
|
+
name: Shadow
|
|
5
|
+
lastUpdated: 26-01-06
|
|
6
|
+
data:
|
|
7
|
+
collection: color
|
|
8
|
+
tokens:
|
|
9
|
+
$shadow.s1:
|
|
10
|
+
values:
|
|
11
|
+
theme-light:
|
|
12
|
+
type: shadow
|
|
13
|
+
value:
|
|
14
|
+
- offsetX: 0px
|
|
15
|
+
offsetY: 1px
|
|
16
|
+
blur: 4px
|
|
17
|
+
spread: 0px
|
|
18
|
+
color: "#00000014"
|
|
19
|
+
theme-dark:
|
|
20
|
+
type: shadow
|
|
21
|
+
value:
|
|
22
|
+
- offsetX: 0px
|
|
23
|
+
offsetY: 1px
|
|
24
|
+
blur: 4px
|
|
25
|
+
spread: 0px
|
|
26
|
+
color: "#00000080"
|
|
27
|
+
$shadow.s2:
|
|
28
|
+
values:
|
|
29
|
+
theme-light:
|
|
30
|
+
type: shadow
|
|
31
|
+
value:
|
|
32
|
+
- offsetX: 0px
|
|
33
|
+
offsetY: 2px
|
|
34
|
+
blur: 10px
|
|
35
|
+
spread: 0px
|
|
36
|
+
color: "#0000001a"
|
|
37
|
+
theme-dark:
|
|
38
|
+
type: shadow
|
|
39
|
+
value:
|
|
40
|
+
- offsetX: 0px
|
|
41
|
+
offsetY: 2px
|
|
42
|
+
blur: 10px
|
|
43
|
+
spread: 0px
|
|
44
|
+
color: "#000000ad"
|
|
45
|
+
$shadow.s3:
|
|
46
|
+
description: 화면의 다른 요소들보다 가장 높은 계층에 위치할 때 사용됩니다.
|
|
47
|
+
values:
|
|
48
|
+
theme-light:
|
|
49
|
+
type: shadow
|
|
50
|
+
value:
|
|
51
|
+
- offsetX: 0px
|
|
52
|
+
offsetY: 4px
|
|
53
|
+
blur: 16px
|
|
54
|
+
spread: 0px
|
|
55
|
+
color: "#0000001f"
|
|
56
|
+
theme-dark:
|
|
57
|
+
type: shadow
|
|
58
|
+
value:
|
|
59
|
+
- offsetX: 0px
|
|
60
|
+
offsetY: 4px
|
|
61
|
+
blur: 16px
|
|
62
|
+
spread: 0px
|
|
63
|
+
color: "#000000cc"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: timing-function
|
|
4
|
+
name: Timing Function
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$timing-function.linear:
|
|
9
|
+
values:
|
|
10
|
+
default:
|
|
11
|
+
type: cubicBezier
|
|
12
|
+
value: [0, 0, 1, 1]
|
|
13
|
+
$timing-function.easing:
|
|
14
|
+
values:
|
|
15
|
+
default:
|
|
16
|
+
type: cubicBezier
|
|
17
|
+
value: [0.35, 0, 0.35, 1]
|
|
18
|
+
$timing-function.enter:
|
|
19
|
+
values:
|
|
20
|
+
default:
|
|
21
|
+
type: cubicBezier
|
|
22
|
+
value: [0, 0, 0.15, 1]
|
|
23
|
+
$timing-function.exit:
|
|
24
|
+
values:
|
|
25
|
+
default:
|
|
26
|
+
type: cubicBezier
|
|
27
|
+
value: [0.35, 0, 1, 1]
|
|
28
|
+
$timing-function.enter-expressive:
|
|
29
|
+
values:
|
|
30
|
+
default:
|
|
31
|
+
type: cubicBezier
|
|
32
|
+
value: [0.03, 0.4, 0.1, 1]
|
|
33
|
+
$timing-function.exit-expressive:
|
|
34
|
+
values:
|
|
35
|
+
default:
|
|
36
|
+
type: cubicBezier
|
|
37
|
+
value: [0.35, 0, 0.95, 0.55]
|