@open-tender/types 0.2.51 → 0.2.53
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
CHANGED
|
Binary file
|
|
@@ -426,11 +426,12 @@ export interface ThemeMenuItemsContent extends Record<string, string> {
|
|
|
426
426
|
padding: string;
|
|
427
427
|
paddingMobile: string;
|
|
428
428
|
}
|
|
429
|
-
export interface ThemeMenuItemsText extends Record<string, string> {
|
|
429
|
+
export interface ThemeMenuItemsText extends Record<string, string | undefined> {
|
|
430
430
|
color: string;
|
|
431
431
|
colorHover: string;
|
|
432
432
|
fontSize: string;
|
|
433
433
|
fontSizeMobile: string;
|
|
434
|
+
lineHeight?: string;
|
|
434
435
|
}
|
|
435
436
|
export interface ThemeMenuItemsTags extends ThemeMenuItemsText {
|
|
436
437
|
displayType: 'IMAGE' | 'TEXT' | 'BOTH';
|
|
@@ -629,7 +630,8 @@ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLi
|
|
|
629
630
|
titleLineHeight: string;
|
|
630
631
|
subtitleLineHeight: string;
|
|
631
632
|
}
|
|
632
|
-
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
633
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item' | 'categories'> {
|
|
633
634
|
welcome: ThemeWelcomeStylesApp;
|
|
634
635
|
item: ThemeItemStyles;
|
|
636
|
+
categories: ThemeCategory;
|
|
635
637
|
}
|
|
@@ -426,11 +426,12 @@ export interface ThemeMenuItemsContent extends Record<string, string> {
|
|
|
426
426
|
padding: string;
|
|
427
427
|
paddingMobile: string;
|
|
428
428
|
}
|
|
429
|
-
export interface ThemeMenuItemsText extends Record<string, string> {
|
|
429
|
+
export interface ThemeMenuItemsText extends Record<string, string | undefined> {
|
|
430
430
|
color: string;
|
|
431
431
|
colorHover: string;
|
|
432
432
|
fontSize: string;
|
|
433
433
|
fontSizeMobile: string;
|
|
434
|
+
lineHeight?: string;
|
|
434
435
|
}
|
|
435
436
|
export interface ThemeMenuItemsTags extends ThemeMenuItemsText {
|
|
436
437
|
displayType: 'IMAGE' | 'TEXT' | 'BOTH';
|
|
@@ -629,7 +630,8 @@ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLi
|
|
|
629
630
|
titleLineHeight: string;
|
|
630
631
|
subtitleLineHeight: string;
|
|
631
632
|
}
|
|
632
|
-
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
633
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item' | 'categories'> {
|
|
633
634
|
welcome: ThemeWelcomeStylesApp;
|
|
634
635
|
item: ThemeItemStyles;
|
|
636
|
+
categories: ThemeCategory;
|
|
635
637
|
}
|
package/package.json
CHANGED