This commit is contained in:
Michael Telatynski
2025-04-28 12:43:17 +01:00
parent 457d477c2c
commit f7f0424296
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -18,10 +18,10 @@
"@nordeck/element-web-widget-lifecycle-module": "^1.0.1", "@nordeck/element-web-widget-lifecycle-module": "^1.0.1",
"@nordeck/element-web-widget-toggles-module": "^0.1.0", "@nordeck/element-web-widget-toggles-module": "^0.1.0",
"@types/node": "^22.10.7", "@types/node": "^22.10.7",
"@types/react": "^18", "@types/react": "^19",
"@vitejs/plugin-react": "^4.3.4", "@vitejs/plugin-react": "^4.3.4",
"react": "^18.0.0", "react": "^19",
"react-dom": "^18.0.0", "react-dom": "^19",
"rollup-plugin-external-globals": "^0.13.0", "rollup-plugin-external-globals": "^0.13.0",
"typescript": "^5.7.3", "typescript": "^5.7.3",
"vite": "^6.0.11", "vite": "^6.0.11",
+1 -1
View File
@@ -41,7 +41,7 @@ declare global {
} }
class OpendeskModule implements Module { class OpendeskModule implements Module {
public static readonly moduleApiVersion = "^0.1.0"; public static readonly moduleApiVersion = "^0.1.1";
public constructor(private api: Api) {} public constructor(private api: Api) {}
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import { type SynapseContainer } from "@element-hq/element-web-playwright-common/lib/testcontainers"; import { type SynapseContainer } from "@element-hq/element-web-playwright-common/lib/testcontainers/index.js";
import { test, expect } from "../../../../playwright/element-web-test.ts"; import { test, expect } from "../../../../playwright/element-web-test.ts";