@seed-design/css 1.2.6 → 1.2.7
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 +111 -0
- package/all.layered.css +111 -0
- package/all.layered.min.css +1 -1
- package/all.min.css +1 -1
- package/package.json +1 -1
- package/recipes/app-bar.css +93 -0
- package/recipes/app-bar.d.ts +1 -1
- package/recipes/app-bar.layered.css +90 -0
- package/recipes/app-bar.layered.mjs +4 -0
- package/recipes/app-bar.mjs +4 -0
- package/recipes/avatar-stack.css +7 -0
- package/recipes/avatar-stack.d.ts +1 -1
- package/recipes/avatar-stack.layered.css +9 -0
- package/recipes/avatar-stack.layered.mjs +1 -0
- package/recipes/avatar-stack.mjs +1 -0
- package/recipes/avatar.css +10 -0
- package/recipes/avatar.d.ts +1 -1
- package/recipes/avatar.layered.css +12 -0
- package/recipes/avatar.layered.mjs +1 -0
- package/recipes/avatar.mjs +1 -0
- package/vars/color/bg.d.ts +5 -5
- package/vars/component/avatar-stack.d.ts +10 -0
- package/vars/component/avatar-stack.mjs +10 -0
- package/vars/component/avatar.d.ts +42 -0
- package/vars/component/avatar.mjs +16 -0
package/package.json
CHANGED
package/recipes/app-bar.css
CHANGED
|
@@ -230,6 +230,99 @@
|
|
|
230
230
|
opacity: 1;
|
|
231
231
|
transition: transform 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99), opacity 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
232
232
|
}
|
|
233
|
+
[data-global-transition-state=enter-active] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
234
|
+
animation: seed-enter;
|
|
235
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
236
|
+
animation-duration: 350ms;
|
|
237
|
+
--seed-enter-translate-x: 0;
|
|
238
|
+
--seed-enter-translate-y: 0;
|
|
239
|
+
--seed-enter-opacity: 0;
|
|
240
|
+
--seed-enter-scale: 1;
|
|
241
|
+
opacity: 1;
|
|
242
|
+
}
|
|
243
|
+
[data-global-transition-state=exit-active] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
244
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * 0.15), 0, 0);
|
|
245
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
246
|
+
animation: seed-exit;
|
|
247
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
248
|
+
animation-duration: 350ms;
|
|
249
|
+
animation-fill-mode: forwards;
|
|
250
|
+
--seed-exit-translate-x: 0;
|
|
251
|
+
--seed-exit-translate-y: 0;
|
|
252
|
+
--seed-exit-opacity: 0;
|
|
253
|
+
--seed-exit-scale: 1;
|
|
254
|
+
}
|
|
255
|
+
[data-global-transition-state=enter-done] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
256
|
+
animation: seed-enter;
|
|
257
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
258
|
+
animation-duration: 350ms;
|
|
259
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * 0.15);
|
|
260
|
+
--seed-enter-translate-y: 0;
|
|
261
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
262
|
+
--seed-enter-scale: 1;
|
|
263
|
+
opacity: 1;
|
|
264
|
+
}
|
|
265
|
+
[data-swipe-back-state=swiping] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
266
|
+
animation: none;
|
|
267
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * 0.15), 0, 0);
|
|
268
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
269
|
+
}
|
|
270
|
+
[data-swipe-back-state=canceling] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
271
|
+
animation: none !important;
|
|
272
|
+
opacity: 1;
|
|
273
|
+
transition: transform 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99), opacity 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
274
|
+
}
|
|
275
|
+
[data-swipe-back-state=completing] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
276
|
+
animation: none !important;
|
|
277
|
+
opacity: 0;
|
|
278
|
+
transition: transform 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99), opacity 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
279
|
+
}
|
|
280
|
+
[data-global-transition-state=enter-active][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
281
|
+
opacity: 1;
|
|
282
|
+
animation: seed-exit;
|
|
283
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
284
|
+
animation-duration: 350ms;
|
|
285
|
+
animation-fill-mode: forwards;
|
|
286
|
+
--seed-exit-translate-x: 0;
|
|
287
|
+
--seed-exit-translate-y: 0;
|
|
288
|
+
--seed-exit-opacity: 0;
|
|
289
|
+
--seed-exit-scale: 1;
|
|
290
|
+
}
|
|
291
|
+
[data-global-transition-state=exit-active][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
292
|
+
animation: seed-enter;
|
|
293
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
294
|
+
animation-duration: 350ms;
|
|
295
|
+
--seed-enter-translate-x: 0;
|
|
296
|
+
--seed-enter-translate-y: 0;
|
|
297
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
298
|
+
--seed-enter-scale: 1;
|
|
299
|
+
opacity: 1;
|
|
300
|
+
}
|
|
301
|
+
[data-global-transition-state=enter-done][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
302
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
303
|
+
animation: seed-exit;
|
|
304
|
+
animation-timing-function: cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
305
|
+
animation-duration: 350ms;
|
|
306
|
+
animation-fill-mode: forwards;
|
|
307
|
+
--seed-exit-translate-x: 0;
|
|
308
|
+
--seed-exit-translate-y: 0;
|
|
309
|
+
--seed-exit-opacity: 0;
|
|
310
|
+
--seed-exit-scale: 1;
|
|
311
|
+
}
|
|
312
|
+
[data-swipe-back-state=swiping] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
313
|
+
animation: none;
|
|
314
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
315
|
+
}
|
|
316
|
+
[data-swipe-back-state=canceling] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
317
|
+
animation: none !important;
|
|
318
|
+
opacity: 0;
|
|
319
|
+
transition: transform 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99), opacity 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
320
|
+
}
|
|
321
|
+
[data-swipe-back-state=completing] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
322
|
+
animation: none !important;
|
|
323
|
+
opacity: 1;
|
|
324
|
+
transition: transform 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99), opacity 350ms cubic-bezier(0.2, 0.1, 0.21, 0.99);
|
|
325
|
+
}
|
|
233
326
|
[data-global-transition-state=enter-active] .seed-app-bar__root--transitionStyle_fadeFromBottomAndroid[data-activity-is-top] {
|
|
234
327
|
animation: seed-enter;
|
|
235
328
|
animation-timing-function: cubic-bezier(0.23, 0.1, 0.32, 1);
|
package/recipes/app-bar.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare type AppBarVariantMap = {
|
|
|
23
23
|
|
|
24
24
|
export declare type AppBarVariantProps = Partial<AppBarVariant>;
|
|
25
25
|
|
|
26
|
-
export declare type AppBarSlotName = "root" | "left" | "right" | "iconButton" | "icon";
|
|
26
|
+
export declare type AppBarSlotName = "root" | "left" | "right" | "iconButton" | "icon" | "custom";
|
|
27
27
|
|
|
28
28
|
export declare const appBarVariantMap: AppBarVariantMap;
|
|
29
29
|
|
|
@@ -242,6 +242,96 @@
|
|
|
242
242
|
animation: none !important;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
+
[data-global-transition-state="enter-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
246
|
+
--seed-enter-translate-x: 0;
|
|
247
|
+
--seed-enter-translate-y: 0;
|
|
248
|
+
--seed-enter-opacity: 0;
|
|
249
|
+
--seed-enter-scale: 1;
|
|
250
|
+
opacity: 1;
|
|
251
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
[data-global-transition-state="exit-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
255
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
256
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
257
|
+
--seed-exit-translate-x: 0;
|
|
258
|
+
--seed-exit-translate-y: 0;
|
|
259
|
+
--seed-exit-opacity: 0;
|
|
260
|
+
--seed-exit-scale: 1;
|
|
261
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
[data-global-transition-state="enter-done"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
265
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .15);
|
|
266
|
+
--seed-enter-translate-y: 0;
|
|
267
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
268
|
+
--seed-enter-scale: 1;
|
|
269
|
+
opacity: 1;
|
|
270
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
274
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
275
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
276
|
+
animation: none;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
280
|
+
opacity: 1;
|
|
281
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
282
|
+
animation: none !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
286
|
+
opacity: 0;
|
|
287
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
288
|
+
animation: none !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
292
|
+
opacity: 1;
|
|
293
|
+
--seed-exit-translate-x: 0;
|
|
294
|
+
--seed-exit-translate-y: 0;
|
|
295
|
+
--seed-exit-opacity: 0;
|
|
296
|
+
--seed-exit-scale: 1;
|
|
297
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
301
|
+
--seed-enter-translate-x: 0;
|
|
302
|
+
--seed-enter-translate-y: 0;
|
|
303
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
304
|
+
--seed-enter-scale: 1;
|
|
305
|
+
opacity: 1;
|
|
306
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
310
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
311
|
+
--seed-exit-translate-x: 0;
|
|
312
|
+
--seed-exit-translate-y: 0;
|
|
313
|
+
--seed-exit-opacity: 0;
|
|
314
|
+
--seed-exit-scale: 1;
|
|
315
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
319
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
320
|
+
animation: none;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
324
|
+
opacity: 0;
|
|
325
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
326
|
+
animation: none !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
330
|
+
opacity: 1;
|
|
331
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
332
|
+
animation: none !important;
|
|
333
|
+
}
|
|
334
|
+
|
|
245
335
|
[data-global-transition-state="enter-active"] .seed-app-bar__root--transitionStyle_fadeFromBottomAndroid[data-activity-is-top] {
|
|
246
336
|
--seed-enter-translate-x: 0;
|
|
247
337
|
--seed-enter-translate-y: 8vh;
|
package/recipes/app-bar.mjs
CHANGED
package/recipes/avatar-stack.css
CHANGED
|
@@ -43,6 +43,13 @@
|
|
|
43
43
|
clip-path: inset(-2px);
|
|
44
44
|
box-shadow: 0 0 0 2px var(--seed-color-bg-layer-default)
|
|
45
45
|
}
|
|
46
|
+
.seed-avatar-stack__item--size_56:not(:first-child) {
|
|
47
|
+
margin-left: -13px
|
|
48
|
+
}
|
|
49
|
+
.seed-avatar-stack__item--size_56 {
|
|
50
|
+
clip-path: inset(-3px);
|
|
51
|
+
box-shadow: 0 0 0 3px var(--seed-color-bg-layer-default)
|
|
52
|
+
}
|
|
46
53
|
.seed-avatar-stack__item--size_64:not(:first-child) {
|
|
47
54
|
margin-left: -16px
|
|
48
55
|
}
|
|
@@ -56,6 +56,15 @@
|
|
|
56
56
|
box-shadow: 0 0 0 2px var(--seed-color-bg-layer-default);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
.seed-avatar-stack__item--size_56:not(:first-child) {
|
|
60
|
+
margin-left: -13px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.seed-avatar-stack__item--size_56 {
|
|
64
|
+
clip-path: inset(-3px);
|
|
65
|
+
box-shadow: 0 0 0 3px var(--seed-color-bg-layer-default);
|
|
66
|
+
}
|
|
67
|
+
|
|
59
68
|
.seed-avatar-stack__item--size_64:not(:first-child) {
|
|
60
69
|
margin-left: -16px;
|
|
61
70
|
}
|
package/recipes/avatar-stack.mjs
CHANGED
package/recipes/avatar.css
CHANGED
|
@@ -137,6 +137,16 @@
|
|
|
137
137
|
--badge-size: 18px;
|
|
138
138
|
--badge-offset: 30px;
|
|
139
139
|
}
|
|
140
|
+
.seed-avatar__root--size_56 {
|
|
141
|
+
--avatar-size: 56px;
|
|
142
|
+
--avatar-stroke-width: 1px;
|
|
143
|
+
--badge-mask-size: 24px;
|
|
144
|
+
--badge-mask-offset: 34px;
|
|
145
|
+
}
|
|
146
|
+
.seed-avatar__badge--size_56 {
|
|
147
|
+
--badge-size: 20px;
|
|
148
|
+
--badge-offset: 36px;
|
|
149
|
+
}
|
|
140
150
|
.seed-avatar__root--size_64 {
|
|
141
151
|
--avatar-size: 64px;
|
|
142
152
|
--avatar-stroke-width: 1px;
|
package/recipes/avatar.d.ts
CHANGED
|
@@ -152,6 +152,18 @@
|
|
|
152
152
|
--badge-offset: 30px;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
+
.seed-avatar__root--size_56 {
|
|
156
|
+
--avatar-size: 56px;
|
|
157
|
+
--avatar-stroke-width: 1px;
|
|
158
|
+
--badge-mask-size: 24px;
|
|
159
|
+
--badge-mask-offset: 34px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.seed-avatar__badge--size_56 {
|
|
163
|
+
--badge-size: 20px;
|
|
164
|
+
--badge-offset: 36px;
|
|
165
|
+
}
|
|
166
|
+
|
|
155
167
|
.seed-avatar__root--size_64 {
|
|
156
168
|
--avatar-size: 64px;
|
|
157
169
|
--avatar-stroke-width: 1px;
|
package/recipes/avatar.mjs
CHANGED
package/vars/color/bg.d.ts
CHANGED
|
@@ -23,17 +23,17 @@ export declare const informativeSolidPressed = "var(--seed-color-bg-informative-
|
|
|
23
23
|
export declare const informativeWeak = "var(--seed-color-bg-informative-weak)";
|
|
24
24
|
/** 사용자에게 유용한 정보를 제공하거나 상태를 설명할 때 사용됩니다. (weak-pressed) */
|
|
25
25
|
export declare const informativeWeakPressed = "var(--seed-color-bg-informative-weak-pressed)";
|
|
26
|
-
/** 가장 낮은 0단계의 '대지'입니다.
|
|
26
|
+
/** 가장 낮은 0단계의 '대지'입니다. 화면 가장 깊은 곳에 위치하는 전체 배경색입니다. */
|
|
27
27
|
export declare const layerBasement = "var(--seed-color-bg-layer-basement)";
|
|
28
|
-
/** basement 바로 위에 놓이는 기본 표면입니다. 대부분의 스크린
|
|
28
|
+
/** basement 바로 위에 놓이는 기본 표면입니다. 대부분의 스크린 콘텐츠(List, TextField 등)가 이 레이어 위에서 표현됩니다. */
|
|
29
29
|
export declare const layerDefault = "var(--seed-color-bg-layer-default)";
|
|
30
|
-
/** basement 바로 위에 놓이는 기본 표면입니다. 대부분의 스크린
|
|
30
|
+
/** basement 바로 위에 놓이는 기본 표면입니다. 대부분의 스크린 콘텐츠(List, TextField 등)가 이 레이어 위에서 표현됩니다. (pressed) */
|
|
31
31
|
export declare const layerDefaultPressed = "var(--seed-color-bg-layer-default-pressed)";
|
|
32
32
|
/** @deprecated `@seed-design/css@1.3.0`에서 제거될 예정입니다. */
|
|
33
33
|
export declare const layerFill = "var(--seed-color-bg-layer-fill)";
|
|
34
|
-
/**
|
|
34
|
+
/** 화면의 모든 콘텐츠 위를 덮으며(floating) 나타나는 임시 레이어입니다. 사용자의 상호작용을 필요로 하는 모달(Modal)성 요소들이 여기에 속합니다. */
|
|
35
35
|
export declare const layerFloating = "var(--seed-color-bg-layer-floating)";
|
|
36
|
-
/**
|
|
36
|
+
/** 화면의 모든 콘텐츠 위를 덮으며(floating) 나타나는 임시 레이어입니다. 사용자의 상호작용을 필요로 하는 모달(Modal)성 요소들이 여기에 속합니다. (pressed) */
|
|
37
37
|
export declare const layerFloatingPressed = "var(--seed-color-bg-layer-floating-pressed)";
|
|
38
38
|
export declare const magicWeak = "var(--seed-color-bg-magic-weak)";
|
|
39
39
|
/** 일반적인 콘텐츠에 사용되는 기본 색상입니다. (inverted) */
|
|
@@ -7,6 +7,9 @@ export declare const vars: {
|
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
|
+
/**
|
|
11
|
+
* 대표 사용처: 댓글을 남긴 사용자
|
|
12
|
+
*/
|
|
10
13
|
"size20": {
|
|
11
14
|
"enabled": {
|
|
12
15
|
"root": {
|
|
@@ -15,6 +18,9 @@ export declare const vars: {
|
|
|
15
18
|
}
|
|
16
19
|
}
|
|
17
20
|
},
|
|
21
|
+
/**
|
|
22
|
+
* 대표 사용처: 답글 프로필
|
|
23
|
+
*/
|
|
18
24
|
"size24": {
|
|
19
25
|
"enabled": {
|
|
20
26
|
"root": {
|
|
@@ -33,6 +39,9 @@ export declare const vars: {
|
|
|
33
39
|
}
|
|
34
40
|
}
|
|
35
41
|
},
|
|
42
|
+
/**
|
|
43
|
+
* 대표 사용처: 댓글 프로필
|
|
44
|
+
*/
|
|
36
45
|
"size36": {
|
|
37
46
|
"enabled": {
|
|
38
47
|
"root": {
|
|
@@ -51,6 +60,9 @@ export declare const vars: {
|
|
|
51
60
|
}
|
|
52
61
|
}
|
|
53
62
|
},
|
|
63
|
+
/**
|
|
64
|
+
* 대표 사용처: 게시글 상세 내 프로필
|
|
65
|
+
*/
|
|
54
66
|
"size42": {
|
|
55
67
|
"enabled": {
|
|
56
68
|
"root": {
|
|
@@ -69,6 +81,9 @@ export declare const vars: {
|
|
|
69
81
|
}
|
|
70
82
|
}
|
|
71
83
|
},
|
|
84
|
+
/**
|
|
85
|
+
* 대표 사용처: 작은 리스트
|
|
86
|
+
*/
|
|
72
87
|
"size48": {
|
|
73
88
|
"enabled": {
|
|
74
89
|
"root": {
|
|
@@ -87,6 +102,30 @@ export declare const vars: {
|
|
|
87
102
|
}
|
|
88
103
|
}
|
|
89
104
|
},
|
|
105
|
+
/**
|
|
106
|
+
* 대표 사용처: 큰 리스트
|
|
107
|
+
*/
|
|
108
|
+
"size56": {
|
|
109
|
+
"enabled": {
|
|
110
|
+
"root": {
|
|
111
|
+
"size": "56px",
|
|
112
|
+
"strokeWidth": "1px"
|
|
113
|
+
},
|
|
114
|
+
/** size=20에서는 지원되지 않습니다. */
|
|
115
|
+
"badgeMask": {
|
|
116
|
+
"offset": "34px",
|
|
117
|
+
"size": "24px"
|
|
118
|
+
},
|
|
119
|
+
/** size=20에서는 지원되지 않습니다. */
|
|
120
|
+
"badge": {
|
|
121
|
+
"offset": "36px",
|
|
122
|
+
"size": "20px"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
/**
|
|
127
|
+
* 대표 사용처: 프로필 상세, 캐러셀
|
|
128
|
+
*/
|
|
90
129
|
"size64": {
|
|
91
130
|
"enabled": {
|
|
92
131
|
"root": {
|
|
@@ -141,6 +180,9 @@ export declare const vars: {
|
|
|
141
180
|
}
|
|
142
181
|
}
|
|
143
182
|
},
|
|
183
|
+
/**
|
|
184
|
+
* 대표 사용처: 프로필 수정
|
|
185
|
+
*/
|
|
144
186
|
"size108": {
|
|
145
187
|
"enabled": {
|
|
146
188
|
"root": {
|
|
@@ -79,6 +79,22 @@ export const vars = {
|
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
|
+
"size56": {
|
|
83
|
+
"enabled": {
|
|
84
|
+
"root": {
|
|
85
|
+
"size": "56px",
|
|
86
|
+
"strokeWidth": "1px"
|
|
87
|
+
},
|
|
88
|
+
"badgeMask": {
|
|
89
|
+
"offset": "34px",
|
|
90
|
+
"size": "24px"
|
|
91
|
+
},
|
|
92
|
+
"badge": {
|
|
93
|
+
"offset": "36px",
|
|
94
|
+
"size": "20px"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
82
98
|
"size64": {
|
|
83
99
|
"enabled": {
|
|
84
100
|
"root": {
|