@open-tender/types 0.2.50 → 0.2.52
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/dist/.DS_Store
ADDED
|
Binary file
|
|
@@ -97,7 +97,7 @@ export declare type GuestSection = 'ANNOUNCEMENTS' | 'HERO' | 'CONTENT' | 'DEALS
|
|
|
97
97
|
export declare type GuestSections = GuestSection[];
|
|
98
98
|
export declare type AccountSection = 'ANNOUNCEMENTS' | 'HERO' | 'CONTENT' | 'LOYALTY' | 'REWARDS' | 'DEALS' | 'ORDERS' | 'GROUP_ORDERS';
|
|
99
99
|
export declare type AccountSections = AccountSection[];
|
|
100
|
-
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS'
|
|
100
|
+
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
101
101
|
export declare type MenuSections = MenuSection[];
|
|
102
102
|
export interface ConfigContent {
|
|
103
103
|
about: {
|
|
@@ -629,7 +629,8 @@ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLi
|
|
|
629
629
|
titleLineHeight: string;
|
|
630
630
|
subtitleLineHeight: string;
|
|
631
631
|
}
|
|
632
|
-
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
632
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item' | 'categories'> {
|
|
633
633
|
welcome: ThemeWelcomeStylesApp;
|
|
634
634
|
item: ThemeItemStyles;
|
|
635
|
+
categories: ThemeCategory;
|
|
635
636
|
}
|
|
@@ -97,7 +97,7 @@ export declare type GuestSection = 'ANNOUNCEMENTS' | 'HERO' | 'CONTENT' | 'DEALS
|
|
|
97
97
|
export declare type GuestSections = GuestSection[];
|
|
98
98
|
export declare type AccountSection = 'ANNOUNCEMENTS' | 'HERO' | 'CONTENT' | 'LOYALTY' | 'REWARDS' | 'DEALS' | 'ORDERS' | 'GROUP_ORDERS';
|
|
99
99
|
export declare type AccountSections = AccountSection[];
|
|
100
|
-
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS'
|
|
100
|
+
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
101
101
|
export declare type MenuSections = MenuSection[];
|
|
102
102
|
export interface ConfigContent {
|
|
103
103
|
about: {
|
|
@@ -629,7 +629,8 @@ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLi
|
|
|
629
629
|
titleLineHeight: string;
|
|
630
630
|
subtitleLineHeight: string;
|
|
631
631
|
}
|
|
632
|
-
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
632
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item' | 'categories'> {
|
|
633
633
|
welcome: ThemeWelcomeStylesApp;
|
|
634
634
|
item: ThemeItemStyles;
|
|
635
|
+
categories: ThemeCategory;
|
|
635
636
|
}
|
package/package.json
CHANGED