@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",