@remember-web/mixin 0.2.5 → 0.2.6
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/src/typography/const.cjs.js +40 -0
- package/dist/src/typography/const.cjs.js.map +1 -1
- package/dist/src/typography/const.d.ts +40 -0
- package/dist/src/typography/const.d.ts.map +1 -1
- package/dist/src/typography/const.esm.js +40 -0
- package/dist/src/typography/const.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/typography/const.ts +40 -0
|
@@ -53,40 +53,80 @@ var TYPOGRAPHY_STYLES = {
|
|
|
53
53
|
lineHeight: 1.45,
|
|
54
54
|
fontWeight: 400
|
|
55
55
|
},
|
|
56
|
+
UIBody1_B: {
|
|
57
|
+
fontSize: 18,
|
|
58
|
+
lineHeight: 1.45,
|
|
59
|
+
fontWeight: 600
|
|
60
|
+
},
|
|
56
61
|
UIBody2: {
|
|
57
62
|
fontSize: 16,
|
|
58
63
|
lineHeight: 1.45,
|
|
59
64
|
fontWeight: 400
|
|
60
65
|
},
|
|
66
|
+
UIBody2_B: {
|
|
67
|
+
fontSize: 16,
|
|
68
|
+
lineHeight: 1.45,
|
|
69
|
+
fontWeight: 600
|
|
70
|
+
},
|
|
61
71
|
UIBody3: {
|
|
62
72
|
fontSize: 14,
|
|
63
73
|
lineHeight: 1.45,
|
|
64
74
|
fontWeight: 400
|
|
65
75
|
},
|
|
76
|
+
UIBody3_B: {
|
|
77
|
+
fontSize: 14,
|
|
78
|
+
lineHeight: 1.45,
|
|
79
|
+
fontWeight: 600
|
|
80
|
+
},
|
|
66
81
|
ArticleBody1: {
|
|
67
82
|
fontSize: 18,
|
|
68
83
|
lineHeight: 1.55,
|
|
69
84
|
fontWeight: 400
|
|
70
85
|
},
|
|
86
|
+
ArticleBody1_B: {
|
|
87
|
+
fontSize: 18,
|
|
88
|
+
lineHeight: 1.55,
|
|
89
|
+
fontWeight: 600
|
|
90
|
+
},
|
|
71
91
|
ArticleBody2: {
|
|
72
92
|
fontSize: 16,
|
|
73
93
|
lineHeight: 1.6,
|
|
74
94
|
fontWeight: 400
|
|
75
95
|
},
|
|
96
|
+
ArticleBody2_B: {
|
|
97
|
+
fontSize: 16,
|
|
98
|
+
lineHeight: 1.6,
|
|
99
|
+
fontWeight: 600
|
|
100
|
+
},
|
|
76
101
|
ArticleBody3: {
|
|
77
102
|
fontSize: 14,
|
|
78
103
|
lineHeight: 1.6,
|
|
79
104
|
fontWeight: 400
|
|
80
105
|
},
|
|
106
|
+
ArticleBody3_B: {
|
|
107
|
+
fontSize: 14,
|
|
108
|
+
lineHeight: 1.6,
|
|
109
|
+
fontWeight: 600
|
|
110
|
+
},
|
|
81
111
|
Caption1: {
|
|
82
112
|
fontSize: 12,
|
|
83
113
|
lineHeight: 1.35,
|
|
84
114
|
fontWeight: 500
|
|
85
115
|
},
|
|
116
|
+
Caption1_B: {
|
|
117
|
+
fontSize: 12,
|
|
118
|
+
lineHeight: 1.35,
|
|
119
|
+
fontWeight: 600
|
|
120
|
+
},
|
|
86
121
|
Caption2: {
|
|
87
122
|
fontSize: 10,
|
|
88
123
|
lineHeight: 1.35,
|
|
89
124
|
fontWeight: 500
|
|
125
|
+
},
|
|
126
|
+
Caption2_B: {
|
|
127
|
+
fontSize: 10,
|
|
128
|
+
lineHeight: 1.35,
|
|
129
|
+
fontWeight: 600
|
|
90
130
|
}
|
|
91
131
|
};
|
|
92
132
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"const.cjs.js","sources":["../../../src/typography/const.ts"],"sourcesContent":["export const TYPOGRAPHY_STYLES = {\n // Title Style\n DisplayTitle1: {\n fontSize: 48,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle2: {\n fontSize: 40,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle3: {\n fontSize: 32,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n Headline: {\n fontSize: 24,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title1: {\n fontSize: 20,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title2: {\n fontSize: 18,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle1: {\n fontSize: 16,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle2: {\n fontSize: 14,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n DisplayBody: {\n fontSize: 20,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n // Body Style\n UIBody1: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody2: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody3: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n ArticleBody1: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 400,\n },\n ArticleBody2: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody3: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n Caption1: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption2: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n} as const;\n\n/**\n * {@link https://github.com/orioncactus/pretendard#html-1}\n */\nexport const PRETENDARD_FONT_FAMILY =\n \"Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif\";\n"],"names":["TYPOGRAPHY_STYLES","DisplayTitle1","fontSize","lineHeight","fontWeight","DisplayTitle2","DisplayTitle3","Headline","Title1","Title2","SubTitle1","SubTitle2","DisplayBody","UIBody1","UIBody2","UIBody3","ArticleBody1","ArticleBody2","ArticleBody3","Caption1","Caption2","PRETENDARD_FONT_FAMILY"],"mappings":";;AAAO,IAAMA,iBAAiB,GAAG;AAC/B;AACAC,EAAAA,aAAa,EAAE;AACbC,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDC,EAAAA,aAAa,EAAE;AACbH,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDE,EAAAA,aAAa,EAAE;AACbJ,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDG,EAAAA,QAAQ,EAAE;AACRL,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDI,EAAAA,MAAM,EAAE;AACNN,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDK,EAAAA,MAAM,EAAE;AACNP,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDM,EAAAA,SAAS,EAAE;AACTR,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDO,EAAAA,SAAS,EAAE;AACTT,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDQ,EAAAA,WAAW,EAAE;AACXV,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,IAAI;AAChBC,IAAAA,UAAU,EAAE,GAAA;GACb;AACD;AACAS,EAAAA,OAAO,EAAE;AACPX,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,IAAI;AAChBC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDU,EAAAA,
|
|
1
|
+
{"version":3,"file":"const.cjs.js","sources":["../../../src/typography/const.ts"],"sourcesContent":["export const TYPOGRAPHY_STYLES = {\n // Title Style\n DisplayTitle1: {\n fontSize: 48,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle2: {\n fontSize: 40,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle3: {\n fontSize: 32,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n Headline: {\n fontSize: 24,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title1: {\n fontSize: 20,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title2: {\n fontSize: 18,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle1: {\n fontSize: 16,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle2: {\n fontSize: 14,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n DisplayBody: {\n fontSize: 20,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n // Body Style\n UIBody1: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody1_B: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n UIBody2: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody2_B: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n UIBody3: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody3_B: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n ArticleBody1: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 400,\n },\n ArticleBody1_B: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 600,\n },\n ArticleBody2: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody2_B: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 600,\n },\n ArticleBody3: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody3_B: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 600,\n },\n Caption1: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption1_B: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 600,\n },\n Caption2: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption2_B: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 600,\n },\n} as const;\n\n/**\n * {@link https://github.com/orioncactus/pretendard#html-1}\n */\nexport const PRETENDARD_FONT_FAMILY =\n \"Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif\";\n"],"names":["TYPOGRAPHY_STYLES","DisplayTitle1","fontSize","lineHeight","fontWeight","DisplayTitle2","DisplayTitle3","Headline","Title1","Title2","SubTitle1","SubTitle2","DisplayBody","UIBody1","UIBody1_B","UIBody2","UIBody2_B","UIBody3","UIBody3_B","ArticleBody1","ArticleBody1_B","ArticleBody2","ArticleBody2_B","ArticleBody3","ArticleBody3_B","Caption1","Caption1_B","Caption2","Caption2_B","PRETENDARD_FONT_FAMILY"],"mappings":"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"}
|
|
@@ -49,41 +49,81 @@ export declare const TYPOGRAPHY_STYLES: {
|
|
|
49
49
|
readonly lineHeight: 1.45;
|
|
50
50
|
readonly fontWeight: 400;
|
|
51
51
|
};
|
|
52
|
+
readonly UIBody1_B: {
|
|
53
|
+
readonly fontSize: 18;
|
|
54
|
+
readonly lineHeight: 1.45;
|
|
55
|
+
readonly fontWeight: 600;
|
|
56
|
+
};
|
|
52
57
|
readonly UIBody2: {
|
|
53
58
|
readonly fontSize: 16;
|
|
54
59
|
readonly lineHeight: 1.45;
|
|
55
60
|
readonly fontWeight: 400;
|
|
56
61
|
};
|
|
62
|
+
readonly UIBody2_B: {
|
|
63
|
+
readonly fontSize: 16;
|
|
64
|
+
readonly lineHeight: 1.45;
|
|
65
|
+
readonly fontWeight: 600;
|
|
66
|
+
};
|
|
57
67
|
readonly UIBody3: {
|
|
58
68
|
readonly fontSize: 14;
|
|
59
69
|
readonly lineHeight: 1.45;
|
|
60
70
|
readonly fontWeight: 400;
|
|
61
71
|
};
|
|
72
|
+
readonly UIBody3_B: {
|
|
73
|
+
readonly fontSize: 14;
|
|
74
|
+
readonly lineHeight: 1.45;
|
|
75
|
+
readonly fontWeight: 600;
|
|
76
|
+
};
|
|
62
77
|
readonly ArticleBody1: {
|
|
63
78
|
readonly fontSize: 18;
|
|
64
79
|
readonly lineHeight: 1.55;
|
|
65
80
|
readonly fontWeight: 400;
|
|
66
81
|
};
|
|
82
|
+
readonly ArticleBody1_B: {
|
|
83
|
+
readonly fontSize: 18;
|
|
84
|
+
readonly lineHeight: 1.55;
|
|
85
|
+
readonly fontWeight: 600;
|
|
86
|
+
};
|
|
67
87
|
readonly ArticleBody2: {
|
|
68
88
|
readonly fontSize: 16;
|
|
69
89
|
readonly lineHeight: 1.6;
|
|
70
90
|
readonly fontWeight: 400;
|
|
71
91
|
};
|
|
92
|
+
readonly ArticleBody2_B: {
|
|
93
|
+
readonly fontSize: 16;
|
|
94
|
+
readonly lineHeight: 1.6;
|
|
95
|
+
readonly fontWeight: 600;
|
|
96
|
+
};
|
|
72
97
|
readonly ArticleBody3: {
|
|
73
98
|
readonly fontSize: 14;
|
|
74
99
|
readonly lineHeight: 1.6;
|
|
75
100
|
readonly fontWeight: 400;
|
|
76
101
|
};
|
|
102
|
+
readonly ArticleBody3_B: {
|
|
103
|
+
readonly fontSize: 14;
|
|
104
|
+
readonly lineHeight: 1.6;
|
|
105
|
+
readonly fontWeight: 600;
|
|
106
|
+
};
|
|
77
107
|
readonly Caption1: {
|
|
78
108
|
readonly fontSize: 12;
|
|
79
109
|
readonly lineHeight: 1.35;
|
|
80
110
|
readonly fontWeight: 500;
|
|
81
111
|
};
|
|
112
|
+
readonly Caption1_B: {
|
|
113
|
+
readonly fontSize: 12;
|
|
114
|
+
readonly lineHeight: 1.35;
|
|
115
|
+
readonly fontWeight: 600;
|
|
116
|
+
};
|
|
82
117
|
readonly Caption2: {
|
|
83
118
|
readonly fontSize: 10;
|
|
84
119
|
readonly lineHeight: 1.35;
|
|
85
120
|
readonly fontWeight: 500;
|
|
86
121
|
};
|
|
122
|
+
readonly Caption2_B: {
|
|
123
|
+
readonly fontSize: 10;
|
|
124
|
+
readonly lineHeight: 1.35;
|
|
125
|
+
readonly fontWeight: 600;
|
|
126
|
+
};
|
|
87
127
|
};
|
|
88
128
|
/**
|
|
89
129
|
* {@link https://github.com/orioncactus/pretendard#html-1}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"const.d.ts","sourceRoot":"","sources":["../../../src/typography/const.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"const.d.ts","sourceRoot":"","sources":["../../../src/typography/const.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgIpB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,sBAAsB,iOAC6L,CAAC"}
|
|
@@ -51,40 +51,80 @@ var TYPOGRAPHY_STYLES = {
|
|
|
51
51
|
lineHeight: 1.45,
|
|
52
52
|
fontWeight: 400
|
|
53
53
|
},
|
|
54
|
+
UIBody1_B: {
|
|
55
|
+
fontSize: 18,
|
|
56
|
+
lineHeight: 1.45,
|
|
57
|
+
fontWeight: 600
|
|
58
|
+
},
|
|
54
59
|
UIBody2: {
|
|
55
60
|
fontSize: 16,
|
|
56
61
|
lineHeight: 1.45,
|
|
57
62
|
fontWeight: 400
|
|
58
63
|
},
|
|
64
|
+
UIBody2_B: {
|
|
65
|
+
fontSize: 16,
|
|
66
|
+
lineHeight: 1.45,
|
|
67
|
+
fontWeight: 600
|
|
68
|
+
},
|
|
59
69
|
UIBody3: {
|
|
60
70
|
fontSize: 14,
|
|
61
71
|
lineHeight: 1.45,
|
|
62
72
|
fontWeight: 400
|
|
63
73
|
},
|
|
74
|
+
UIBody3_B: {
|
|
75
|
+
fontSize: 14,
|
|
76
|
+
lineHeight: 1.45,
|
|
77
|
+
fontWeight: 600
|
|
78
|
+
},
|
|
64
79
|
ArticleBody1: {
|
|
65
80
|
fontSize: 18,
|
|
66
81
|
lineHeight: 1.55,
|
|
67
82
|
fontWeight: 400
|
|
68
83
|
},
|
|
84
|
+
ArticleBody1_B: {
|
|
85
|
+
fontSize: 18,
|
|
86
|
+
lineHeight: 1.55,
|
|
87
|
+
fontWeight: 600
|
|
88
|
+
},
|
|
69
89
|
ArticleBody2: {
|
|
70
90
|
fontSize: 16,
|
|
71
91
|
lineHeight: 1.6,
|
|
72
92
|
fontWeight: 400
|
|
73
93
|
},
|
|
94
|
+
ArticleBody2_B: {
|
|
95
|
+
fontSize: 16,
|
|
96
|
+
lineHeight: 1.6,
|
|
97
|
+
fontWeight: 600
|
|
98
|
+
},
|
|
74
99
|
ArticleBody3: {
|
|
75
100
|
fontSize: 14,
|
|
76
101
|
lineHeight: 1.6,
|
|
77
102
|
fontWeight: 400
|
|
78
103
|
},
|
|
104
|
+
ArticleBody3_B: {
|
|
105
|
+
fontSize: 14,
|
|
106
|
+
lineHeight: 1.6,
|
|
107
|
+
fontWeight: 600
|
|
108
|
+
},
|
|
79
109
|
Caption1: {
|
|
80
110
|
fontSize: 12,
|
|
81
111
|
lineHeight: 1.35,
|
|
82
112
|
fontWeight: 500
|
|
83
113
|
},
|
|
114
|
+
Caption1_B: {
|
|
115
|
+
fontSize: 12,
|
|
116
|
+
lineHeight: 1.35,
|
|
117
|
+
fontWeight: 600
|
|
118
|
+
},
|
|
84
119
|
Caption2: {
|
|
85
120
|
fontSize: 10,
|
|
86
121
|
lineHeight: 1.35,
|
|
87
122
|
fontWeight: 500
|
|
123
|
+
},
|
|
124
|
+
Caption2_B: {
|
|
125
|
+
fontSize: 10,
|
|
126
|
+
lineHeight: 1.35,
|
|
127
|
+
fontWeight: 600
|
|
88
128
|
}
|
|
89
129
|
};
|
|
90
130
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"const.esm.js","sources":["../../../src/typography/const.ts"],"sourcesContent":["export const TYPOGRAPHY_STYLES = {\n // Title Style\n DisplayTitle1: {\n fontSize: 48,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle2: {\n fontSize: 40,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle3: {\n fontSize: 32,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n Headline: {\n fontSize: 24,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title1: {\n fontSize: 20,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title2: {\n fontSize: 18,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle1: {\n fontSize: 16,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle2: {\n fontSize: 14,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n DisplayBody: {\n fontSize: 20,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n // Body Style\n UIBody1: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody2: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody3: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n ArticleBody1: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 400,\n },\n ArticleBody2: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody3: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n Caption1: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption2: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n} as const;\n\n/**\n * {@link https://github.com/orioncactus/pretendard#html-1}\n */\nexport const PRETENDARD_FONT_FAMILY =\n \"Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif\";\n"],"names":["TYPOGRAPHY_STYLES","DisplayTitle1","fontSize","lineHeight","fontWeight","DisplayTitle2","DisplayTitle3","Headline","Title1","Title2","SubTitle1","SubTitle2","DisplayBody","UIBody1","UIBody2","UIBody3","ArticleBody1","ArticleBody2","ArticleBody3","Caption1","Caption2","PRETENDARD_FONT_FAMILY"],"mappings":"AAAO,IAAMA,iBAAiB,GAAG;AAC/B;AACAC,EAAAA,aAAa,EAAE;AACbC,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDC,EAAAA,aAAa,EAAE;AACbH,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDE,EAAAA,aAAa,EAAE;AACbJ,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDG,EAAAA,QAAQ,EAAE;AACRL,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDI,EAAAA,MAAM,EAAE;AACNN,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDK,EAAAA,MAAM,EAAE;AACNP,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDM,EAAAA,SAAS,EAAE;AACTR,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDO,EAAAA,SAAS,EAAE;AACTT,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,GAAG;AACfC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDQ,EAAAA,WAAW,EAAE;AACXV,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,IAAI;AAChBC,IAAAA,UAAU,EAAE,GAAA;GACb;AACD;AACAS,EAAAA,OAAO,EAAE;AACPX,IAAAA,QAAQ,EAAE,EAAE;AACZC,IAAAA,UAAU,EAAE,IAAI;AAChBC,IAAAA,UAAU,EAAE,GAAA;GACb;AACDU,EAAAA,
|
|
1
|
+
{"version":3,"file":"const.esm.js","sources":["../../../src/typography/const.ts"],"sourcesContent":["export const TYPOGRAPHY_STYLES = {\n // Title Style\n DisplayTitle1: {\n fontSize: 48,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle2: {\n fontSize: 40,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n DisplayTitle3: {\n fontSize: 32,\n lineHeight: 1.3,\n fontWeight: 700,\n },\n Headline: {\n fontSize: 24,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title1: {\n fontSize: 20,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n Title2: {\n fontSize: 18,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle1: {\n fontSize: 16,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n SubTitle2: {\n fontSize: 14,\n lineHeight: 1.3,\n fontWeight: 600,\n },\n DisplayBody: {\n fontSize: 20,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n // Body Style\n UIBody1: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody1_B: {\n fontSize: 18,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n UIBody2: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody2_B: {\n fontSize: 16,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n UIBody3: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 400,\n },\n UIBody3_B: {\n fontSize: 14,\n lineHeight: 1.45,\n fontWeight: 600,\n },\n ArticleBody1: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 400,\n },\n ArticleBody1_B: {\n fontSize: 18,\n lineHeight: 1.55,\n fontWeight: 600,\n },\n ArticleBody2: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody2_B: {\n fontSize: 16,\n lineHeight: 1.6,\n fontWeight: 600,\n },\n ArticleBody3: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 400,\n },\n ArticleBody3_B: {\n fontSize: 14,\n lineHeight: 1.6,\n fontWeight: 600,\n },\n Caption1: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption1_B: {\n fontSize: 12,\n lineHeight: 1.35,\n fontWeight: 600,\n },\n Caption2: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 500,\n },\n Caption2_B: {\n fontSize: 10,\n lineHeight: 1.35,\n fontWeight: 600,\n },\n} as const;\n\n/**\n * {@link https://github.com/orioncactus/pretendard#html-1}\n */\nexport const PRETENDARD_FONT_FAMILY =\n \"Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif\";\n"],"names":["TYPOGRAPHY_STYLES","DisplayTitle1","fontSize","lineHeight","fontWeight","DisplayTitle2","DisplayTitle3","Headline","Title1","Title2","SubTitle1","SubTitle2","DisplayBody","UIBody1","UIBody1_B","UIBody2","UIBody2_B","UIBody3","UIBody3_B","ArticleBody1","ArticleBody1_B","ArticleBody2","ArticleBody2_B","ArticleBody3","ArticleBody3_B","Caption1","Caption1_B","Caption2","Caption2_B","PRETENDARD_FONT_FAMILY"],"mappings":"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"}
|
package/package.json
CHANGED
package/src/typography/const.ts
CHANGED
|
@@ -51,41 +51,81 @@ export const TYPOGRAPHY_STYLES = {
|
|
|
51
51
|
lineHeight: 1.45,
|
|
52
52
|
fontWeight: 400,
|
|
53
53
|
},
|
|
54
|
+
UIBody1_B: {
|
|
55
|
+
fontSize: 18,
|
|
56
|
+
lineHeight: 1.45,
|
|
57
|
+
fontWeight: 600,
|
|
58
|
+
},
|
|
54
59
|
UIBody2: {
|
|
55
60
|
fontSize: 16,
|
|
56
61
|
lineHeight: 1.45,
|
|
57
62
|
fontWeight: 400,
|
|
58
63
|
},
|
|
64
|
+
UIBody2_B: {
|
|
65
|
+
fontSize: 16,
|
|
66
|
+
lineHeight: 1.45,
|
|
67
|
+
fontWeight: 600,
|
|
68
|
+
},
|
|
59
69
|
UIBody3: {
|
|
60
70
|
fontSize: 14,
|
|
61
71
|
lineHeight: 1.45,
|
|
62
72
|
fontWeight: 400,
|
|
63
73
|
},
|
|
74
|
+
UIBody3_B: {
|
|
75
|
+
fontSize: 14,
|
|
76
|
+
lineHeight: 1.45,
|
|
77
|
+
fontWeight: 600,
|
|
78
|
+
},
|
|
64
79
|
ArticleBody1: {
|
|
65
80
|
fontSize: 18,
|
|
66
81
|
lineHeight: 1.55,
|
|
67
82
|
fontWeight: 400,
|
|
68
83
|
},
|
|
84
|
+
ArticleBody1_B: {
|
|
85
|
+
fontSize: 18,
|
|
86
|
+
lineHeight: 1.55,
|
|
87
|
+
fontWeight: 600,
|
|
88
|
+
},
|
|
69
89
|
ArticleBody2: {
|
|
70
90
|
fontSize: 16,
|
|
71
91
|
lineHeight: 1.6,
|
|
72
92
|
fontWeight: 400,
|
|
73
93
|
},
|
|
94
|
+
ArticleBody2_B: {
|
|
95
|
+
fontSize: 16,
|
|
96
|
+
lineHeight: 1.6,
|
|
97
|
+
fontWeight: 600,
|
|
98
|
+
},
|
|
74
99
|
ArticleBody3: {
|
|
75
100
|
fontSize: 14,
|
|
76
101
|
lineHeight: 1.6,
|
|
77
102
|
fontWeight: 400,
|
|
78
103
|
},
|
|
104
|
+
ArticleBody3_B: {
|
|
105
|
+
fontSize: 14,
|
|
106
|
+
lineHeight: 1.6,
|
|
107
|
+
fontWeight: 600,
|
|
108
|
+
},
|
|
79
109
|
Caption1: {
|
|
80
110
|
fontSize: 12,
|
|
81
111
|
lineHeight: 1.35,
|
|
82
112
|
fontWeight: 500,
|
|
83
113
|
},
|
|
114
|
+
Caption1_B: {
|
|
115
|
+
fontSize: 12,
|
|
116
|
+
lineHeight: 1.35,
|
|
117
|
+
fontWeight: 600,
|
|
118
|
+
},
|
|
84
119
|
Caption2: {
|
|
85
120
|
fontSize: 10,
|
|
86
121
|
lineHeight: 1.35,
|
|
87
122
|
fontWeight: 500,
|
|
88
123
|
},
|
|
124
|
+
Caption2_B: {
|
|
125
|
+
fontSize: 10,
|
|
126
|
+
lineHeight: 1.35,
|
|
127
|
+
fontWeight: 600,
|
|
128
|
+
},
|
|
89
129
|
} as const;
|
|
90
130
|
|
|
91
131
|
/**
|