@open-tender/types 0.0.42 → 0.0.43
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.
|
@@ -564,6 +564,7 @@ export interface ConfigThemeInputLabel {
|
|
|
564
564
|
offset: string;
|
|
565
565
|
padding: string;
|
|
566
566
|
top: string;
|
|
567
|
+
fontSizeMobile: string;
|
|
567
568
|
}
|
|
568
569
|
export interface ConfigThemeInput {
|
|
569
570
|
bgColor: string;
|
|
@@ -778,6 +779,8 @@ export interface ConfigTheme {
|
|
|
778
779
|
bgColor: string;
|
|
779
780
|
color: string;
|
|
780
781
|
};
|
|
781
|
-
welcome: ConfigThemeWelcome
|
|
782
|
+
welcome: ConfigThemeWelcome & {
|
|
783
|
+
mobile: ConfigThemeWelcome;
|
|
784
|
+
};
|
|
782
785
|
}
|
|
783
786
|
export {};
|
|
@@ -564,6 +564,7 @@ export interface ConfigThemeInputLabel {
|
|
|
564
564
|
offset: string;
|
|
565
565
|
padding: string;
|
|
566
566
|
top: string;
|
|
567
|
+
fontSizeMobile: string;
|
|
567
568
|
}
|
|
568
569
|
export interface ConfigThemeInput {
|
|
569
570
|
bgColor: string;
|
|
@@ -778,6 +779,8 @@ export interface ConfigTheme {
|
|
|
778
779
|
bgColor: string;
|
|
779
780
|
color: string;
|
|
780
781
|
};
|
|
781
|
-
welcome: ConfigThemeWelcome
|
|
782
|
+
welcome: ConfigThemeWelcome & {
|
|
783
|
+
mobile: ConfigThemeWelcome;
|
|
784
|
+
};
|
|
782
785
|
}
|
|
783
786
|
export {};
|
package/package.json
CHANGED