@thryveai/theme-interfaces 2.8.49 → 2.8.51
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.
- package/dist/JSONSchemas/index.d.ts +226 -163
- package/dist/JSONSchemas/index.js +446 -383
- package/dist/interfaces/default-theme.interface.d.ts +8 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -1
- package/dist/storefront/commonSharedSettings.js +1 -1
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSharedSettings.js +1 -1
- package/dist/storefront/defaultThemeStorefront.js +17 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DeepPartial } from "../index";
|
|
2
2
|
import { IconNames } from "./icons.interfaces";
|
|
3
|
+
import { IAttributeLabelVariants } from "./shared-settings.interfaces";
|
|
3
4
|
export interface IDefaultTheme extends IInitializedEmptyDefaultTheme {
|
|
4
5
|
theme: IDefaultThemeInterface;
|
|
5
6
|
images: IDefaultThemeImages;
|
|
@@ -223,6 +224,13 @@ export interface IDefaultThemeInterface {
|
|
|
223
224
|
color: string;
|
|
224
225
|
bgColor: string;
|
|
225
226
|
};
|
|
227
|
+
shoppingLabels: {
|
|
228
|
+
[key in IAttributeLabelVariants]: {
|
|
229
|
+
textColor: string;
|
|
230
|
+
iconColor: string;
|
|
231
|
+
backgroundColor: string;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
226
234
|
};
|
|
227
235
|
accountPage: {
|
|
228
236
|
passwordRequirements: {
|
|
@@ -25,7 +25,7 @@ export declare type IAttributeLabelVariants = "info" | "warning" | "critical";
|
|
|
25
25
|
export interface ISharedFeatures {
|
|
26
26
|
recommendedSubstitutions: IRecommendedSubstitutions;
|
|
27
27
|
multilingual: boolean;
|
|
28
|
-
|
|
28
|
+
unattendedDeliveryDefaultValue: boolean;
|
|
29
29
|
specialRequestItems: ISpecialRequestItems;
|
|
30
30
|
couponGallery: ICouponGallery;
|
|
31
31
|
flyerConfiguration: IFlyerConfiguration | null;
|