@thryveai/theme-interfaces 2.8.41 → 2.8.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.
@@ -486,6 +486,7 @@ export interface IDefaultThemeInterface {
486
486
  hover: IInputFields;
487
487
  focus: IInputFields;
488
488
  disabled: IInputFields;
489
+ labels: IInputFieldLabels;
489
490
  };
490
491
  dropdown: {
491
492
  iconColor: string;
@@ -566,6 +567,20 @@ interface IInputFields {
566
567
  color: string;
567
568
  placeholderColor: string;
568
569
  }
570
+ interface IInputFieldLabels {
571
+ floating: {
572
+ color: {
573
+ active: string;
574
+ static: string;
575
+ };
576
+ opacity: {
577
+ active: number;
578
+ static: number;
579
+ };
580
+ fontSize: string;
581
+ lineHeight: string;
582
+ };
583
+ }
569
584
  interface IDropdownFields {
570
585
  bgColor: string;
571
586
  borderColor: string;