Skip to content

Commit

Permalink
CHORE(NPM) - bump @leafygreen-ui/radio-box-group from 12.0.16 to 13.0…
Browse files Browse the repository at this point in the history
….2 (#405)
  • Loading branch information
dependabot[bot] authored Sep 23, 2024
1 parent 44d63bc commit c20f637
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe("projectSettings/project_settings", () => {
cy.dataCy("project-settings-page")
.find("button")
.should("have.attr", "aria-disabled", "true");
cy.get("input").should("be.disabled");
cy.get("input").should("have.attr", "aria-disabled", "true");
});
});

Expand Down
12 changes: 10 additions & 2 deletions apps/spruce/cypress/integration/spawn/host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,16 @@ describe("Navigating to Spawn Host page", () => {
.should("be.visible")
.click();
cy.dataCy("expirable-radio-box").children().should("have.length", 2);
cy.getInputByLabel("Expirable Host").should("not.be.disabled");
cy.getInputByLabel("Unexpirable Host").should("be.disabled");
cy.getInputByLabel("Expirable Host").should(
"have.attr",
"aria-disabled",
"false",
);
cy.getInputByLabel("Unexpirable Host").should(
"have.attr",
"aria-disabled",
"true",
);
});

it("Clicking on the spawn host button should open a spawn host modal.", () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/spruce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"@leafygreen-ui/pagination": "^1.0.24",
"@leafygreen-ui/palette": "^4.0.9",
"@leafygreen-ui/popover": "^11.0.17",
"@leafygreen-ui/radio-box-group": "^12.0.16",
"@leafygreen-ui/radio-box-group": "^13.0.2",
"@leafygreen-ui/radio-group": "^10.2.4",
"@leafygreen-ui/search-input": "^2.0.8",
"@leafygreen-ui/segmented-control": "^8.2.13",
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2620,16 +2620,16 @@
"@leafygreen-ui/hooks" "^8.1.3"
"@leafygreen-ui/lib" "^13.3.0"

"@leafygreen-ui/radio-box-group@^12.0.16":
version "12.0.16"
resolved "https://registry.yarnpkg.com/@leafygreen-ui/radio-box-group/-/radio-box-group-12.0.16.tgz#866ad9c82998bf85970201c543aec9ea2073b195"
integrity sha512-3jTprIrHO87oUsZCGn+FNkK7/clER+yTLV9GKt13rYlpy429hRs1c9EwNHfhT50DPhENhIIc/XYNMpWTDuWyBg==
"@leafygreen-ui/radio-box-group@^13.0.2":
version "13.0.2"
resolved "https://registry.yarnpkg.com/@leafygreen-ui/radio-box-group/-/radio-box-group-13.0.2.tgz#d1e5af3ffa75248b5e0e96d68d82392398b5541e"
integrity sha512-1zRW4jeQzwa2i0RdMQ5UPAMTphz0HAy1nQkoNAeMrb+FSlCkfxbTrqWkiqU0f8gkY3ns/cpkNfKhLkYg3eKXWQ==
dependencies:
"@leafygreen-ui/emotion" "^4.0.7"
"@leafygreen-ui/hooks" "^8.0.0"
"@leafygreen-ui/lib" "^13.0.0"
"@leafygreen-ui/palette" "^4.0.7"
"@leafygreen-ui/tokens" "^2.2.0"
"@leafygreen-ui/emotion" "^4.0.8"
"@leafygreen-ui/hooks" "^8.1.4"
"@leafygreen-ui/lib" "^13.3.0"
"@leafygreen-ui/palette" "^4.0.9"
"@leafygreen-ui/tokens" "^2.5.2"

"@leafygreen-ui/radio-group@^10.2.4":
version "10.2.5"
Expand Down

0 comments on commit c20f637

Please sign in to comment.