@sudobility/components 2.0.7 → 2.0.9
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/index.d.ts +1 -1009
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +3292 -6531
- package/dist/index.umd.js +18 -18
- package/dist/lib/index.d.ts +1 -3
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/ui/callout.d.ts +23 -0
- package/dist/ui/callout.d.ts.map +1 -0
- package/dist/ui/feature-card.d.ts +44 -1
- package/dist/ui/feature-card.d.ts.map +1 -1
- package/dist/ui/flex-container.d.ts +7 -0
- package/dist/ui/flex-container.d.ts.map +1 -1
- package/dist/ui/index.d.ts +2 -3
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/pull-to-refresh.d.ts +14 -0
- package/dist/ui/pull-to-refresh.d.ts.map +1 -0
- package/dist/ui/section.d.ts +1 -1
- package/dist/ui/section.d.ts.map +1 -1
- package/dist/ui/use-case-grid.d.ts.map +1 -1
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/ui/gradient-button.d.ts +0 -15
- package/dist/ui/gradient-button.d.ts.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { cn } from './lib/utils';
|
|
2
|
-
import { withOpacity, responsive, themeColor, getSizeClasses, buttonVariant, inputVariant, cardVariant, textVariant } from './lib';
|
|
3
2
|
/**
|
|
4
3
|
* @johnqh/mail-box-components
|
|
5
4
|
*
|
|
@@ -13,14 +12,11 @@ export { cn } from './lib/utils';
|
|
|
13
12
|
export * from './utils';
|
|
14
13
|
export { getPerformanceMonitor, initializePerformanceMonitoring, type PerformanceMetrics, } from './optimization/performance-monitoring';
|
|
15
14
|
export { formatFileSize, convertFileSize, parseFileSize, } from './utils/formatFileSize';
|
|
16
|
-
export { createTechArticleData } from '@sudobility/design';
|
|
17
15
|
export { useClickOutside } from './hooks/useClickOutside';
|
|
18
16
|
export { useCodeLoader } from './hooks/useCodeLoader';
|
|
19
17
|
export { useCopyToClipboard, useMultipleCopyToClipboard, type CopyToClipboardOptions, type CopyToClipboardResult, } from './hooks/useCopyToClipboard';
|
|
20
18
|
export { KYCStatusBadge, SumsubWebSDK, KYCLevelCard, type KYCStatus, type KYCLevel, } from './kyc';
|
|
21
|
-
export {
|
|
22
|
-
export { colors, designTokens, ui, textVariants, variants, } from '@sudobility/design';
|
|
23
|
-
export { Alert, AlertTitle, AlertDescription, AnimatedSection, FadeInUp, FadeInScale, FloatingElement, Button, buttonVariants, Card, CardHeader, CardContent, CardFooter, ComparisonSection, createComparisonData, createEmailComparisonData, ContentContainer, Dropdown, FeatureCard, FeatureGrid, createFeature, createSecurityFeatures, GradientButton, HeroBannerWithBadge, Input, Label, Logo, MetricsGrid, ProcessSteps, Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, SelectScrollUpButton, SelectScrollDownButton, Spinner, Switch, TableOfContents, EmailAccountsList, Tabs, TabsList, TabsTrigger, TabsContent, UseCaseGrid, WalletIcon, } from './ui';
|
|
19
|
+
export { Alert, AlertTitle, AlertDescription, AnimatedSection, FadeInUp, FadeInScale, FloatingElement, Button, buttonVariants, Card, CardHeader, CardContent, CardFooter, ComparisonSection, createComparisonData, createEmailComparisonData, ContentContainer, Dropdown, FeatureCard, FeatureGrid, createFeature, createSecurityFeatures, HeroBannerWithBadge, Input, Label, Logo, MetricsGrid, ProcessSteps, PullToRefresh, type PullToRefreshProps, Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, SelectScrollUpButton, SelectScrollDownButton, Spinner, Switch, TableOfContents, EmailAccountsList, Tabs, TabsList, TabsTrigger, TabsContent, UseCaseGrid, WalletIcon, } from './ui';
|
|
24
20
|
export { FlexContainer, PageContainer, Section, SectionHeader } from './ui';
|
|
25
21
|
export * from './core';
|
|
26
22
|
export * from './features';
|
|
@@ -56,1013 +52,9 @@ export { SmartLink, SmartContent, useSmartLinks, smartLinkVariants, Modal, Modal
|
|
|
56
52
|
export { IconContainer, FreeEmailBanner, InfoPanel, StatCard, FormSection, FeatureBlock, } from './ui';
|
|
57
53
|
export type { ButtonProps, StatusType, ChainType, InputProps, ModalProps, ModalHeaderProps, ModalContentProps, ModalFooterProps, ConfirmationDialogProps, SmartLinkProps, SmartContentProps, Feature, FeatureCardProps, HeroBannerWithBadgeProps, MetricsGridProps, MetricItem, ProcessStepsProps, ProcessStep, UseCaseGridProps, UseCase, TOCSection, EmailAccount, WalletEmailGroup, } from './ui';
|
|
58
54
|
export { cn as combineClassNames } from './lib';
|
|
59
|
-
export { GRADIENTS as GRADIENTSLegacy, GRADIENT_CLASSES as GRADIENT_CLASSESLegacy, UI_CONSTANTS as UI_CONSTANTSLegacy, colors as colorsLegacy, designTokens as designTokensLegacy, ui as uiLegacy, } from '@sudobility/design';
|
|
60
55
|
declare const _default: {
|
|
61
56
|
utils: {
|
|
62
57
|
cn: typeof cn;
|
|
63
|
-
withOpacity: typeof withOpacity;
|
|
64
|
-
responsive: typeof responsive;
|
|
65
|
-
themeColor: typeof themeColor;
|
|
66
|
-
getSizeClasses: typeof getSizeClasses;
|
|
67
|
-
buttonVariant: typeof buttonVariant;
|
|
68
|
-
inputVariant: typeof inputVariant;
|
|
69
|
-
cardVariant: typeof cardVariant;
|
|
70
|
-
textVariant: typeof textVariant;
|
|
71
|
-
};
|
|
72
|
-
design: {
|
|
73
|
-
colors: {
|
|
74
|
-
readonly raw: {
|
|
75
|
-
readonly blue: {
|
|
76
|
-
readonly 50: "#eff6ff";
|
|
77
|
-
readonly 100: "#dbeafe";
|
|
78
|
-
readonly 200: "#bfdbfe";
|
|
79
|
-
readonly 300: "#93c5fd";
|
|
80
|
-
readonly 400: "#60a5fa";
|
|
81
|
-
readonly 500: "#3b82f6";
|
|
82
|
-
readonly 600: "#2563eb";
|
|
83
|
-
readonly 700: "#1d4ed8";
|
|
84
|
-
readonly 800: "#1e40af";
|
|
85
|
-
readonly 900: "#1e3a8a";
|
|
86
|
-
readonly 950: "#172554";
|
|
87
|
-
};
|
|
88
|
-
readonly purple: {
|
|
89
|
-
readonly 50: "#faf5ff";
|
|
90
|
-
readonly 100: "#f3e8ff";
|
|
91
|
-
readonly 200: "#e9d5ff";
|
|
92
|
-
readonly 300: "#d8b4fe";
|
|
93
|
-
readonly 400: "#c084fc";
|
|
94
|
-
readonly 500: "#a855f7";
|
|
95
|
-
readonly 600: "#9333ea";
|
|
96
|
-
readonly 700: "#7c3aed";
|
|
97
|
-
readonly 800: "#6b21a8";
|
|
98
|
-
readonly 900: "#581c87";
|
|
99
|
-
readonly 950: "#3b0764";
|
|
100
|
-
};
|
|
101
|
-
readonly neutral: {
|
|
102
|
-
readonly 0: "#ffffff";
|
|
103
|
-
readonly 50: "#f9fafb";
|
|
104
|
-
readonly 100: "#f3f4f6";
|
|
105
|
-
readonly 200: "#e5e7eb";
|
|
106
|
-
readonly 300: "#d1d5db";
|
|
107
|
-
readonly 400: "#9ca3af";
|
|
108
|
-
readonly 500: "#6b7280";
|
|
109
|
-
readonly 600: "#4b5563";
|
|
110
|
-
readonly 700: "#374151";
|
|
111
|
-
readonly 800: "#1f2937";
|
|
112
|
-
readonly 900: "#111827";
|
|
113
|
-
readonly 950: "#030712";
|
|
114
|
-
};
|
|
115
|
-
readonly red: {
|
|
116
|
-
readonly 50: "#fef2f2";
|
|
117
|
-
readonly 100: "#fee2e2";
|
|
118
|
-
readonly 200: "#fecaca";
|
|
119
|
-
readonly 300: "#fca5a5";
|
|
120
|
-
readonly 400: "#f87171";
|
|
121
|
-
readonly 500: "#ef4444";
|
|
122
|
-
readonly 600: "#dc2626";
|
|
123
|
-
readonly 700: "#b91c1c";
|
|
124
|
-
readonly 800: "#991b1b";
|
|
125
|
-
readonly 900: "#7f1d1d";
|
|
126
|
-
readonly 950: "#450a0a";
|
|
127
|
-
};
|
|
128
|
-
readonly orange: {
|
|
129
|
-
readonly 50: "#fff7ed";
|
|
130
|
-
readonly 100: "#ffedd5";
|
|
131
|
-
readonly 200: "#fed7aa";
|
|
132
|
-
readonly 300: "#fdba74";
|
|
133
|
-
readonly 400: "#fb923c";
|
|
134
|
-
readonly 500: "#f97316";
|
|
135
|
-
readonly 600: "#ea580c";
|
|
136
|
-
readonly 700: "#c2410c";
|
|
137
|
-
readonly 800: "#9a3412";
|
|
138
|
-
readonly 900: "#7c2d12";
|
|
139
|
-
readonly 950: "#431407";
|
|
140
|
-
};
|
|
141
|
-
readonly amber: {
|
|
142
|
-
readonly 50: "#fffbeb";
|
|
143
|
-
readonly 100: "#fef3c7";
|
|
144
|
-
readonly 200: "#fde68a";
|
|
145
|
-
readonly 300: "#fcd34d";
|
|
146
|
-
readonly 400: "#fbbf24";
|
|
147
|
-
readonly 500: "#f59e0b";
|
|
148
|
-
readonly 600: "#d97706";
|
|
149
|
-
readonly 700: "#b45309";
|
|
150
|
-
readonly 800: "#92400e";
|
|
151
|
-
readonly 900: "#78350f";
|
|
152
|
-
readonly 950: "#451a03";
|
|
153
|
-
};
|
|
154
|
-
readonly green: {
|
|
155
|
-
readonly 50: "#f0fdf4";
|
|
156
|
-
readonly 100: "#dcfce7";
|
|
157
|
-
readonly 200: "#bbf7d0";
|
|
158
|
-
readonly 300: "#86efac";
|
|
159
|
-
readonly 400: "#4ade80";
|
|
160
|
-
readonly 500: "#22c55e";
|
|
161
|
-
readonly 600: "#16a34a";
|
|
162
|
-
readonly 700: "#15803d";
|
|
163
|
-
readonly 800: "#166534";
|
|
164
|
-
readonly 900: "#14532d";
|
|
165
|
-
readonly 950: "#052e16";
|
|
166
|
-
};
|
|
167
|
-
readonly web3: {
|
|
168
|
-
readonly ethereum: {
|
|
169
|
-
readonly light: "#627eea";
|
|
170
|
-
readonly DEFAULT: "#627eea";
|
|
171
|
-
readonly dark: "#4c63d2";
|
|
172
|
-
};
|
|
173
|
-
readonly solana: {
|
|
174
|
-
readonly light: "#9945ff";
|
|
175
|
-
readonly DEFAULT: "#9945ff";
|
|
176
|
-
readonly dark: "#7d37d9";
|
|
177
|
-
};
|
|
178
|
-
readonly polygon: {
|
|
179
|
-
readonly light: "#8247e5";
|
|
180
|
-
readonly DEFAULT: "#8247e5";
|
|
181
|
-
readonly dark: "#6a3bc0";
|
|
182
|
-
};
|
|
183
|
-
readonly bitcoin: {
|
|
184
|
-
readonly light: "#f7931a";
|
|
185
|
-
readonly DEFAULT: "#f7931a";
|
|
186
|
-
readonly dark: "#e07f00";
|
|
187
|
-
};
|
|
188
|
-
readonly binance: {
|
|
189
|
-
readonly light: "#f3ba2f";
|
|
190
|
-
readonly DEFAULT: "#f3ba2f";
|
|
191
|
-
readonly dark: "#d4a423";
|
|
192
|
-
};
|
|
193
|
-
readonly cardano: {
|
|
194
|
-
readonly light: "#0033ad";
|
|
195
|
-
readonly DEFAULT: "#0033ad";
|
|
196
|
-
readonly dark: "#002488";
|
|
197
|
-
};
|
|
198
|
-
readonly avalanche: {
|
|
199
|
-
readonly light: "#e84142";
|
|
200
|
-
readonly DEFAULT: "#e84142";
|
|
201
|
-
readonly dark: "#d1383a";
|
|
202
|
-
};
|
|
203
|
-
readonly fantom: {
|
|
204
|
-
readonly light: "#1969ff";
|
|
205
|
-
readonly DEFAULT: "#1969ff";
|
|
206
|
-
readonly dark: "#0052ff";
|
|
207
|
-
};
|
|
208
|
-
readonly arbitrum: {
|
|
209
|
-
readonly light: "#2d374b";
|
|
210
|
-
readonly DEFAULT: "#2d374b";
|
|
211
|
-
readonly dark: "#1e2532";
|
|
212
|
-
};
|
|
213
|
-
readonly optimism: {
|
|
214
|
-
readonly light: "#ff0420";
|
|
215
|
-
readonly DEFAULT: "#ff0420";
|
|
216
|
-
readonly dark: "#e6031c";
|
|
217
|
-
};
|
|
218
|
-
readonly chainlink: {
|
|
219
|
-
readonly light: "#375bd2";
|
|
220
|
-
readonly DEFAULT: "#375bd2";
|
|
221
|
-
readonly dark: "#2d4bb5";
|
|
222
|
-
};
|
|
223
|
-
readonly cosmos: {
|
|
224
|
-
readonly light: "#2e3148";
|
|
225
|
-
readonly DEFAULT: "#2e3148";
|
|
226
|
-
readonly dark: "#1f2030";
|
|
227
|
-
};
|
|
228
|
-
readonly polkadot: {
|
|
229
|
-
readonly light: "#e6007a";
|
|
230
|
-
readonly DEFAULT: "#e6007a";
|
|
231
|
-
readonly dark: "#cc006e";
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
};
|
|
235
|
-
readonly semantic: {
|
|
236
|
-
readonly text: {
|
|
237
|
-
readonly primary: {
|
|
238
|
-
readonly light: "#111827";
|
|
239
|
-
readonly dark: "#ffffff";
|
|
240
|
-
};
|
|
241
|
-
readonly secondary: {
|
|
242
|
-
readonly light: "#4b5563";
|
|
243
|
-
readonly dark: "#9ca3af";
|
|
244
|
-
};
|
|
245
|
-
readonly tertiary: {
|
|
246
|
-
readonly light: "#6b7280";
|
|
247
|
-
readonly dark: "#6b7280";
|
|
248
|
-
};
|
|
249
|
-
readonly disabled: {
|
|
250
|
-
readonly light: "#9ca3af";
|
|
251
|
-
readonly dark: "#4b5563";
|
|
252
|
-
};
|
|
253
|
-
readonly inverse: {
|
|
254
|
-
readonly light: "#ffffff";
|
|
255
|
-
readonly dark: "#111827";
|
|
256
|
-
};
|
|
257
|
-
readonly link: {
|
|
258
|
-
readonly light: "#2563eb";
|
|
259
|
-
readonly dark: "#60a5fa";
|
|
260
|
-
};
|
|
261
|
-
readonly linkHover: {
|
|
262
|
-
readonly light: "#1d4ed8";
|
|
263
|
-
readonly dark: "#93c5fd";
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
readonly background: {
|
|
267
|
-
readonly primary: {
|
|
268
|
-
readonly light: "#ffffff";
|
|
269
|
-
readonly dark: "#111827";
|
|
270
|
-
};
|
|
271
|
-
readonly secondary: {
|
|
272
|
-
readonly light: "#f9fafb";
|
|
273
|
-
readonly dark: "#1f2937";
|
|
274
|
-
};
|
|
275
|
-
readonly tertiary: {
|
|
276
|
-
readonly light: "#f3f4f6";
|
|
277
|
-
readonly dark: "#374151";
|
|
278
|
-
};
|
|
279
|
-
readonly elevated: {
|
|
280
|
-
readonly light: "#ffffff";
|
|
281
|
-
readonly dark: "#1f2937";
|
|
282
|
-
};
|
|
283
|
-
readonly overlay: {
|
|
284
|
-
readonly light: "rgba(0, 0, 0, 0.5)";
|
|
285
|
-
readonly dark: "rgba(0, 0, 0, 0.7)";
|
|
286
|
-
};
|
|
287
|
-
readonly page: {
|
|
288
|
-
readonly light: "#f9fafb";
|
|
289
|
-
readonly dark: "#030712";
|
|
290
|
-
};
|
|
291
|
-
};
|
|
292
|
-
readonly border: {
|
|
293
|
-
readonly primary: {
|
|
294
|
-
readonly light: "#e5e7eb";
|
|
295
|
-
readonly dark: "#374151";
|
|
296
|
-
};
|
|
297
|
-
readonly secondary: {
|
|
298
|
-
readonly light: "#f3f4f6";
|
|
299
|
-
readonly dark: "#1f2937";
|
|
300
|
-
};
|
|
301
|
-
readonly focus: {
|
|
302
|
-
readonly light: "#3b82f6";
|
|
303
|
-
readonly dark: "#60a5fa";
|
|
304
|
-
};
|
|
305
|
-
readonly error: {
|
|
306
|
-
readonly light: "#fca5a5";
|
|
307
|
-
readonly dark: "#b91c1c";
|
|
308
|
-
};
|
|
309
|
-
};
|
|
310
|
-
readonly brand: {
|
|
311
|
-
readonly primary: {
|
|
312
|
-
readonly light: "#2563eb";
|
|
313
|
-
readonly dark: "#3b82f6";
|
|
314
|
-
};
|
|
315
|
-
readonly primaryHover: {
|
|
316
|
-
readonly light: "#1d4ed8";
|
|
317
|
-
readonly dark: "#60a5fa";
|
|
318
|
-
};
|
|
319
|
-
readonly secondary: {
|
|
320
|
-
readonly light: "#9333ea";
|
|
321
|
-
readonly dark: "#a855f7";
|
|
322
|
-
};
|
|
323
|
-
readonly secondaryHover: {
|
|
324
|
-
readonly light: "#7c3aed";
|
|
325
|
-
readonly dark: "#c084fc";
|
|
326
|
-
};
|
|
327
|
-
};
|
|
328
|
-
readonly state: {
|
|
329
|
-
readonly success: {
|
|
330
|
-
readonly light: "#16a34a";
|
|
331
|
-
readonly dark: "#22c55e";
|
|
332
|
-
};
|
|
333
|
-
readonly successBg: {
|
|
334
|
-
readonly light: "#dcfce7";
|
|
335
|
-
readonly dark: "#14532d/30";
|
|
336
|
-
};
|
|
337
|
-
readonly successText: {
|
|
338
|
-
readonly light: "#15803d";
|
|
339
|
-
readonly dark: "#86efac";
|
|
340
|
-
};
|
|
341
|
-
readonly warning: {
|
|
342
|
-
readonly light: "#f59e0b";
|
|
343
|
-
readonly dark: "#fbbf24";
|
|
344
|
-
};
|
|
345
|
-
readonly warningBg: {
|
|
346
|
-
readonly light: "#fef3c7";
|
|
347
|
-
readonly dark: "#78350f/30";
|
|
348
|
-
};
|
|
349
|
-
readonly warningText: {
|
|
350
|
-
readonly light: "#b45309";
|
|
351
|
-
readonly dark: "#fcd34d";
|
|
352
|
-
};
|
|
353
|
-
readonly error: {
|
|
354
|
-
readonly light: "#dc2626";
|
|
355
|
-
readonly dark: "#ef4444";
|
|
356
|
-
};
|
|
357
|
-
readonly errorBg: {
|
|
358
|
-
readonly light: "#fee2e2";
|
|
359
|
-
readonly dark: "#7f1d1d/30";
|
|
360
|
-
};
|
|
361
|
-
readonly errorText: {
|
|
362
|
-
readonly light: "#b91c1c";
|
|
363
|
-
readonly dark: "#fca5a5";
|
|
364
|
-
};
|
|
365
|
-
readonly info: {
|
|
366
|
-
readonly light: "#2563eb";
|
|
367
|
-
readonly dark: "#3b82f6";
|
|
368
|
-
};
|
|
369
|
-
readonly infoBg: {
|
|
370
|
-
readonly light: "#dbeafe";
|
|
371
|
-
readonly dark: "#1e3a8a/30";
|
|
372
|
-
};
|
|
373
|
-
readonly infoText: {
|
|
374
|
-
readonly light: "#1d4ed8";
|
|
375
|
-
readonly dark: "#93c5fd";
|
|
376
|
-
};
|
|
377
|
-
readonly selected: {
|
|
378
|
-
readonly light: "#dbeafe";
|
|
379
|
-
readonly dark: "#1e3a8a/30";
|
|
380
|
-
};
|
|
381
|
-
};
|
|
382
|
-
readonly action: {
|
|
383
|
-
readonly primary: {
|
|
384
|
-
readonly light: "#2563eb";
|
|
385
|
-
readonly dark: "#2563eb";
|
|
386
|
-
};
|
|
387
|
-
readonly primaryHover: {
|
|
388
|
-
readonly light: "#1d4ed8";
|
|
389
|
-
readonly dark: "#1d4ed8";
|
|
390
|
-
};
|
|
391
|
-
readonly secondary: {
|
|
392
|
-
readonly light: "#f3f4f6";
|
|
393
|
-
readonly dark: "#1f2937";
|
|
394
|
-
};
|
|
395
|
-
readonly danger: {
|
|
396
|
-
readonly light: "#dc2626";
|
|
397
|
-
readonly dark: "#dc2626";
|
|
398
|
-
};
|
|
399
|
-
};
|
|
400
|
-
readonly web3: {
|
|
401
|
-
readonly ethereum: {
|
|
402
|
-
readonly light: "#627eea";
|
|
403
|
-
readonly dark: "#4c63d2";
|
|
404
|
-
};
|
|
405
|
-
readonly ethereumBg: {
|
|
406
|
-
readonly light: "#dbeafe";
|
|
407
|
-
readonly dark: "#1e3a8a/30";
|
|
408
|
-
};
|
|
409
|
-
readonly solana: {
|
|
410
|
-
readonly light: "#9945ff";
|
|
411
|
-
readonly dark: "#7d37d9";
|
|
412
|
-
};
|
|
413
|
-
readonly solanaBg: {
|
|
414
|
-
readonly light: "#f3e8ff";
|
|
415
|
-
readonly dark: "#581c87/30";
|
|
416
|
-
};
|
|
417
|
-
readonly polygon: {
|
|
418
|
-
readonly light: "#8247e5";
|
|
419
|
-
readonly dark: "#6a3bc0";
|
|
420
|
-
};
|
|
421
|
-
readonly polygonBg: {
|
|
422
|
-
readonly light: "#faf5ff";
|
|
423
|
-
readonly dark: "#581c87/20";
|
|
424
|
-
};
|
|
425
|
-
readonly bitcoin: {
|
|
426
|
-
readonly light: "#f7931a";
|
|
427
|
-
readonly dark: "#e07f00";
|
|
428
|
-
};
|
|
429
|
-
readonly bitcoinBg: {
|
|
430
|
-
readonly light: "#ffedd5";
|
|
431
|
-
readonly dark: "#7c2d12/30";
|
|
432
|
-
};
|
|
433
|
-
readonly binance: {
|
|
434
|
-
readonly light: "#f3ba2f";
|
|
435
|
-
readonly dark: "#d4a423";
|
|
436
|
-
};
|
|
437
|
-
readonly binanceBg: {
|
|
438
|
-
readonly light: "#fef3c7";
|
|
439
|
-
readonly dark: "#78350f/30";
|
|
440
|
-
};
|
|
441
|
-
readonly cardano: {
|
|
442
|
-
readonly light: "#0033ad";
|
|
443
|
-
readonly dark: "#002488";
|
|
444
|
-
};
|
|
445
|
-
readonly cardanoBg: {
|
|
446
|
-
readonly light: "#eff6ff";
|
|
447
|
-
readonly dark: "#1e3a8a/20";
|
|
448
|
-
};
|
|
449
|
-
readonly avalanche: {
|
|
450
|
-
readonly light: "#e84142";
|
|
451
|
-
readonly dark: "#d1383a";
|
|
452
|
-
};
|
|
453
|
-
readonly avalancheBg: {
|
|
454
|
-
readonly light: "#fee2e2";
|
|
455
|
-
readonly dark: "#7f1d1d/30";
|
|
456
|
-
};
|
|
457
|
-
readonly arbitrum: {
|
|
458
|
-
readonly light: "#2d374b";
|
|
459
|
-
readonly dark: "#1e2532";
|
|
460
|
-
};
|
|
461
|
-
readonly arbitrumBg: {
|
|
462
|
-
readonly light: "#f3f4f6";
|
|
463
|
-
readonly dark: "#1f2937/50";
|
|
464
|
-
};
|
|
465
|
-
readonly optimism: {
|
|
466
|
-
readonly light: "#ff0420";
|
|
467
|
-
readonly dark: "#e6031c";
|
|
468
|
-
};
|
|
469
|
-
readonly optimismBg: {
|
|
470
|
-
readonly light: "#fef2f2";
|
|
471
|
-
readonly dark: "#7f1d1d/20";
|
|
472
|
-
};
|
|
473
|
-
};
|
|
474
|
-
};
|
|
475
|
-
readonly component: {
|
|
476
|
-
readonly button: {
|
|
477
|
-
readonly primary: {
|
|
478
|
-
readonly base: "bg-blue-600 hover:bg-blue-700 active:bg-blue-800 text-white border-transparent";
|
|
479
|
-
readonly dark: "dark:bg-blue-600 dark:hover:bg-blue-700 dark:active:bg-blue-800 dark:text-white";
|
|
480
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 dark:focus-visible:ring-blue-400";
|
|
481
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:bg-blue-600";
|
|
482
|
-
};
|
|
483
|
-
readonly secondary: {
|
|
484
|
-
readonly base: "bg-gray-100 hover:bg-gray-200 active:bg-gray-300 text-gray-900 border-transparent";
|
|
485
|
-
readonly dark: "dark:bg-gray-800 dark:hover:bg-gray-700 dark:active:bg-gray-600 dark:text-gray-50";
|
|
486
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-gray-500 focus-visible:ring-offset-2";
|
|
487
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed";
|
|
488
|
-
};
|
|
489
|
-
readonly outline: {
|
|
490
|
-
readonly base: "bg-transparent hover:bg-gray-50 active:bg-gray-100 text-gray-900 border-gray-300";
|
|
491
|
-
readonly dark: "dark:bg-transparent dark:hover:bg-gray-800 dark:active:bg-gray-700 dark:text-gray-50 dark:border-gray-600";
|
|
492
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2";
|
|
493
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed";
|
|
494
|
-
};
|
|
495
|
-
readonly ghost: {
|
|
496
|
-
readonly base: "bg-transparent hover:bg-gray-100 active:bg-gray-200 text-gray-700 border-transparent";
|
|
497
|
-
readonly dark: "dark:bg-transparent dark:hover:bg-gray-800 dark:active:bg-gray-700 dark:text-gray-300";
|
|
498
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-gray-500 focus-visible:ring-offset-2";
|
|
499
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed";
|
|
500
|
-
};
|
|
501
|
-
readonly destructive: {
|
|
502
|
-
readonly base: "bg-red-600 hover:bg-red-700 active:bg-red-800 text-white border-transparent";
|
|
503
|
-
readonly dark: "dark:bg-red-600 dark:hover:bg-red-700 dark:active:bg-red-800 dark:text-white";
|
|
504
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-red-500 focus-visible:ring-offset-2";
|
|
505
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed";
|
|
506
|
-
};
|
|
507
|
-
readonly success: {
|
|
508
|
-
readonly base: "bg-green-600 hover:bg-green-700 active:bg-green-800 text-white border-transparent";
|
|
509
|
-
readonly dark: "dark:bg-green-600 dark:hover:bg-green-700 dark:active:bg-green-800 dark:text-white";
|
|
510
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-green-500 focus-visible:ring-offset-2";
|
|
511
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed";
|
|
512
|
-
};
|
|
513
|
-
readonly link: {
|
|
514
|
-
readonly base: "bg-transparent hover:bg-transparent active:bg-transparent text-blue-600 border-transparent underline-offset-4 hover:underline";
|
|
515
|
-
readonly dark: "dark:text-blue-400";
|
|
516
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2";
|
|
517
|
-
readonly disabled: "disabled:opacity-50 disabled:cursor-not-allowed disabled:no-underline";
|
|
518
|
-
};
|
|
519
|
-
readonly gradient: {
|
|
520
|
-
readonly primary: "bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white border-transparent shadow-lg hover:shadow-xl";
|
|
521
|
-
readonly secondary: "bg-gradient-to-r from-gray-100 to-gray-200 hover:from-gray-200 hover:to-gray-300 text-gray-900 border-transparent";
|
|
522
|
-
readonly success: "bg-gradient-to-r from-green-500 to-emerald-600 hover:from-green-600 hover:to-emerald-700 text-white border-transparent";
|
|
523
|
-
};
|
|
524
|
-
};
|
|
525
|
-
readonly card: {
|
|
526
|
-
readonly default: {
|
|
527
|
-
readonly base: "bg-white border-gray-200";
|
|
528
|
-
readonly dark: "dark:bg-gray-800 dark:border-gray-700";
|
|
529
|
-
readonly hover: "hover:shadow-md transition-shadow duration-200";
|
|
530
|
-
};
|
|
531
|
-
readonly elevated: {
|
|
532
|
-
readonly base: "bg-white shadow-sm border-gray-200";
|
|
533
|
-
readonly dark: "dark:bg-gray-800 dark:border-gray-700";
|
|
534
|
-
readonly hover: "hover:shadow-lg transition-shadow duration-200";
|
|
535
|
-
};
|
|
536
|
-
readonly interactive: {
|
|
537
|
-
readonly base: "bg-white border-gray-200 cursor-pointer";
|
|
538
|
-
readonly dark: "dark:bg-gray-800 dark:border-gray-700";
|
|
539
|
-
readonly hover: "hover:bg-gray-50 hover:shadow-md dark:hover:bg-gray-700 transition-all duration-200";
|
|
540
|
-
readonly focus: "focus:ring-2 focus:ring-blue-500 focus:ring-offset-2";
|
|
541
|
-
};
|
|
542
|
-
readonly success: {
|
|
543
|
-
readonly base: "bg-green-50 border-green-200";
|
|
544
|
-
readonly dark: "dark:bg-green-900/20 dark:border-green-800";
|
|
545
|
-
readonly text: "text-green-800 dark:text-green-200";
|
|
546
|
-
};
|
|
547
|
-
readonly warning: {
|
|
548
|
-
readonly base: "bg-amber-50 border-amber-200";
|
|
549
|
-
readonly dark: "dark:bg-amber-900/20 dark:border-amber-800";
|
|
550
|
-
readonly text: "text-amber-800 dark:text-amber-200";
|
|
551
|
-
};
|
|
552
|
-
readonly error: {
|
|
553
|
-
readonly base: "bg-red-50 border-red-200";
|
|
554
|
-
readonly dark: "dark:bg-red-900/20 dark:border-red-800";
|
|
555
|
-
readonly text: "text-red-800 dark:text-red-200";
|
|
556
|
-
};
|
|
557
|
-
};
|
|
558
|
-
readonly badge: {
|
|
559
|
-
readonly default: {
|
|
560
|
-
readonly base: "bg-gray-100 text-gray-800";
|
|
561
|
-
readonly dark: "dark:bg-gray-800 dark:text-gray-300";
|
|
562
|
-
};
|
|
563
|
-
readonly primary: {
|
|
564
|
-
readonly base: "bg-blue-100 text-blue-800";
|
|
565
|
-
readonly dark: "dark:bg-blue-900/30 dark:text-blue-300";
|
|
566
|
-
};
|
|
567
|
-
readonly success: {
|
|
568
|
-
readonly base: "bg-green-100 text-green-800";
|
|
569
|
-
readonly dark: "dark:bg-green-900/30 dark:text-green-300";
|
|
570
|
-
};
|
|
571
|
-
readonly warning: {
|
|
572
|
-
readonly base: "bg-amber-100 text-amber-800";
|
|
573
|
-
readonly dark: "dark:bg-amber-900/30 dark:text-amber-300";
|
|
574
|
-
};
|
|
575
|
-
readonly error: {
|
|
576
|
-
readonly base: "bg-red-100 text-red-800";
|
|
577
|
-
readonly dark: "dark:bg-red-900/30 dark:text-red-300";
|
|
578
|
-
};
|
|
579
|
-
readonly ethereum: {
|
|
580
|
-
readonly base: "bg-blue-100 text-blue-800";
|
|
581
|
-
readonly dark: "dark:bg-blue-900/30 dark:text-blue-300";
|
|
582
|
-
};
|
|
583
|
-
readonly solana: {
|
|
584
|
-
readonly base: "bg-purple-100 text-purple-800";
|
|
585
|
-
readonly dark: "dark:bg-purple-900/30 dark:text-purple-300";
|
|
586
|
-
};
|
|
587
|
-
readonly polygon: {
|
|
588
|
-
readonly base: "bg-purple-50 text-purple-800";
|
|
589
|
-
readonly dark: "dark:bg-purple-900/20 dark:text-purple-300";
|
|
590
|
-
};
|
|
591
|
-
readonly bitcoin: {
|
|
592
|
-
readonly base: "bg-orange-100 text-orange-800";
|
|
593
|
-
readonly dark: "dark:bg-orange-900/30 dark:text-orange-300";
|
|
594
|
-
};
|
|
595
|
-
readonly binance: {
|
|
596
|
-
readonly base: "bg-amber-100 text-amber-800";
|
|
597
|
-
readonly dark: "dark:bg-amber-900/30 dark:text-amber-300";
|
|
598
|
-
};
|
|
599
|
-
readonly cardano: {
|
|
600
|
-
readonly base: "bg-blue-50 text-blue-900";
|
|
601
|
-
readonly dark: "dark:bg-blue-900/20 dark:text-blue-200";
|
|
602
|
-
};
|
|
603
|
-
readonly avalanche: {
|
|
604
|
-
readonly base: "bg-red-100 text-red-800";
|
|
605
|
-
readonly dark: "dark:bg-red-900/30 dark:text-red-300";
|
|
606
|
-
};
|
|
607
|
-
readonly arbitrum: {
|
|
608
|
-
readonly base: "bg-gray-100 text-gray-800";
|
|
609
|
-
readonly dark: "dark:bg-gray-800/50 dark:text-gray-300";
|
|
610
|
-
};
|
|
611
|
-
readonly optimism: {
|
|
612
|
-
readonly base: "bg-red-50 text-red-900";
|
|
613
|
-
readonly dark: "dark:bg-red-900/20 dark:text-red-200";
|
|
614
|
-
};
|
|
615
|
-
};
|
|
616
|
-
readonly input: {
|
|
617
|
-
readonly default: {
|
|
618
|
-
readonly base: "bg-white border-gray-300 text-gray-900 placeholder:text-gray-500";
|
|
619
|
-
readonly dark: "dark:bg-gray-900 dark:border-gray-600 dark:text-gray-100 dark:placeholder:text-gray-400";
|
|
620
|
-
readonly focus: "focus:ring-2 focus:ring-blue-500 focus:border-blue-500 dark:focus:ring-blue-400 dark:focus:border-blue-400";
|
|
621
|
-
readonly error: "border-red-300 focus:border-red-500 focus:ring-red-500 dark:border-red-700";
|
|
622
|
-
};
|
|
623
|
-
readonly search: {
|
|
624
|
-
readonly base: "bg-gray-50 border-gray-200 text-gray-900 placeholder:text-gray-500";
|
|
625
|
-
readonly dark: "dark:bg-gray-800 dark:border-gray-700 dark:text-gray-100 dark:placeholder:text-gray-400";
|
|
626
|
-
readonly focus: "focus:bg-white focus:ring-2 focus:ring-blue-500 focus:border-blue-500 dark:focus:bg-gray-900";
|
|
627
|
-
};
|
|
628
|
-
};
|
|
629
|
-
readonly alert: {
|
|
630
|
-
readonly info: {
|
|
631
|
-
readonly base: "bg-blue-50 border-blue-200 text-blue-800";
|
|
632
|
-
readonly dark: "dark:bg-blue-900/20 dark:border-blue-800 dark:text-blue-200";
|
|
633
|
-
readonly icon: "text-blue-600 dark:text-blue-400";
|
|
634
|
-
};
|
|
635
|
-
readonly success: {
|
|
636
|
-
readonly base: "bg-green-50 border-green-200 text-green-800";
|
|
637
|
-
readonly dark: "dark:bg-green-900/20 dark:border-green-800 dark:text-green-200";
|
|
638
|
-
readonly icon: "text-green-600 dark:text-green-400";
|
|
639
|
-
};
|
|
640
|
-
readonly warning: {
|
|
641
|
-
readonly base: "bg-amber-50 border-amber-200 text-amber-800";
|
|
642
|
-
readonly dark: "dark:bg-amber-900/20 dark:border-amber-800 dark:text-amber-200";
|
|
643
|
-
readonly icon: "text-amber-600 dark:text-amber-400";
|
|
644
|
-
};
|
|
645
|
-
readonly error: {
|
|
646
|
-
readonly base: "bg-red-50 border-red-200 text-red-800";
|
|
647
|
-
readonly dark: "dark:bg-red-900/20 dark:border-red-800 dark:text-red-200";
|
|
648
|
-
readonly icon: "text-red-600 dark:text-red-400";
|
|
649
|
-
};
|
|
650
|
-
};
|
|
651
|
-
};
|
|
652
|
-
readonly utils: {
|
|
653
|
-
readonly getColorClasses: (component: "button" | "input" | "alert" | "badge" | "card", variant: string, states?: ("focus" | "hover" | "disabled" | "active")[]) => string;
|
|
654
|
-
readonly buildColorClass: (background: string, text: string, border?: string, states?: {
|
|
655
|
-
hover?: {
|
|
656
|
-
background?: string;
|
|
657
|
-
text?: string;
|
|
658
|
-
border?: string;
|
|
659
|
-
};
|
|
660
|
-
focus?: {
|
|
661
|
-
ring?: string;
|
|
662
|
-
};
|
|
663
|
-
dark?: {
|
|
664
|
-
background?: string;
|
|
665
|
-
text?: string;
|
|
666
|
-
border?: string;
|
|
667
|
-
};
|
|
668
|
-
}) => string;
|
|
669
|
-
};
|
|
670
|
-
};
|
|
671
|
-
tokens: {
|
|
672
|
-
readonly spacing: {
|
|
673
|
-
readonly xs: "p-1";
|
|
674
|
-
readonly sm: "p-2";
|
|
675
|
-
readonly md: "p-4";
|
|
676
|
-
readonly lg: "p-6";
|
|
677
|
-
readonly xl: "p-8";
|
|
678
|
-
readonly "2xl": "p-12";
|
|
679
|
-
readonly "3xl": "p-16";
|
|
680
|
-
readonly "4xl": "p-20";
|
|
681
|
-
readonly "5xl": "p-24";
|
|
682
|
-
};
|
|
683
|
-
readonly margin: {
|
|
684
|
-
readonly xs: "m-1";
|
|
685
|
-
readonly sm: "m-2";
|
|
686
|
-
readonly md: "m-4";
|
|
687
|
-
readonly lg: "m-6";
|
|
688
|
-
readonly xl: "m-8";
|
|
689
|
-
readonly "2xl": "m-12";
|
|
690
|
-
readonly "3xl": "m-16";
|
|
691
|
-
readonly "4xl": "m-20";
|
|
692
|
-
readonly "5xl": "m-24";
|
|
693
|
-
};
|
|
694
|
-
readonly padding: {
|
|
695
|
-
readonly xs: "p-1";
|
|
696
|
-
readonly sm: "p-2";
|
|
697
|
-
readonly md: "p-4";
|
|
698
|
-
readonly lg: "p-6";
|
|
699
|
-
readonly xl: "p-8";
|
|
700
|
-
readonly "2xl": "p-12";
|
|
701
|
-
readonly "3xl": "p-16";
|
|
702
|
-
};
|
|
703
|
-
readonly gap: {
|
|
704
|
-
readonly xs: "gap-1";
|
|
705
|
-
readonly sm: "gap-2";
|
|
706
|
-
readonly md: "gap-4";
|
|
707
|
-
readonly lg: "gap-6";
|
|
708
|
-
readonly xl: "gap-8";
|
|
709
|
-
readonly "2xl": "gap-12";
|
|
710
|
-
readonly "3xl": "gap-16";
|
|
711
|
-
};
|
|
712
|
-
readonly radius: {
|
|
713
|
-
readonly none: "rounded-none";
|
|
714
|
-
readonly sm: "rounded-sm";
|
|
715
|
-
readonly md: "rounded-md";
|
|
716
|
-
readonly lg: "rounded-lg";
|
|
717
|
-
readonly xl: "rounded-xl";
|
|
718
|
-
readonly "2xl": "rounded-2xl";
|
|
719
|
-
readonly "3xl": "rounded-3xl";
|
|
720
|
-
readonly full: "rounded-full";
|
|
721
|
-
};
|
|
722
|
-
readonly shadow: {
|
|
723
|
-
readonly none: "shadow-none";
|
|
724
|
-
readonly sm: "shadow-sm";
|
|
725
|
-
readonly md: "shadow-md";
|
|
726
|
-
readonly lg: "shadow-lg";
|
|
727
|
-
readonly xl: "shadow-xl";
|
|
728
|
-
readonly "2xl": "shadow-2xl";
|
|
729
|
-
};
|
|
730
|
-
readonly typography: {
|
|
731
|
-
readonly family: {
|
|
732
|
-
readonly sans: "font-sans";
|
|
733
|
-
readonly serif: "font-serif";
|
|
734
|
-
readonly mono: "font-mono";
|
|
735
|
-
readonly display: "font-sans";
|
|
736
|
-
readonly body: "font-sans";
|
|
737
|
-
};
|
|
738
|
-
readonly size: {
|
|
739
|
-
readonly micro: "text-[10px]";
|
|
740
|
-
readonly xs: "text-xs";
|
|
741
|
-
readonly sm: "text-sm";
|
|
742
|
-
readonly base: "text-base";
|
|
743
|
-
readonly md: "text-base";
|
|
744
|
-
readonly lg: "text-lg";
|
|
745
|
-
readonly xl: "text-xl";
|
|
746
|
-
readonly "2xl": "text-2xl";
|
|
747
|
-
readonly "3xl": "text-3xl";
|
|
748
|
-
readonly "4xl": "text-4xl";
|
|
749
|
-
readonly "5xl": "text-5xl";
|
|
750
|
-
readonly "6xl": "text-6xl";
|
|
751
|
-
readonly "7xl": "text-7xl";
|
|
752
|
-
readonly "8xl": "text-8xl";
|
|
753
|
-
readonly "9xl": "text-9xl";
|
|
754
|
-
};
|
|
755
|
-
readonly semantic: {
|
|
756
|
-
readonly caption: "text-xs";
|
|
757
|
-
readonly small: "text-sm";
|
|
758
|
-
readonly body: "text-base";
|
|
759
|
-
readonly bodyLarge: "text-lg";
|
|
760
|
-
readonly subheading: "text-xl";
|
|
761
|
-
readonly h6: "text-base";
|
|
762
|
-
readonly h5: "text-lg";
|
|
763
|
-
readonly h4: "text-xl";
|
|
764
|
-
readonly h3: "text-2xl";
|
|
765
|
-
readonly h2: "text-3xl";
|
|
766
|
-
readonly h1: "text-4xl";
|
|
767
|
-
readonly display: "text-6xl";
|
|
768
|
-
readonly hero: "text-8xl";
|
|
769
|
-
};
|
|
770
|
-
readonly weight: {
|
|
771
|
-
readonly thin: "font-thin";
|
|
772
|
-
readonly extralight: "font-extralight";
|
|
773
|
-
readonly light: "font-light";
|
|
774
|
-
readonly normal: "font-normal";
|
|
775
|
-
readonly medium: "font-medium";
|
|
776
|
-
readonly semibold: "font-semibold";
|
|
777
|
-
readonly bold: "font-bold";
|
|
778
|
-
readonly extrabold: "font-extrabold";
|
|
779
|
-
readonly black: "font-black";
|
|
780
|
-
readonly body: "font-normal";
|
|
781
|
-
readonly emphasis: "font-medium";
|
|
782
|
-
readonly strong: "font-semibold";
|
|
783
|
-
readonly heading: "font-bold";
|
|
784
|
-
readonly display: "font-extrabold";
|
|
785
|
-
};
|
|
786
|
-
readonly style: {
|
|
787
|
-
readonly normal: "not-italic";
|
|
788
|
-
readonly italic: "italic";
|
|
789
|
-
readonly oblique: "italic";
|
|
790
|
-
};
|
|
791
|
-
readonly decoration: {
|
|
792
|
-
readonly none: "no-underline";
|
|
793
|
-
readonly underline: "underline";
|
|
794
|
-
readonly overline: "overline";
|
|
795
|
-
readonly lineThrough: "line-through";
|
|
796
|
-
};
|
|
797
|
-
readonly decorationStyle: {
|
|
798
|
-
readonly solid: "decoration-solid";
|
|
799
|
-
readonly double: "decoration-double";
|
|
800
|
-
readonly dotted: "decoration-dotted";
|
|
801
|
-
readonly dashed: "decoration-dashed";
|
|
802
|
-
readonly wavy: "decoration-wavy";
|
|
803
|
-
};
|
|
804
|
-
readonly decorationThickness: {
|
|
805
|
-
readonly auto: "decoration-auto";
|
|
806
|
-
readonly fromFont: "decoration-from-font";
|
|
807
|
-
readonly thin: "decoration-1";
|
|
808
|
-
readonly medium: "decoration-2";
|
|
809
|
-
readonly thick: "decoration-4";
|
|
810
|
-
};
|
|
811
|
-
readonly underlineOffset: {
|
|
812
|
-
readonly auto: "underline-offset-auto";
|
|
813
|
-
readonly small: "underline-offset-1";
|
|
814
|
-
readonly medium: "underline-offset-2";
|
|
815
|
-
readonly large: "underline-offset-4";
|
|
816
|
-
readonly xl: "underline-offset-8";
|
|
817
|
-
};
|
|
818
|
-
readonly leading: {
|
|
819
|
-
readonly none: "leading-none";
|
|
820
|
-
readonly tight: "leading-tight";
|
|
821
|
-
readonly snug: "leading-snug";
|
|
822
|
-
readonly normal: "leading-normal";
|
|
823
|
-
readonly relaxed: "leading-relaxed";
|
|
824
|
-
readonly loose: "leading-loose";
|
|
825
|
-
readonly heading: "leading-tight";
|
|
826
|
-
readonly body: "leading-relaxed";
|
|
827
|
-
readonly caption: "leading-normal";
|
|
828
|
-
readonly display: "leading-none";
|
|
829
|
-
};
|
|
830
|
-
readonly tracking: {
|
|
831
|
-
readonly tighter: "tracking-tighter";
|
|
832
|
-
readonly tight: "tracking-tight";
|
|
833
|
-
readonly normal: "tracking-normal";
|
|
834
|
-
readonly wide: "tracking-wide";
|
|
835
|
-
readonly wider: "tracking-wider";
|
|
836
|
-
readonly widest: "tracking-widest";
|
|
837
|
-
readonly heading: "tracking-tight";
|
|
838
|
-
readonly body: "tracking-normal";
|
|
839
|
-
readonly caption: "tracking-normal";
|
|
840
|
-
readonly button: "tracking-wide";
|
|
841
|
-
readonly uppercase: "tracking-wider";
|
|
842
|
-
};
|
|
843
|
-
readonly transform: {
|
|
844
|
-
readonly none: "normal-case";
|
|
845
|
-
readonly uppercase: "uppercase";
|
|
846
|
-
readonly lowercase: "lowercase";
|
|
847
|
-
readonly capitalize: "capitalize";
|
|
848
|
-
};
|
|
849
|
-
readonly align: {
|
|
850
|
-
readonly left: "text-left";
|
|
851
|
-
readonly center: "text-center";
|
|
852
|
-
readonly right: "text-right";
|
|
853
|
-
readonly justify: "text-justify";
|
|
854
|
-
readonly start: "text-start";
|
|
855
|
-
readonly end: "text-end";
|
|
856
|
-
};
|
|
857
|
-
readonly verticalAlign: {
|
|
858
|
-
readonly baseline: "align-baseline";
|
|
859
|
-
readonly top: "align-top";
|
|
860
|
-
readonly middle: "align-middle";
|
|
861
|
-
readonly bottom: "align-bottom";
|
|
862
|
-
readonly textTop: "align-text-top";
|
|
863
|
-
readonly textBottom: "align-text-bottom";
|
|
864
|
-
readonly sub: "align-sub";
|
|
865
|
-
readonly super: "align-super";
|
|
866
|
-
};
|
|
867
|
-
readonly whitespace: {
|
|
868
|
-
readonly normal: "whitespace-normal";
|
|
869
|
-
readonly nowrap: "whitespace-nowrap";
|
|
870
|
-
readonly pre: "whitespace-pre";
|
|
871
|
-
readonly preLine: "whitespace-pre-line";
|
|
872
|
-
readonly preWrap: "whitespace-pre-wrap";
|
|
873
|
-
readonly break: "whitespace-break-spaces";
|
|
874
|
-
};
|
|
875
|
-
readonly wordBreak: {
|
|
876
|
-
readonly normal: "break-normal";
|
|
877
|
-
readonly words: "break-words";
|
|
878
|
-
readonly all: "break-all";
|
|
879
|
-
readonly keep: "break-keep";
|
|
880
|
-
};
|
|
881
|
-
readonly overflow: {
|
|
882
|
-
readonly clip: "text-clip";
|
|
883
|
-
readonly ellipsis: "text-ellipsis";
|
|
884
|
-
};
|
|
885
|
-
readonly indent: {
|
|
886
|
-
readonly none: "indent-0";
|
|
887
|
-
readonly sm: "indent-1";
|
|
888
|
-
readonly md: "indent-4";
|
|
889
|
-
readonly lg: "indent-8";
|
|
890
|
-
};
|
|
891
|
-
};
|
|
892
|
-
readonly animation: {
|
|
893
|
-
readonly none: "duration-0";
|
|
894
|
-
readonly fastest: "duration-75";
|
|
895
|
-
readonly fast: "duration-150";
|
|
896
|
-
readonly normal: "duration-200";
|
|
897
|
-
readonly slow: "duration-300";
|
|
898
|
-
readonly slower: "duration-500";
|
|
899
|
-
readonly slowest: "duration-700";
|
|
900
|
-
};
|
|
901
|
-
readonly ease: {
|
|
902
|
-
readonly linear: "ease-linear";
|
|
903
|
-
readonly in: "ease-in";
|
|
904
|
-
readonly out: "ease-out";
|
|
905
|
-
readonly inOut: "ease-in-out";
|
|
906
|
-
};
|
|
907
|
-
readonly zIndex: {
|
|
908
|
-
readonly auto: "z-auto";
|
|
909
|
-
readonly base: "z-0";
|
|
910
|
-
readonly docked: "z-10";
|
|
911
|
-
readonly dropdown: "z-20";
|
|
912
|
-
readonly sticky: "z-30";
|
|
913
|
-
readonly banner: "z-40";
|
|
914
|
-
readonly overlay: "z-50";
|
|
915
|
-
readonly modal: "z-60";
|
|
916
|
-
readonly popover: "z-70";
|
|
917
|
-
readonly skipLink: "z-80";
|
|
918
|
-
readonly toast: "z-90";
|
|
919
|
-
readonly tooltip: "z-100";
|
|
920
|
-
};
|
|
921
|
-
readonly breakpoints: {
|
|
922
|
-
readonly sm: "640px";
|
|
923
|
-
readonly md: "768px";
|
|
924
|
-
readonly lg: "1024px";
|
|
925
|
-
readonly xl: "1280px";
|
|
926
|
-
readonly "2xl": "1536px";
|
|
927
|
-
};
|
|
928
|
-
readonly grid: {
|
|
929
|
-
readonly cols1: "grid-cols-1";
|
|
930
|
-
readonly cols2: "grid-cols-2";
|
|
931
|
-
readonly cols3: "grid-cols-3";
|
|
932
|
-
readonly cols4: "grid-cols-4";
|
|
933
|
-
readonly cols5: "grid-cols-5";
|
|
934
|
-
readonly cols6: "grid-cols-6";
|
|
935
|
-
readonly cols12: "grid-cols-12";
|
|
936
|
-
};
|
|
937
|
-
readonly gridResponsive: {
|
|
938
|
-
readonly responsive2: "grid-cols-1 md:grid-cols-2";
|
|
939
|
-
readonly responsive3: "grid-cols-1 md:grid-cols-2 lg:grid-cols-3";
|
|
940
|
-
readonly responsive4: "grid-cols-1 md:grid-cols-2 lg:grid-cols-4";
|
|
941
|
-
readonly responsive6: "grid-cols-2 md:grid-cols-3 lg:grid-cols-6";
|
|
942
|
-
};
|
|
943
|
-
readonly flex: {
|
|
944
|
-
readonly center: "flex items-center justify-center";
|
|
945
|
-
readonly between: "flex items-center justify-between";
|
|
946
|
-
readonly start: "flex items-center justify-start";
|
|
947
|
-
readonly end: "flex items-center justify-end";
|
|
948
|
-
readonly col: "flex flex-col";
|
|
949
|
-
readonly colCenter: "flex flex-col items-center justify-center";
|
|
950
|
-
readonly wrap: "flex flex-wrap";
|
|
951
|
-
};
|
|
952
|
-
readonly width: {
|
|
953
|
-
readonly full: "w-full";
|
|
954
|
-
readonly screen: "w-screen";
|
|
955
|
-
readonly auto: "w-auto";
|
|
956
|
-
readonly fit: "w-fit";
|
|
957
|
-
readonly container: "w-full max-w-7xl mx-auto";
|
|
958
|
-
readonly containerSm: "w-full max-w-3xl mx-auto";
|
|
959
|
-
readonly containerLg: "w-full max-w-full mx-auto";
|
|
960
|
-
};
|
|
961
|
-
readonly height: {
|
|
962
|
-
readonly full: "h-full";
|
|
963
|
-
readonly screen: "h-screen";
|
|
964
|
-
readonly auto: "h-auto";
|
|
965
|
-
readonly fit: "h-fit";
|
|
966
|
-
readonly min: "min-h-0";
|
|
967
|
-
readonly minScreen: "min-h-screen";
|
|
968
|
-
};
|
|
969
|
-
};
|
|
970
|
-
typography: {
|
|
971
|
-
readonly heading: {
|
|
972
|
-
readonly display: {
|
|
973
|
-
readonly hero: () => string;
|
|
974
|
-
readonly xl: () => string;
|
|
975
|
-
readonly lg: () => string;
|
|
976
|
-
readonly md: () => string;
|
|
977
|
-
readonly sm: () => string;
|
|
978
|
-
};
|
|
979
|
-
readonly h1: () => string;
|
|
980
|
-
readonly h2: () => string;
|
|
981
|
-
readonly h3: () => string;
|
|
982
|
-
readonly h4: () => string;
|
|
983
|
-
readonly h5: () => string;
|
|
984
|
-
readonly h6: () => string;
|
|
985
|
-
readonly responsive: {
|
|
986
|
-
readonly h1: () => string;
|
|
987
|
-
readonly h2: () => string;
|
|
988
|
-
readonly h3: () => string;
|
|
989
|
-
readonly display: () => string;
|
|
990
|
-
};
|
|
991
|
-
};
|
|
992
|
-
readonly body: {
|
|
993
|
-
readonly xl: () => string;
|
|
994
|
-
readonly lg: () => string;
|
|
995
|
-
readonly md: () => string;
|
|
996
|
-
readonly sm: () => string;
|
|
997
|
-
readonly xs: () => string;
|
|
998
|
-
readonly strong: {
|
|
999
|
-
readonly xl: () => string;
|
|
1000
|
-
readonly lg: () => string;
|
|
1001
|
-
readonly md: () => string;
|
|
1002
|
-
readonly sm: () => string;
|
|
1003
|
-
};
|
|
1004
|
-
readonly emphasis: {
|
|
1005
|
-
readonly xl: () => string;
|
|
1006
|
-
readonly lg: () => string;
|
|
1007
|
-
readonly md: () => string;
|
|
1008
|
-
readonly sm: () => string;
|
|
1009
|
-
};
|
|
1010
|
-
readonly muted: {
|
|
1011
|
-
readonly xl: () => string;
|
|
1012
|
-
readonly lg: () => string;
|
|
1013
|
-
readonly md: () => string;
|
|
1014
|
-
readonly sm: () => string;
|
|
1015
|
-
};
|
|
1016
|
-
};
|
|
1017
|
-
readonly caption: {
|
|
1018
|
-
readonly default: () => string;
|
|
1019
|
-
readonly emphasis: () => string;
|
|
1020
|
-
readonly uppercase: () => string;
|
|
1021
|
-
};
|
|
1022
|
-
readonly lead: {
|
|
1023
|
-
readonly lg: () => string;
|
|
1024
|
-
readonly md: () => string;
|
|
1025
|
-
readonly sm: () => string;
|
|
1026
|
-
};
|
|
1027
|
-
readonly link: {
|
|
1028
|
-
readonly default: () => string;
|
|
1029
|
-
readonly subtle: () => string;
|
|
1030
|
-
readonly muted: () => string;
|
|
1031
|
-
readonly external: () => string;
|
|
1032
|
-
};
|
|
1033
|
-
readonly code: {
|
|
1034
|
-
readonly inline: () => string;
|
|
1035
|
-
readonly block: () => string;
|
|
1036
|
-
readonly small: () => string;
|
|
1037
|
-
};
|
|
1038
|
-
readonly label: {
|
|
1039
|
-
readonly default: () => string;
|
|
1040
|
-
readonly required: () => string;
|
|
1041
|
-
readonly optional: () => string;
|
|
1042
|
-
readonly helper: () => string;
|
|
1043
|
-
readonly error: () => string;
|
|
1044
|
-
readonly success: () => string;
|
|
1045
|
-
};
|
|
1046
|
-
readonly web3: {
|
|
1047
|
-
readonly address: () => string;
|
|
1048
|
-
readonly addressShort: () => string;
|
|
1049
|
-
readonly hash: () => string;
|
|
1050
|
-
readonly amount: () => string;
|
|
1051
|
-
readonly chain: () => string;
|
|
1052
|
-
readonly symbol: () => string;
|
|
1053
|
-
};
|
|
1054
|
-
readonly truncate: {
|
|
1055
|
-
readonly line: () => string;
|
|
1056
|
-
readonly lines2: () => string;
|
|
1057
|
-
readonly lines3: () => string;
|
|
1058
|
-
readonly lines4: () => string;
|
|
1059
|
-
};
|
|
1060
|
-
readonly selection: {
|
|
1061
|
-
readonly default: () => string;
|
|
1062
|
-
readonly brand: () => string;
|
|
1063
|
-
};
|
|
1064
|
-
};
|
|
1065
|
-
variants: import('@sudobility/design').VariantsType;
|
|
1066
58
|
};
|
|
1067
59
|
};
|
|
1068
60
|
export default _default;
|