@open-tender/types 0.2.2 → 0.2.3
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.
|
@@ -492,3 +492,11 @@ export interface Theme {
|
|
|
492
492
|
toast: ThemeAlert;
|
|
493
493
|
welcome: ThemeWelcome;
|
|
494
494
|
}
|
|
495
|
+
export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLineHeight' | 'subtitleLineHeight'> {
|
|
496
|
+
titleLineHeight: string;
|
|
497
|
+
subtitleLineHeight: string;
|
|
498
|
+
}
|
|
499
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
500
|
+
welcome: ThemeWelcomeStylesApp;
|
|
501
|
+
item: ThemeItemStyles;
|
|
502
|
+
}
|
|
@@ -492,3 +492,11 @@ export interface Theme {
|
|
|
492
492
|
toast: ThemeAlert;
|
|
493
493
|
welcome: ThemeWelcome;
|
|
494
494
|
}
|
|
495
|
+
export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLineHeight' | 'subtitleLineHeight'> {
|
|
496
|
+
titleLineHeight: string;
|
|
497
|
+
subtitleLineHeight: string;
|
|
498
|
+
}
|
|
499
|
+
export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
|
|
500
|
+
welcome: ThemeWelcomeStylesApp;
|
|
501
|
+
item: ThemeItemStyles;
|
|
502
|
+
}
|
package/package.json
CHANGED