@sc-360-v2/storefront-cms-library 0.2.80 → 0.2.82
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/bundle.scss +866 -0
- package/dist/checkout.scss +9 -9
- package/dist/gallery-slider-temp.scss +16 -1
- package/dist/quick-links.scss +21 -3
- package/dist/search.scss +78 -12
- package/dist/toaster.scss +350 -0
- package/dist/types/builder/elements/section/index.d.ts +3 -0
- package/dist/types/builder/elements/toaster/index.d.ts +30 -0
- package/dist/types/builder/enums/index.d.ts +16 -5
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +12 -0
- package/dist/types/builder/tools/element-edit/toaster.d.ts +38 -0
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
|
@@ -81,4 +81,5 @@ import * as quickLinks from "./quickLinks";
|
|
|
81
81
|
import * as addOrder from "./addOrder";
|
|
82
82
|
import * as buyForWithTabs from "./buyForWithTab";
|
|
83
83
|
import * as buyForTabsContainer from "./buyForTabContainer";
|
|
84
|
-
|
|
84
|
+
import * as toaster from "./toaster";
|
|
85
|
+
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, };
|
|
@@ -97,6 +97,18 @@ export declare const getDefaultData: () => {
|
|
|
97
97
|
value: string;
|
|
98
98
|
propertyType: CMSElementEditTypes;
|
|
99
99
|
};
|
|
100
|
+
gapBetweenItems: {
|
|
101
|
+
value: string;
|
|
102
|
+
unit: number;
|
|
103
|
+
property: string;
|
|
104
|
+
propertyType: CMSElementEditTypes;
|
|
105
|
+
};
|
|
106
|
+
drodownWidth: {
|
|
107
|
+
value: string;
|
|
108
|
+
unit: number;
|
|
109
|
+
property: string;
|
|
110
|
+
propertyType: CMSElementEditTypes;
|
|
111
|
+
};
|
|
100
112
|
positionType: CMSIBCommonInterface | undefined;
|
|
101
113
|
pinTo: CMSIBCommonInterface | undefined;
|
|
102
114
|
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
2
|
+
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
3
|
+
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
|
+
}
|
|
5
|
+
interface selfLayoutInterface {
|
|
6
|
+
selectorKey: string;
|
|
7
|
+
position: CMSIBCommonInterface;
|
|
8
|
+
itemSpacing: CMSIBCommonInterface;
|
|
9
|
+
itemsPlacement: CMSIBCommonInterface;
|
|
10
|
+
itemsDisplayDirection: CMSIBCommonInterface;
|
|
11
|
+
showIcon: CMSIBCommonInterface;
|
|
12
|
+
showText: CMSIBCommonInterface;
|
|
13
|
+
showButton: CMSIBCommonInterface;
|
|
14
|
+
showCloseIcon: CMSIBCommonInterface;
|
|
15
|
+
showAnimation: CMSIBCommonInterface;
|
|
16
|
+
autocloseDelayInms: CMSIBCommonInterface;
|
|
17
|
+
transition: CMSIBCommonInterface;
|
|
18
|
+
progress: CMSIBCommonInterface;
|
|
19
|
+
limit: CMSIBCommonInterface;
|
|
20
|
+
hideProgressbar: CMSIBCommonInterface;
|
|
21
|
+
closeOnClick: CMSIBCommonInterface;
|
|
22
|
+
pauseToastWhenWindowLosesFocus: CMSIBCommonInterface;
|
|
23
|
+
disableAutoClose: CMSIBCommonInterface;
|
|
24
|
+
newestOnTop: CMSIBCommonInterface;
|
|
25
|
+
pauseDelayOnHover: CMSIBCommonInterface;
|
|
26
|
+
rightToLeftLayout: CMSIBCommonInterface;
|
|
27
|
+
}
|
|
28
|
+
export interface selfDesignInterface {
|
|
29
|
+
selectorKey: string;
|
|
30
|
+
}
|
|
31
|
+
export declare enum SelectorKeysEnum {
|
|
32
|
+
LAYOUT = "layout",
|
|
33
|
+
DESIGN = "design",
|
|
34
|
+
CONTENT = "content",
|
|
35
|
+
DATA_CONNECTOR = "dataConnector"
|
|
36
|
+
}
|
|
37
|
+
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
38
|
+
export {};
|
package/dist/widget.scss
CHANGED