@open-tender/types 0.0.41 → 0.0.42

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,14 @@ 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
+ }
560
568
  export interface ConfigThemeInput {
561
569
  bgColor: string;
562
570
  bgColorFocus: string;
@@ -576,14 +584,7 @@ export interface ConfigThemeInput {
576
584
  fontSmoothing: string;
577
585
  iconLeft: string;
578
586
  iconPadding: string;
579
- label: {
580
- fontSize: string;
581
- left: string;
582
- lineHeight: string;
583
- offset: string;
584
- padding: string;
585
- top: string;
586
- };
587
+ label: ConfigThemeInputLabel;
587
588
  letterSpacing: string;
588
589
  lineHeight: string;
589
590
  padding: string;
@@ -557,6 +557,14 @@ 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
+ }
560
568
  export interface ConfigThemeInput {
561
569
  bgColor: string;
562
570
  bgColorFocus: string;
@@ -576,14 +584,7 @@ export interface ConfigThemeInput {
576
584
  fontSmoothing: string;
577
585
  iconLeft: string;
578
586
  iconPadding: string;
579
- label: {
580
- fontSize: string;
581
- left: string;
582
- lineHeight: string;
583
- offset: string;
584
- padding: string;
585
- top: string;
586
- };
587
+ label: ConfigThemeInputLabel;
587
588
  letterSpacing: string;
588
589
  lineHeight: string;
589
590
  padding: string;
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.42",
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",