@getspot/spot-widget-react 3.1.1 → 3.1.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
+ ## @getspot/spot-widget-react [3.1.3](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.2...@getspot/spot-widget-react@3.1.3) (2025-10-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ci:** update semantic-release tag formats and fix corrupted version ([ec89b9e](https://gitlab.com/getspot/spot-widget/commit/ec89b9ee4c97bea99b683fbbd5e4700d4a8b2c4f))
7
+
8
+
9
+
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * **@getspot/spot-widget:** upgraded to 3.0.4
15
+
1
16
  # @getspot/spot-widget-react
2
17
 
18
+ ## 3.1.2
19
+
20
+ ### Patch Changes
21
+
22
+ - 1881ed1: Fix compatibility with Vue 2 build systems by replacing import.meta.url with document.currentScript
23
+ - Updated dependencies [1881ed1]
24
+ - @getspot/spot-widget@3.0.3
25
+
3
26
  ## 3.1.1
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getspot/spot-widget-react",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -12,8 +12,18 @@
12
12
  "README.md",
13
13
  "CHANGELOG.md"
14
14
  ],
15
+ "scripts": {
16
+ "build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
17
+ "docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
18
+ "docs:readme": "npm run docs && node scripts/generate-readme.js",
19
+ "test": "jest --watchAll=false",
20
+ "test:watch": "jest --watch",
21
+ "test:coverage": "jest --coverage",
22
+ "test:ci": "jest --ci --coverage --watchAll=false",
23
+ "prepublishOnly": "npm run build"
24
+ },
15
25
  "dependencies": {
16
- "@getspot/spot-widget": "3.0.2"
26
+ "@getspot/spot-widget": "3.0.4"
17
27
  },
18
28
  "peerDependencies": {
19
29
  "react": ">=18.0.0",
@@ -38,14 +48,5 @@
38
48
  "react": "^18.0.0",
39
49
  "react-dom": "^18.0.0",
40
50
  "ts-jest": "^29.0.0"
41
- },
42
- "scripts": {
43
- "build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
44
- "docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
45
- "docs:readme": "npm run docs && node scripts/generate-readme.js",
46
- "test": "jest",
47
- "test:watch": "jest --watch",
48
- "test:coverage": "jest --coverage",
49
- "test:ci": "jest --ci --coverage --watchAll=false"
50
51
  }
51
- }
52
+ }