@open-tender/types 0.0.41 → 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.
@@ -557,6 +557,15 @@ export interface ConfigThemeFont {
557
557
  [keys in ConfigFontSizes]: string;
558
558
  };
559
559
  }
560
+ export interface ConfigThemeInputLabel {
561
+ fontSize: string;
562
+ left: string;
563
+ lineHeight: string;
564
+ offset: string;
565
+ padding: string;
566
+ top: string;
567
+ fontSizeMobile: string;
568
+ }
560
569
  export interface ConfigThemeInput {
561
570
  bgColor: string;
562
571
  bgColorFocus: string;
@@ -576,14 +585,7 @@ export interface ConfigThemeInput {
576
585
  fontSmoothing: string;
577
586
  iconLeft: string;
578
587
  iconPadding: string;
579
- label: {
580
- fontSize: string;
581
- left: string;
582
- lineHeight: string;
583
- offset: string;
584
- padding: string;
585
- top: string;
586
- };
588
+ label: ConfigThemeInputLabel;
587
589
  letterSpacing: string;
588
590
  lineHeight: string;
589
591
  padding: string;
@@ -777,6 +779,8 @@ export interface ConfigTheme {
777
779
  bgColor: string;
778
780
  color: string;
779
781
  };
780
- welcome: ConfigThemeWelcome;
782
+ welcome: ConfigThemeWelcome & {
783
+ mobile: ConfigThemeWelcome;
784
+ };
781
785
  }
782
786
  export {};
@@ -557,6 +557,15 @@ export interface ConfigThemeFont {
557
557
  [keys in ConfigFontSizes]: string;
558
558
  };
559
559
  }
560
+ export interface ConfigThemeInputLabel {
561
+ fontSize: string;
562
+ left: string;
563
+ lineHeight: string;
564
+ offset: string;
565
+ padding: string;
566
+ top: string;
567
+ fontSizeMobile: string;
568
+ }
560
569
  export interface ConfigThemeInput {
561
570
  bgColor: string;
562
571
  bgColorFocus: string;
@@ -576,14 +585,7 @@ export interface ConfigThemeInput {
576
585
  fontSmoothing: string;
577
586
  iconLeft: string;
578
587
  iconPadding: string;
579
- label: {
580
- fontSize: string;
581
- left: string;
582
- lineHeight: string;
583
- offset: string;
584
- padding: string;
585
- top: string;
586
- };
588
+ label: ConfigThemeInputLabel;
587
589
  letterSpacing: string;
588
590
  lineHeight: string;
589
591
  padding: string;
@@ -777,6 +779,8 @@ export interface ConfigTheme {
777
779
  bgColor: string;
778
780
  color: string;
779
781
  };
780
- welcome: ConfigThemeWelcome;
782
+ welcome: ConfigThemeWelcome & {
783
+ mobile: ConfigThemeWelcome;
784
+ };
781
785
  }
782
786
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.41",
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",