@open-tender/types 0.4.146 → 0.4.147
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.
|
@@ -692,18 +692,28 @@ export interface ThemeWelcome extends Record<string, ThemeWelcomeStyles> {
|
|
|
692
692
|
desktop: ThemeWelcomeStyles;
|
|
693
693
|
mobile: ThemeWelcomeStyles;
|
|
694
694
|
}
|
|
695
|
-
export declare type
|
|
696
|
-
export interface
|
|
697
|
-
type:
|
|
695
|
+
export declare type ThemeLoyaltyAccountWidgetType = 'ACCOUNT_SUMMERY' | 'WELCOME_BACK';
|
|
696
|
+
export interface ThemeLoyaltyAccountWidget {
|
|
697
|
+
type: ThemeLoyaltyAccountWidgetType;
|
|
698
698
|
bgColor: string;
|
|
699
699
|
borderRadius: number;
|
|
700
700
|
boxShadow: string;
|
|
701
701
|
padding: number;
|
|
702
702
|
}
|
|
703
|
+
export interface ThemeLoyaltyPointsShopCard {
|
|
704
|
+
padding: string;
|
|
705
|
+
paddingMobile: string;
|
|
706
|
+
imageBoxShadow: string;
|
|
707
|
+
}
|
|
708
|
+
export interface ThemeLoyaltyRewardCard {
|
|
709
|
+
padding: string;
|
|
710
|
+
paddingMobile: string;
|
|
711
|
+
imageBoxShadow: string;
|
|
712
|
+
}
|
|
703
713
|
export interface ThemeLoyalty {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
714
|
+
accountWidget: ThemeLoyaltyAccountWidget;
|
|
715
|
+
pointsShopCard: ThemeLoyaltyPointsShopCard;
|
|
716
|
+
rewardCard: ThemeLoyaltyRewardCard;
|
|
707
717
|
}
|
|
708
718
|
export interface Theme {
|
|
709
719
|
alert: ThemeAlert;
|
|
@@ -692,18 +692,28 @@ export interface ThemeWelcome extends Record<string, ThemeWelcomeStyles> {
|
|
|
692
692
|
desktop: ThemeWelcomeStyles;
|
|
693
693
|
mobile: ThemeWelcomeStyles;
|
|
694
694
|
}
|
|
695
|
-
export declare type
|
|
696
|
-
export interface
|
|
697
|
-
type:
|
|
695
|
+
export declare type ThemeLoyaltyAccountWidgetType = 'ACCOUNT_SUMMERY' | 'WELCOME_BACK';
|
|
696
|
+
export interface ThemeLoyaltyAccountWidget {
|
|
697
|
+
type: ThemeLoyaltyAccountWidgetType;
|
|
698
698
|
bgColor: string;
|
|
699
699
|
borderRadius: number;
|
|
700
700
|
boxShadow: string;
|
|
701
701
|
padding: number;
|
|
702
702
|
}
|
|
703
|
+
export interface ThemeLoyaltyPointsShopCard {
|
|
704
|
+
padding: string;
|
|
705
|
+
paddingMobile: string;
|
|
706
|
+
imageBoxShadow: string;
|
|
707
|
+
}
|
|
708
|
+
export interface ThemeLoyaltyRewardCard {
|
|
709
|
+
padding: string;
|
|
710
|
+
paddingMobile: string;
|
|
711
|
+
imageBoxShadow: string;
|
|
712
|
+
}
|
|
703
713
|
export interface ThemeLoyalty {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
714
|
+
accountWidget: ThemeLoyaltyAccountWidget;
|
|
715
|
+
pointsShopCard: ThemeLoyaltyPointsShopCard;
|
|
716
|
+
rewardCard: ThemeLoyaltyRewardCard;
|
|
707
717
|
}
|
|
708
718
|
export interface Theme {
|
|
709
719
|
alert: ThemeAlert;
|
package/package.json
CHANGED