@stndrds/constants 0.1.0-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs ADDED
@@ -0,0 +1,2723 @@
1
+ // src/attribute-icons.ts
2
+ var DEFAULT_ATTRIBUTE_ICONS = {
3
+ text: "text-align-left",
4
+ textarea: "align-left",
5
+ number: "hash",
6
+ checkbox: "check-square",
7
+ date: "calendar",
8
+ phone: "telephone",
9
+ currency: "dollar-circle",
10
+ status: "activity",
11
+ location: "location",
12
+ timestamp: "clock-circle",
13
+ select: "chevron-down-circle",
14
+ multiselect: "list-check",
15
+ file: "file",
16
+ user: "user",
17
+ relation: "link",
18
+ rating: "star"
19
+ };
20
+ function getDefaultAttributeIcon(type) {
21
+ return DEFAULT_ATTRIBUTE_ICONS[type] ?? "circle";
22
+ }
23
+
24
+ // src/colors.ts
25
+ var COLORS = {
26
+ // Neutral & Gray tones
27
+ gray: {
28
+ background: "rgba(107, 114, 128, 0.15)",
29
+ border: "rgba(107, 114, 128, 0.3)",
30
+ text: "#6B7280",
31
+ icon: "#6B7280"
32
+ },
33
+ slate: {
34
+ background: "rgba(100, 116, 139, 0.15)",
35
+ border: "rgba(100, 116, 139, 0.3)",
36
+ text: "#64748B",
37
+ icon: "#64748B"
38
+ },
39
+ // Blue tones (Info, In Progress)
40
+ blue: {
41
+ background: "rgba(59, 130, 246, 0.15)",
42
+ border: "rgba(59, 130, 246, 0.3)",
43
+ text: "#3B82F6",
44
+ icon: "#3B82F6"
45
+ },
46
+ sky: {
47
+ background: "rgba(14, 165, 233, 0.15)",
48
+ border: "rgba(14, 165, 233, 0.3)",
49
+ text: "#0EA5E9",
50
+ icon: "#0EA5E9"
51
+ },
52
+ indigo: {
53
+ background: "rgba(99, 102, 241, 0.15)",
54
+ border: "rgba(99, 102, 241, 0.3)",
55
+ text: "#6366F1",
56
+ icon: "#6366F1"
57
+ },
58
+ // Green tones (Success, Done, Active)
59
+ green: {
60
+ background: "rgba(34, 197, 94, 0.15)",
61
+ border: "rgba(34, 197, 94, 0.3)",
62
+ text: "#22C55E",
63
+ icon: "#22C55E"
64
+ },
65
+ emerald: {
66
+ background: "rgba(16, 185, 129, 0.15)",
67
+ border: "rgba(16, 185, 129, 0.3)",
68
+ text: "#10B981",
69
+ icon: "#10B981"
70
+ },
71
+ teal: {
72
+ background: "rgba(20, 184, 166, 0.15)",
73
+ border: "rgba(20, 184, 166, 0.3)",
74
+ text: "#14B8A6",
75
+ icon: "#14B8A6"
76
+ },
77
+ // Red tones (Error, Danger, Cancelled)
78
+ red: {
79
+ background: "rgba(239, 68, 68, 0.15)",
80
+ border: "rgba(239, 68, 68, 0.3)",
81
+ text: "#EF4444",
82
+ icon: "#EF4444"
83
+ },
84
+ rose: {
85
+ background: "rgba(244, 63, 94, 0.15)",
86
+ border: "rgba(244, 63, 94, 0.3)",
87
+ text: "#F43F5E",
88
+ icon: "#F43F5E"
89
+ },
90
+ // Yellow/Orange tones (Warning, Pending)
91
+ yellow: {
92
+ background: "rgba(234, 179, 8, 0.15)",
93
+ border: "rgba(234, 179, 8, 0.3)",
94
+ text: "#EAB308",
95
+ icon: "#EAB308"
96
+ },
97
+ amber: {
98
+ background: "rgba(245, 158, 11, 0.15)",
99
+ border: "rgba(245, 158, 11, 0.3)",
100
+ text: "#F59E0B",
101
+ icon: "#F59E0B"
102
+ },
103
+ orange: {
104
+ background: "rgba(249, 115, 22, 0.15)",
105
+ border: "rgba(249, 115, 22, 0.3)",
106
+ text: "#F97316",
107
+ icon: "#F97316"
108
+ },
109
+ // Purple tones (Special, Featured)
110
+ purple: {
111
+ background: "rgba(168, 85, 247, 0.15)",
112
+ border: "rgba(168, 85, 247, 0.3)",
113
+ text: "#A855F7",
114
+ icon: "#A855F7"
115
+ },
116
+ violet: {
117
+ background: "rgba(139, 92, 246, 0.15)",
118
+ border: "rgba(139, 92, 246, 0.3)",
119
+ text: "#8B5CF6",
120
+ icon: "#8B5CF6"
121
+ },
122
+ fuchsia: {
123
+ background: "rgba(217, 70, 239, 0.15)",
124
+ border: "rgba(217, 70, 239, 0.3)",
125
+ text: "#D946EF",
126
+ icon: "#D946EF"
127
+ },
128
+ // Pink tones (Accent)
129
+ pink: {
130
+ background: "rgba(236, 72, 153, 0.15)",
131
+ border: "rgba(236, 72, 153, 0.3)",
132
+ text: "#EC4899",
133
+ icon: "#EC4899"
134
+ },
135
+ // Cyan (Alternative Info)
136
+ cyan: {
137
+ background: "rgba(6, 182, 212, 0.15)",
138
+ border: "rgba(6, 182, 212, 0.3)",
139
+ text: "#06B6D4",
140
+ icon: "#06B6D4"
141
+ },
142
+ // Lime (Alternative Success)
143
+ lime: {
144
+ background: "rgba(132, 204, 22, 0.15)",
145
+ border: "rgba(132, 204, 22, 0.3)",
146
+ text: "#84CC16",
147
+ icon: "#84CC16"
148
+ }
149
+ };
150
+ var getColor = (id) => {
151
+ return COLORS[id];
152
+ };
153
+ var getAllColors = () => {
154
+ return Object.values(COLORS);
155
+ };
156
+ var getColorIds = () => {
157
+ return Object.keys(COLORS);
158
+ };
159
+ var isValidColorId = (id) => {
160
+ return id in COLORS;
161
+ };
162
+ var COLOR_GROUPS = {
163
+ neutral: ["gray", "slate"],
164
+ primary: ["blue", "indigo", "sky"],
165
+ success: ["green", "emerald", "teal", "lime"],
166
+ danger: ["red", "rose"],
167
+ warning: ["yellow", "amber", "orange"],
168
+ info: ["blue", "cyan", "sky"],
169
+ special: ["purple", "violet", "fuchsia"],
170
+ accent: ["pink"]
171
+ };
172
+ var getColorsByGroup = (group) => {
173
+ return [...COLOR_GROUPS[group]];
174
+ };
175
+ var STATUS_COLORS = {
176
+ idle: ["gray", "slate"],
177
+ in_progress: ["blue", "indigo", "sky", "cyan", "purple"],
178
+ finished: ["green", "emerald", "teal"],
179
+ cancelled: ["red", "rose"],
180
+ warning: ["yellow", "amber", "orange"]
181
+ };
182
+
183
+ // src/countries.ts
184
+ var COUNTRIES = {
185
+ // Priority countries (most commonly used)
186
+ FR: {
187
+ name: "France",
188
+ iso2: "FR",
189
+ iso3: "FRA",
190
+ numericCode: "250",
191
+ phoneCode: "+33",
192
+ phoneMaxDigits: 10,
193
+ phoneTrunkPrefix: "0"
194
+ },
195
+ US: {
196
+ name: "United States",
197
+ iso2: "US",
198
+ iso3: "USA",
199
+ numericCode: "840",
200
+ phoneCode: "+1",
201
+ phoneMaxDigits: 10,
202
+ phoneTrunkPrefix: ""
203
+ },
204
+ GB: {
205
+ name: "United Kingdom",
206
+ iso2: "GB",
207
+ iso3: "GBR",
208
+ numericCode: "826",
209
+ phoneCode: "+44",
210
+ phoneMaxDigits: 11,
211
+ phoneTrunkPrefix: "0"
212
+ },
213
+ DE: {
214
+ name: "Germany",
215
+ iso2: "DE",
216
+ iso3: "DEU",
217
+ numericCode: "276",
218
+ phoneCode: "+49",
219
+ phoneMaxDigits: 11,
220
+ phoneTrunkPrefix: "0"
221
+ },
222
+ ES: {
223
+ name: "Spain",
224
+ iso2: "ES",
225
+ iso3: "ESP",
226
+ numericCode: "724",
227
+ phoneCode: "+34",
228
+ phoneMaxDigits: 9,
229
+ phoneTrunkPrefix: ""
230
+ },
231
+ IT: {
232
+ name: "Italy",
233
+ iso2: "IT",
234
+ iso3: "ITA",
235
+ numericCode: "380",
236
+ phoneCode: "+39",
237
+ phoneMaxDigits: 10,
238
+ phoneTrunkPrefix: "0"
239
+ },
240
+ BE: {
241
+ name: "Belgium",
242
+ iso2: "BE",
243
+ iso3: "BEL",
244
+ numericCode: "056",
245
+ phoneCode: "+32",
246
+ phoneMaxDigits: 9,
247
+ phoneTrunkPrefix: "0"
248
+ },
249
+ CH: {
250
+ name: "Switzerland",
251
+ iso2: "CH",
252
+ iso3: "CHE",
253
+ numericCode: "756",
254
+ phoneCode: "+41",
255
+ phoneMaxDigits: 10,
256
+ phoneTrunkPrefix: "0"
257
+ },
258
+ NL: {
259
+ name: "Netherlands",
260
+ iso2: "NL",
261
+ iso3: "NLD",
262
+ numericCode: "528",
263
+ phoneCode: "+31",
264
+ phoneMaxDigits: 9,
265
+ phoneTrunkPrefix: "0"
266
+ },
267
+ PT: {
268
+ name: "Portugal",
269
+ iso2: "PT",
270
+ iso3: "PRT",
271
+ numericCode: "620",
272
+ phoneCode: "+351",
273
+ phoneMaxDigits: 9,
274
+ phoneTrunkPrefix: ""
275
+ },
276
+ CA: {
277
+ name: "Canada",
278
+ iso2: "CA",
279
+ iso3: "CAN",
280
+ numericCode: "124",
281
+ phoneCode: "+1",
282
+ phoneMaxDigits: 10,
283
+ phoneTrunkPrefix: ""
284
+ },
285
+ AU: {
286
+ name: "Australia",
287
+ iso2: "AU",
288
+ iso3: "AUS",
289
+ numericCode: "036",
290
+ phoneCode: "+61",
291
+ phoneMaxDigits: 9,
292
+ phoneTrunkPrefix: "0"
293
+ },
294
+ // Europe - Other
295
+ AT: {
296
+ name: "Austria",
297
+ iso2: "AT",
298
+ iso3: "AUT",
299
+ numericCode: "040",
300
+ phoneCode: "+43",
301
+ phoneMaxDigits: 11,
302
+ phoneTrunkPrefix: "0"
303
+ },
304
+ SE: {
305
+ name: "Sweden",
306
+ iso2: "SE",
307
+ iso3: "SWE",
308
+ numericCode: "752",
309
+ phoneCode: "+46",
310
+ phoneMaxDigits: 10,
311
+ phoneTrunkPrefix: "0"
312
+ },
313
+ NO: {
314
+ name: "Norway",
315
+ iso2: "NO",
316
+ iso3: "NOR",
317
+ numericCode: "578",
318
+ phoneCode: "+47",
319
+ phoneMaxDigits: 8,
320
+ phoneTrunkPrefix: ""
321
+ },
322
+ DK: {
323
+ name: "Denmark",
324
+ iso2: "DK",
325
+ iso3: "DNK",
326
+ numericCode: "208",
327
+ phoneCode: "+45",
328
+ phoneMaxDigits: 8,
329
+ phoneTrunkPrefix: ""
330
+ },
331
+ FI: {
332
+ name: "Finland",
333
+ iso2: "FI",
334
+ iso3: "FIN",
335
+ numericCode: "246",
336
+ phoneCode: "+358",
337
+ phoneMaxDigits: 10,
338
+ phoneTrunkPrefix: "0"
339
+ },
340
+ IE: {
341
+ name: "Ireland",
342
+ iso2: "IE",
343
+ iso3: "IRL",
344
+ numericCode: "372",
345
+ phoneCode: "+353",
346
+ phoneMaxDigits: 10,
347
+ phoneTrunkPrefix: "0"
348
+ },
349
+ PL: {
350
+ name: "Poland",
351
+ iso2: "PL",
352
+ iso3: "POL",
353
+ numericCode: "616",
354
+ phoneCode: "+48",
355
+ phoneMaxDigits: 9,
356
+ phoneTrunkPrefix: ""
357
+ },
358
+ CZ: {
359
+ name: "Czech Republic",
360
+ iso2: "CZ",
361
+ iso3: "CZE",
362
+ numericCode: "203",
363
+ phoneCode: "+420",
364
+ phoneMaxDigits: 9,
365
+ phoneTrunkPrefix: ""
366
+ },
367
+ GR: {
368
+ name: "Greece",
369
+ iso2: "GR",
370
+ iso3: "GRC",
371
+ numericCode: "300",
372
+ phoneCode: "+30",
373
+ phoneMaxDigits: 10,
374
+ phoneTrunkPrefix: ""
375
+ },
376
+ RO: {
377
+ name: "Romania",
378
+ iso2: "RO",
379
+ iso3: "ROU",
380
+ numericCode: "642",
381
+ phoneCode: "+40",
382
+ phoneMaxDigits: 10,
383
+ phoneTrunkPrefix: "0"
384
+ },
385
+ HU: {
386
+ name: "Hungary",
387
+ iso2: "HU",
388
+ iso3: "HUN",
389
+ numericCode: "348",
390
+ phoneCode: "+36",
391
+ phoneMaxDigits: 9,
392
+ phoneTrunkPrefix: "06"
393
+ },
394
+ LU: {
395
+ name: "Luxembourg",
396
+ iso2: "LU",
397
+ iso3: "LUX",
398
+ numericCode: "442",
399
+ phoneCode: "+352",
400
+ phoneMaxDigits: 9,
401
+ phoneTrunkPrefix: ""
402
+ },
403
+ SK: {
404
+ name: "Slovakia",
405
+ iso2: "SK",
406
+ iso3: "SVK",
407
+ numericCode: "703",
408
+ phoneCode: "+421",
409
+ phoneMaxDigits: 9,
410
+ phoneTrunkPrefix: "0"
411
+ },
412
+ BG: {
413
+ name: "Bulgaria",
414
+ iso2: "BG",
415
+ iso3: "BGR",
416
+ numericCode: "100",
417
+ phoneCode: "+359",
418
+ phoneMaxDigits: 9,
419
+ phoneTrunkPrefix: "0"
420
+ },
421
+ HR: {
422
+ name: "Croatia",
423
+ iso2: "HR",
424
+ iso3: "HRV",
425
+ numericCode: "191",
426
+ phoneCode: "+385",
427
+ phoneMaxDigits: 9,
428
+ phoneTrunkPrefix: "0"
429
+ },
430
+ SI: {
431
+ name: "Slovenia",
432
+ iso2: "SI",
433
+ iso3: "SVN",
434
+ numericCode: "705",
435
+ phoneCode: "+386",
436
+ phoneMaxDigits: 8,
437
+ phoneTrunkPrefix: "0"
438
+ },
439
+ EE: {
440
+ name: "Estonia",
441
+ iso2: "EE",
442
+ iso3: "EST",
443
+ numericCode: "233",
444
+ phoneCode: "+372",
445
+ phoneMaxDigits: 8,
446
+ phoneTrunkPrefix: ""
447
+ },
448
+ LV: {
449
+ name: "Latvia",
450
+ iso2: "LV",
451
+ iso3: "LVA",
452
+ numericCode: "428",
453
+ phoneCode: "+371",
454
+ phoneMaxDigits: 8,
455
+ phoneTrunkPrefix: ""
456
+ },
457
+ LT: {
458
+ name: "Lithuania",
459
+ iso2: "LT",
460
+ iso3: "LTU",
461
+ numericCode: "440",
462
+ phoneCode: "+370",
463
+ phoneMaxDigits: 8,
464
+ phoneTrunkPrefix: ""
465
+ },
466
+ IS: {
467
+ name: "Iceland",
468
+ iso2: "IS",
469
+ iso3: "ISL",
470
+ numericCode: "352",
471
+ phoneCode: "+354",
472
+ phoneMaxDigits: 7,
473
+ phoneTrunkPrefix: ""
474
+ },
475
+ MT: {
476
+ name: "Malta",
477
+ iso2: "MT",
478
+ iso3: "MLT",
479
+ numericCode: "470",
480
+ phoneCode: "+356",
481
+ phoneMaxDigits: 8,
482
+ phoneTrunkPrefix: ""
483
+ },
484
+ CY: {
485
+ name: "Cyprus",
486
+ iso2: "CY",
487
+ iso3: "CYP",
488
+ numericCode: "196",
489
+ phoneCode: "+357",
490
+ phoneMaxDigits: 8,
491
+ phoneTrunkPrefix: ""
492
+ },
493
+ MC: {
494
+ name: "Monaco",
495
+ iso2: "MC",
496
+ iso3: "MCO",
497
+ numericCode: "492",
498
+ phoneCode: "+377",
499
+ phoneMaxDigits: 8,
500
+ phoneTrunkPrefix: ""
501
+ },
502
+ // Americas - Other
503
+ MX: {
504
+ name: "Mexico",
505
+ iso2: "MX",
506
+ iso3: "MEX",
507
+ numericCode: "484",
508
+ phoneCode: "+52",
509
+ phoneMaxDigits: 10,
510
+ phoneTrunkPrefix: ""
511
+ },
512
+ BR: {
513
+ name: "Brazil",
514
+ iso2: "BR",
515
+ iso3: "BRA",
516
+ numericCode: "076",
517
+ phoneCode: "+55",
518
+ phoneMaxDigits: 11,
519
+ phoneTrunkPrefix: ""
520
+ },
521
+ AR: {
522
+ name: "Argentina",
523
+ iso2: "AR",
524
+ iso3: "ARG",
525
+ numericCode: "032",
526
+ phoneCode: "+54",
527
+ phoneMaxDigits: 10,
528
+ phoneTrunkPrefix: ""
529
+ },
530
+ CL: {
531
+ name: "Chile",
532
+ iso2: "CL",
533
+ iso3: "CHL",
534
+ numericCode: "152",
535
+ phoneCode: "+56",
536
+ phoneMaxDigits: 9,
537
+ phoneTrunkPrefix: ""
538
+ },
539
+ CO: {
540
+ name: "Colombia",
541
+ iso2: "CO",
542
+ iso3: "COL",
543
+ numericCode: "170",
544
+ phoneCode: "+57",
545
+ phoneMaxDigits: 10,
546
+ phoneTrunkPrefix: ""
547
+ },
548
+ PE: {
549
+ name: "Peru",
550
+ iso2: "PE",
551
+ iso3: "PER",
552
+ numericCode: "604",
553
+ phoneCode: "+51",
554
+ phoneMaxDigits: 9,
555
+ phoneTrunkPrefix: ""
556
+ },
557
+ VE: {
558
+ name: "Venezuela",
559
+ iso2: "VE",
560
+ iso3: "VEN",
561
+ numericCode: "862",
562
+ phoneCode: "+58",
563
+ phoneMaxDigits: 10,
564
+ phoneTrunkPrefix: ""
565
+ },
566
+ EC: {
567
+ name: "Ecuador",
568
+ iso2: "EC",
569
+ iso3: "ECU",
570
+ numericCode: "218",
571
+ phoneCode: "+593",
572
+ phoneMaxDigits: 9,
573
+ phoneTrunkPrefix: ""
574
+ },
575
+ UY: {
576
+ name: "Uruguay",
577
+ iso2: "UY",
578
+ iso3: "URY",
579
+ numericCode: "858",
580
+ phoneCode: "+598",
581
+ phoneMaxDigits: 8,
582
+ phoneTrunkPrefix: ""
583
+ },
584
+ PY: {
585
+ name: "Paraguay",
586
+ iso2: "PY",
587
+ iso3: "PRY",
588
+ numericCode: "600",
589
+ phoneCode: "+595",
590
+ phoneMaxDigits: 9,
591
+ phoneTrunkPrefix: ""
592
+ },
593
+ BO: {
594
+ name: "Bolivia",
595
+ iso2: "BO",
596
+ iso3: "BOL",
597
+ numericCode: "068",
598
+ phoneCode: "+591",
599
+ phoneMaxDigits: 8,
600
+ phoneTrunkPrefix: ""
601
+ },
602
+ CR: {
603
+ name: "Costa Rica",
604
+ iso2: "CR",
605
+ iso3: "CRI",
606
+ numericCode: "188",
607
+ phoneCode: "+506",
608
+ phoneMaxDigits: 8,
609
+ phoneTrunkPrefix: ""
610
+ },
611
+ PA: {
612
+ name: "Panama",
613
+ iso2: "PA",
614
+ iso3: "PAN",
615
+ numericCode: "591",
616
+ phoneCode: "+507",
617
+ phoneMaxDigits: 8,
618
+ phoneTrunkPrefix: ""
619
+ },
620
+ // Asia
621
+ CN: {
622
+ name: "China",
623
+ iso2: "CN",
624
+ iso3: "CHN",
625
+ numericCode: "156",
626
+ phoneCode: "+86",
627
+ phoneMaxDigits: 11,
628
+ phoneTrunkPrefix: ""
629
+ },
630
+ JP: {
631
+ name: "Japan",
632
+ iso2: "JP",
633
+ iso3: "JPN",
634
+ numericCode: "392",
635
+ phoneCode: "+81",
636
+ phoneMaxDigits: 11,
637
+ phoneTrunkPrefix: "0"
638
+ },
639
+ IN: {
640
+ name: "India",
641
+ iso2: "IN",
642
+ iso3: "IND",
643
+ numericCode: "356",
644
+ phoneCode: "+91",
645
+ phoneMaxDigits: 10,
646
+ phoneTrunkPrefix: ""
647
+ },
648
+ KR: {
649
+ name: "South Korea",
650
+ iso2: "KR",
651
+ iso3: "KOR",
652
+ numericCode: "410",
653
+ phoneCode: "+82",
654
+ phoneMaxDigits: 11,
655
+ phoneTrunkPrefix: "0"
656
+ },
657
+ SG: {
658
+ name: "Singapore",
659
+ iso2: "SG",
660
+ iso3: "SGP",
661
+ numericCode: "702",
662
+ phoneCode: "+65",
663
+ phoneMaxDigits: 8,
664
+ phoneTrunkPrefix: ""
665
+ },
666
+ HK: {
667
+ name: "Hong Kong",
668
+ iso2: "HK",
669
+ iso3: "HKG",
670
+ numericCode: "344",
671
+ phoneCode: "+852",
672
+ phoneMaxDigits: 8,
673
+ phoneTrunkPrefix: ""
674
+ },
675
+ TW: {
676
+ name: "Taiwan",
677
+ iso2: "TW",
678
+ iso3: "TWN",
679
+ numericCode: "158",
680
+ phoneCode: "+886",
681
+ phoneMaxDigits: 10,
682
+ phoneTrunkPrefix: "0"
683
+ },
684
+ TH: {
685
+ name: "Thailand",
686
+ iso2: "TH",
687
+ iso3: "THA",
688
+ numericCode: "764",
689
+ phoneCode: "+66",
690
+ phoneMaxDigits: 9,
691
+ phoneTrunkPrefix: "0"
692
+ },
693
+ MY: {
694
+ name: "Malaysia",
695
+ iso2: "MY",
696
+ iso3: "MYS",
697
+ numericCode: "458",
698
+ phoneCode: "+60",
699
+ phoneMaxDigits: 10,
700
+ phoneTrunkPrefix: "0"
701
+ },
702
+ ID: {
703
+ name: "Indonesia",
704
+ iso2: "ID",
705
+ iso3: "IDN",
706
+ numericCode: "360",
707
+ phoneCode: "+62",
708
+ phoneMaxDigits: 12,
709
+ phoneTrunkPrefix: "0"
710
+ },
711
+ PH: {
712
+ name: "Philippines",
713
+ iso2: "PH",
714
+ iso3: "PHL",
715
+ numericCode: "608",
716
+ phoneCode: "+63",
717
+ phoneMaxDigits: 10,
718
+ phoneTrunkPrefix: "0"
719
+ },
720
+ VN: {
721
+ name: "Vietnam",
722
+ iso2: "VN",
723
+ iso3: "VNM",
724
+ numericCode: "704",
725
+ phoneCode: "+84",
726
+ phoneMaxDigits: 10,
727
+ phoneTrunkPrefix: "0"
728
+ },
729
+ PK: {
730
+ name: "Pakistan",
731
+ iso2: "PK",
732
+ iso3: "PAK",
733
+ numericCode: "586",
734
+ phoneCode: "+92",
735
+ phoneMaxDigits: 10,
736
+ phoneTrunkPrefix: "0"
737
+ },
738
+ BD: {
739
+ name: "Bangladesh",
740
+ iso2: "BD",
741
+ iso3: "BGD",
742
+ numericCode: "050",
743
+ phoneCode: "+880",
744
+ phoneMaxDigits: 10,
745
+ phoneTrunkPrefix: "0"
746
+ },
747
+ IL: {
748
+ name: "Israel",
749
+ iso2: "IL",
750
+ iso3: "ISR",
751
+ numericCode: "376",
752
+ phoneCode: "+972",
753
+ phoneMaxDigits: 10,
754
+ phoneTrunkPrefix: "0"
755
+ },
756
+ AE: {
757
+ name: "United Arab Emirates",
758
+ iso2: "AE",
759
+ iso3: "ARE",
760
+ numericCode: "784",
761
+ phoneCode: "+971",
762
+ phoneMaxDigits: 9,
763
+ phoneTrunkPrefix: ""
764
+ },
765
+ SA: {
766
+ name: "Saudi Arabia",
767
+ iso2: "SA",
768
+ iso3: "SAU",
769
+ numericCode: "682",
770
+ phoneCode: "+966",
771
+ phoneMaxDigits: 9,
772
+ phoneTrunkPrefix: ""
773
+ },
774
+ TR: {
775
+ name: "Turkey",
776
+ iso2: "TR",
777
+ iso3: "TUR",
778
+ numericCode: "792",
779
+ phoneCode: "+90",
780
+ phoneMaxDigits: 10,
781
+ phoneTrunkPrefix: "0"
782
+ },
783
+ // Oceania
784
+ NZ: {
785
+ name: "New Zealand",
786
+ iso2: "NZ",
787
+ iso3: "NZL",
788
+ numericCode: "554",
789
+ phoneCode: "+64",
790
+ phoneMaxDigits: 10,
791
+ phoneTrunkPrefix: "0"
792
+ },
793
+ // Africa
794
+ ZA: {
795
+ name: "South Africa",
796
+ iso2: "ZA",
797
+ iso3: "ZAF",
798
+ numericCode: "710",
799
+ phoneCode: "+27",
800
+ phoneMaxDigits: 9,
801
+ phoneTrunkPrefix: "0"
802
+ },
803
+ EG: {
804
+ name: "Egypt",
805
+ iso2: "EG",
806
+ iso3: "EGY",
807
+ numericCode: "818",
808
+ phoneCode: "+20",
809
+ phoneMaxDigits: 10,
810
+ phoneTrunkPrefix: "0"
811
+ },
812
+ NG: {
813
+ name: "Nigeria",
814
+ iso2: "NG",
815
+ iso3: "NGA",
816
+ numericCode: "566",
817
+ phoneCode: "+234",
818
+ phoneMaxDigits: 10,
819
+ phoneTrunkPrefix: "0"
820
+ },
821
+ KE: {
822
+ name: "Kenya",
823
+ iso2: "KE",
824
+ iso3: "KEN",
825
+ numericCode: "404",
826
+ phoneCode: "+254",
827
+ phoneMaxDigits: 9,
828
+ phoneTrunkPrefix: "0"
829
+ },
830
+ MA: {
831
+ name: "Morocco",
832
+ iso2: "MA",
833
+ iso3: "MAR",
834
+ numericCode: "504",
835
+ phoneCode: "+212",
836
+ phoneMaxDigits: 9,
837
+ phoneTrunkPrefix: "0"
838
+ },
839
+ TN: {
840
+ name: "Tunisia",
841
+ iso2: "TN",
842
+ iso3: "TUN",
843
+ numericCode: "788",
844
+ phoneCode: "+216",
845
+ phoneMaxDigits: 8,
846
+ phoneTrunkPrefix: ""
847
+ },
848
+ DZ: {
849
+ name: "Algeria",
850
+ iso2: "DZ",
851
+ iso3: "DZA",
852
+ numericCode: "012",
853
+ phoneCode: "+213",
854
+ phoneMaxDigits: 9,
855
+ phoneTrunkPrefix: "0"
856
+ },
857
+ // Middle East
858
+ QA: {
859
+ name: "Qatar",
860
+ iso2: "QA",
861
+ iso3: "QAT",
862
+ numericCode: "634",
863
+ phoneCode: "+974",
864
+ phoneMaxDigits: 8,
865
+ phoneTrunkPrefix: ""
866
+ },
867
+ KW: {
868
+ name: "Kuwait",
869
+ iso2: "KW",
870
+ iso3: "KWT",
871
+ numericCode: "414",
872
+ phoneCode: "+965",
873
+ phoneMaxDigits: 8,
874
+ phoneTrunkPrefix: ""
875
+ },
876
+ OM: {
877
+ name: "Oman",
878
+ iso2: "OM",
879
+ iso3: "OMN",
880
+ numericCode: "512",
881
+ phoneCode: "+968",
882
+ phoneMaxDigits: 8,
883
+ phoneTrunkPrefix: ""
884
+ },
885
+ BH: {
886
+ name: "Bahrain",
887
+ iso2: "BH",
888
+ iso3: "BHR",
889
+ numericCode: "048",
890
+ phoneCode: "+973",
891
+ phoneMaxDigits: 8,
892
+ phoneTrunkPrefix: ""
893
+ },
894
+ LB: {
895
+ name: "Lebanon",
896
+ iso2: "LB",
897
+ iso3: "LBN",
898
+ numericCode: "422",
899
+ phoneCode: "+961",
900
+ phoneMaxDigits: 8,
901
+ phoneTrunkPrefix: "0"
902
+ },
903
+ JO: {
904
+ name: "Jordan",
905
+ iso2: "JO",
906
+ iso3: "JOR",
907
+ numericCode: "400",
908
+ phoneCode: "+962",
909
+ phoneMaxDigits: 9,
910
+ phoneTrunkPrefix: "0"
911
+ },
912
+ // Eastern Europe & Central Asia
913
+ RU: {
914
+ name: "Russia",
915
+ iso2: "RU",
916
+ iso3: "RUS",
917
+ numericCode: "643",
918
+ phoneCode: "+7",
919
+ phoneMaxDigits: 10,
920
+ phoneTrunkPrefix: ""
921
+ },
922
+ UA: {
923
+ name: "Ukraine",
924
+ iso2: "UA",
925
+ iso3: "UKR",
926
+ numericCode: "804",
927
+ phoneCode: "+380",
928
+ phoneMaxDigits: 9,
929
+ phoneTrunkPrefix: "0"
930
+ },
931
+ BY: {
932
+ name: "Belarus",
933
+ iso2: "BY",
934
+ iso3: "BLR",
935
+ numericCode: "112",
936
+ phoneCode: "+375",
937
+ phoneMaxDigits: 9,
938
+ phoneTrunkPrefix: ""
939
+ },
940
+ KZ: {
941
+ name: "Kazakhstan",
942
+ iso2: "KZ",
943
+ iso3: "KAZ",
944
+ numericCode: "398",
945
+ phoneCode: "+7",
946
+ phoneMaxDigits: 10,
947
+ phoneTrunkPrefix: ""
948
+ }
949
+ };
950
+ var getCountryByIso2 = (iso2) => {
951
+ return COUNTRIES[iso2.toUpperCase()];
952
+ };
953
+ var getCountryByIso3 = (iso3) => {
954
+ return Object.values(COUNTRIES).find(
955
+ (country) => country.iso3.toUpperCase() === iso3.toUpperCase()
956
+ );
957
+ };
958
+ var getAllCountries = () => {
959
+ return Object.values(COUNTRIES);
960
+ };
961
+ var getCountryPhoneCode = (iso2) => {
962
+ return COUNTRIES[iso2.toUpperCase()]?.phoneCode || "";
963
+ };
964
+ var getPhoneMaxDigits = (iso2) => {
965
+ return COUNTRIES[iso2.toUpperCase()]?.phoneMaxDigits ?? 15;
966
+ };
967
+ var getPhoneTrunkPrefix = (iso2) => {
968
+ return COUNTRIES[iso2.toUpperCase()]?.phoneTrunkPrefix ?? "";
969
+ };
970
+ var isValidIso2 = (code) => {
971
+ return code.toUpperCase() in COUNTRIES;
972
+ };
973
+ var isValidIso3 = (code) => {
974
+ return Object.values(COUNTRIES).some(
975
+ (country) => country.iso3.toUpperCase() === code.toUpperCase()
976
+ );
977
+ };
978
+
979
+ // src/currencies.ts
980
+ var CURRENCIES = {
981
+ // Major World Currencies
982
+ USD: { code: "USD", name: "US Dollar", symbol: "$", decimals: 2 },
983
+ EUR: { code: "EUR", name: "Euro", symbol: "\u20AC", decimals: 2 },
984
+ GBP: { code: "GBP", name: "British Pound", symbol: "\xA3", decimals: 2 },
985
+ JPY: { code: "JPY", name: "Japanese Yen", symbol: "\xA5", decimals: 0 },
986
+ CNY: { code: "CNY", name: "Chinese Yuan", symbol: "\xA5", decimals: 2 },
987
+ // European Currencies
988
+ CHF: { code: "CHF", name: "Swiss Franc", symbol: "CHF", decimals: 2 },
989
+ SEK: { code: "SEK", name: "Swedish Krona", symbol: "kr", decimals: 2 },
990
+ NOK: { code: "NOK", name: "Norwegian Krone", symbol: "kr", decimals: 2 },
991
+ DKK: { code: "DKK", name: "Danish Krone", symbol: "kr", decimals: 2 },
992
+ PLN: { code: "PLN", name: "Polish Zloty", symbol: "z\u0142", decimals: 2 },
993
+ CZK: { code: "CZK", name: "Czech Koruna", symbol: "K\u010D", decimals: 2 },
994
+ HUF: { code: "HUF", name: "Hungarian Forint", symbol: "Ft", decimals: 0 },
995
+ RON: { code: "RON", name: "Romanian Leu", symbol: "lei", decimals: 2 },
996
+ BGN: { code: "BGN", name: "Bulgarian Lev", symbol: "\u043B\u0432", decimals: 2 },
997
+ HRK: { code: "HRK", name: "Croatian Kuna", symbol: "kn", decimals: 2 },
998
+ ISK: { code: "ISK", name: "Icelandic Krona", symbol: "kr", decimals: 0 },
999
+ RUB: { code: "RUB", name: "Russian Ruble", symbol: "\u20BD", decimals: 2 },
1000
+ UAH: { code: "UAH", name: "Ukrainian Hryvnia", symbol: "\u20B4", decimals: 2 },
1001
+ TRY: { code: "TRY", name: "Turkish Lira", symbol: "\u20BA", decimals: 2 },
1002
+ // Americas
1003
+ CAD: { code: "CAD", name: "Canadian Dollar", symbol: "CA$", decimals: 2 },
1004
+ MXN: { code: "MXN", name: "Mexican Peso", symbol: "MX$", decimals: 2 },
1005
+ BRL: { code: "BRL", name: "Brazilian Real", symbol: "R$", decimals: 2 },
1006
+ ARS: { code: "ARS", name: "Argentine Peso", symbol: "AR$", decimals: 2 },
1007
+ CLP: { code: "CLP", name: "Chilean Peso", symbol: "CL$", decimals: 0 },
1008
+ COP: { code: "COP", name: "Colombian Peso", symbol: "COL$", decimals: 0 },
1009
+ PEN: { code: "PEN", name: "Peruvian Sol", symbol: "S/", decimals: 2 },
1010
+ UYU: { code: "UYU", name: "Uruguayan Peso", symbol: "UY$", decimals: 2 },
1011
+ // Asia-Pacific
1012
+ AUD: { code: "AUD", name: "Australian Dollar", symbol: "A$", decimals: 2 },
1013
+ NZD: { code: "NZD", name: "New Zealand Dollar", symbol: "NZ$", decimals: 2 },
1014
+ HKD: { code: "HKD", name: "Hong Kong Dollar", symbol: "HK$", decimals: 2 },
1015
+ SGD: { code: "SGD", name: "Singapore Dollar", symbol: "S$", decimals: 2 },
1016
+ KRW: { code: "KRW", name: "South Korean Won", symbol: "\u20A9", decimals: 0 },
1017
+ INR: { code: "INR", name: "Indian Rupee", symbol: "\u20B9", decimals: 2 },
1018
+ IDR: { code: "IDR", name: "Indonesian Rupiah", symbol: "Rp", decimals: 0 },
1019
+ MYR: { code: "MYR", name: "Malaysian Ringgit", symbol: "RM", decimals: 2 },
1020
+ PHP: { code: "PHP", name: "Philippine Peso", symbol: "\u20B1", decimals: 2 },
1021
+ THB: { code: "THB", name: "Thai Baht", symbol: "\u0E3F", decimals: 2 },
1022
+ VND: { code: "VND", name: "Vietnamese Dong", symbol: "\u20AB", decimals: 0 },
1023
+ TWD: { code: "TWD", name: "Taiwan Dollar", symbol: "NT$", decimals: 0 },
1024
+ PKR: { code: "PKR", name: "Pakistani Rupee", symbol: "\u20A8", decimals: 2 },
1025
+ BDT: { code: "BDT", name: "Bangladeshi Taka", symbol: "\u09F3", decimals: 2 },
1026
+ // Middle East
1027
+ AED: { code: "AED", name: "UAE Dirham", symbol: "\u062F.\u0625", decimals: 2 },
1028
+ SAR: { code: "SAR", name: "Saudi Riyal", symbol: "\uFDFC", decimals: 2 },
1029
+ ILS: { code: "ILS", name: "Israeli Shekel", symbol: "\u20AA", decimals: 2 },
1030
+ QAR: { code: "QAR", name: "Qatari Riyal", symbol: "\uFDFC", decimals: 2 },
1031
+ KWD: { code: "KWD", name: "Kuwaiti Dinar", symbol: "\u062F.\u0643", decimals: 3 },
1032
+ BHD: { code: "BHD", name: "Bahraini Dinar", symbol: "\u062F.\u0628", decimals: 3 },
1033
+ OMR: { code: "OMR", name: "Omani Rial", symbol: "\uFDFC", decimals: 3 },
1034
+ JOD: { code: "JOD", name: "Jordanian Dinar", symbol: "\u062F.\u0627", decimals: 3 },
1035
+ LBP: { code: "LBP", name: "Lebanese Pound", symbol: "\u0644.\u0644", decimals: 0 },
1036
+ // Africa
1037
+ ZAR: { code: "ZAR", name: "South African Rand", symbol: "R", decimals: 2 },
1038
+ EGP: { code: "EGP", name: "Egyptian Pound", symbol: "\xA3", decimals: 2 },
1039
+ NGN: { code: "NGN", name: "Nigerian Naira", symbol: "\u20A6", decimals: 2 },
1040
+ KES: { code: "KES", name: "Kenyan Shilling", symbol: "KSh", decimals: 2 },
1041
+ MAD: { code: "MAD", name: "Moroccan Dirham", symbol: "\u062F.\u0645.", decimals: 2 },
1042
+ TND: { code: "TND", name: "Tunisian Dinar", symbol: "\u062F.\u062A", decimals: 3 },
1043
+ DZD: { code: "DZD", name: "Algerian Dinar", symbol: "\u062F.\u062C", decimals: 2 },
1044
+ // Other Important
1045
+ NIS: { code: "NIS", name: "Israeli New Shekel", symbol: "\u20AA", decimals: 2 }
1046
+ };
1047
+ var getCurrency = (code) => {
1048
+ return CURRENCIES[code.toUpperCase()];
1049
+ };
1050
+ var getAllCurrencies = () => {
1051
+ return Object.values(CURRENCIES);
1052
+ };
1053
+ var getCurrencySymbol = (code) => {
1054
+ return CURRENCIES[code.toUpperCase()]?.symbol || code;
1055
+ };
1056
+ var isValidCurrencyCode = (code) => {
1057
+ return code.toUpperCase() in CURRENCIES;
1058
+ };
1059
+
1060
+ // src/fileSizes.ts
1061
+ var BYTES = {
1062
+ /** 1 byte */
1063
+ B_1: 1,
1064
+ /** 10 bytes */
1065
+ B_10: 10,
1066
+ /** 100 bytes */
1067
+ B_100: 100,
1068
+ /** 512 bytes */
1069
+ B_512: 512
1070
+ };
1071
+ var KILOBYTES = {
1072
+ /** 1 KB (1,024 bytes) */
1073
+ KB_1: 1024,
1074
+ /** 2 KB (2,048 bytes) */
1075
+ KB_2: 2 * 1024,
1076
+ /** 5 KB (5,120 bytes) */
1077
+ KB_5: 5 * 1024,
1078
+ /** 10 KB (10,240 bytes) */
1079
+ KB_10: 10 * 1024,
1080
+ /** 50 KB (51,200 bytes) */
1081
+ KB_50: 50 * 1024,
1082
+ /** 100 KB (102,400 bytes) */
1083
+ KB_100: 100 * 1024,
1084
+ /** 500 KB (512,000 bytes) */
1085
+ KB_500: 500 * 1024
1086
+ };
1087
+ var MEGABYTES = {
1088
+ /** 1 MB (1,048,576 bytes) */
1089
+ MB_1: 1024 * 1024,
1090
+ /** 2 MB (2,097,152 bytes) */
1091
+ MB_2: 2 * 1024 * 1024,
1092
+ /** 5 MB (5,242,880 bytes) */
1093
+ MB_5: 5 * 1024 * 1024,
1094
+ /** 10 MB (10,485,760 bytes) */
1095
+ MB_10: 10 * 1024 * 1024,
1096
+ /** 20 MB (20,971,520 bytes) */
1097
+ MB_20: 20 * 1024 * 1024,
1098
+ /** 25 MB (26,214,400 bytes) */
1099
+ MB_25: 25 * 1024 * 1024,
1100
+ /** 50 MB (52,428,800 bytes) */
1101
+ MB_50: 50 * 1024 * 1024,
1102
+ /** 100 MB (104,857,600 bytes) */
1103
+ MB_100: 100 * 1024 * 1024,
1104
+ /** 200 MB (209,715,200 bytes) */
1105
+ MB_200: 200 * 1024 * 1024,
1106
+ /** 500 MB (524,288,000 bytes) */
1107
+ MB_500: 500 * 1024 * 1024
1108
+ };
1109
+ var GIGABYTES = {
1110
+ /** 1 GB (1,073,741,824 bytes) */
1111
+ GB_1: 1024 * 1024 * 1024,
1112
+ /** 2 GB (2,147,483,648 bytes) */
1113
+ GB_2: 2 * 1024 * 1024 * 1024,
1114
+ /** 5 GB (5,368,709,120 bytes) */
1115
+ GB_5: 5 * 1024 * 1024 * 1024,
1116
+ /** 10 GB (10,737,418,240 bytes) */
1117
+ GB_10: 10 * 1024 * 1024 * 1024
1118
+ };
1119
+ var FILE_SIZE = {
1120
+ ...BYTES,
1121
+ ...KILOBYTES,
1122
+ ...MEGABYTES,
1123
+ ...GIGABYTES
1124
+ };
1125
+ var RECOMMENDED_MAX_SIZES = {
1126
+ /** Avatar/Profile pictures: 2 MB */
1127
+ AVATAR: FILE_SIZE.MB_2,
1128
+ /** General images: 5 MB */
1129
+ IMAGE: FILE_SIZE.MB_5,
1130
+ /** Documents (PDF, Word, etc.): 10 MB */
1131
+ DOCUMENT: FILE_SIZE.MB_10,
1132
+ /** Presentations: 25 MB */
1133
+ PRESENTATION: FILE_SIZE.MB_25,
1134
+ /** Audio files: 50 MB */
1135
+ AUDIO: FILE_SIZE.MB_50,
1136
+ /** Video files: 500 MB */
1137
+ VIDEO: FILE_SIZE.MB_500,
1138
+ /** Large archives: 1 GB */
1139
+ ARCHIVE: FILE_SIZE.GB_1
1140
+ };
1141
+ var formatBytes = (bytes, decimals = 2) => {
1142
+ if (bytes === 0) return "0 B";
1143
+ const k = 1024;
1144
+ const dm = decimals < 0 ? 0 : decimals;
1145
+ const sizes = ["B", "KB", "MB", "GB", "TB"];
1146
+ const i = Math.floor(Math.log(bytes) / Math.log(k));
1147
+ return `${Number.parseFloat((bytes / k ** i).toFixed(dm))} ${sizes[i]}`;
1148
+ };
1149
+ var mbToBytes = (mb) => {
1150
+ return mb * 1024 * 1024;
1151
+ };
1152
+ var gbToBytes = (gb) => {
1153
+ return gb * 1024 * 1024 * 1024;
1154
+ };
1155
+ var bytesToMb = (bytes) => {
1156
+ return bytes / (1024 * 1024);
1157
+ };
1158
+ var bytesToGb = (bytes) => {
1159
+ return bytes / (1024 * 1024 * 1024);
1160
+ };
1161
+ var isWithinSizeLimit = (bytes, maxBytes) => {
1162
+ return bytes <= maxBytes;
1163
+ };
1164
+
1165
+ // src/icons.ts
1166
+ var ICONS = [
1167
+ "a-arrow-down",
1168
+ "a-arrow-up",
1169
+ "academic-hat",
1170
+ "accessibility",
1171
+ "activity-square",
1172
+ "activity",
1173
+ "add-queue",
1174
+ "aeroplane",
1175
+ "air-conditioner",
1176
+ "airplay",
1177
+ "airpods",
1178
+ "alarm-check",
1179
+ "alarm-minus",
1180
+ "alarm-plus",
1181
+ "alarm-smoke",
1182
+ "alarm-snooze",
1183
+ "alarm-x",
1184
+ "alarm",
1185
+ "album",
1186
+ "align-bottom",
1187
+ "align-horizontal",
1188
+ "align-left",
1189
+ "align-right",
1190
+ "align-top",
1191
+ "align-vertical",
1192
+ "alt",
1193
+ "ambulance",
1194
+ "ampersand-square",
1195
+ "ampersand",
1196
+ "ampersands",
1197
+ "anchor",
1198
+ "angry-circle",
1199
+ "angry-ghost",
1200
+ "angry-square",
1201
+ "annoyed-circle",
1202
+ "annoyed-ghost",
1203
+ "annoyed-square",
1204
+ "aperture",
1205
+ "api",
1206
+ "ar",
1207
+ "archive",
1208
+ "arrow-diagonal-one",
1209
+ "arrow-diagonal-two",
1210
+ "arrow-down-circle",
1211
+ "arrow-down-left-circle",
1212
+ "arrow-down-left-square",
1213
+ "arrow-down-left-waves",
1214
+ "arrow-down-left",
1215
+ "arrow-down-right-circle",
1216
+ "arrow-down-right-square",
1217
+ "arrow-down-right-waves",
1218
+ "arrow-down-right",
1219
+ "arrow-down-square",
1220
+ "arrow-down-waves",
1221
+ "arrow-down",
1222
+ "arrow-left-circle",
1223
+ "arrow-left-right",
1224
+ "arrow-left-square",
1225
+ "arrow-left-waves",
1226
+ "arrow-left",
1227
+ "arrow-long-down-left",
1228
+ "arrow-long-down-right",
1229
+ "arrow-long-down",
1230
+ "arrow-long-left",
1231
+ "arrow-long-right",
1232
+ "arrow-long-up-left",
1233
+ "arrow-long-up-right",
1234
+ "arrow-long-up",
1235
+ "arrow-right-circle",
1236
+ "arrow-right-square",
1237
+ "arrow-right-waves",
1238
+ "arrow-right",
1239
+ "arrow-up-circle",
1240
+ "arrow-up-down",
1241
+ "arrow-up-left-circle",
1242
+ "arrow-up-left-square",
1243
+ "arrow-up-left-waves",
1244
+ "arrow-up-left",
1245
+ "arrow-up-right-circle",
1246
+ "arrow-up-right-square",
1247
+ "arrow-up-right-waves",
1248
+ "arrow-up-right",
1249
+ "arrow-up-square",
1250
+ "arrow-up-waves",
1251
+ "arrow-up",
1252
+ "asterisk-circle",
1253
+ "asterisk-diamond",
1254
+ "asterisk-hexagon",
1255
+ "asterisk-octagon",
1256
+ "asterisk-square",
1257
+ "asterisk-waves",
1258
+ "at",
1259
+ "atom",
1260
+ "baby",
1261
+ "backpack",
1262
+ "badge",
1263
+ "baggage-claim",
1264
+ "ban",
1265
+ "bank",
1266
+ "baseball",
1267
+ "bath",
1268
+ "battery-charging-four",
1269
+ "battery-charging-one",
1270
+ "battery-charging-three",
1271
+ "battery-charging-two",
1272
+ "battery-charging",
1273
+ "battery-check",
1274
+ "battery-empty",
1275
+ "battery-full",
1276
+ "battery-minus",
1277
+ "battery-plus",
1278
+ "battery-x",
1279
+ "bell-check",
1280
+ "bell-home",
1281
+ "bell-minus",
1282
+ "bell-on",
1283
+ "bell-plus",
1284
+ "bell-slash",
1285
+ "bell-snooze",
1286
+ "bell-user",
1287
+ "bell-x",
1288
+ "bell",
1289
+ "binoculars",
1290
+ "bitcoin-circle",
1291
+ "bitcoin-diamond",
1292
+ "bitcoin-hexagon",
1293
+ "bitcoin-octagon",
1294
+ "bitcoin-square",
1295
+ "bitcoin-waves",
1296
+ "bitcoin",
1297
+ "bluetooth",
1298
+ "boat",
1299
+ "book-check",
1300
+ "book-dot",
1301
+ "book-home",
1302
+ "book-image",
1303
+ "book-minus",
1304
+ "book-open",
1305
+ "book-plus",
1306
+ "book-slash",
1307
+ "book-snooze",
1308
+ "book-user",
1309
+ "book-x",
1310
+ "book",
1311
+ "bookmark-check",
1312
+ "bookmark-dot",
1313
+ "bookmark-home",
1314
+ "bookmark-minus",
1315
+ "bookmark-plus",
1316
+ "bookmark-slash",
1317
+ "bookmark-snooze",
1318
+ "bookmark-user",
1319
+ "bookmark-x",
1320
+ "bookmark",
1321
+ "bounding-box",
1322
+ "bowl",
1323
+ "box",
1324
+ "brand-chrome",
1325
+ "brand-codepen",
1326
+ "brand-codesandbox",
1327
+ "brand-dribbble",
1328
+ "brand-facebook",
1329
+ "brand-figma",
1330
+ "brand-framer",
1331
+ "brand-github",
1332
+ "brand-gitlab",
1333
+ "brand-google",
1334
+ "brand-instagram",
1335
+ "brand-linkedin",
1336
+ "brand-pinterest",
1337
+ "brand-pocket",
1338
+ "brand-slack",
1339
+ "brand-spotify",
1340
+ "brand-telegram",
1341
+ "brand-threads",
1342
+ "brand-trello",
1343
+ "brand-twitch",
1344
+ "brand-twitter",
1345
+ "brand-x",
1346
+ "brand-youtube",
1347
+ "briefcase-conveyor-belt",
1348
+ "briefcase",
1349
+ "brightness-high",
1350
+ "brightness-low",
1351
+ "bubbles",
1352
+ "building-one",
1353
+ "building",
1354
+ "cable-car",
1355
+ "cake",
1356
+ "calendar-check",
1357
+ "calendar-down",
1358
+ "calendar-minus",
1359
+ "calendar-plus",
1360
+ "calendar-slash",
1361
+ "calendar-up",
1362
+ "calendar-x",
1363
+ "calendar",
1364
+ "camera-slash",
1365
+ "camera",
1366
+ "campfire",
1367
+ "cannabis",
1368
+ "caravan",
1369
+ "cart-check",
1370
+ "cart-minus",
1371
+ "cart-plus",
1372
+ "cart-x",
1373
+ "cart",
1374
+ "cast-screen",
1375
+ "center-focus",
1376
+ "chart-area",
1377
+ "chart-bar-big",
1378
+ "chart-bar-decreasing",
1379
+ "chart-bar-increasing",
1380
+ "chart-bar-one",
1381
+ "chart-bar-stacked",
1382
+ "chart-bar",
1383
+ "chart-bubble",
1384
+ "chart-candlestick",
1385
+ "chart-column-big",
1386
+ "chart-column-decreasing",
1387
+ "chart-column-increasing",
1388
+ "chart-column-stacked",
1389
+ "chart-column",
1390
+ "chart-gantt",
1391
+ "chart-graph",
1392
+ "chart-line",
1393
+ "chart-network",
1394
+ "chart-no-axes-column-decreasing",
1395
+ "chart-no-axes-column-increasing",
1396
+ "chart-no-axes-column",
1397
+ "chart-no-axes-combined",
1398
+ "chart-no-axes-gantt",
1399
+ "chart-pie-one",
1400
+ "chart-pie-two",
1401
+ "chart-pie",
1402
+ "chart-scatter",
1403
+ "chart-spline",
1404
+ "chat-check",
1405
+ "chat-dots",
1406
+ "chat-messages",
1407
+ "chat-minus",
1408
+ "chat-plus",
1409
+ "chat-x",
1410
+ "chat",
1411
+ "check-circle-one",
1412
+ "check-circle",
1413
+ "check-diamond",
1414
+ "check-hexagon",
1415
+ "check-octagon",
1416
+ "check-square-one",
1417
+ "check-square",
1418
+ "check-waves",
1419
+ "check",
1420
+ "chevron-double-down-left",
1421
+ "chevron-double-down-right",
1422
+ "chevron-double-down",
1423
+ "chevron-double-left",
1424
+ "chevron-double-right",
1425
+ "chevron-double-up-left",
1426
+ "chevron-double-up-right",
1427
+ "chevron-double-up",
1428
+ "chevron-down-circle",
1429
+ "chevron-down-left-circle",
1430
+ "chevron-down-left-square",
1431
+ "chevron-down-left-waves",
1432
+ "chevron-down-left",
1433
+ "chevron-down-right-circle",
1434
+ "chevron-down-right-square",
1435
+ "chevron-down-right-waves",
1436
+ "chevron-down-right",
1437
+ "chevron-down-square",
1438
+ "chevron-down-waves",
1439
+ "chevron-down",
1440
+ "chevron-left-circle",
1441
+ "chevron-left-square",
1442
+ "chevron-left-waves",
1443
+ "chevron-left",
1444
+ "chevron-right-circle",
1445
+ "chevron-right-square",
1446
+ "chevron-right-waves",
1447
+ "chevron-right",
1448
+ "chevron-up-circle",
1449
+ "chevron-up-down",
1450
+ "chevron-up-left-circle",
1451
+ "chevron-up-left-square",
1452
+ "chevron-up-left-waves",
1453
+ "chevron-up-left",
1454
+ "chevron-up-right-circle",
1455
+ "chevron-up-right-square",
1456
+ "chevron-up-right-waves",
1457
+ "chevron-up-right",
1458
+ "chevron-up-square",
1459
+ "chevron-up-waves",
1460
+ "chevron-up",
1461
+ "chip",
1462
+ "cigarette-off",
1463
+ "cigarette",
1464
+ "circle-dashed",
1465
+ "circle-half-circle",
1466
+ "circle-half",
1467
+ "circle-notch",
1468
+ "circle",
1469
+ "click",
1470
+ "clipboard",
1471
+ "clock-circle",
1472
+ "clock-diamond",
1473
+ "clock-eight",
1474
+ "clock-eleven",
1475
+ "clock-five",
1476
+ "clock-four",
1477
+ "clock-hand",
1478
+ "clock-hexagon",
1479
+ "clock-nine",
1480
+ "clock-octagon",
1481
+ "clock-one",
1482
+ "clock-seven",
1483
+ "clock-six",
1484
+ "clock-square",
1485
+ "clock-ten",
1486
+ "clock-three",
1487
+ "clock-twelve",
1488
+ "clock-two",
1489
+ "clock-waves",
1490
+ "cloud-download",
1491
+ "cloud-drizzle",
1492
+ "cloud-fog",
1493
+ "cloud-hail",
1494
+ "cloud-lightning",
1495
+ "cloud-moon-rain",
1496
+ "cloud-moon",
1497
+ "cloud-off",
1498
+ "cloud-rain-wind",
1499
+ "cloud-rain",
1500
+ "cloud-snow",
1501
+ "cloud-sun-rain",
1502
+ "cloud-sun",
1503
+ "cloud-upload",
1504
+ "cloud",
1505
+ "cloudy",
1506
+ "cocktail",
1507
+ "code-circle",
1508
+ "code-diamond",
1509
+ "code-hexagon",
1510
+ "code-octagon",
1511
+ "code-square",
1512
+ "code-waves",
1513
+ "code",
1514
+ "coffee",
1515
+ "cog-four",
1516
+ "cog-one",
1517
+ "cog-three",
1518
+ "cog-two",
1519
+ "cog",
1520
+ "columns",
1521
+ "command",
1522
+ "compass",
1523
+ "components",
1524
+ "confetti",
1525
+ "config-vertical",
1526
+ "config",
1527
+ "contactless-circle",
1528
+ "contactless",
1529
+ "controller",
1530
+ "cookie",
1531
+ "copy",
1532
+ "copyleft",
1533
+ "copyright-slash",
1534
+ "copyright",
1535
+ "corner-down-left",
1536
+ "corner-down-right",
1537
+ "corner-left-down",
1538
+ "corner-left-up",
1539
+ "corner-right-down",
1540
+ "corner-right-up",
1541
+ "corner-up-left",
1542
+ "corner-up-right",
1543
+ "credit-card-check",
1544
+ "credit-card-minus",
1545
+ "credit-card-plus",
1546
+ "credit-card-x",
1547
+ "credit-card",
1548
+ "croissant",
1549
+ "crop",
1550
+ "crosshair",
1551
+ "cupcake",
1552
+ "danger-circle",
1553
+ "danger-diamond",
1554
+ "danger-hexagon",
1555
+ "danger-octagon",
1556
+ "danger-square",
1557
+ "danger-triangle",
1558
+ "danger-waves",
1559
+ "danger",
1560
+ "database",
1561
+ "daze-circle",
1562
+ "daze-ghost",
1563
+ "daze-square",
1564
+ "delete",
1565
+ "desktop",
1566
+ "diamond",
1567
+ "dice-five",
1568
+ "dice-four",
1569
+ "dice-one",
1570
+ "dice-six",
1571
+ "dice-three",
1572
+ "dice-two",
1573
+ "dislike",
1574
+ "divide",
1575
+ "dollar-circle",
1576
+ "dollar-diamond",
1577
+ "dollar-hexagon",
1578
+ "dollar-octagon",
1579
+ "dollar-square",
1580
+ "dollar-waves",
1581
+ "dollar",
1582
+ "door-closed-locked",
1583
+ "door-closed",
1584
+ "door-open",
1585
+ "dots-circle",
1586
+ "dots-diamond",
1587
+ "dots-hexagon",
1588
+ "dots-octagon",
1589
+ "dots-square",
1590
+ "dots-vertical-circle",
1591
+ "dots-vertical-diamond",
1592
+ "dots-vertical-hexagon",
1593
+ "dots-vertical-octagon",
1594
+ "dots-vertical-square",
1595
+ "dots-vertical-waves",
1596
+ "dots-vertical",
1597
+ "dots-waves",
1598
+ "dots",
1599
+ "download",
1600
+ "drop",
1601
+ "droplet-off",
1602
+ "droplet",
1603
+ "droplets",
1604
+ "ear-slash",
1605
+ "ear",
1606
+ "earth",
1607
+ "eclipse",
1608
+ "edit-one",
1609
+ "edit",
1610
+ "egg",
1611
+ "eight-circle",
1612
+ "eight-diamond",
1613
+ "eight-hexagon",
1614
+ "eight-octagon",
1615
+ "eight-square",
1616
+ "eight-waves",
1617
+ "eight",
1618
+ "elevator",
1619
+ "envelope-open",
1620
+ "envelope",
1621
+ "euro-circle",
1622
+ "euro-diamond",
1623
+ "euro-hexagon",
1624
+ "euro-octagon",
1625
+ "euro-square",
1626
+ "euro-waves",
1627
+ "euro",
1628
+ "exclude",
1629
+ "external-link",
1630
+ "eye-slash",
1631
+ "eye",
1632
+ "face-id",
1633
+ "fat-arrow-down-left",
1634
+ "fat-arrow-down-right",
1635
+ "fat-arrow-down",
1636
+ "fat-arrow-left",
1637
+ "fat-arrow-right",
1638
+ "fat-arrow-up-left",
1639
+ "fat-arrow-up-right",
1640
+ "fat-arrow-up",
1641
+ "fat-corner-down-left",
1642
+ "fat-corner-down-right",
1643
+ "fat-corner-left-down",
1644
+ "fat-corner-left-up",
1645
+ "fat-corner-right-down",
1646
+ "fat-corner-right-up",
1647
+ "fat-corner-up-left",
1648
+ "fat-corner-up-right",
1649
+ "female",
1650
+ "file-check",
1651
+ "file-minus",
1652
+ "file-plus",
1653
+ "file-text",
1654
+ "file-x",
1655
+ "file",
1656
+ "film",
1657
+ "filter-one",
1658
+ "filter",
1659
+ "fine-tune",
1660
+ "fire",
1661
+ "five-circle",
1662
+ "five-diamond",
1663
+ "five-hexagon",
1664
+ "five-octagon",
1665
+ "five-square",
1666
+ "five-waves",
1667
+ "five",
1668
+ "flag-one",
1669
+ "flag",
1670
+ "flame-kindling",
1671
+ "flame",
1672
+ "flask",
1673
+ "flower-2",
1674
+ "flower",
1675
+ "folder-check",
1676
+ "folder-heart",
1677
+ "folder-kanban",
1678
+ "folder-minus",
1679
+ "folder-one",
1680
+ "folder-plus",
1681
+ "folder-slash",
1682
+ "folder-two",
1683
+ "folder-x",
1684
+ "folder",
1685
+ "forward-circle",
1686
+ "forward-diamond",
1687
+ "forward-hexagon",
1688
+ "forward-octagon",
1689
+ "forward-square",
1690
+ "forward-waves",
1691
+ "forward",
1692
+ "four-circle",
1693
+ "four-diamond",
1694
+ "four-hexagon",
1695
+ "four-octagon",
1696
+ "four-square",
1697
+ "four-waves",
1698
+ "four",
1699
+ "frame",
1700
+ "funny-circle",
1701
+ "funny-ghost",
1702
+ "funny-square",
1703
+ "gift",
1704
+ "git-branch",
1705
+ "git-circle",
1706
+ "git-commit",
1707
+ "git-diamond",
1708
+ "git-diff",
1709
+ "git-hexagon",
1710
+ "git-merge",
1711
+ "git-octagon",
1712
+ "git-pull-request",
1713
+ "git-square",
1714
+ "git-waves",
1715
+ "glasses",
1716
+ "globe",
1717
+ "grid-one",
1718
+ "grid",
1719
+ "hand",
1720
+ "hard-drive",
1721
+ "hash-circle",
1722
+ "hash-diamond",
1723
+ "hash-hexagon",
1724
+ "hash-octagon",
1725
+ "hash-square",
1726
+ "hash-waves",
1727
+ "hash",
1728
+ "haze",
1729
+ "heading-five",
1730
+ "heading-four",
1731
+ "heading-one",
1732
+ "heading-six",
1733
+ "heading-three",
1734
+ "heading-two",
1735
+ "heading",
1736
+ "headphones",
1737
+ "heart-broken",
1738
+ "heart-check",
1739
+ "heart-circle",
1740
+ "heart-diamond",
1741
+ "heart-dot",
1742
+ "heart-hexagon",
1743
+ "heart-home",
1744
+ "heart-minus",
1745
+ "heart-octagon",
1746
+ "heart-plus",
1747
+ "heart-slash",
1748
+ "heart-snooze",
1749
+ "heart-square",
1750
+ "heart-user",
1751
+ "heart-waves",
1752
+ "heart-x",
1753
+ "heart",
1754
+ "hexagon",
1755
+ "home-check",
1756
+ "home-minus",
1757
+ "home-plus",
1758
+ "home-smile",
1759
+ "home-x",
1760
+ "home",
1761
+ "image-circle",
1762
+ "image-rectangle",
1763
+ "image",
1764
+ "inbox-archive",
1765
+ "inbox-check",
1766
+ "inbox-down",
1767
+ "inbox-minus",
1768
+ "inbox-plus",
1769
+ "inbox-up",
1770
+ "inbox-x",
1771
+ "inbox",
1772
+ "incognito",
1773
+ "indifferent-circle",
1774
+ "indifferent-ghost",
1775
+ "indifferent-square",
1776
+ "infinity",
1777
+ "info-circle",
1778
+ "info-diamond",
1779
+ "info-hexagon",
1780
+ "info-octagon",
1781
+ "info-square",
1782
+ "info-triangle",
1783
+ "info-waves",
1784
+ "info",
1785
+ "intersect",
1786
+ "kanban",
1787
+ "key",
1788
+ "keyboard-brightness-high",
1789
+ "keyboard-brightness-low",
1790
+ "keyboard",
1791
+ "label",
1792
+ "lamp",
1793
+ "layers-one",
1794
+ "layers-three",
1795
+ "layers-two",
1796
+ "layout",
1797
+ "leaf",
1798
+ "leaves",
1799
+ "letter-a-circle",
1800
+ "letter-a-diamond",
1801
+ "letter-a-hexagon",
1802
+ "letter-a-octagon",
1803
+ "letter-a-square",
1804
+ "letter-a-waves",
1805
+ "letter-a",
1806
+ "letter-b-circle",
1807
+ "letter-b-diamond",
1808
+ "letter-b-hexagon",
1809
+ "letter-b-octagon",
1810
+ "letter-b-square",
1811
+ "letter-b-waves",
1812
+ "letter-b",
1813
+ "letter-c-circle",
1814
+ "letter-c-diamond",
1815
+ "letter-c-hexagon",
1816
+ "letter-c-octagon",
1817
+ "letter-c-square",
1818
+ "letter-c-waves",
1819
+ "letter-c",
1820
+ "letter-d-circle",
1821
+ "letter-d-diamond",
1822
+ "letter-d-hexagon",
1823
+ "letter-d-octagon",
1824
+ "letter-d-square",
1825
+ "letter-d-waves",
1826
+ "letter-d",
1827
+ "letter-e-circle",
1828
+ "letter-e-diamond",
1829
+ "letter-e-hexagon",
1830
+ "letter-e-octagon",
1831
+ "letter-e-square",
1832
+ "letter-e-waves",
1833
+ "letter-e",
1834
+ "letter-f-circle",
1835
+ "letter-f-diamond",
1836
+ "letter-f-hexagon",
1837
+ "letter-f-octagon",
1838
+ "letter-f-square",
1839
+ "letter-f-waves",
1840
+ "letter-f",
1841
+ "letter-g-circle",
1842
+ "letter-g-diamond",
1843
+ "letter-g-hexagon",
1844
+ "letter-g-octagon",
1845
+ "letter-g-square",
1846
+ "letter-g-waves",
1847
+ "letter-g",
1848
+ "letter-h-circle",
1849
+ "letter-h-diamond",
1850
+ "letter-h-hexagon",
1851
+ "letter-h-octagon",
1852
+ "letter-h-square",
1853
+ "letter-h-waves",
1854
+ "letter-h",
1855
+ "letter-i-circle",
1856
+ "letter-i-diamond",
1857
+ "letter-i-hexagon",
1858
+ "letter-i-octagon",
1859
+ "letter-i-square",
1860
+ "letter-i-waves",
1861
+ "letter-i",
1862
+ "letter-j-circle",
1863
+ "letter-j-diamond",
1864
+ "letter-j-hexagon",
1865
+ "letter-j-octagon",
1866
+ "letter-j-square",
1867
+ "letter-j-waves",
1868
+ "letter-j",
1869
+ "letter-k-circle",
1870
+ "letter-k-diamond",
1871
+ "letter-k-hexagon",
1872
+ "letter-k-octagon",
1873
+ "letter-k-square",
1874
+ "letter-k-waves",
1875
+ "letter-k",
1876
+ "letter-l-circle",
1877
+ "letter-l-diamond",
1878
+ "letter-l-hexagon",
1879
+ "letter-l-octagon",
1880
+ "letter-l-square",
1881
+ "letter-l-waves",
1882
+ "letter-l",
1883
+ "letter-m-circle",
1884
+ "letter-m-diamond",
1885
+ "letter-m-hexagon",
1886
+ "letter-m-octagon",
1887
+ "letter-m-square",
1888
+ "letter-m-waves",
1889
+ "letter-m",
1890
+ "letter-n-circle",
1891
+ "letter-n-diamond",
1892
+ "letter-n-hexagon",
1893
+ "letter-n-octagon",
1894
+ "letter-n-square",
1895
+ "letter-n-waves",
1896
+ "letter-n",
1897
+ "letter-o-circle",
1898
+ "letter-o-diamond",
1899
+ "letter-o-hexagon",
1900
+ "letter-o-octagon",
1901
+ "letter-o-square",
1902
+ "letter-o-waves",
1903
+ "letter-o",
1904
+ "letter-p-circle",
1905
+ "letter-p-diamond",
1906
+ "letter-p-hexagon",
1907
+ "letter-p-octagon",
1908
+ "letter-p-square",
1909
+ "letter-p-waves",
1910
+ "letter-p",
1911
+ "letter-q-circle",
1912
+ "letter-q-diamond",
1913
+ "letter-q-hexagon",
1914
+ "letter-q-octagon",
1915
+ "letter-q-square",
1916
+ "letter-q-waves",
1917
+ "letter-q",
1918
+ "letter-r-circle",
1919
+ "letter-r-diamond",
1920
+ "letter-r-hexagon",
1921
+ "letter-r-octagon",
1922
+ "letter-r-square",
1923
+ "letter-r-waves",
1924
+ "letter-r",
1925
+ "letter-s-circle",
1926
+ "letter-s-diamond",
1927
+ "letter-s-hexagon",
1928
+ "letter-s-octagon",
1929
+ "letter-s-square",
1930
+ "letter-s-waves",
1931
+ "letter-s",
1932
+ "letter-t-circle",
1933
+ "letter-t-diamond",
1934
+ "letter-t-hexagon",
1935
+ "letter-t-octagon",
1936
+ "letter-t-square",
1937
+ "letter-t-waves",
1938
+ "letter-t",
1939
+ "letter-u-circle",
1940
+ "letter-u-diamond",
1941
+ "letter-u-hexagon",
1942
+ "letter-u-octagon",
1943
+ "letter-u-square",
1944
+ "letter-u-waves",
1945
+ "letter-u",
1946
+ "letter-v-circle",
1947
+ "letter-v-diamond",
1948
+ "letter-v-hexagon",
1949
+ "letter-v-octagon",
1950
+ "letter-v-square",
1951
+ "letter-v-waves",
1952
+ "letter-v",
1953
+ "letter-w-circle",
1954
+ "letter-w-diamond",
1955
+ "letter-w-hexagon",
1956
+ "letter-w-octagon",
1957
+ "letter-w-square",
1958
+ "letter-w-waves",
1959
+ "letter-w",
1960
+ "letter-x-circle",
1961
+ "letter-x-diamond",
1962
+ "letter-x-hexagon",
1963
+ "letter-x-octagon",
1964
+ "letter-x-square",
1965
+ "letter-x-waves",
1966
+ "letter-x",
1967
+ "letter-y-circle",
1968
+ "letter-y-diamond",
1969
+ "letter-y-hexagon",
1970
+ "letter-y-octagon",
1971
+ "letter-y-square",
1972
+ "letter-y-waves",
1973
+ "letter-y",
1974
+ "letter-z-circle",
1975
+ "letter-z-diamond",
1976
+ "letter-z-hexagon",
1977
+ "letter-z-octagon",
1978
+ "letter-z-square",
1979
+ "letter-z-waves",
1980
+ "letter-z",
1981
+ "lightning-off",
1982
+ "lightning",
1983
+ "like",
1984
+ "line-chart-circle",
1985
+ "line-chart-diamond",
1986
+ "line-chart-hexagon",
1987
+ "line-chart-octagon",
1988
+ "line-chart-square",
1989
+ "line-chart-waves",
1990
+ "link-one",
1991
+ "link-two",
1992
+ "link",
1993
+ "list-check",
1994
+ "list-number",
1995
+ "list",
1996
+ "location-check",
1997
+ "location-home",
1998
+ "location-minus",
1999
+ "location-plus",
2000
+ "location-selected",
2001
+ "location-slash",
2002
+ "location-snooze",
2003
+ "location-user",
2004
+ "location-x",
2005
+ "location",
2006
+ "lock-circle",
2007
+ "lock-diamond",
2008
+ "lock-hexagon",
2009
+ "lock-keyhole",
2010
+ "lock-octagon",
2011
+ "lock-open-keyhole",
2012
+ "lock-open-password",
2013
+ "lock-open",
2014
+ "lock-password",
2015
+ "lock-square",
2016
+ "lock-waves",
2017
+ "lock",
2018
+ "login",
2019
+ "logout",
2020
+ "magnet",
2021
+ "male",
2022
+ "map",
2023
+ "mask",
2024
+ "math-square",
2025
+ "math",
2026
+ "maximize-one",
2027
+ "maximize",
2028
+ "menu",
2029
+ "message-check",
2030
+ "message-dots",
2031
+ "message-minus",
2032
+ "message-plus",
2033
+ "message-reply",
2034
+ "message-x",
2035
+ "message",
2036
+ "microphone-slash",
2037
+ "microphone",
2038
+ "minimize-one",
2039
+ "minimize",
2040
+ "minus-circle",
2041
+ "minus-diamond",
2042
+ "minus-hexagon",
2043
+ "minus-octagon",
2044
+ "minus-square",
2045
+ "minus-waves",
2046
+ "minus",
2047
+ "mobile-signal-five",
2048
+ "mobile-signal-four",
2049
+ "mobile-signal-one",
2050
+ "mobile-signal-three",
2051
+ "mobile-signal-two",
2052
+ "mobile",
2053
+ "moon-star",
2054
+ "moon",
2055
+ "mountain-snow",
2056
+ "mountain",
2057
+ "mouse-pointer",
2058
+ "move-diagonal-one",
2059
+ "move-diagonal",
2060
+ "move-horizontal",
2061
+ "move-vertical",
2062
+ "move",
2063
+ "music-circle",
2064
+ "music-diamond",
2065
+ "music-hexagon",
2066
+ "music-octagon",
2067
+ "music-square",
2068
+ "music-waves",
2069
+ "music",
2070
+ "myna",
2071
+ "navigation-one",
2072
+ "navigation",
2073
+ "nine-circle",
2074
+ "nine-diamond",
2075
+ "nine-hexagon",
2076
+ "nine-octagon",
2077
+ "nine-square",
2078
+ "nine-waves",
2079
+ "nine",
2080
+ "notification",
2081
+ "octagon",
2082
+ "one-circle",
2083
+ "one-diamond",
2084
+ "one-hexagon",
2085
+ "one-octagon",
2086
+ "one-square",
2087
+ "one-waves",
2088
+ "one",
2089
+ "option",
2090
+ "package",
2091
+ "paint",
2092
+ "panel-bottom-close",
2093
+ "panel-bottom-inactive",
2094
+ "panel-bottom-open",
2095
+ "panel-bottom",
2096
+ "panel-left-close",
2097
+ "panel-left-inactive",
2098
+ "panel-left-open",
2099
+ "panel-left",
2100
+ "panel-right-close",
2101
+ "panel-right-inactive",
2102
+ "panel-right-open",
2103
+ "panel-right",
2104
+ "panel-top-close",
2105
+ "panel-top-inactive",
2106
+ "panel-top-open",
2107
+ "panel-top",
2108
+ "paperclip",
2109
+ "parking",
2110
+ "password",
2111
+ "path",
2112
+ "pause-circle",
2113
+ "pause-diamond",
2114
+ "pause-hexagon",
2115
+ "pause-octagon",
2116
+ "pause-square",
2117
+ "pause-waves",
2118
+ "pause",
2119
+ "pen",
2120
+ "pencil",
2121
+ "percentage-circle",
2122
+ "percentage-diamond",
2123
+ "percentage-hexagon",
2124
+ "percentage-octagon",
2125
+ "percentage-square",
2126
+ "percentage-waves",
2127
+ "percentage",
2128
+ "pin",
2129
+ "pizza",
2130
+ "planet",
2131
+ "play-circle",
2132
+ "play-diamond",
2133
+ "play-hexagon",
2134
+ "play-octagon",
2135
+ "play-square",
2136
+ "play-waves",
2137
+ "play",
2138
+ "plus-circle",
2139
+ "plus-diamond",
2140
+ "plus-hexagon",
2141
+ "plus-octagon",
2142
+ "plus-square",
2143
+ "plus-waves",
2144
+ "plus",
2145
+ "pokeball",
2146
+ "power",
2147
+ "presentation",
2148
+ "printer",
2149
+ "puzzle",
2150
+ "question-circle",
2151
+ "question-diamond",
2152
+ "question-hexagon",
2153
+ "question-octagon",
2154
+ "question-square",
2155
+ "question-waves",
2156
+ "question",
2157
+ "radio",
2158
+ "rainbow",
2159
+ "reception-bell",
2160
+ "record",
2161
+ "rectangle-vertical",
2162
+ "rectangle",
2163
+ "redo",
2164
+ "refresh-alt",
2165
+ "refresh",
2166
+ "repeat",
2167
+ "rewind-circle",
2168
+ "rewind-diamond",
2169
+ "rewind-hexagon",
2170
+ "rewind-octagon",
2171
+ "rewind-square",
2172
+ "rewind-waves",
2173
+ "rewind",
2174
+ "rhombus",
2175
+ "ribbon",
2176
+ "rocket",
2177
+ "room-service",
2178
+ "rows",
2179
+ "rss",
2180
+ "ruler",
2181
+ "rupee-circle",
2182
+ "rupee-diamond",
2183
+ "rupee-hexagon",
2184
+ "rupee-octagon",
2185
+ "rupee-square",
2186
+ "rupee-waves",
2187
+ "rupee",
2188
+ "sad-circle",
2189
+ "sad-ghost",
2190
+ "sad-square",
2191
+ "save",
2192
+ "scan",
2193
+ "scissors",
2194
+ "sea-waves",
2195
+ "search-check",
2196
+ "search-circle",
2197
+ "search-diamond",
2198
+ "search-dot",
2199
+ "search-hexagon",
2200
+ "search-home",
2201
+ "search-minus",
2202
+ "search-octagon",
2203
+ "search-plus",
2204
+ "search-slash",
2205
+ "search-snooze",
2206
+ "search-square",
2207
+ "search-user",
2208
+ "search-waves",
2209
+ "search-x",
2210
+ "search",
2211
+ "select-multiple",
2212
+ "send",
2213
+ "servers",
2214
+ "seven-circle",
2215
+ "seven-diamond",
2216
+ "seven-hexagon",
2217
+ "seven-octagon",
2218
+ "seven-square",
2219
+ "seven-waves",
2220
+ "seven",
2221
+ "share",
2222
+ "shell",
2223
+ "shield-check",
2224
+ "shield-crossed",
2225
+ "shield-minus",
2226
+ "shield-one",
2227
+ "shield-plus",
2228
+ "shield-slash",
2229
+ "shield-two",
2230
+ "shield-x",
2231
+ "shield",
2232
+ "shooting-star",
2233
+ "shopping-bag",
2234
+ "shovel",
2235
+ "shrub",
2236
+ "shuffle-alt",
2237
+ "shuffle",
2238
+ "sidebar-alt",
2239
+ "sidebar",
2240
+ "signal-circle",
2241
+ "signal-diamond",
2242
+ "signal-hexagon",
2243
+ "signal-octagon",
2244
+ "signal-square",
2245
+ "signal-waves",
2246
+ "signal",
2247
+ "six-circle",
2248
+ "six-diamond",
2249
+ "six-hexagon",
2250
+ "six-octagon",
2251
+ "six-square",
2252
+ "six-waves",
2253
+ "six",
2254
+ "skip-back",
2255
+ "skip-forward",
2256
+ "slash-circle",
2257
+ "slash-diamond",
2258
+ "slash-hexagon",
2259
+ "slash-octagon",
2260
+ "slash-square",
2261
+ "slash-waves",
2262
+ "smile-circle",
2263
+ "smile-ghost",
2264
+ "smile-square",
2265
+ "snow",
2266
+ "snowflake",
2267
+ "sofa",
2268
+ "sort",
2269
+ "sparkles",
2270
+ "speaker",
2271
+ "spinner-one",
2272
+ "spinner",
2273
+ "sprout",
2274
+ "square-chart-gantt",
2275
+ "square-dashed-kanban",
2276
+ "square-dashed",
2277
+ "square-half",
2278
+ "square-kanban",
2279
+ "square",
2280
+ "star",
2281
+ "stop-circle",
2282
+ "stop-diamond",
2283
+ "stop-hexagon",
2284
+ "stop-octagon",
2285
+ "stop-square",
2286
+ "stop-waves",
2287
+ "stop",
2288
+ "store",
2289
+ "subtract",
2290
+ "sun-dim",
2291
+ "sun-medium",
2292
+ "sun-snow",
2293
+ "sun",
2294
+ "sunrise",
2295
+ "sunset",
2296
+ "support",
2297
+ "swatches",
2298
+ "table",
2299
+ "tablet",
2300
+ "tag-plus",
2301
+ "tag",
2302
+ "tally-five",
2303
+ "tally-four",
2304
+ "tally-one",
2305
+ "tally-three",
2306
+ "tally-two",
2307
+ "target",
2308
+ "telephone-call",
2309
+ "telephone-forward",
2310
+ "telephone-in",
2311
+ "telephone-missed",
2312
+ "telephone-out",
2313
+ "telephone-slash",
2314
+ "telephone",
2315
+ "tent-tree",
2316
+ "tent",
2317
+ "terminal",
2318
+ "text-align-center",
2319
+ "text-align-left",
2320
+ "text-align-right",
2321
+ "text-justify",
2322
+ "thermometer-snowflake",
2323
+ "thermometer-sun",
2324
+ "thermometer",
2325
+ "three-circle",
2326
+ "three-diamond",
2327
+ "three-hexagon",
2328
+ "three-octagon",
2329
+ "three-square",
2330
+ "three-waves",
2331
+ "three",
2332
+ "ticket-slash",
2333
+ "ticket",
2334
+ "toggle-left",
2335
+ "toggle-right",
2336
+ "tool",
2337
+ "tornado",
2338
+ "train",
2339
+ "trash-one",
2340
+ "trash-two",
2341
+ "trash",
2342
+ "tree-deciduous",
2343
+ "tree-palm",
2344
+ "tree-pine",
2345
+ "tree",
2346
+ "trees",
2347
+ "trending-down",
2348
+ "trending-up-down",
2349
+ "trending-up",
2350
+ "triangle",
2351
+ "truck",
2352
+ "tv",
2353
+ "two-circle",
2354
+ "two-diamond",
2355
+ "two-hexagon",
2356
+ "two-octagon",
2357
+ "two-square",
2358
+ "two-waves",
2359
+ "two",
2360
+ "type-bold",
2361
+ "type-italic",
2362
+ "type-text",
2363
+ "type-underline",
2364
+ "umbrella-off",
2365
+ "umbrella",
2366
+ "undo",
2367
+ "union",
2368
+ "unlink",
2369
+ "upload",
2370
+ "user-check",
2371
+ "user-circle",
2372
+ "user-diamond",
2373
+ "user-hexagon",
2374
+ "user-minus",
2375
+ "user-octagon",
2376
+ "user-plus",
2377
+ "user-settings",
2378
+ "user-square",
2379
+ "user-waves",
2380
+ "user-x",
2381
+ "user",
2382
+ "users-group",
2383
+ "users",
2384
+ "video-slash",
2385
+ "video",
2386
+ "volume-check",
2387
+ "volume-high",
2388
+ "volume-low",
2389
+ "volume-minus",
2390
+ "volume-none",
2391
+ "volume-plus",
2392
+ "volume-slash",
2393
+ "volume-x",
2394
+ "watch",
2395
+ "waves",
2396
+ "webcam",
2397
+ "wheel",
2398
+ "wheelchair",
2399
+ "wifi-check",
2400
+ "wifi-low",
2401
+ "wifi-medium",
2402
+ "wifi-minus",
2403
+ "wifi-plus",
2404
+ "wifi-slash",
2405
+ "wifi-x",
2406
+ "wifi",
2407
+ "wind-arrow-down",
2408
+ "wind",
2409
+ "winds",
2410
+ "wine",
2411
+ "wink-circle",
2412
+ "wink-ghost",
2413
+ "wink-square",
2414
+ "wrench",
2415
+ "x-circle",
2416
+ "x-diamond",
2417
+ "x-hexagon",
2418
+ "x-octagon",
2419
+ "x-square",
2420
+ "x-triangle",
2421
+ "x-waves",
2422
+ "x",
2423
+ "yen-circle",
2424
+ "yen-diamond",
2425
+ "yen-hexagon",
2426
+ "yen-octagon",
2427
+ "yen-square",
2428
+ "yen-waves",
2429
+ "yen",
2430
+ "zap-off",
2431
+ "zap",
2432
+ "zero-circle",
2433
+ "zero-diamond",
2434
+ "zero-hexagon",
2435
+ "zero-octagon",
2436
+ "zero-square",
2437
+ "zero-waves",
2438
+ "zero"
2439
+ ];
2440
+ function getIconByAttrType(attributeType) {
2441
+ switch (attributeType) {
2442
+ case "text":
2443
+ return "text-align-left";
2444
+ case "textarea":
2445
+ return "text-align-left";
2446
+ case "number":
2447
+ return "hash";
2448
+ case "checkbox":
2449
+ return "check-square";
2450
+ case "select":
2451
+ return "list";
2452
+ case "status":
2453
+ return "list";
2454
+ case "multiselect":
2455
+ return "list-check";
2456
+ case "date":
2457
+ return "calendar";
2458
+ case "currency":
2459
+ return "dollar";
2460
+ case "phone":
2461
+ return "telephone";
2462
+ case "rating":
2463
+ return "star";
2464
+ case "file":
2465
+ return "file";
2466
+ case "location":
2467
+ return "map";
2468
+ case "relation":
2469
+ return "link";
2470
+ case "timestamp":
2471
+ return "calendar";
2472
+ case "user":
2473
+ return "user";
2474
+ default:
2475
+ return void 0;
2476
+ }
2477
+ }
2478
+
2479
+ // src/mimeTypes.ts
2480
+ var IMAGE_MIME_TYPES = {
2481
+ JPEG: "image/jpeg",
2482
+ PNG: "image/png",
2483
+ GIF: "image/gif",
2484
+ WEBP: "image/webp",
2485
+ SVG: "image/svg+xml",
2486
+ BMP: "image/bmp",
2487
+ TIFF: "image/tiff",
2488
+ ICO: "image/x-icon",
2489
+ HEIC: "image/heic",
2490
+ HEIF: "image/heif"
2491
+ };
2492
+ var IMAGE_MIME_TYPES_ARRAY = Object.values(IMAGE_MIME_TYPES);
2493
+ var DOCUMENT_MIME_TYPES = {
2494
+ PDF: "application/pdf",
2495
+ DOC: "application/msword",
2496
+ DOCX: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
2497
+ XLS: "application/vnd.ms-excel",
2498
+ XLSX: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
2499
+ PPT: "application/vnd.ms-powerpoint",
2500
+ PPTX: "application/vnd.openxmlformats-officedocument.presentationml.presentation",
2501
+ ODT: "application/vnd.oasis.opendocument.text",
2502
+ ODS: "application/vnd.oasis.opendocument.spreadsheet",
2503
+ ODP: "application/vnd.oasis.opendocument.presentation",
2504
+ RTF: "application/rtf",
2505
+ TXT: "text/plain",
2506
+ CSV: "text/csv",
2507
+ MARKDOWN: "text/markdown"
2508
+ };
2509
+ var DOCUMENT_MIME_TYPES_ARRAY = Object.values(DOCUMENT_MIME_TYPES);
2510
+ var ARCHIVE_MIME_TYPES = {
2511
+ ZIP: "application/zip",
2512
+ RAR: "application/vnd.rar",
2513
+ TAR: "application/x-tar",
2514
+ GZIP: "application/gzip",
2515
+ "7Z": "application/x-7z-compressed",
2516
+ BZ2: "application/x-bzip2"
2517
+ };
2518
+ var ARCHIVE_MIME_TYPES_ARRAY = Object.values(ARCHIVE_MIME_TYPES);
2519
+ var AUDIO_MIME_TYPES = {
2520
+ MP3: "audio/mpeg",
2521
+ WAV: "audio/wav",
2522
+ OGG: "audio/ogg",
2523
+ AAC: "audio/aac",
2524
+ FLAC: "audio/flac",
2525
+ M4A: "audio/mp4",
2526
+ WEBM: "audio/webm"
2527
+ };
2528
+ var AUDIO_MIME_TYPES_ARRAY = Object.values(AUDIO_MIME_TYPES);
2529
+ var VIDEO_MIME_TYPES = {
2530
+ MP4: "video/mp4",
2531
+ WEBM: "video/webm",
2532
+ OGG: "video/ogg",
2533
+ AVI: "video/x-msvideo",
2534
+ MOV: "video/quicktime",
2535
+ MKV: "video/x-matroska",
2536
+ FLV: "video/x-flv",
2537
+ WMV: "video/x-ms-wmv",
2538
+ MPEG: "video/mpeg"
2539
+ };
2540
+ var VIDEO_MIME_TYPES_ARRAY = Object.values(VIDEO_MIME_TYPES);
2541
+ var CODE_MIME_TYPES = {
2542
+ JAVASCRIPT: "text/javascript",
2543
+ TYPESCRIPT: "text/typescript",
2544
+ JSON: "application/json",
2545
+ XML: "application/xml",
2546
+ HTML: "text/html",
2547
+ CSS: "text/css",
2548
+ PYTHON: "text/x-python",
2549
+ JAVA: "text/x-java-source",
2550
+ C: "text/x-c",
2551
+ CPP: "text/x-c++",
2552
+ YAML: "application/x-yaml",
2553
+ SQL: "application/sql"
2554
+ };
2555
+ var CODE_MIME_TYPES_ARRAY = Object.values(CODE_MIME_TYPES);
2556
+ var FONT_MIME_TYPES = {
2557
+ TTF: "font/ttf",
2558
+ OTF: "font/otf",
2559
+ WOFF: "font/woff",
2560
+ WOFF2: "font/woff2",
2561
+ EOT: "application/vnd.ms-fontobject"
2562
+ };
2563
+ var FONT_MIME_TYPES_ARRAY = Object.values(FONT_MIME_TYPES);
2564
+ var OTHER_MIME_TYPES = {
2565
+ BINARY: "application/octet-stream",
2566
+ FORM_DATA: "multipart/form-data",
2567
+ JSON_LD: "application/ld+json",
2568
+ XHTML: "application/xhtml+xml"
2569
+ };
2570
+ var IMAGES = IMAGE_MIME_TYPES_ARRAY;
2571
+ var DOCUMENTS = DOCUMENT_MIME_TYPES_ARRAY;
2572
+ var ARCHIVES = ARCHIVE_MIME_TYPES_ARRAY;
2573
+ var AUDIO = AUDIO_MIME_TYPES_ARRAY;
2574
+ var VIDEO = VIDEO_MIME_TYPES_ARRAY;
2575
+ var CODE = CODE_MIME_TYPES_ARRAY;
2576
+ var FONTS = FONT_MIME_TYPES_ARRAY;
2577
+ var WEB_IMAGES = [
2578
+ IMAGE_MIME_TYPES.JPEG,
2579
+ IMAGE_MIME_TYPES.PNG,
2580
+ IMAGE_MIME_TYPES.GIF,
2581
+ IMAGE_MIME_TYPES.WEBP
2582
+ ];
2583
+ var OFFICE_DOCUMENTS = [
2584
+ DOCUMENT_MIME_TYPES.PDF,
2585
+ DOCUMENT_MIME_TYPES.DOC,
2586
+ DOCUMENT_MIME_TYPES.DOCX,
2587
+ DOCUMENT_MIME_TYPES.XLS,
2588
+ DOCUMENT_MIME_TYPES.XLSX,
2589
+ DOCUMENT_MIME_TYPES.PPT,
2590
+ DOCUMENT_MIME_TYPES.PPTX
2591
+ ];
2592
+ var MEDIA = [...IMAGES, ...AUDIO, ...VIDEO];
2593
+ var ALL_MIME_TYPES = [
2594
+ ...IMAGES,
2595
+ ...DOCUMENTS,
2596
+ ...ARCHIVES,
2597
+ ...AUDIO,
2598
+ ...VIDEO,
2599
+ ...CODE,
2600
+ ...FONTS,
2601
+ ...Object.values(OTHER_MIME_TYPES)
2602
+ ];
2603
+ var isImageMimeType = (mimeType) => {
2604
+ return IMAGES.includes(mimeType);
2605
+ };
2606
+ var isDocumentMimeType = (mimeType) => {
2607
+ return DOCUMENTS.includes(mimeType);
2608
+ };
2609
+ var isArchiveMimeType = (mimeType) => {
2610
+ return ARCHIVES.includes(mimeType);
2611
+ };
2612
+ var isAudioMimeType = (mimeType) => {
2613
+ return AUDIO.includes(mimeType);
2614
+ };
2615
+ var isVideoMimeType = (mimeType) => {
2616
+ return VIDEO.includes(mimeType);
2617
+ };
2618
+ var isCodeMimeType = (mimeType) => {
2619
+ return CODE.includes(mimeType);
2620
+ };
2621
+ var getExtensionFromMimeType = (mimeType) => {
2622
+ const mimeToExt = {
2623
+ // Images
2624
+ "image/jpeg": "jpg",
2625
+ "image/png": "png",
2626
+ "image/gif": "gif",
2627
+ "image/webp": "webp",
2628
+ "image/svg+xml": "svg",
2629
+ // Documents
2630
+ "application/pdf": "pdf",
2631
+ "application/msword": "doc",
2632
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document": "docx",
2633
+ "application/vnd.ms-excel": "xls",
2634
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "xlsx",
2635
+ // Archives
2636
+ "application/zip": "zip",
2637
+ "application/vnd.rar": "rar",
2638
+ // Audio
2639
+ "audio/mpeg": "mp3",
2640
+ "audio/wav": "wav",
2641
+ // Video
2642
+ "video/mp4": "mp4",
2643
+ "video/webm": "webm",
2644
+ // Text
2645
+ "text/plain": "txt",
2646
+ "text/csv": "csv",
2647
+ "application/json": "json"
2648
+ };
2649
+ return mimeToExt[mimeType] || null;
2650
+ };
2651
+ export {
2652
+ ALL_MIME_TYPES,
2653
+ ARCHIVES,
2654
+ ARCHIVE_MIME_TYPES,
2655
+ ARCHIVE_MIME_TYPES_ARRAY,
2656
+ AUDIO,
2657
+ AUDIO_MIME_TYPES,
2658
+ AUDIO_MIME_TYPES_ARRAY,
2659
+ BYTES,
2660
+ CODE,
2661
+ CODE_MIME_TYPES,
2662
+ CODE_MIME_TYPES_ARRAY,
2663
+ COLORS,
2664
+ COLOR_GROUPS,
2665
+ COUNTRIES,
2666
+ CURRENCIES,
2667
+ DEFAULT_ATTRIBUTE_ICONS,
2668
+ DOCUMENTS,
2669
+ DOCUMENT_MIME_TYPES,
2670
+ DOCUMENT_MIME_TYPES_ARRAY,
2671
+ FILE_SIZE,
2672
+ FONTS,
2673
+ FONT_MIME_TYPES,
2674
+ FONT_MIME_TYPES_ARRAY,
2675
+ GIGABYTES,
2676
+ ICONS,
2677
+ IMAGES,
2678
+ IMAGE_MIME_TYPES,
2679
+ IMAGE_MIME_TYPES_ARRAY,
2680
+ KILOBYTES,
2681
+ MEDIA,
2682
+ MEGABYTES,
2683
+ OFFICE_DOCUMENTS,
2684
+ OTHER_MIME_TYPES,
2685
+ RECOMMENDED_MAX_SIZES,
2686
+ STATUS_COLORS,
2687
+ VIDEO,
2688
+ VIDEO_MIME_TYPES,
2689
+ VIDEO_MIME_TYPES_ARRAY,
2690
+ WEB_IMAGES,
2691
+ bytesToGb,
2692
+ bytesToMb,
2693
+ formatBytes,
2694
+ gbToBytes,
2695
+ getAllColors,
2696
+ getAllCountries,
2697
+ getAllCurrencies,
2698
+ getColor,
2699
+ getColorIds,
2700
+ getColorsByGroup,
2701
+ getCountryByIso2,
2702
+ getCountryByIso3,
2703
+ getCountryPhoneCode,
2704
+ getCurrency,
2705
+ getCurrencySymbol,
2706
+ getDefaultAttributeIcon,
2707
+ getExtensionFromMimeType,
2708
+ getIconByAttrType,
2709
+ getPhoneMaxDigits,
2710
+ getPhoneTrunkPrefix,
2711
+ isArchiveMimeType,
2712
+ isAudioMimeType,
2713
+ isCodeMimeType,
2714
+ isDocumentMimeType,
2715
+ isImageMimeType,
2716
+ isValidColorId,
2717
+ isValidCurrencyCode,
2718
+ isValidIso2,
2719
+ isValidIso3,
2720
+ isVideoMimeType,
2721
+ isWithinSizeLimit,
2722
+ mbToBytes
2723
+ };