@weavy/uikit-react 30.3.1 → 30.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.
@@ -9,6 +9,9 @@ WeavyClient.version = WEAVY_VERSION;
9
9
  /* @ts-expect-error Override Weavy sourceName */
10
10
  WeavyClient.sourceName = WEAVY_SOURCE_NAME;
11
11
 
12
+ /* @ts-expect-error Override Weavy sourceFormat */
13
+ WeavyClient.sourceFormat = WEAVY_SOURCE_FORMAT ?? WeavyClient.sourceFormat;
14
+
12
15
  // React context provider
13
16
  export const WeavyContext = createContext<WeavyType | null>(null);
14
17
 
package/lib/globals.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  declare const WEAVY_SOURCE_NAME: string;
2
+ declare const WEAVY_SOURCE_FORMAT: string;
2
3
  declare const WEAVY_VERSION: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weavy/uikit-react",
3
- "version": "30.3.1",
3
+ "version": "30.4.0",
4
4
  "author": "Weavy",
5
5
  "description": "React components UI-kit for Weavy",
6
6
  "homepage": "https://github.com/weavy/weavy-uikit-react",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@lit/react": "^1.0.8",
43
- "@weavy/uikit-web": "^30.3.1"
43
+ "@weavy/uikit-web": "^30.4.0"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "react": ">=16",
@@ -52,11 +52,11 @@
52
52
  "@eslint/js": "^9.39.2",
53
53
  "@rollup/plugin-babel": "^6.1.0",
54
54
  "@rollup/plugin-node-resolve": "^16.0.3",
55
- "@types/node": "^22.19.8",
56
- "@types/react": "^18.3.27",
55
+ "@types/node": "^22.19.11",
56
+ "@types/react": "^18.3.28",
57
57
  "@types/react-dom": "^18.3.7",
58
- "@vitejs/plugin-react": "^5.1.3",
59
- "dotenv": "^17.2.3",
58
+ "@vitejs/plugin-react": "^5.1.4",
59
+ "dotenv": "^17.3.1",
60
60
  "eslint": "^9.39.2",
61
61
  "eslint-plugin-react": "^7.37.5",
62
62
  "eslint-plugin-react-hooks": "^7.0.1",
@@ -65,12 +65,15 @@
65
65
  "npm-run-all": "^4.1.5",
66
66
  "react": "^18.3.1",
67
67
  "react-dom": "^18.3.1",
68
- "rimraf": "^6.1.2",
68
+ "rimraf": "^6.1.3",
69
69
  "rollup-preserve-directives": "^1.1.3",
70
70
  "sass": "^1.97.3",
71
71
  "typescript": "^5.9.3",
72
- "typescript-eslint": "^8.54.0",
72
+ "typescript-eslint": "^8.56.0",
73
73
  "vite": "~7.1.12",
74
74
  "vite-plugin-dts": "^4.5.4"
75
+ },
76
+ "overrides": {
77
+ "@microsoft/api-extractor": "7.56.3"
75
78
  }
76
79
  }