@open-tender/types 0.2.52 → 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';
|
|
@@ -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';
|
package/package.json
CHANGED