@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.
Files changed (91) hide show
  1. package/README.md +10 -0
  2. package/collections.yaml +24 -0
  3. package/color.yaml +855 -0
  4. package/components/action-button.yaml +460 -0
  5. package/components/action-chip.yaml +150 -0
  6. package/components/action-sheet-close-button.yaml +45 -0
  7. package/components/action-sheet-item.yaml +52 -0
  8. package/components/action-sheet.yaml +115 -0
  9. package/components/avatar-stack.yaml +86 -0
  10. package/components/avatar.yaml +161 -0
  11. package/components/badge.yaml +210 -0
  12. package/components/bottom-sheet-close-button.yaml +38 -0
  13. package/components/bottom-sheet-handle.yaml +48 -0
  14. package/components/bottom-sheet.yaml +156 -0
  15. package/components/callout.yaml +213 -0
  16. package/components/checkbox-group.yaml +17 -0
  17. package/components/checkbox.yaml +59 -0
  18. package/components/checkmark.yaml +152 -0
  19. package/components/chip-tablist.yaml +28 -0
  20. package/components/chip.yaml +267 -0
  21. package/components/content-placeholder.yaml +45 -0
  22. package/components/contextual-floating-button.yaml +161 -0
  23. package/components/control-chip.yaml +169 -0
  24. package/components/dialog.yaml +131 -0
  25. package/components/divider.yaml +17 -0
  26. package/components/extended-action-sheet-close-button.yaml +48 -0
  27. package/components/extended-action-sheet-item.yaml +67 -0
  28. package/components/extended-action-sheet.yaml +134 -0
  29. package/components/extended-fab.yaml +109 -0
  30. package/components/fab.yaml +46 -0
  31. package/components/field-label.yaml +33 -0
  32. package/components/field.yaml +159 -0
  33. package/components/floating-action-button.yaml +99 -0
  34. package/components/help-bubble.yaml +127 -0
  35. package/components/identity-placeholder.yaml +23 -0
  36. package/components/image-frame-floater.yaml +18 -0
  37. package/components/image-frame-indicator.yaml +42 -0
  38. package/components/image-frame-reaction-button.yaml +60 -0
  39. package/components/image-frame.yaml +37 -0
  40. package/components/inline-banner.yaml +197 -0
  41. package/components/input-button.yaml +171 -0
  42. package/components/link-content.yaml +61 -0
  43. package/components/list-header.yaml +43 -0
  44. package/components/list-item.yaml +149 -0
  45. package/components/manner-temp-badge.yaml +102 -0
  46. package/components/manner-temp.yaml +80 -0
  47. package/components/menu-item.yaml +156 -0
  48. package/components/menu-sheet-close-button.yaml +48 -0
  49. package/components/menu-sheet-item.yaml +104 -0
  50. package/components/menu-sheet.yaml +136 -0
  51. package/components/menu.yaml +117 -0
  52. package/components/notification-badge.yaml +74 -0
  53. package/components/page-banner.yaml +302 -0
  54. package/components/progress-circle.yaml +105 -0
  55. package/components/radio-group.yaml +17 -0
  56. package/components/radio.yaml +59 -0
  57. package/components/radiomark.yaml +113 -0
  58. package/components/reaction-button.yaml +161 -0
  59. package/components/scroll-fog.yaml +23 -0
  60. package/components/segmented-control-indicator.yaml +38 -0
  61. package/components/segmented-control-item.yaml +76 -0
  62. package/components/segmented-control.yaml +23 -0
  63. package/components/select-box-checkmark.yaml +52 -0
  64. package/components/select-box-group.yaml +20 -0
  65. package/components/select-box.yaml +176 -0
  66. package/components/skeleton.yaml +73 -0
  67. package/components/slider-thumb.yaml +45 -0
  68. package/components/slider-tick.yaml +27 -0
  69. package/components/slider.yaml +169 -0
  70. package/components/snackbar.yaml +137 -0
  71. package/components/switch.yaml +66 -0
  72. package/components/switchmark.yaml +147 -0
  73. package/components/tab.yaml +57 -0
  74. package/components/tablist.yaml +64 -0
  75. package/components/tag-group-item.yaml +119 -0
  76. package/components/tag-group.yaml +40 -0
  77. package/components/text-button.yaml +46 -0
  78. package/components/text-input.yaml +234 -0
  79. package/components/toggle-button.yaml +201 -0
  80. package/components/top-navigation.yaml +106 -0
  81. package/components/typography.yaml +380 -0
  82. package/dimension.yaml +88 -0
  83. package/duration.yaml +29 -0
  84. package/font-size.yaml +77 -0
  85. package/font-weight.yaml +16 -0
  86. package/gradient.yaml +134 -0
  87. package/line-height.yaml +77 -0
  88. package/package.json +20 -0
  89. package/radius.yaml +40 -0
  90. package/shadow.yaml +63 -0
  91. package/timing-function.yaml +37 -0
@@ -0,0 +1,302 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: page-banner
5
+ name: Page Banner
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ paddingX:
12
+ type: dimension
13
+ paddingY:
14
+ type: dimension
15
+ minHeight:
16
+ type: dimension
17
+ color:
18
+ type: color
19
+ gradient:
20
+ type: gradient
21
+ prefixIcon:
22
+ description: 아이콘은 Fill 타입 사용을 권장합니다.
23
+ properties:
24
+ size:
25
+ type: dimension
26
+ marginRight:
27
+ type: dimension
28
+ color:
29
+ type: color
30
+ content:
31
+ properties:
32
+ gap:
33
+ type: dimension
34
+ title:
35
+ properties:
36
+ fontSize:
37
+ type: dimension
38
+ lineHeight:
39
+ type: dimension
40
+ fontWeight:
41
+ type: number
42
+ color:
43
+ type: color
44
+ description:
45
+ properties:
46
+ fontSize:
47
+ type: dimension
48
+ lineHeight:
49
+ type: dimension
50
+ fontWeight:
51
+ type: number
52
+ color:
53
+ type: color
54
+ button:
55
+ properties:
56
+ targetHeight:
57
+ type: dimension
58
+ fontSize:
59
+ type: dimension
60
+ lineHeight:
61
+ type: dimension
62
+ fontWeight:
63
+ type: number
64
+ color:
65
+ type: color
66
+ suffixIcon:
67
+ properties:
68
+ size:
69
+ type: dimension
70
+ targetSize:
71
+ type: dimension
72
+ marginLeft:
73
+ type: dimension
74
+ color:
75
+ type: color
76
+ variants:
77
+ variant:
78
+ values:
79
+ weak:
80
+ description: 배경색이 연한 스타일입니다.
81
+ solid:
82
+ description: 배경색이 진한 스타일입니다.
83
+ tone:
84
+ values:
85
+ magic:
86
+ description: AI 기능을 나타냅니다. variant=solid와 조합하여 사용하지 않습니다.
87
+ definitions:
88
+ base:
89
+ enabled:
90
+ root:
91
+ paddingX: $dimension.x4
92
+ paddingY: $dimension.x2_5
93
+ minHeight: $dimension.x10
94
+ prefixIcon:
95
+ size: $dimension.x4
96
+ marginRight: $dimension.x2
97
+ content:
98
+ gap: $dimension.x1_5
99
+ title:
100
+ fontSize: $font-size.t4
101
+ lineHeight: $line-height.t4
102
+ fontWeight: $font-weight.bold
103
+ description:
104
+ fontSize: $font-size.t4
105
+ lineHeight: $line-height.t4
106
+ fontWeight: $font-weight.medium
107
+ button:
108
+ targetHeight: $dimension.x10
109
+ fontSize: $font-size.t3
110
+ lineHeight: $line-height.t3
111
+ fontWeight: $font-weight.bold
112
+ suffixIcon:
113
+ size: $dimension.x4
114
+ targetSize: $dimension.x10
115
+ marginLeft: $dimension.x2
116
+ tone=neutral, variant=weak:
117
+ enabled:
118
+ root:
119
+ color: $color.bg.neutral-weak
120
+ prefixIcon:
121
+ color: $color.fg.neutral
122
+ title:
123
+ color: $color.fg.neutral
124
+ description:
125
+ color: $color.fg.neutral
126
+ button:
127
+ color: $color.fg.neutral
128
+ suffixIcon:
129
+ color: $color.fg.neutral
130
+ pressed:
131
+ root:
132
+ color: $color.bg.neutral-weak-pressed
133
+ tone=neutral, variant=solid:
134
+ enabled:
135
+ root:
136
+ color: $color.bg.neutral-inverted
137
+ prefixIcon:
138
+ color: $color.fg.neutral-inverted
139
+ title:
140
+ color: $color.fg.neutral-inverted
141
+ description:
142
+ color: $color.fg.neutral-inverted
143
+ button:
144
+ color: $color.fg.neutral-inverted
145
+ suffixIcon:
146
+ color: $color.fg.neutral-inverted
147
+ pressed:
148
+ root:
149
+ color: $color.bg.neutral-inverted-pressed
150
+ tone=positive, variant=weak:
151
+ enabled:
152
+ root:
153
+ color: $color.bg.positive-weak
154
+ prefixIcon:
155
+ color: $color.fg.positive-contrast
156
+ title:
157
+ color: $color.fg.positive-contrast
158
+ description:
159
+ color: $color.fg.positive-contrast
160
+ button:
161
+ color: $color.fg.positive-contrast
162
+ suffixIcon:
163
+ color: $color.fg.positive-contrast
164
+ pressed:
165
+ root:
166
+ color: $color.bg.positive-weak-pressed
167
+ tone=positive, variant=solid:
168
+ enabled:
169
+ root:
170
+ color: $color.bg.positive-solid
171
+ prefixIcon:
172
+ color: $color.palette.static-white
173
+ title:
174
+ color: $color.palette.static-white
175
+ description:
176
+ color: $color.palette.static-white
177
+ button:
178
+ color: $color.palette.static-white
179
+ suffixIcon:
180
+ color: $color.palette.static-white
181
+ pressed:
182
+ root:
183
+ color: $color.bg.positive-solid-pressed
184
+ tone=informative, variant=weak:
185
+ enabled:
186
+ root:
187
+ color: $color.bg.informative-weak
188
+ prefixIcon:
189
+ color: $color.fg.informative-contrast
190
+ title:
191
+ color: $color.fg.informative-contrast
192
+ description:
193
+ color: $color.fg.informative-contrast
194
+ button:
195
+ color: $color.fg.informative-contrast
196
+ suffixIcon:
197
+ color: $color.fg.informative-contrast
198
+ pressed:
199
+ root:
200
+ color: $color.bg.informative-weak-pressed
201
+ tone=informative, variant=solid:
202
+ enabled:
203
+ root:
204
+ color: $color.bg.informative-solid
205
+ prefixIcon:
206
+ color: $color.palette.static-white
207
+ title:
208
+ color: $color.palette.static-white
209
+ description:
210
+ color: $color.palette.static-white
211
+ button:
212
+ color: $color.palette.static-white
213
+ suffixIcon:
214
+ color: $color.palette.static-white
215
+ pressed:
216
+ root:
217
+ color: $color.bg.informative-solid-pressed
218
+ tone=warning, variant=weak:
219
+ enabled:
220
+ root:
221
+ color: $color.bg.warning-weak
222
+ prefixIcon:
223
+ color: $color.fg.warning-contrast
224
+ title:
225
+ color: $color.fg.warning-contrast
226
+ description:
227
+ color: $color.fg.warning-contrast
228
+ button:
229
+ color: $color.fg.warning-contrast
230
+ suffixIcon:
231
+ color: $color.fg.warning-contrast
232
+ pressed:
233
+ root:
234
+ color: $color.bg.warning-weak-pressed
235
+ tone=warning, variant=solid:
236
+ enabled:
237
+ root:
238
+ color: $color.bg.warning-solid
239
+ prefixIcon:
240
+ color: $color.palette.static-black-alpha-900
241
+ title:
242
+ color: $color.palette.static-black-alpha-900
243
+ description:
244
+ color: $color.palette.static-black-alpha-900
245
+ button:
246
+ color: $color.palette.static-black-alpha-900
247
+ suffixIcon:
248
+ color: $color.palette.static-black-alpha-900
249
+ pressed:
250
+ root:
251
+ color: $color.bg.warning-solid-pressed
252
+ tone=critical, variant=weak:
253
+ enabled:
254
+ root:
255
+ color: $color.bg.critical-weak
256
+ prefixIcon:
257
+ color: $color.fg.critical-contrast
258
+ title:
259
+ color: $color.fg.critical-contrast
260
+ description:
261
+ color: $color.fg.critical-contrast
262
+ button:
263
+ color: $color.fg.critical-contrast
264
+ suffixIcon:
265
+ color: $color.fg.critical-contrast
266
+ pressed:
267
+ root:
268
+ color: $color.bg.critical-weak-pressed
269
+ tone=critical, variant=solid:
270
+ enabled:
271
+ root:
272
+ color: $color.bg.critical-solid
273
+ prefixIcon:
274
+ color: $color.palette.static-white
275
+ title:
276
+ color: $color.palette.static-white
277
+ description:
278
+ color: $color.palette.static-white
279
+ button:
280
+ color: $color.palette.static-white
281
+ suffixIcon:
282
+ color: $color.palette.static-white
283
+ pressed:
284
+ root:
285
+ color: $color.bg.critical-solid-pressed
286
+ tone=magic, variant=weak:
287
+ enabled:
288
+ root:
289
+ gradient: $gradient.glow-magic
290
+ prefixIcon:
291
+ color: $color.fg.neutral
292
+ title:
293
+ color: $color.fg.neutral
294
+ description:
295
+ color: $color.fg.neutral
296
+ button:
297
+ color: $color.fg.neutral
298
+ suffixIcon:
299
+ color: $color.fg.neutral
300
+ pressed:
301
+ root:
302
+ gradient: $gradient.glow-magic-pressed
@@ -0,0 +1,105 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: progress-circle
5
+ name: Progress Circle
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ size:
12
+ type: dimension
13
+ thickness:
14
+ type: dimension
15
+ track:
16
+ properties:
17
+ color:
18
+ type: color
19
+ range:
20
+ properties:
21
+ color:
22
+ type: color
23
+ lengthDuration:
24
+ type: duration
25
+ lengthTimingFunction:
26
+ type: cubicBezier
27
+ rotateDuration:
28
+ type: duration
29
+ headTimingFunction:
30
+ type: cubicBezier
31
+ tailTimingFunction:
32
+ type: cubicBezier
33
+ rotateTimingFunction:
34
+ type: cubicBezier
35
+ variants:
36
+ size:
37
+ values:
38
+ "24":
39
+ description: 특정 요소 안에서 사용하는 경우 사용합니다.
40
+ "40":
41
+ description: 주로 전체 페이지 로딩에 사용합니다.
42
+ tone:
43
+ values:
44
+ neutral:
45
+ description: 가장 보편적으로 사용되며 스타일보다는 로딩 상태의 인식이 더 중요한 경우 사용합니다.
46
+ brand:
47
+ description: 사용자 경험의 초기 단계에서 브랜드 컬러를 통해 주요 전환점을 강조할 때 사용합니다.
48
+ staticWhite:
49
+ description: 화면 전체를 어둡게 덮는 오버레이(Overlay) 위에 로딩 상태를 표시할 때 사용합니다.
50
+ indeterminate:
51
+ values:
52
+ "true":
53
+ description: 대기 시간이 얼마나 남은지 모르는 상황일 때 사용합니다. 계속해서 회전하는 동작을 합니다.
54
+ "false":
55
+ description: 대기 시간이 얼마나 남은지 아는 상황일 때 사용합니다. 진행 상황에 맞춰서 원을 채웁니다.
56
+ definitions:
57
+ size=40:
58
+ enabled:
59
+ root:
60
+ size: $dimension.x10
61
+ thickness: 5px
62
+ size=24:
63
+ enabled:
64
+ root:
65
+ size: $dimension.x6
66
+ thickness: 3px
67
+ indeterminate=false:
68
+ enabled:
69
+ range:
70
+ lengthDuration: 300ms
71
+ lengthTimingFunction:
72
+ type: cubicBezier
73
+ value: [0, 0, 0.15, 1]
74
+ indeterminate=true:
75
+ enabled:
76
+ range:
77
+ lengthDuration: 1.2s
78
+ rotateDuration: 1.2s
79
+ headTimingFunction:
80
+ type: cubicBezier
81
+ value: [0.35, 0, 0.65, 1]
82
+ tailTimingFunction:
83
+ type: cubicBezier
84
+ value: [0.35, 0, 0.65, 0.6]
85
+ rotateTimingFunction:
86
+ type: cubicBezier
87
+ value: [0.35, 0.25, 0.65, 0.75]
88
+ tone=neutral:
89
+ enabled:
90
+ track:
91
+ color: $color.palette.gray-200
92
+ range:
93
+ color: $color.palette.gray-500
94
+ tone=brand:
95
+ enabled:
96
+ track:
97
+ color: $color.palette.carrot-200
98
+ range:
99
+ color: $color.bg.brand-solid
100
+ tone=staticWhite:
101
+ enabled:
102
+ track:
103
+ color: $color.palette.static-white-alpha-300
104
+ range:
105
+ color: $color.palette.static-white
@@ -0,0 +1,17 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: radio-group
5
+ name: Radio Group
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ gapY:
12
+ type: dimension
13
+ definitions:
14
+ base:
15
+ enabled:
16
+ root:
17
+ gapY: $dimension.x1
@@ -0,0 +1,59 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: radio
5
+ name: Radio
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ gap:
12
+ type: dimension
13
+ minHeight:
14
+ type: dimension
15
+ label:
16
+ properties:
17
+ color:
18
+ type: color
19
+ fontWeight:
20
+ type: number
21
+ fontSize:
22
+ type: dimension
23
+ lineHeight:
24
+ type: dimension
25
+ definitions:
26
+ base:
27
+ enabled:
28
+ label:
29
+ color: $color.fg.neutral
30
+ root:
31
+ gap: $dimension.x2
32
+ disabled:
33
+ label:
34
+ color: $color.fg.disabled
35
+
36
+ weight=regular:
37
+ enabled:
38
+ label:
39
+ fontWeight: $font-weight.regular
40
+ weight=bold:
41
+ enabled:
42
+ label:
43
+ fontWeight: $font-weight.bold
44
+
45
+ size=medium:
46
+ enabled:
47
+ root:
48
+ minHeight: $dimension.x8
49
+ label:
50
+ fontSize: $font-size.t4
51
+ lineHeight: $line-height.t4
52
+
53
+ size=large:
54
+ enabled:
55
+ root:
56
+ minHeight: $dimension.x9
57
+ label:
58
+ fontSize: $font-size.t5
59
+ lineHeight: $line-height.t5
@@ -0,0 +1,113 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: radiomark
5
+ name: Radiomark
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ colorDuration:
12
+ type: duration
13
+ colorTimingFunction:
14
+ type: cubicBezier
15
+ size:
16
+ type: dimension
17
+ color:
18
+ type: color
19
+ strokeWidth:
20
+ type: dimension
21
+ strokeColor:
22
+ type: color
23
+ cornerRadius:
24
+ type: dimension
25
+ icon:
26
+ properties:
27
+ size:
28
+ type: dimension
29
+ color:
30
+ type: color
31
+ cornerRadius:
32
+ type: dimension
33
+ variants:
34
+ tone:
35
+ values:
36
+ brand:
37
+ description: "[deprecated] 주요 버튼 등의 핵심 액션과 시각적으로 충돌하기에 더 이상 사용하지 않습니다."
38
+ definitions:
39
+ base:
40
+ enabled:
41
+ root:
42
+ colorDuration: $duration.color-transition
43
+ colorTimingFunction: $timing-function.easing
44
+ strokeWidth: 1px
45
+ strokeColor: $color.stroke.neutral-weak
46
+ cornerRadius: $radius.full
47
+ icon:
48
+ cornerRadius: $radius.full
49
+ enabled,pressed:
50
+ root:
51
+ color: $color.bg.transparent-pressed
52
+ enabled,selected:
53
+ root:
54
+ strokeWidth: 0px
55
+ strokeColor: "#00000000"
56
+
57
+ tone=brand:
58
+ enabled,selected:
59
+ root:
60
+ color: $color.bg.brand-solid
61
+ icon:
62
+ color: $color.palette.static-white
63
+ enabled,selected,pressed:
64
+ root:
65
+ color: $color.bg.brand-solid-pressed
66
+ disabled:
67
+ root:
68
+ color: $color.palette.gray-300
69
+ disabled,selected:
70
+ root:
71
+ color: $color.bg.transparent
72
+ strokeWidth: 1px
73
+ strokeColor: $color.palette.gray-300
74
+ icon:
75
+ color: $color.palette.gray-300
76
+ tone=neutral:
77
+ enabled,selected:
78
+ root:
79
+ color: $color.bg.neutral-inverted
80
+ icon:
81
+ color: $color.fg.neutral-inverted
82
+ enabled,selected,pressed:
83
+ root:
84
+ color: $color.bg.neutral-inverted-pressed
85
+ disabled:
86
+ root:
87
+ color: $color.palette.gray-300
88
+ disabled,selected:
89
+ root:
90
+ color: $color.bg.transparent
91
+ strokeWidth: 1px
92
+ strokeColor: $color.palette.gray-300
93
+ icon:
94
+ color: $color.palette.gray-300
95
+
96
+ size=medium:
97
+ enabled:
98
+ root:
99
+ size: $dimension.x5
100
+ icon:
101
+ size: $dimension.x2
102
+ disabled:
103
+ icon:
104
+ size: $dimension.x2_5
105
+ size=large:
106
+ enabled:
107
+ root:
108
+ size: $dimension.x6
109
+ icon:
110
+ size: $dimension.x2_5
111
+ disabled:
112
+ icon:
113
+ size: $dimension.x3