Update npm non-major dependencies (#34446)

* Update npm non-major dependencies

* Iterate

* Iterate

* Oxlint & Knip

* Oxlint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2026-08-05 21:29:30 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Michael Telatynski
parent 7a908483c0
commit dacea3463a
14 changed files with 435 additions and 598 deletions
+2 -2
View File
@@ -88,7 +88,7 @@
"opus-recorder": "^8.0.3",
"pako": "^3.0.0",
"png-chunks-extract": "^1.0.0",
"posthog-js": "1.404.1",
"posthog-js": "1.407.2",
"qrcode": "1.5.4",
"re-resizable": "6.11.2",
"react": "catalog:",
@@ -185,7 +185,7 @@
"matrix-web-i18n": "catalog:",
"mini-css-extract-plugin": "2.10.2",
"modernizr": "^3.12.0",
"oxfmt": "0.59.0",
"oxfmt": "0.60.0",
"playwright-core": "catalog:",
"postcss": "8.5.25",
"postcss-easings": "4.0.0",
@@ -20,7 +20,7 @@ export { findNextSiblingElement, RovingTabIndexContext } from "@element-hq/web-s
export { checkInputableElement } from "@element-hq/web-shared-components";
export { RovingStateActionType } from "@element-hq/web-shared-components";
export { useRovingTabIndex } from "@element-hq/web-shared-components";
export type { IAction, IState } from "@element-hq/web-shared-components";
export type { IState } from "@element-hq/web-shared-components";
/**
* Module to simplify implementing the Roving TabIndex accessibility technique
@@ -63,5 +63,4 @@ export const RovingTabIndexProvider: React.FC<IRovingTabIndexProps> = (props) =>
};
// re-export the semantic helper components for simplicity
export { RovingTabIndexWrapper } from "./roving/RovingTabIndexWrapper";
export { RovingAccessibleButton } from "./roving/RovingAccessibleButton";
@@ -1,9 +0,0 @@
/*
Copyright 2024 New Vector Ltd.
Copyright 2020 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
export { RovingTabIndexWrapper } from "@element-hq/web-shared-components";
-1
View File
@@ -7,4 +7,3 @@ Please see LICENSE files in the repository root for full details.
*/
export { getForwardableEvent } from "./forward/getForwardableEvent";
export { getShareableLocationEvent } from "./location/getShareableLocationEvent";
-3
View File
@@ -14,13 +14,10 @@ export {
_t,
_td,
_tDom,
type IVariables,
type Tags,
type TranslatedString,
lookupString,
sanitizeForTranslation,
normalizeLanguageKey,
getNormalizedLanguageKeys,
getLocale as getCurrentLanguage,
} from "@element-hq/web-shared-components";
+1
View File
@@ -337,6 +337,7 @@ export abstract class Call extends TypedEventEmitter<CallEvent, CallEventHandler
};
}
/** @knipignore - exported for tests */
export type { JitsiCallMemberContent };
/**
+5 -1
View File
@@ -5,4 +5,8 @@
* Please see LICENSE files in the repository root for full details.
*/
export { type MessagePreview, MessagePreviewStore } from "./MessagePreviewStore";
export {
/** @knipignore - exported for tests */
type MessagePreview,
MessagePreviewStore,
} from "./MessagePreviewStore";
+1 -1
View File
@@ -36,7 +36,7 @@ import { type IWidgetEvent, type UserWidget } from "./WidgetUtils-types";
// before waitFor[Room/User]Widget rejects its promise
const WIDGET_WAIT_TIME = 20000;
export type { IWidgetEvent, UserWidget };
export type { UserWidget };
// oxlint-disable-next-line typescript/no-extraneous-class
export default class WidgetUtils {