@getspot/spot-widget-vue2 4.0.0 → 4.0.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [4.0.2](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@4.0.1...@getspot/spot-widget-vue2@4.0.2) (2026-01-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **core:** render payment terms if initial selection is YES ([b3db801](https://gitlab.com/getspot/spot-widget/commit/b3db801adf04d6949745c25160f9fbbca88b7f42))
7
+
8
+ ## [4.0.1](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@4.0.0...@getspot/spot-widget-vue2@4.0.1) (2026-01-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * when the selection is no we need to check the NO option ([628f5f4](https://gitlab.com/getspot/spot-widget/commit/628f5f453d95bf4956ed4328b8c1fceeb633edd2))
14
+
1
15
  # [4.0.0](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@3.2.2...@getspot/spot-widget-vue2@4.0.0) (2026-01-12)
2
16
 
3
17
 
package/README.md CHANGED
@@ -332,11 +332,9 @@ For multiple items in a cart:
332
332
 
333
333
  ```typescript
334
334
  {
335
- cartInfo: {
336
- cartId: string,
337
- cartName: string,
338
- currencyCode: 'USD' | 'CAD' | 'AUD'
339
- },
335
+ cartId: string,
336
+ cartName: string,
337
+ currencyCode: 'USD' | 'CAD' | 'AUD',
340
338
  items: Array<{
341
339
  // Same fields as single quote, minus cartId and currencyCode
342
340
  cartItemId?: string // Optional unique identifier for cart item
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getspot/spot-widget-vue2",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "Vue 2 wrapper for Spot Widget",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,7 +14,7 @@
14
14
  "CHANGELOG.md"
15
15
  ],
16
16
  "dependencies": {
17
- "@getspot/spot-widget": "^4.0.0"
17
+ "@getspot/spot-widget": "^4.0.2"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "vue": "^2.6.0"