@plaidlabs/ui 0.1.0 → 0.1.2
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/components/basic/avatar/Avatar.css.d.ts +3 -3
- package/dist/components/basic/bottom-tab/BottomTab.css.d.ts +5 -5
- package/dist/components/basic/button/Button.css.d.ts +2 -2
- package/dist/components/basic/checkbox/Checkbox.css.d.ts +12 -12
- package/dist/components/basic/chip/Chip.css.d.ts +1 -1
- package/dist/components/basic/close/Close.css.d.ts +2 -2
- package/dist/components/basic/guide-text/GuideText.css.d.ts +4 -4
- package/dist/components/basic/link/Link.css.d.ts +3 -3
- package/dist/components/basic/lnb-item/LnbItem.css.d.ts +9 -9
- package/dist/components/basic/loading/Loading.css.d.ts +10 -10
- package/dist/components/basic/notice/Notice.css.d.ts +10 -10
- package/dist/components/basic/pagination/Pagination.css.d.ts +6 -6
- package/dist/components/basic/stepper/Stepper.css.d.ts +2 -2
- package/dist/components/basic/text-area/TextArea.css.d.ts +8 -8
- package/dist/components/basic/text-field/TextField.css.d.ts +11 -11
- package/dist/components/basic/toggle/Toggle.css.d.ts +3 -3
- package/dist/components/complex/dropdown/Dropdown.d.ts +5 -1
- package/dist/components/complex/dropdown/Dropdown.stories.d.ts +20 -0
- package/dist/components/complex/dropdown/index.d.ts +1 -1
- package/dist/index.js +10665 -20382
- package/dist/index.js.map +1 -1
- package/dist/tokens/colors.css.d.ts +103 -101
- package/package.json +1 -1
|
@@ -4,104 +4,106 @@
|
|
|
4
4
|
* 이 파일은 tokens.json에서 자동 생성됩니다.
|
|
5
5
|
* 수동으로 수정하지 마세요.
|
|
6
6
|
*/
|
|
7
|
-
export declare const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
7
|
+
export declare const colors: {
|
|
8
|
+
black: string;
|
|
9
|
+
white: string;
|
|
10
|
+
gray_50: string;
|
|
11
|
+
gray_100: string;
|
|
12
|
+
gray_200: string;
|
|
13
|
+
gray_300: string;
|
|
14
|
+
gray_400: string;
|
|
15
|
+
gray_500: string;
|
|
16
|
+
gray_600: string;
|
|
17
|
+
gray_700: string;
|
|
18
|
+
gray_800: string;
|
|
19
|
+
gray_900: string;
|
|
20
|
+
blue_1000: string;
|
|
21
|
+
blue_dark: string;
|
|
22
|
+
blue_gradient: string;
|
|
23
|
+
blue_50: string;
|
|
24
|
+
blue_100: string;
|
|
25
|
+
blue_200: string;
|
|
26
|
+
blue_300: string;
|
|
27
|
+
blue_400: string;
|
|
28
|
+
blue_500: string;
|
|
29
|
+
blue_600: string;
|
|
30
|
+
blue_700: string;
|
|
31
|
+
blue_800: string;
|
|
32
|
+
blue_900: string;
|
|
33
|
+
blue_t_50: string;
|
|
34
|
+
blue_t_100: string;
|
|
35
|
+
blue_t_200: string;
|
|
36
|
+
blue_t_300: string;
|
|
37
|
+
blue_t_400: string;
|
|
38
|
+
blue_t_500: string;
|
|
39
|
+
blue_t_600: string;
|
|
40
|
+
blue_t_700: string;
|
|
41
|
+
blue_t_800: string;
|
|
42
|
+
blue_t_900: string;
|
|
43
|
+
yellow_1000: string;
|
|
44
|
+
yellow_dark: string;
|
|
45
|
+
yellow_100: string;
|
|
46
|
+
yellow_50: string;
|
|
47
|
+
yellow_200: string;
|
|
48
|
+
yellow_300: string;
|
|
49
|
+
yellow_400: string;
|
|
50
|
+
yellow_500: string;
|
|
51
|
+
yellow_600: string;
|
|
52
|
+
yellow_700: string;
|
|
53
|
+
yellow_800: string;
|
|
54
|
+
yellow_900: string;
|
|
55
|
+
yellow_t_50: string;
|
|
56
|
+
yellow_t_100: string;
|
|
57
|
+
yellow_t_200: string;
|
|
58
|
+
yellow_t_300: string;
|
|
59
|
+
yellow_t_400: string;
|
|
60
|
+
yellow_t_500: string;
|
|
61
|
+
yellow_t_600: string;
|
|
62
|
+
yellow_t_700: string;
|
|
63
|
+
yellow_t_800: string;
|
|
64
|
+
yellow_t_900: string;
|
|
65
|
+
green_1000: string;
|
|
66
|
+
green_dark: string;
|
|
67
|
+
green_50: string;
|
|
68
|
+
green_100: string;
|
|
69
|
+
green_200: string;
|
|
70
|
+
green_300: string;
|
|
71
|
+
green_400: string;
|
|
72
|
+
green_500: string;
|
|
73
|
+
green_600: string;
|
|
74
|
+
green_700: string;
|
|
75
|
+
green_800: string;
|
|
76
|
+
green_900: string;
|
|
77
|
+
green_t_50: string;
|
|
78
|
+
green_t_100: string;
|
|
79
|
+
green_t_200: string;
|
|
80
|
+
green_t_300: string;
|
|
81
|
+
green_t_400: string;
|
|
82
|
+
green_t_500: string;
|
|
83
|
+
green_t_600: string;
|
|
84
|
+
green_t_700: string;
|
|
85
|
+
green_t_800: string;
|
|
86
|
+
green_t_900: string;
|
|
87
|
+
red_1000: string;
|
|
88
|
+
red_dark: string;
|
|
89
|
+
red_50: string;
|
|
90
|
+
red_100: string;
|
|
91
|
+
red_200: string;
|
|
92
|
+
red_300: string;
|
|
93
|
+
red_400: string;
|
|
94
|
+
red_500: string;
|
|
95
|
+
red_600: string;
|
|
96
|
+
red_700: string;
|
|
97
|
+
red_800: string;
|
|
98
|
+
red_900: string;
|
|
99
|
+
red_t_50: string;
|
|
100
|
+
red_t_100: string;
|
|
101
|
+
red_t_200: string;
|
|
102
|
+
red_t_300: string;
|
|
103
|
+
red_t_400: string;
|
|
104
|
+
red_t_500: string;
|
|
105
|
+
red_t_600: string;
|
|
106
|
+
red_t_700: string;
|
|
107
|
+
red_t_800: string;
|
|
108
|
+
red_t_900: string;
|
|
109
|
+
};
|