@liquidcommerce/elements-sdk 2.3.0 → 2.4.0

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.
@@ -35,6 +35,7 @@ interface BaseItem {
35
35
  upc?: string;
36
36
  grouping_id?: string;
37
37
  product_id?: string;
38
+ item_size?: string;
38
39
  }
39
40
  interface PurchaseData {
40
41
  transaction_id: string;
@@ -16,5 +16,6 @@ export declare class CartFooterComponent extends BaseComponent<ICartFooterCompon
16
16
  private shouldDisableCheckout;
17
17
  private updateCheckoutButtonState;
18
18
  private updateSubtotalItemsCount;
19
+ private handleCheckout;
19
20
  protected template(): HTMLElement[];
20
21
  }
@@ -6,5 +6,6 @@ export declare class CartItemComponent extends BaseComponent<ICartItemComponentP
6
6
  get hostClasses(): string[];
7
7
  get hostAttributes(): Record<string, string>;
8
8
  constructor();
9
+ private handleOpenEngravingForm;
9
10
  protected template(): HTMLElement[];
10
11
  }
@@ -6,6 +6,8 @@ export declare class CheckoutSummarySectionComponent extends BaseComponent<null,
6
6
  onStoreWatch(changes: IOnStoreChanged[]): void;
7
7
  private updateZeroAmountElement;
8
8
  protected afterRender(): void;
9
+ private handleEmailToggle;
10
+ private handleSmsToggle;
9
11
  private marketingOptInsContainer;
10
12
  private hasOnDemandOrder;
11
13
  protected template(): HTMLElement[];
@@ -10,6 +10,7 @@ export declare class CheckoutItemsComponent extends BaseComponent<null, ICheckou
10
10
  private syncItemsWithStore;
11
11
  private updateItemCount;
12
12
  onStoreChanged(changes: IOnStoreChanged[]): boolean | undefined;
13
+ private handleToggle;
13
14
  private setupToggler;
14
15
  protected afterRender(): void;
15
16
  protected template(): HTMLElement[];
@@ -9,5 +9,6 @@ export declare class EngravingViewComponent extends BaseComponent<IEngravingView
9
9
  private engravingQuantityFee;
10
10
  private engravingLines;
11
11
  private handleEdit;
12
+ private handleRemove;
12
13
  protected template(): HTMLElement | HTMLElement[] | string;
13
14
  }