Skip to content
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

build(deps): update dependency @stencil/core to v4.16.0 #9119

Merged
merged 13 commits into from
Apr 16, 2024
146 changes: 82 additions & 64 deletions 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 packages/calcite-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
"dependencies": {
"@floating-ui/dom": "1.6.3",
"@stencil/core": "4.13.0",
"@stencil/core": "4.16.0",
"@types/color": "3.0.6",
"color": "4.2.3",
"composed-offset-position": "0.0.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,10 @@ describe("calcite-action-bar", () => {

it("allows disabling expandable behavior", async () => {
const page = await newE2EPage();

await page.setContent("<calcite-action-bar expand-disabled></calcite-action-bar>");

await page.waitForChanges();

const expandAction = await page.find("calcite-action-bar >>> calcite-action");
const expandAction = await page.find("calcite-action-bar >>> calcite-action-group calcite-action");

expect(expandAction).toBeNull();
});
Expand Down Expand Up @@ -211,7 +209,7 @@ describe("calcite-action-bar", () => {
</calcite-action-bar>`,
);

const expandAction = await page.find("calcite-action-bar >>> calcite-action");
const expandAction = await page.find("calcite-action-bar >>> calcite-action-group calcite-action");
const action = await page.find("calcite-action");
const actionBar = await page.find("calcite-action-bar");
const group = await page.find("calcite-action-group");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ describe("calcite-action-pad", () => {
await page.setContent("<calcite-action-pad></calcite-action-pad>");

const element = await page.find("calcite-action-pad");
const actionElement = await page.find("calcite-action-pad >>> calcite-action");
const actionElement = await page.find("calcite-action-pad >>> calcite-action-group calcite-action");

const eventSpy = await element.spyOnEvent("calciteActionPadToggle");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe("calcite-color-picker", () => {
const page = await newE2EPage();
await page.setContent(html`<calcite-color-picker></calcite-color-picker>`);

const buttons = await page.findAll("calcite-color-picker >>> calcite-button");
const buttons = await page.findAll(`calcite-color-picker >>> .${CSS.container} calcite-button`);

expect(buttons).toHaveLength(2);

Expand Down
Loading
Loading