@trafilea/afrodita-components 6.14.0 → 6.14.2
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 +8 -0
- package/build/index.esm.js +23 -9
- package/build/index.esm.js.map +1 -1
- package/build/index.js +23 -9
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +6 -0
- package/build/theme/revel.theme.js +7 -1
- package/build/theme/shapermint.theme.d.ts +6 -0
- package/build/theme/shapermint.theme.js +7 -1
- package/build/theme/thebodcon.theme.d.ts +6 -0
- package/build/theme/thebodcon.theme.js +7 -1
- package/build/theme/thespadr.theme.d.ts +6 -0
- package/build/theme/thespadr.theme.js +7 -1
- package/build/theme/truekind.theme.d.ts +6 -0
- package/build/theme/truekind.theme.js +7 -1
- package/package.json +1 -1
|
@@ -822,11 +822,17 @@ var revel = {
|
|
|
822
822
|
},
|
|
823
823
|
gallery: {
|
|
824
824
|
thumbnail: {
|
|
825
|
-
width: '
|
|
825
|
+
width: '100%',
|
|
826
826
|
height: '80px',
|
|
827
827
|
},
|
|
828
828
|
aspectRatio: '1/1',
|
|
829
829
|
},
|
|
830
|
+
autoship: {
|
|
831
|
+
discountTag: {
|
|
832
|
+
backgroundColor: '--colors-semantic-urgent-color',
|
|
833
|
+
borderRadius: '5px',
|
|
834
|
+
},
|
|
835
|
+
},
|
|
830
836
|
},
|
|
831
837
|
typography: {
|
|
832
838
|
config: {
|
|
@@ -798,11 +798,17 @@ var shapermint = {
|
|
|
798
798
|
},
|
|
799
799
|
gallery: {
|
|
800
800
|
thumbnail: {
|
|
801
|
-
width: '
|
|
801
|
+
width: '100%',
|
|
802
802
|
height: '80px',
|
|
803
803
|
},
|
|
804
804
|
aspectRatio: '3/4',
|
|
805
805
|
},
|
|
806
|
+
autoship: {
|
|
807
|
+
discountTag: {
|
|
808
|
+
backgroundColor: '--colors-semantic-urgent-color',
|
|
809
|
+
borderRadius: '5px',
|
|
810
|
+
},
|
|
811
|
+
},
|
|
806
812
|
},
|
|
807
813
|
typography: {
|
|
808
814
|
config: {
|
|
@@ -798,11 +798,17 @@ var thebodcon = {
|
|
|
798
798
|
},
|
|
799
799
|
gallery: {
|
|
800
800
|
thumbnail: {
|
|
801
|
-
width: '
|
|
801
|
+
width: '100%',
|
|
802
802
|
height: '80px',
|
|
803
803
|
},
|
|
804
804
|
aspectRatio: '3/4',
|
|
805
805
|
},
|
|
806
|
+
autoship: {
|
|
807
|
+
discountTag: {
|
|
808
|
+
backgroundColor: '--colors-semantic-urgent-color',
|
|
809
|
+
borderRadius: '5px',
|
|
810
|
+
},
|
|
811
|
+
},
|
|
806
812
|
},
|
|
807
813
|
typography: {
|
|
808
814
|
config: {
|
|
@@ -777,11 +777,17 @@ var tsd = {
|
|
|
777
777
|
},
|
|
778
778
|
gallery: {
|
|
779
779
|
thumbnail: {
|
|
780
|
-
width: '
|
|
780
|
+
width: '100%',
|
|
781
781
|
height: '80px',
|
|
782
782
|
},
|
|
783
783
|
aspectRatio: '3/4',
|
|
784
784
|
},
|
|
785
|
+
autoship: {
|
|
786
|
+
discountTag: {
|
|
787
|
+
backgroundColor: '--colors-pallete-primary-color',
|
|
788
|
+
borderRadius: '4px 4px 0px 0px',
|
|
789
|
+
},
|
|
790
|
+
},
|
|
785
791
|
},
|
|
786
792
|
typography: {
|
|
787
793
|
config: {
|
|
@@ -890,11 +890,17 @@ var truekind = {
|
|
|
890
890
|
},
|
|
891
891
|
gallery: {
|
|
892
892
|
thumbnail: {
|
|
893
|
-
width: '
|
|
893
|
+
width: '100%',
|
|
894
894
|
height: '80px',
|
|
895
895
|
},
|
|
896
896
|
aspectRatio: '3/4',
|
|
897
897
|
},
|
|
898
|
+
autoship: {
|
|
899
|
+
discountTag: {
|
|
900
|
+
backgroundColor: '--colors-semantic-urgent-color',
|
|
901
|
+
borderRadius: '5px',
|
|
902
|
+
},
|
|
903
|
+
},
|
|
898
904
|
},
|
|
899
905
|
fonts: {
|
|
900
906
|
url: 'https://cdn.jsdelivr.net/gh/trafilea/storefront-static@main/fonts/truekind',
|
package/package.json
CHANGED