@dropins/tools 1.4.0-beta5 → 1.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.
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "@dropins/tools", "version": "1.4.0-beta5", "license": "SEE LICENSE IN LICENSE.md"}
1
+ {"name": "@dropins/tools", "version": "1.4.0", "license": "SEE LICENSE IN LICENSE.md"}
@@ -12,6 +12,7 @@ export interface CartItemProps extends Omit<HTMLAttributes<HTMLDivElement>, 'tit
12
12
  totalExcludingTax?: VNode;
13
13
  sku?: VNode;
14
14
  quantity?: number;
15
+ quantityContent?: VNode;
15
16
  description?: VNode;
16
17
  attributes?: VNode;
17
18
  footer?: VNode;
@@ -23,6 +24,7 @@ export interface CartItemProps extends Omit<HTMLAttributes<HTMLDivElement>, 'tit
23
24
  discount?: VNode;
24
25
  savings?: VNode;
25
26
  actions?: VNode;
27
+ removeContent?: VNode;
26
28
  loading?: boolean;
27
29
  updating?: boolean;
28
30
  onRemove?: () => void;