@sc-360-v2/storefront-cms-library 0.2.94 → 0.2.96
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/breadcrumbs.scss +574 -269
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +0 -14
- package/dist/button.scss +4 -1
- package/dist/cart-details.scss +176 -4
- package/dist/cartDropdownOverlay.scss +19 -4
- package/dist/functions.scss +23 -0
- package/dist/grid.scss +21 -49
- package/dist/icon-list.scss +111 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/map.scss +505 -334
- package/dist/product-image.scss +25 -7
- package/dist/quantity-selector.scss +1 -0
- package/dist/quick-order-pad.scss +2 -2
- package/dist/quotes.scss +660 -62
- package/dist/repeater-grid-toggle.scss +58 -0
- package/dist/repeater.scss +181 -151
- package/dist/rfqs.scss +661 -62
- package/dist/spotlight.scss +1608 -66
- package/dist/types/builder/elements/form-builder/index.d.ts +32 -0
- package/dist/types/builder/elements/order-status/index.d.ts +27 -0
- package/dist/types/builder/enums/index.d.ts +8 -1
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +16 -2
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +15 -5
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/map.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +352 -0
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +3 -7
- package/dist/types/builder/tools/element-edit/quotes.d.ts +33 -3
- package/dist/types/builder/tools/element-edit/rfqs.d.ts +33 -3
- package/dist/types/builder/tools/element-edit/shippingEstimator.d.ts +133 -10
- package/dist/types/icons/updated-icons.d.ts +7 -2
- package/dist/variant-picker.scss +1 -0
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -45,7 +45,38 @@ export declare enum FormElementTypeEnum {
|
|
|
45
45
|
Url = "url",
|
|
46
46
|
Week = "week"
|
|
47
47
|
}
|
|
48
|
+
export declare enum FormElementIdEnum {
|
|
49
|
+
FirstName = "FirstName",
|
|
50
|
+
LastName = "LastName",
|
|
51
|
+
Email = "Email",
|
|
52
|
+
Password = "Password",
|
|
53
|
+
Phone = "Phone",
|
|
54
|
+
DateOfBirth = "DateOfBirth",
|
|
55
|
+
Address = "Address",
|
|
56
|
+
ShortAnswer = "ShortAnswer",
|
|
57
|
+
LongAnswer = "LongAnswer",
|
|
58
|
+
Number = "Number",
|
|
59
|
+
Link = "Link",
|
|
60
|
+
Upload = "Upload",
|
|
61
|
+
Rating = "Rating",
|
|
62
|
+
SingleChoice = "SingleChoice",
|
|
63
|
+
MultiChoice = "MultiChoice",
|
|
64
|
+
DropDown = "DropDown",
|
|
65
|
+
Checkbox = "Checkbox",
|
|
66
|
+
DatePicker = "DatePicker",
|
|
67
|
+
Date = "Date",
|
|
68
|
+
DateTime = "DateTime",
|
|
69
|
+
Time = "Time",
|
|
70
|
+
SubmitButton = "SubmitButton",
|
|
71
|
+
ResetButton = "ResetButton",
|
|
72
|
+
LoginButton = "LoginButton",
|
|
73
|
+
CustomAttribute1 = "CustomAttribute1",
|
|
74
|
+
CustomAttribute2 = "CustomAttribute2",
|
|
75
|
+
Header = "Header",
|
|
76
|
+
Text = "Text"
|
|
77
|
+
}
|
|
48
78
|
export interface FormComponentConfig {
|
|
79
|
+
id: FormElementIdEnum;
|
|
49
80
|
icon?: string;
|
|
50
81
|
label: {
|
|
51
82
|
value: string;
|
|
@@ -79,6 +110,7 @@ export interface FormComponentConfig {
|
|
|
79
110
|
fieldType: FormElementTypeEnum;
|
|
80
111
|
w: number;
|
|
81
112
|
h: number;
|
|
113
|
+
allowOnlyOne: boolean;
|
|
82
114
|
}
|
|
83
115
|
export declare enum ElementSettingEnum {
|
|
84
116
|
LABEL = 1,
|
|
@@ -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 OrderStatusStyleProperties 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: () => OrderStatusStyleProperties;
|
|
18
|
+
export interface CMSOrderStatusInterface extends Omit<CMSElementInterface, "attributes"> {
|
|
19
|
+
attributes: {
|
|
20
|
+
HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
|
|
21
|
+
BUILDER: Pick<BuilderAttributes, CommonBuilderAttributes>;
|
|
22
|
+
CUSTOM: any;
|
|
23
|
+
};
|
|
24
|
+
styles: OrderStatusStyleProperties;
|
|
25
|
+
childrenStyles?: CommonStyleProperties;
|
|
26
|
+
content?: string;
|
|
27
|
+
}
|
|
@@ -251,6 +251,7 @@ export declare const CMSElementsListEnum: {
|
|
|
251
251
|
BUNDLE_IMAGE: string;
|
|
252
252
|
LIGHTBOX: string;
|
|
253
253
|
CART: string;
|
|
254
|
+
CHECKOUT: string;
|
|
254
255
|
PROFILE: string;
|
|
255
256
|
PRODUCT: string;
|
|
256
257
|
MENU: string;
|
|
@@ -280,6 +281,7 @@ export declare const CMSElementsListEnum: {
|
|
|
280
281
|
CATEGORY_DETAILS: string;
|
|
281
282
|
CONTACTUS: string;
|
|
282
283
|
LOGIN: string;
|
|
284
|
+
ORDER_STATUS: string;
|
|
283
285
|
CREATE_FORM: string;
|
|
284
286
|
ADD_EXISTING_FORM: string;
|
|
285
287
|
RESET_PASSWORD: string;
|
|
@@ -305,6 +307,10 @@ export declare const CMSElementsListEnum: {
|
|
|
305
307
|
BUNDLE_DETAILS: string;
|
|
306
308
|
PRODUCT_CUSTOMIZATIONS: string;
|
|
307
309
|
ICON_LIST: string;
|
|
310
|
+
MENU_V2: string;
|
|
311
|
+
MENU_ITEM: string;
|
|
312
|
+
SIMPLE_LIST: string;
|
|
313
|
+
SIMPLE_LIST_ITEM: string;
|
|
308
314
|
};
|
|
309
315
|
export declare enum CMSResponsiveModeEnums {
|
|
310
316
|
DESKTOP = "desktop",
|
|
@@ -366,7 +372,7 @@ export declare enum CMSCustomEventsListEnums {
|
|
|
366
372
|
PRODUCT_DETAILS_STATE = "productDetailsState",
|
|
367
373
|
IMAGE_CROP = "imageCrop",
|
|
368
374
|
IMAGE_CROP_TEMP_DATA = "imageCropTempData",
|
|
369
|
-
|
|
375
|
+
FORM_BUILDER_STATE = "formBuilderState"
|
|
370
376
|
}
|
|
371
377
|
export declare enum FlexAppVersionEnums {
|
|
372
378
|
NESTEDJSON = 1,
|
|
@@ -414,3 +420,4 @@ export declare enum FlexRepeaterControlDragType {
|
|
|
414
420
|
SLIDER_CONTROL = 1,
|
|
415
421
|
GRID_TOGGLE = 2
|
|
416
422
|
}
|
|
423
|
+
export declare const FlexLinkIngnoreAnchorList: LinkTypes[];
|
|
@@ -53,6 +53,7 @@ import * as layouterItemSchema from "./elements/layouter-item/index";
|
|
|
53
53
|
import commonFunctions from "./utilities/global";
|
|
54
54
|
import * as contactUsSchema from "./elements/contact-us/index";
|
|
55
55
|
import * as loginSchema from "./elements/login/index";
|
|
56
|
+
import * as orderStatusSchema from "./elements/order-status/index";
|
|
56
57
|
import * as createFormSchema from "./elements/create-form/index";
|
|
57
58
|
import * as resetPasswordSchema from "./elements/reset-password/index";
|
|
58
59
|
import * as categoryDetailsSchema from "./elements/category-details/index";
|
|
@@ -71,4 +72,4 @@ import * as toasterSchema from "./elements/toaster/index";
|
|
|
71
72
|
import * as spotlightSchema from "./elements/spotlight";
|
|
72
73
|
import * as productCustomizationsSchema from "./elements/product-customizations/index";
|
|
73
74
|
import * as iconListSchema from "./elements/icon-list/index";
|
|
74
|
-
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, 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, };
|
|
75
|
+
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, 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, };
|
|
@@ -27,6 +27,8 @@ interface selfLayoutInterface {
|
|
|
27
27
|
overflowControl: CMSIBCommonInterface;
|
|
28
28
|
paginationType: CMSIBCommonInterface;
|
|
29
29
|
paginationAlignment: CMSIBCommonInterface;
|
|
30
|
+
noOfItemsToShow: CMSIBCommonInterface;
|
|
31
|
+
itemHeight: CMSIBCommonInterface;
|
|
30
32
|
}
|
|
31
33
|
interface selfDesignInterface {
|
|
32
34
|
selectorKey: string;
|
|
@@ -106,7 +108,19 @@ interface selfDesignInterface {
|
|
|
106
108
|
selectorKey: string;
|
|
107
109
|
[key: string]: any;
|
|
108
110
|
};
|
|
109
|
-
|
|
111
|
+
showMoreButton: {
|
|
112
|
+
selectorKey: string;
|
|
113
|
+
[key: string]: any;
|
|
114
|
+
};
|
|
115
|
+
searchBar: {
|
|
116
|
+
selectorKey: string;
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
};
|
|
119
|
+
searchIcon: {
|
|
120
|
+
selectorKey: string;
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
};
|
|
123
|
+
placeholderText: {
|
|
110
124
|
selectorKey: string;
|
|
111
125
|
[key: string]: any;
|
|
112
126
|
};
|
|
@@ -134,7 +148,7 @@ export declare enum AmountEstimatorsSelectorKeysEnum {
|
|
|
134
148
|
SCROLL = "scroll",
|
|
135
149
|
ROW_DIVIDERS = "rowDividers",
|
|
136
150
|
PAGINATION = "pagination",
|
|
137
|
-
SHOW_MORE_ITEMS_BUTTON = "
|
|
151
|
+
SHOW_MORE_ITEMS_BUTTON = "showMoreButton",
|
|
138
152
|
HOVER_STATE = "hover",
|
|
139
153
|
DEFAULT_STATE = "default",
|
|
140
154
|
SELECTED_STATE = "selectedState",
|
|
@@ -35,11 +35,21 @@ export declare const getDefaultData: () => {
|
|
|
35
35
|
property: string;
|
|
36
36
|
propertyType: CMSElementEditTypes;
|
|
37
37
|
};
|
|
38
|
+
cartTitle: {
|
|
39
|
+
value: string;
|
|
40
|
+
property: string;
|
|
41
|
+
propertyType: CMSElementEditTypes;
|
|
42
|
+
};
|
|
38
43
|
showNumberOfItems: {
|
|
39
44
|
value: boolean;
|
|
40
45
|
property: string;
|
|
41
46
|
propertyType: CMSElementEditTypes;
|
|
42
47
|
};
|
|
48
|
+
cartItemsCountLabel: {
|
|
49
|
+
value: string;
|
|
50
|
+
property: string;
|
|
51
|
+
propertyType: CMSElementEditTypes;
|
|
52
|
+
};
|
|
43
53
|
showActions: {
|
|
44
54
|
value: boolean;
|
|
45
55
|
property: string;
|
|
@@ -285,11 +295,6 @@ export declare const getDefaultData: () => {
|
|
|
285
295
|
};
|
|
286
296
|
content: {
|
|
287
297
|
selectorKey: SelectorKeysEnum;
|
|
288
|
-
title: {
|
|
289
|
-
value: string;
|
|
290
|
-
property: string;
|
|
291
|
-
propertyType: CMSElementEditTypes;
|
|
292
|
-
};
|
|
293
298
|
showProductTitle: {
|
|
294
299
|
value: boolean;
|
|
295
300
|
property: string;
|
|
@@ -325,6 +330,11 @@ export declare const getDefaultData: () => {
|
|
|
325
330
|
property: string;
|
|
326
331
|
propertyType: CMSElementEditTypes;
|
|
327
332
|
};
|
|
333
|
+
showCartItemAttribute: {
|
|
334
|
+
value: boolean;
|
|
335
|
+
property: string;
|
|
336
|
+
propertyType: CMSElementEditTypes;
|
|
337
|
+
};
|
|
328
338
|
showEdit: {
|
|
329
339
|
value: boolean;
|
|
330
340
|
property: string;
|
|
@@ -54,6 +54,7 @@ import * as brandImage from "./brandImage";
|
|
|
54
54
|
import * as filters from "./filters";
|
|
55
55
|
import * as sort from "./sort";
|
|
56
56
|
import * as pastOrders from "./pastOrders";
|
|
57
|
+
import * as orderStatus from "./orderStatus";
|
|
57
58
|
import * as quotes from "./quotes";
|
|
58
59
|
import * as rfqs from "./rfqs";
|
|
59
60
|
import * as lightBoxV2 from "./lightBoxV2";
|
|
@@ -86,4 +87,4 @@ import * as toaster from "./toaster";
|
|
|
86
87
|
import * as spotlight from "./spotlight";
|
|
87
88
|
import * as productCustomizations from "./productCustomizations";
|
|
88
89
|
import * as iconList from "./icon-list";
|
|
89
|
-
export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, };
|
|
90
|
+
export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, orderStatus, };
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
import { CMSElementEditTypes } from "../../enums";
|
|
2
|
+
import { CMSElementEditPopupInterface } from "./common";
|
|
3
|
+
export interface OrderEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
|
+
}
|
|
5
|
+
export interface selfDesignInterface {
|
|
6
|
+
selectorKey: string;
|
|
7
|
+
}
|
|
8
|
+
export declare enum orderSelectorKeysEnum {
|
|
9
|
+
LAYOUT = "layout",
|
|
10
|
+
DESIGN = "design",
|
|
11
|
+
CONTENT = "content",
|
|
12
|
+
DESIGN_HEADER_STYLES = "designHeader",
|
|
13
|
+
DESIGN_TOAST_STYLES = "designToast",
|
|
14
|
+
DESIGN_DETAILS_STYLES = "designDetails",
|
|
15
|
+
DESIGN_QUICK_ACTIONS_STYLES = "designQuickActions",
|
|
16
|
+
DESIGN_CART_ITEMS_STYLES = "designCartItems"
|
|
17
|
+
}
|
|
18
|
+
export declare const getDefaultData: () => {
|
|
19
|
+
layout: {
|
|
20
|
+
selectorKey: orderSelectorKeysEnum;
|
|
21
|
+
width: {
|
|
22
|
+
value: string;
|
|
23
|
+
unit: number;
|
|
24
|
+
};
|
|
25
|
+
height: {
|
|
26
|
+
value: string;
|
|
27
|
+
unit: number;
|
|
28
|
+
property?: any;
|
|
29
|
+
propertyType?: any;
|
|
30
|
+
isReadOnly?: boolean | undefined;
|
|
31
|
+
parentRef?: string | undefined;
|
|
32
|
+
};
|
|
33
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
34
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
35
|
+
positionType: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
36
|
+
};
|
|
37
|
+
content: {
|
|
38
|
+
selectorKey: orderSelectorKeysEnum;
|
|
39
|
+
showHeader: {
|
|
40
|
+
value: boolean;
|
|
41
|
+
propertyType: CMSElementEditTypes;
|
|
42
|
+
};
|
|
43
|
+
showToastMessage: {
|
|
44
|
+
value: boolean;
|
|
45
|
+
propertyType: CMSElementEditTypes;
|
|
46
|
+
};
|
|
47
|
+
orderDetails: {
|
|
48
|
+
value: boolean;
|
|
49
|
+
propertyType: CMSElementEditTypes;
|
|
50
|
+
};
|
|
51
|
+
quickActions: {
|
|
52
|
+
value: boolean;
|
|
53
|
+
propertyType: CMSElementEditTypes;
|
|
54
|
+
};
|
|
55
|
+
cartItems: {
|
|
56
|
+
value: boolean;
|
|
57
|
+
propertyType: CMSElementEditTypes;
|
|
58
|
+
};
|
|
59
|
+
orderAttributes: {
|
|
60
|
+
value: boolean;
|
|
61
|
+
propertyType: CMSElementEditTypes;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
design: {
|
|
65
|
+
selectorKey: orderSelectorKeysEnum;
|
|
66
|
+
designHeader: {
|
|
67
|
+
selectorKey: orderSelectorKeysEnum;
|
|
68
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
69
|
+
margin: {
|
|
70
|
+
isAll: boolean;
|
|
71
|
+
sides: {
|
|
72
|
+
top: {
|
|
73
|
+
value: number;
|
|
74
|
+
unit: number;
|
|
75
|
+
};
|
|
76
|
+
right: {
|
|
77
|
+
value: number;
|
|
78
|
+
unit: number;
|
|
79
|
+
};
|
|
80
|
+
bottom: {
|
|
81
|
+
value: number;
|
|
82
|
+
unit: number;
|
|
83
|
+
};
|
|
84
|
+
left: {
|
|
85
|
+
value: number;
|
|
86
|
+
unit: number;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
property: string;
|
|
90
|
+
propertyType: CMSElementEditTypes;
|
|
91
|
+
};
|
|
92
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
93
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
94
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
95
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
96
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
97
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
98
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
99
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
100
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
101
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
102
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
103
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
104
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
105
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
106
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
107
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
108
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
109
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
110
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
111
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
112
|
+
};
|
|
113
|
+
designToast: {
|
|
114
|
+
selectorKey: orderSelectorKeysEnum;
|
|
115
|
+
padding: {
|
|
116
|
+
isAll: boolean;
|
|
117
|
+
sides: {
|
|
118
|
+
top: {
|
|
119
|
+
value: number;
|
|
120
|
+
unit: number;
|
|
121
|
+
};
|
|
122
|
+
right: {
|
|
123
|
+
value: number;
|
|
124
|
+
unit: number;
|
|
125
|
+
};
|
|
126
|
+
bottom: {
|
|
127
|
+
value: number;
|
|
128
|
+
unit: number;
|
|
129
|
+
};
|
|
130
|
+
left: {
|
|
131
|
+
value: number;
|
|
132
|
+
unit: number;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
property: string;
|
|
136
|
+
propertyType: CMSElementEditTypes;
|
|
137
|
+
};
|
|
138
|
+
margin: {
|
|
139
|
+
isAll: boolean;
|
|
140
|
+
sides: {
|
|
141
|
+
top: {
|
|
142
|
+
value: number;
|
|
143
|
+
unit: number;
|
|
144
|
+
};
|
|
145
|
+
right: {
|
|
146
|
+
value: number;
|
|
147
|
+
unit: number;
|
|
148
|
+
};
|
|
149
|
+
bottom: {
|
|
150
|
+
value: number;
|
|
151
|
+
unit: number;
|
|
152
|
+
};
|
|
153
|
+
left: {
|
|
154
|
+
value: number;
|
|
155
|
+
unit: number;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
property: string;
|
|
159
|
+
propertyType: CMSElementEditTypes;
|
|
160
|
+
};
|
|
161
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
162
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
163
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
166
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
167
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
168
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
169
|
+
borderRadius: {
|
|
170
|
+
isAll: boolean;
|
|
171
|
+
sides: {
|
|
172
|
+
topLeft: {
|
|
173
|
+
value: number;
|
|
174
|
+
unit: number;
|
|
175
|
+
};
|
|
176
|
+
topRight: {
|
|
177
|
+
value: number;
|
|
178
|
+
unit: number;
|
|
179
|
+
};
|
|
180
|
+
bottomLeft: {
|
|
181
|
+
value: number;
|
|
182
|
+
unit: number;
|
|
183
|
+
};
|
|
184
|
+
bottomRight: {
|
|
185
|
+
value: number;
|
|
186
|
+
unit: number;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
backgroundColor: {
|
|
191
|
+
value: {
|
|
192
|
+
hex: string;
|
|
193
|
+
rgb: {
|
|
194
|
+
r: string;
|
|
195
|
+
g: string;
|
|
196
|
+
b: string;
|
|
197
|
+
a: number;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
property: string;
|
|
201
|
+
propertyType: CMSElementEditTypes;
|
|
202
|
+
parentRef: string;
|
|
203
|
+
};
|
|
204
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
205
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
206
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
207
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
208
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
209
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
210
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
211
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
212
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
213
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
214
|
+
};
|
|
215
|
+
designDetails: {
|
|
216
|
+
selectorKey: orderSelectorKeysEnum;
|
|
217
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
218
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
219
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
220
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
223
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
224
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
225
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
226
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
227
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
228
|
+
backgroundColor: {
|
|
229
|
+
value: {
|
|
230
|
+
hex: string;
|
|
231
|
+
rgb: {
|
|
232
|
+
r: string;
|
|
233
|
+
g: string;
|
|
234
|
+
b: string;
|
|
235
|
+
a: number;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
property: string;
|
|
239
|
+
propertyType: CMSElementEditTypes;
|
|
240
|
+
parentRef: string;
|
|
241
|
+
};
|
|
242
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
243
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
244
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
245
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
246
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
247
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
248
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
250
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
251
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
252
|
+
};
|
|
253
|
+
designQuickActions: {
|
|
254
|
+
selectorKey: orderSelectorKeysEnum;
|
|
255
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
256
|
+
margin: {
|
|
257
|
+
isAll: boolean;
|
|
258
|
+
sides: {
|
|
259
|
+
top: {
|
|
260
|
+
value: number;
|
|
261
|
+
unit: number;
|
|
262
|
+
};
|
|
263
|
+
right: {
|
|
264
|
+
value: number;
|
|
265
|
+
unit: number;
|
|
266
|
+
};
|
|
267
|
+
bottom: {
|
|
268
|
+
value: number;
|
|
269
|
+
unit: number;
|
|
270
|
+
};
|
|
271
|
+
left: {
|
|
272
|
+
value: number;
|
|
273
|
+
unit: number;
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
property: string;
|
|
277
|
+
propertyType: CMSElementEditTypes;
|
|
278
|
+
};
|
|
279
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
280
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
281
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
282
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
283
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
284
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
285
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
286
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
287
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
288
|
+
backgroundColor: {
|
|
289
|
+
value: {
|
|
290
|
+
hex: string;
|
|
291
|
+
rgb: {
|
|
292
|
+
r: string;
|
|
293
|
+
g: string;
|
|
294
|
+
b: string;
|
|
295
|
+
a: number;
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
property: string;
|
|
299
|
+
propertyType: CMSElementEditTypes;
|
|
300
|
+
parentRef: string;
|
|
301
|
+
};
|
|
302
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
303
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
304
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
305
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
306
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
307
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
308
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
309
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
310
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
312
|
+
};
|
|
313
|
+
designCartItems: {
|
|
314
|
+
selectorKey: orderSelectorKeysEnum;
|
|
315
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
316
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
317
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
318
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
320
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
321
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
322
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
323
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
324
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
325
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
326
|
+
backgroundColor: {
|
|
327
|
+
value: {
|
|
328
|
+
hex: string;
|
|
329
|
+
rgb: {
|
|
330
|
+
r: string;
|
|
331
|
+
g: string;
|
|
332
|
+
b: string;
|
|
333
|
+
a: number;
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
property: string;
|
|
337
|
+
propertyType: CMSElementEditTypes;
|
|
338
|
+
parentRef: string;
|
|
339
|
+
};
|
|
340
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
341
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
342
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
343
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
344
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
345
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
346
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
347
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
348
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
349
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
};
|
|
@@ -103,7 +103,7 @@ export declare const getDefaultData: () => {
|
|
|
103
103
|
property: string;
|
|
104
104
|
propertyType: CMSElementEditTypes;
|
|
105
105
|
};
|
|
106
|
-
|
|
106
|
+
dropdownWidth: {
|
|
107
107
|
value: string;
|
|
108
108
|
unit: number;
|
|
109
109
|
property: string;
|
|
@@ -137,12 +137,8 @@ export declare const getDefaultData: () => {
|
|
|
137
137
|
name: string;
|
|
138
138
|
show: boolean;
|
|
139
139
|
url: string;
|
|
140
|
-
linkType:
|
|
141
|
-
|
|
142
|
-
};
|
|
143
|
-
openIn: {
|
|
144
|
-
value: string;
|
|
145
|
-
};
|
|
140
|
+
linkType: string;
|
|
141
|
+
openIn: string;
|
|
146
142
|
}[];
|
|
147
143
|
propertyType: CMSElementEditTypes;
|
|
148
144
|
};
|