@thryveai/theme-interfaces 2.7.26 → 2.7.27

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.
@@ -461,6 +461,17 @@ export interface IDefaultThemeInterface {
461
461
  default?: string;
462
462
  disabled?: string;
463
463
  };
464
+ cms: {
465
+ heading: {
466
+ color: string;
467
+ };
468
+ subheading: {
469
+ color: string;
470
+ };
471
+ bodyText: {
472
+ color: string;
473
+ };
474
+ };
464
475
  logoHeight: IDefaultThemeLogoHeights;
465
476
  stsThemeStyles?: ISTSDefaultThemeInterface;
466
477
  stsLogoWidth?: string;
@@ -2,6 +2,6 @@ export declare type IIconsObject = {
2
2
  [iconName in IconNames]: string;
3
3
  };
4
4
  export declare type PaymentTypesLogos = "AmExpCard" | "AmExpLogo" | "Comodo" | "DiscoverCard" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified";
5
- export declare type PaymentCards = "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard";
5
+ export declare type PaymentCards = "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard";
6
6
  export declare type IconNames = "AccountOutline" | "AccountSolid" | "Addresses" | "ApplePay" | "ArrowDown" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "EBT" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "GooglePay" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "PayPal" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "Remove" | "Reserve" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube" | PaymentTypesLogos | PaymentCards | ProductAttributeIcons;
7
7
  export declare type ProductAttributeIcons = "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain";
@@ -464,6 +464,17 @@ export interface IThemeInterface {
464
464
  default?: string;
465
465
  disabled?: string;
466
466
  };
467
+ cms?: {
468
+ heading: {
469
+ color: string;
470
+ };
471
+ subheading: {
472
+ color: string;
473
+ };
474
+ bodyText: {
475
+ color: string;
476
+ };
477
+ };
467
478
  logoHeight?: IThemeLogoHeights;
468
479
  stsThemeStyles?: ISTSThemeInterface;
469
480
  stsLogoWidth?: string;
@@ -70,6 +70,7 @@ var DefaultConfigSFUI = {
70
70
  MasterCard: true,
71
71
  MasterCardDebit: true,
72
72
  VisaCard: true,
73
+ PayPal: false,
73
74
  ApplePay: false,
74
75
  GooglePay: false,
75
76
  EBT: false,
@@ -1108,6 +1108,17 @@ var DefaultThemeSFUI = function (colors) {
1108
1108
  productGrid: {
1109
1109
  borderColor: colors.greyscale2,
1110
1110
  },
1111
+ cms: {
1112
+ heading: {
1113
+ color: colors.greyscale5,
1114
+ },
1115
+ subheading: {
1116
+ color: colors.greyscale4,
1117
+ },
1118
+ bodyText: {
1119
+ color: colors.greyscale5,
1120
+ },
1121
+ },
1111
1122
  logoHeight: {
1112
1123
  header: {
1113
1124
  desktop: "34px",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.26",
3
+ "version": "2.7.27",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",