@trafilea/afrodita-components 5.0.0-beta.246 → 5.0.0-beta.248
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 -1
- package/build/index.esm.js +155 -108
- package/build/index.esm.js.map +1 -1
- package/build/index.js +155 -108
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +15 -0
- package/build/theme/revel.theme.js +18 -0
- package/build/theme/shapermint.theme.d.ts +15 -0
- package/build/theme/shapermint.theme.js +18 -0
- package/build/theme/thespadr.theme.d.ts +15 -0
- package/build/theme/thespadr.theme.js +28 -5
- package/build/theme/truekind.theme.d.ts +15 -0
- package/build/theme/truekind.theme.js +18 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ declare type ImageType = {
|
|
|
83
83
|
key: string;
|
|
84
84
|
imageUrl: string;
|
|
85
85
|
alt: string;
|
|
86
|
+
thumbnailUrl?: string;
|
|
86
87
|
};
|
|
87
88
|
interface IconWithOpacityProps extends IconProps {
|
|
88
89
|
opacity?: number;
|
|
@@ -1837,6 +1838,11 @@ declare type ThemeComponent = {
|
|
|
1837
1838
|
lineHeight: string;
|
|
1838
1839
|
};
|
|
1839
1840
|
deliveryDetails: {
|
|
1841
|
+
title: {
|
|
1842
|
+
fontSize: string;
|
|
1843
|
+
lineHeight: string;
|
|
1844
|
+
weight: number;
|
|
1845
|
+
};
|
|
1840
1846
|
note: {
|
|
1841
1847
|
accentColor: string;
|
|
1842
1848
|
color: string;
|
|
@@ -1891,6 +1897,16 @@ declare type ThemeAssets = {
|
|
|
1891
1897
|
width: string;
|
|
1892
1898
|
height: string;
|
|
1893
1899
|
};
|
|
1900
|
+
upsellLogo?: {
|
|
1901
|
+
url: string;
|
|
1902
|
+
width: string;
|
|
1903
|
+
height: string;
|
|
1904
|
+
};
|
|
1905
|
+
tyLogo?: {
|
|
1906
|
+
url: string;
|
|
1907
|
+
width: string;
|
|
1908
|
+
height: string;
|
|
1909
|
+
};
|
|
1894
1910
|
};
|
|
1895
1911
|
[key: string]: any;
|
|
1896
1912
|
};
|
|
@@ -2389,7 +2405,7 @@ declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextPro
|
|
|
2389
2405
|
declare type TextHeroProps = {
|
|
2390
2406
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
2391
2407
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
2392
|
-
size?: 'regular';
|
|
2408
|
+
size?: 'regular' | 'xsmall';
|
|
2393
2409
|
underline?: never;
|
|
2394
2410
|
disabled?: never;
|
|
2395
2411
|
wide?: never;
|