@sc-360-v2/storefront-cms-library 0.3.40 → 0.3.42
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/buyForHeaders.scss +11 -0
- package/dist/cart-details.scss +2 -2
- package/dist/checkout.scss +192 -35
- package/dist/customization-tree.scss +2 -0
- package/dist/prefix-list.scss +19 -10
- package/dist/quick-order-pad.scss +3 -0
- package/dist/review-cart.scss +1 -0
- package/dist/section.scss +5 -1
- package/dist/transform-properties-module.scss +20 -0
- package/dist/types/builder/enums/index.d.ts +1 -0
- package/dist/types/builder/interfaces/global.d.ts +25 -0
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +247 -1
- package/dist/types/builder/tools/element-edit/allocations.d.ts +17 -1
- package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +0 -441
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +530 -0
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +138 -1
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +14 -20
- package/dist/types/builder/tools/element-edit/common.d.ts +3 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +1014 -101
- package/dist/types/builder/tools/element-edit/productActions.d.ts +0 -441
- package/dist/types/builder/tools/element-edit/quotaDetails.d.ts +34 -0
- package/dist/types/builder/tools/element-edit/repeater.d.ts +1 -439
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export declare enum SelectorKeysEnum {
|
|
|
7
7
|
LAYOUT = "layout",
|
|
8
8
|
CONTENT = "content",
|
|
9
9
|
DESIGN = "design",
|
|
10
|
+
ACCORDION_ARROWS_ITEM = "accordionarrowsItem",
|
|
10
11
|
TITLE_CONTAINER_DESIGN = "headerContainer",
|
|
11
12
|
CART_BODY_WIDGET = "cartBodyWidget",
|
|
12
13
|
PRODUCT_WIDGET = "productWidget",
|
|
@@ -18,7 +19,7 @@ export declare enum SelectorKeysEnum {
|
|
|
18
19
|
PRODUCT_ESTIMATED_DATE = "productEstimatedDate",
|
|
19
20
|
PRODUCT_IMAGE = "productImage",
|
|
20
21
|
PRODUCT_PRICE = "productPrice",
|
|
21
|
-
NUMBER_OF_ITEMS = "
|
|
22
|
+
NUMBER_OF_ITEMS = "numberOfItems",
|
|
22
23
|
SHIPPING_CHARGES = "shippingCharges",
|
|
23
24
|
TAX = "tax",
|
|
24
25
|
TAX_EXEMPT = "taxExempt",
|
|
@@ -133,27 +134,20 @@ export declare const getDefaultData: () => {
|
|
|
133
134
|
property: string;
|
|
134
135
|
propertyType: CMSElementEditTypes;
|
|
135
136
|
};
|
|
136
|
-
headingPadding: {
|
|
137
|
-
value: number;
|
|
138
|
-
property: string;
|
|
139
|
-
propertyType: CMSElementEditTypes;
|
|
140
|
-
unit: number;
|
|
141
|
-
};
|
|
142
|
-
bodyPadding: {
|
|
143
|
-
value: number;
|
|
144
|
-
property: string;
|
|
145
|
-
propertyType: CMSElementEditTypes;
|
|
146
|
-
unit: number;
|
|
147
|
-
};
|
|
148
|
-
buttonPadding: {
|
|
149
|
-
value: number;
|
|
150
|
-
property: string;
|
|
151
|
-
propertyType: CMSElementEditTypes;
|
|
152
|
-
unit: number;
|
|
153
|
-
};
|
|
154
137
|
};
|
|
155
138
|
design: {
|
|
156
139
|
selectorKey: SelectorKeysEnum;
|
|
140
|
+
accordionArrowsItem: {
|
|
141
|
+
selectorKey: SelectorKeysEnum;
|
|
142
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
143
|
+
iconColor: CMSIBCommonInterface;
|
|
144
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
145
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
146
|
+
showIconDesc: CMSIBCommonInterface | undefined;
|
|
147
|
+
iconColorDesc: CMSIBCommonInterface;
|
|
148
|
+
iconSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
|
|
149
|
+
iconDesc: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
150
|
+
};
|
|
157
151
|
headerContainer: {
|
|
158
152
|
theme: CMSIBCommonInterface;
|
|
159
153
|
font: CMSIBCommonInterface;
|
|
@@ -814,7 +808,7 @@ export declare const getDefaultData: () => {
|
|
|
814
808
|
selectorKey: SelectorKeysEnum;
|
|
815
809
|
};
|
|
816
810
|
};
|
|
817
|
-
|
|
811
|
+
numberOfItems: {
|
|
818
812
|
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
819
813
|
themeDesc: {
|
|
820
814
|
value: string;
|
|
@@ -92,8 +92,11 @@ export interface CMSElementEditPopupDesignInterface {
|
|
|
92
92
|
overlayColor: CMSIBCommonInterface;
|
|
93
93
|
textPosition: CMSIBCommonInterface;
|
|
94
94
|
verticalAlignment: CMSIBCommonInterface;
|
|
95
|
+
horizontalAlignment: CMSIBCommonInterface;
|
|
95
96
|
textHorizontalPadding: CMSIBSizeInterface;
|
|
96
97
|
dividerColor: CMSIBCommonInterface;
|
|
98
|
+
iconColorDesc: CMSIBCommonInterface;
|
|
99
|
+
iconSizeDesc: CMSIBSizeInterface;
|
|
97
100
|
}
|
|
98
101
|
export interface CMSElementEditPopupInterface<L = CMSElementEditPopupLayoutInterface, D = CMSElementEditPopupDesignInterface> {
|
|
99
102
|
layout?: L;
|
|
@@ -99,4 +99,5 @@ import * as languageMenu from "./language-menu";
|
|
|
99
99
|
import * as cartAttributes from "./cartAttributes";
|
|
100
100
|
import * as loader from "./loader";
|
|
101
101
|
import * as addProductsTab from "./addProductsTab";
|
|
102
|
-
|
|
102
|
+
import * as quotaDetails from "./quotaDetails";
|
|
103
|
+
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, menuV2, menuItem, layouterPro, layouterProItem, filterResults, productSizeChart, userElements, badge, cartAttributes, languageMenu, loader, addProductsTab, quotaDetails, };
|