@oxyhq/services 22.6.2 → 22.6.4

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 (47) hide show
  1. package/lib/commonjs/ui/components/fileManagement/FileViewer.js +99 -77
  2. package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +1 -1
  3. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +33 -40
  4. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +1 -1
  5. package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js +92 -88
  6. package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js.map +1 -1
  7. package/lib/commonjs/ui/screens/FileManagementScreen.js +175 -360
  8. package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
  9. package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js +9 -2
  10. package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js.map +1 -1
  11. package/lib/module/ui/components/fileManagement/FileViewer.js +100 -78
  12. package/lib/module/ui/components/fileManagement/FileViewer.js.map +1 -1
  13. package/lib/module/ui/components/fileManagement/UploadPreview.js +34 -41
  14. package/lib/module/ui/components/fileManagement/UploadPreview.js.map +1 -1
  15. package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js +94 -90
  16. package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js.map +1 -1
  17. package/lib/module/ui/screens/FileManagementScreen.js +177 -363
  18. package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
  19. package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js +9 -2
  20. package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js.map +1 -1
  21. package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts.map +1 -1
  22. package/lib/typescript/commonjs/ui/components/fileManagement/UploadPreview.d.ts.map +1 -1
  23. package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -1
  24. package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +1 -1
  25. package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts.map +1 -1
  26. package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +1 -1
  27. package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts.map +1 -1
  28. package/lib/typescript/module/ui/components/fileManagement/UploadPreview.d.ts.map +1 -1
  29. package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -1
  30. package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +1 -1
  31. package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts.map +1 -1
  32. package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +1 -1
  33. package/package.json +1 -1
  34. package/src/ui/components/fileManagement/FileViewer.tsx +82 -68
  35. package/src/ui/components/fileManagement/UploadPreview.tsx +34 -29
  36. package/src/ui/components/photogrid/JustifiedPhotoGrid.tsx +14 -13
  37. package/src/ui/screens/FileManagementScreen.tsx +135 -354
  38. package/src/ui/screens/fileManagement/PhotoPickerSection.tsx +6 -2
  39. package/lib/commonjs/ui/components/fileManagement/styles.js +0 -832
  40. package/lib/commonjs/ui/components/fileManagement/styles.js.map +0 -1
  41. package/lib/module/ui/components/fileManagement/styles.js +0 -828
  42. package/lib/module/ui/components/fileManagement/styles.js.map +0 -1
  43. package/lib/typescript/commonjs/ui/components/fileManagement/styles.d.ts +0 -825
  44. package/lib/typescript/commonjs/ui/components/fileManagement/styles.d.ts.map +0 -1
  45. package/lib/typescript/module/ui/components/fileManagement/styles.d.ts +0 -825
  46. package/lib/typescript/module/ui/components/fileManagement/styles.d.ts.map +0 -1
  47. package/src/ui/components/fileManagement/styles.ts +0 -823
@@ -1,828 +0,0 @@
1
- "use strict";
2
-
3
- import { StyleSheet } from 'react-native';
4
- export const fileManagementStyles = StyleSheet.create({
5
- container: {
6
- flex: 1
7
- },
8
- selectionBadge: {
9
- position: 'absolute',
10
- top: 4,
11
- right: 4,
12
- backgroundColor: 'rgba(0,0,0,0.4)',
13
- borderRadius: 12,
14
- padding: 2
15
- },
16
- loadingMoreBar: {
17
- flexDirection: 'row',
18
- alignItems: 'center',
19
- justifyContent: 'center',
20
- paddingVertical: 12,
21
- gap: 8
22
- },
23
- loadingMoreText: {
24
- fontSize: 13,
25
- fontWeight: '500'
26
- },
27
- header: {
28
- flexDirection: 'row',
29
- alignItems: 'center',
30
- justifyContent: 'space-between',
31
- paddingHorizontal: 16,
32
- paddingVertical: 12,
33
- borderBottomWidth: 1,
34
- position: 'relative'
35
- },
36
- backButton: {
37
- padding: 12,
38
- borderRadius: 999,
39
- alignItems: 'center',
40
- justifyContent: 'center',
41
- minWidth: 44,
42
- minHeight: 44
43
- },
44
- headerTitleContainer: {
45
- flex: 1,
46
- alignItems: 'center',
47
- justifyContent: 'center',
48
- marginHorizontal: 16
49
- },
50
- headerTitle: {
51
- fontSize: 22,
52
- fontWeight: '700',
53
- letterSpacing: -0.5,
54
- lineHeight: 28
55
- },
56
- headerSubtitle: {
57
- fontSize: 13,
58
- fontWeight: '500',
59
- marginTop: 2,
60
- letterSpacing: 0.2
61
- },
62
- uploadButton: {
63
- width: 44,
64
- height: 44,
65
- borderRadius: 22,
66
- alignItems: 'center',
67
- justifyContent: 'center'
68
- },
69
- /**
70
- * Expanded variant of the upload button shown in image-only picker mode,
71
- * where surfacing "Upload" prominently helps users when they have no files.
72
- */
73
- uploadButtonExtended: {
74
- width: 'auto',
75
- minWidth: 44,
76
- paddingHorizontal: 14
77
- },
78
- uploadButtonContent: {
79
- flexDirection: 'row',
80
- alignItems: 'center',
81
- gap: 6
82
- },
83
- uploadButtonLabel: {
84
- color: '#FFFFFF',
85
- fontSize: 14,
86
- fontWeight: '600'
87
- },
88
- uploadProgress: {
89
- alignItems: 'center',
90
- justifyContent: 'center'
91
- },
92
- uploadProgressText: {
93
- color: '#FFFFFF',
94
- fontSize: 10,
95
- fontWeight: '600',
96
- marginTop: 2
97
- },
98
- uploadBannerContainer: {
99
- position: 'absolute',
100
- top: 72,
101
- left: 0,
102
- right: 0,
103
- alignItems: 'center',
104
- zIndex: 50
105
- },
106
- uploadBanner: {
107
- flexDirection: 'row',
108
- alignItems: 'center',
109
- paddingHorizontal: 14,
110
- paddingVertical: 10,
111
- borderRadius: 24,
112
- gap: 10,
113
- borderWidth: 1,
114
- shadowColor: '#000',
115
- shadowOpacity: 0.1,
116
- shadowRadius: 6,
117
- shadowOffset: {
118
- width: 0,
119
- height: 2
120
- },
121
- elevation: 2,
122
- minWidth: 200
123
- },
124
- uploadBannerContent: {
125
- flex: 1,
126
- gap: 6
127
- },
128
- uploadBannerText: {
129
- fontSize: 13,
130
- fontWeight: '500'
131
- },
132
- uploadProgressBarContainer: {
133
- height: 3,
134
- backgroundColor: 'rgba(0,0,0,0.1)',
135
- borderRadius: 2,
136
- overflow: 'hidden'
137
- },
138
- uploadProgressBar: {
139
- height: '100%',
140
- borderRadius: 2
141
- },
142
- searchContainer: {
143
- flexDirection: 'row',
144
- alignItems: 'center',
145
- paddingHorizontal: 14,
146
- paddingVertical: 10,
147
- marginHorizontal: 12,
148
- marginTop: 0,
149
- marginBottom: 12,
150
- borderRadius: 999,
151
- gap: 10
152
- },
153
- searchInput: {
154
- flex: 1,
155
- fontSize: 16,
156
- lineHeight: 20
157
- },
158
- searchClearButton: {
159
- padding: 4,
160
- borderRadius: 12,
161
- alignItems: 'center',
162
- justifyContent: 'center'
163
- },
164
- statsContainer: {
165
- flexDirection: 'row',
166
- paddingHorizontal: 14,
167
- paddingVertical: 10,
168
- marginHorizontal: 12,
169
- marginTop: 0,
170
- marginBottom: 12,
171
- borderRadius: 18
172
- },
173
- statItem: {
174
- flex: 1,
175
- alignItems: 'center',
176
- paddingVertical: 4
177
- },
178
- statValue: {
179
- fontSize: 20,
180
- fontWeight: '800',
181
- letterSpacing: -0.5,
182
- lineHeight: 24
183
- },
184
- statLabel: {
185
- fontSize: 12,
186
- fontWeight: '500',
187
- marginTop: 2,
188
- letterSpacing: 0.2
189
- },
190
- scrollView: {
191
- flex: 1
192
- },
193
- scrollContainer: {
194
- paddingHorizontal: 12,
195
- paddingTop: 0,
196
- paddingBottom: 12
197
- },
198
- fileItem: {
199
- flexDirection: 'row',
200
- alignItems: 'center',
201
- padding: 10,
202
- marginBottom: 8,
203
- borderRadius: 10,
204
- borderWidth: 1
205
- },
206
- fileContent: {
207
- flexDirection: 'row',
208
- alignItems: 'center',
209
- flex: 1
210
- },
211
- fileIconContainer: {
212
- width: 50,
213
- height: 50,
214
- alignItems: 'center',
215
- justifyContent: 'center',
216
- marginRight: 12
217
- },
218
- filePreviewContainer: {
219
- width: 52,
220
- height: 52,
221
- marginRight: 10
222
- },
223
- filePreview: {
224
- width: '100%',
225
- height: '100%',
226
- borderRadius: 8,
227
- backgroundColor: 'transparent',
228
- alignItems: 'center',
229
- justifyContent: 'center',
230
- overflow: 'hidden',
231
- position: 'relative'
232
- },
233
- previewImage: {
234
- width: '100%',
235
- height: '100%',
236
- borderRadius: 8
237
- },
238
- pdfPreview: {
239
- alignItems: 'center',
240
- justifyContent: 'center',
241
- width: '100%',
242
- height: '100%',
243
- backgroundColor: '#FF6B6B20'
244
- },
245
- pdfLabel: {
246
- fontSize: 8,
247
- fontWeight: 'bold',
248
- marginTop: 2
249
- },
250
- videoPreviewWrapper: {
251
- width: '100%',
252
- height: '100%',
253
- borderRadius: 8,
254
- overflow: 'hidden',
255
- backgroundColor: '#000000',
256
- alignItems: 'center',
257
- justifyContent: 'center'
258
- },
259
- videoPosterImage: {
260
- position: 'absolute',
261
- top: 0,
262
- left: 0,
263
- right: 0,
264
- bottom: 0,
265
- width: '100%',
266
- height: '100%'
267
- },
268
- videoOverlay: {
269
- position: 'absolute',
270
- top: 0,
271
- left: 0,
272
- right: 0,
273
- bottom: 0,
274
- alignItems: 'center',
275
- justifyContent: 'center',
276
- backgroundColor: 'rgba(0,0,0,0.25)'
277
- },
278
- fallbackIcon: {
279
- position: 'absolute',
280
- top: 0,
281
- left: 0,
282
- right: 0,
283
- bottom: 0,
284
- alignItems: 'center',
285
- justifyContent: 'center',
286
- backgroundColor: 'transparent',
287
- borderRadius: 8
288
- },
289
- groupedActions: {
290
- flexDirection: 'row',
291
- alignItems: 'center',
292
- gap: 6,
293
- marginLeft: 12
294
- },
295
- groupedActionBtn: {
296
- width: 34,
297
- height: 34,
298
- borderRadius: 8,
299
- alignItems: 'center',
300
- justifyContent: 'center'
301
- },
302
- groupedDescription: {
303
- fontSize: 12,
304
- lineHeight: 16,
305
- marginTop: 6
306
- },
307
- fileInfo: {
308
- flex: 1
309
- },
310
- fileName: {
311
- fontSize: 16,
312
- fontWeight: '600',
313
- marginBottom: 4
314
- },
315
- fileDetails: {
316
- fontSize: 14,
317
- marginBottom: 2
318
- },
319
- fileDescription: {
320
- fontSize: 12,
321
- fontStyle: 'italic'
322
- },
323
- fileActions: {
324
- flexDirection: 'row',
325
- gap: 8
326
- },
327
- actionButton: {
328
- width: 36,
329
- height: 36,
330
- borderRadius: 999,
331
- alignItems: 'center',
332
- justifyContent: 'center'
333
- },
334
- emptyState: {
335
- alignItems: 'center',
336
- paddingVertical: 40,
337
- paddingHorizontal: 24
338
- },
339
- emptyStateTitle: {
340
- fontSize: 24,
341
- fontWeight: 'bold',
342
- marginTop: 16,
343
- marginBottom: 8
344
- },
345
- emptyStateDescription: {
346
- fontSize: 16,
347
- textAlign: 'center',
348
- lineHeight: 24,
349
- marginBottom: 32
350
- },
351
- emptyStateButton: {
352
- flexDirection: 'row',
353
- alignItems: 'center',
354
- paddingHorizontal: 24,
355
- paddingVertical: 12,
356
- borderRadius: 24,
357
- gap: 8
358
- },
359
- emptyStateButtonText: {
360
- color: '#FFFFFF',
361
- fontSize: 16,
362
- fontWeight: '600'
363
- },
364
- modalContainer: {
365
- flex: 1
366
- },
367
- modalHeader: {
368
- flexDirection: 'row',
369
- alignItems: 'center',
370
- justifyContent: 'space-between',
371
- paddingHorizontal: 16,
372
- paddingVertical: 12,
373
- borderBottomWidth: 1
374
- },
375
- modalCloseButton: {
376
- padding: 8
377
- },
378
- modalTitle: {
379
- fontSize: 18,
380
- fontWeight: '600'
381
- },
382
- modalPlaceholder: {
383
- width: 40
384
- },
385
- modalContent: {
386
- flex: 1,
387
- padding: 16
388
- },
389
- modalActions: {
390
- flexDirection: 'row',
391
- gap: 12,
392
- width: '100%'
393
- },
394
- modalActionButton: {
395
- flex: 1,
396
- flexDirection: 'row',
397
- alignItems: 'center',
398
- justifyContent: 'center',
399
- paddingVertical: 16,
400
- borderRadius: 12,
401
- gap: 8
402
- },
403
- modalActionText: {
404
- color: '#FFFFFF',
405
- fontSize: 16,
406
- fontWeight: '600'
407
- },
408
- uploadPreviewContainer: {
409
- flex: 1
410
- },
411
- uploadPreviewHeader: {
412
- flexDirection: 'row',
413
- alignItems: 'center',
414
- justifyContent: 'space-between',
415
- paddingHorizontal: 16,
416
- paddingVertical: 16,
417
- borderBottomWidth: 1
418
- },
419
- uploadPreviewTitle: {
420
- fontSize: 20,
421
- fontWeight: '700'
422
- },
423
- uploadPreviewList: {
424
- flex: 1,
425
- padding: 16
426
- },
427
- uploadPreviewItem: {
428
- flexDirection: 'row',
429
- alignItems: 'center',
430
- padding: 12,
431
- borderRadius: 12,
432
- borderWidth: 1,
433
- marginBottom: 12,
434
- gap: 12
435
- },
436
- uploadPreviewThumbnail: {
437
- width: 60,
438
- height: 60,
439
- borderRadius: 8
440
- },
441
- uploadPreviewIconContainer: {
442
- width: 60,
443
- height: 60,
444
- borderRadius: 8,
445
- alignItems: 'center',
446
- justifyContent: 'center'
447
- },
448
- uploadPreviewInfo: {
449
- flex: 1,
450
- minWidth: 0
451
- },
452
- uploadPreviewName: {
453
- fontSize: 16,
454
- fontWeight: '600',
455
- marginBottom: 4
456
- },
457
- uploadPreviewMeta: {
458
- fontSize: 13
459
- },
460
- uploadPreviewRemove: {
461
- padding: 4
462
- },
463
- uploadPreviewFooter: {
464
- padding: 16,
465
- borderTopWidth: 1
466
- },
467
- uploadPreviewStats: {
468
- flexDirection: 'row',
469
- justifyContent: 'space-between',
470
- marginBottom: 16
471
- },
472
- uploadPreviewStatsText: {
473
- fontSize: 15,
474
- fontWeight: '600'
475
- },
476
- uploadPreviewActions: {
477
- flexDirection: 'row',
478
- gap: 12
479
- },
480
- uploadPreviewCancelButton: {
481
- flex: 1,
482
- paddingVertical: 14,
483
- borderRadius: 12,
484
- borderWidth: 1,
485
- alignItems: 'center',
486
- justifyContent: 'center'
487
- },
488
- uploadPreviewCancelText: {
489
- fontSize: 16,
490
- fontWeight: '600'
491
- },
492
- uploadPreviewConfirmButton: {
493
- flex: 2,
494
- flexDirection: 'row',
495
- alignItems: 'center',
496
- justifyContent: 'center',
497
- paddingVertical: 14,
498
- borderRadius: 12,
499
- gap: 8
500
- },
501
- uploadPreviewConfirmText: {
502
- color: '#FFFFFF',
503
- fontSize: 16,
504
- fontWeight: '600'
505
- },
506
- fileViewerContainer: {
507
- flex: 1,
508
- position: 'relative'
509
- },
510
- backgroundImage: {
511
- position: 'absolute',
512
- top: 0,
513
- left: 0,
514
- right: 0,
515
- bottom: 0,
516
- width: '100%',
517
- height: '100%',
518
- zIndex: 0
519
- },
520
- backgroundOverlay: {
521
- position: 'absolute',
522
- top: 0,
523
- left: 0,
524
- right: 0,
525
- bottom: 0,
526
- zIndex: 1
527
- },
528
- fileViewerHeader: {
529
- flexDirection: 'row',
530
- alignItems: 'center',
531
- paddingHorizontal: 12,
532
- paddingVertical: 8,
533
- borderBottomWidth: 1,
534
- position: 'relative',
535
- zIndex: 2
536
- },
537
- fileViewerTitleContainer: {
538
- flex: 1,
539
- marginHorizontal: 12
540
- },
541
- fileViewerTitle: {
542
- fontSize: 18,
543
- fontWeight: '600',
544
- marginBottom: 2
545
- },
546
- fileViewerSubtitle: {
547
- fontSize: 14
548
- },
549
- fileViewerActions: {
550
- flexDirection: 'row',
551
- gap: 8
552
- },
553
- fileViewerContent: {
554
- flex: 1,
555
- position: 'relative',
556
- zIndex: 2
557
- },
558
- fileViewerContentWithDetails: {
559
- paddingBottom: 20
560
- },
561
- fileViewerContentContainer: {
562
- flexGrow: 1,
563
- paddingHorizontal: 12,
564
- paddingTop: 0,
565
- paddingBottom: 8
566
- },
567
- fileViewerLoading: {
568
- flex: 1,
569
- justifyContent: 'center',
570
- alignItems: 'center'
571
- },
572
- fileViewerLoadingText: {
573
- fontSize: 16,
574
- marginTop: 16
575
- },
576
- imageContainer: {
577
- alignItems: 'center',
578
- justifyContent: 'center',
579
- flex: 1,
580
- marginTop: 56,
581
- marginBottom: 8,
582
- paddingHorizontal: 12
583
- },
584
- imageWrapper: {
585
- borderRadius: 24,
586
- overflow: 'hidden',
587
- alignSelf: 'center'
588
- },
589
- floatingBackButton: {
590
- position: 'absolute',
591
- top: 12,
592
- left: 12,
593
- width: 40,
594
- height: 40,
595
- borderRadius: 999,
596
- alignItems: 'center',
597
- justifyContent: 'center',
598
- zIndex: 10
599
- },
600
- floatingDownloadButton: {
601
- position: 'absolute',
602
- top: 12,
603
- right: 12,
604
- width: 40,
605
- height: 40,
606
- borderRadius: 999,
607
- alignItems: 'center',
608
- justifyContent: 'center',
609
- zIndex: 10
610
- },
611
- textContainer: {
612
- flex: 1,
613
- borderRadius: 18,
614
- borderWidth: 0,
615
- padding: 12,
616
- minHeight: 180,
617
- maxHeight: '80%'
618
- },
619
- textContent: {
620
- fontSize: 14,
621
- fontFamily: 'monospace',
622
- lineHeight: 20
623
- },
624
- unsupportedFileContainer: {
625
- flex: 1,
626
- justifyContent: 'center',
627
- alignItems: 'center',
628
- paddingVertical: 32,
629
- paddingHorizontal: 24
630
- },
631
- unsupportedFileTitle: {
632
- fontSize: 24,
633
- fontWeight: 'bold',
634
- marginTop: 16,
635
- marginBottom: 8,
636
- textAlign: 'center'
637
- },
638
- unsupportedFileDescription: {
639
- fontSize: 16,
640
- textAlign: 'center',
641
- lineHeight: 24,
642
- marginBottom: 32
643
- },
644
- downloadButtonLarge: {
645
- flexDirection: 'row',
646
- alignItems: 'center',
647
- paddingHorizontal: 18,
648
- paddingVertical: 12,
649
- borderRadius: 999,
650
- gap: 8
651
- },
652
- downloadButtonText: {
653
- color: '#FFFFFF',
654
- fontSize: 16,
655
- fontWeight: '600'
656
- },
657
- pdfContainer: {
658
- flex: 1,
659
- alignItems: 'center',
660
- justifyContent: 'center'
661
- },
662
- mediaContainer: {
663
- flex: 1,
664
- alignItems: 'center',
665
- justifyContent: 'center',
666
- padding: 20
667
- },
668
- unsupportedText: {
669
- fontSize: 16,
670
- textAlign: 'center',
671
- fontStyle: 'italic'
672
- },
673
- fileDetailsSection: {
674
- marginHorizontal: 12,
675
- marginTop: 8,
676
- marginBottom: 12,
677
- padding: 0,
678
- borderRadius: 18,
679
- borderWidth: 0,
680
- overflow: 'hidden',
681
- position: 'relative',
682
- zIndex: 2
683
- },
684
- fileDetailsSectionContent: {
685
- paddingHorizontal: 12,
686
- paddingBottom: 8
687
- },
688
- fileDetailsSectionTitle: {
689
- fontSize: 18,
690
- fontWeight: '600',
691
- flex: 1
692
- },
693
- fileDetailsSectionHeader: {
694
- flexDirection: 'row',
695
- alignItems: 'center',
696
- justifyContent: 'space-between',
697
- paddingHorizontal: 12,
698
- paddingTop: 10,
699
- paddingBottom: 6
700
- },
701
- fileDetailsSectionToggle: {
702
- padding: 4
703
- },
704
- fileDetailsActions: {
705
- flexDirection: 'row',
706
- gap: 12,
707
- marginTop: 8,
708
- paddingHorizontal: 12,
709
- paddingBottom: 10
710
- },
711
- fileDetailsActionButton: {
712
- flex: 1,
713
- flexDirection: 'row',
714
- alignItems: 'center',
715
- justifyContent: 'center',
716
- paddingVertical: 12,
717
- borderRadius: 999,
718
- gap: 6
719
- },
720
- fileDetailsActionText: {
721
- color: '#FFFFFF',
722
- fontSize: 14,
723
- fontWeight: '600'
724
- },
725
- controlsBar: {
726
- flexDirection: 'row',
727
- alignItems: 'center',
728
- justifyContent: 'space-between',
729
- paddingHorizontal: 12,
730
- paddingTop: 12,
731
- paddingBottom: 12,
732
- gap: 12
733
- },
734
- viewModeScroll: {
735
- flex: 1,
736
- maxWidth: '80%'
737
- },
738
- viewModeToggle: {
739
- flexDirection: 'row',
740
- borderRadius: 999,
741
- padding: 2,
742
- overflow: 'hidden'
743
- },
744
- viewModeButton: {
745
- paddingHorizontal: 10,
746
- paddingVertical: 6,
747
- borderRadius: 999,
748
- minWidth: 36,
749
- alignItems: 'center',
750
- justifyContent: 'center',
751
- marginHorizontal: 1
752
- },
753
- sortButton: {
754
- flexDirection: 'row',
755
- alignItems: 'center',
756
- justifyContent: 'center',
757
- paddingHorizontal: 10,
758
- paddingVertical: 6,
759
- borderRadius: 999,
760
- minWidth: 36,
761
- gap: 4
762
- },
763
- photoScrollContainer: {
764
- padding: 10
765
- },
766
- photoItem: {
767
- borderRadius: 8,
768
- overflow: 'hidden'
769
- },
770
- photoContainer: {
771
- width: '100%',
772
- height: '100%',
773
- position: 'relative',
774
- borderRadius: 8,
775
- overflow: 'hidden'
776
- },
777
- photoImage: {
778
- width: '100%',
779
- height: '100%'
780
- },
781
- dimensionsLoadingIndicator: {
782
- flexDirection: 'row',
783
- alignItems: 'center',
784
- justifyContent: 'center',
785
- paddingVertical: 16,
786
- gap: 8
787
- },
788
- dimensionsLoadingText: {
789
- fontSize: 14,
790
- fontStyle: 'italic'
791
- },
792
- justifiedPhotoItem: {
793
- borderRadius: 6,
794
- overflow: 'hidden',
795
- position: 'relative'
796
- },
797
- justifiedPhotoContainer: {
798
- width: '100%',
799
- height: '100%',
800
- position: 'relative',
801
- borderRadius: 6,
802
- overflow: 'hidden',
803
- backgroundColor: 'transparent'
804
- },
805
- justifiedPhotoImage: {
806
- width: '100%',
807
- height: '100%',
808
- borderRadius: 6
809
- },
810
- simplePhotoItem: {
811
- borderRadius: 8,
812
- overflow: 'hidden',
813
- backgroundColor: 'transparent'
814
- },
815
- simplePhotoContainer: {
816
- width: '100%',
817
- height: '100%',
818
- position: 'relative',
819
- borderRadius: 8,
820
- overflow: 'hidden'
821
- },
822
- simplePhotoImage: {
823
- width: '100%',
824
- height: '100%',
825
- borderRadius: 8
826
- }
827
- });
828
- //# sourceMappingURL=styles.js.map