@exem-ui/core 0.1.0
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/chunk-5FZNP5G5.js +26 -0
- package/dist/chunk-5FZNP5G5.js.map +1 -0
- package/dist/chunk-6HPRWOQ2.js +47 -0
- package/dist/chunk-6HPRWOQ2.js.map +1 -0
- package/dist/chunk-GFGH6GWQ.mjs +3 -0
- package/dist/chunk-GFGH6GWQ.mjs.map +1 -0
- package/dist/chunk-HM4HRGV5.mjs +20 -0
- package/dist/chunk-HM4HRGV5.mjs.map +1 -0
- package/dist/chunk-HWX4WC5U.js +655 -0
- package/dist/chunk-HWX4WC5U.js.map +1 -0
- package/dist/chunk-KI6ZGM2N.mjs +652 -0
- package/dist/chunk-KI6ZGM2N.mjs.map +1 -0
- package/dist/chunk-P6WYAG3B.js +337 -0
- package/dist/chunk-P6WYAG3B.js.map +1 -0
- package/dist/chunk-R3J2LRVQ.mjs +42 -0
- package/dist/chunk-R3J2LRVQ.mjs.map +1 -0
- package/dist/chunk-SQRMQS2Y.mjs +334 -0
- package/dist/chunk-SQRMQS2Y.mjs.map +1 -0
- package/dist/chunk-UQZ434PE.js +4 -0
- package/dist/chunk-UQZ434PE.js.map +1 -0
- package/dist/chunk-XTSIZ7P3.js +33 -0
- package/dist/chunk-XTSIZ7P3.js.map +1 -0
- package/dist/chunk-Y64GSCMG.mjs +29 -0
- package/dist/chunk-Y64GSCMG.mjs.map +1 -0
- package/dist/colorTokens-DZNM_EDj.d.mts +651 -0
- package/dist/colorTokens-DZNM_EDj.d.ts +651 -0
- package/dist/global.css +480 -0
- package/dist/icon/index.d.mts +39 -0
- package/dist/icon/index.d.ts +39 -0
- package/dist/icon/index.js +4 -0
- package/dist/icon/index.js.map +1 -0
- package/dist/icon/index.mjs +3 -0
- package/dist/icon/index.mjs.map +1 -0
- package/dist/index.d.mts +353 -0
- package/dist/index.d.ts +353 -0
- package/dist/index.js +67 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -0
- package/dist/shadowTokens-Dnk7nrgI.d.mts +27 -0
- package/dist/shadowTokens-Dnk7nrgI.d.ts +27 -0
- package/dist/tailwindcss/index.d.mts +90 -0
- package/dist/tailwindcss/index.d.ts +90 -0
- package/dist/tailwindcss/index.js +46 -0
- package/dist/tailwindcss/index.js.map +1 -0
- package/dist/tailwindcss/index.mjs +5 -0
- package/dist/tailwindcss/index.mjs.map +1 -0
- package/dist/tokens/color.d.mts +697 -0
- package/dist/tokens/color.d.ts +697 -0
- package/dist/tokens/color.js +21 -0
- package/dist/tokens/color.js.map +1 -0
- package/dist/tokens/color.mjs +4 -0
- package/dist/tokens/color.mjs.map +1 -0
- package/dist/tokens/index.d.mts +3 -0
- package/dist/tokens/index.d.ts +3 -0
- package/dist/tokens/index.js +39 -0
- package/dist/tokens/index.js.map +1 -0
- package/dist/tokens/index.mjs +6 -0
- package/dist/tokens/index.mjs.map +1 -0
- package/dist/utils/index.d.mts +22 -0
- package/dist/utils/index.d.ts +22 -0
- package/dist/utils/index.js +21 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/index.mjs +8 -0
- package/dist/utils/index.mjs.map +1 -0
- package/package.json +89 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
export { b as breakpoint, a as breakpointTokenKeys, r as radius, c as radiusTokenKeys, s as shadow, d as shadowTokenKeys } from '../shadowTokens-Dnk7nrgI.js';
|
|
2
|
+
export { c as color, a as colorKebab, b as colorKebabTokenKeys, d as colorTokenKeys } from '../colorTokens-DZNM_EDj.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* `font-*` 유틸리티 프리셋 토큰.
|
|
6
|
+
* 각 키는 Tailwind `font-{key}` 클래스로 매핑되며,
|
|
7
|
+
* fontWeight와 lineHeight를 함께 지정합니다.
|
|
8
|
+
*
|
|
9
|
+
* text-* 유틸리티는 font-size만 담당하므로,
|
|
10
|
+
* line-height는 font-* 유틸리티가 단독으로 관리합니다.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* ```
|
|
14
|
+
* text-body-2 font-regular → 14px, weight 400, lh 140%
|
|
15
|
+
* text-body-2 font-readable → 14px, weight 400, lh 160%
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
declare const fontPreset: {
|
|
19
|
+
readonly regular: {
|
|
20
|
+
readonly fontWeight: "400";
|
|
21
|
+
readonly lineHeight: "140%";
|
|
22
|
+
};
|
|
23
|
+
readonly medium: {
|
|
24
|
+
readonly fontWeight: "500";
|
|
25
|
+
readonly lineHeight: "140%";
|
|
26
|
+
};
|
|
27
|
+
readonly semibold: {
|
|
28
|
+
readonly fontWeight: "600";
|
|
29
|
+
readonly lineHeight: "140%";
|
|
30
|
+
};
|
|
31
|
+
readonly bold: {
|
|
32
|
+
readonly fontWeight: "700";
|
|
33
|
+
readonly lineHeight: "140%";
|
|
34
|
+
};
|
|
35
|
+
readonly readable: {
|
|
36
|
+
readonly fontWeight: "400";
|
|
37
|
+
readonly lineHeight: "160%";
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
type FontPresetKeys = keyof typeof fontPreset;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* `text-*` 유틸리티 프리셋 토큰.
|
|
45
|
+
* 각 키는 Tailwind `text-{key}` 클래스로 매핑되며, font-size를 설정합니다.
|
|
46
|
+
* `code`는 플러그인에서 font-family를 추가로 주입합니다.
|
|
47
|
+
*
|
|
48
|
+
* line-height는 `font-*` 유틸리티(fontPreset 토큰)에서 관리합니다.
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* ```
|
|
52
|
+
* text-header-1 font-regular → 28px, weight 400, lh 140%
|
|
53
|
+
* text-body-2 font-readable → 14px, weight 400, lh 160%
|
|
54
|
+
* text-code font-regular → 14px, JetBrains Mono, weight 400, lh 140%
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
declare const textPreset: Record<string, string>;
|
|
58
|
+
|
|
59
|
+
type TextPresetKeys = 'header-1' | 'header-2' | 'title-1' | 'title-2' | 'body-1' | 'body-2' | 'body-3' | 'caption' | 'code';
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* 그라데이션 정의.
|
|
63
|
+
* 이름별 색상 스톱과 방향 값을 제공합니다.
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* ```
|
|
67
|
+
* bg-gradient-exem-logo-to-right
|
|
68
|
+
* → linear-gradient(to right, #FF470E 0%, #3E81F6 50%, #FFE100 100%)
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
/** 그라데이션 이름별 색상 스톱 */
|
|
72
|
+
declare const gradientTokens: {
|
|
73
|
+
readonly 'exem-logo': "#FF470E 0%, #3E81F6 50%, #FFE100 100%";
|
|
74
|
+
};
|
|
75
|
+
/** 그라데이션 방향 값 */
|
|
76
|
+
declare const gradientDirections: {
|
|
77
|
+
readonly 'to-right': "to right";
|
|
78
|
+
readonly 'to-left': "to left";
|
|
79
|
+
readonly 'to-top': "to top";
|
|
80
|
+
readonly 'to-bottom': "to bottom";
|
|
81
|
+
readonly 'to-top-right': "to top right";
|
|
82
|
+
readonly 'to-top-left': "to top left";
|
|
83
|
+
readonly 'to-bottom-right': "to bottom right";
|
|
84
|
+
readonly 'to-bottom-left': "to bottom left";
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
type gradientDirectionKeys = keyof typeof gradientDirections;
|
|
88
|
+
type gradientTokenKeys = keyof typeof gradientTokens;
|
|
89
|
+
|
|
90
|
+
export { type FontPresetKeys, type TextPresetKeys, fontPreset, type gradientDirectionKeys, gradientDirections, type gradientTokenKeys, gradientTokens, textPreset };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunk6HPRWOQ2_js = require('../chunk-6HPRWOQ2.js');
|
|
4
|
+
var chunkXTSIZ7P3_js = require('../chunk-XTSIZ7P3.js');
|
|
5
|
+
var chunkHWX4WC5U_js = require('../chunk-HWX4WC5U.js');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, "fontPreset", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return chunk6HPRWOQ2_js.fontPreset_default; }
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "gradientDirections", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () { return chunk6HPRWOQ2_js.gradientDirections; }
|
|
16
|
+
});
|
|
17
|
+
Object.defineProperty(exports, "gradientTokens", {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return chunk6HPRWOQ2_js.gradientTokens; }
|
|
20
|
+
});
|
|
21
|
+
Object.defineProperty(exports, "textPreset", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () { return chunk6HPRWOQ2_js.textPreset_default; }
|
|
24
|
+
});
|
|
25
|
+
Object.defineProperty(exports, "breakpoint", {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () { return chunkXTSIZ7P3_js.breakpointTokens_default; }
|
|
28
|
+
});
|
|
29
|
+
Object.defineProperty(exports, "radius", {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function () { return chunkXTSIZ7P3_js.radiusTokens_default; }
|
|
32
|
+
});
|
|
33
|
+
Object.defineProperty(exports, "shadow", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
get: function () { return chunkXTSIZ7P3_js.shadowTokens_default; }
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(exports, "color", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function () { return chunkHWX4WC5U_js.colorTokens_default; }
|
|
40
|
+
});
|
|
41
|
+
Object.defineProperty(exports, "colorKebab", {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function () { return chunkHWX4WC5U_js.colorKebabTokens; }
|
|
44
|
+
});
|
|
45
|
+
//# sourceMappingURL=index.js.map
|
|
46
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { fontPreset_default as fontPreset, gradientDirections, gradientTokens, textPreset_default as textPreset } from '../chunk-R3J2LRVQ.mjs';
|
|
2
|
+
export { breakpointTokens_default as breakpoint, radiusTokens_default as radius, shadowTokens_default as shadow } from '../chunk-Y64GSCMG.mjs';
|
|
3
|
+
export { colorTokens_default as color, colorKebabTokens as colorKebab } from '../chunk-KI6ZGM2N.mjs';
|
|
4
|
+
//# sourceMappingURL=index.mjs.map
|
|
5
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}
|