@idealyst/components 1.0.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.
Files changed (112) hide show
  1. package/README.md +568 -0
  2. package/package.json +107 -0
  3. package/plugin/web.js +186 -0
  4. package/src/Avatar/Avatar.native.tsx +44 -0
  5. package/src/Avatar/Avatar.styles.tsx +67 -0
  6. package/src/Avatar/Avatar.web.tsx +51 -0
  7. package/src/Avatar/index.native.ts +2 -0
  8. package/src/Avatar/index.ts +2 -0
  9. package/src/Avatar/index.web.ts +2 -0
  10. package/src/Avatar/types.ts +43 -0
  11. package/src/Badge/Badge.native.tsx +43 -0
  12. package/src/Badge/Badge.styles.tsx +154 -0
  13. package/src/Badge/Badge.web.tsx +45 -0
  14. package/src/Badge/index.native.ts +2 -0
  15. package/src/Badge/index.ts +2 -0
  16. package/src/Badge/index.web.ts +2 -0
  17. package/src/Badge/types.ts +34 -0
  18. package/src/Button/Button.native.tsx +39 -0
  19. package/src/Button/Button.styles.tsx +215 -0
  20. package/src/Button/Button.types.ts +12 -0
  21. package/src/Button/Button.web.tsx +56 -0
  22. package/src/Button/index.native.ts +3 -0
  23. package/src/Button/index.ts +5 -0
  24. package/src/Button/index.web.ts +3 -0
  25. package/src/Button/types.ts +49 -0
  26. package/src/Card/Card.native.tsx +52 -0
  27. package/src/Card/Card.styles.tsx +240 -0
  28. package/src/Card/Card.web.tsx +62 -0
  29. package/src/Card/index.native.ts +3 -0
  30. package/src/Card/index.ts +5 -0
  31. package/src/Card/index.web.ts +3 -0
  32. package/src/Card/types.ts +59 -0
  33. package/src/Checkbox/Checkbox.native.tsx +99 -0
  34. package/src/Checkbox/Checkbox.styles.tsx +292 -0
  35. package/src/Checkbox/Checkbox.web.tsx +131 -0
  36. package/src/Checkbox/index.native.ts +3 -0
  37. package/src/Checkbox/index.ts +5 -0
  38. package/src/Checkbox/index.web.ts +3 -0
  39. package/src/Checkbox/types.ts +79 -0
  40. package/src/Divider/Divider.native.tsx +145 -0
  41. package/src/Divider/Divider.styles.tsx +602 -0
  42. package/src/Divider/Divider.web.tsx +73 -0
  43. package/src/Divider/index.native.ts +3 -0
  44. package/src/Divider/index.ts +5 -0
  45. package/src/Divider/index.web.ts +3 -0
  46. package/src/Divider/types.ts +54 -0
  47. package/src/Icon/Icon.native.tsx +39 -0
  48. package/src/Icon/Icon.styles.tsx +50 -0
  49. package/src/Icon/Icon.web.tsx +47 -0
  50. package/src/Icon/icon-types.ts +7452 -0
  51. package/src/Icon/index.native.ts +3 -0
  52. package/src/Icon/index.ts +5 -0
  53. package/src/Icon/index.web.ts +3 -0
  54. package/src/Icon/types.ts +36 -0
  55. package/src/Input/Input.native.tsx +75 -0
  56. package/src/Input/Input.styles.tsx +177 -0
  57. package/src/Input/Input.web.tsx +71 -0
  58. package/src/Input/index.native.ts +3 -0
  59. package/src/Input/index.ts +5 -0
  60. package/src/Input/index.web.ts +3 -0
  61. package/src/Input/types.ts +69 -0
  62. package/src/Screen/Screen.native.tsx +41 -0
  63. package/src/Screen/Screen.styles.tsx +60 -0
  64. package/src/Screen/Screen.web.tsx +33 -0
  65. package/src/Screen/index.native.ts +2 -0
  66. package/src/Screen/index.ts +2 -0
  67. package/src/Screen/index.web.ts +2 -0
  68. package/src/Screen/types.ts +38 -0
  69. package/src/Text/Text.native.tsx +36 -0
  70. package/src/Text/Text.styles.tsx +67 -0
  71. package/src/Text/Text.web.tsx +41 -0
  72. package/src/Text/index.native.ts +3 -0
  73. package/src/Text/index.ts +5 -0
  74. package/src/Text/index.web.ts +3 -0
  75. package/src/Text/types.ts +39 -0
  76. package/src/View/View.native.tsx +56 -0
  77. package/src/View/View.styles.tsx +103 -0
  78. package/src/View/View.web.tsx +60 -0
  79. package/src/View/index.native.ts +3 -0
  80. package/src/View/index.ts +5 -0
  81. package/src/View/index.web.ts +3 -0
  82. package/src/View/types.ts +73 -0
  83. package/src/examples/AllExamples.tsx +72 -0
  84. package/src/examples/AvatarExamples.tsx +97 -0
  85. package/src/examples/BadgeExamples.tsx +200 -0
  86. package/src/examples/ButtonExamples.tsx +150 -0
  87. package/src/examples/CardExamples.tsx +176 -0
  88. package/src/examples/CheckboxExamples.tsx +217 -0
  89. package/src/examples/DividerExamples.tsx +218 -0
  90. package/src/examples/IconExamples.tsx +342 -0
  91. package/src/examples/InputExamples.tsx +134 -0
  92. package/src/examples/README.md +136 -0
  93. package/src/examples/ScreenExamples.tsx +154 -0
  94. package/src/examples/TextExamples.tsx +89 -0
  95. package/src/examples/ThemeExtensionExamples.tsx +91 -0
  96. package/src/examples/ValidationExamples.tsx +95 -0
  97. package/src/examples/ViewExamples.tsx +129 -0
  98. package/src/examples/extendedTheme.ts +331 -0
  99. package/src/examples/index.ts +15 -0
  100. package/src/index.native.ts +52 -0
  101. package/src/index.ts +48 -0
  102. package/src/theme/breakpoints.ts +8 -0
  103. package/src/theme/colorResolver.ts +218 -0
  104. package/src/theme/colors.ts +315 -0
  105. package/src/theme/defaultThemes.ts +326 -0
  106. package/src/theme/index.ts +188 -0
  107. package/src/theme/themeBuilder.ts +602 -0
  108. package/src/theme/unistyles.d.ts +6 -0
  109. package/src/theme/variantHelpers.ts +584 -0
  110. package/src/theme/variants.ts +56 -0
  111. package/src/unistyles.d.ts +108 -0
  112. package/src/unistyles.ts +43 -0
@@ -0,0 +1,602 @@
1
+ import { StyleSheet } from 'react-native-unistyles';
2
+
3
+ export const dividerStyles = StyleSheet.create((theme) => ({
4
+ divider: {
5
+ backgroundColor: theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db',
6
+
7
+ variants: {
8
+ orientation: {
9
+ horizontal: {
10
+ width: '100%',
11
+ height: 1,
12
+ flexDirection: 'row',
13
+ },
14
+ vertical: {
15
+ width: 1,
16
+ height: '100%',
17
+ flexDirection: 'column',
18
+ },
19
+ },
20
+ thickness: {
21
+ thin: {
22
+ // Handled by orientation compound variants
23
+ },
24
+ medium: {
25
+ // Handled by orientation compound variants
26
+ },
27
+ thick: {
28
+ // Handled by orientation compound variants
29
+ },
30
+ },
31
+ variant: {
32
+ solid: {
33
+ // Default solid style
34
+ },
35
+ dashed: {
36
+ // React Native: handled by component logic with segments
37
+ backgroundColor: 'transparent',
38
+
39
+ _web: {
40
+ border: 'none',
41
+ backgroundColor: 'transparent',
42
+ },
43
+ },
44
+ dotted: {
45
+ // React Native: handled by component logic with segments
46
+ backgroundColor: 'transparent',
47
+
48
+ _web: {
49
+ border: 'none',
50
+ backgroundColor: 'transparent',
51
+ },
52
+ },
53
+ },
54
+ intent: {
55
+ primary: {
56
+ backgroundColor: theme.intents?.primary?.main || '#3b82f6',
57
+ },
58
+ secondary: {
59
+ backgroundColor: theme.colors?.border?.primary || theme.palettes?.gray?.[200] || '#e5e7eb',
60
+ },
61
+ neutral: {
62
+ backgroundColor: theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db',
63
+ },
64
+ success: {
65
+ backgroundColor: theme.intents?.success?.main || '#22c55e',
66
+ },
67
+ error: {
68
+ backgroundColor: theme.intents?.error?.main || '#ef4444',
69
+ },
70
+ warning: {
71
+ backgroundColor: theme.intents?.warning?.main || '#f59e0b',
72
+ },
73
+ info: {
74
+ backgroundColor: theme.intents?.info?.main || '#06b6d4',
75
+ },
76
+ },
77
+ length: {
78
+ full: {
79
+ // Default full length
80
+ },
81
+ auto: {
82
+ // Auto length handled by parent container
83
+ },
84
+ },
85
+ spacing: {
86
+ none: {
87
+ margin: 0,
88
+ },
89
+ small: {
90
+ // Handled by orientation compound variants
91
+ },
92
+ medium: {
93
+ // Handled by orientation compound variants
94
+ },
95
+ large: {
96
+ // Handled by orientation compound variants
97
+ },
98
+ },
99
+ },
100
+
101
+ compoundVariants: [
102
+ // Horizontal thickness variants
103
+ {
104
+ orientation: 'horizontal',
105
+ thickness: 'thin',
106
+ styles: {
107
+ height: 1,
108
+ },
109
+ },
110
+ {
111
+ orientation: 'horizontal',
112
+ thickness: 'medium',
113
+ styles: {
114
+ height: 2,
115
+ },
116
+ },
117
+ {
118
+ orientation: 'horizontal',
119
+ thickness: 'thick',
120
+ styles: {
121
+ height: 4,
122
+ },
123
+ },
124
+ // Vertical thickness variants
125
+ {
126
+ orientation: 'vertical',
127
+ thickness: 'thin',
128
+ styles: {
129
+ width: 1,
130
+ },
131
+ },
132
+ {
133
+ orientation: 'vertical',
134
+ thickness: 'medium',
135
+ styles: {
136
+ width: 2,
137
+ },
138
+ },
139
+ {
140
+ orientation: 'vertical',
141
+ thickness: 'thick',
142
+ styles: {
143
+ width: 4,
144
+ },
145
+ },
146
+ // Horizontal spacing variants
147
+ {
148
+ orientation: 'horizontal',
149
+ spacing: 'small',
150
+ styles: {
151
+ marginVertical: theme.spacing?.sm || 8,
152
+ },
153
+ },
154
+ {
155
+ orientation: 'horizontal',
156
+ spacing: 'medium',
157
+ styles: {
158
+ marginVertical: theme.spacing?.md || 12,
159
+ },
160
+ },
161
+ {
162
+ orientation: 'horizontal',
163
+ spacing: 'large',
164
+ styles: {
165
+ marginVertical: theme.spacing?.lg || 16,
166
+ },
167
+ },
168
+ // Vertical spacing variants
169
+ {
170
+ orientation: 'vertical',
171
+ spacing: 'small',
172
+ styles: {
173
+ marginHorizontal: theme.spacing?.sm || 8,
174
+ },
175
+ },
176
+ {
177
+ orientation: 'vertical',
178
+ spacing: 'medium',
179
+ styles: {
180
+ marginHorizontal: theme.spacing?.md || 12,
181
+ },
182
+ },
183
+ {
184
+ orientation: 'vertical',
185
+ spacing: 'large',
186
+ styles: {
187
+ marginHorizontal: theme.spacing?.lg || 16,
188
+ },
189
+ },
190
+ // Dashed variant compound styles (web-only, RN handled by component)
191
+ {
192
+ variant: 'dashed',
193
+ orientation: 'horizontal',
194
+ styles: {
195
+ _web: {
196
+ borderTop: `1px dashed ${theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db'}`,
197
+ borderLeft: 'none',
198
+ },
199
+ },
200
+ },
201
+ {
202
+ variant: 'dashed',
203
+ orientation: 'vertical',
204
+ styles: {
205
+ _web: {
206
+ borderLeft: `1px dashed ${theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db'}`,
207
+ borderTop: 'none',
208
+ },
209
+ },
210
+ },
211
+ // Dotted variant compound styles (web-only, RN handled by component)
212
+ {
213
+ variant: 'dotted',
214
+ orientation: 'horizontal',
215
+ styles: {
216
+ _web: {
217
+ borderTop: `1px dotted ${theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db'}`,
218
+ borderLeft: 'none',
219
+ },
220
+ },
221
+ },
222
+ {
223
+ variant: 'dotted',
224
+ orientation: 'vertical',
225
+ styles: {
226
+ _web: {
227
+ borderLeft: `1px dotted ${theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db'}`,
228
+ borderTop: 'none',
229
+ },
230
+ },
231
+ },
232
+ // Intent color compounds for dashed variant
233
+ {
234
+ variant: 'dashed',
235
+ intent: 'primary',
236
+ orientation: 'horizontal',
237
+ styles: {
238
+ borderTopColor: theme.intents?.primary?.main || '#3b82f6',
239
+
240
+ _web: {
241
+ borderTop: `1px dashed ${theme.intents?.primary?.main || '#3b82f6'}`,
242
+ },
243
+ },
244
+ },
245
+ {
246
+ variant: 'dashed',
247
+ intent: 'primary',
248
+ orientation: 'vertical',
249
+ styles: {
250
+ borderLeftColor: theme.intents?.primary?.main || '#3b82f6',
251
+
252
+ _web: {
253
+ borderLeft: `1px dashed ${theme.intents?.primary?.main || '#3b82f6'}`,
254
+ },
255
+ },
256
+ },
257
+ {
258
+ variant: 'dashed',
259
+ intent: 'success',
260
+ orientation: 'horizontal',
261
+ styles: {
262
+ borderTopColor: theme.intents?.success?.main || '#22c55e',
263
+
264
+ _web: {
265
+ borderTop: `1px dashed ${theme.intents?.success?.main || '#22c55e'}`,
266
+ },
267
+ },
268
+ },
269
+ {
270
+ variant: 'dashed',
271
+ intent: 'success',
272
+ orientation: 'vertical',
273
+ styles: {
274
+ borderLeftColor: theme.intents?.success?.main || '#22c55e',
275
+
276
+ _web: {
277
+ borderLeft: `1px dashed ${theme.intents?.success?.main || '#22c55e'}`,
278
+ },
279
+ },
280
+ },
281
+ {
282
+ variant: 'dashed',
283
+ intent: 'error',
284
+ orientation: 'horizontal',
285
+ styles: {
286
+ borderTopColor: theme.intents?.error?.main || '#ef4444',
287
+
288
+ _web: {
289
+ borderTop: `1px dashed ${theme.intents?.error?.main || '#ef4444'}`,
290
+ },
291
+ },
292
+ },
293
+ {
294
+ variant: 'dashed',
295
+ intent: 'error',
296
+ orientation: 'vertical',
297
+ styles: {
298
+ borderLeftColor: theme.intents?.error?.main || '#ef4444',
299
+
300
+ _web: {
301
+ borderLeft: `1px dashed ${theme.intents?.error?.main || '#ef4444'}`,
302
+ },
303
+ },
304
+ },
305
+ {
306
+ variant: 'dashed',
307
+ intent: 'warning',
308
+ orientation: 'horizontal',
309
+ styles: {
310
+ borderTopColor: theme.intents?.warning?.main || '#f59e0b',
311
+
312
+ _web: {
313
+ borderTop: `1px dashed ${theme.intents?.warning?.main || '#f59e0b'}`,
314
+ },
315
+ },
316
+ },
317
+ {
318
+ variant: 'dashed',
319
+ intent: 'warning',
320
+ orientation: 'vertical',
321
+ styles: {
322
+ borderLeftColor: theme.intents?.warning?.main || '#f59e0b',
323
+
324
+ _web: {
325
+ borderLeft: `1px dashed ${theme.intents?.warning?.main || '#f59e0b'}`,
326
+ },
327
+ },
328
+ },
329
+ {
330
+ variant: 'dashed',
331
+ intent: 'info',
332
+ orientation: 'horizontal',
333
+ styles: {
334
+ borderTopColor: theme.intents?.info?.main || '#06b6d4',
335
+
336
+ _web: {
337
+ borderTop: `1px dashed ${theme.intents?.info?.main || '#06b6d4'}`,
338
+ },
339
+ },
340
+ },
341
+ {
342
+ variant: 'dashed',
343
+ intent: 'info',
344
+ orientation: 'vertical',
345
+ styles: {
346
+ borderLeftColor: theme.intents?.info?.main || '#06b6d4',
347
+
348
+ _web: {
349
+ borderLeft: `1px dashed ${theme.intents?.info?.main || '#06b6d4'}`,
350
+ },
351
+ },
352
+ },
353
+ // Intent color compounds for dotted variant
354
+ {
355
+ variant: 'dotted',
356
+ intent: 'primary',
357
+ orientation: 'horizontal',
358
+ styles: {
359
+ borderTopColor: theme.intents?.primary?.main || '#3b82f6',
360
+
361
+ _web: {
362
+ borderTop: `1px dotted ${theme.intents?.primary?.main || '#3b82f6'}`,
363
+ },
364
+ },
365
+ },
366
+ {
367
+ variant: 'dotted',
368
+ intent: 'primary',
369
+ orientation: 'vertical',
370
+ styles: {
371
+ borderLeftColor: theme.intents?.primary?.main || '#3b82f6',
372
+
373
+ _web: {
374
+ borderLeft: `1px dotted ${theme.intents?.primary?.main || '#3b82f6'}`,
375
+ },
376
+ },
377
+ },
378
+ {
379
+ variant: 'dotted',
380
+ intent: 'success',
381
+ orientation: 'horizontal',
382
+ styles: {
383
+ borderTopColor: theme.intents?.success?.main || '#22c55e',
384
+
385
+ _web: {
386
+ borderTop: `1px dotted ${theme.intents?.success?.main || '#22c55e'}`,
387
+ },
388
+ },
389
+ },
390
+ {
391
+ variant: 'dotted',
392
+ intent: 'success',
393
+ orientation: 'vertical',
394
+ styles: {
395
+ borderLeftColor: theme.intents?.success?.main || '#22c55e',
396
+
397
+ _web: {
398
+ borderLeft: `1px dotted ${theme.intents?.success?.main || '#22c55e'}`,
399
+ },
400
+ },
401
+ },
402
+ {
403
+ variant: 'dotted',
404
+ intent: 'error',
405
+ orientation: 'horizontal',
406
+ styles: {
407
+ borderTopColor: theme.intents?.error?.main || '#ef4444',
408
+
409
+ _web: {
410
+ borderTop: `1px dotted ${theme.intents?.error?.main || '#ef4444'}`,
411
+ },
412
+ },
413
+ },
414
+ {
415
+ variant: 'dotted',
416
+ intent: 'error',
417
+ orientation: 'vertical',
418
+ styles: {
419
+ borderLeftColor: theme.intents?.error?.main || '#ef4444',
420
+
421
+ _web: {
422
+ borderLeft: `1px dotted ${theme.intents?.error?.main || '#ef4444'}`,
423
+ },
424
+ },
425
+ },
426
+ {
427
+ variant: 'dotted',
428
+ intent: 'warning',
429
+ orientation: 'horizontal',
430
+ styles: {
431
+ borderTopColor: theme.intents?.warning?.main || '#f59e0b',
432
+
433
+ _web: {
434
+ borderTop: `1px dotted ${theme.intents?.warning?.main || '#f59e0b'}`,
435
+ },
436
+ },
437
+ },
438
+ {
439
+ variant: 'dotted',
440
+ intent: 'warning',
441
+ orientation: 'vertical',
442
+ styles: {
443
+ borderLeftColor: theme.intents?.warning?.main || '#f59e0b',
444
+
445
+ _web: {
446
+ borderLeft: `1px dotted ${theme.intents?.warning?.main || '#f59e0b'}`,
447
+ },
448
+ },
449
+ },
450
+ {
451
+ variant: 'dotted',
452
+ intent: 'info',
453
+ orientation: 'horizontal',
454
+ styles: {
455
+ borderTopColor: theme.intents?.info?.main || '#06b6d4',
456
+
457
+ _web: {
458
+ borderTop: `1px dotted ${theme.intents?.info?.main || '#06b6d4'}`,
459
+ },
460
+ },
461
+ },
462
+ {
463
+ variant: 'dotted',
464
+ intent: 'info',
465
+ orientation: 'vertical',
466
+ styles: {
467
+ borderLeftColor: theme.intents?.info?.main || '#06b6d4',
468
+
469
+ _web: {
470
+ borderLeft: `1px dotted ${theme.intents?.info?.main || '#06b6d4'}`,
471
+ },
472
+ },
473
+ },
474
+ ],
475
+ },
476
+
477
+ // Container for dividers with content
478
+ container: {
479
+ alignItems: 'center',
480
+ justifyContent: 'center',
481
+
482
+ variants: {
483
+ orientation: {
484
+ horizontal: {
485
+ flexDirection: 'row',
486
+ width: '100%',
487
+ },
488
+ vertical: {
489
+ flexDirection: 'column',
490
+ height: '100%',
491
+ },
492
+ },
493
+ spacing: {
494
+ none: {
495
+ gap: 0,
496
+ },
497
+ small: {
498
+ gap: theme.spacing?.sm || 8,
499
+ },
500
+ medium: {
501
+ gap: theme.spacing?.md || 12,
502
+ },
503
+ large: {
504
+ gap: theme.spacing?.lg || 16,
505
+ },
506
+ },
507
+ },
508
+ },
509
+
510
+ // Content styling for dividers with children
511
+ content: {
512
+ backgroundColor: theme.colors?.surface?.primary || '#ffffff',
513
+ color: theme.colors?.text?.secondary || theme.palettes?.gray?.[600] || '#4b5563',
514
+ fontSize: theme.typography?.fontSize?.sm || 14,
515
+
516
+ variants: {
517
+ orientation: {
518
+ horizontal: {
519
+ paddingHorizontal: theme.spacing?.sm || 8,
520
+ },
521
+ vertical: {
522
+ paddingVertical: theme.spacing?.sm || 8,
523
+ },
524
+ },
525
+ },
526
+ },
527
+
528
+ // Line segments for dividers with content
529
+ line: {
530
+ backgroundColor: theme.colors?.border?.secondary || theme.palettes?.gray?.[300] || '#d1d5db',
531
+ flex: 1,
532
+
533
+ variants: {
534
+ orientation: {
535
+ horizontal: {
536
+ height: 1,
537
+ },
538
+ vertical: {
539
+ width: 1,
540
+ },
541
+ },
542
+ thickness: {
543
+ thin: {
544
+ // Handled by orientation compound variants
545
+ },
546
+ medium: {
547
+ // Handled by orientation compound variants
548
+ },
549
+ thick: {
550
+ // Handled by orientation compound variants
551
+ },
552
+ },
553
+ },
554
+
555
+ compoundVariants: [
556
+ // Horizontal thickness for line segments
557
+ {
558
+ orientation: 'horizontal',
559
+ thickness: 'thin',
560
+ styles: {
561
+ height: 1,
562
+ },
563
+ },
564
+ {
565
+ orientation: 'horizontal',
566
+ thickness: 'medium',
567
+ styles: {
568
+ height: 2,
569
+ },
570
+ },
571
+ {
572
+ orientation: 'horizontal',
573
+ thickness: 'thick',
574
+ styles: {
575
+ height: 4,
576
+ },
577
+ },
578
+ // Vertical thickness for line segments
579
+ {
580
+ orientation: 'vertical',
581
+ thickness: 'thin',
582
+ styles: {
583
+ width: 1,
584
+ },
585
+ },
586
+ {
587
+ orientation: 'vertical',
588
+ thickness: 'medium',
589
+ styles: {
590
+ width: 2,
591
+ },
592
+ },
593
+ {
594
+ orientation: 'vertical',
595
+ thickness: 'thick',
596
+ styles: {
597
+ width: 4,
598
+ },
599
+ },
600
+ ],
601
+ },
602
+ }));
@@ -0,0 +1,73 @@
1
+ import React from 'react';
2
+ import { getWebProps } from 'react-native-unistyles/web';
3
+ import { DividerProps } from './types';
4
+ import { dividerStyles } from './Divider.styles';
5
+
6
+ const Divider: React.FC<DividerProps> = ({
7
+ orientation = 'horizontal',
8
+ variant = 'solid',
9
+ thickness = 'thin',
10
+ intent = 'neutral',
11
+ length = 'full',
12
+ spacing = 'medium',
13
+ children,
14
+ style,
15
+ testID,
16
+ accessibilityLabel,
17
+ }) => {
18
+ // Apply variants for main divider
19
+ dividerStyles.useVariants({
20
+ orientation,
21
+ thickness,
22
+ variant: variant as any,
23
+ intent,
24
+ length: typeof length === 'number' ? 'auto' : length,
25
+ spacing,
26
+ });
27
+
28
+ // Create style arrays
29
+ const dividerStyleArray = [
30
+ dividerStyles.divider,
31
+ style,
32
+ ].filter(Boolean);
33
+
34
+ const containerStyleArray = [dividerStyles.container];
35
+ const contentStyleArray = [dividerStyles.content];
36
+ const lineStyleArray = [dividerStyles.line];
37
+
38
+ // Generate web props
39
+ const dividerProps = getWebProps(dividerStyleArray);
40
+ const containerProps = getWebProps(containerStyleArray);
41
+ const contentProps = getWebProps(contentStyleArray);
42
+ const lineProps = getWebProps(lineStyleArray);
43
+
44
+ // If no children, render simple divider
45
+ if (!children) {
46
+ return (
47
+ <div
48
+ {...dividerProps}
49
+ data-testid={testID}
50
+ aria-label={accessibilityLabel}
51
+ role="separator"
52
+ />
53
+ );
54
+ }
55
+
56
+ // If has children, render divider with content
57
+ return (
58
+ <div
59
+ {...containerProps}
60
+ data-testid={testID}
61
+ aria-label={accessibilityLabel}
62
+ role="separator"
63
+ >
64
+ <div {...lineProps} />
65
+ <span {...contentProps}>
66
+ {children}
67
+ </span>
68
+ <div {...lineProps} />
69
+ </div>
70
+ );
71
+ };
72
+
73
+ export default Divider;
@@ -0,0 +1,3 @@
1
+ // React Native-specific Divider export
2
+ export { default } from './Divider.native';
3
+ export * from './types';
@@ -0,0 +1,5 @@
1
+ // Platform-agnostic Divider export
2
+ // Metro will resolve to index.native.ts for React Native
3
+ // This file serves as fallback for web environments
4
+ export { default } from './Divider.web';
5
+ export * from './types';
@@ -0,0 +1,3 @@
1
+ // Web-specific Divider export
2
+ export { default } from './Divider.web';
3
+ export * from './types';