@sc-360-v2/storefront-cms-library 0.2.53 → 0.2.55
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/README.md +12 -12
- package/dist/builder.js +1 -1
- package/dist/globals.scss +94 -94
- package/dist/types/builder/elements/contact-us/index.d.ts +27 -0
- package/dist/types/builder/elements/section/index.d.ts +1 -0
- package/dist/types/builder/enums/index.d.ts +3 -0
- package/dist/types/builder/index.d.ts +3 -2
- package/dist/types/builder/tools/element-edit/breadcrumbs.d.ts +282 -0
- package/dist/types/builder/tools/element-edit/cart.d.ts +40 -2
- package/dist/types/builder/tools/element-edit/contactUs.d.ts +15 -0
- package/dist/types/builder/tools/element-edit/container.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/iconLibrary.d.ts +49 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/stack.d.ts +1 -1
- package/package.json +1 -1
|
@@ -61,4 +61,7 @@ import * as search from "./search";
|
|
|
61
61
|
import * as layouter from "./layouter";
|
|
62
62
|
import * as layouterItem from "./layouter-item";
|
|
63
63
|
import * as categoryDetails from "./categoryDetails";
|
|
64
|
-
|
|
64
|
+
import * as contactUs from "./contactUs";
|
|
65
|
+
import * as breadcrumbs from "./breadcrumbs";
|
|
66
|
+
import * as iconLibrary from "./iconLibrary";
|
|
67
|
+
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, breadcrumbs, iconLibrary, };
|
|
@@ -22,5 +22,5 @@ export declare enum selfSelectorKeysEnum {
|
|
|
22
22
|
DESIGN = "design",
|
|
23
23
|
DATA_CONNECTOR = "dataConnector"
|
|
24
24
|
}
|
|
25
|
-
export declare const getDefaultData: (contentWidth
|
|
25
|
+
export declare const getDefaultData: (contentWidth?: any) => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
26
26
|
export {};
|