@htmlbricks/hb-checkout-shopping-cart 0.71.36 → 0.71.37

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/manifest.json CHANGED
@@ -29,9 +29,6 @@
29
29
  },
30
30
  "payment": {
31
31
  "$ref": "#/definitions/IShoppingPayment"
32
- },
33
- "style": {
34
- "type": "string"
35
32
  }
36
33
  },
37
34
  "required": [
@@ -230,7 +227,7 @@
230
227
  }
231
228
  }
232
229
  ],
233
- "iifeIntegrity": "sha384-U08Bd7NaPfDVp936vZFxa8S/tnOZRK/gj18Cj/dunU8hrRiBqlV7vE1fiJRz01C8",
230
+ "iifeIntegrity": "sha384-3eFNrf0d+I7S4ITcajJ9Y5rAK8paTQZls7Wytq1pn4M8pGYZIMp2UJEJUgze3TS1",
234
231
  "dependencies": [
235
232
  {
236
233
  "name": "hb-table",
@@ -379,5 +376,5 @@
379
376
  "size": {},
380
377
  "iifePath": "main.iife.js",
381
378
  "repoName": "@htmlbricks/hb-checkout-shopping-cart",
382
- "version": "0.71.36"
379
+ "version": "0.71.37"
383
380
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-checkout-shopping-cart",
3
- "version": "0.71.36",
3
+ "version": "0.71.37",
4
4
  "contributors": [],
5
5
  "description": "Order summary built on `hb-table`: maps `payment.items` into rows (name, quantity, line total), computes subtotal, tax, and grand total from item prices, and shows country/currency (with simple symbol defaults). When `completed` is enabled it switches to a compact “order placed” state; `payment` can be supplied as JSON.",
6
6
  "licenses": [
@@ -17,9 +17,6 @@
17
17
  },
18
18
  "payment": {
19
19
  "$ref": "#/definitions/IShoppingPayment"
20
- },
21
- "style": {
22
- "type": "string"
23
20
  }
24
21
  },
25
22
  "required": [
@@ -15,7 +15,6 @@ export interface IShoppingPayment {
15
15
 
16
16
  export type Component = {
17
17
  id?: string;
18
- style?: string;
19
18
  payment: IShoppingPayment;
20
19
  completed?: "yes" | "no";
21
20
  };