@sc-360-v2/storefront-cms-library 0.3.57 → 0.3.59
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/bulk-order-pad.scss +1 -0
- package/dist/buyForHeaders.scss +13 -0
- package/dist/cart-summary.scss +901 -40
- package/dist/checkout.scss +115 -22
- package/dist/confirmationModal.scss +1 -0
- package/dist/dropdownTemplate.scss +218 -23
- package/dist/employee-bulk-order.scss +704 -528
- package/dist/emtpy-templates.scss +53 -0
- package/dist/functions.js +1 -1
- package/dist/language-selector.scss +1 -0
- package/dist/modal.scss +4 -3
- package/dist/shipping-payments.scss +109 -21
- package/dist/types/builder/elements/form-builder/index.d.ts +4 -0
- package/dist/types/builder/enums/index.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +2833 -189
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/productDescription.d.ts +16 -0
- package/dist/types/helper/helper-functions.d.ts +7 -1
- package/dist/types/html-elements/element-types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -101,4 +101,5 @@ import * as loader from "./loader";
|
|
|
101
101
|
import * as addProductsTab from "./addProductsTab";
|
|
102
102
|
import * as quotaDetails from "./quotaDetails";
|
|
103
103
|
import * as shippingPayments from "./shipping-payments";
|
|
104
|
-
|
|
104
|
+
import * as productDescription from "./productDescription";
|
|
105
|
+
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, shippingPayments, productDescription, };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
2
|
+
interface selfLayoutInterface {
|
|
3
|
+
selectorKey: string;
|
|
4
|
+
textData: any;
|
|
5
|
+
showAdditionalDescription: any;
|
|
6
|
+
}
|
|
7
|
+
export interface selfDesignInterface {
|
|
8
|
+
selectorKey: string;
|
|
9
|
+
}
|
|
10
|
+
export declare enum textSelectorKeysEnum {
|
|
11
|
+
LAYOUT = "layout",
|
|
12
|
+
DESIGN = "design",
|
|
13
|
+
DATA_CONNECTOR = "dataConnector"
|
|
14
|
+
}
|
|
15
|
+
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
16
|
+
export {};
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
export declare const dateTimeFormat: (
|
|
1
|
+
export declare const dateTimeFormat: (params: {
|
|
2
|
+
dateString: string;
|
|
3
|
+
isTime?: boolean;
|
|
4
|
+
formatStr?: string;
|
|
5
|
+
timeZone?: string;
|
|
6
|
+
locale?: string;
|
|
7
|
+
}) => string | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DetailedHTMLProps, HTMLAttributes, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, ButtonHTMLAttributes, SelectHTMLAttributes, OptionHTMLAttributes, ImgHTMLAttributes, VideoHTMLAttributes } from "react";
|
|
1
|
+
import { DetailedHTMLProps, HTMLAttributes, ReactNode, InputHTMLAttributes, TextareaHTMLAttributes, ButtonHTMLAttributes, SelectHTMLAttributes, OptionHTMLAttributes, ImgHTMLAttributes, VideoHTMLAttributes, LabelHTMLAttributes } from "react";
|
|
2
2
|
export interface H1Props extends DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> {
|
|
3
3
|
children?: ReactNode;
|
|
4
4
|
}
|
|
@@ -53,7 +53,7 @@ export interface TableCellProps extends DetailedHTMLProps<HTMLAttributes<HTMLTab
|
|
|
53
53
|
export interface FormProps extends DetailedHTMLProps<HTMLAttributes<HTMLFormElement>, HTMLFormElement> {
|
|
54
54
|
children?: ReactNode;
|
|
55
55
|
}
|
|
56
|
-
export interface LabelProps extends DetailedHTMLProps<
|
|
56
|
+
export interface LabelProps extends DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {
|
|
57
57
|
children?: ReactNode;
|
|
58
58
|
}
|
|
59
59
|
export interface DetailsProps extends DetailedHTMLProps<HTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement> {
|