@trafilea/afrodita-components 6.17.1 → 6.17.3
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/build/index.d.ts +44 -0
- package/build/index.esm.js +113 -105
- package/build/index.esm.js.map +1 -1
- package/build/index.js +113 -105
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +44 -0
- package/build/theme/revel.theme.js +7 -0
- package/build/theme/shapermint.theme.d.ts +44 -0
- package/build/theme/shapermint.theme.js +7 -0
- package/build/theme/thebodcon.theme.d.ts +44 -0
- package/build/theme/thebodcon.theme.js +51 -7
- package/build/theme/thespadr.theme.d.ts +44 -0
- package/build/theme/thespadr.theme.js +7 -0
- package/build/theme/truekind.theme.d.ts +44 -0
- package/build/theme/truekind.theme.js +7 -0
- package/package.json +1 -1
|
@@ -585,6 +585,8 @@ declare type ThemeComponent = {
|
|
|
585
585
|
button: {
|
|
586
586
|
borderRadius: string;
|
|
587
587
|
};
|
|
588
|
+
width?: string;
|
|
589
|
+
height?: string;
|
|
588
590
|
};
|
|
589
591
|
copyrightText: {
|
|
590
592
|
fontSize: string;
|
|
@@ -737,6 +739,13 @@ declare type ThemeComponent = {
|
|
|
737
739
|
backgroundColor: string;
|
|
738
740
|
borderRadius: string;
|
|
739
741
|
};
|
|
742
|
+
tooltip: {
|
|
743
|
+
margin: string;
|
|
744
|
+
text: {
|
|
745
|
+
alignment: string;
|
|
746
|
+
maxWidth: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
740
749
|
};
|
|
741
750
|
};
|
|
742
751
|
declare type ThemeTypography = {
|
|
@@ -786,6 +795,41 @@ declare type ThemeAssets = {
|
|
|
786
795
|
width: string;
|
|
787
796
|
height: string;
|
|
788
797
|
};
|
|
798
|
+
tyImage?: {
|
|
799
|
+
url: string;
|
|
800
|
+
width: string;
|
|
801
|
+
height: string;
|
|
802
|
+
};
|
|
803
|
+
appleImage?: {
|
|
804
|
+
url: string;
|
|
805
|
+
width: string;
|
|
806
|
+
height: string;
|
|
807
|
+
};
|
|
808
|
+
spotifyImage?: {
|
|
809
|
+
url: string;
|
|
810
|
+
width: string;
|
|
811
|
+
height: string;
|
|
812
|
+
};
|
|
813
|
+
instagramImage?: {
|
|
814
|
+
url: string;
|
|
815
|
+
width: string;
|
|
816
|
+
height: string;
|
|
817
|
+
};
|
|
818
|
+
facebookImage?: {
|
|
819
|
+
url: string;
|
|
820
|
+
width: string;
|
|
821
|
+
height: string;
|
|
822
|
+
};
|
|
823
|
+
pinterestImage?: {
|
|
824
|
+
url: string;
|
|
825
|
+
width: string;
|
|
826
|
+
height: string;
|
|
827
|
+
};
|
|
828
|
+
youtubeImage?: {
|
|
829
|
+
url: string;
|
|
830
|
+
width: string;
|
|
831
|
+
height: string;
|
|
832
|
+
};
|
|
789
833
|
};
|
|
790
834
|
[key: string]: any;
|
|
791
835
|
};
|
|
@@ -842,6 +842,13 @@ var revel = {
|
|
|
842
842
|
backgroundColor: '--colors-semantic-urgent-color',
|
|
843
843
|
borderRadius: '5px',
|
|
844
844
|
},
|
|
845
|
+
tooltip: {
|
|
846
|
+
margin: '3px 0 0 5px',
|
|
847
|
+
text: {
|
|
848
|
+
alignment: 'left',
|
|
849
|
+
maxWidth: '243px',
|
|
850
|
+
},
|
|
851
|
+
},
|
|
845
852
|
},
|
|
846
853
|
},
|
|
847
854
|
typography: {
|
|
@@ -585,6 +585,8 @@ declare type ThemeComponent = {
|
|
|
585
585
|
button: {
|
|
586
586
|
borderRadius: string;
|
|
587
587
|
};
|
|
588
|
+
width?: string;
|
|
589
|
+
height?: string;
|
|
588
590
|
};
|
|
589
591
|
copyrightText: {
|
|
590
592
|
fontSize: string;
|
|
@@ -737,6 +739,13 @@ declare type ThemeComponent = {
|
|
|
737
739
|
backgroundColor: string;
|
|
738
740
|
borderRadius: string;
|
|
739
741
|
};
|
|
742
|
+
tooltip: {
|
|
743
|
+
margin: string;
|
|
744
|
+
text: {
|
|
745
|
+
alignment: string;
|
|
746
|
+
maxWidth: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
740
749
|
};
|
|
741
750
|
};
|
|
742
751
|
declare type ThemeTypography = {
|
|
@@ -786,6 +795,41 @@ declare type ThemeAssets = {
|
|
|
786
795
|
width: string;
|
|
787
796
|
height: string;
|
|
788
797
|
};
|
|
798
|
+
tyImage?: {
|
|
799
|
+
url: string;
|
|
800
|
+
width: string;
|
|
801
|
+
height: string;
|
|
802
|
+
};
|
|
803
|
+
appleImage?: {
|
|
804
|
+
url: string;
|
|
805
|
+
width: string;
|
|
806
|
+
height: string;
|
|
807
|
+
};
|
|
808
|
+
spotifyImage?: {
|
|
809
|
+
url: string;
|
|
810
|
+
width: string;
|
|
811
|
+
height: string;
|
|
812
|
+
};
|
|
813
|
+
instagramImage?: {
|
|
814
|
+
url: string;
|
|
815
|
+
width: string;
|
|
816
|
+
height: string;
|
|
817
|
+
};
|
|
818
|
+
facebookImage?: {
|
|
819
|
+
url: string;
|
|
820
|
+
width: string;
|
|
821
|
+
height: string;
|
|
822
|
+
};
|
|
823
|
+
pinterestImage?: {
|
|
824
|
+
url: string;
|
|
825
|
+
width: string;
|
|
826
|
+
height: string;
|
|
827
|
+
};
|
|
828
|
+
youtubeImage?: {
|
|
829
|
+
url: string;
|
|
830
|
+
width: string;
|
|
831
|
+
height: string;
|
|
832
|
+
};
|
|
789
833
|
};
|
|
790
834
|
[key: string]: any;
|
|
791
835
|
};
|
|
@@ -818,6 +818,13 @@ var shapermint = {
|
|
|
818
818
|
backgroundColor: '--colors-semantic-urgent-color',
|
|
819
819
|
borderRadius: '5px',
|
|
820
820
|
},
|
|
821
|
+
tooltip: {
|
|
822
|
+
margin: '5px 0 0 5px',
|
|
823
|
+
text: {
|
|
824
|
+
alignment: 'left',
|
|
825
|
+
maxWidth: '243px',
|
|
826
|
+
},
|
|
827
|
+
},
|
|
821
828
|
},
|
|
822
829
|
},
|
|
823
830
|
typography: {
|
|
@@ -585,6 +585,8 @@ declare type ThemeComponent = {
|
|
|
585
585
|
button: {
|
|
586
586
|
borderRadius: string;
|
|
587
587
|
};
|
|
588
|
+
width?: string;
|
|
589
|
+
height?: string;
|
|
588
590
|
};
|
|
589
591
|
copyrightText: {
|
|
590
592
|
fontSize: string;
|
|
@@ -737,6 +739,13 @@ declare type ThemeComponent = {
|
|
|
737
739
|
backgroundColor: string;
|
|
738
740
|
borderRadius: string;
|
|
739
741
|
};
|
|
742
|
+
tooltip: {
|
|
743
|
+
margin: string;
|
|
744
|
+
text: {
|
|
745
|
+
alignment: string;
|
|
746
|
+
maxWidth: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
740
749
|
};
|
|
741
750
|
};
|
|
742
751
|
declare type ThemeTypography = {
|
|
@@ -786,6 +795,41 @@ declare type ThemeAssets = {
|
|
|
786
795
|
width: string;
|
|
787
796
|
height: string;
|
|
788
797
|
};
|
|
798
|
+
tyImage?: {
|
|
799
|
+
url: string;
|
|
800
|
+
width: string;
|
|
801
|
+
height: string;
|
|
802
|
+
};
|
|
803
|
+
appleImage?: {
|
|
804
|
+
url: string;
|
|
805
|
+
width: string;
|
|
806
|
+
height: string;
|
|
807
|
+
};
|
|
808
|
+
spotifyImage?: {
|
|
809
|
+
url: string;
|
|
810
|
+
width: string;
|
|
811
|
+
height: string;
|
|
812
|
+
};
|
|
813
|
+
instagramImage?: {
|
|
814
|
+
url: string;
|
|
815
|
+
width: string;
|
|
816
|
+
height: string;
|
|
817
|
+
};
|
|
818
|
+
facebookImage?: {
|
|
819
|
+
url: string;
|
|
820
|
+
width: string;
|
|
821
|
+
height: string;
|
|
822
|
+
};
|
|
823
|
+
pinterestImage?: {
|
|
824
|
+
url: string;
|
|
825
|
+
width: string;
|
|
826
|
+
height: string;
|
|
827
|
+
};
|
|
828
|
+
youtubeImage?: {
|
|
829
|
+
url: string;
|
|
830
|
+
width: string;
|
|
831
|
+
height: string;
|
|
832
|
+
};
|
|
789
833
|
};
|
|
790
834
|
[key: string]: any;
|
|
791
835
|
};
|
|
@@ -214,7 +214,7 @@ var thebodcon = {
|
|
|
214
214
|
positive: { color: '#2f806a', contrast: '--colors-shades-white-color' },
|
|
215
215
|
urgent: { color: '#D82A2D', contrast: '--colors-shades-white-color' },
|
|
216
216
|
attention: { color: '#F2D96F', contrast: '--colors-shades-700-color' },
|
|
217
|
-
informative: { color: '#
|
|
217
|
+
informative: { color: '#311C85', contrast: '--colors-shades-700-color' },
|
|
218
218
|
},
|
|
219
219
|
border: {
|
|
220
220
|
color: '',
|
|
@@ -437,7 +437,7 @@ var thebodcon = {
|
|
|
437
437
|
},
|
|
438
438
|
size: {
|
|
439
439
|
large: {
|
|
440
|
-
width: '
|
|
440
|
+
width: '2.8rem',
|
|
441
441
|
height: '1.8rem',
|
|
442
442
|
borderRadius: '0.25rem',
|
|
443
443
|
borderWidth: '0.094rem',
|
|
@@ -679,6 +679,8 @@ var thebodcon = {
|
|
|
679
679
|
button: {
|
|
680
680
|
borderRadius: '8px',
|
|
681
681
|
},
|
|
682
|
+
width: '590px',
|
|
683
|
+
height: '82px',
|
|
682
684
|
},
|
|
683
685
|
copyrightText: {
|
|
684
686
|
fontSize: '16px',
|
|
@@ -818,6 +820,13 @@ var thebodcon = {
|
|
|
818
820
|
backgroundColor: '--colors-semantic-urgent-color',
|
|
819
821
|
borderRadius: '5px',
|
|
820
822
|
},
|
|
823
|
+
tooltip: {
|
|
824
|
+
margin: '5px 0 0 5px',
|
|
825
|
+
text: {
|
|
826
|
+
alignment: 'left',
|
|
827
|
+
maxWidth: '243px',
|
|
828
|
+
},
|
|
829
|
+
},
|
|
821
830
|
},
|
|
822
831
|
},
|
|
823
832
|
typography: {
|
|
@@ -1028,18 +1037,53 @@ var thebodcon = {
|
|
|
1028
1037
|
favicon: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@main/images/thebodcon/thebodcon_favicon.png',
|
|
1029
1038
|
logo: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@main/images/thebodcon/thebodcon_logo.svg',
|
|
1030
1039
|
logoSize: {
|
|
1031
|
-
width: '
|
|
1040
|
+
width: '102',
|
|
1032
1041
|
height: '64',
|
|
1033
1042
|
},
|
|
1034
1043
|
upsellLogo: {
|
|
1035
1044
|
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@main/images/thebodcon/thebodcon_logo.svg',
|
|
1036
|
-
width: '
|
|
1037
|
-
height: '
|
|
1045
|
+
width: '97.8',
|
|
1046
|
+
height: '60',
|
|
1038
1047
|
},
|
|
1039
1048
|
tyLogo: {
|
|
1040
1049
|
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@main/images/thebodcon/thebodcon_logo.svg',
|
|
1041
|
-
width: '
|
|
1042
|
-
height: '
|
|
1050
|
+
width: '102',
|
|
1051
|
+
height: '64',
|
|
1052
|
+
},
|
|
1053
|
+
tyImage: {
|
|
1054
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/thebodcon_podcast.jpg',
|
|
1055
|
+
width: '240',
|
|
1056
|
+
height: '240',
|
|
1057
|
+
},
|
|
1058
|
+
appleImage: {
|
|
1059
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/apple.png',
|
|
1060
|
+
width: '38.27',
|
|
1061
|
+
height: '42.03',
|
|
1062
|
+
},
|
|
1063
|
+
facebookImage: {
|
|
1064
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/facebook.svg',
|
|
1065
|
+
width: '24',
|
|
1066
|
+
height: '24',
|
|
1067
|
+
},
|
|
1068
|
+
instagramImage: {
|
|
1069
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/instagram.png',
|
|
1070
|
+
width: '24',
|
|
1071
|
+
height: '24',
|
|
1072
|
+
},
|
|
1073
|
+
pinterestImage: {
|
|
1074
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/pinterest.svg',
|
|
1075
|
+
width: '24',
|
|
1076
|
+
height: '24',
|
|
1077
|
+
},
|
|
1078
|
+
spotifyImage: {
|
|
1079
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/spotify.png',
|
|
1080
|
+
width: '33.22',
|
|
1081
|
+
height: '33.22',
|
|
1082
|
+
},
|
|
1083
|
+
youtubeImage: {
|
|
1084
|
+
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@thebodcon-typage/thebodcon/images/youtube.svg',
|
|
1085
|
+
width: '24',
|
|
1086
|
+
height: '24',
|
|
1043
1087
|
},
|
|
1044
1088
|
},
|
|
1045
1089
|
},
|
|
@@ -585,6 +585,8 @@ declare type ThemeComponent = {
|
|
|
585
585
|
button: {
|
|
586
586
|
borderRadius: string;
|
|
587
587
|
};
|
|
588
|
+
width?: string;
|
|
589
|
+
height?: string;
|
|
588
590
|
};
|
|
589
591
|
copyrightText: {
|
|
590
592
|
fontSize: string;
|
|
@@ -737,6 +739,13 @@ declare type ThemeComponent = {
|
|
|
737
739
|
backgroundColor: string;
|
|
738
740
|
borderRadius: string;
|
|
739
741
|
};
|
|
742
|
+
tooltip: {
|
|
743
|
+
margin: string;
|
|
744
|
+
text: {
|
|
745
|
+
alignment: string;
|
|
746
|
+
maxWidth: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
740
749
|
};
|
|
741
750
|
};
|
|
742
751
|
declare type ThemeTypography = {
|
|
@@ -786,6 +795,41 @@ declare type ThemeAssets = {
|
|
|
786
795
|
width: string;
|
|
787
796
|
height: string;
|
|
788
797
|
};
|
|
798
|
+
tyImage?: {
|
|
799
|
+
url: string;
|
|
800
|
+
width: string;
|
|
801
|
+
height: string;
|
|
802
|
+
};
|
|
803
|
+
appleImage?: {
|
|
804
|
+
url: string;
|
|
805
|
+
width: string;
|
|
806
|
+
height: string;
|
|
807
|
+
};
|
|
808
|
+
spotifyImage?: {
|
|
809
|
+
url: string;
|
|
810
|
+
width: string;
|
|
811
|
+
height: string;
|
|
812
|
+
};
|
|
813
|
+
instagramImage?: {
|
|
814
|
+
url: string;
|
|
815
|
+
width: string;
|
|
816
|
+
height: string;
|
|
817
|
+
};
|
|
818
|
+
facebookImage?: {
|
|
819
|
+
url: string;
|
|
820
|
+
width: string;
|
|
821
|
+
height: string;
|
|
822
|
+
};
|
|
823
|
+
pinterestImage?: {
|
|
824
|
+
url: string;
|
|
825
|
+
width: string;
|
|
826
|
+
height: string;
|
|
827
|
+
};
|
|
828
|
+
youtubeImage?: {
|
|
829
|
+
url: string;
|
|
830
|
+
width: string;
|
|
831
|
+
height: string;
|
|
832
|
+
};
|
|
789
833
|
};
|
|
790
834
|
[key: string]: any;
|
|
791
835
|
};
|
|
@@ -803,6 +803,13 @@ var tsd = {
|
|
|
803
803
|
backgroundColor: '--colors-pallete-primary-color',
|
|
804
804
|
borderRadius: '4px 4px 0px 0px',
|
|
805
805
|
},
|
|
806
|
+
tooltip: {
|
|
807
|
+
margin: '2px 0 0 5px',
|
|
808
|
+
text: {
|
|
809
|
+
alignment: 'center',
|
|
810
|
+
maxWidth: '243px',
|
|
811
|
+
},
|
|
812
|
+
},
|
|
806
813
|
},
|
|
807
814
|
},
|
|
808
815
|
typography: {
|
|
@@ -585,6 +585,8 @@ declare type ThemeComponent = {
|
|
|
585
585
|
button: {
|
|
586
586
|
borderRadius: string;
|
|
587
587
|
};
|
|
588
|
+
width?: string;
|
|
589
|
+
height?: string;
|
|
588
590
|
};
|
|
589
591
|
copyrightText: {
|
|
590
592
|
fontSize: string;
|
|
@@ -737,6 +739,13 @@ declare type ThemeComponent = {
|
|
|
737
739
|
backgroundColor: string;
|
|
738
740
|
borderRadius: string;
|
|
739
741
|
};
|
|
742
|
+
tooltip: {
|
|
743
|
+
margin: string;
|
|
744
|
+
text: {
|
|
745
|
+
alignment: string;
|
|
746
|
+
maxWidth: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
740
749
|
};
|
|
741
750
|
};
|
|
742
751
|
declare type ThemeTypography = {
|
|
@@ -786,6 +795,41 @@ declare type ThemeAssets = {
|
|
|
786
795
|
width: string;
|
|
787
796
|
height: string;
|
|
788
797
|
};
|
|
798
|
+
tyImage?: {
|
|
799
|
+
url: string;
|
|
800
|
+
width: string;
|
|
801
|
+
height: string;
|
|
802
|
+
};
|
|
803
|
+
appleImage?: {
|
|
804
|
+
url: string;
|
|
805
|
+
width: string;
|
|
806
|
+
height: string;
|
|
807
|
+
};
|
|
808
|
+
spotifyImage?: {
|
|
809
|
+
url: string;
|
|
810
|
+
width: string;
|
|
811
|
+
height: string;
|
|
812
|
+
};
|
|
813
|
+
instagramImage?: {
|
|
814
|
+
url: string;
|
|
815
|
+
width: string;
|
|
816
|
+
height: string;
|
|
817
|
+
};
|
|
818
|
+
facebookImage?: {
|
|
819
|
+
url: string;
|
|
820
|
+
width: string;
|
|
821
|
+
height: string;
|
|
822
|
+
};
|
|
823
|
+
pinterestImage?: {
|
|
824
|
+
url: string;
|
|
825
|
+
width: string;
|
|
826
|
+
height: string;
|
|
827
|
+
};
|
|
828
|
+
youtubeImage?: {
|
|
829
|
+
url: string;
|
|
830
|
+
width: string;
|
|
831
|
+
height: string;
|
|
832
|
+
};
|
|
789
833
|
};
|
|
790
834
|
[key: string]: any;
|
|
791
835
|
};
|
|
@@ -910,6 +910,13 @@ var truekind = {
|
|
|
910
910
|
backgroundColor: '--colors-semantic-urgent-color',
|
|
911
911
|
borderRadius: '5px',
|
|
912
912
|
},
|
|
913
|
+
tooltip: {
|
|
914
|
+
margin: '5px 0 0 5px',
|
|
915
|
+
text: {
|
|
916
|
+
alignment: 'left',
|
|
917
|
+
maxWidth: '243px',
|
|
918
|
+
},
|
|
919
|
+
},
|
|
913
920
|
},
|
|
914
921
|
},
|
|
915
922
|
fonts: {
|
package/package.json
CHANGED