Skip to content

chore(deps): update dependency @stencil/core to v4.36.1 #30524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jul 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"loader/"
],
"dependencies": {
"@stencil/core": "4.33.1",
"@stencil/core": "4.36.1",
"ionicons": "^7.2.2",
"tslib": "^2.1.0"
},
Expand Down
23 changes: 16 additions & 7 deletions core/src/components/infinite-scroll/test/top/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>Infinite Scroll - Basic</title>
<title>Infinite Scroll - Top</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
Expand All @@ -18,7 +18,7 @@
<ion-app>
<ion-header>
<ion-toolbar>
<ion-title>Infinite Scroll - Basic</ion-title>
<ion-title>Infinite Scroll - Top</ion-title>
</ion-toolbar>
</ion-header>

Expand All @@ -28,9 +28,9 @@
</ion-infinite-scroll-content>
</ion-infinite-scroll>

<button onclick="toggleInfiniteScroll()" class="expand">Toggle InfiniteScroll</button>
<div id="list"></div>

<ion-list id="list"></ion-list>
<button onclick="toggleInfiniteScroll()" class="expand">Toggle InfiniteScroll</button>
</ion-content>
</ion-app>

Expand All @@ -46,17 +46,26 @@
console.log('Loading data...');
await wait(500);
infiniteScroll.complete();
appendItems();
appendItems(true);
// Custom event consumed in the e2e tests
window.dispatchEvent(new CustomEvent('ionInfiniteComplete'));

console.log('Done');
});

function appendItems() {
function appendItems(newItems = false) {
const randomColor =
'#' +
Math.floor(Math.random() * 16777215)
.toString(16)
.padStart(6, '0');

for (var i = 0; i < 30; i++) {
const el = document.createElement('ion-item');
el.textContent = `${1 + i}`;
el.textContent = `Item ${1 + i}`;
if (newItems) {
el.style.borderLeft = `4px solid ${randomColor}`;
}
list.prepend(el);
}
}
Expand Down
8 changes: 7 additions & 1 deletion core/src/components/menu/test/a11y/menu.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) =>
const heading = page.locator('ion-menu h1');
await expect(heading).toHaveText('Open Menu');

const results = await new AxeBuilder({ page }).analyze();
/**
* Disable the 'scrollable-region-focusable' rule because this test
* is missing the required `ion-app` wrapper component. The `ion-app`
* wrapper provides the necessary focus management that allows the
* menu content to be focusable.
*/
const results = await new AxeBuilder({ page }).disableRules('scrollable-region-focusable').analyze();
expect(results.violations).toEqual([]);
});
});
Expand Down
Loading