@liquidcommerce/elements-sdk 2.2.0-beta.24 → 2.2.0-beta.25
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 +72 -15
- package/dist/index.esm.js +8332 -8587
- package/dist/types/core/command/common-command.service.d.ts +2 -0
- package/dist/types/core/pubsub/interfaces/core.interface.d.ts +2 -3
- package/dist/types/core/pubsub/interfaces/product.interface.d.ts +0 -5
- package/dist/types/core/store/interfaces/product.interface.d.ts +0 -1
- package/dist/types/enums/core.enum.d.ts +0 -2
- package/dist/types/modules/cart/components/cart-item.component.d.ts +1 -6
- package/dist/types/modules/checkout/checkout.commands.d.ts +2 -1
- package/dist/types/modules/checkout/components/summary/checkout-item-quantity.component.d.ts +0 -2
- package/dist/types/modules/checkout/components/summary/checkout-item.component.d.ts +2 -1
- package/dist/types/modules/product/components/index.d.ts +1 -1
- package/dist/types/modules/product/product.commands.d.ts +0 -1
- package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +13 -10
- package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +3 -9
- package/package.json +4 -7
- package/umd/elements.js +1 -1
- package/dist/types/modules/product/components/product-engraving.component.d.ts +0 -19
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { BaseComponent } from '@/core/base-component.service';
|
|
2
|
-
export interface IProductEngravingComponentParams {
|
|
3
|
-
productId: string;
|
|
4
|
-
}
|
|
5
|
-
export declare class ProductEngravingComponent extends BaseComponent<IProductEngravingComponentParams, null> {
|
|
6
|
-
get hostClasses(): string[];
|
|
7
|
-
private productPriceSpan;
|
|
8
|
-
private engravingLines;
|
|
9
|
-
private addToCartButton;
|
|
10
|
-
private selectedFulfillment;
|
|
11
|
-
private availableFulfillments;
|
|
12
|
-
beforeConnected(): void;
|
|
13
|
-
private calculateTotalPrice;
|
|
14
|
-
private productInformationSection;
|
|
15
|
-
private retailersSection;
|
|
16
|
-
private engravingLinesSection;
|
|
17
|
-
private actionButtonsSection;
|
|
18
|
-
protected template(): HTMLElement[];
|
|
19
|
-
}
|