Update npm non-major dependencies (#34263)

* Update npm non-major dependencies

* Fix pcss comments

* Run oxfmt

* Fix lockfile

---------

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-07-15 09:15:58 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Michael Telatynski
parent 19f7ea2f7d
commit 86b5a28a32
15 changed files with 276 additions and 285 deletions
+3 -3
View File
@@ -68,7 +68,7 @@
"escape-html": "^1.0.3",
"events": "^3.3.0",
"file-saver": "^2.0.5",
"filesize": "11.0.19",
"filesize": "11.0.22",
"github-markdown-css": "^5.5.1",
"glob-to-regexp": "^0.4.1",
"highlight.js": "^11.3.1",
@@ -88,7 +88,7 @@
"opus-recorder": "^8.0.3",
"pako": "^3.0.0",
"png-chunks-extract": "^1.0.0",
"posthog-js": "1.396.5",
"posthog-js": "1.399.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.56.0",
"oxfmt": "0.58.0",
"playwright-core": "catalog:",
"postcss": "8.5.16",
"postcss-easings": "4.0.0",
+4 -4
View File
@@ -33,9 +33,9 @@ Please see LICENSE files in the repository root for full details.
url("/res/img/noise.png"),
/* gradient to apply different amounts of dithering to different parts of the gradient */
linear-gradient(
to bottom,
/* 10% dithering at the top */ rgb(0, 0, 0, 0.9) 20%,
/* 80% dithering at the bottom */ rgb(0, 0, 0, 0.2) 100%
);
to bottom,
/* 10% dithering at the top */ rgb(0, 0, 0, 0.9) 20%,
/* 80% dithering at the bottom */ rgb(0, 0, 0, 0.2) 100%
);
}
}
@@ -37,8 +37,7 @@ Please see LICENSE files in the repository root for full details.
padding-left: 0;
}
// provides space for scrollbar so that checkbox and scrollbar do not collide
/* provides space for scrollbar so that checkbox and scrollbar do not collide */
&:not(:first-child) {
margin-top: 24px;
}
@@ -13,10 +13,7 @@ Please see LICENSE files in the repository root for full details.
position: absolute;
top: calc(
-1 *
(
var(--MessageActionBar-size-button) + 2 *
(var(--MessageActionBar-size-margin) + var(--cpd-border-width-1))
)
(var(--MessageActionBar-size-button) + 2 * (var(--MessageActionBar-size-margin) + var(--cpd-border-width-1)))
);
right: 8px;
user-select: none;
@@ -53,8 +53,8 @@ Please see LICENSE files in the repository root for full details.
color: $secondary-content;
text-align: center;
// center in all free space
// when there are no results
/* center in all free space
when there are no results */
&.mx_PollHistoryList_noResultsYet {
margin: auto auto;
}
@@ -87,7 +87,7 @@ Please see LICENSE files in the repository root for full details.
margin-right: 0;
}
// Make use of the space above the composer buttons too
/* Make use of the space above the composer buttons too */
.mx_Autocomplete {
width: calc(100% + 140px);
}
+5 -7
View File
@@ -21,9 +21,7 @@ Please see LICENSE files in the repository root for full details.
color: $secondary-content;
transition: color ease 0.15s;
gap: 2px;
max-width: 100%;
// avoid overflow with wide content
max-width: 100%; /* avoid overflow with wide content */
&:hover {
color: $primary-content;
@@ -61,18 +59,18 @@ Please see LICENSE files in the repository root for full details.
font-size: $font-14px !important; /* Override the big emoji override */
}
// in order to keep the message on two lines, we need to make the body inline
/* in order to keep the message on two lines, we need to make the body inline */
.mx_EventTile_body {
display: inline;
}
// The annotation wrapper is flex in normal timeline messages, but that stops
// -webkit-line-clamp from trimming long edited quotes down to two lines.
/* The annotation wrapper is flex in normal timeline messages, but that stops
-webkit-line-clamp from trimming long edited quotes down to two lines. */
[data-textual-body-annotation-wrapper] {
display: contents;
}
// Hide line numbers and edited indicator
/* Hide line numbers and edited indicator */
.mx_EventTile_lineNumbers,
[data-textual-body-edited-marker] {
display: none;
@@ -34,8 +34,8 @@ Please see LICENSE files in the repository root for full details.
user-select: all;
}
// we always have a <br/> tag at the end of the html, we need it to be present at first then hide it as soon as
// we have any other elements
/* we always have a <br/> tag at the end of the html, we need it to be present at first then hide it as soon as
we have any other elements */
br:not(:only-child) {
display: none;
}
@@ -26,7 +26,7 @@ Please see LICENSE files in the repository root for full details.
}
}
// left align section heading
/* left align section heading */
.mx_SettingsSubsectionHeading {
justify-self: start;
}
@@ -5,7 +5,7 @@
* Please see LICENSE files in the repository root for full details.
*/
// Red text for the "Do not close this window" warning
/* Red text for the "Do not close this window" warning */
.mx_ResetIdentityPanel_warning {
color: var(--cpd-color-text-critical-primary);
}
@@ -22,8 +22,8 @@ Please see LICENSE files in the repository root for full details.
flex-grow: 1;
}
// never want full width buttons
// event when other content is 100% width
/* never want full width buttons
event when other content is 100% width */
.mx_AccessibleButton {
align-self: flex-start;
justify-self: flex-start;
+1 -1
View File
@@ -105,7 +105,7 @@ export async function blobIsAnimated(blob: Blob): Promise<boolean | undefined> {
return false;
}
for (let i = 8; i < blob.size; ) {
for (let i = 8; i < blob.size;) {
const length = arrayBufferReadInt(arr, i);
i += 4;
const type = arrayBufferReadStr(arr, i, 4);
+3 -3
View File
@@ -41,15 +41,15 @@
"eslint-plugin-element-call": "github:element-hq/element-call#livekit&path:/eslint",
"eslint-plugin-storybook": "^10.4.6",
"husky": "^9.0.0",
"knip": "6.24.0",
"knip": "6.26.0",
"lint-staged": "^17.0.0",
"lodash": "^4.17.21",
"mermaid": "^11.13.0",
"minimist": "^1.2.6",
"nx": "23.0.2",
"oxfmt": "0.56.0",
"oxfmt": "0.58.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"oxlint-tsgolint": "^0.24.0",
"typescript": "catalog:ts6",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
+1 -1
View File
@@ -108,7 +108,7 @@
"@vector-im/compound-web": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/browser-playwright": "catalog:",
"oxfmt": "0.56.0",
"oxfmt": "0.58.0",
"storybook": "^10.0.7",
"storybook-addon-vis": "^4.0.0",
"typedoc": "^0.28.16",
+248 -251
View File
File diff suppressed because it is too large Load Diff