@sc-360-v2/storefront-cms-library 0.3.25 → 0.3.26
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/builder.js +1 -1
- package/dist/cart-details.scss +1 -1
- package/dist/types/builder/elements/cart-summary/index.d.ts +27 -0
- package/dist/types/builder/elements/form-builder/index.d.ts +114 -20
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +321 -14
- package/package.json +1 -1
package/dist/cart-details.scss
CHANGED
|
@@ -269,7 +269,7 @@ $defaultValues: (
|
|
|
269
269
|
border-color: var(--_ctm-dn-ct-im-ss-br-cr);
|
|
270
270
|
border-width: var(--_ctm-dn-ct-im-ss-br-wh);
|
|
271
271
|
|
|
272
|
-
@include prepareMediaQueries($defaultValues);
|
|
272
|
+
// @include prepareMediaQueries($defaultValues);
|
|
273
273
|
|
|
274
274
|
.cart_product_wrapper {
|
|
275
275
|
display: flex;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { CMSHTMLAttributes } from "../../../global/attributes";
|
|
2
|
+
import { CommonStyleProperties } from "../../../global/style-properties";
|
|
3
|
+
import { AlignSelfValue, BoxSizingValue, GridAreaValue, HeightValue, JustifySelfValue, MaxHeightValue, MaxWidthValue, MinHeightValue, MinWidthValue, PaddingValue, CommonBuilderAttributes, GlobalImageAttributes } from "../../../global/types";
|
|
4
|
+
import { BuilderAttributes, CMSElementInterface } from "../common";
|
|
5
|
+
export interface CartSummaryStyleProperties extends CommonStyleProperties {
|
|
6
|
+
minHeight?: MinHeightValue;
|
|
7
|
+
height?: HeightValue;
|
|
8
|
+
minWidth?: MinWidthValue;
|
|
9
|
+
maxWidth?: MaxWidthValue;
|
|
10
|
+
maxHeight?: MaxHeightValue;
|
|
11
|
+
gridArea?: GridAreaValue;
|
|
12
|
+
boxSizing?: BoxSizingValue;
|
|
13
|
+
padding?: PaddingValue;
|
|
14
|
+
justifySelf?: JustifySelfValue;
|
|
15
|
+
alignSelf?: AlignSelfValue;
|
|
16
|
+
}
|
|
17
|
+
export declare const getDefaultStyles: () => CartSummaryStyleProperties;
|
|
18
|
+
export interface CMSCartSummaryInterface extends Omit<CMSElementInterface, "attributes"> {
|
|
19
|
+
attributes: {
|
|
20
|
+
HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
|
|
21
|
+
BUILDER: Pick<BuilderAttributes, CommonBuilderAttributes>;
|
|
22
|
+
CUSTOM: any;
|
|
23
|
+
};
|
|
24
|
+
styles: CartSummaryStyleProperties;
|
|
25
|
+
childrenStyles?: CommonStyleProperties;
|
|
26
|
+
content?: string;
|
|
27
|
+
}
|
|
@@ -25,7 +25,9 @@ export declare enum FormComponentTypeEnum {
|
|
|
25
25
|
}
|
|
26
26
|
export declare enum FormElementTypeEnum {
|
|
27
27
|
Button = "button",
|
|
28
|
+
Boolean = "boolean",
|
|
28
29
|
Checkbox = "checkbox",
|
|
30
|
+
ColorPicker = "color",
|
|
29
31
|
Date = "date",
|
|
30
32
|
DateTime = "datetime-local",
|
|
31
33
|
Email = "email",
|
|
@@ -34,6 +36,7 @@ export declare enum FormElementTypeEnum {
|
|
|
34
36
|
Month = "month",
|
|
35
37
|
Number = "number",
|
|
36
38
|
Password = "password",
|
|
39
|
+
Percent = "percent",
|
|
37
40
|
Radio = "radio",
|
|
38
41
|
Rating = "rating",
|
|
39
42
|
ResetButton = "reset",
|
|
@@ -42,6 +45,7 @@ export declare enum FormElementTypeEnum {
|
|
|
42
45
|
Tel = "tel",
|
|
43
46
|
Text = "text",
|
|
44
47
|
Textarea = "textarea",
|
|
48
|
+
TextEditor = "texteditor",
|
|
45
49
|
Time = "time",
|
|
46
50
|
Url = "url",
|
|
47
51
|
Week = "week"
|
|
@@ -57,7 +61,9 @@ export declare enum FormElementIdEnum {
|
|
|
57
61
|
Honorific = "Honorific",
|
|
58
62
|
Gender = "Gender",
|
|
59
63
|
Address = "Address",
|
|
64
|
+
ColorPicker = "colorPicker",
|
|
60
65
|
InputText = "InputText",
|
|
66
|
+
Percent = "percent",
|
|
61
67
|
ShortAnswer = "ShortAnswer",
|
|
62
68
|
LongAnswer = "LongAnswer",
|
|
63
69
|
Number = "Number",
|
|
@@ -72,61 +78,148 @@ export declare enum FormElementIdEnum {
|
|
|
72
78
|
Date = "Date",
|
|
73
79
|
DateTime = "DateTime",
|
|
74
80
|
Time = "Time",
|
|
81
|
+
Currency = "currency",
|
|
75
82
|
SubmitButton = "SubmitButton",
|
|
76
83
|
ResetButton = "ResetButton",
|
|
77
84
|
LoginButton = "LoginButton",
|
|
78
85
|
SignupButton = "SignupButton",
|
|
86
|
+
Boolean = "boolean",
|
|
87
|
+
Image = "image",
|
|
79
88
|
Header = "Header",
|
|
80
|
-
Text = "Text"
|
|
89
|
+
Text = "Text",
|
|
90
|
+
TextEditor = "TextEditor"
|
|
91
|
+
}
|
|
92
|
+
export declare enum FormIconEnum {
|
|
93
|
+
FirstName = "user-01",
|
|
94
|
+
LastName = "user-02",
|
|
95
|
+
UserName = "user-03",
|
|
96
|
+
Email = "mail-02",
|
|
97
|
+
Password = "lock-01",
|
|
98
|
+
Phone = "phone-01",
|
|
99
|
+
DateOfBirth = "calendar-days",
|
|
100
|
+
Honorific = "badge",
|
|
101
|
+
Gender = "user-circle",
|
|
102
|
+
Address = "map-pin",
|
|
103
|
+
ColorPicker = "droplet",
|
|
104
|
+
InputText = "input-type",
|
|
105
|
+
Percent = "percent-circle",
|
|
106
|
+
ShortAnswer = "answer-type",
|
|
107
|
+
LongAnswer = "align-left",
|
|
108
|
+
Number = "hash",
|
|
109
|
+
Link = "link-02",
|
|
110
|
+
Upload = "upload-cloud",
|
|
111
|
+
Rating = "star",
|
|
112
|
+
SingleChoice = "circle-dot",
|
|
113
|
+
MultiChoice = "check-square",
|
|
114
|
+
DropDown = "chevron-down",
|
|
115
|
+
Checkbox = "check-box",
|
|
116
|
+
DatePicker = "calendar",
|
|
117
|
+
Date = "calendar-1",
|
|
118
|
+
DateTime = "calendar-clock",
|
|
119
|
+
Time = "clock",
|
|
120
|
+
Currency = "dollar-sign",
|
|
121
|
+
SubmitButton = "send",
|
|
122
|
+
ResetButton = "rotate-ccw",
|
|
123
|
+
LoginButton = "log-in",
|
|
124
|
+
SignupButton = "user-plus",
|
|
125
|
+
Boolean = "toggle-right",
|
|
126
|
+
Image = "image",
|
|
127
|
+
Header = "heading-1",
|
|
128
|
+
Text = "text-align-left",
|
|
129
|
+
TextEditor = "edit-3"
|
|
81
130
|
}
|
|
82
131
|
export interface FormComponentConfig {
|
|
83
|
-
|
|
132
|
+
allowAlphaNumeric?: boolean;
|
|
133
|
+
allowDecimal?: boolean;
|
|
134
|
+
allowNegativeNumber?: boolean;
|
|
135
|
+
allowOnlyOne: boolean;
|
|
136
|
+
captionsSrc?: string;
|
|
137
|
+
convertTextToLowerCase?: boolean;
|
|
138
|
+
convertTextToUpperCase?: boolean;
|
|
139
|
+
customAttributeKey?: string;
|
|
140
|
+
defaultErrorMessage?: {
|
|
141
|
+
value: string;
|
|
142
|
+
state: boolean;
|
|
143
|
+
};
|
|
144
|
+
defaultValue?: any;
|
|
145
|
+
description?: {
|
|
146
|
+
value: string;
|
|
147
|
+
state: boolean;
|
|
148
|
+
};
|
|
149
|
+
docLimit?: {
|
|
150
|
+
value: string;
|
|
151
|
+
state: boolean;
|
|
152
|
+
};
|
|
153
|
+
fieldKey?: string;
|
|
154
|
+
fieldType: FormElementTypeEnum;
|
|
155
|
+
fileTypes?: string[];
|
|
156
|
+
h: number;
|
|
157
|
+
href?: string;
|
|
158
|
+
html?: string;
|
|
84
159
|
icon?: string;
|
|
160
|
+
id: FormElementIdEnum;
|
|
161
|
+
isMultiple?: boolean;
|
|
162
|
+
isDateRange?: boolean;
|
|
85
163
|
label: {
|
|
86
164
|
value: string;
|
|
87
165
|
state: boolean;
|
|
88
166
|
};
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
167
|
+
range?: {
|
|
168
|
+
value: {
|
|
169
|
+
min: number;
|
|
170
|
+
max: number;
|
|
171
|
+
};
|
|
172
|
+
state: boolean;
|
|
173
|
+
};
|
|
174
|
+
maxFileSize?: {
|
|
92
175
|
value: string;
|
|
93
176
|
state: boolean;
|
|
94
177
|
};
|
|
95
|
-
|
|
178
|
+
options?: string[];
|
|
179
|
+
placeholder: {
|
|
96
180
|
value: string;
|
|
97
181
|
state: boolean;
|
|
98
182
|
};
|
|
99
|
-
|
|
183
|
+
removeSpecialCharacters?: boolean;
|
|
184
|
+
required: boolean;
|
|
185
|
+
resolution?: {
|
|
100
186
|
value: {
|
|
101
187
|
min: number;
|
|
102
188
|
max: number;
|
|
103
189
|
};
|
|
104
190
|
state: boolean;
|
|
105
191
|
};
|
|
106
|
-
defaultValue?: any;
|
|
107
|
-
fieldKey?: string;
|
|
108
|
-
options?: string[];
|
|
109
|
-
src?: string;
|
|
110
|
-
captionsSrc?: string;
|
|
111
|
-
customAttributeKey?: string;
|
|
112
|
-
href?: string;
|
|
113
|
-
html?: string;
|
|
114
192
|
showElementProperties: ElementSettingEnum[];
|
|
193
|
+
specialCharactersToExclude?: {
|
|
194
|
+
value: string;
|
|
195
|
+
state: boolean;
|
|
196
|
+
};
|
|
197
|
+
src?: string;
|
|
115
198
|
type: FormComponentTypeEnum;
|
|
116
|
-
fieldType: FormElementTypeEnum;
|
|
117
199
|
w: number;
|
|
118
|
-
h: number;
|
|
119
|
-
allowOnlyOne: boolean;
|
|
120
200
|
}
|
|
121
201
|
export declare enum ElementSettingEnum {
|
|
122
202
|
LABEL = 1,
|
|
123
203
|
REQUIRED = 2,
|
|
124
204
|
PLACEHOLDER = 3,
|
|
125
205
|
DESCRIPTION = 4,
|
|
126
|
-
|
|
206
|
+
RANGE = 5,
|
|
127
207
|
MULTI_TOGGLE = 6,
|
|
128
208
|
OPTIONS = 7,
|
|
129
|
-
|
|
209
|
+
BUTTON_TYPE = 8,
|
|
210
|
+
DEFAULT_ERROR_MESSAGE = 9,
|
|
211
|
+
CONVERT_TEXT_TO_UPPER_CASE = 10,
|
|
212
|
+
CONVERT_TEXT_TO_LOWER_CASE = 11,
|
|
213
|
+
REMOVE_SPECIAL_CHARACTERS = 12,
|
|
214
|
+
ALLOW_ALPHA_NUMERIC = 13,
|
|
215
|
+
SPECIAL_CHARACTERS_TO_EXCLUDE = 14,
|
|
216
|
+
ALLOW_NEGATIVE_NUMBER = 15,
|
|
217
|
+
ALLOW_DECIMAL = 16,
|
|
218
|
+
MAX_FILE_SIZE = 17,
|
|
219
|
+
RESOLUTION = 18,
|
|
220
|
+
DOC_LIMIT = 19,
|
|
221
|
+
FILE_TYPES = 20,
|
|
222
|
+
DATE_RANGE = 21
|
|
130
223
|
}
|
|
131
224
|
export interface SidebarElementItem extends FormComponentConfig {
|
|
132
225
|
categoryId?: number;
|
|
@@ -206,6 +299,7 @@ export declare enum AttributeDataType {
|
|
|
206
299
|
}
|
|
207
300
|
export declare function getCompTypeByAttrId(dataTypeId: AttributeDataType): {
|
|
208
301
|
id: FormElementIdEnum;
|
|
302
|
+
icon: FormElementIdEnum;
|
|
209
303
|
type: FormComponentTypeEnum;
|
|
210
304
|
fieldType: FormElementTypeEnum;
|
|
211
305
|
key: string;
|
|
@@ -41,6 +41,7 @@ import * as ElementEditSchema from "./tools/element-edit/index";
|
|
|
41
41
|
import * as lightboxSchema from "./elements/lightbox/index";
|
|
42
42
|
import * as cartSchema from "./elements/cart/index";
|
|
43
43
|
import * as checkoutSchema from "./elements/checkout/index";
|
|
44
|
+
import * as cartSummarySchema from "./elements/cart-summary/index";
|
|
44
45
|
import * as profileSchema from "./elements/profile/index";
|
|
45
46
|
import * as repeaterSchema from "./elements/repeater/index";
|
|
46
47
|
import * as brandSchema from "./elements/brand/index";
|
|
@@ -82,4 +83,4 @@ import * as filterResultsSchema from "./elements/filter-results/index";
|
|
|
82
83
|
import * as productSizeChartSchema from "./elements/product-sizechart/index";
|
|
83
84
|
import * as badgeSchema from "./elements/badge/index";
|
|
84
85
|
import * as cartAttributesSchema from "./elements/cart-attributes/index";
|
|
85
|
-
export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, bundleDetailsSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, orderStatusSchema, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, };
|
|
86
|
+
export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, bundleDetailsSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, cartSummarySchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, orderStatusSchema, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, };
|
|
@@ -1,21 +1,328 @@
|
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
1
2
|
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
2
|
-
import {
|
|
3
|
+
import { CMSElementEditPopupInterface } from "./common";
|
|
3
4
|
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
5
|
}
|
|
5
|
-
interface selfLayoutInterface {
|
|
6
|
-
selectorKey: string;
|
|
7
|
-
showTitle: CMSIBCommonInterface;
|
|
8
|
-
showNumberOfItems: CMSIBCommonInterface;
|
|
9
|
-
showEnterCouponCode: CMSIBCommonInterface;
|
|
10
|
-
showSubTotal: CMSIBCommonInterface;
|
|
11
|
-
}
|
|
12
|
-
interface selfDesignInterface {
|
|
13
|
-
selectorKey: string;
|
|
14
|
-
}
|
|
15
6
|
export declare enum SelectorKeysEnum {
|
|
16
7
|
LAYOUT = "layout",
|
|
17
8
|
CONTENT = "content",
|
|
18
|
-
DESIGN = "design"
|
|
9
|
+
DESIGN = "design",
|
|
10
|
+
TITLE_CONTAINER_DESIGN = "titleContainerDesign",
|
|
11
|
+
TITLE_DESIGN = "titleDesign",
|
|
12
|
+
HEADING_TEXT_DESIGN = "headingTextDesign",
|
|
13
|
+
PRIMARY_TEXT_DESIGN = "primaryTextDesign",
|
|
14
|
+
TOTAL_AMOUNT_DESIGN = "totalAmountDesign",
|
|
15
|
+
SECONDARY_TEXT_DESIGN = "secondaryTextDesign",
|
|
16
|
+
PRIMARY_BUTTON_DESIGN = "primaryButtonDesign",
|
|
17
|
+
SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign"
|
|
19
18
|
}
|
|
20
|
-
export declare const getDefaultData: () =>
|
|
21
|
-
|
|
19
|
+
export declare const getDefaultData: () => {
|
|
20
|
+
layout: {
|
|
21
|
+
selectorKey: SelectorKeysEnum;
|
|
22
|
+
width: {
|
|
23
|
+
value: number;
|
|
24
|
+
unit: CMSCSSUnitTypesEnums;
|
|
25
|
+
};
|
|
26
|
+
height: {
|
|
27
|
+
value: number;
|
|
28
|
+
unit: CMSCSSUnitTypesEnums;
|
|
29
|
+
property?: any;
|
|
30
|
+
propertyType?: any;
|
|
31
|
+
isReadOnly?: boolean | undefined;
|
|
32
|
+
parentRef?: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
35
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
36
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
37
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
38
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
39
|
+
positionType: CMSIBCommonInterface | undefined;
|
|
40
|
+
pinTo: CMSIBCommonInterface | undefined;
|
|
41
|
+
showTitle: {
|
|
42
|
+
value: boolean;
|
|
43
|
+
property: string;
|
|
44
|
+
propertyType: CMSElementEditTypes;
|
|
45
|
+
};
|
|
46
|
+
showNumberOfItems: {
|
|
47
|
+
value: boolean;
|
|
48
|
+
property: string;
|
|
49
|
+
propertyType: CMSElementEditTypes;
|
|
50
|
+
};
|
|
51
|
+
showEnterCouponCode: {
|
|
52
|
+
value: boolean;
|
|
53
|
+
property: string;
|
|
54
|
+
propertyType: CMSElementEditTypes;
|
|
55
|
+
};
|
|
56
|
+
showSubTotal: {
|
|
57
|
+
value: boolean;
|
|
58
|
+
property: string;
|
|
59
|
+
propertyType: CMSElementEditTypes;
|
|
60
|
+
};
|
|
61
|
+
showShippingCharges: {
|
|
62
|
+
value: boolean;
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
};
|
|
66
|
+
showTax: {
|
|
67
|
+
value: boolean;
|
|
68
|
+
property: string;
|
|
69
|
+
propertyType: CMSElementEditTypes;
|
|
70
|
+
};
|
|
71
|
+
showTaxExempt: {
|
|
72
|
+
value: boolean;
|
|
73
|
+
property: string;
|
|
74
|
+
propertyType: CMSElementEditTypes;
|
|
75
|
+
};
|
|
76
|
+
showTotal: {
|
|
77
|
+
value: boolean;
|
|
78
|
+
property: string;
|
|
79
|
+
propertyType: CMSElementEditTypes;
|
|
80
|
+
};
|
|
81
|
+
showProductInformation: {
|
|
82
|
+
value: boolean;
|
|
83
|
+
property: string;
|
|
84
|
+
propertyType: CMSElementEditTypes;
|
|
85
|
+
};
|
|
86
|
+
showProductImage: {
|
|
87
|
+
value: boolean;
|
|
88
|
+
property: string;
|
|
89
|
+
propertyType: CMSElementEditTypes;
|
|
90
|
+
};
|
|
91
|
+
showProductCode: {
|
|
92
|
+
value: boolean;
|
|
93
|
+
property: string;
|
|
94
|
+
propertyType: CMSElementEditTypes;
|
|
95
|
+
};
|
|
96
|
+
showProductPrice: {
|
|
97
|
+
value: boolean;
|
|
98
|
+
property: string;
|
|
99
|
+
propertyType: CMSElementEditTypes;
|
|
100
|
+
};
|
|
101
|
+
showProductQty: {
|
|
102
|
+
value: boolean;
|
|
103
|
+
property: string;
|
|
104
|
+
propertyType: CMSElementEditTypes;
|
|
105
|
+
};
|
|
106
|
+
showEstimatedDelivery: {
|
|
107
|
+
value: boolean;
|
|
108
|
+
property: string;
|
|
109
|
+
propertyType: CMSElementEditTypes;
|
|
110
|
+
};
|
|
111
|
+
itemGap: {
|
|
112
|
+
value: number;
|
|
113
|
+
property: string;
|
|
114
|
+
propertyType: CMSElementEditTypes;
|
|
115
|
+
unit: number;
|
|
116
|
+
};
|
|
117
|
+
showDivider: {
|
|
118
|
+
value: boolean;
|
|
119
|
+
property: string;
|
|
120
|
+
propertyType: CMSElementEditTypes;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
design: {
|
|
124
|
+
selectorKey: SelectorKeysEnum;
|
|
125
|
+
titleContainerDesign: {
|
|
126
|
+
borderColor: CMSIBCommonInterface;
|
|
127
|
+
borderStyle: CMSIBCommonInterface;
|
|
128
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
129
|
+
showBorder: CMSIBCommonInterface;
|
|
130
|
+
backgroundColor: CMSIBCommonInterface;
|
|
131
|
+
showShadow: CMSIBCommonInterface;
|
|
132
|
+
shadowColor: CMSIBCommonInterface;
|
|
133
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
134
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
135
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
136
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
137
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
138
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
139
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
140
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
141
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
142
|
+
selectorKey: SelectorKeysEnum;
|
|
143
|
+
};
|
|
144
|
+
titleDesign: {
|
|
145
|
+
theme: CMSIBCommonInterface;
|
|
146
|
+
font: CMSIBCommonInterface;
|
|
147
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
148
|
+
textColor: CMSIBCommonInterface;
|
|
149
|
+
bold: CMSIBCommonInterface;
|
|
150
|
+
italic: CMSIBCommonInterface;
|
|
151
|
+
linethrough: CMSIBCommonInterface;
|
|
152
|
+
underline: CMSIBCommonInterface;
|
|
153
|
+
textAlign: CMSIBCommonInterface;
|
|
154
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
155
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
156
|
+
selectorKey: SelectorKeysEnum;
|
|
157
|
+
};
|
|
158
|
+
headingTextDesign: {
|
|
159
|
+
theme: CMSIBCommonInterface;
|
|
160
|
+
font: CMSIBCommonInterface;
|
|
161
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
+
textColor: CMSIBCommonInterface;
|
|
163
|
+
bold: CMSIBCommonInterface;
|
|
164
|
+
italic: CMSIBCommonInterface;
|
|
165
|
+
linethrough: CMSIBCommonInterface;
|
|
166
|
+
underline: CMSIBCommonInterface;
|
|
167
|
+
textAlign: CMSIBCommonInterface;
|
|
168
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
169
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
170
|
+
selectorKey: SelectorKeysEnum;
|
|
171
|
+
};
|
|
172
|
+
primaryTextDesign: {
|
|
173
|
+
theme: CMSIBCommonInterface;
|
|
174
|
+
font: CMSIBCommonInterface;
|
|
175
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
176
|
+
textColor: CMSIBCommonInterface;
|
|
177
|
+
bold: CMSIBCommonInterface;
|
|
178
|
+
italic: CMSIBCommonInterface;
|
|
179
|
+
linethrough: CMSIBCommonInterface;
|
|
180
|
+
underline: CMSIBCommonInterface;
|
|
181
|
+
textAlign: CMSIBCommonInterface;
|
|
182
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
183
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
184
|
+
selectorKey: SelectorKeysEnum;
|
|
185
|
+
};
|
|
186
|
+
secondaryTextDesign: {
|
|
187
|
+
theme: CMSIBCommonInterface;
|
|
188
|
+
font: CMSIBCommonInterface;
|
|
189
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
+
textColor: CMSIBCommonInterface;
|
|
191
|
+
bold: CMSIBCommonInterface;
|
|
192
|
+
italic: CMSIBCommonInterface;
|
|
193
|
+
linethrough: CMSIBCommonInterface;
|
|
194
|
+
underline: CMSIBCommonInterface;
|
|
195
|
+
textAlign: CMSIBCommonInterface;
|
|
196
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
|
+
selectorKey: SelectorKeysEnum;
|
|
199
|
+
};
|
|
200
|
+
totalAmountDesign: {
|
|
201
|
+
theme: CMSIBCommonInterface;
|
|
202
|
+
font: CMSIBCommonInterface;
|
|
203
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
+
textColor: CMSIBCommonInterface;
|
|
205
|
+
bold: CMSIBCommonInterface;
|
|
206
|
+
italic: CMSIBCommonInterface;
|
|
207
|
+
linethrough: CMSIBCommonInterface;
|
|
208
|
+
underline: CMSIBCommonInterface;
|
|
209
|
+
textAlign: CMSIBCommonInterface;
|
|
210
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
211
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
212
|
+
selectorKey: SelectorKeysEnum;
|
|
213
|
+
};
|
|
214
|
+
primaryButtonDesign: {
|
|
215
|
+
theme: CMSIBCommonInterface;
|
|
216
|
+
font: CMSIBCommonInterface;
|
|
217
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
218
|
+
textColor: CMSIBCommonInterface;
|
|
219
|
+
bold: CMSIBCommonInterface;
|
|
220
|
+
italic: CMSIBCommonInterface;
|
|
221
|
+
linethrough: CMSIBCommonInterface;
|
|
222
|
+
underline: CMSIBCommonInterface;
|
|
223
|
+
textAlign: CMSIBCommonInterface;
|
|
224
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
225
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
226
|
+
borderColor: CMSIBCommonInterface;
|
|
227
|
+
borderStyle: CMSIBCommonInterface;
|
|
228
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
229
|
+
showBorder: CMSIBCommonInterface;
|
|
230
|
+
backgroundColor: CMSIBCommonInterface;
|
|
231
|
+
showShadow: CMSIBCommonInterface;
|
|
232
|
+
shadowColor: CMSIBCommonInterface;
|
|
233
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
234
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
235
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
236
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
237
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
238
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
239
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
240
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
241
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
242
|
+
selectorKey: SelectorKeysEnum;
|
|
243
|
+
};
|
|
244
|
+
secondaryButtonDesign: {
|
|
245
|
+
theme: CMSIBCommonInterface;
|
|
246
|
+
font: CMSIBCommonInterface;
|
|
247
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
248
|
+
textColor: CMSIBCommonInterface;
|
|
249
|
+
bold: CMSIBCommonInterface;
|
|
250
|
+
italic: CMSIBCommonInterface;
|
|
251
|
+
linethrough: CMSIBCommonInterface;
|
|
252
|
+
underline: CMSIBCommonInterface;
|
|
253
|
+
textAlign: CMSIBCommonInterface;
|
|
254
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
255
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
+
borderColor: CMSIBCommonInterface;
|
|
257
|
+
borderStyle: CMSIBCommonInterface;
|
|
258
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
259
|
+
showBorder: CMSIBCommonInterface;
|
|
260
|
+
backgroundColor: CMSIBCommonInterface;
|
|
261
|
+
showShadow: CMSIBCommonInterface;
|
|
262
|
+
shadowColor: CMSIBCommonInterface;
|
|
263
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
264
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
265
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
266
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
267
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
268
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
269
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
270
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
271
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
272
|
+
selectorKey: SelectorKeysEnum;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
content: {
|
|
276
|
+
selectorKey: SelectorKeysEnum;
|
|
277
|
+
title: {
|
|
278
|
+
value: string;
|
|
279
|
+
property: string;
|
|
280
|
+
propertyType: CMSElementEditTypes;
|
|
281
|
+
};
|
|
282
|
+
checkOutButtonText: {
|
|
283
|
+
value: string;
|
|
284
|
+
property: string;
|
|
285
|
+
propertyType: CMSElementEditTypes;
|
|
286
|
+
};
|
|
287
|
+
subTotalLabel: {
|
|
288
|
+
value: string;
|
|
289
|
+
property: string;
|
|
290
|
+
propertyType: CMSElementEditTypes;
|
|
291
|
+
};
|
|
292
|
+
numberOfItemsLabel: {
|
|
293
|
+
value: string;
|
|
294
|
+
property: string;
|
|
295
|
+
propertyType: CMSElementEditTypes;
|
|
296
|
+
};
|
|
297
|
+
taxLabel: {
|
|
298
|
+
value: string;
|
|
299
|
+
property: string;
|
|
300
|
+
propertyType: CMSElementEditTypes;
|
|
301
|
+
};
|
|
302
|
+
taxExemptLabel: {
|
|
303
|
+
value: string;
|
|
304
|
+
property: string;
|
|
305
|
+
propertyType: CMSElementEditTypes;
|
|
306
|
+
};
|
|
307
|
+
shippingChargesLabel: {
|
|
308
|
+
value: string;
|
|
309
|
+
property: string;
|
|
310
|
+
propertyType: CMSElementEditTypes;
|
|
311
|
+
};
|
|
312
|
+
enterCouponCodeLabel: {
|
|
313
|
+
value: string;
|
|
314
|
+
property: string;
|
|
315
|
+
propertyType: CMSElementEditTypes;
|
|
316
|
+
};
|
|
317
|
+
applyCouponCodeLabel: {
|
|
318
|
+
value: string;
|
|
319
|
+
property: string;
|
|
320
|
+
propertyType: CMSElementEditTypes;
|
|
321
|
+
};
|
|
322
|
+
totalLabel: {
|
|
323
|
+
value: string;
|
|
324
|
+
property: string;
|
|
325
|
+
propertyType: CMSElementEditTypes;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
};
|