@lotte-innovate/ui-component-test 0.0.7 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. package/README.md +163 -163
  2. package/dist/Typography/Header/index.d.ts +1 -1
  3. package/dist/Typography/index.d.ts +2 -2
  4. package/dist/Typography/index.js +3 -3
  5. package/dist/app/layout.d.ts +7 -0
  6. package/dist/app/layout.js +12 -0
  7. package/dist/app/page.d.ts +1 -0
  8. package/dist/app/page.js +25 -0
  9. package/dist/app/template/badgeTemplate.d.ts +11 -0
  10. package/dist/app/template/badgeTemplate.js +11 -0
  11. package/dist/app/template/buttonTemplate.d.ts +11 -0
  12. package/dist/app/template/buttonTemplate.js +11 -0
  13. package/dist/app/template/colorPicker.d.ts +6 -0
  14. package/dist/app/template/colorPicker.js +14 -0
  15. package/dist/app/template/textTemplate.d.ts +10 -0
  16. package/dist/app/template/textTemplate.js +23 -0
  17. package/dist/app/template/theme.d.ts +12 -0
  18. package/dist/app/template/theme.js +12 -0
  19. package/dist/color/alpha.d.ts +784 -0
  20. package/dist/color/alpha.js +784 -0
  21. package/dist/color/constants.d.ts +20 -0
  22. package/dist/color/constants.js +200 -0
  23. package/dist/color/dark.d.ts +392 -0
  24. package/dist/color/dark.js +392 -0
  25. package/dist/color/krdsColors.d.ts +309 -0
  26. package/dist/color/krdsColors.js +309 -0
  27. package/dist/color/light.d.ts +392 -0
  28. package/dist/color/light.js +393 -0
  29. package/dist/components/Tooltip/index.d.ts +1 -1
  30. package/dist/components/index.d.ts +2 -0
  31. package/dist/constants.d.ts +185 -0
  32. package/dist/constants.js +569 -0
  33. package/dist/index.d.ts +5 -0
  34. package/dist/index.js +3 -0
  35. package/dist/stories/Welcome.d.ts +2 -0
  36. package/dist/stories/Welcome.js +30 -0
  37. package/dist/stories/accordion/Accordion.stories.d.ts +71 -0
  38. package/dist/stories/accordion/Accordion.stories.js +61 -0
  39. package/dist/stories/alert-dialog/AlertDialog.stories.d.ts +107 -0
  40. package/dist/stories/alert-dialog/AlertDialog.stories.js +60 -0
  41. package/dist/stories/aspect-ratio/AspectRatio.stories.d.ts +68 -0
  42. package/dist/stories/aspect-ratio/AspectRatio.stories.js +78 -0
  43. package/dist/stories/avatar/Avatar.stories.d.ts +127 -0
  44. package/dist/stories/avatar/Avatar.stories.js +94 -0
  45. package/dist/stories/badge/Badge.stories.d.ts +133 -0
  46. package/dist/stories/badge/Badge.stories.js +86 -0
  47. package/dist/stories/bubble-chart/BubbleChart.stories.d.ts +102 -0
  48. package/dist/stories/bubble-chart/BubbleChart.stories.js +168 -0
  49. package/dist/stories/button/Button.stories.d.ts +148 -0
  50. package/dist/stories/button/Button.stories.js +65 -0
  51. package/dist/stories/button/IconButton.stories.d.ts +125 -0
  52. package/dist/stories/button/IconButton.stories.js +80 -0
  53. package/dist/stories/callout/Callout.stories.d.ts +129 -0
  54. package/dist/stories/callout/Callout.stories.js +104 -0
  55. package/dist/stories/card/Card.stories.d.ts +100 -0
  56. package/dist/stories/card/Card.stories.js +84 -0
  57. package/dist/stories/checkbox/Checkbox.stories.d.ts +147 -0
  58. package/dist/stories/checkbox/Checkbox.stories.js +110 -0
  59. package/dist/stories/checkbox/CheckboxCard.stories.d.ts +129 -0
  60. package/dist/stories/checkbox/CheckboxCard.stories.js +90 -0
  61. package/dist/stories/checkbox/CheckboxGroup.stories.d.ts +91 -0
  62. package/dist/stories/checkbox/CheckboxGroup.stories.js +72 -0
  63. package/dist/stories/context-menu/ContextMenu.stories.d.ts +113 -0
  64. package/dist/stories/context-menu/ContextMenu.stories.js +86 -0
  65. package/dist/stories/data-list/DataList.stories.d.ts +97 -0
  66. package/dist/stories/data-list/DataList.stories.js +87 -0
  67. package/dist/{components/Input/Input.stories.d.ts → stories/dialog/Dialog.stories.d.ts} +39 -28
  68. package/dist/stories/dialog/Dialog.stories.js +59 -0
  69. package/dist/stories/doughnut-chart/DoughnutChart.stories.d.ts +180 -0
  70. package/dist/stories/doughnut-chart/DoughnutChart.stories.js +228 -0
  71. package/dist/stories/dropdown-menu/DropdownMenu.stories.d.ts +112 -0
  72. package/dist/stories/dropdown-menu/DropdownMenu.stories.js +75 -0
  73. package/dist/stories/header/Header.stories.d.ts +112 -0
  74. package/dist/stories/header/Header.stories.js +97 -0
  75. package/dist/stories/hover-card/HoverCard.stories.d.ts +107 -0
  76. package/dist/stories/hover-card/HoverCard.stories.js +71 -0
  77. package/dist/stories/inset/Inset.stories.d.ts +58 -0
  78. package/dist/stories/inset/Inset.stories.js +64 -0
  79. package/dist/stories/label/Label.stories.d.ts +94 -0
  80. package/dist/stories/label/Label.stories.js +91 -0
  81. package/dist/stories/menubar/Menubar.stories.d.ts +119 -0
  82. package/dist/stories/menubar/Menubar.stories.js +98 -0
  83. package/dist/stories/navigation-menu/NavigationMenu.stories.d.ts +385 -0
  84. package/dist/stories/navigation-menu/NavigationMenu.stories.js +79 -0
  85. package/dist/stories/pie-chart/PieChart.stories.d.ts +185 -0
  86. package/dist/stories/pie-chart/PieChart.stories.js +281 -0
  87. package/dist/stories/popover/Popover.stories.d.ts +78 -0
  88. package/dist/stories/popover/Popover.stories.js +74 -0
  89. package/dist/stories/progress/Progress.stories.d.ts +113 -0
  90. package/dist/stories/progress/Progress.stories.js +77 -0
  91. package/dist/stories/radar-chart/RadarChart.stories.d.ts +110 -0
  92. package/dist/stories/radar-chart/RadarChart.stories.js +201 -0
  93. package/dist/stories/radio/Radio.stories.d.ts +108 -0
  94. package/dist/stories/radio/Radio.stories.js +84 -0
  95. package/dist/stories/radio/RadioCards.stories.d.ts +127 -0
  96. package/dist/stories/radio/RadioCards.stories.js +94 -0
  97. package/dist/stories/radio/RadioGroup.stories.d.ts +111 -0
  98. package/dist/stories/radio/RadioGroup.stories.js +88 -0
  99. package/dist/stories/scroll-area/ScrollArea.stories.d.ts +59 -0
  100. package/dist/stories/scroll-area/ScrollArea.stories.js +63 -0
  101. package/dist/stories/segmented-control/SegmentedControl.stories.d.ts +97 -0
  102. package/dist/stories/segmented-control/SegmentedControl.stories.js +80 -0
  103. package/dist/stories/select/Select.stories.d.ts +116 -0
  104. package/dist/stories/select/Select.stories.js +88 -0
  105. package/dist/stories/separator/Separator.stories.d.ts +93 -0
  106. package/dist/stories/separator/Separator.stories.js +82 -0
  107. package/dist/stories/skeleton/Skeleton.stories.d.ts +88 -0
  108. package/dist/stories/skeleton/Skeleton.stories.js +92 -0
  109. package/dist/stories/slider/Slider.stories.d.ts +114 -0
  110. package/dist/stories/slider/Slider.stories.js +83 -0
  111. package/dist/stories/spinner/Spinner.stories.d.ts +83 -0
  112. package/dist/stories/spinner/Spinner.stories.js +87 -0
  113. package/dist/stories/switch/Switch.stories.d.ts +146 -0
  114. package/dist/stories/switch/Switch.stories.js +108 -0
  115. package/dist/stories/tab-nav/TabNav.stories.d.ts +55 -0
  116. package/dist/stories/tab-nav/TabNav.stories.js +59 -0
  117. package/dist/stories/table/Table.stories.d.ts +87 -0
  118. package/dist/stories/table/Table.stories.js +79 -0
  119. package/dist/stories/tabs/Tabs.stories.d.ts +55 -0
  120. package/dist/stories/tabs/Tabs.stories.js +59 -0
  121. package/dist/stories/text/Text.stories.d.ts +74 -0
  122. package/dist/stories/text/Text.stories.js +76 -0
  123. package/dist/stories/textArea/TextArea.stories.d.ts +117 -0
  124. package/dist/stories/textArea/TextArea.stories.js +96 -0
  125. package/dist/stories/textfield/TextField.stories.d.ts +116 -0
  126. package/dist/stories/textfield/TextField.stories.js +88 -0
  127. package/dist/stories/toast/Toast.stories.d.ts +138 -0
  128. package/dist/stories/toast/Toast.stories.js +104 -0
  129. package/dist/stories/toggle/Toggle.stories.d.ts +115 -0
  130. package/dist/stories/toggle/Toggle.stories.js +89 -0
  131. package/dist/stories/toggle/ToggleGroup.stories.d.ts +103 -0
  132. package/dist/stories/toggle/ToggleGroup.stories.js +94 -0
  133. package/dist/stories/tooltip/Tooltip.stories.d.ts +93 -0
  134. package/dist/stories/tooltip/Tooltip.stories.js +78 -0
  135. package/dist/tsconfig.tsbuildinfo +1 -0
  136. package/dist/types.d.ts +11 -0
  137. package/dist/types.js +1 -0
  138. package/dist/utils/utils.d.ts +3 -0
  139. package/dist/utils/utils.js +27 -0
  140. package/package.json +118 -120
  141. package/dist/components/Input/Input.stories.js +0 -74
  142. package/dist/components/Input/index.d.ts +0 -14
  143. package/dist/components/Input/index.js +0 -53
@@ -0,0 +1,393 @@
1
+ // 기본 그레이 색상
2
+ export var slate = {
3
+ 1: '#fcfcfd',
4
+ 2: '#f9f9fb',
5
+ 3: '#f0f0f3',
6
+ 4: '#e8e8ec',
7
+ 5: '#e0e1e6',
8
+ 6: '#d9d9e0',
9
+ 7: '#cdced6',
10
+ 8: '#b9bbc6',
11
+ 9: '#8b8d98',
12
+ 10: '#80838d',
13
+ 11: '#60646c',
14
+ 12: '#1c2024',
15
+ };
16
+ export var olive = {
17
+ 1: '#fcfdfc',
18
+ 2: '#f8faf8',
19
+ 3: '#eff1ef',
20
+ 4: '#e7e9e7',
21
+ 5: '#dfe2df',
22
+ 6: '#d7dad7',
23
+ 7: '#cccfcc',
24
+ 8: '#b9bcb8',
25
+ 9: '#898e87',
26
+ 10: '#7f847d',
27
+ 11: '#60655f',
28
+ 12: '#1d211c',
29
+ };
30
+ export var sand = {
31
+ 1: '#fdfdfc',
32
+ 2: '#f9f9f8',
33
+ 3: '#f1f0ef',
34
+ 4: '#e9e8e6',
35
+ 5: '#e2e1de',
36
+ 6: '#dad9d6',
37
+ 7: '#cfceca',
38
+ 8: '#bcbbb5',
39
+ 9: '#8d8d86',
40
+ 10: '#82827c',
41
+ 11: '#63635e',
42
+ 12: '#21201c',
43
+ };
44
+ export var tomato = {
45
+ 1: '#fffcfc',
46
+ 2: '#fff8f7',
47
+ 3: '#feebe7',
48
+ 4: '#ffdcd3',
49
+ 5: '#ffcdc2',
50
+ 6: '#fdbdaf',
51
+ 7: '#f5a898',
52
+ 8: '#ec8e7b',
53
+ 9: '#e54d2e',
54
+ 10: '#dd4425',
55
+ 11: '#d13415',
56
+ 12: '#5c271f',
57
+ };
58
+ export var red = {
59
+ 1: '#fffcfc',
60
+ 2: '#fff7f7',
61
+ 3: '#feebec',
62
+ 4: '#ffdbdc',
63
+ 5: '#ffcdce',
64
+ 6: '#fdbdbe',
65
+ 7: '#f4a9aa',
66
+ 8: '#eb8e90',
67
+ 9: '#e5484d',
68
+ 10: '#dc3e42',
69
+ 11: '#ce2c31',
70
+ 12: '#641723',
71
+ };
72
+ export var ruby = {
73
+ 1: '#fffcfd',
74
+ 2: '#fff7f8',
75
+ 3: '#feeaed',
76
+ 4: '#ffdce1',
77
+ 5: '#ffced6',
78
+ 6: '#f8bfc8',
79
+ 7: '#efacb8',
80
+ 8: '#e592a3',
81
+ 9: '#e54666',
82
+ 10: '#dc3b5d',
83
+ 11: '#ca244d',
84
+ 12: '#64172b',
85
+ };
86
+ export var crimson = {
87
+ 1: '#fffcfd',
88
+ 2: '#fef7f9',
89
+ 3: '#ffe9f0',
90
+ 4: '#fedce7',
91
+ 5: '#facedd',
92
+ 6: '#f3bed1',
93
+ 7: '#eaacc3',
94
+ 8: '#e093b2',
95
+ 9: '#e93d82',
96
+ 10: '#df3478',
97
+ 11: '#cb1d63',
98
+ 12: '#621639',
99
+ };
100
+ export var pink = {
101
+ 1: '#fffcfe',
102
+ 2: '#fef7fb',
103
+ 3: '#fee9f5',
104
+ 4: '#fbdcef',
105
+ 5: '#f6cee7',
106
+ 6: '#efbfdd',
107
+ 7: '#e7acd0',
108
+ 8: '#dd93c2',
109
+ 9: '#d6409f',
110
+ 10: '#cf3897',
111
+ 11: '#c2298a',
112
+ 12: '#651249',
113
+ };
114
+ export var plum = {
115
+ 1: '#fefcff',
116
+ 2: '#fdf7fd',
117
+ 3: '#fbebfb',
118
+ 4: '#f7def8',
119
+ 5: '#f2d1f3',
120
+ 6: '#e9c2ec',
121
+ 7: '#deade3',
122
+ 8: '#cf91d8',
123
+ 9: '#ab4aba',
124
+ 10: '#a144af',
125
+ 11: '#953ea3',
126
+ 12: '#53195d',
127
+ };
128
+ export var purple = {
129
+ 1: '#fefcfe',
130
+ 2: '#fbf7fe',
131
+ 3: '#f7edfe',
132
+ 4: '#f2e2fc',
133
+ 5: '#ead5f9',
134
+ 6: '#e0c4f4',
135
+ 7: '#d1afec',
136
+ 8: '#be93e4',
137
+ 9: '#8e4ec6',
138
+ 10: '#8347b9',
139
+ 11: '#8145b5',
140
+ 12: '#402060',
141
+ };
142
+ export var violet = {
143
+ 1: '#fdfcfe',
144
+ 2: '#faf8ff',
145
+ 3: '#f4f0fe',
146
+ 4: '#ebe4ff',
147
+ 5: '#e1d9ff',
148
+ 6: '#d4cafe',
149
+ 7: '#c2b5f5',
150
+ 8: '#aa99ec',
151
+ 9: '#6e56cf',
152
+ 10: '#654dc4',
153
+ 11: '#6550b9',
154
+ 12: '#2f265f',
155
+ };
156
+ export var iris = {
157
+ 1: '#fdfdff',
158
+ 2: '#f8f8ff',
159
+ 3: '#f0f1fe',
160
+ 4: '#e6e7ff',
161
+ 5: '#dadcff',
162
+ 6: '#cbcdff',
163
+ 7: '#b8baf8',
164
+ 8: '#9b9ef0',
165
+ 9: '#5b5bd6',
166
+ 10: '#5151cd',
167
+ 11: '#5753c6',
168
+ 12: '#272962',
169
+ };
170
+ export var indigo = {
171
+ 1: '#fdfdfe',
172
+ 2: '#f7f9ff',
173
+ 3: '#edf2fe',
174
+ 4: '#e1e9ff',
175
+ 5: '#d2deff',
176
+ 6: '#c1d0ff',
177
+ 7: '#abbdf9',
178
+ 8: '#8da4ef',
179
+ 9: '#3e63dd',
180
+ 10: '#3358d4',
181
+ 11: '#3a5bc7',
182
+ 12: '#1f2d5c',
183
+ };
184
+ export var blue = {
185
+ 1: '#fbfdff',
186
+ 2: '#f4faff',
187
+ 3: '#e6f4fe',
188
+ 4: '#d5efff',
189
+ 5: '#c2e5ff',
190
+ 6: '#acd8fc',
191
+ 7: '#8ec8f6',
192
+ 8: '#5eb1ef',
193
+ 9: '#0090ff',
194
+ 10: '#0588f0',
195
+ 11: '#0d74ce',
196
+ 12: '#113264',
197
+ };
198
+ export var cyan = {
199
+ 1: '#fafdfe',
200
+ 2: '#f2fafb',
201
+ 3: '#def7f9',
202
+ 4: '#caf1f6',
203
+ 5: '#b5e9f0',
204
+ 6: '#9ddde7',
205
+ 7: '#7dcedc',
206
+ 8: '#3db9cf',
207
+ 9: '#00a2c7',
208
+ 10: '#0797b9',
209
+ 11: '#107d98',
210
+ 12: '#0d3c48',
211
+ };
212
+ export var teal = {
213
+ 1: '#fafefd',
214
+ 2: '#f3fbf9',
215
+ 3: '#e0f8f3',
216
+ 4: '#ccf3ea',
217
+ 5: '#b8eae0',
218
+ 6: '#a1ded2',
219
+ 7: '#83cdc1',
220
+ 8: '#53b9ab',
221
+ 9: '#12a594',
222
+ 10: '#0d9b8a',
223
+ 11: '#008573',
224
+ 12: '#0d3d38',
225
+ };
226
+ export var jade = {
227
+ 1: '#fbfefd',
228
+ 2: '#f4fbf7',
229
+ 3: '#e6f7ed',
230
+ 4: '#d6f1e3',
231
+ 5: '#c3e9d7',
232
+ 6: '#acdec8',
233
+ 7: '#8bceb6',
234
+ 8: '#56ba9f',
235
+ 9: '#29a383',
236
+ 10: '#26997b',
237
+ 11: '#208368',
238
+ 12: '#1d3b31',
239
+ };
240
+ export var green = {
241
+ 1: '#fbfefc',
242
+ 2: '#f4fbf6',
243
+ 3: '#e6f6eb',
244
+ 4: '#d6f1df',
245
+ 5: '#c4e8d1',
246
+ 6: '#adddc0',
247
+ 7: '#8eceaa',
248
+ 8: '#5bb98b',
249
+ 9: '#30a46c',
250
+ 10: '#2b9a66',
251
+ 11: '#218358',
252
+ 12: '#193b2d',
253
+ };
254
+ export var grass = {
255
+ 1: '#fbfefb',
256
+ 2: '#f5fbf5',
257
+ 3: '#e9f6e9',
258
+ 4: '#daf1db',
259
+ 5: '#c9e8ca',
260
+ 6: '#b2ddb5',
261
+ 7: '#94ce9a',
262
+ 8: '#65ba74',
263
+ 9: '#46a758',
264
+ 10: '#3e9b4f',
265
+ 11: '#2a7e3b',
266
+ 12: '#203c25',
267
+ };
268
+ export var brown = {
269
+ 1: '#fefdfc',
270
+ 2: '#fcf9f6',
271
+ 3: '#f6eee7',
272
+ 4: '#f0e4d9',
273
+ 5: '#ebdaca',
274
+ 6: '#e4cdb7',
275
+ 7: '#dcbc9f',
276
+ 8: '#cea37e',
277
+ 9: '#ad7f58',
278
+ 10: '#a07553',
279
+ 11: '#815e46',
280
+ 12: '#3e332e',
281
+ };
282
+ export var bronze = {
283
+ 1: '#fdfcfc',
284
+ 2: '#fdf7f5',
285
+ 3: '#f6edea',
286
+ 4: '#efe4df',
287
+ 5: '#e7d9d3',
288
+ 6: '#dfcdc5',
289
+ 7: '#d3bcb3',
290
+ 8: '#c2a499',
291
+ 9: '#a18072',
292
+ 10: '#957468',
293
+ 11: '#7d5e54',
294
+ 12: '#43302b',
295
+ };
296
+ export var gold = {
297
+ 1: '#fdfdfc',
298
+ 2: '#faf9f2',
299
+ 3: '#f2f0e7',
300
+ 4: '#eae6db',
301
+ 5: '#e1dccf',
302
+ 6: '#d8d0bf',
303
+ 7: '#cbc0aa',
304
+ 8: '#b9a88d',
305
+ 9: '#978365',
306
+ 10: '#8c7a5e',
307
+ 11: '#71624b',
308
+ 12: '#3b352b',
309
+ };
310
+ export var sky = {
311
+ 1: '#f9feff',
312
+ 2: '#f1fafd',
313
+ 3: '#e1f6fd',
314
+ 4: '#d1f0fa',
315
+ 5: '#bee7f5',
316
+ 6: '#a9daed',
317
+ 7: '#8dcae3',
318
+ 8: '#60b3d7',
319
+ 9: '#7ce2fe',
320
+ 10: '#74daf8',
321
+ 11: '#00749e',
322
+ 12: '#1d3e56',
323
+ };
324
+ export var mint = {
325
+ 1: '#f9fefd',
326
+ 2: '#f2fbf9',
327
+ 3: '#ddf9f2',
328
+ 4: '#c8f4e9',
329
+ 5: '#b3ecde',
330
+ 6: '#9ce0d0',
331
+ 7: '#7ecfbd',
332
+ 8: '#4cbba5',
333
+ 9: '#86ead4',
334
+ 10: '#7de0cb',
335
+ 11: '#027864',
336
+ 12: '#16433c',
337
+ };
338
+ export var lime = {
339
+ 1: '#fcfdfa',
340
+ 2: '#f8faf3',
341
+ 3: '#eef6d6',
342
+ 4: '#e2f0bd',
343
+ 5: '#d3e7a6',
344
+ 6: '#c2da91',
345
+ 7: '#abc978',
346
+ 8: '#8db654',
347
+ 9: '#bdee63',
348
+ 10: '#b0e64c',
349
+ 11: '#5c7c2f',
350
+ 12: '#37401c',
351
+ };
352
+ export var yellow = {
353
+ 1: '#fdfdf9',
354
+ 2: '#fefce9',
355
+ 3: '#fffab8',
356
+ 4: '#fff394',
357
+ 5: '#ffe770',
358
+ 6: '#f3d768',
359
+ 7: '#e4c767',
360
+ 8: '#d5ae39',
361
+ 9: '#ffe629',
362
+ 10: '#ffdc00',
363
+ 11: '#9e6c00',
364
+ 12: '#473b1f',
365
+ };
366
+ export var amber = {
367
+ 1: '#fefdfb',
368
+ 2: '#fefbe9',
369
+ 3: '#fff7c2',
370
+ 4: '#ffee9c',
371
+ 5: '#fbe577',
372
+ 6: '#f3d673',
373
+ 7: '#e9c162',
374
+ 8: '#e2a336',
375
+ 9: '#ffc53d',
376
+ 10: '#ffba18',
377
+ 11: '#ab6400',
378
+ 12: '#4f3422',
379
+ };
380
+ export var orange = {
381
+ 1: '#fefcfb',
382
+ 2: '#fff7ed',
383
+ 3: '#ffefd6',
384
+ 4: '#ffdfb5',
385
+ 5: '#ffd19a',
386
+ 6: '#ffc182',
387
+ 7: '#f5ae73',
388
+ 8: '#ec9455',
389
+ 9: '#f76b15',
390
+ 10: '#ef5f00',
391
+ 11: '#cc4e00',
392
+ 12: '#582d1d',
393
+ };
@@ -11,7 +11,7 @@ export interface TooltipProps extends React.InputHTMLAttributes<HTMLInputElement
11
11
  side?: 'top' | 'right' | 'bottom' | 'left';
12
12
  }
13
13
  declare const tooltipVariants: (props?: ({
14
- scaling?: number | typeof Symbol.iterator | typeof Symbol.unscopables | "map" | "filter" | "fill" | "values" | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "toLocaleString" | "toString" | "pop" | "push" | "join" | "reverse" | "shift" | "sort" | "splice" | "unshift" | "every" | "some" | "forEach" | "reduce" | "reduceRight" | "find" | "findIndex" | "copyWithin" | "entries" | "keys" | "flatMap" | "flat" | "findLast" | "findLastIndex" | "toReversed" | "toSorted" | "toSpliced" | "with" | null | undefined;
14
+ scaling?: number | typeof Symbol.iterator | typeof Symbol.unscopables | "toString" | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "map" | "filter" | "fill" | "values" | "toLocaleString" | "join" | "every" | "some" | "forEach" | "reduce" | "reduceRight" | "find" | "findIndex" | "entries" | "keys" | "flatMap" | "flat" | "findLast" | "findLastIndex" | "toReversed" | "toSorted" | "toSpliced" | "with" | "pop" | "push" | "reverse" | "shift" | "sort" | "splice" | "unshift" | "copyWithin" | null | undefined;
15
15
  weight?: "medium" | "regular" | "semibold" | "bold" | null | undefined;
16
16
  radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
17
17
  color?: string | null | undefined;
@@ -40,6 +40,8 @@ export { default as Toast } from './Toast';
40
40
  export { default as Toggle } from './Toggle';
41
41
  export { default as ToggleGroup } from './ToggleGroup';
42
42
  export { default as ToggleSwitch } from './ToggleSwitch';
43
+ export { default as Header } from '../Typography/Header';
44
+ export { default as Text } from '../Typography/Text';
43
45
  export { default as BubbleChart } from './BubbleChart';
44
46
  export { default as RadarChart } from './RadarChart';
45
47
  export { default as PieChart } from './PieChart';
@@ -0,0 +1,185 @@
1
+ import { IAppearance, IRadius, IScaling, IWeight, ISize, ITheme, ITypoSize } from './types';
2
+ export declare const radiusOptions: IRadius[];
3
+ export declare const typoSizeOptions: ITypoSize[];
4
+ export declare const scalingOptions: IScaling[];
5
+ export declare const sizeOptions: ISize[];
6
+ export declare const weightOptions: IWeight[];
7
+ export declare const themeOptions: ITheme[];
8
+ export declare const appearanceOptions: IAppearance[];
9
+ export declare const labelPositionList: string[];
10
+ export declare const radiusVariants: {
11
+ small: {
12
+ none: string;
13
+ small: string;
14
+ medium: string;
15
+ large: string;
16
+ full: string;
17
+ };
18
+ base: {
19
+ none: string;
20
+ small: string;
21
+ medium: string;
22
+ large: string;
23
+ full: string;
24
+ };
25
+ large: {
26
+ none: string;
27
+ small: string;
28
+ medium: string;
29
+ large: string;
30
+ full: string;
31
+ };
32
+ 'extra-large': {
33
+ none: string;
34
+ small: string;
35
+ medium: string;
36
+ large: string;
37
+ full: string;
38
+ };
39
+ 'menu-item': {
40
+ none: string;
41
+ small: string;
42
+ medium: string;
43
+ large: string;
44
+ full: string;
45
+ };
46
+ };
47
+ export declare const weightVariants: {
48
+ regular: string;
49
+ medium: string;
50
+ semibold: string;
51
+ bold: string;
52
+ };
53
+ export declare const scalingVariants: {
54
+ '90%': string;
55
+ '95%': string;
56
+ '100%': string;
57
+ '105%': string;
58
+ '110%': string;
59
+ };
60
+ export declare const commonArgTypes: {
61
+ typoSize: {
62
+ table: {
63
+ category: string;
64
+ type: {
65
+ summary: string;
66
+ };
67
+ };
68
+ control: {
69
+ type: string;
70
+ };
71
+ options: ITypoSize[];
72
+ defaultValue: {
73
+ summary: string;
74
+ };
75
+ };
76
+ scaling: {
77
+ table: {
78
+ category: string;
79
+ type: {
80
+ summary: string;
81
+ };
82
+ };
83
+ control: {
84
+ type: string;
85
+ };
86
+ options: IScaling[];
87
+ defaultValue: {
88
+ summary: string;
89
+ };
90
+ };
91
+ weight: {
92
+ table: {
93
+ category: string;
94
+ type: {
95
+ summary: string;
96
+ };
97
+ };
98
+ options: IWeight[];
99
+ control: {
100
+ type: string;
101
+ };
102
+ defaultValue: {
103
+ summary: string;
104
+ };
105
+ };
106
+ radius: {
107
+ table: {
108
+ category: string;
109
+ type: {
110
+ summary: string;
111
+ };
112
+ };
113
+ options: IRadius[];
114
+ control: {
115
+ type: string;
116
+ };
117
+ defaultValue: {
118
+ summary: string;
119
+ };
120
+ };
121
+ color: {
122
+ table: {
123
+ category: string;
124
+ type: {
125
+ summary: string;
126
+ };
127
+ };
128
+ options: import("./types").IColor[];
129
+ control: {
130
+ type: string;
131
+ };
132
+ defaultValue: {
133
+ summary: string;
134
+ };
135
+ };
136
+ basicText: {
137
+ table: {
138
+ category: string;
139
+ type: {
140
+ summary: string;
141
+ };
142
+ };
143
+ control: string;
144
+ };
145
+ appearance: {
146
+ table: {
147
+ category: string;
148
+ type: {
149
+ summary: string;
150
+ };
151
+ };
152
+ options: IAppearance[];
153
+ control: {
154
+ type: string;
155
+ };
156
+ defaultValue: {
157
+ summary: string;
158
+ };
159
+ };
160
+ size: {
161
+ table: {
162
+ category: string;
163
+ type: {
164
+ summary: string;
165
+ };
166
+ };
167
+ control: {
168
+ type: string;
169
+ };
170
+ options: ISize[];
171
+ defaultValue: {
172
+ summary: string;
173
+ };
174
+ };
175
+ };
176
+ export declare const blackText: string[];
177
+ export declare const primaryColorStyle: () => Record<string, string>;
178
+ export declare const bgColorStyle: () => Record<string, string>;
179
+ export declare const textColorStyle: () => Record<string, string>;
180
+ export declare const appearanceStyle: (type: string, color: string, isClickable?: boolean) => string;
181
+ export declare const toggleAppearanceStyle: (type: string, color: string, isClickable?: boolean, stateOn?: string) => string;
182
+ export declare const menuItemAppearanceStyle: (type: 'solid' | 'soft' | 'ghost', color: string) => string;
183
+ export declare const switchCheckedApperanceStyle: (type: string, color: string) => string;
184
+ export declare const checkboxAppearanceStyle: (type: string, color: string, indeterminate: boolean) => string;
185
+ export declare const selectAppearanceStyle: (type: 'classic' | 'surface' | 'soft' | 'ghost', color: string) => string;