@open-tender/types 0.0.43 → 0.0.45
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.
|
@@ -532,6 +532,7 @@ export interface ConfigFont {
|
|
|
532
532
|
textTransform: string;
|
|
533
533
|
url: string;
|
|
534
534
|
weight: string;
|
|
535
|
+
fontSize?: string;
|
|
535
536
|
}
|
|
536
537
|
export interface ConfigItem {
|
|
537
538
|
imageHeight: string;
|
|
@@ -685,6 +686,7 @@ export interface ConfigThemeWelcome {
|
|
|
685
686
|
titleLineHeight: string;
|
|
686
687
|
titleMarginLeft: string;
|
|
687
688
|
titleSize: string;
|
|
689
|
+
mobile?: ConfigThemeWelcome;
|
|
688
690
|
}
|
|
689
691
|
export interface ConfigTheme {
|
|
690
692
|
alert: {
|
|
@@ -779,8 +781,6 @@ export interface ConfigTheme {
|
|
|
779
781
|
bgColor: string;
|
|
780
782
|
color: string;
|
|
781
783
|
};
|
|
782
|
-
welcome: ConfigThemeWelcome
|
|
783
|
-
mobile: ConfigThemeWelcome;
|
|
784
|
-
};
|
|
784
|
+
welcome: ConfigThemeWelcome;
|
|
785
785
|
}
|
|
786
786
|
export {};
|
|
@@ -532,6 +532,7 @@ export interface ConfigFont {
|
|
|
532
532
|
textTransform: string;
|
|
533
533
|
url: string;
|
|
534
534
|
weight: string;
|
|
535
|
+
fontSize?: string;
|
|
535
536
|
}
|
|
536
537
|
export interface ConfigItem {
|
|
537
538
|
imageHeight: string;
|
|
@@ -685,6 +686,7 @@ export interface ConfigThemeWelcome {
|
|
|
685
686
|
titleLineHeight: string;
|
|
686
687
|
titleMarginLeft: string;
|
|
687
688
|
titleSize: string;
|
|
689
|
+
mobile?: ConfigThemeWelcome;
|
|
688
690
|
}
|
|
689
691
|
export interface ConfigTheme {
|
|
690
692
|
alert: {
|
|
@@ -779,8 +781,6 @@ export interface ConfigTheme {
|
|
|
779
781
|
bgColor: string;
|
|
780
782
|
color: string;
|
|
781
783
|
};
|
|
782
|
-
welcome: ConfigThemeWelcome
|
|
783
|
-
mobile: ConfigThemeWelcome;
|
|
784
|
-
};
|
|
784
|
+
welcome: ConfigThemeWelcome;
|
|
785
785
|
}
|
|
786
786
|
export {};
|
package/package.json
CHANGED