@open-tender/types 0.4.148 → 0.4.150
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.
|
@@ -230,6 +230,7 @@ export interface ConfigContent {
|
|
|
230
230
|
title: string;
|
|
231
231
|
videoUrl: string;
|
|
232
232
|
videoUrlMobile: string;
|
|
233
|
+
useAppHomeHeading: boolean;
|
|
233
234
|
};
|
|
234
235
|
accountHistory: ConfigContentField;
|
|
235
236
|
accountSettings: ConfigContentField;
|
|
@@ -328,6 +329,7 @@ export interface ConfigContent {
|
|
|
328
329
|
title: string;
|
|
329
330
|
videoUrl: string;
|
|
330
331
|
videoUrlMobile: string;
|
|
332
|
+
useAppHomeHeading: boolean;
|
|
331
333
|
};
|
|
332
334
|
home: ConfigContentField & {
|
|
333
335
|
background: string;
|
|
@@ -23,6 +23,11 @@ export interface ThemeColorsBase extends Record<string, string> {
|
|
|
23
23
|
}
|
|
24
24
|
export interface ThemeBackgroundColors extends ThemeColorsBase {
|
|
25
25
|
highlight: string;
|
|
26
|
+
hamburgerMenu: string;
|
|
27
|
+
home: string;
|
|
28
|
+
checkout: string;
|
|
29
|
+
tabNavigator: string;
|
|
30
|
+
homeIcon: string;
|
|
26
31
|
}
|
|
27
32
|
export interface ThemeBorder extends Record<string, string> {
|
|
28
33
|
color: string;
|
|
@@ -170,6 +175,7 @@ export interface ThemeCategory extends Record<string, string | number | boolean>
|
|
|
170
175
|
imageRatio: number;
|
|
171
176
|
imageScale: number;
|
|
172
177
|
imageScaleHover: number;
|
|
178
|
+
imageBoxShadow: string;
|
|
173
179
|
justifyContent: ThemeJustifyContent;
|
|
174
180
|
lineHeight: string;
|
|
175
181
|
lineMargin: string;
|
|
@@ -696,9 +702,9 @@ export declare type ThemeLoyaltyAccountWidgetType = 'ACCOUNT_SUMMERY' | 'WELCOME
|
|
|
696
702
|
export interface ThemeLoyaltyAccountWidget {
|
|
697
703
|
type: ThemeLoyaltyAccountWidgetType;
|
|
698
704
|
bgColor: string;
|
|
699
|
-
borderRadius:
|
|
705
|
+
borderRadius: string;
|
|
700
706
|
boxShadow: string;
|
|
701
|
-
padding:
|
|
707
|
+
padding: string;
|
|
702
708
|
}
|
|
703
709
|
export interface ThemeLoyaltyPointsShopCard {
|
|
704
710
|
padding: string;
|
|
@@ -230,6 +230,7 @@ export interface ConfigContent {
|
|
|
230
230
|
title: string;
|
|
231
231
|
videoUrl: string;
|
|
232
232
|
videoUrlMobile: string;
|
|
233
|
+
useAppHomeHeading: boolean;
|
|
233
234
|
};
|
|
234
235
|
accountHistory: ConfigContentField;
|
|
235
236
|
accountSettings: ConfigContentField;
|
|
@@ -328,6 +329,7 @@ export interface ConfigContent {
|
|
|
328
329
|
title: string;
|
|
329
330
|
videoUrl: string;
|
|
330
331
|
videoUrlMobile: string;
|
|
332
|
+
useAppHomeHeading: boolean;
|
|
331
333
|
};
|
|
332
334
|
home: ConfigContentField & {
|
|
333
335
|
background: string;
|
|
@@ -23,6 +23,11 @@ export interface ThemeColorsBase extends Record<string, string> {
|
|
|
23
23
|
}
|
|
24
24
|
export interface ThemeBackgroundColors extends ThemeColorsBase {
|
|
25
25
|
highlight: string;
|
|
26
|
+
hamburgerMenu: string;
|
|
27
|
+
home: string;
|
|
28
|
+
checkout: string;
|
|
29
|
+
tabNavigator: string;
|
|
30
|
+
homeIcon: string;
|
|
26
31
|
}
|
|
27
32
|
export interface ThemeBorder extends Record<string, string> {
|
|
28
33
|
color: string;
|
|
@@ -170,6 +175,7 @@ export interface ThemeCategory extends Record<string, string | number | boolean>
|
|
|
170
175
|
imageRatio: number;
|
|
171
176
|
imageScale: number;
|
|
172
177
|
imageScaleHover: number;
|
|
178
|
+
imageBoxShadow: string;
|
|
173
179
|
justifyContent: ThemeJustifyContent;
|
|
174
180
|
lineHeight: string;
|
|
175
181
|
lineMargin: string;
|
|
@@ -696,9 +702,9 @@ export declare type ThemeLoyaltyAccountWidgetType = 'ACCOUNT_SUMMERY' | 'WELCOME
|
|
|
696
702
|
export interface ThemeLoyaltyAccountWidget {
|
|
697
703
|
type: ThemeLoyaltyAccountWidgetType;
|
|
698
704
|
bgColor: string;
|
|
699
|
-
borderRadius:
|
|
705
|
+
borderRadius: string;
|
|
700
706
|
boxShadow: string;
|
|
701
|
-
padding:
|
|
707
|
+
padding: string;
|
|
702
708
|
}
|
|
703
709
|
export interface ThemeLoyaltyPointsShopCard {
|
|
704
710
|
padding: string;
|
package/package.json
CHANGED