negodesign 0.0.30 → 0.0.32
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/components/NegoDesign.svelte +2 -10
- package/dist/components/NegoDesign.svelte.d.ts +2 -7
- package/dist/components/core/banner/CtaCardBanner.svelte +1 -1
- package/dist/components/core/banner/types.d.ts +16 -6
- package/dist/components/core/card/types.d.ts +94 -0
- package/dist/components/core/carousel/grid/media/types.d.ts +11 -1
- package/dist/components/core/carousel/grid/media/ui/CarouselGridMedia.svelte +2 -2
- package/dist/components/core/carousel/grid/media/ui/CarouselGridMedia.svelte.d.ts +2 -2
- package/dist/components/core/carousel/grid/profile/types.d.ts +11 -1
- package/dist/components/core/carousel/grid/profile/ui/CarouselGridProfile.svelte +2 -2
- package/dist/components/core/carousel/grid/profile/ui/CarouselGridProfile.svelte.d.ts +2 -2
- package/dist/components/core/carousel/highlights/types.d.ts +11 -0
- package/dist/components/core/carousel/promotion/types.d.ts +10 -0
- package/dist/components/core/carousel/types.d.ts +56 -0
- package/dist/components/core/datatable/data/data-table.d.ts +25 -0
- package/dist/components/core/footer/types.d.ts +28 -0
- package/dist/components/core/nav/data/nav-menu-sidebar.d.ts +29 -0
- package/dist/components/core/nav/data/nav-menu.d.ts +43 -0
- package/dist/components/core/nav/data/nav-user-sidebar.d.ts +14 -0
- package/dist/components/core/nav/ui/menu-links.svelte +1 -1
- package/dist/components/core/panel/CarouselSlot.svelte +1 -1
- package/dist/components/core/panel/type.d.ts +11 -0
- package/dist/components/core/search/types.d.ts +17 -5
- package/dist/components/core/sidebar/types.d.ts +19 -0
- package/dist/components/core/sidebar/types.js +1 -0
- package/dist/components/core/tabs/data/TabModel.d.ts +11 -0
- package/dist/components/core/tabs/types.d.ts +11 -0
- package/dist/components/core/tabs/types.js +1 -0
- package/dist/components/pages/admin/01/ui/types.d.ts +21 -0
- package/dist/components/pages/admin/01/ui/types.js +1 -0
- package/dist/components/pages/product-details/01/ProductDetails01.svelte +71 -0
- package/dist/components/pages/product-details/01/ProductDetails01.svelte.d.ts +11 -0
- package/dist/components/pages/product-details/02/ProductDetails02.svelte +88 -0
- package/dist/components/pages/product-details/02/ProductDetails02.svelte.d.ts +11 -0
- package/dist/components/pages/product-details/03/ProductDetails03.svelte +77 -0
- package/dist/components/pages/product-details/03/ProductDetails03.svelte.d.ts +11 -0
- package/dist/components/pages/product-details/04/ProductDetails04.svelte +65 -0
- package/dist/components/pages/product-details/04/ProductDetails04.svelte.d.ts +11 -0
- package/dist/components/pages/product-details/ProductDetails.svelte +38 -0
- package/dist/components/pages/product-details/ProductDetails.svelte.d.ts +4 -0
- package/dist/components/pages/product-details/shared/ProductDetailActions.svelte +82 -0
- package/dist/components/pages/product-details/shared/ProductDetailActions.svelte.d.ts +13 -0
- package/dist/components/pages/product-details/shared/ProductDetailBreadcrumb.svelte +46 -0
- package/dist/components/pages/product-details/shared/ProductDetailBreadcrumb.svelte.d.ts +8 -0
- package/dist/components/pages/product-details/shared/ProductDetailDescription.svelte +38 -0
- package/dist/components/pages/product-details/shared/ProductDetailDescription.svelte.d.ts +8 -0
- package/dist/components/pages/product-details/shared/ProductDetailFeatures.svelte +40 -0
- package/dist/components/pages/product-details/shared/ProductDetailFeatures.svelte.d.ts +7 -0
- package/dist/components/pages/product-details/shared/ProductDetailFilesVertical.svelte +72 -0
- package/dist/components/pages/product-details/shared/ProductDetailFilesVertical.svelte.d.ts +9 -0
- package/dist/components/pages/product-details/shared/ProductDetailHeader.svelte +41 -0
- package/dist/components/pages/product-details/shared/ProductDetailHeader.svelte.d.ts +9 -0
- package/dist/components/pages/product-details/shared/ProductDetailImage.svelte +70 -0
- package/dist/components/pages/product-details/shared/ProductDetailImage.svelte.d.ts +9 -0
- package/dist/components/pages/product-details/shared/ProductDetailMap.svelte +57 -0
- package/dist/components/pages/product-details/shared/ProductDetailMap.svelte.d.ts +9 -0
- package/dist/components/pages/product-details/shared/ProductDetailPrice.svelte +44 -0
- package/dist/components/pages/product-details/shared/ProductDetailPrice.svelte.d.ts +9 -0
- package/dist/components/pages/product-details/shared/ProductDetailRating.svelte +42 -0
- package/dist/components/pages/product-details/shared/ProductDetailRating.svelte.d.ts +8 -0
- package/dist/components/pages/product-details/shared/ProductDetailReviews.svelte +70 -0
- package/dist/components/pages/product-details/shared/ProductDetailReviews.svelte.d.ts +8 -0
- package/dist/components/pages/product-details/shared/ProductDetailTabs.svelte +96 -0
- package/dist/components/pages/product-details/shared/ProductDetailTabs.svelte.d.ts +12 -0
- package/dist/components/pages/product-details/shared/ProductDetailTags.svelte +35 -0
- package/dist/components/pages/product-details/shared/ProductDetailTags.svelte.d.ts +8 -0
- package/dist/components/pages/product-details/shared/ProductPurchasePanel.svelte +58 -0
- package/dist/components/pages/product-details/shared/ProductPurchasePanel.svelte.d.ts +11 -0
- package/dist/components/pages/product-details/types.d.ts +170 -0
- package/dist/components/pages/product-details/types.js +1 -0
- package/dist/components/pages/profile-user/01/ProfileUser01.svelte +113 -0
- package/dist/components/pages/profile-user/01/ProfileUser01.svelte.d.ts +27 -0
- package/dist/components/pages/profile-user/02/ProfileUser02.svelte +83 -0
- package/dist/components/pages/profile-user/02/ProfileUser02.svelte.d.ts +20 -0
- package/dist/components/pages/profile-user/03/ProfileUser03.svelte +85 -0
- package/dist/components/pages/profile-user/03/ProfileUser03.svelte.d.ts +20 -0
- package/dist/components/pages/profile-user/ProfileUser.svelte +53 -0
- package/dist/components/pages/profile-user/ProfileUser.svelte.d.ts +4 -0
- package/dist/components/pages/profile-user/shared/ProfileUserAddress.svelte +84 -0
- package/dist/components/pages/profile-user/shared/ProfileUserAddress.svelte.d.ts +8 -0
- package/dist/components/pages/profile-user/shared/ProfileUserHeader.svelte +104 -0
- package/dist/components/pages/profile-user/shared/ProfileUserHeader.svelte.d.ts +9 -0
- package/dist/components/pages/profile-user/shared/ProfileUserResetPassword.svelte +116 -0
- package/dist/components/pages/profile-user/shared/ProfileUserResetPassword.svelte.d.ts +7 -0
- package/dist/components/pages/profile-user/shared/ProfileUserSetting.svelte +176 -0
- package/dist/components/pages/profile-user/shared/ProfileUserSetting.svelte.d.ts +14 -0
- package/dist/components/pages/profile-user/shared/ProfileUserTabs.svelte +78 -0
- package/dist/components/pages/profile-user/shared/ProfileUserTabs.svelte.d.ts +22 -0
- package/dist/components/pages/profile-user/types.d.ts +144 -0
- package/dist/components/pages/profile-user/types.js +1 -0
- package/dist/components/types.d.ts +6 -0
- package/dist/components/types.js +1 -0
- package/dist/globals.css +210 -3
- package/dist/i18n/langs/en.d.ts +83 -0
- package/dist/i18n/langs/en.js +83 -0
- package/dist/i18n/langs/pt.d.ts +83 -0
- package/dist/i18n/langs/pt.js +83 -0
- package/dist/i18n/translations.d.ts +166 -0
- package/dist/index.d.ts +190 -25
- package/dist/index.js +190 -25
- package/dist/types/index.d.ts +159 -5
- package/package.json +1 -1
package/dist/globals.css
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
--container-2xl: 42rem;
|
|
43
43
|
--container-3xl: 48rem;
|
|
44
44
|
--container-4xl: 56rem;
|
|
45
|
+
--container-5xl: 64rem;
|
|
45
46
|
--container-7xl: 80rem;
|
|
46
47
|
--text-xs: 0.75rem;
|
|
47
48
|
--text-xs--line-height: calc(1 / 0.75);
|
|
@@ -490,12 +491,18 @@
|
|
|
490
491
|
.-mt-4 {
|
|
491
492
|
margin-top: calc(var(--spacing) * -4);
|
|
492
493
|
}
|
|
494
|
+
.-mt-12 {
|
|
495
|
+
margin-top: calc(var(--spacing) * -12);
|
|
496
|
+
}
|
|
493
497
|
.mt-0\.5 {
|
|
494
498
|
margin-top: calc(var(--spacing) * 0.5);
|
|
495
499
|
}
|
|
496
500
|
.mt-1 {
|
|
497
501
|
margin-top: var(--spacing);
|
|
498
502
|
}
|
|
503
|
+
.mt-1\.5 {
|
|
504
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
505
|
+
}
|
|
499
506
|
.mt-2 {
|
|
500
507
|
margin-top: calc(var(--spacing) * 2);
|
|
501
508
|
}
|
|
@@ -514,6 +521,9 @@
|
|
|
514
521
|
.mt-10 {
|
|
515
522
|
margin-top: calc(var(--spacing) * 10);
|
|
516
523
|
}
|
|
524
|
+
.mt-12 {
|
|
525
|
+
margin-top: calc(var(--spacing) * 12);
|
|
526
|
+
}
|
|
517
527
|
.mt-auto {
|
|
518
528
|
margin-top: auto;
|
|
519
529
|
}
|
|
@@ -629,6 +639,9 @@
|
|
|
629
639
|
.field-sizing-content {
|
|
630
640
|
field-sizing: content;
|
|
631
641
|
}
|
|
642
|
+
.aspect-4\/3 {
|
|
643
|
+
aspect-ratio: 4/3;
|
|
644
|
+
}
|
|
632
645
|
.aspect-577\/310 {
|
|
633
646
|
aspect-ratio: 577/310;
|
|
634
647
|
}
|
|
@@ -642,6 +655,10 @@
|
|
|
642
655
|
width: calc(var(--spacing) * 0.5);
|
|
643
656
|
height: calc(var(--spacing) * 0.5);
|
|
644
657
|
}
|
|
658
|
+
.size-1\.5 {
|
|
659
|
+
width: calc(var(--spacing) * 1.5);
|
|
660
|
+
height: calc(var(--spacing) * 1.5);
|
|
661
|
+
}
|
|
645
662
|
.size-2\.5 {
|
|
646
663
|
width: calc(var(--spacing) * 2.5);
|
|
647
664
|
height: calc(var(--spacing) * 2.5);
|
|
@@ -682,6 +699,10 @@
|
|
|
682
699
|
width: calc(var(--spacing) * 15);
|
|
683
700
|
height: calc(var(--spacing) * 15);
|
|
684
701
|
}
|
|
702
|
+
.size-24 {
|
|
703
|
+
width: calc(var(--spacing) * 24);
|
|
704
|
+
height: calc(var(--spacing) * 24);
|
|
705
|
+
}
|
|
685
706
|
.size-full {
|
|
686
707
|
width: 100%;
|
|
687
708
|
height: 100%;
|
|
@@ -698,6 +719,9 @@
|
|
|
698
719
|
.h-2 {
|
|
699
720
|
height: calc(var(--spacing) * 2);
|
|
700
721
|
}
|
|
722
|
+
.h-3 {
|
|
723
|
+
height: calc(var(--spacing) * 3);
|
|
724
|
+
}
|
|
701
725
|
.h-3\.75 {
|
|
702
726
|
height: calc(var(--spacing) * 3.75);
|
|
703
727
|
}
|
|
@@ -755,6 +779,9 @@
|
|
|
755
779
|
.h-30 {
|
|
756
780
|
height: calc(var(--spacing) * 30);
|
|
757
781
|
}
|
|
782
|
+
.h-32 {
|
|
783
|
+
height: calc(var(--spacing) * 32);
|
|
784
|
+
}
|
|
758
785
|
.h-36 {
|
|
759
786
|
height: calc(var(--spacing) * 36);
|
|
760
787
|
}
|
|
@@ -827,12 +854,21 @@
|
|
|
827
854
|
.w-1 {
|
|
828
855
|
width: var(--spacing);
|
|
829
856
|
}
|
|
857
|
+
.w-1\/2 {
|
|
858
|
+
width: calc(1 / 2 * 100%);
|
|
859
|
+
}
|
|
830
860
|
.w-2 {
|
|
831
861
|
width: calc(var(--spacing) * 2);
|
|
832
862
|
}
|
|
863
|
+
.w-2\/3 {
|
|
864
|
+
width: calc(2 / 3 * 100%);
|
|
865
|
+
}
|
|
833
866
|
.w-3\.75 {
|
|
834
867
|
width: calc(var(--spacing) * 3.75);
|
|
835
868
|
}
|
|
869
|
+
.w-3\/4 {
|
|
870
|
+
width: calc(3 / 4 * 100%);
|
|
871
|
+
}
|
|
836
872
|
.w-4 {
|
|
837
873
|
width: calc(var(--spacing) * 4);
|
|
838
874
|
}
|
|
@@ -863,9 +899,15 @@
|
|
|
863
899
|
.w-12 {
|
|
864
900
|
width: calc(var(--spacing) * 12);
|
|
865
901
|
}
|
|
902
|
+
.w-16 {
|
|
903
|
+
width: calc(var(--spacing) * 16);
|
|
904
|
+
}
|
|
866
905
|
.w-20 {
|
|
867
906
|
width: calc(var(--spacing) * 20);
|
|
868
907
|
}
|
|
908
|
+
.w-24 {
|
|
909
|
+
width: calc(var(--spacing) * 24);
|
|
910
|
+
}
|
|
869
911
|
.w-25 {
|
|
870
912
|
width: calc(var(--spacing) * 25);
|
|
871
913
|
}
|
|
@@ -875,9 +917,21 @@
|
|
|
875
917
|
.w-30 {
|
|
876
918
|
width: calc(var(--spacing) * 30);
|
|
877
919
|
}
|
|
920
|
+
.w-32 {
|
|
921
|
+
width: calc(var(--spacing) * 32);
|
|
922
|
+
}
|
|
923
|
+
.w-36 {
|
|
924
|
+
width: calc(var(--spacing) * 36);
|
|
925
|
+
}
|
|
878
926
|
.w-40 {
|
|
879
927
|
width: calc(var(--spacing) * 40);
|
|
880
928
|
}
|
|
929
|
+
.w-44 {
|
|
930
|
+
width: calc(var(--spacing) * 44);
|
|
931
|
+
}
|
|
932
|
+
.w-48 {
|
|
933
|
+
width: calc(var(--spacing) * 48);
|
|
934
|
+
}
|
|
881
935
|
.w-50 {
|
|
882
936
|
width: calc(var(--spacing) * 50);
|
|
883
937
|
}
|
|
@@ -944,6 +998,9 @@
|
|
|
944
998
|
.max-w-4xl {
|
|
945
999
|
max-width: var(--container-4xl);
|
|
946
1000
|
}
|
|
1001
|
+
.max-w-5xl {
|
|
1002
|
+
max-width: var(--container-5xl);
|
|
1003
|
+
}
|
|
947
1004
|
.max-w-7xl {
|
|
948
1005
|
max-width: var(--container-7xl);
|
|
949
1006
|
}
|
|
@@ -983,6 +1040,9 @@
|
|
|
983
1040
|
.min-w-36 {
|
|
984
1041
|
min-width: calc(var(--spacing) * 36);
|
|
985
1042
|
}
|
|
1043
|
+
.min-w-40 {
|
|
1044
|
+
min-width: calc(var(--spacing) * 40);
|
|
1045
|
+
}
|
|
986
1046
|
.min-w-48 {
|
|
987
1047
|
min-width: calc(var(--spacing) * 48);
|
|
988
1048
|
}
|
|
@@ -1149,6 +1209,9 @@
|
|
|
1149
1209
|
.grid-cols-10 {
|
|
1150
1210
|
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
1151
1211
|
}
|
|
1212
|
+
.grid-cols-\[1fr_auto_auto\] {
|
|
1213
|
+
grid-template-columns: 1fr auto auto;
|
|
1214
|
+
}
|
|
1152
1215
|
.flex-col {
|
|
1153
1216
|
flex-direction: column;
|
|
1154
1217
|
}
|
|
@@ -1296,9 +1359,6 @@
|
|
|
1296
1359
|
.rounded-2xl {
|
|
1297
1360
|
border-radius: calc(var(--radius) * 1.8);
|
|
1298
1361
|
}
|
|
1299
|
-
.rounded-3xl {
|
|
1300
|
-
border-radius: calc(var(--radius) * 2.2);
|
|
1301
|
-
}
|
|
1302
1362
|
.rounded-4xl {
|
|
1303
1363
|
border-radius: calc(var(--radius) * 2.6);
|
|
1304
1364
|
}
|
|
@@ -1341,6 +1401,14 @@
|
|
|
1341
1401
|
.rounded-xl\! {
|
|
1342
1402
|
border-radius: calc(var(--radius) * 1.4) !important;
|
|
1343
1403
|
}
|
|
1404
|
+
.rounded-t-lg {
|
|
1405
|
+
border-top-left-radius: var(--radius);
|
|
1406
|
+
border-top-right-radius: var(--radius);
|
|
1407
|
+
}
|
|
1408
|
+
.rounded-t-md {
|
|
1409
|
+
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
1410
|
+
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
1411
|
+
}
|
|
1344
1412
|
.rounded-l-lg {
|
|
1345
1413
|
border-top-left-radius: var(--radius);
|
|
1346
1414
|
border-bottom-left-radius: var(--radius);
|
|
@@ -1404,6 +1472,10 @@
|
|
|
1404
1472
|
border-bottom-style: var(--tw-border-style);
|
|
1405
1473
|
border-bottom-width: 1px;
|
|
1406
1474
|
}
|
|
1475
|
+
.border-b-2 {
|
|
1476
|
+
border-bottom-style: var(--tw-border-style);
|
|
1477
|
+
border-bottom-width: 2px;
|
|
1478
|
+
}
|
|
1407
1479
|
.border-l {
|
|
1408
1480
|
border-left-style: var(--tw-border-style);
|
|
1409
1481
|
border-left-width: 1px;
|
|
@@ -1463,12 +1535,24 @@
|
|
|
1463
1535
|
border-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
1464
1536
|
}
|
|
1465
1537
|
}
|
|
1538
|
+
.border-muted {
|
|
1539
|
+
border-color: var(--muted);
|
|
1540
|
+
}
|
|
1541
|
+
.border-primary {
|
|
1542
|
+
border-color: var(--primary);
|
|
1543
|
+
}
|
|
1466
1544
|
.border-sidebar-border {
|
|
1467
1545
|
border-color: var(--sidebar-border);
|
|
1468
1546
|
}
|
|
1469
1547
|
.border-transparent {
|
|
1470
1548
|
border-color: transparent;
|
|
1471
1549
|
}
|
|
1550
|
+
.border-white\/30 {
|
|
1551
|
+
border-color: color-mix(in srgb, #fff 30%, transparent);
|
|
1552
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1553
|
+
border-color: color-mix(in oklab, var(--color-white) 30%, transparent);
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1472
1556
|
.bg-\(--color-bg\) {
|
|
1473
1557
|
background-color: var(--color-bg);
|
|
1474
1558
|
}
|
|
@@ -1559,6 +1643,9 @@
|
|
|
1559
1643
|
background-color: color-mix(in oklab, var(--border) 50%, transparent);
|
|
1560
1644
|
}
|
|
1561
1645
|
}
|
|
1646
|
+
.bg-card {
|
|
1647
|
+
background-color: var(--card);
|
|
1648
|
+
}
|
|
1562
1649
|
.bg-destructive\/10 {
|
|
1563
1650
|
background-color: var(--destructive);
|
|
1564
1651
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1646,6 +1733,18 @@
|
|
|
1646
1733
|
.bg-primary {
|
|
1647
1734
|
background-color: var(--primary);
|
|
1648
1735
|
}
|
|
1736
|
+
.bg-primary\/5 {
|
|
1737
|
+
background-color: var(--primary);
|
|
1738
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1739
|
+
background-color: color-mix(in oklab, var(--primary) 5%, transparent);
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
.bg-primary\/10 {
|
|
1743
|
+
background-color: var(--primary);
|
|
1744
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1745
|
+
background-color: color-mix(in oklab, var(--primary) 10%, transparent);
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1649
1748
|
.bg-red-500 {
|
|
1650
1749
|
background-color: var(--color-red-500);
|
|
1651
1750
|
}
|
|
@@ -1685,6 +1784,18 @@
|
|
|
1685
1784
|
background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
|
|
1686
1785
|
}
|
|
1687
1786
|
}
|
|
1787
|
+
.bg-white\/20 {
|
|
1788
|
+
background-color: color-mix(in srgb, #fff 20%, transparent);
|
|
1789
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1790
|
+
background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
.bg-white\/30 {
|
|
1794
|
+
background-color: color-mix(in srgb, #fff 30%, transparent);
|
|
1795
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1796
|
+
background-color: color-mix(in oklab, var(--color-white) 30%, transparent);
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1688
1799
|
.bg-white\/40 {
|
|
1689
1800
|
background-color: color-mix(in srgb, #fff 40%, transparent);
|
|
1690
1801
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1705,10 +1816,18 @@
|
|
|
1705
1816
|
--tw-gradient-from: #ff80b5;
|
|
1706
1817
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1707
1818
|
}
|
|
1819
|
+
.from-blue-400 {
|
|
1820
|
+
--tw-gradient-from: var(--color-blue-400);
|
|
1821
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1822
|
+
}
|
|
1708
1823
|
.to-\[\#9089fc\] {
|
|
1709
1824
|
--tw-gradient-to: #9089fc;
|
|
1710
1825
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1711
1826
|
}
|
|
1827
|
+
.to-blue-500 {
|
|
1828
|
+
--tw-gradient-to: var(--color-blue-500);
|
|
1829
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1830
|
+
}
|
|
1712
1831
|
.bg-clip-padding {
|
|
1713
1832
|
background-clip: padding-box;
|
|
1714
1833
|
}
|
|
@@ -1826,6 +1945,9 @@
|
|
|
1826
1945
|
.py-6 {
|
|
1827
1946
|
padding-block: calc(var(--spacing) * 6);
|
|
1828
1947
|
}
|
|
1948
|
+
.py-8 {
|
|
1949
|
+
padding-block: calc(var(--spacing) * 8);
|
|
1950
|
+
}
|
|
1829
1951
|
.py-10 {
|
|
1830
1952
|
padding-block: calc(var(--spacing) * 10);
|
|
1831
1953
|
}
|
|
@@ -1853,6 +1975,9 @@
|
|
|
1853
1975
|
.pt-8 {
|
|
1854
1976
|
padding-top: calc(var(--spacing) * 8);
|
|
1855
1977
|
}
|
|
1978
|
+
.pt-10 {
|
|
1979
|
+
padding-top: calc(var(--spacing) * 10);
|
|
1980
|
+
}
|
|
1856
1981
|
.pr-2 {
|
|
1857
1982
|
padding-right: calc(var(--spacing) * 2);
|
|
1858
1983
|
}
|
|
@@ -1874,6 +1999,12 @@
|
|
|
1874
1999
|
.pb-5 {
|
|
1875
2000
|
padding-bottom: calc(var(--spacing) * 5);
|
|
1876
2001
|
}
|
|
2002
|
+
.pb-6 {
|
|
2003
|
+
padding-bottom: calc(var(--spacing) * 6);
|
|
2004
|
+
}
|
|
2005
|
+
.pb-12 {
|
|
2006
|
+
padding-bottom: calc(var(--spacing) * 12);
|
|
2007
|
+
}
|
|
1877
2008
|
.pl-0 {
|
|
1878
2009
|
padding-left: 0px;
|
|
1879
2010
|
}
|
|
@@ -1889,6 +2020,9 @@
|
|
|
1889
2020
|
.pl-5 {
|
|
1890
2021
|
padding-left: calc(var(--spacing) * 5);
|
|
1891
2022
|
}
|
|
2023
|
+
.pl-5\.5 {
|
|
2024
|
+
padding-left: calc(var(--spacing) * 5.5);
|
|
2025
|
+
}
|
|
1892
2026
|
.pl-6 {
|
|
1893
2027
|
padding-left: calc(var(--spacing) * 6);
|
|
1894
2028
|
}
|
|
@@ -1966,6 +2100,10 @@
|
|
|
1966
2100
|
.text-\[24px\] {
|
|
1967
2101
|
font-size: 24px;
|
|
1968
2102
|
}
|
|
2103
|
+
.leading-6 {
|
|
2104
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
2105
|
+
line-height: calc(var(--spacing) * 6);
|
|
2106
|
+
}
|
|
1969
2107
|
.leading-7 {
|
|
1970
2108
|
--tw-leading: calc(var(--spacing) * 7);
|
|
1971
2109
|
line-height: calc(var(--spacing) * 7);
|
|
@@ -2053,6 +2191,18 @@
|
|
|
2053
2191
|
color: color-mix(in oklab, var(--foreground) 60%, transparent);
|
|
2054
2192
|
}
|
|
2055
2193
|
}
|
|
2194
|
+
.text-foreground\/75 {
|
|
2195
|
+
color: var(--foreground);
|
|
2196
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2197
|
+
color: color-mix(in oklab, var(--foreground) 75%, transparent);
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
.text-foreground\/85 {
|
|
2201
|
+
color: var(--foreground);
|
|
2202
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2203
|
+
color: color-mix(in oklab, var(--foreground) 85%, transparent);
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2056
2206
|
.text-foreground\/90 {
|
|
2057
2207
|
color: var(--foreground);
|
|
2058
2208
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2236,6 +2386,10 @@
|
|
|
2236
2386
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2237
2387
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2238
2388
|
}
|
|
2389
|
+
.ring-4 {
|
|
2390
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2391
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2392
|
+
}
|
|
2239
2393
|
.ring-background {
|
|
2240
2394
|
--tw-ring-color: var(--background);
|
|
2241
2395
|
}
|
|
@@ -2257,6 +2411,12 @@
|
|
|
2257
2411
|
.ring-sidebar-ring {
|
|
2258
2412
|
--tw-ring-color: var(--sidebar-ring);
|
|
2259
2413
|
}
|
|
2414
|
+
.ring-white\/30 {
|
|
2415
|
+
--tw-ring-color: color-mix(in srgb, #fff 30%, transparent);
|
|
2416
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2417
|
+
--tw-ring-color: color-mix(in oklab, var(--color-white) 30%, transparent);
|
|
2418
|
+
}
|
|
2419
|
+
}
|
|
2260
2420
|
.inset-ring-white\/20 {
|
|
2261
2421
|
--tw-inset-ring-color: color-mix(in srgb, #fff 20%, transparent);
|
|
2262
2422
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2286,6 +2446,9 @@
|
|
|
2286
2446
|
--tw-blur: blur(var(--blur-2xl));
|
|
2287
2447
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2288
2448
|
}
|
|
2449
|
+
.filter {
|
|
2450
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2451
|
+
}
|
|
2289
2452
|
.backdrop-blur-sm {
|
|
2290
2453
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
2291
2454
|
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
@@ -2815,6 +2978,10 @@
|
|
|
2815
2978
|
border-top-right-radius: calc(var(--radius) * 2.6);
|
|
2816
2979
|
border-bottom-right-radius: calc(var(--radius) * 2.6);
|
|
2817
2980
|
}
|
|
2981
|
+
.last\:border-b-0:last-child {
|
|
2982
|
+
border-bottom-style: var(--tw-border-style);
|
|
2983
|
+
border-bottom-width: 0px;
|
|
2984
|
+
}
|
|
2818
2985
|
@media (hover: hover) {
|
|
2819
2986
|
.hover\:bg-black\/70:hover {
|
|
2820
2987
|
background-color: color-mix(in srgb, #000 70%, transparent);
|
|
@@ -2889,6 +3056,14 @@
|
|
|
2889
3056
|
background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
|
|
2890
3057
|
}
|
|
2891
3058
|
}
|
|
3059
|
+
.hover\:bg-white\/20:hover {
|
|
3060
|
+
background-color: color-mix(in srgb, #fff 20%, transparent);
|
|
3061
|
+
}
|
|
3062
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3063
|
+
.hover\:bg-white\/20:hover {
|
|
3064
|
+
background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
3065
|
+
}
|
|
3066
|
+
}
|
|
2892
3067
|
.hover\:bg-white\/25:hover {
|
|
2893
3068
|
background-color: color-mix(in srgb, #fff 25%, transparent);
|
|
2894
3069
|
}
|
|
@@ -2897,6 +3072,14 @@
|
|
|
2897
3072
|
background-color: color-mix(in oklab, var(--color-white) 25%, transparent);
|
|
2898
3073
|
}
|
|
2899
3074
|
}
|
|
3075
|
+
.hover\:bg-white\/30:hover {
|
|
3076
|
+
background-color: color-mix(in srgb, #fff 30%, transparent);
|
|
3077
|
+
}
|
|
3078
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3079
|
+
.hover\:bg-white\/30:hover {
|
|
3080
|
+
background-color: color-mix(in oklab, var(--color-white) 30%, transparent);
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
2900
3083
|
.hover\:bg-white\/90:hover {
|
|
2901
3084
|
background-color: color-mix(in srgb, #fff 90%, transparent);
|
|
2902
3085
|
}
|
|
@@ -2923,6 +3106,9 @@
|
|
|
2923
3106
|
.hover\:text-slate-900:hover {
|
|
2924
3107
|
color: var(--color-slate-900);
|
|
2925
3108
|
}
|
|
3109
|
+
.hover\:text-white:hover {
|
|
3110
|
+
color: var(--color-white);
|
|
3111
|
+
}
|
|
2926
3112
|
.hover\:underline:hover {
|
|
2927
3113
|
text-decoration-line: underline;
|
|
2928
3114
|
}
|
|
@@ -3571,6 +3757,9 @@
|
|
|
3571
3757
|
.sm\:max-w-md {
|
|
3572
3758
|
max-width: var(--container-md);
|
|
3573
3759
|
}
|
|
3760
|
+
.sm\:grid-cols-3 {
|
|
3761
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3762
|
+
}
|
|
3574
3763
|
.sm\:flex-row {
|
|
3575
3764
|
flex-direction: row;
|
|
3576
3765
|
}
|
|
@@ -3628,6 +3817,9 @@
|
|
|
3628
3817
|
.md\:right-10 {
|
|
3629
3818
|
right: calc(var(--spacing) * 10);
|
|
3630
3819
|
}
|
|
3820
|
+
.md\:col-span-2 {
|
|
3821
|
+
grid-column: span 2 / span 2;
|
|
3822
|
+
}
|
|
3631
3823
|
.md\:mx-4 {
|
|
3632
3824
|
margin-inline: calc(var(--spacing) * 4);
|
|
3633
3825
|
}
|
|
@@ -3796,6 +3988,12 @@
|
|
|
3796
3988
|
.lg\:absolute {
|
|
3797
3989
|
position: absolute;
|
|
3798
3990
|
}
|
|
3991
|
+
.lg\:sticky {
|
|
3992
|
+
position: sticky;
|
|
3993
|
+
}
|
|
3994
|
+
.lg\:top-8 {
|
|
3995
|
+
top: calc(var(--spacing) * 8);
|
|
3996
|
+
}
|
|
3799
3997
|
.lg\:right-0 {
|
|
3800
3998
|
right: 0px;
|
|
3801
3999
|
}
|
|
@@ -3829,15 +4027,24 @@
|
|
|
3829
4027
|
.lg\:max-w-100 {
|
|
3830
4028
|
max-width: calc(var(--spacing) * 100);
|
|
3831
4029
|
}
|
|
4030
|
+
.lg\:grid-cols-2 {
|
|
4031
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4032
|
+
}
|
|
3832
4033
|
.lg\:grid-cols-3 {
|
|
3833
4034
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3834
4035
|
}
|
|
4036
|
+
.lg\:grid-cols-\[1fr_22rem\] {
|
|
4037
|
+
grid-template-columns: 1fr 22rem;
|
|
4038
|
+
}
|
|
3835
4039
|
.lg\:gap-10 {
|
|
3836
4040
|
gap: calc(var(--spacing) * 10);
|
|
3837
4041
|
}
|
|
3838
4042
|
.lg\:gap-15 {
|
|
3839
4043
|
gap: calc(var(--spacing) * 15);
|
|
3840
4044
|
}
|
|
4045
|
+
.lg\:self-start {
|
|
4046
|
+
align-self: flex-start;
|
|
4047
|
+
}
|
|
3841
4048
|
.lg\:text-\[80px\] {
|
|
3842
4049
|
font-size: 80px;
|
|
3843
4050
|
}
|
package/dist/i18n/langs/en.d.ts
CHANGED
|
@@ -93,6 +93,89 @@ declare const _default: {
|
|
|
93
93
|
"footer.subscribe.title": string;
|
|
94
94
|
"footer.subscribe.text": string;
|
|
95
95
|
"footer.copyr": string;
|
|
96
|
+
"profile-user.info.title": string;
|
|
97
|
+
"profile-user.info.firstName.label": string;
|
|
98
|
+
"profile-user.info.firstName.placeholder": string;
|
|
99
|
+
"profile-user.info.lastName.label": string;
|
|
100
|
+
"profile-user.info.lastName.placeholder": string;
|
|
101
|
+
"profile-user.info.email.label": string;
|
|
102
|
+
"profile-user.info.email.placeholder": string;
|
|
103
|
+
"profile-user.info.phone.label": string;
|
|
104
|
+
"profile-user.info.phone.placeholder": string;
|
|
105
|
+
"profile-user.info.address.label": string;
|
|
106
|
+
"profile-user.info.address.placeholder": string;
|
|
107
|
+
"profile-user.info.username.label": string;
|
|
108
|
+
"profile-user.info.username.placeholder": string;
|
|
109
|
+
"profile-user.info.password.label": string;
|
|
110
|
+
"profile-user.info.role.label": string;
|
|
111
|
+
"profile-user.info.role.placeholder": string;
|
|
112
|
+
"profile-user.resetPassword.title": string;
|
|
113
|
+
"profile-user.resetPassword.current.label": string;
|
|
114
|
+
"profile-user.resetPassword.current.placeholder": string;
|
|
115
|
+
"profile-user.resetPassword.new.label": string;
|
|
116
|
+
"profile-user.resetPassword.new.placeholder": string;
|
|
117
|
+
"profile-user.resetPassword.confirm.label": string;
|
|
118
|
+
"profile-user.resetPassword.confirm.placeholder": string;
|
|
119
|
+
"profile-user.resetPassword.submit": string;
|
|
120
|
+
"profile-user.resetPassword.cancel": string;
|
|
121
|
+
"profile-user.setting.notification.title": string;
|
|
122
|
+
"profile-user.setting.notification.email.label": string;
|
|
123
|
+
"profile-user.setting.notification.email.desc": string;
|
|
124
|
+
"profile-user.setting.notification.web.label": string;
|
|
125
|
+
"profile-user.setting.notification.web.desc": string;
|
|
126
|
+
"profile-user.setting.notification.app.label": string;
|
|
127
|
+
"profile-user.setting.notification.app.desc": string;
|
|
128
|
+
"profile-user.setting.enable.title": string;
|
|
129
|
+
"profile-user.setting.enable.email": string;
|
|
130
|
+
"profile-user.setting.enable.web": string;
|
|
131
|
+
"profile-user.setting.enable.app": string;
|
|
132
|
+
"profile-user.setting.marketing.title": string;
|
|
133
|
+
"profile-user.setting.marketing.type": string;
|
|
134
|
+
"profile-user.setting.marketing.email": string;
|
|
135
|
+
"profile-user.setting.marketing.push": string;
|
|
136
|
+
"profile-user.variant1.tabs.basicInfo": string;
|
|
137
|
+
"profile-user.variant1.tabs.ecommerce": string;
|
|
138
|
+
"profile-user.variant1.tabs.activity": string;
|
|
139
|
+
"profile-user.variant1.statusActive": string;
|
|
140
|
+
"profile-user.variant1.roleDefault": string;
|
|
141
|
+
"profile-user.variant1.actionLoginAsUser": string;
|
|
142
|
+
"profile-user.variant1.addresses.title": string;
|
|
143
|
+
"profile-user.variant1.addresses.add": string;
|
|
144
|
+
"profile-user.variant1.addresses.defaultBadge": string;
|
|
145
|
+
"profile-user.variant1.addresses.empty": string;
|
|
146
|
+
"profile-user.variant1.notes.title": string;
|
|
147
|
+
"profile-user.variant1.ecommerce.title": string;
|
|
148
|
+
"profile-user.variant1.ecommerce.empty": string;
|
|
149
|
+
"profile-user.variant1.activity.title": string;
|
|
150
|
+
"profile-user.variant1.activity.empty": string;
|
|
151
|
+
"profile-user.variant2.tabs.details": string;
|
|
152
|
+
"profile-user.variant2.tabs.security": string;
|
|
153
|
+
"profile-user.variant2.tabs.payment": string;
|
|
154
|
+
"profile-user.variant2.tabs.api": string;
|
|
155
|
+
"profile-user.variant2.tabs.profile": string;
|
|
156
|
+
"profile-user.variant2.banner.alt": string;
|
|
157
|
+
"profile-user.variant2.payment.title": string;
|
|
158
|
+
"profile-user.variant2.payment.empty": string;
|
|
159
|
+
"profile-user.variant2.api.title": string;
|
|
160
|
+
"profile-user.variant2.api.empty": string;
|
|
161
|
+
"profile-user.variant3.tabs.about": string;
|
|
162
|
+
"profile-user.variant3.tabs.media": string;
|
|
163
|
+
"profile-user.variant3.tabs.highlights": string;
|
|
164
|
+
"profile-user.variant3.tabs.experience": string;
|
|
165
|
+
"profile-user.variant3.categories.performance": string;
|
|
166
|
+
"profile-user.variant3.categories.training": string;
|
|
167
|
+
"profile-user.variant3.categories.education": string;
|
|
168
|
+
"profile-user.variant3.categories.work": string;
|
|
169
|
+
"profile-user.variant3.verifiedBadge": string;
|
|
170
|
+
"profile-user.variant3.experiences.emptyList": string;
|
|
171
|
+
"profile-user.variant3.experiences.emptySelection": string;
|
|
172
|
+
"profile-user.variant3.experiences.tags": string;
|
|
173
|
+
"profile-user.variant3.experiences.datePresent": string;
|
|
174
|
+
"profile-user.variant3.experiences.descriptionPlaceholder": string;
|
|
175
|
+
"profile-user.variant3.media.title": string;
|
|
176
|
+
"profile-user.variant3.media.empty": string;
|
|
177
|
+
"profile-user.variant3.highlights.title": string;
|
|
178
|
+
"profile-user.variant3.highlights.empty": string;
|
|
96
179
|
"language.en": string;
|
|
97
180
|
"language.pt": string;
|
|
98
181
|
};
|
package/dist/i18n/langs/en.js
CHANGED
|
@@ -93,6 +93,89 @@ export default {
|
|
|
93
93
|
"footer.subscribe.title": "Subscreva a nossa newsletter",
|
|
94
94
|
"footer.subscribe.text": "Subscribe to our newsletter to receive the latest news, articles and resources sent directly to your inbox.",
|
|
95
95
|
"footer.copyr": "All rights reserved",
|
|
96
|
+
"profile-user.info.title": "Basic user info",
|
|
97
|
+
"profile-user.info.firstName.label": "First name",
|
|
98
|
+
"profile-user.info.firstName.placeholder": "John",
|
|
99
|
+
"profile-user.info.lastName.label": "Last name",
|
|
100
|
+
"profile-user.info.lastName.placeholder": "Doe",
|
|
101
|
+
"profile-user.info.email.label": "Email",
|
|
102
|
+
"profile-user.info.email.placeholder": "john@example.com",
|
|
103
|
+
"profile-user.info.phone.label": "Phone",
|
|
104
|
+
"profile-user.info.phone.placeholder": "+1 234 567 890",
|
|
105
|
+
"profile-user.info.address.label": "Address",
|
|
106
|
+
"profile-user.info.address.placeholder": "123 Main St, City",
|
|
107
|
+
"profile-user.info.username.label": "Username",
|
|
108
|
+
"profile-user.info.username.placeholder": "@johndoe",
|
|
109
|
+
"profile-user.info.password.label": "Password",
|
|
110
|
+
"profile-user.info.role.label": "Role",
|
|
111
|
+
"profile-user.info.role.placeholder": "Administrator",
|
|
112
|
+
"profile-user.resetPassword.title": "Change Password",
|
|
113
|
+
"profile-user.resetPassword.current.label": "Current password",
|
|
114
|
+
"profile-user.resetPassword.current.placeholder": "Enter current password",
|
|
115
|
+
"profile-user.resetPassword.new.label": "New password",
|
|
116
|
+
"profile-user.resetPassword.new.placeholder": "Enter new password",
|
|
117
|
+
"profile-user.resetPassword.confirm.label": "Confirm new password",
|
|
118
|
+
"profile-user.resetPassword.confirm.placeholder": "Confirm new password",
|
|
119
|
+
"profile-user.resetPassword.submit": "Update Password",
|
|
120
|
+
"profile-user.resetPassword.cancel": "Cancel",
|
|
121
|
+
"profile-user.setting.notification.title": "Email/Notification preferences",
|
|
122
|
+
"profile-user.setting.notification.email.label": "Email notifications",
|
|
123
|
+
"profile-user.setting.notification.email.desc": "Receive updates via email",
|
|
124
|
+
"profile-user.setting.notification.web.label": "Web notifications",
|
|
125
|
+
"profile-user.setting.notification.web.desc": "Receive updates on the web",
|
|
126
|
+
"profile-user.setting.notification.app.label": "App notifications",
|
|
127
|
+
"profile-user.setting.notification.app.desc": "Receive updates via mobile app",
|
|
128
|
+
"profile-user.setting.enable.title": "Enable notification",
|
|
129
|
+
"profile-user.setting.enable.email": "Email",
|
|
130
|
+
"profile-user.setting.enable.web": "Web",
|
|
131
|
+
"profile-user.setting.enable.app": "App",
|
|
132
|
+
"profile-user.setting.marketing.title": "Marketing preferences",
|
|
133
|
+
"profile-user.setting.marketing.type": "Type",
|
|
134
|
+
"profile-user.setting.marketing.email": "Email",
|
|
135
|
+
"profile-user.setting.marketing.push": "Push",
|
|
136
|
+
"profile-user.variant1.tabs.basicInfo": "Basic user info",
|
|
137
|
+
"profile-user.variant1.tabs.ecommerce": "E-Commerce",
|
|
138
|
+
"profile-user.variant1.tabs.activity": "Activity logs",
|
|
139
|
+
"profile-user.variant1.statusActive": "Active",
|
|
140
|
+
"profile-user.variant1.roleDefault": "Customer",
|
|
141
|
+
"profile-user.variant1.actionLoginAsUser": "LOGIN AS USER",
|
|
142
|
+
"profile-user.variant1.addresses.title": "Shipping address",
|
|
143
|
+
"profile-user.variant1.addresses.add": "Add",
|
|
144
|
+
"profile-user.variant1.addresses.defaultBadge": "Default",
|
|
145
|
+
"profile-user.variant1.addresses.empty": "No addresses added yet.",
|
|
146
|
+
"profile-user.variant1.notes.title": "Notes",
|
|
147
|
+
"profile-user.variant1.ecommerce.title": "E-Commerce",
|
|
148
|
+
"profile-user.variant1.ecommerce.empty": "Order history and ecommerce details will appear here.",
|
|
149
|
+
"profile-user.variant1.activity.title": "Activity logs",
|
|
150
|
+
"profile-user.variant1.activity.empty": "User activity logs will appear here.",
|
|
151
|
+
"profile-user.variant2.tabs.details": "Details",
|
|
152
|
+
"profile-user.variant2.tabs.security": "Security",
|
|
153
|
+
"profile-user.variant2.tabs.payment": "Payment",
|
|
154
|
+
"profile-user.variant2.tabs.api": "API",
|
|
155
|
+
"profile-user.variant2.tabs.profile": "Profile",
|
|
156
|
+
"profile-user.variant2.banner.alt": "Banner",
|
|
157
|
+
"profile-user.variant2.payment.title": "Payment Methods",
|
|
158
|
+
"profile-user.variant2.payment.empty": "Saved payment methods and billing details will appear here.",
|
|
159
|
+
"profile-user.variant2.api.title": "API Settings",
|
|
160
|
+
"profile-user.variant2.api.empty": "API keys and integration settings will appear here.",
|
|
161
|
+
"profile-user.variant3.tabs.about": "About",
|
|
162
|
+
"profile-user.variant3.tabs.media": "Media",
|
|
163
|
+
"profile-user.variant3.tabs.highlights": "Highlights",
|
|
164
|
+
"profile-user.variant3.tabs.experience": "Experience",
|
|
165
|
+
"profile-user.variant3.categories.performance": "Performance",
|
|
166
|
+
"profile-user.variant3.categories.training": "Training",
|
|
167
|
+
"profile-user.variant3.categories.education": "Education",
|
|
168
|
+
"profile-user.variant3.categories.work": "Work",
|
|
169
|
+
"profile-user.variant3.verifiedBadge": "Verified",
|
|
170
|
+
"profile-user.variant3.experiences.emptyList": "No experiences found for this category.",
|
|
171
|
+
"profile-user.variant3.experiences.emptySelection": "Select an experience to view details.",
|
|
172
|
+
"profile-user.variant3.experiences.tags": "Tags",
|
|
173
|
+
"profile-user.variant3.experiences.datePresent": "Present",
|
|
174
|
+
"profile-user.variant3.experiences.descriptionPlaceholder": "Detailed description about this experience, including responsibilities, achievements and skills developed during this period.",
|
|
175
|
+
"profile-user.variant3.media.title": "Media",
|
|
176
|
+
"profile-user.variant3.media.empty": "Photos, videos and media gallery will appear here.",
|
|
177
|
+
"profile-user.variant3.highlights.title": "Highlights",
|
|
178
|
+
"profile-user.variant3.highlights.empty": "Achievements and highlights will appear here.",
|
|
96
179
|
"language.en": "English",
|
|
97
180
|
"language.pt": "Portuguese"
|
|
98
181
|
};
|