@liner-fe/design-token-primitive 0.2.38 → 0.2.40
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/.ultra.cache.json +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
- package/src/constants/color/types.ts +1 -0
- package/src/constants/icon/index.ts +2 -0
- package/src/constants/typography/index.ts +1 -2
package/.ultra.cache.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":{"dist":"
|
|
1
|
+
{"files":{"dist":"1769414201410.3567","node_modules":"1769414196612.3743","CHANGELOG.md":"2c5b9fc81003e7addabe3fa5e35401b41f7ac37f","README.md":"949c2c83c8df126f02d353d026438a79d250abe5","package.json":"74afb05e02a283aff4535f736b464bf49fc253a5","src/constants/breakpoint/index.ts":"120aae8fe049e6647d3ce6770e6511107d7464cb","src/constants/color/index.ts":"ab92fb51720b4296525d29d86069f5d68ba3b7ae","src/constants/color/types.ts":"8a7c40fb919540c9b21a4a115de2d51a6cc626af","src/constants/gap/index.ts":"8e40e2797894407e2978b82cd0fed348105f293e","src/constants/icon/index.ts":"f5cf72ee5620e5ad433ba1fe6206e2d100bafcda","src/constants/letterSpacing/index.ts":"017c411b8397e3132456e444b6c5e8bac604979e","src/constants/opacity/index.ts":"1774ea85d2fcb04e4c69ed1573eaf0ed67c9b42a","src/constants/padding/index.ts":"267ff2e7e49e9b33f001840eb36a5902ae0579ee","src/constants/radius/index.ts":"cfe1e349bde3f991ef7e302128f967e69708c617","src/constants/radius/type.ts":"f3e311e0748ceea01afa24ae86ca61a18434f225","src/constants/shadow/index.ts":"9e072cc498dceb05cdff54b70a279ca789bedcb6","src/constants/size/index.ts":"a93a165db6c70d21cbe4a3ad9104ac1c09e85929","src/constants/size/type.ts":"b957cbe25323824ddf7aa0cb28ee7eb6b22c0f70","src/constants/typography/index.ts":"217616f73a4821605fb1625d0a66c8f2d97ef7ad","src/constants/typography/primitive.ts":"e6ac815644b0a785fbb05429fab9154e75bbd4ac","src/constants/typography/types.ts":"4d72d3bdf40436fcf9ce806d873034aa4fb3f35f","src/index.ts":"5f0a915d31c659890ecb4796b2b6846408d6edda","tsconfig.json":"e8ddd4d3aa30a69dfcb87539f01e33ff8e3cf4e7","tsup.config.ts":"65b5a0c01ae95a834c1bccdc82e96748bd64b7bb"},"deps":{}}
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -44,6 +44,7 @@ declare const iconSizeMap: {
|
|
|
44
44
|
readonly l: 32;
|
|
45
45
|
readonly xl: 40;
|
|
46
46
|
};
|
|
47
|
+
type IconSizeKey = keyof typeof iconSizeMap;
|
|
47
48
|
|
|
48
49
|
declare const letterSpacing: {
|
|
49
50
|
readonly 'lp-pri-font-letterspacing-tight': "-0.03em";
|
|
@@ -292,7 +293,7 @@ interface IColor {
|
|
|
292
293
|
}
|
|
293
294
|
type AlphasKey = `${alphaPrimitiveKeys}-alpha-${(typeof alphas)[number]}`;
|
|
294
295
|
type MyExtract<T, U extends Partial<T>> = T extends U ? T : never;
|
|
295
|
-
type BasicColorType = MyExtract<SystemKeys, 'neutral-label-primary' | 'neutral-label-secondary' | 'neutral-label-tertiary' | 'neutral-label-quaternary' | 'neutral-label-static-primary' | 'neutral-label-static-secondary' | 'inverse-label-primary' | 'inverse-label-secondary' | 'inverse-label-tertiary' | 'inverse-label-quaternary' | 'inverse-label-static-primary' | 'inverse-label-static-secondary' | 'brand-label-primary' | 'brand-label-secondary' | 'function-label-positive' | 'function-label-negative' | 'function-label-caution' | 'accent-label-yellow' | 'accent-label-cyan' | 'accent-label-mint' | 'accent-label-purple' | 'accent-label-pink' | 'neutral-fill-overlay-low' | 'neutral-fill-overlay-mid' | 'neutral-fill-overlay-high' | 'neutral-fill-overlay-highest' | 'neutral-container-lowest' | 'neutral-container-low' | 'neutral-container-mid' | 'neutral-container-high' | 'neutral-container-highest' | 'neutral-container-static-lowest' | 'brand-container-mid' | 'brand-container-high' | 'inverse-container-lowest' | 'inverse-container-low' | 'inverse-container-mid' | 'inverse-container-high' | 'inverse-container-static-high' | 'inverse-container-highest'>;
|
|
296
|
+
type BasicColorType = MyExtract<SystemKeys, 'neutral-label-primary' | 'neutral-label-secondary' | 'neutral-label-tertiary' | 'neutral-label-quaternary' | 'neutral-label-static-primary' | 'neutral-label-static-secondary' | 'inverse-label-primary' | 'inverse-label-secondary' | 'inverse-label-tertiary' | 'inverse-label-quaternary' | 'inverse-label-static-primary' | 'inverse-label-static-secondary' | 'brand-label-primary' | 'brand-label-secondary' | 'function-label-positive' | 'function-label-negative' | 'function-label-caution' | 'function-label-link' | 'accent-label-yellow' | 'accent-label-cyan' | 'accent-label-mint' | 'accent-label-purple' | 'accent-label-pink' | 'neutral-fill-overlay-low' | 'neutral-fill-overlay-mid' | 'neutral-fill-overlay-high' | 'neutral-fill-overlay-highest' | 'neutral-container-lowest' | 'neutral-container-low' | 'neutral-container-mid' | 'neutral-container-high' | 'neutral-container-highest' | 'neutral-container-static-lowest' | 'brand-container-mid' | 'brand-container-high' | 'inverse-container-lowest' | 'inverse-container-low' | 'inverse-container-mid' | 'inverse-container-high' | 'inverse-container-static-high' | 'inverse-container-highest'>;
|
|
296
297
|
|
|
297
298
|
declare const color: IColor;
|
|
298
299
|
declare const alphas: readonly [80, 72, 64, 56, 50, 48, 44, 40, 36, 32, 28, 24, 20, 16, 12, 8, 6, 4, 1, 0];
|
|
@@ -383,4 +384,4 @@ declare const typography: Record<TypographyKeys, TypographyValues>;
|
|
|
383
384
|
declare const typographyClassName: Partial<Record<"lp-sys-typo-title1-accent-bold" | "lp-sys-typo-title2-accent-bold" | "lp-sys-typo-title3-accent-bold" | "lp-sys-typo-title4-accent-bold" | "lp-sys-typo-title5-accent-bold" | "lp-sys-typo-title1-normal-bold" | "lp-sys-typo-title2-normal-bold" | "lp-sys-typo-title3-normal-bold" | "lp-sys-typo-title4-normal-bold" | "lp-sys-typo-title5-normal-bold" | "lp-sys-typo-display2-accent-black" | "lp-sys-typo-display3-accent-black" | "lp-sys-typo-heading1-answer" | "lp-sys-typo-heading2-answer" | "lp-sys-typo-heading3-answer" | "lp-sys-typo-heading4-answer" | "lp-sys-typo-heading5-answer" | "lp-sys-typo-heading6-answer" | "lp-sys-typo-paragraph1-normal-bold" | "lp-sys-typo-paragraph2-normal-bold" | "lp-sys-typo-paragraph3-normal-bold" | "lp-sys-typo-paragraph4-normal-bold" | "lp-sys-typo-paragraph1-normal-medium" | "lp-sys-typo-paragraph2-normal-medium" | "lp-sys-typo-paragraph3-normal-medium" | "lp-sys-typo-paragraph4-normal-medium" | "lp-sys-typo-paragraph1-normal-regular" | "lp-sys-typo-paragraph2-normal-regular" | "lp-sys-typo-paragraph3-normal-regular" | "lp-sys-typo-paragraph4-normal-regular" | "lp-sys-typo-paragraph2-post-regular" | "lp-sys-typo-paragraph3-post-regular" | "lp-sys-typo-paragraph4-post-regular" | "lp-sys-typo-paragraph2-answer-bold" | "lp-sys-typo-paragraph2-answer-regular" | "lp-sys-typo-caption1-normal-bold" | "lp-sys-typo-caption2-normal-bold" | "lp-sys-typo-caption3-normal-bold" | "lp-sys-typo-caption1-normal-medium" | "lp-sys-typo-caption2-normal-medium" | "lp-sys-typo-caption3-normal-medium" | "lp-sys-typo-caption1-normal-regular" | "lp-sys-typo-caption2-normal-regular" | "lp-sys-typo-caption3-normal-regular", "lp-sys-typo-title1-accent-bold" | "lp-sys-typo-title2-accent-bold" | "lp-sys-typo-title3-accent-bold" | "lp-sys-typo-title4-accent-bold" | "lp-sys-typo-title5-accent-bold" | "lp-sys-typo-title1-normal-bold" | "lp-sys-typo-title2-normal-bold" | "lp-sys-typo-title3-normal-bold" | "lp-sys-typo-title4-normal-bold" | "lp-sys-typo-title5-normal-bold" | "lp-sys-typo-display2-accent-black" | "lp-sys-typo-display3-accent-black" | "lp-sys-typo-heading1-answer" | "lp-sys-typo-heading2-answer" | "lp-sys-typo-heading3-answer" | "lp-sys-typo-heading4-answer" | "lp-sys-typo-heading5-answer" | "lp-sys-typo-heading6-answer" | "lp-sys-typo-paragraph1-normal-bold" | "lp-sys-typo-paragraph2-normal-bold" | "lp-sys-typo-paragraph3-normal-bold" | "lp-sys-typo-paragraph4-normal-bold" | "lp-sys-typo-paragraph1-normal-medium" | "lp-sys-typo-paragraph2-normal-medium" | "lp-sys-typo-paragraph3-normal-medium" | "lp-sys-typo-paragraph4-normal-medium" | "lp-sys-typo-paragraph1-normal-regular" | "lp-sys-typo-paragraph2-normal-regular" | "lp-sys-typo-paragraph3-normal-regular" | "lp-sys-typo-paragraph4-normal-regular" | "lp-sys-typo-paragraph2-post-regular" | "lp-sys-typo-paragraph3-post-regular" | "lp-sys-typo-paragraph4-post-regular" | "lp-sys-typo-paragraph2-answer-bold" | "lp-sys-typo-paragraph2-answer-regular" | "lp-sys-typo-caption1-normal-bold" | "lp-sys-typo-caption2-normal-bold" | "lp-sys-typo-caption3-normal-bold" | "lp-sys-typo-caption1-normal-medium" | "lp-sys-typo-caption2-normal-medium" | "lp-sys-typo-caption3-normal-medium" | "lp-sys-typo-caption1-normal-regular" | "lp-sys-typo-caption2-normal-regular" | "lp-sys-typo-caption3-normal-regular">>;
|
|
384
385
|
declare const typographyEnglish: Partial<Record<TypographyKeys, TypographyValues>>;
|
|
385
386
|
|
|
386
|
-
export { type AlphasKey, type BasicColorType, type FontFamily, type IColor, type IPrimitive, type IPrimitiveWithAlpha, SHADOW_KEYS, type SystemKeys, type TypographyCaption, type TypographyCaptionPrefix, type TypographyCaptionType, type TypographyDisplay, type TypographyDisplayPrefix, type TypographyDisplayType, type TypographyHeading, type TypographyHeadingPrefix, type TypographyHeadingType, type TypographyKeys, type TypographyParagraph, type TypographyParagraphPrefix, type TypographyParagraphType, type TypographyPrefix, type TypographyTitle, type TypographyTitlePrefix, type TypographyTitleType, type TypographyType, alphaPrimitive, type alphaPrimitiveKeys, alphas, breakpoint, breakpointOrigin, color, font, gap, iconSize, iconSizeMap, letterSpacing, opacity, padding, radius, shadow, size, typography, typographyClassName, typographyEnglish };
|
|
387
|
+
export { type AlphasKey, type BasicColorType, type FontFamily, type IColor, type IPrimitive, type IPrimitiveWithAlpha, type IconSizeKey, SHADOW_KEYS, type SystemKeys, type TypographyCaption, type TypographyCaptionPrefix, type TypographyCaptionType, type TypographyDisplay, type TypographyDisplayPrefix, type TypographyDisplayType, type TypographyHeading, type TypographyHeadingPrefix, type TypographyHeadingType, type TypographyKeys, type TypographyParagraph, type TypographyParagraphPrefix, type TypographyParagraphType, type TypographyPrefix, type TypographyTitle, type TypographyTitlePrefix, type TypographyTitleType, type TypographyType, alphaPrimitive, type alphaPrimitiveKeys, alphas, breakpoint, breakpointOrigin, color, font, gap, iconSize, iconSizeMap, letterSpacing, opacity, padding, radius, shadow, size, typography, typographyClassName, typographyEnglish };
|
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare const iconSizeMap: {
|
|
|
44
44
|
readonly l: 32;
|
|
45
45
|
readonly xl: 40;
|
|
46
46
|
};
|
|
47
|
+
type IconSizeKey = keyof typeof iconSizeMap;
|
|
47
48
|
|
|
48
49
|
declare const letterSpacing: {
|
|
49
50
|
readonly 'lp-pri-font-letterspacing-tight': "-0.03em";
|
|
@@ -292,7 +293,7 @@ interface IColor {
|
|
|
292
293
|
}
|
|
293
294
|
type AlphasKey = `${alphaPrimitiveKeys}-alpha-${(typeof alphas)[number]}`;
|
|
294
295
|
type MyExtract<T, U extends Partial<T>> = T extends U ? T : never;
|
|
295
|
-
type BasicColorType = MyExtract<SystemKeys, 'neutral-label-primary' | 'neutral-label-secondary' | 'neutral-label-tertiary' | 'neutral-label-quaternary' | 'neutral-label-static-primary' | 'neutral-label-static-secondary' | 'inverse-label-primary' | 'inverse-label-secondary' | 'inverse-label-tertiary' | 'inverse-label-quaternary' | 'inverse-label-static-primary' | 'inverse-label-static-secondary' | 'brand-label-primary' | 'brand-label-secondary' | 'function-label-positive' | 'function-label-negative' | 'function-label-caution' | 'accent-label-yellow' | 'accent-label-cyan' | 'accent-label-mint' | 'accent-label-purple' | 'accent-label-pink' | 'neutral-fill-overlay-low' | 'neutral-fill-overlay-mid' | 'neutral-fill-overlay-high' | 'neutral-fill-overlay-highest' | 'neutral-container-lowest' | 'neutral-container-low' | 'neutral-container-mid' | 'neutral-container-high' | 'neutral-container-highest' | 'neutral-container-static-lowest' | 'brand-container-mid' | 'brand-container-high' | 'inverse-container-lowest' | 'inverse-container-low' | 'inverse-container-mid' | 'inverse-container-high' | 'inverse-container-static-high' | 'inverse-container-highest'>;
|
|
296
|
+
type BasicColorType = MyExtract<SystemKeys, 'neutral-label-primary' | 'neutral-label-secondary' | 'neutral-label-tertiary' | 'neutral-label-quaternary' | 'neutral-label-static-primary' | 'neutral-label-static-secondary' | 'inverse-label-primary' | 'inverse-label-secondary' | 'inverse-label-tertiary' | 'inverse-label-quaternary' | 'inverse-label-static-primary' | 'inverse-label-static-secondary' | 'brand-label-primary' | 'brand-label-secondary' | 'function-label-positive' | 'function-label-negative' | 'function-label-caution' | 'function-label-link' | 'accent-label-yellow' | 'accent-label-cyan' | 'accent-label-mint' | 'accent-label-purple' | 'accent-label-pink' | 'neutral-fill-overlay-low' | 'neutral-fill-overlay-mid' | 'neutral-fill-overlay-high' | 'neutral-fill-overlay-highest' | 'neutral-container-lowest' | 'neutral-container-low' | 'neutral-container-mid' | 'neutral-container-high' | 'neutral-container-highest' | 'neutral-container-static-lowest' | 'brand-container-mid' | 'brand-container-high' | 'inverse-container-lowest' | 'inverse-container-low' | 'inverse-container-mid' | 'inverse-container-high' | 'inverse-container-static-high' | 'inverse-container-highest'>;
|
|
296
297
|
|
|
297
298
|
declare const color: IColor;
|
|
298
299
|
declare const alphas: readonly [80, 72, 64, 56, 50, 48, 44, 40, 36, 32, 28, 24, 20, 16, 12, 8, 6, 4, 1, 0];
|
|
@@ -383,4 +384,4 @@ declare const typography: Record<TypographyKeys, TypographyValues>;
|
|
|
383
384
|
declare const typographyClassName: Partial<Record<"lp-sys-typo-title1-accent-bold" | "lp-sys-typo-title2-accent-bold" | "lp-sys-typo-title3-accent-bold" | "lp-sys-typo-title4-accent-bold" | "lp-sys-typo-title5-accent-bold" | "lp-sys-typo-title1-normal-bold" | "lp-sys-typo-title2-normal-bold" | "lp-sys-typo-title3-normal-bold" | "lp-sys-typo-title4-normal-bold" | "lp-sys-typo-title5-normal-bold" | "lp-sys-typo-display2-accent-black" | "lp-sys-typo-display3-accent-black" | "lp-sys-typo-heading1-answer" | "lp-sys-typo-heading2-answer" | "lp-sys-typo-heading3-answer" | "lp-sys-typo-heading4-answer" | "lp-sys-typo-heading5-answer" | "lp-sys-typo-heading6-answer" | "lp-sys-typo-paragraph1-normal-bold" | "lp-sys-typo-paragraph2-normal-bold" | "lp-sys-typo-paragraph3-normal-bold" | "lp-sys-typo-paragraph4-normal-bold" | "lp-sys-typo-paragraph1-normal-medium" | "lp-sys-typo-paragraph2-normal-medium" | "lp-sys-typo-paragraph3-normal-medium" | "lp-sys-typo-paragraph4-normal-medium" | "lp-sys-typo-paragraph1-normal-regular" | "lp-sys-typo-paragraph2-normal-regular" | "lp-sys-typo-paragraph3-normal-regular" | "lp-sys-typo-paragraph4-normal-regular" | "lp-sys-typo-paragraph2-post-regular" | "lp-sys-typo-paragraph3-post-regular" | "lp-sys-typo-paragraph4-post-regular" | "lp-sys-typo-paragraph2-answer-bold" | "lp-sys-typo-paragraph2-answer-regular" | "lp-sys-typo-caption1-normal-bold" | "lp-sys-typo-caption2-normal-bold" | "lp-sys-typo-caption3-normal-bold" | "lp-sys-typo-caption1-normal-medium" | "lp-sys-typo-caption2-normal-medium" | "lp-sys-typo-caption3-normal-medium" | "lp-sys-typo-caption1-normal-regular" | "lp-sys-typo-caption2-normal-regular" | "lp-sys-typo-caption3-normal-regular", "lp-sys-typo-title1-accent-bold" | "lp-sys-typo-title2-accent-bold" | "lp-sys-typo-title3-accent-bold" | "lp-sys-typo-title4-accent-bold" | "lp-sys-typo-title5-accent-bold" | "lp-sys-typo-title1-normal-bold" | "lp-sys-typo-title2-normal-bold" | "lp-sys-typo-title3-normal-bold" | "lp-sys-typo-title4-normal-bold" | "lp-sys-typo-title5-normal-bold" | "lp-sys-typo-display2-accent-black" | "lp-sys-typo-display3-accent-black" | "lp-sys-typo-heading1-answer" | "lp-sys-typo-heading2-answer" | "lp-sys-typo-heading3-answer" | "lp-sys-typo-heading4-answer" | "lp-sys-typo-heading5-answer" | "lp-sys-typo-heading6-answer" | "lp-sys-typo-paragraph1-normal-bold" | "lp-sys-typo-paragraph2-normal-bold" | "lp-sys-typo-paragraph3-normal-bold" | "lp-sys-typo-paragraph4-normal-bold" | "lp-sys-typo-paragraph1-normal-medium" | "lp-sys-typo-paragraph2-normal-medium" | "lp-sys-typo-paragraph3-normal-medium" | "lp-sys-typo-paragraph4-normal-medium" | "lp-sys-typo-paragraph1-normal-regular" | "lp-sys-typo-paragraph2-normal-regular" | "lp-sys-typo-paragraph3-normal-regular" | "lp-sys-typo-paragraph4-normal-regular" | "lp-sys-typo-paragraph2-post-regular" | "lp-sys-typo-paragraph3-post-regular" | "lp-sys-typo-paragraph4-post-regular" | "lp-sys-typo-paragraph2-answer-bold" | "lp-sys-typo-paragraph2-answer-regular" | "lp-sys-typo-caption1-normal-bold" | "lp-sys-typo-caption2-normal-bold" | "lp-sys-typo-caption3-normal-bold" | "lp-sys-typo-caption1-normal-medium" | "lp-sys-typo-caption2-normal-medium" | "lp-sys-typo-caption3-normal-medium" | "lp-sys-typo-caption1-normal-regular" | "lp-sys-typo-caption2-normal-regular" | "lp-sys-typo-caption3-normal-regular">>;
|
|
384
385
|
declare const typographyEnglish: Partial<Record<TypographyKeys, TypographyValues>>;
|
|
385
386
|
|
|
386
|
-
export { type AlphasKey, type BasicColorType, type FontFamily, type IColor, type IPrimitive, type IPrimitiveWithAlpha, SHADOW_KEYS, type SystemKeys, type TypographyCaption, type TypographyCaptionPrefix, type TypographyCaptionType, type TypographyDisplay, type TypographyDisplayPrefix, type TypographyDisplayType, type TypographyHeading, type TypographyHeadingPrefix, type TypographyHeadingType, type TypographyKeys, type TypographyParagraph, type TypographyParagraphPrefix, type TypographyParagraphType, type TypographyPrefix, type TypographyTitle, type TypographyTitlePrefix, type TypographyTitleType, type TypographyType, alphaPrimitive, type alphaPrimitiveKeys, alphas, breakpoint, breakpointOrigin, color, font, gap, iconSize, iconSizeMap, letterSpacing, opacity, padding, radius, shadow, size, typography, typographyClassName, typographyEnglish };
|
|
387
|
+
export { type AlphasKey, type BasicColorType, type FontFamily, type IColor, type IPrimitive, type IPrimitiveWithAlpha, type IconSizeKey, SHADOW_KEYS, type SystemKeys, type TypographyCaption, type TypographyCaptionPrefix, type TypographyCaptionType, type TypographyDisplay, type TypographyDisplayPrefix, type TypographyDisplayType, type TypographyHeading, type TypographyHeadingPrefix, type TypographyHeadingType, type TypographyKeys, type TypographyParagraph, type TypographyParagraphPrefix, type TypographyParagraphType, type TypographyPrefix, type TypographyTitle, type TypographyTitlePrefix, type TypographyTitleType, type TypographyType, alphaPrimitive, type alphaPrimitiveKeys, alphas, breakpoint, breakpointOrigin, color, font, gap, iconSize, iconSizeMap, letterSpacing, opacity, padding, radius, shadow, size, typography, typographyClassName, typographyEnglish };
|
package/dist/index.js
CHANGED
|
@@ -677,7 +677,7 @@ var typography = {
|
|
|
677
677
|
family: "lp-pri-font-family-variables-pretendard",
|
|
678
678
|
lineHeight: "lp-pri-font-lineheight-130",
|
|
679
679
|
size: "lp-pri-font-size-32",
|
|
680
|
-
weight: "lp-pri-font-weight-
|
|
680
|
+
weight: "lp-pri-font-weight-500"
|
|
681
681
|
},
|
|
682
682
|
"lp-sys-typo-title2-accent-bold": {
|
|
683
683
|
family: "lp-pri-font-family-variables-pretendard",
|
|
@@ -907,8 +907,7 @@ var typographyEnglish = {
|
|
|
907
907
|
family: "lp-pri-font-family-flare",
|
|
908
908
|
size: "lp-pri-font-size-34",
|
|
909
909
|
lineHeight: "lp-pri-font-lineheight-120",
|
|
910
|
-
letterSpacing: "lp-pri-font-letterspacing-tight"
|
|
911
|
-
weight: "lp-pri-font-weight-400"
|
|
910
|
+
letterSpacing: "lp-pri-font-letterspacing-tight"
|
|
912
911
|
},
|
|
913
912
|
"lp-sys-typo-title2-accent-bold": {
|
|
914
913
|
...typography["lp-sys-typo-title2-accent-bold"],
|
package/dist/index.mjs
CHANGED
|
@@ -633,7 +633,7 @@ var typography = {
|
|
|
633
633
|
family: "lp-pri-font-family-variables-pretendard",
|
|
634
634
|
lineHeight: "lp-pri-font-lineheight-130",
|
|
635
635
|
size: "lp-pri-font-size-32",
|
|
636
|
-
weight: "lp-pri-font-weight-
|
|
636
|
+
weight: "lp-pri-font-weight-500"
|
|
637
637
|
},
|
|
638
638
|
"lp-sys-typo-title2-accent-bold": {
|
|
639
639
|
family: "lp-pri-font-family-variables-pretendard",
|
|
@@ -863,8 +863,7 @@ var typographyEnglish = {
|
|
|
863
863
|
family: "lp-pri-font-family-flare",
|
|
864
864
|
size: "lp-pri-font-size-34",
|
|
865
865
|
lineHeight: "lp-pri-font-lineheight-120",
|
|
866
|
-
letterSpacing: "lp-pri-font-letterspacing-tight"
|
|
867
|
-
weight: "lp-pri-font-weight-400"
|
|
866
|
+
letterSpacing: "lp-pri-font-letterspacing-tight"
|
|
868
867
|
},
|
|
869
868
|
"lp-sys-typo-title2-accent-bold": {
|
|
870
869
|
...typography["lp-sys-typo-title2-accent-bold"],
|
package/package.json
CHANGED
|
@@ -73,7 +73,7 @@ export const typography: Record<TypographyKeys, TypographyValues> = {
|
|
|
73
73
|
family: 'lp-pri-font-family-variables-pretendard',
|
|
74
74
|
lineHeight: 'lp-pri-font-lineheight-130',
|
|
75
75
|
size: 'lp-pri-font-size-32',
|
|
76
|
-
weight: 'lp-pri-font-weight-
|
|
76
|
+
weight: 'lp-pri-font-weight-500',
|
|
77
77
|
},
|
|
78
78
|
'lp-sys-typo-title2-accent-bold': {
|
|
79
79
|
family: 'lp-pri-font-family-variables-pretendard',
|
|
@@ -312,7 +312,6 @@ export const typographyEnglish: Partial<Record<TypographyKeys, TypographyValues>
|
|
|
312
312
|
size: 'lp-pri-font-size-34',
|
|
313
313
|
lineHeight: 'lp-pri-font-lineheight-120',
|
|
314
314
|
letterSpacing: 'lp-pri-font-letterspacing-tight',
|
|
315
|
-
weight: 'lp-pri-font-weight-400',
|
|
316
315
|
},
|
|
317
316
|
'lp-sys-typo-title2-accent-bold': {
|
|
318
317
|
...typography['lp-sys-typo-title2-accent-bold'],
|