@matrix-widget-toolkit/api 3.3.0 → 3.3.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/build/cjs/index.js +1423 -1421
- package/build/esm/index.js +1425 -1423
- package/build/index.d.ts +4 -0
- package/package.json +6 -5
package/build/index.d.ts
CHANGED
|
@@ -1019,6 +1019,10 @@ export declare type WidgetParameters = {
|
|
|
1019
1019
|
* The current selected language in the client.
|
|
1020
1020
|
*/
|
|
1021
1021
|
clientLanguage?: string;
|
|
1022
|
+
/**
|
|
1023
|
+
* The homeserver base URL.
|
|
1024
|
+
*/
|
|
1025
|
+
baseUrl?: string;
|
|
1022
1026
|
/**
|
|
1023
1027
|
* Whether the widget was opened by a client or not.
|
|
1024
1028
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matrix-widget-toolkit/api",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "A simplified layer on top of matrix-widget-api to use build widgets.",
|
|
5
5
|
"author": "Nordeck IT + Consulting GmbH",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -9,17 +9,18 @@
|
|
|
9
9
|
"types": "./build/index.d.ts",
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@craco/craco": "^7.1.0",
|
|
12
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
12
13
|
"@types/jest": "^27.5.2",
|
|
13
14
|
"@types/node": "^20.8.6",
|
|
14
|
-
"@types/qs": "^6.9.
|
|
15
|
-
"typescript": "^5.
|
|
15
|
+
"@types/qs": "^6.9.15",
|
|
16
|
+
"typescript": "^5.5.3"
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
19
|
"build": "tsc && rollup --config ../../rollup.config.mjs",
|
|
19
20
|
"tsc": "tsc",
|
|
20
21
|
"lint": "eslint .",
|
|
21
22
|
"test": "jest --watch",
|
|
22
|
-
"depcheck": "depcheck --ignores=@types/jest,@types/node --ignore-dirs=lib",
|
|
23
|
+
"depcheck": "depcheck --ignores=@types/jest,@types/node,@rollup/plugin-commonjs --ignore-dirs=lib",
|
|
23
24
|
"prepack": "node ../../scripts/prepack.js",
|
|
24
25
|
"postpack": "node ../../scripts/postpack.js",
|
|
25
26
|
"translate": "echo \"Nothing to translate\"",
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"matrix-widget-api": "^1.6.0",
|
|
31
|
-
"qs": "^6.
|
|
32
|
+
"qs": "^6.12.3",
|
|
32
33
|
"rxjs": "^7.8.1"
|
|
33
34
|
},
|
|
34
35
|
"repository": {
|