@sc-360-v2/storefront-cms-library 0.2.94 → 0.2.95
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/grid.scss +21 -49
- package/dist/icon-list.scss +110 -0
- 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 +4 -1
- package/dist/types/builder/index.d.ts +2 -1
- 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/orderStatus.d.ts +15 -0
- 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/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;
|
|
@@ -366,7 +368,7 @@ export declare enum CMSCustomEventsListEnums {
|
|
|
366
368
|
PRODUCT_DETAILS_STATE = "productDetailsState",
|
|
367
369
|
IMAGE_CROP = "imageCrop",
|
|
368
370
|
IMAGE_CROP_TEMP_DATA = "imageCropTempData",
|
|
369
|
-
|
|
371
|
+
FORM_BUILDER_STATE = "formBuilderState"
|
|
370
372
|
}
|
|
371
373
|
export declare enum FlexAppVersionEnums {
|
|
372
374
|
NESTEDJSON = 1,
|
|
@@ -414,3 +416,4 @@ export declare enum FlexRepeaterControlDragType {
|
|
|
414
416
|
SLIDER_CONTROL = 1,
|
|
415
417
|
GRID_TOGGLE = 2
|
|
416
418
|
}
|
|
419
|
+
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, };
|
|
@@ -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,15 @@
|
|
|
1
|
+
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
2
|
+
export interface OrderEditPopupInterface extends CMSElementEditPopupInterface {
|
|
3
|
+
}
|
|
4
|
+
interface selfLayoutInterface {
|
|
5
|
+
selectorKey: string;
|
|
6
|
+
}
|
|
7
|
+
export interface selfDesignInterface {
|
|
8
|
+
selectorKey: string;
|
|
9
|
+
}
|
|
10
|
+
export declare enum orderSelectorKeysEnum {
|
|
11
|
+
LAYOUT = "layout",
|
|
12
|
+
DESIGN = "design"
|
|
13
|
+
}
|
|
14
|
+
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
15
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
1
|
+
import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
|
|
2
2
|
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
3
3
|
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
4
|
}
|
|
@@ -11,18 +11,48 @@ interface selfLayoutInterface {
|
|
|
11
11
|
loopItems: CMSIBCommonInterface;
|
|
12
12
|
displayScrollbar1: CMSIBCommonInterface;
|
|
13
13
|
autoplay: CMSIBCommonInterface;
|
|
14
|
-
spacingBetweenItems:
|
|
14
|
+
spacingBetweenItems: CMSIBSizeInterface;
|
|
15
15
|
dividerBetweenItems: CMSIBCommonInterface;
|
|
16
16
|
overflowControl: CMSIBCommonInterface;
|
|
17
17
|
numOfItemsToLoad: CMSIBCommonInterface;
|
|
18
18
|
}
|
|
19
19
|
interface selfDesignInterface {
|
|
20
20
|
selectorKey: string;
|
|
21
|
+
widgetStyle: {
|
|
22
|
+
selectorKey: string;
|
|
23
|
+
};
|
|
24
|
+
itemStyle: {
|
|
25
|
+
selectorKey: string;
|
|
26
|
+
};
|
|
27
|
+
quoteId: {
|
|
28
|
+
selectorKey: string;
|
|
29
|
+
};
|
|
30
|
+
raisedOn: {
|
|
31
|
+
selectorKey: string;
|
|
32
|
+
};
|
|
33
|
+
quoteStatus: {
|
|
34
|
+
selectorKey: string;
|
|
35
|
+
};
|
|
36
|
+
paginationArrows: {
|
|
37
|
+
selectorKey: string;
|
|
38
|
+
arrowIconStyle: CMSIBCommonInterface;
|
|
39
|
+
leftArrowIconStyle: CMSIBCommonInterface;
|
|
40
|
+
rightArrowIconStyle: CMSIBCommonInterface;
|
|
41
|
+
backgroundShape: CMSIBCommonInterface;
|
|
42
|
+
arrowSize: CMSIBCommonInterface;
|
|
43
|
+
arrowColor: CMSIBCommonInterface;
|
|
44
|
+
};
|
|
21
45
|
}
|
|
22
46
|
export declare enum SelectorKeysEnum {
|
|
23
47
|
LAYOUT = "layout",
|
|
24
48
|
CONTENT = "content",
|
|
25
|
-
DESIGN = "design"
|
|
49
|
+
DESIGN = "design",
|
|
50
|
+
WIDGET_STYLE = "widgetStyle",
|
|
51
|
+
ITEM_STYLE = "itemStyle",
|
|
52
|
+
QUOTE_ID = "quoteId",
|
|
53
|
+
RAISED_ON = "raisedOn",
|
|
54
|
+
QUOTE_STATUS = "quoteStatus",
|
|
55
|
+
PAGINATION_ARROWS = "pagination-arrows"
|
|
26
56
|
}
|
|
27
57
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
28
58
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
1
|
+
import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
|
|
2
2
|
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
3
3
|
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
4
|
}
|
|
@@ -11,18 +11,48 @@ interface selfLayoutInterface {
|
|
|
11
11
|
loopItems: CMSIBCommonInterface;
|
|
12
12
|
displayScrollbar1: CMSIBCommonInterface;
|
|
13
13
|
autoplay: CMSIBCommonInterface;
|
|
14
|
-
spacingBetweenItems:
|
|
14
|
+
spacingBetweenItems: CMSIBSizeInterface;
|
|
15
15
|
dividerBetweenItems: CMSIBCommonInterface;
|
|
16
16
|
overflowControl: CMSIBCommonInterface;
|
|
17
17
|
numOfItemsToLoad: CMSIBCommonInterface;
|
|
18
18
|
}
|
|
19
19
|
interface selfDesignInterface {
|
|
20
20
|
selectorKey: string;
|
|
21
|
+
widgetStyle: {
|
|
22
|
+
selectorKey: string;
|
|
23
|
+
};
|
|
24
|
+
itemStyle: {
|
|
25
|
+
selectorKey: string;
|
|
26
|
+
};
|
|
27
|
+
rfqId: {
|
|
28
|
+
selectorKey: string;
|
|
29
|
+
};
|
|
30
|
+
raisedOn: {
|
|
31
|
+
selectorKey: string;
|
|
32
|
+
};
|
|
33
|
+
rfqStatus: {
|
|
34
|
+
selectorKey: string;
|
|
35
|
+
};
|
|
36
|
+
paginationArrows: {
|
|
37
|
+
selectorKey: string;
|
|
38
|
+
arrowIconStyle: CMSIBCommonInterface;
|
|
39
|
+
leftArrowIconStyle: CMSIBCommonInterface;
|
|
40
|
+
rightArrowIconStyle: CMSIBCommonInterface;
|
|
41
|
+
backgroundShape: CMSIBCommonInterface;
|
|
42
|
+
arrowSize: CMSIBCommonInterface;
|
|
43
|
+
arrowColor: CMSIBCommonInterface;
|
|
44
|
+
};
|
|
21
45
|
}
|
|
22
46
|
export declare enum SelectorKeysEnum {
|
|
23
47
|
LAYOUT = "layout",
|
|
24
48
|
CONTENT = "content",
|
|
25
|
-
DESIGN = "design"
|
|
49
|
+
DESIGN = "design",
|
|
50
|
+
WIDGET_STYLE = "widgetStyle",
|
|
51
|
+
ITEM_STYLE = "itemStyle",
|
|
52
|
+
RFQ_ID = "rfqId",
|
|
53
|
+
RAISED_ON = "raisedOn",
|
|
54
|
+
RFQ_STATUS = "rfqStatus",
|
|
55
|
+
PAGINATION_ARROWS = "pagination-arrows"
|
|
26
56
|
}
|
|
27
57
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
28
58
|
export {};
|
|
@@ -1,15 +1,138 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
selectorKey: string;
|
|
4
|
-
}
|
|
5
|
-
interface selfDesignInterface {
|
|
6
|
-
selectorKey: string;
|
|
7
|
-
}
|
|
1
|
+
import { CMSElementEditTypes } from "../../enums";
|
|
2
|
+
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
8
3
|
export declare enum ShippingEstimatorSelectorKeysEnum {
|
|
9
4
|
LAYOUT = "layout",
|
|
10
5
|
CONTENT = "content",
|
|
11
6
|
DESIGN = "design",
|
|
12
|
-
DATA_CONNECTOR = "dataConnector"
|
|
7
|
+
DATA_CONNECTOR = "dataConnector",
|
|
8
|
+
DYNAMIC_TITLE_STYLE = "dynamicTitleStyle",
|
|
9
|
+
STATIC_TEXT_STYLE = "staticTextStyle"
|
|
13
10
|
}
|
|
14
|
-
export declare const getDefaultData: () =>
|
|
15
|
-
|
|
11
|
+
export declare const getDefaultData: () => {
|
|
12
|
+
layout: {
|
|
13
|
+
selectorKey: ShippingEstimatorSelectorKeysEnum;
|
|
14
|
+
width: {
|
|
15
|
+
value: string;
|
|
16
|
+
unit: number;
|
|
17
|
+
};
|
|
18
|
+
height: {
|
|
19
|
+
value: string;
|
|
20
|
+
unit: number;
|
|
21
|
+
property?: any;
|
|
22
|
+
propertyType?: any;
|
|
23
|
+
isReadOnly?: boolean | undefined;
|
|
24
|
+
parentRef?: string | undefined;
|
|
25
|
+
};
|
|
26
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
27
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
28
|
+
positionType: CMSIBCommonInterface | undefined;
|
|
29
|
+
pinTo: CMSIBCommonInterface | undefined;
|
|
30
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
31
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
32
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
33
|
+
};
|
|
34
|
+
design: {
|
|
35
|
+
selectorKey: ShippingEstimatorSelectorKeysEnum;
|
|
36
|
+
theme: CMSIBCommonInterface;
|
|
37
|
+
font: CMSIBCommonInterface;
|
|
38
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
39
|
+
textColor: CMSIBCommonInterface;
|
|
40
|
+
bold: CMSIBCommonInterface;
|
|
41
|
+
italic: CMSIBCommonInterface;
|
|
42
|
+
linethrough: CMSIBCommonInterface;
|
|
43
|
+
underline: CMSIBCommonInterface;
|
|
44
|
+
textAlign: CMSIBCommonInterface;
|
|
45
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
46
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
47
|
+
themeDesc: CMSIBCommonInterface;
|
|
48
|
+
fontDesc: CMSIBCommonInterface;
|
|
49
|
+
fontSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
|
|
50
|
+
textColorDesc: CMSIBCommonInterface;
|
|
51
|
+
boldDesc: CMSIBCommonInterface;
|
|
52
|
+
italicDesc: CMSIBCommonInterface;
|
|
53
|
+
linethroughDesc: CMSIBCommonInterface;
|
|
54
|
+
underlineDesc: CMSIBCommonInterface;
|
|
55
|
+
textAlignDesc: CMSIBCommonInterface;
|
|
56
|
+
characterSpacingDesc: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
57
|
+
lineHeightDesc: import("../../interfaces/global").CMSIBSizeInterface;
|
|
58
|
+
};
|
|
59
|
+
content: {
|
|
60
|
+
selectorKey: ShippingEstimatorSelectorKeysEnum;
|
|
61
|
+
source: {
|
|
62
|
+
value: string;
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
};
|
|
66
|
+
orderBefore: {
|
|
67
|
+
value: boolean;
|
|
68
|
+
property: string;
|
|
69
|
+
propertyType: CMSElementEditTypes;
|
|
70
|
+
};
|
|
71
|
+
orderBeforeTime: {
|
|
72
|
+
value: string;
|
|
73
|
+
property: string;
|
|
74
|
+
propertyType: CMSElementEditTypes;
|
|
75
|
+
unit: number;
|
|
76
|
+
};
|
|
77
|
+
orderBeforeDisplayTime: {
|
|
78
|
+
value: string;
|
|
79
|
+
property: string;
|
|
80
|
+
propertyType: CMSElementEditTypes;
|
|
81
|
+
};
|
|
82
|
+
deliveryBefore: {
|
|
83
|
+
value: boolean;
|
|
84
|
+
property: string;
|
|
85
|
+
propertyType: CMSElementEditTypes;
|
|
86
|
+
};
|
|
87
|
+
deliveryEndsBefore: {
|
|
88
|
+
value: string;
|
|
89
|
+
property: string;
|
|
90
|
+
unit: number;
|
|
91
|
+
propertyType: CMSElementEditTypes;
|
|
92
|
+
};
|
|
93
|
+
deliveryBeforeDisplayTime: {
|
|
94
|
+
value: string;
|
|
95
|
+
property: string;
|
|
96
|
+
propertyType: CMSElementEditTypes;
|
|
97
|
+
};
|
|
98
|
+
deliveryStartingDate: {
|
|
99
|
+
value: boolean;
|
|
100
|
+
property: string;
|
|
101
|
+
propertyType: CMSElementEditTypes;
|
|
102
|
+
};
|
|
103
|
+
deliveryStartsAfter: {
|
|
104
|
+
value: string;
|
|
105
|
+
property: string;
|
|
106
|
+
unit: number;
|
|
107
|
+
propertyType: CMSElementEditTypes;
|
|
108
|
+
};
|
|
109
|
+
deliveryStartingDateDisplayTime: {
|
|
110
|
+
value: string;
|
|
111
|
+
property: string;
|
|
112
|
+
propertyType: CMSElementEditTypes;
|
|
113
|
+
};
|
|
114
|
+
configureMessage: {
|
|
115
|
+
value: string;
|
|
116
|
+
property: string;
|
|
117
|
+
propertyType: CMSElementEditTypes;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
dataConnector: {
|
|
121
|
+
selectorKey: ShippingEstimatorSelectorKeysEnum;
|
|
122
|
+
dataConnector: {
|
|
123
|
+
value: {
|
|
124
|
+
isConnected: boolean;
|
|
125
|
+
key: null;
|
|
126
|
+
url: null;
|
|
127
|
+
enum: null;
|
|
128
|
+
dataSource: string;
|
|
129
|
+
childSource: string;
|
|
130
|
+
keyMappings: {
|
|
131
|
+
text: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
property: string;
|
|
135
|
+
propertyType: CMSElementEditTypes;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
package/dist/variant-picker.scss
CHANGED
|
@@ -88,6 +88,7 @@ $minWidth: 70px;
|
|
|
88
88
|
flex-direction: column;
|
|
89
89
|
gap: var(--_ctm-mob-lt-im-sg, var(--_ctm-tab-lt-im-sg, var(--_ctm-lt-im-sg)));
|
|
90
90
|
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
91
|
+
white-space: nowrap;
|
|
91
92
|
|
|
92
93
|
.standard_wrapper {
|
|
93
94
|
// Select Colors
|
package/dist/widget.scss
CHANGED