@thryveai/theme-interfaces 2.8.41 → 2.8.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.
|
@@ -249,6 +249,7 @@ export interface IDefaultThemeInterface {
|
|
|
249
249
|
input: ILoyaltyCardInput;
|
|
250
250
|
infoList: ILoyaltyCardInfoList;
|
|
251
251
|
};
|
|
252
|
+
loyaltyMembersPrice: ILoyaltyMembersPrice;
|
|
252
253
|
promoBadges: {
|
|
253
254
|
backgroundColor: {
|
|
254
255
|
promotion: string;
|
|
@@ -486,6 +487,7 @@ export interface IDefaultThemeInterface {
|
|
|
486
487
|
hover: IInputFields;
|
|
487
488
|
focus: IInputFields;
|
|
488
489
|
disabled: IInputFields;
|
|
490
|
+
labels: IInputFieldLabels;
|
|
489
491
|
};
|
|
490
492
|
dropdown: {
|
|
491
493
|
iconColor: string;
|
|
@@ -566,6 +568,20 @@ interface IInputFields {
|
|
|
566
568
|
color: string;
|
|
567
569
|
placeholderColor: string;
|
|
568
570
|
}
|
|
571
|
+
interface IInputFieldLabels {
|
|
572
|
+
floating: {
|
|
573
|
+
color: {
|
|
574
|
+
active: string;
|
|
575
|
+
static: string;
|
|
576
|
+
};
|
|
577
|
+
opacity: {
|
|
578
|
+
active: number;
|
|
579
|
+
static: number;
|
|
580
|
+
};
|
|
581
|
+
fontSize: string;
|
|
582
|
+
lineHeight: string;
|
|
583
|
+
};
|
|
584
|
+
}
|
|
569
585
|
interface IDropdownFields {
|
|
570
586
|
bgColor: string;
|
|
571
587
|
borderColor: string;
|
|
@@ -854,6 +870,22 @@ export interface ITimeSlot {
|
|
|
854
870
|
fontWeight: ITimeSlotStateMap<ITimeSlotVarType<IFontWeights>>;
|
|
855
871
|
};
|
|
856
872
|
}
|
|
873
|
+
export interface ILoyaltyMembersPrice {
|
|
874
|
+
label: {
|
|
875
|
+
backgroundColor: string;
|
|
876
|
+
color: string;
|
|
877
|
+
fontWeight: IFontWeights;
|
|
878
|
+
};
|
|
879
|
+
price: {
|
|
880
|
+
backgroundColor: string;
|
|
881
|
+
color: string;
|
|
882
|
+
fontWeight: IFontWeights;
|
|
883
|
+
};
|
|
884
|
+
unitPrice: {
|
|
885
|
+
color: string;
|
|
886
|
+
fontWeight: IFontWeights;
|
|
887
|
+
};
|
|
888
|
+
}
|
|
857
889
|
export declare type DefaultImagesForSchema = DeepPartial<IDefaultThemeImages>;
|
|
858
890
|
export declare type DefaultThemeForSchema = DeepPartial<IDefaultThemeInterface>;
|
|
859
891
|
export {};
|