@umituz/atomic-next 1.4.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.
@@ -0,0 +1,1444 @@
1
+ import { ClassValue } from 'clsx';
2
+ import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
3
+ import React$1 from 'react';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
6
+ import Image from 'next/image';
7
+ import Link from 'next/link';
8
+ import { LucideProps, LucideIcon } from 'lucide-react';
9
+
10
+ declare const AtomicColors: {
11
+ readonly primary: "#8B5CF6";
12
+ readonly primaryLight: "#A78BFA";
13
+ readonly primaryDark: "#7C3AED";
14
+ readonly secondary: "#EC4899";
15
+ readonly secondaryLight: "#F472B6";
16
+ readonly secondaryDark: "#DB2777";
17
+ readonly accent: "#F59E0B";
18
+ readonly accentLight: "#FBBF24";
19
+ readonly accentDark: "#D97706";
20
+ readonly gray50: "#FAFAFA";
21
+ readonly gray100: "#F4F4F5";
22
+ readonly gray200: "#E4E4E7";
23
+ readonly gray300: "#D4D4D8";
24
+ readonly gray400: "#A1A1AA";
25
+ readonly gray500: "#71717A";
26
+ readonly gray600: "#52525B";
27
+ readonly gray700: "#3F3F46";
28
+ readonly gray800: "#27272A";
29
+ readonly gray900: "#18181B";
30
+ readonly success: "#10B981";
31
+ readonly successLight: "#34D399";
32
+ readonly successDark: "#059669";
33
+ readonly warning: "#F59E0B";
34
+ readonly warningLight: "#FBBF24";
35
+ readonly warningDark: "#D97706";
36
+ readonly error: "#EF4444";
37
+ readonly errorLight: "#F87171";
38
+ readonly errorDark: "#DC2626";
39
+ readonly info: "#3B82F6";
40
+ readonly infoLight: "#60A5FA";
41
+ readonly infoDark: "#2563EB";
42
+ readonly background: "#FFFFFF";
43
+ readonly backgroundSecondary: "#F9FAFB";
44
+ readonly surface: "#FFFFFF";
45
+ readonly surfaceSecondary: "#F3F4F6";
46
+ readonly textPrimary: "#18181B";
47
+ readonly textSecondary: "#52525B";
48
+ readonly textTertiary: "#A1A1AA";
49
+ readonly textDisabled: "#D4D4D8";
50
+ readonly textInverse: "#FFFFFF";
51
+ readonly transparent: "transparent";
52
+ readonly current: "currentColor";
53
+ readonly black: "#000000";
54
+ readonly white: "#FFFFFF";
55
+ };
56
+ declare const ColorUtils: {
57
+ withAlpha: (color: string, alpha: number) => string;
58
+ hexToRgb: (hex: string) => {
59
+ r: number;
60
+ g: number;
61
+ b: number;
62
+ } | null;
63
+ hexToHsl: (hex: string) => {
64
+ h: number;
65
+ s: number;
66
+ l: number;
67
+ } | null;
68
+ };
69
+ declare const AtomicColorsCss: {
70
+ readonly '--atomic-primary': "#8B5CF6";
71
+ readonly '--atomic-primary-light': "#A78BFA";
72
+ readonly '--atomic-primary-dark': "#7C3AED";
73
+ readonly '--atomic-secondary': "#EC4899";
74
+ readonly '--atomic-secondary-light': "#F472B6";
75
+ readonly '--atomic-secondary-dark': "#DB2777";
76
+ readonly '--atomic-accent': "#F59E0B";
77
+ readonly '--atomic-accent-light': "#FBBF24";
78
+ readonly '--atomic-accent-dark': "#D97706";
79
+ readonly '--atomic-gray-50': "#FAFAFA";
80
+ readonly '--atomic-gray-100': "#F4F4F5";
81
+ readonly '--atomic-gray-200': "#E4E4E7";
82
+ readonly '--atomic-gray-300': "#D4D4D8";
83
+ readonly '--atomic-gray-400': "#A1A1AA";
84
+ readonly '--atomic-gray-500': "#71717A";
85
+ readonly '--atomic-gray-600': "#52525B";
86
+ readonly '--atomic-gray-700': "#3F3F46";
87
+ readonly '--atomic-gray-800': "#27272A";
88
+ readonly '--atomic-gray-900': "#18181B";
89
+ readonly '--atomic-success': "#10B981";
90
+ readonly '--atomic-success-light': "#34D399";
91
+ readonly '--atomic-success-dark': "#059669";
92
+ readonly '--atomic-warning': "#F59E0B";
93
+ readonly '--atomic-warning-light': "#FBBF24";
94
+ readonly '--atomic-warning-dark': "#D97706";
95
+ readonly '--atomic-error': "#EF4444";
96
+ readonly '--atomic-error-light': "#F87171";
97
+ readonly '--atomic-error-dark': "#DC2626";
98
+ readonly '--atomic-info': "#3B82F6";
99
+ readonly '--atomic-info-light': "#60A5FA";
100
+ readonly '--atomic-info-dark': "#2563EB";
101
+ readonly '--atomic-background': "#FFFFFF";
102
+ readonly '--atomic-background-secondary': "#F9FAFB";
103
+ readonly '--atomic-surface': "#FFFFFF";
104
+ readonly '--atomic-surface-secondary': "#F3F4F6";
105
+ readonly '--atomic-text-primary': "#18181B";
106
+ readonly '--atomic-text-secondary': "#52525B";
107
+ readonly '--atomic-text-tertiary': "#A1A1AA";
108
+ readonly '--atomic-text-disabled': "#D4D4D8";
109
+ readonly '--atomic-text-inverse': "#FFFFFF";
110
+ };
111
+ type AtomicColor = keyof typeof AtomicColors;
112
+ type AtomicColorValue = typeof AtomicColors[AtomicColor];
113
+
114
+ declare const AtomicSpacing: {
115
+ readonly unit: 8;
116
+ readonly xxs: 4;
117
+ readonly xs: 8;
118
+ readonly sm: 12;
119
+ readonly md: 16;
120
+ readonly lg: 24;
121
+ readonly xl: 32;
122
+ readonly xxl: 40;
123
+ readonly xxxl: 48;
124
+ readonly huge: 64;
125
+ readonly buttonPaddingX: 16;
126
+ readonly buttonPaddingY: 12;
127
+ readonly cardPadding: 24;
128
+ readonly cardMargin: 16;
129
+ readonly listItemPadding: 16;
130
+ readonly listItemSpacing: 8;
131
+ readonly inputPaddingX: 16;
132
+ readonly inputPaddingY: 12;
133
+ readonly modalPadding: 24;
134
+ readonly sectionPadding: 32;
135
+ };
136
+ declare const SpacingUtils: {
137
+ get: (name: keyof typeof AtomicSpacing) => number;
138
+ rem: (name: keyof typeof AtomicSpacing) => string;
139
+ px: (name: keyof typeof AtomicSpacing) => string;
140
+ margin: {
141
+ all: (value: keyof typeof AtomicSpacing) => {
142
+ margin: string;
143
+ };
144
+ top: (value: keyof typeof AtomicSpacing) => {
145
+ marginTop: string;
146
+ };
147
+ right: (value: keyof typeof AtomicSpacing) => {
148
+ marginRight: string;
149
+ };
150
+ bottom: (value: keyof typeof AtomicSpacing) => {
151
+ marginBottom: string;
152
+ };
153
+ left: (value: keyof typeof AtomicSpacing) => {
154
+ marginLeft: string;
155
+ };
156
+ horizontal: (value: keyof typeof AtomicSpacing) => {
157
+ marginLeft: string;
158
+ marginRight: string;
159
+ };
160
+ vertical: (value: keyof typeof AtomicSpacing) => {
161
+ marginTop: string;
162
+ marginBottom: string;
163
+ };
164
+ };
165
+ padding: {
166
+ all: (value: keyof typeof AtomicSpacing) => {
167
+ padding: string;
168
+ };
169
+ top: (value: keyof typeof AtomicSpacing) => {
170
+ paddingTop: string;
171
+ };
172
+ right: (value: keyof typeof AtomicSpacing) => {
173
+ paddingRight: string;
174
+ };
175
+ bottom: (value: keyof typeof AtomicSpacing) => {
176
+ paddingBottom: string;
177
+ };
178
+ left: (value: keyof typeof AtomicSpacing) => {
179
+ paddingLeft: string;
180
+ };
181
+ horizontal: (value: keyof typeof AtomicSpacing) => {
182
+ paddingLeft: string;
183
+ paddingRight: string;
184
+ };
185
+ vertical: (value: keyof typeof AtomicSpacing) => {
186
+ paddingTop: string;
187
+ paddingBottom: string;
188
+ };
189
+ };
190
+ gap: (value: keyof typeof AtomicSpacing) => {
191
+ gap: string;
192
+ };
193
+ };
194
+ declare const AtomicSpacingCss: {
195
+ readonly '--atomic-spacing-unit': "8px";
196
+ readonly '--atomic-spacing-xxs': "4px";
197
+ readonly '--atomic-spacing-xs': "8px";
198
+ readonly '--atomic-spacing-sm': "12px";
199
+ readonly '--atomic-spacing-md': "16px";
200
+ readonly '--atomic-spacing-lg': "24px";
201
+ readonly '--atomic-spacing-xl': "32px";
202
+ readonly '--atomic-spacing-xxl': "40px";
203
+ readonly '--atomic-spacing-xxxl': "48px";
204
+ readonly '--atomic-spacing-huge': "64px";
205
+ readonly '--atomic-button-padding-x': "16px";
206
+ readonly '--atomic-button-padding-y': "12px";
207
+ readonly '--atomic-card-padding': "24px";
208
+ readonly '--atomic-card-margin': "16px";
209
+ readonly '--atomic-list-item-padding': "16px";
210
+ readonly '--atomic-list-item-spacing': "8px";
211
+ readonly '--atomic-input-padding-x': "16px";
212
+ readonly '--atomic-input-padding-y': "12px";
213
+ readonly '--atomic-modal-padding': "24px";
214
+ readonly '--atomic-section-padding': "32px";
215
+ };
216
+ type AtomicSpacingKey = keyof typeof AtomicSpacing;
217
+ type AtomicSpacingValue = typeof AtomicSpacing[AtomicSpacingKey];
218
+
219
+ declare const AtomicTypography: {
220
+ readonly fontFamily: {
221
+ readonly sans: readonly ["Inter", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "sans-serif"];
222
+ readonly serif: readonly ["Charter", "Georgia", "Cambria", "Times New Roman", "Times", "serif"];
223
+ readonly mono: readonly ["JetBrains Mono", "Fira Code", "Consolas", "Monaco", "Courier New", "monospace"];
224
+ };
225
+ readonly fontWeight: {
226
+ readonly thin: 100;
227
+ readonly light: 300;
228
+ readonly regular: 400;
229
+ readonly medium: 500;
230
+ readonly semibold: 600;
231
+ readonly bold: 700;
232
+ readonly extrabold: 800;
233
+ readonly black: 900;
234
+ };
235
+ readonly fontSize: {
236
+ readonly displayLarge: 57;
237
+ readonly displayMedium: 45;
238
+ readonly displaySmall: 36;
239
+ readonly headlineLarge: 32;
240
+ readonly headlineMedium: 28;
241
+ readonly headlineSmall: 24;
242
+ readonly titleLarge: 22;
243
+ readonly titleMedium: 16;
244
+ readonly titleSmall: 14;
245
+ readonly bodyLarge: 16;
246
+ readonly bodyMedium: 14;
247
+ readonly bodySmall: 12;
248
+ readonly labelLarge: 14;
249
+ readonly labelMedium: 12;
250
+ readonly labelSmall: 11;
251
+ };
252
+ readonly lineHeight: {
253
+ readonly none: 1;
254
+ readonly tight: 1.25;
255
+ readonly snug: 1.375;
256
+ readonly normal: 1.5;
257
+ readonly relaxed: 1.625;
258
+ readonly loose: 2;
259
+ };
260
+ readonly letterSpacing: {
261
+ readonly tighter: "-0.05em";
262
+ readonly tight: "-0.025em";
263
+ readonly normal: "0em";
264
+ readonly wide: "0.025em";
265
+ readonly wider: "0.05em";
266
+ readonly widest: "0.1em";
267
+ };
268
+ };
269
+ declare const TypographyUtils: {
270
+ style: (config: {
271
+ fontSize?: keyof typeof AtomicTypography.fontSize;
272
+ fontWeight?: keyof typeof AtomicTypography.fontWeight;
273
+ lineHeight?: keyof typeof AtomicTypography.lineHeight;
274
+ letterSpacing?: keyof typeof AtomicTypography.letterSpacing;
275
+ fontFamily?: keyof typeof AtomicTypography.fontFamily;
276
+ color?: string;
277
+ }) => {
278
+ fontSize: string | undefined;
279
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
280
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
281
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
282
+ fontFamily: string | undefined;
283
+ color: string | undefined;
284
+ };
285
+ rem: (size: keyof typeof AtomicTypography.fontSize) => string;
286
+ px: (size: keyof typeof AtomicTypography.fontSize) => string;
287
+ };
288
+ declare const AtomicTextStyles: {
289
+ readonly displayLarge: {
290
+ fontSize: string | undefined;
291
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
292
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
293
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
294
+ fontFamily: string | undefined;
295
+ color: string | undefined;
296
+ };
297
+ readonly displayMedium: {
298
+ fontSize: string | undefined;
299
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
300
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
301
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
302
+ fontFamily: string | undefined;
303
+ color: string | undefined;
304
+ };
305
+ readonly displaySmall: {
306
+ fontSize: string | undefined;
307
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
308
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
309
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
310
+ fontFamily: string | undefined;
311
+ color: string | undefined;
312
+ };
313
+ readonly headlineLarge: {
314
+ fontSize: string | undefined;
315
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
316
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
317
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
318
+ fontFamily: string | undefined;
319
+ color: string | undefined;
320
+ };
321
+ readonly headlineMedium: {
322
+ fontSize: string | undefined;
323
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
324
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
325
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
326
+ fontFamily: string | undefined;
327
+ color: string | undefined;
328
+ };
329
+ readonly headlineSmall: {
330
+ fontSize: string | undefined;
331
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
332
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
333
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
334
+ fontFamily: string | undefined;
335
+ color: string | undefined;
336
+ };
337
+ readonly titleLarge: {
338
+ fontSize: string | undefined;
339
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
340
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
341
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
342
+ fontFamily: string | undefined;
343
+ color: string | undefined;
344
+ };
345
+ readonly titleMedium: {
346
+ fontSize: string | undefined;
347
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
348
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
349
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
350
+ fontFamily: string | undefined;
351
+ color: string | undefined;
352
+ };
353
+ readonly titleSmall: {
354
+ fontSize: string | undefined;
355
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
356
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
357
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
358
+ fontFamily: string | undefined;
359
+ color: string | undefined;
360
+ };
361
+ readonly bodyLarge: {
362
+ fontSize: string | undefined;
363
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
364
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
365
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
366
+ fontFamily: string | undefined;
367
+ color: string | undefined;
368
+ };
369
+ readonly bodyMedium: {
370
+ fontSize: string | undefined;
371
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
372
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
373
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
374
+ fontFamily: string | undefined;
375
+ color: string | undefined;
376
+ };
377
+ readonly bodySmall: {
378
+ fontSize: string | undefined;
379
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
380
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
381
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
382
+ fontFamily: string | undefined;
383
+ color: string | undefined;
384
+ };
385
+ readonly labelLarge: {
386
+ fontSize: string | undefined;
387
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
388
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
389
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
390
+ fontFamily: string | undefined;
391
+ color: string | undefined;
392
+ };
393
+ readonly labelMedium: {
394
+ fontSize: string | undefined;
395
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
396
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
397
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
398
+ fontFamily: string | undefined;
399
+ color: string | undefined;
400
+ };
401
+ readonly labelSmall: {
402
+ fontSize: string | undefined;
403
+ fontWeight: 100 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | undefined;
404
+ lineHeight: 1 | 2 | 1.25 | 1.375 | 1.5 | 1.625 | undefined;
405
+ letterSpacing: "-0.05em" | "-0.025em" | "0em" | "0.025em" | "0.05em" | "0.1em" | undefined;
406
+ fontFamily: string | undefined;
407
+ color: string | undefined;
408
+ };
409
+ };
410
+ declare const AtomicTypographyCss: {
411
+ readonly '--atomic-font-sans': string;
412
+ readonly '--atomic-font-serif': string;
413
+ readonly '--atomic-font-mono': string;
414
+ readonly '--atomic-font-thin': string;
415
+ readonly '--atomic-font-light': string;
416
+ readonly '--atomic-font-regular': string;
417
+ readonly '--atomic-font-medium': string;
418
+ readonly '--atomic-font-semibold': string;
419
+ readonly '--atomic-font-bold': string;
420
+ readonly '--atomic-font-extrabold': string;
421
+ readonly '--atomic-font-black': string;
422
+ readonly '--atomic-text-display-large': "57px";
423
+ readonly '--atomic-text-display-medium': "45px";
424
+ readonly '--atomic-text-display-small': "36px";
425
+ readonly '--atomic-text-headline-large': "32px";
426
+ readonly '--atomic-text-headline-medium': "28px";
427
+ readonly '--atomic-text-headline-small': "24px";
428
+ readonly '--atomic-text-title-large': "22px";
429
+ readonly '--atomic-text-title-medium': "16px";
430
+ readonly '--atomic-text-title-small': "14px";
431
+ readonly '--atomic-text-body-large': "16px";
432
+ readonly '--atomic-text-body-medium': "14px";
433
+ readonly '--atomic-text-body-small': "12px";
434
+ readonly '--atomic-text-label-large': "14px";
435
+ readonly '--atomic-text-label-medium': "12px";
436
+ readonly '--atomic-text-label-small': "11px";
437
+ readonly '--atomic-leading-none': string;
438
+ readonly '--atomic-leading-tight': string;
439
+ readonly '--atomic-leading-snug': string;
440
+ readonly '--atomic-leading-normal': string;
441
+ readonly '--atomic-leading-relaxed': string;
442
+ readonly '--atomic-leading-loose': string;
443
+ readonly '--atomic-tracking-tighter': "-0.05em";
444
+ readonly '--atomic-tracking-tight': "-0.025em";
445
+ readonly '--atomic-tracking-normal': "0em";
446
+ readonly '--atomic-tracking-wide': "0.025em";
447
+ readonly '--atomic-tracking-wider': "0.05em";
448
+ readonly '--atomic-tracking-widest': "0.1em";
449
+ };
450
+ type AtomicFontSize = keyof typeof AtomicTypography.fontSize;
451
+ type AtomicFontWeight = keyof typeof AtomicTypography.fontWeight;
452
+ type AtomicLineHeight = keyof typeof AtomicTypography.lineHeight;
453
+ type AtomicLetterSpacing = keyof typeof AtomicTypography.letterSpacing;
454
+ type AtomicFontFamily = keyof typeof AtomicTypography.fontFamily;
455
+ type AtomicTextStyle = keyof typeof AtomicTextStyles;
456
+
457
+ declare const AtomicShadows: {
458
+ readonly none: "none";
459
+ readonly xs: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
460
+ readonly sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
461
+ readonly md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
462
+ readonly lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
463
+ readonly xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
464
+ readonly xxl: "0 25px 50px -12px rgb(0 0 0 / 0.25)";
465
+ readonly inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)";
466
+ readonly focusPrimary: "0 0 0 3px rgb(139 92 246 / 0.2)";
467
+ readonly focusSecondary: "0 0 0 3px rgb(236 72 153 / 0.2)";
468
+ readonly focusSuccess: "0 0 0 3px rgb(16 185 129 / 0.2)";
469
+ readonly focusWarning: "0 0 0 3px rgb(245 158 11 / 0.2)";
470
+ readonly focusError: "0 0 0 3px rgb(239 68 68 / 0.2)";
471
+ readonly focusInfo: "0 0 0 3px rgb(59 130 246 / 0.2)";
472
+ readonly glowPrimary: "0 0 20px rgb(139 92 246 / 0.3)";
473
+ readonly glowSecondary: "0 0 20px rgb(236 72 153 / 0.3)";
474
+ readonly glowSuccess: "0 0 20px rgb(16 185 129 / 0.3)";
475
+ readonly glowWarning: "0 0 20px rgb(245 158 11 / 0.3)";
476
+ readonly glowError: "0 0 20px rgb(239 68 68 / 0.3)";
477
+ readonly card: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
478
+ readonly cardHover: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
479
+ readonly button: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
480
+ readonly buttonHover: "0 2px 4px 0 rgb(0 0 0 / 0.1)";
481
+ readonly modal: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
482
+ readonly dropdown: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
483
+ readonly tooltip: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
484
+ };
485
+ declare const ShadowUtils: {
486
+ get: (name: keyof typeof AtomicShadows) => string;
487
+ custom: (x: number, y: number, blur: number, spread?: number, color?: string, opacity?: number) => string;
488
+ combine: (...shadows: (keyof typeof AtomicShadows)[]) => string;
489
+ focus: (color?: string, opacity?: number) => string;
490
+ glow: (size?: number, color?: string, opacity?: number) => string;
491
+ };
492
+ declare const AtomicShadowsCss: {
493
+ readonly '--atomic-shadow-none': "none";
494
+ readonly '--atomic-shadow-xs': "0 1px 2px 0 rgb(0 0 0 / 0.05)";
495
+ readonly '--atomic-shadow-sm': "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
496
+ readonly '--atomic-shadow-md': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
497
+ readonly '--atomic-shadow-lg': "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
498
+ readonly '--atomic-shadow-xl': "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
499
+ readonly '--atomic-shadow-xxl': "0 25px 50px -12px rgb(0 0 0 / 0.25)";
500
+ readonly '--atomic-shadow-inner': "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)";
501
+ readonly '--atomic-shadow-focus-primary': "0 0 0 3px rgb(139 92 246 / 0.2)";
502
+ readonly '--atomic-shadow-focus-secondary': "0 0 0 3px rgb(236 72 153 / 0.2)";
503
+ readonly '--atomic-shadow-focus-success': "0 0 0 3px rgb(16 185 129 / 0.2)";
504
+ readonly '--atomic-shadow-focus-warning': "0 0 0 3px rgb(245 158 11 / 0.2)";
505
+ readonly '--atomic-shadow-focus-error': "0 0 0 3px rgb(239 68 68 / 0.2)";
506
+ readonly '--atomic-shadow-focus-info': "0 0 0 3px rgb(59 130 246 / 0.2)";
507
+ readonly '--atomic-shadow-glow-primary': "0 0 20px rgb(139 92 246 / 0.3)";
508
+ readonly '--atomic-shadow-glow-secondary': "0 0 20px rgb(236 72 153 / 0.3)";
509
+ readonly '--atomic-shadow-glow-success': "0 0 20px rgb(16 185 129 / 0.3)";
510
+ readonly '--atomic-shadow-glow-warning': "0 0 20px rgb(245 158 11 / 0.3)";
511
+ readonly '--atomic-shadow-glow-error': "0 0 20px rgb(239 68 68 / 0.3)";
512
+ readonly '--atomic-shadow-card': "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
513
+ readonly '--atomic-shadow-card-hover': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
514
+ readonly '--atomic-shadow-button': "0 1px 2px 0 rgb(0 0 0 / 0.05)";
515
+ readonly '--atomic-shadow-button-hover': "0 2px 4px 0 rgb(0 0 0 / 0.1)";
516
+ readonly '--atomic-shadow-modal': "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
517
+ readonly '--atomic-shadow-dropdown': "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
518
+ readonly '--atomic-shadow-tooltip': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
519
+ };
520
+ type AtomicShadowKey = keyof typeof AtomicShadows;
521
+ type AtomicShadowValue = typeof AtomicShadows[AtomicShadowKey];
522
+
523
+ declare const AtomicBorders: {
524
+ readonly radius: {
525
+ readonly none: "0px";
526
+ readonly xs: "2px";
527
+ readonly sm: "4px";
528
+ readonly md: "6px";
529
+ readonly lg: "8px";
530
+ readonly xl: "12px";
531
+ readonly xxl: "16px";
532
+ readonly xxxl: "24px";
533
+ readonly full: "9999px";
534
+ };
535
+ readonly width: {
536
+ readonly none: "0px";
537
+ readonly thin: "1px";
538
+ readonly medium: "2px";
539
+ readonly thick: "4px";
540
+ readonly thicker: "8px";
541
+ };
542
+ readonly style: {
543
+ readonly solid: "solid";
544
+ readonly dashed: "dashed";
545
+ readonly dotted: "dotted";
546
+ readonly double: "double";
547
+ readonly none: "none";
548
+ };
549
+ };
550
+ declare const BorderUtils: {
551
+ radius: (name: keyof typeof AtomicBorders.radius) => string;
552
+ width: (name: keyof typeof AtomicBorders.width) => string;
553
+ style: (name: keyof typeof AtomicBorders.style) => string;
554
+ border: (config: {
555
+ width?: keyof typeof AtomicBorders.width;
556
+ style?: keyof typeof AtomicBorders.style;
557
+ color?: string;
558
+ }) => string;
559
+ radiusCorners: {
560
+ all: (radius: keyof typeof AtomicBorders.radius) => {
561
+ borderRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
562
+ };
563
+ top: (radius: keyof typeof AtomicBorders.radius) => {
564
+ borderTopLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
565
+ borderTopRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
566
+ };
567
+ right: (radius: keyof typeof AtomicBorders.radius) => {
568
+ borderTopRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
569
+ borderBottomRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
570
+ };
571
+ bottom: (radius: keyof typeof AtomicBorders.radius) => {
572
+ borderBottomLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
573
+ borderBottomRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
574
+ };
575
+ left: (radius: keyof typeof AtomicBorders.radius) => {
576
+ borderTopLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
577
+ borderBottomLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
578
+ };
579
+ topLeft: (radius: keyof typeof AtomicBorders.radius) => {
580
+ borderTopLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
581
+ };
582
+ topRight: (radius: keyof typeof AtomicBorders.radius) => {
583
+ borderTopRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
584
+ };
585
+ bottomRight: (radius: keyof typeof AtomicBorders.radius) => {
586
+ borderBottomRightRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
587
+ };
588
+ bottomLeft: (radius: keyof typeof AtomicBorders.radius) => {
589
+ borderBottomLeftRadius: "8px" | "4px" | "12px" | "16px" | "24px" | "0px" | "2px" | "6px" | "9999px";
590
+ };
591
+ };
592
+ borderSides: {
593
+ all: (config: {
594
+ width?: keyof typeof AtomicBorders.width;
595
+ style?: keyof typeof AtomicBorders.style;
596
+ color?: string;
597
+ }) => {
598
+ border: string;
599
+ };
600
+ top: (config: {
601
+ width?: keyof typeof AtomicBorders.width;
602
+ style?: keyof typeof AtomicBorders.style;
603
+ color?: string;
604
+ }) => {
605
+ borderTop: string;
606
+ };
607
+ right: (config: {
608
+ width?: keyof typeof AtomicBorders.width;
609
+ style?: keyof typeof AtomicBorders.style;
610
+ color?: string;
611
+ }) => {
612
+ borderRight: string;
613
+ };
614
+ bottom: (config: {
615
+ width?: keyof typeof AtomicBorders.width;
616
+ style?: keyof typeof AtomicBorders.style;
617
+ color?: string;
618
+ }) => {
619
+ borderBottom: string;
620
+ };
621
+ left: (config: {
622
+ width?: keyof typeof AtomicBorders.width;
623
+ style?: keyof typeof AtomicBorders.style;
624
+ color?: string;
625
+ }) => {
626
+ borderLeft: string;
627
+ };
628
+ };
629
+ };
630
+ declare const AtomicBordersCss: {
631
+ readonly '--atomic-radius-none': "0px";
632
+ readonly '--atomic-radius-xs': "2px";
633
+ readonly '--atomic-radius-sm': "4px";
634
+ readonly '--atomic-radius-md': "6px";
635
+ readonly '--atomic-radius-lg': "8px";
636
+ readonly '--atomic-radius-xl': "12px";
637
+ readonly '--atomic-radius-xxl': "16px";
638
+ readonly '--atomic-radius-xxxl': "24px";
639
+ readonly '--atomic-radius-full': "9999px";
640
+ readonly '--atomic-border-none': "0px";
641
+ readonly '--atomic-border-thin': "1px";
642
+ readonly '--atomic-border-medium': "2px";
643
+ readonly '--atomic-border-thick': "4px";
644
+ readonly '--atomic-border-thicker': "8px";
645
+ };
646
+ type AtomicBorderRadius = keyof typeof AtomicBorders.radius;
647
+ type AtomicBorderWidth = keyof typeof AtomicBorders.width;
648
+ type AtomicBorderStyle = keyof typeof AtomicBorders.style;
649
+
650
+ declare const AtomicAnimations: {
651
+ readonly duration: {
652
+ readonly instant: "0ms";
653
+ readonly fast: "150ms";
654
+ readonly normal: "200ms";
655
+ readonly slow: "300ms";
656
+ readonly slower: "500ms";
657
+ readonly slowest: "700ms";
658
+ };
659
+ readonly easing: {
660
+ readonly linear: "linear";
661
+ readonly ease: "ease";
662
+ readonly easeIn: "ease-in";
663
+ readonly easeOut: "ease-out";
664
+ readonly easeInOut: "ease-in-out";
665
+ readonly smooth: "cubic-bezier(0.25, 0.46, 0.45, 0.94)";
666
+ readonly snappy: "cubic-bezier(0.68, -0.55, 0.265, 1.55)";
667
+ readonly bounce: "cubic-bezier(0.68, -0.6, 0.32, 1.6)";
668
+ readonly elastic: "cubic-bezier(0.175, 0.885, 0.32, 1.275)";
669
+ readonly standard: "cubic-bezier(0.4, 0, 0.2, 1)";
670
+ readonly decelerate: "cubic-bezier(0, 0, 0.2, 1)";
671
+ readonly accelerate: "cubic-bezier(0.4, 0, 1, 1)";
672
+ };
673
+ readonly scale: {
674
+ readonly none: "1";
675
+ readonly xs: "1.025";
676
+ readonly sm: "1.05";
677
+ readonly md: "1.1";
678
+ readonly lg: "1.15";
679
+ readonly xl: "1.25";
680
+ };
681
+ readonly rotate: {
682
+ readonly none: "0deg";
683
+ readonly quarter: "90deg";
684
+ readonly half: "180deg";
685
+ readonly threeQuarter: "270deg";
686
+ readonly full: "360deg";
687
+ };
688
+ };
689
+ declare const AnimationUtils: {
690
+ transition: (config: {
691
+ property?: string | string[];
692
+ duration?: keyof typeof AtomicAnimations.duration;
693
+ easing?: keyof typeof AtomicAnimations.easing;
694
+ delay?: keyof typeof AtomicAnimations.duration;
695
+ }) => {
696
+ transition: string;
697
+ };
698
+ transform: (config: {
699
+ scale?: keyof typeof AtomicAnimations.scale;
700
+ rotate?: keyof typeof AtomicAnimations.rotate;
701
+ translateX?: string;
702
+ translateY?: string;
703
+ translateZ?: string;
704
+ }) => {
705
+ transform: string;
706
+ };
707
+ duration: (name: keyof typeof AtomicAnimations.duration) => string;
708
+ easing: (name: keyof typeof AtomicAnimations.easing) => string;
709
+ keyframes: (name: string, frames: Record<string, React.CSSProperties>) => string;
710
+ };
711
+ declare const AtomicAnimationPresets: {
712
+ fadeIn: {
713
+ transition: string;
714
+ };
715
+ fadeOut: {
716
+ transition: string;
717
+ };
718
+ scaleIn: {
719
+ transform: string;
720
+ transition: string;
721
+ };
722
+ scaleOut: {
723
+ transform: string;
724
+ transition: string;
725
+ };
726
+ slideInUp: {
727
+ transform: string;
728
+ transition: string;
729
+ };
730
+ slideInDown: {
731
+ transform: string;
732
+ transition: string;
733
+ };
734
+ buttonHover: {
735
+ transform: string;
736
+ transition: string;
737
+ };
738
+ buttonPress: {
739
+ transform: string;
740
+ transition: string;
741
+ };
742
+ spin: {
743
+ animation: string;
744
+ };
745
+ pulse: {
746
+ animation: string;
747
+ };
748
+ bounce: {
749
+ animation: string;
750
+ };
751
+ };
752
+ declare const AtomicAnimationsCss: {
753
+ readonly '--atomic-duration-instant': "0ms";
754
+ readonly '--atomic-duration-fast': "150ms";
755
+ readonly '--atomic-duration-normal': "200ms";
756
+ readonly '--atomic-duration-slow': "300ms";
757
+ readonly '--atomic-duration-slower': "500ms";
758
+ readonly '--atomic-duration-slowest': "700ms";
759
+ readonly '--atomic-ease-linear': "linear";
760
+ readonly '--atomic-ease': "ease";
761
+ readonly '--atomic-ease-in': "ease-in";
762
+ readonly '--atomic-ease-out': "ease-out";
763
+ readonly '--atomic-ease-in-out': "ease-in-out";
764
+ readonly '--atomic-ease-smooth': "cubic-bezier(0.25, 0.46, 0.45, 0.94)";
765
+ readonly '--atomic-ease-snappy': "cubic-bezier(0.68, -0.55, 0.265, 1.55)";
766
+ readonly '--atomic-ease-bounce': "cubic-bezier(0.68, -0.6, 0.32, 1.6)";
767
+ readonly '--atomic-ease-elastic': "cubic-bezier(0.175, 0.885, 0.32, 1.275)";
768
+ readonly '--atomic-ease-standard': "cubic-bezier(0.4, 0, 0.2, 1)";
769
+ readonly '--atomic-ease-decelerate': "cubic-bezier(0, 0, 0.2, 1)";
770
+ readonly '--atomic-ease-accelerate': "cubic-bezier(0.4, 0, 1, 1)";
771
+ readonly '--atomic-scale-none': "1";
772
+ readonly '--atomic-scale-xs': "1.025";
773
+ readonly '--atomic-scale-sm': "1.05";
774
+ readonly '--atomic-scale-md': "1.1";
775
+ readonly '--atomic-scale-lg': "1.15";
776
+ readonly '--atomic-scale-xl': "1.25";
777
+ };
778
+ type AtomicAnimationDuration = keyof typeof AtomicAnimations.duration;
779
+ type AtomicAnimationEasing = keyof typeof AtomicAnimations.easing;
780
+ type AtomicAnimationScale = keyof typeof AtomicAnimations.scale;
781
+ type AtomicAnimationRotate = keyof typeof AtomicAnimations.rotate;
782
+
783
+ declare enum AtomicSize {
784
+ XS = "xs",
785
+ SM = "sm",
786
+ MD = "md",
787
+ LG = "lg",
788
+ XL = "xl"
789
+ }
790
+ declare enum AtomicColorVariant {
791
+ PRIMARY = "primary",
792
+ SECONDARY = "secondary",
793
+ SUCCESS = "success",
794
+ WARNING = "warning",
795
+ ERROR = "error",
796
+ INFO = "info",
797
+ GRAY = "gray"
798
+ }
799
+ declare enum AtomicButtonVariant {
800
+ PRIMARY = "primary",
801
+ SECONDARY = "secondary",
802
+ OUTLINE = "outline",
803
+ GHOST = "ghost",
804
+ LINK = "link",
805
+ DESTRUCTIVE = "destructive"
806
+ }
807
+ declare enum AtomicInputVariant {
808
+ DEFAULT = "default",
809
+ FILLED = "filled",
810
+ OUTLINE = "outline",
811
+ UNDERLINED = "underlined"
812
+ }
813
+ declare enum AtomicCardVariant {
814
+ DEFAULT = "default",
815
+ ELEVATED = "elevated",
816
+ OUTLINED = "outlined",
817
+ FILLED = "filled"
818
+ }
819
+ declare enum AtomicLoadingState {
820
+ IDLE = "idle",
821
+ LOADING = "loading",
822
+ SUCCESS = "success",
823
+ ERROR = "error"
824
+ }
825
+ declare enum AtomicStatus {
826
+ ACTIVE = "active",
827
+ INACTIVE = "inactive",
828
+ PENDING = "pending",
829
+ DISABLED = "disabled",
830
+ ARCHIVED = "archived"
831
+ }
832
+ declare enum AtomicAlertType {
833
+ INFO = "info",
834
+ SUCCESS = "success",
835
+ WARNING = "warning",
836
+ ERROR = "error"
837
+ }
838
+ declare enum AtomicModalSize {
839
+ SM = "sm",
840
+ MD = "md",
841
+ LG = "lg",
842
+ XL = "xl",
843
+ FULL = "full"
844
+ }
845
+ declare enum AtomicTextVariant {
846
+ DISPLAY_LARGE = "displayLarge",
847
+ DISPLAY_MEDIUM = "displayMedium",
848
+ DISPLAY_SMALL = "displaySmall",
849
+ HEADLINE_LARGE = "headlineLarge",
850
+ HEADLINE_MEDIUM = "headlineMedium",
851
+ HEADLINE_SMALL = "headlineSmall",
852
+ TITLE_LARGE = "titleLarge",
853
+ TITLE_MEDIUM = "titleMedium",
854
+ TITLE_SMALL = "titleSmall",
855
+ BODY_LARGE = "bodyLarge",
856
+ BODY_MEDIUM = "bodyMedium",
857
+ BODY_SMALL = "bodySmall",
858
+ LABEL_LARGE = "labelLarge",
859
+ LABEL_MEDIUM = "labelMedium",
860
+ LABEL_SMALL = "labelSmall"
861
+ }
862
+ declare enum AtomicPosition {
863
+ TOP = "top",
864
+ TOP_LEFT = "top-left",
865
+ TOP_RIGHT = "top-right",
866
+ BOTTOM = "bottom",
867
+ BOTTOM_LEFT = "bottom-left",
868
+ BOTTOM_RIGHT = "bottom-right",
869
+ LEFT = "left",
870
+ RIGHT = "right",
871
+ CENTER = "center"
872
+ }
873
+ declare enum AtomicAlignment {
874
+ LEFT = "left",
875
+ CENTER = "center",
876
+ RIGHT = "right",
877
+ JUSTIFY = "justify"
878
+ }
879
+ declare enum AtomicOrientation {
880
+ HORIZONTAL = "horizontal",
881
+ VERTICAL = "vertical"
882
+ }
883
+ declare enum AtomicDirection {
884
+ UP = "up",
885
+ DOWN = "down",
886
+ LEFT = "left",
887
+ RIGHT = "right"
888
+ }
889
+ declare enum AtomicAnimationState {
890
+ ENTER = "enter",
891
+ EXIT = "exit",
892
+ IDLE = "idle"
893
+ }
894
+ declare enum AtomicFormFieldState {
895
+ DEFAULT = "default",
896
+ FOCUS = "focus",
897
+ ERROR = "error",
898
+ SUCCESS = "success",
899
+ DISABLED = "disabled"
900
+ }
901
+ declare enum AtomicBreakpoint {
902
+ XS = "xs",
903
+ SM = "sm",
904
+ MD = "md",
905
+ LG = "lg",
906
+ XL = "xl",
907
+ XXL = "xxl"
908
+ }
909
+ declare enum AtomicThemeMode {
910
+ LIGHT = "light",
911
+ DARK = "dark",
912
+ SYSTEM = "system"
913
+ }
914
+ type AtomicSizeType = keyof typeof AtomicSize;
915
+ type AtomicColorVariantType = keyof typeof AtomicColorVariant;
916
+ type AtomicButtonVariantType = keyof typeof AtomicButtonVariant;
917
+ type AtomicInputVariantType = keyof typeof AtomicInputVariant;
918
+ type AtomicCardVariantType = keyof typeof AtomicCardVariant;
919
+ type AtomicLoadingStateType = keyof typeof AtomicLoadingState;
920
+ type AtomicStatusType = keyof typeof AtomicStatus;
921
+ type AtomicAlertTypeType = keyof typeof AtomicAlertType;
922
+ type AtomicModalSizeType = keyof typeof AtomicModalSize;
923
+ type AtomicTextVariantType = keyof typeof AtomicTextVariant;
924
+ type AtomicPositionType = keyof typeof AtomicPosition;
925
+ type AtomicAlignmentType = keyof typeof AtomicAlignment;
926
+ type AtomicOrientationType = keyof typeof AtomicOrientation;
927
+ type AtomicDirectionType = keyof typeof AtomicDirection;
928
+ type AtomicAnimationStateType = keyof typeof AtomicAnimationState;
929
+ type AtomicFormFieldStateType = keyof typeof AtomicFormFieldState;
930
+ type AtomicBreakpointType = keyof typeof AtomicBreakpoint;
931
+ type AtomicThemeModeType = keyof typeof AtomicThemeMode;
932
+ declare const AtomicEnumUtils: {
933
+ getValues: <T extends Record<string, string>>(enumObj: T) => string[];
934
+ getKeys: <T extends Record<string, string>>(enumObj: T) => string[];
935
+ hasValue: <T extends Record<string, string>>(enumObj: T, value: string) => value is T[keyof T];
936
+ hasKey: <T extends Record<string, string>>(enumObj: T, key: string) => key is string;
937
+ getEntries: <T extends Record<string, string>>(enumObj: T) => [string, string][];
938
+ };
939
+
940
+ declare const AtomicDesignTokensCss: {
941
+ readonly '--atomic-duration-instant': "0ms";
942
+ readonly '--atomic-duration-fast': "150ms";
943
+ readonly '--atomic-duration-normal': "200ms";
944
+ readonly '--atomic-duration-slow': "300ms";
945
+ readonly '--atomic-duration-slower': "500ms";
946
+ readonly '--atomic-duration-slowest': "700ms";
947
+ readonly '--atomic-ease-linear': "linear";
948
+ readonly '--atomic-ease': "ease";
949
+ readonly '--atomic-ease-in': "ease-in";
950
+ readonly '--atomic-ease-out': "ease-out";
951
+ readonly '--atomic-ease-in-out': "ease-in-out";
952
+ readonly '--atomic-ease-smooth': "cubic-bezier(0.25, 0.46, 0.45, 0.94)";
953
+ readonly '--atomic-ease-snappy': "cubic-bezier(0.68, -0.55, 0.265, 1.55)";
954
+ readonly '--atomic-ease-bounce': "cubic-bezier(0.68, -0.6, 0.32, 1.6)";
955
+ readonly '--atomic-ease-elastic': "cubic-bezier(0.175, 0.885, 0.32, 1.275)";
956
+ readonly '--atomic-ease-standard': "cubic-bezier(0.4, 0, 0.2, 1)";
957
+ readonly '--atomic-ease-decelerate': "cubic-bezier(0, 0, 0.2, 1)";
958
+ readonly '--atomic-ease-accelerate': "cubic-bezier(0.4, 0, 1, 1)";
959
+ readonly '--atomic-scale-none': "1";
960
+ readonly '--atomic-scale-xs': "1.025";
961
+ readonly '--atomic-scale-sm': "1.05";
962
+ readonly '--atomic-scale-md': "1.1";
963
+ readonly '--atomic-scale-lg': "1.15";
964
+ readonly '--atomic-scale-xl': "1.25";
965
+ readonly '--atomic-radius-none': "0px";
966
+ readonly '--atomic-radius-xs': "2px";
967
+ readonly '--atomic-radius-sm': "4px";
968
+ readonly '--atomic-radius-md': "6px";
969
+ readonly '--atomic-radius-lg': "8px";
970
+ readonly '--atomic-radius-xl': "12px";
971
+ readonly '--atomic-radius-xxl': "16px";
972
+ readonly '--atomic-radius-xxxl': "24px";
973
+ readonly '--atomic-radius-full': "9999px";
974
+ readonly '--atomic-border-none': "0px";
975
+ readonly '--atomic-border-thin': "1px";
976
+ readonly '--atomic-border-medium': "2px";
977
+ readonly '--atomic-border-thick': "4px";
978
+ readonly '--atomic-border-thicker': "8px";
979
+ readonly '--atomic-shadow-none': "none";
980
+ readonly '--atomic-shadow-xs': "0 1px 2px 0 rgb(0 0 0 / 0.05)";
981
+ readonly '--atomic-shadow-sm': "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
982
+ readonly '--atomic-shadow-md': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
983
+ readonly '--atomic-shadow-lg': "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
984
+ readonly '--atomic-shadow-xl': "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
985
+ readonly '--atomic-shadow-xxl': "0 25px 50px -12px rgb(0 0 0 / 0.25)";
986
+ readonly '--atomic-shadow-inner': "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)";
987
+ readonly '--atomic-shadow-focus-primary': "0 0 0 3px rgb(139 92 246 / 0.2)";
988
+ readonly '--atomic-shadow-focus-secondary': "0 0 0 3px rgb(236 72 153 / 0.2)";
989
+ readonly '--atomic-shadow-focus-success': "0 0 0 3px rgb(16 185 129 / 0.2)";
990
+ readonly '--atomic-shadow-focus-warning': "0 0 0 3px rgb(245 158 11 / 0.2)";
991
+ readonly '--atomic-shadow-focus-error': "0 0 0 3px rgb(239 68 68 / 0.2)";
992
+ readonly '--atomic-shadow-focus-info': "0 0 0 3px rgb(59 130 246 / 0.2)";
993
+ readonly '--atomic-shadow-glow-primary': "0 0 20px rgb(139 92 246 / 0.3)";
994
+ readonly '--atomic-shadow-glow-secondary': "0 0 20px rgb(236 72 153 / 0.3)";
995
+ readonly '--atomic-shadow-glow-success': "0 0 20px rgb(16 185 129 / 0.3)";
996
+ readonly '--atomic-shadow-glow-warning': "0 0 20px rgb(245 158 11 / 0.3)";
997
+ readonly '--atomic-shadow-glow-error': "0 0 20px rgb(239 68 68 / 0.3)";
998
+ readonly '--atomic-shadow-card': "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
999
+ readonly '--atomic-shadow-card-hover': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
1000
+ readonly '--atomic-shadow-button': "0 1px 2px 0 rgb(0 0 0 / 0.05)";
1001
+ readonly '--atomic-shadow-button-hover': "0 2px 4px 0 rgb(0 0 0 / 0.1)";
1002
+ readonly '--atomic-shadow-modal': "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
1003
+ readonly '--atomic-shadow-dropdown': "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
1004
+ readonly '--atomic-shadow-tooltip': "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
1005
+ readonly '--atomic-font-sans': string;
1006
+ readonly '--atomic-font-serif': string;
1007
+ readonly '--atomic-font-mono': string;
1008
+ readonly '--atomic-font-thin': string;
1009
+ readonly '--atomic-font-light': string;
1010
+ readonly '--atomic-font-regular': string;
1011
+ readonly '--atomic-font-medium': string;
1012
+ readonly '--atomic-font-semibold': string;
1013
+ readonly '--atomic-font-bold': string;
1014
+ readonly '--atomic-font-extrabold': string;
1015
+ readonly '--atomic-font-black': string;
1016
+ readonly '--atomic-text-display-large': "57px";
1017
+ readonly '--atomic-text-display-medium': "45px";
1018
+ readonly '--atomic-text-display-small': "36px";
1019
+ readonly '--atomic-text-headline-large': "32px";
1020
+ readonly '--atomic-text-headline-medium': "28px";
1021
+ readonly '--atomic-text-headline-small': "24px";
1022
+ readonly '--atomic-text-title-large': "22px";
1023
+ readonly '--atomic-text-title-medium': "16px";
1024
+ readonly '--atomic-text-title-small': "14px";
1025
+ readonly '--atomic-text-body-large': "16px";
1026
+ readonly '--atomic-text-body-medium': "14px";
1027
+ readonly '--atomic-text-body-small': "12px";
1028
+ readonly '--atomic-text-label-large': "14px";
1029
+ readonly '--atomic-text-label-medium': "12px";
1030
+ readonly '--atomic-text-label-small': "11px";
1031
+ readonly '--atomic-leading-none': string;
1032
+ readonly '--atomic-leading-tight': string;
1033
+ readonly '--atomic-leading-snug': string;
1034
+ readonly '--atomic-leading-normal': string;
1035
+ readonly '--atomic-leading-relaxed': string;
1036
+ readonly '--atomic-leading-loose': string;
1037
+ readonly '--atomic-tracking-tighter': "-0.05em";
1038
+ readonly '--atomic-tracking-tight': "-0.025em";
1039
+ readonly '--atomic-tracking-normal': "0em";
1040
+ readonly '--atomic-tracking-wide': "0.025em";
1041
+ readonly '--atomic-tracking-wider': "0.05em";
1042
+ readonly '--atomic-tracking-widest': "0.1em";
1043
+ readonly '--atomic-spacing-unit': "8px";
1044
+ readonly '--atomic-spacing-xxs': "4px";
1045
+ readonly '--atomic-spacing-xs': "8px";
1046
+ readonly '--atomic-spacing-sm': "12px";
1047
+ readonly '--atomic-spacing-md': "16px";
1048
+ readonly '--atomic-spacing-lg': "24px";
1049
+ readonly '--atomic-spacing-xl': "32px";
1050
+ readonly '--atomic-spacing-xxl': "40px";
1051
+ readonly '--atomic-spacing-xxxl': "48px";
1052
+ readonly '--atomic-spacing-huge': "64px";
1053
+ readonly '--atomic-button-padding-x': "16px";
1054
+ readonly '--atomic-button-padding-y': "12px";
1055
+ readonly '--atomic-card-padding': "24px";
1056
+ readonly '--atomic-card-margin': "16px";
1057
+ readonly '--atomic-list-item-padding': "16px";
1058
+ readonly '--atomic-list-item-spacing': "8px";
1059
+ readonly '--atomic-input-padding-x': "16px";
1060
+ readonly '--atomic-input-padding-y': "12px";
1061
+ readonly '--atomic-modal-padding': "24px";
1062
+ readonly '--atomic-section-padding': "32px";
1063
+ readonly '--atomic-primary': "#8B5CF6";
1064
+ readonly '--atomic-primary-light': "#A78BFA";
1065
+ readonly '--atomic-primary-dark': "#7C3AED";
1066
+ readonly '--atomic-secondary': "#EC4899";
1067
+ readonly '--atomic-secondary-light': "#F472B6";
1068
+ readonly '--atomic-secondary-dark': "#DB2777";
1069
+ readonly '--atomic-accent': "#F59E0B";
1070
+ readonly '--atomic-accent-light': "#FBBF24";
1071
+ readonly '--atomic-accent-dark': "#D97706";
1072
+ readonly '--atomic-gray-50': "#FAFAFA";
1073
+ readonly '--atomic-gray-100': "#F4F4F5";
1074
+ readonly '--atomic-gray-200': "#E4E4E7";
1075
+ readonly '--atomic-gray-300': "#D4D4D8";
1076
+ readonly '--atomic-gray-400': "#A1A1AA";
1077
+ readonly '--atomic-gray-500': "#71717A";
1078
+ readonly '--atomic-gray-600': "#52525B";
1079
+ readonly '--atomic-gray-700': "#3F3F46";
1080
+ readonly '--atomic-gray-800': "#27272A";
1081
+ readonly '--atomic-gray-900': "#18181B";
1082
+ readonly '--atomic-success': "#10B981";
1083
+ readonly '--atomic-success-light': "#34D399";
1084
+ readonly '--atomic-success-dark': "#059669";
1085
+ readonly '--atomic-warning': "#F59E0B";
1086
+ readonly '--atomic-warning-light': "#FBBF24";
1087
+ readonly '--atomic-warning-dark': "#D97706";
1088
+ readonly '--atomic-error': "#EF4444";
1089
+ readonly '--atomic-error-light': "#F87171";
1090
+ readonly '--atomic-error-dark': "#DC2626";
1091
+ readonly '--atomic-info': "#3B82F6";
1092
+ readonly '--atomic-info-light': "#60A5FA";
1093
+ readonly '--atomic-info-dark': "#2563EB";
1094
+ readonly '--atomic-background': "#FFFFFF";
1095
+ readonly '--atomic-background-secondary': "#F9FAFB";
1096
+ readonly '--atomic-surface': "#FFFFFF";
1097
+ readonly '--atomic-surface-secondary': "#F3F4F6";
1098
+ readonly '--atomic-text-primary': "#18181B";
1099
+ readonly '--atomic-text-secondary': "#52525B";
1100
+ readonly '--atomic-text-tertiary': "#A1A1AA";
1101
+ readonly '--atomic-text-disabled': "#D4D4D8";
1102
+ readonly '--atomic-text-inverse': "#FFFFFF";
1103
+ };
1104
+
1105
+ declare function cn(...inputs: ClassValue[]): string;
1106
+
1107
+ declare const buttonVariants: (props?: ({
1108
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "link" | "destructive" | "default" | null | undefined;
1109
+ size?: "sm" | "lg" | "default" | "icon" | null | undefined;
1110
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1111
+ interface AtomicButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
1112
+ /** Render as a different element */
1113
+ asChild?: boolean;
1114
+ /** Show loading spinner */
1115
+ loading?: boolean;
1116
+ /** Icon to display on the left */
1117
+ leftIcon?: React$1.ReactNode;
1118
+ /** Icon to display on the right */
1119
+ rightIcon?: React$1.ReactNode;
1120
+ /** Make button full width */
1121
+ fullWidth?: boolean;
1122
+ }
1123
+ declare const AtomicButton: React$1.ForwardRefExoticComponent<AtomicButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1124
+
1125
+ declare const textVariants: (props?: ({
1126
+ variant?: "xs" | "small" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "body" | "large" | "lead" | "muted" | "caption" | "label" | null | undefined;
1127
+ color?: "primary" | "secondary" | "success" | "warning" | "error" | "info" | "default" | "muted" | null | undefined;
1128
+ align?: "left" | "right" | "center" | "justify" | null | undefined;
1129
+ weight?: "black" | "thin" | "light" | "medium" | "semibold" | "bold" | "extrabold" | "normal" | null | undefined;
1130
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1131
+ interface AtomicTextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, 'color'>, VariantProps<typeof textVariants> {
1132
+ /** Render as a different element */
1133
+ asChild?: boolean;
1134
+ /** HTML element to render */
1135
+ as?: 'p' | 'span' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'label';
1136
+ /** Truncate text with ellipsis */
1137
+ truncate?: boolean;
1138
+ /** Allow text selection */
1139
+ selectable?: boolean;
1140
+ }
1141
+ declare const AtomicText: React$1.ForwardRefExoticComponent<AtomicTextProps & React$1.RefAttributes<HTMLElement>>;
1142
+
1143
+ declare const avatarVariants: (props?: ({
1144
+ size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
1145
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1146
+ declare const avatarImageVariants: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
1147
+ declare const avatarFallbackVariants: (props?: ({
1148
+ size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
1149
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1150
+ interface AtomicAvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
1151
+ src?: string;
1152
+ alt?: string;
1153
+ fallback?: string;
1154
+ fallbackElement?: React$1.ReactNode;
1155
+ showStatus?: boolean;
1156
+ isOnline?: boolean;
1157
+ statusColor?: string;
1158
+ }
1159
+ declare const AtomicAvatar: React$1.ForwardRefExoticComponent<AtomicAvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
1160
+ declare const AtomicAvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
1161
+ declare const AtomicAvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
1162
+ size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "xxxl" | "default" | null | undefined;
1163
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLSpanElement>>;
1164
+
1165
+ declare const imageVariants: (props?: ({
1166
+ rounded?: "sm" | "md" | "lg" | "xl" | "none" | "full" | null | undefined;
1167
+ aspectRatio?: "video" | "auto" | "square" | "portrait" | "landscape" | null | undefined;
1168
+ objectFit?: "none" | "contain" | "fill" | "cover" | "scale-down" | null | undefined;
1169
+ objectPosition?: "bottom" | "left" | "right" | "top" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "center" | null | undefined;
1170
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1171
+ interface AtomicImageProps extends Omit<React$1.ComponentProps<typeof Image>, 'className' | 'objectFit' | 'objectPosition' | 'placeholder'>, VariantProps<typeof imageVariants> {
1172
+ className?: string;
1173
+ containerClassName?: string;
1174
+ /** Enable blur placeholder while loading */
1175
+ enableBlur?: boolean;
1176
+ /** Custom placeholder image source */
1177
+ placeholderSrc?: string;
1178
+ }
1179
+ declare const AtomicImage: React$1.ForwardRefExoticComponent<Omit<AtomicImageProps, "ref"> & React$1.RefAttributes<HTMLImageElement | null>>;
1180
+
1181
+ declare const inputVariants: (props?: ({
1182
+ variant?: "outline" | "default" | "filled" | "underlined" | null | undefined;
1183
+ size?: "sm" | "lg" | "default" | null | undefined;
1184
+ state?: "success" | "warning" | "error" | "default" | null | undefined;
1185
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1186
+ interface AtomicInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
1187
+ /** Left icon or element */
1188
+ leftIcon?: React$1.ReactNode;
1189
+ /** Right icon or element */
1190
+ rightIcon?: React$1.ReactNode;
1191
+ /** Input label */
1192
+ label?: string;
1193
+ /** Helper text */
1194
+ helperText?: string;
1195
+ /** Error message */
1196
+ error?: string;
1197
+ /** Success message */
1198
+ success?: string;
1199
+ /** Warning message */
1200
+ warning?: string;
1201
+ /** Show clear button when input has value */
1202
+ clearable?: boolean;
1203
+ /** Callback when clear button is clicked */
1204
+ onClear?: () => void;
1205
+ /** Show password toggle for password inputs */
1206
+ showPasswordToggle?: boolean;
1207
+ /** Container class name */
1208
+ containerClassName?: string;
1209
+ /** Label class name */
1210
+ labelClassName?: string;
1211
+ /** Helper text class name */
1212
+ helperClassName?: string;
1213
+ }
1214
+ declare const AtomicInput: React$1.ForwardRefExoticComponent<AtomicInputProps & React$1.RefAttributes<HTMLInputElement>>;
1215
+
1216
+ declare const spinnerVariants: (props?: ({
1217
+ size?: "xs" | "sm" | "lg" | "xl" | "xxl" | "default" | null | undefined;
1218
+ color?: "primary" | "secondary" | "success" | "warning" | "error" | "white" | "default" | "muted" | null | undefined;
1219
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1220
+ interface AtomicSpinnerProps extends Omit<React$1.SVGProps<SVGSVGElement>, 'color'>, VariantProps<typeof spinnerVariants> {
1221
+ /** Loading text to display alongside spinner */
1222
+ label?: string;
1223
+ /** Show spinner inline with text */
1224
+ inline?: boolean;
1225
+ /** Custom spinner icon */
1226
+ icon?: React$1.ComponentType<any>;
1227
+ }
1228
+ declare const AtomicSpinner: React$1.ForwardRefExoticComponent<Omit<AtomicSpinnerProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1229
+ declare const AtomicButtonSpinner: React$1.ForwardRefExoticComponent<Omit<Omit<AtomicSpinnerProps, "color" | "size">, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1230
+ declare const AtomicPageSpinner: React$1.ForwardRefExoticComponent<Omit<Omit<AtomicSpinnerProps, "size">, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1231
+ declare const AtomicInlineSpinner: React$1.ForwardRefExoticComponent<Omit<Omit<AtomicSpinnerProps, "inline">, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1232
+
1233
+ declare const badgeVariants: (props?: ({
1234
+ variant?: "secondary" | "success" | "warning" | "info" | "outline" | "gray" | "destructive" | "default" | null | undefined;
1235
+ size?: "sm" | "lg" | "default" | null | undefined;
1236
+ shape?: "default" | "rounded" | "square" | null | undefined;
1237
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1238
+ interface AtomicBadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
1239
+ /** Icon to display on the left */
1240
+ leftIcon?: React$1.ReactNode;
1241
+ /** Icon to display on the right */
1242
+ rightIcon?: React$1.ReactNode;
1243
+ /** Show a dot indicator */
1244
+ dot?: boolean;
1245
+ /** Dot color (overrides variant color) */
1246
+ dotColor?: string;
1247
+ /** Make badge removable */
1248
+ removable?: boolean;
1249
+ /** Callback when remove button is clicked */
1250
+ onRemove?: () => void;
1251
+ /** Custom remove icon */
1252
+ removeIcon?: React$1.ReactNode;
1253
+ }
1254
+ declare const AtomicBadge: React$1.ForwardRefExoticComponent<AtomicBadgeProps & React$1.RefAttributes<HTMLDivElement>>;
1255
+ declare const AtomicStatusBadge: React$1.ForwardRefExoticComponent<Omit<AtomicBadgeProps, "dot"> & {
1256
+ status: "online" | "offline" | "busy" | "away";
1257
+ } & React$1.RefAttributes<HTMLDivElement>>;
1258
+ declare const AtomicCountBadge: React$1.ForwardRefExoticComponent<Omit<AtomicBadgeProps, "children"> & {
1259
+ count: number;
1260
+ max?: number;
1261
+ } & React$1.RefAttributes<HTMLDivElement>>;
1262
+
1263
+ declare const linkVariants: (props?: ({
1264
+ variant?: "primary" | "secondary" | "button" | "ghost" | "destructive" | "default" | "muted" | "underline" | null | undefined;
1265
+ size?: "sm" | "lg" | "xl" | "default" | null | undefined;
1266
+ weight?: "medium" | "semibold" | "bold" | "normal" | null | undefined;
1267
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
1268
+ interface AtomicLinkProps extends Omit<React$1.ComponentProps<typeof Link>, 'className'>, VariantProps<typeof linkVariants> {
1269
+ className?: string;
1270
+ external?: boolean;
1271
+ showExternalIcon?: boolean;
1272
+ prefetch?: boolean;
1273
+ externalIcon?: React$1.ReactNode;
1274
+ }
1275
+ declare const AtomicLink: React$1.ForwardRefExoticComponent<Omit<AtomicLinkProps, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
1276
+
1277
+ type Display = 'block' | 'inline' | 'inline-block' | 'flex' | 'inline-flex' | 'grid' | 'hidden';
1278
+ type AlignItems = 'stretch' | 'start' | 'center' | 'end' | 'baseline';
1279
+ type JustifyContent = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
1280
+ type FlexDirection = 'row' | 'row-reverse' | 'col' | 'col-reverse';
1281
+ type FlexWrap = 'wrap' | 'wrap-reverse' | 'nowrap';
1282
+ type Spacing$4 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48' | '52' | '56' | '60' | '64' | '72' | '80' | '96';
1283
+ type SpacingObject$4 = {
1284
+ x?: Spacing$4;
1285
+ y?: Spacing$4;
1286
+ t?: Spacing$4;
1287
+ r?: Spacing$4;
1288
+ b?: Spacing$4;
1289
+ l?: Spacing$4;
1290
+ };
1291
+ type Size = Spacing$4 | 'auto' | 'full' | 'screen' | 'min' | 'max' | 'fit';
1292
+ type Color$4 = 'transparent' | 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
1293
+ type BorderRadius = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full';
1294
+ type Shadow = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'inner';
1295
+ type Position = 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky';
1296
+ interface AtomicDivProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'color'> {
1297
+ d?: Display;
1298
+ align?: AlignItems;
1299
+ justify?: JustifyContent;
1300
+ flexDir?: FlexDirection;
1301
+ flexWrap?: FlexWrap;
1302
+ flexGrow?: number;
1303
+ flexShrink?: number;
1304
+ order?: number;
1305
+ p?: Spacing$4 | SpacingObject$4;
1306
+ m?: Spacing$4 | SpacingObject$4;
1307
+ w?: Size;
1308
+ h?: Size;
1309
+ minW?: Size;
1310
+ minH?: Size;
1311
+ maxW?: Size;
1312
+ maxH?: Size;
1313
+ bg?: Color$4;
1314
+ bgGradient?: string;
1315
+ border?: boolean | string;
1316
+ borderColor?: Color$4;
1317
+ rounded?: BorderRadius;
1318
+ shadow?: Shadow;
1319
+ position?: Position;
1320
+ top?: Spacing$4;
1321
+ right?: Spacing$4;
1322
+ bottom?: Spacing$4;
1323
+ left?: Spacing$4;
1324
+ cursor?: 'auto' | 'default' | 'pointer' | 'wait' | 'text' | 'move' | 'help' | 'not-allowed';
1325
+ as?: keyof JSX.IntrinsicElements;
1326
+ children?: React$1.ReactNode;
1327
+ }
1328
+ declare const AtomicDiv: React$1.ForwardRefExoticComponent<AtomicDivProps & React$1.RefAttributes<HTMLDivElement>>;
1329
+
1330
+ type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | number | string;
1331
+ type Color$3 = 'current' | 'black' | 'white' | 'slate-50' | 'slate-100' | 'slate-200' | 'slate-300' | 'slate-400' | 'slate-500' | 'slate-600' | 'slate-700' | 'slate-800' | 'slate-900' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900' | 'zinc-50' | 'zinc-100' | 'zinc-200' | 'zinc-300' | 'zinc-400' | 'zinc-500' | 'zinc-600' | 'zinc-700' | 'zinc-800' | 'zinc-900' | 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'indigo-50' | 'indigo-100' | 'indigo-200' | 'indigo-300' | 'indigo-400' | 'indigo-500' | 'indigo-600' | 'indigo-700' | 'indigo-800' | 'indigo-900' | 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900';
1332
+ type Spacing$3 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '14' | '16' | '20' | '24' | '28' | '32' | '36' | '40' | '44' | '48';
1333
+ type SpacingObject$3 = {
1334
+ x?: Spacing$3;
1335
+ y?: Spacing$3;
1336
+ t?: Spacing$3;
1337
+ r?: Spacing$3;
1338
+ b?: Spacing$3;
1339
+ l?: Spacing$3;
1340
+ };
1341
+ interface AtomicIconProps extends Omit<LucideProps, 'size' | 'color'> {
1342
+ icon: LucideIcon;
1343
+ size?: IconSize;
1344
+ color?: Color$3;
1345
+ hoverColor?: Color$3;
1346
+ p?: Spacing$3 | SpacingObject$3;
1347
+ m?: Spacing$3 | SpacingObject$3;
1348
+ cursor?: 'auto' | 'default' | 'pointer' | 'wait' | 'help' | 'not-allowed';
1349
+ spin?: boolean;
1350
+ pulse?: boolean;
1351
+ bounce?: boolean;
1352
+ rotate?: '0' | '45' | '90' | '180' | '-45' | '-90' | '-180';
1353
+ 'aria-label'?: string;
1354
+ 'aria-hidden'?: boolean;
1355
+ }
1356
+ declare const AtomicIcon: React$1.ForwardRefExoticComponent<Omit<AtomicIconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1357
+
1358
+ type TagVariant = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'outline' | 'ghost' | 'solid';
1359
+ type TagSize = 'xs' | 'sm' | 'md' | 'lg';
1360
+ type Color$2 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1361
+ type Spacing$2 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1362
+ type SpacingObject$2 = {
1363
+ x?: Spacing$2;
1364
+ y?: Spacing$2;
1365
+ t?: Spacing$2;
1366
+ r?: Spacing$2;
1367
+ b?: Spacing$2;
1368
+ l?: Spacing$2;
1369
+ };
1370
+ interface AtomicTagProps extends React$1.HTMLAttributes<HTMLSpanElement> {
1371
+ children: React$1.ReactNode;
1372
+ variant?: TagVariant;
1373
+ size?: TagSize;
1374
+ color?: Color$2;
1375
+ leftIcon?: LucideIcon;
1376
+ rightIcon?: LucideIcon;
1377
+ p?: Spacing$2 | SpacingObject$2;
1378
+ m?: Spacing$2 | SpacingObject$2;
1379
+ clickable?: boolean;
1380
+ removable?: boolean;
1381
+ onRemove?: () => void;
1382
+ disabled?: boolean;
1383
+ as?: 'span' | 'div' | 'button';
1384
+ }
1385
+ declare const AtomicTag: React$1.ForwardRefExoticComponent<AtomicTagProps & React$1.RefAttributes<HTMLElement>>;
1386
+
1387
+ type CheckboxSize = 'sm' | 'md' | 'lg';
1388
+ type Color$1 = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1389
+ type Spacing$1 = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1390
+ type SpacingObject$1 = {
1391
+ x?: Spacing$1;
1392
+ y?: Spacing$1;
1393
+ t?: Spacing$1;
1394
+ r?: Spacing$1;
1395
+ b?: Spacing$1;
1396
+ l?: Spacing$1;
1397
+ };
1398
+ interface AtomicCheckboxProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
1399
+ checked?: boolean;
1400
+ indeterminate?: boolean;
1401
+ disabled?: boolean;
1402
+ size?: CheckboxSize;
1403
+ color?: Color$1;
1404
+ p?: Spacing$1 | SpacingObject$1;
1405
+ m?: Spacing$1 | SpacingObject$1;
1406
+ label?: string;
1407
+ description?: string;
1408
+ error?: boolean;
1409
+ errorMessage?: string;
1410
+ onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
1411
+ onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
1412
+ }
1413
+ declare const AtomicCheckbox: React$1.ForwardRefExoticComponent<AtomicCheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
1414
+
1415
+ type SwitchSize = 'sm' | 'md' | 'lg';
1416
+ type Color = 'slate' | 'gray' | 'zinc' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
1417
+ type Spacing = '0' | 'px' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4' | '5' | '6' | '7' | '8';
1418
+ type SpacingObject = {
1419
+ x?: Spacing;
1420
+ y?: Spacing;
1421
+ t?: Spacing;
1422
+ r?: Spacing;
1423
+ b?: Spacing;
1424
+ l?: Spacing;
1425
+ };
1426
+ interface AtomicSwitchProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'color' | 'onChange'> {
1427
+ checked?: boolean;
1428
+ disabled?: boolean;
1429
+ size?: SwitchSize;
1430
+ color?: Color;
1431
+ p?: Spacing | SpacingObject;
1432
+ m?: Spacing | SpacingObject;
1433
+ label?: string;
1434
+ description?: string;
1435
+ labelPosition?: 'left' | 'right';
1436
+ loading?: boolean;
1437
+ onChange?: (checked: boolean, event: React$1.ChangeEvent<HTMLInputElement>) => void;
1438
+ onInputChange?: React$1.ChangeEventHandler<HTMLInputElement>;
1439
+ }
1440
+ declare const AtomicSwitch: React$1.ForwardRefExoticComponent<AtomicSwitchProps & React$1.RefAttributes<HTMLInputElement>>;
1441
+
1442
+ declare const VERSION = "1.1.0";
1443
+
1444
+ export { AnimationUtils, AtomicAlertType, type AtomicAlertTypeType, AtomicAlignment, type AtomicAlignmentType, type AtomicAnimationDuration, type AtomicAnimationEasing, AtomicAnimationPresets, type AtomicAnimationRotate, type AtomicAnimationScale, AtomicAnimationState, type AtomicAnimationStateType, AtomicAnimations, AtomicAnimationsCss, AtomicAvatar, AtomicAvatarFallback, AtomicAvatarImage, type AtomicAvatarProps, AtomicBadge, type AtomicBadgeProps, type AtomicBorderRadius, type AtomicBorderStyle, type AtomicBorderWidth, AtomicBorders, AtomicBordersCss, AtomicBreakpoint, type AtomicBreakpointType, AtomicButton, type AtomicButtonProps, AtomicButtonSpinner, AtomicButtonVariant, type AtomicButtonVariantType, AtomicCardVariant, type AtomicCardVariantType, AtomicCheckbox, type AtomicCheckboxProps, type AtomicColor, type AtomicColorValue, AtomicColorVariant, type AtomicColorVariantType, AtomicColors, AtomicColorsCss, AtomicCountBadge, AtomicDesignTokensCss, AtomicDirection, type AtomicDirectionType, AtomicDiv, type AtomicDivProps, AtomicEnumUtils, type AtomicFontFamily, type AtomicFontSize, type AtomicFontWeight, AtomicFormFieldState, type AtomicFormFieldStateType, AtomicIcon, type AtomicIconProps, AtomicImage, type AtomicImageProps, AtomicInlineSpinner, AtomicInput, type AtomicInputProps, AtomicInputVariant, type AtomicInputVariantType, type AtomicLetterSpacing, type AtomicLineHeight, AtomicLink, type AtomicLinkProps, AtomicLoadingState, type AtomicLoadingStateType, AtomicModalSize, type AtomicModalSizeType, AtomicOrientation, type AtomicOrientationType, AtomicPageSpinner, AtomicPosition, type AtomicPositionType, type AtomicShadowKey, type AtomicShadowValue, AtomicShadows, AtomicShadowsCss, AtomicSize, type AtomicSizeType, AtomicSpacing, AtomicSpacingCss, type AtomicSpacingKey, type AtomicSpacingValue, AtomicSpinner, type AtomicSpinnerProps, AtomicStatus, AtomicStatusBadge, type AtomicStatusType, AtomicSwitch, type AtomicSwitchProps, AtomicTag, type AtomicTagProps, AtomicText, type AtomicTextProps, type AtomicTextStyle, AtomicTextStyles, AtomicTextVariant, type AtomicTextVariantType, AtomicThemeMode, type AtomicThemeModeType, AtomicTypography, AtomicTypographyCss, BorderUtils, ColorUtils, ShadowUtils, SpacingUtils, TypographyUtils, VERSION, avatarFallbackVariants, avatarImageVariants, avatarVariants, badgeVariants, buttonVariants, cn, imageVariants, inputVariants, linkVariants, spinnerVariants, textVariants };