@trafilea/afrodita-components 6.4.0 → 6.4.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 +17 -8
- package/build/index.esm.js +306 -318
- package/build/index.esm.js.map +1 -1
- package/build/index.js +306 -318
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +4 -0
- package/build/theme/shapermint.theme.d.ts +4 -0
- package/build/theme/thespadr.theme.d.ts +4 -0
- package/build/theme/thespadr.theme.js +5 -1
- package/build/theme/truekind.theme.d.ts +4 -0
- package/package.json +1 -1
|
@@ -566,9 +566,13 @@ declare type ThemeComponent = {
|
|
|
566
566
|
borderRadius?: string;
|
|
567
567
|
maxWidth?: string;
|
|
568
568
|
onMobile: {
|
|
569
|
+
position?: string;
|
|
569
570
|
maxWidth?: string;
|
|
570
571
|
padding?: string;
|
|
571
572
|
backgroundColor?: string;
|
|
573
|
+
titleHeight?: string;
|
|
574
|
+
boxShadow?: string;
|
|
575
|
+
borderRadius?: string;
|
|
572
576
|
};
|
|
573
577
|
};
|
|
574
578
|
expressCheckout: {
|
|
@@ -566,9 +566,13 @@ declare type ThemeComponent = {
|
|
|
566
566
|
borderRadius?: string;
|
|
567
567
|
maxWidth?: string;
|
|
568
568
|
onMobile: {
|
|
569
|
+
position?: string;
|
|
569
570
|
maxWidth?: string;
|
|
570
571
|
padding?: string;
|
|
571
572
|
backgroundColor?: string;
|
|
573
|
+
titleHeight?: string;
|
|
574
|
+
boxShadow?: string;
|
|
575
|
+
borderRadius?: string;
|
|
572
576
|
};
|
|
573
577
|
};
|
|
574
578
|
expressCheckout: {
|
|
@@ -566,9 +566,13 @@ declare type ThemeComponent = {
|
|
|
566
566
|
borderRadius?: string;
|
|
567
567
|
maxWidth?: string;
|
|
568
568
|
onMobile: {
|
|
569
|
+
position?: string;
|
|
569
570
|
maxWidth?: string;
|
|
570
571
|
padding?: string;
|
|
571
572
|
backgroundColor?: string;
|
|
573
|
+
titleHeight?: string;
|
|
574
|
+
boxShadow?: string;
|
|
575
|
+
borderRadius?: string;
|
|
572
576
|
};
|
|
573
577
|
};
|
|
574
578
|
expressCheckout: {
|
|
@@ -635,9 +635,13 @@ var tsd = {
|
|
|
635
635
|
borderRadius: '--radius-regular',
|
|
636
636
|
maxWidth: '100%',
|
|
637
637
|
onMobile: {
|
|
638
|
+
position: 'relative',
|
|
638
639
|
maxWidth: '100%',
|
|
639
640
|
padding: '15px',
|
|
640
|
-
backgroundColor: '--colors-shades-
|
|
641
|
+
backgroundColor: '--colors-shades-50-color',
|
|
642
|
+
titleHeight: '60px',
|
|
643
|
+
boxShadow: '0px 5px 15px 0px rgba(0, 0, 0, 0.10)',
|
|
644
|
+
borderRadius: '0px 0px 12px 12px',
|
|
641
645
|
},
|
|
642
646
|
},
|
|
643
647
|
expressCheckout: {
|
|
@@ -566,9 +566,13 @@ declare type ThemeComponent = {
|
|
|
566
566
|
borderRadius?: string;
|
|
567
567
|
maxWidth?: string;
|
|
568
568
|
onMobile: {
|
|
569
|
+
position?: string;
|
|
569
570
|
maxWidth?: string;
|
|
570
571
|
padding?: string;
|
|
571
572
|
backgroundColor?: string;
|
|
573
|
+
titleHeight?: string;
|
|
574
|
+
boxShadow?: string;
|
|
575
|
+
borderRadius?: string;
|
|
572
576
|
};
|
|
573
577
|
};
|
|
574
578
|
expressCheckout: {
|
package/package.json
CHANGED