Skip to content

Commit

Permalink
CHORE(NPM) - bump @leafygreen-ui/text-area from 8.2.1 to 9.1.2 (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 18, 2024
1 parent 9515646 commit 1da1c65
Show file tree
Hide file tree
Showing 25 changed files with 461 additions and 307 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-pp12fp"
class="leafygreen-ui-l32647"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down Expand Up @@ -174,7 +174,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-pp12fp"
class="leafygreen-ui-l32647"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-pp12fp"
class="leafygreen-ui-l32647"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down Expand Up @@ -174,7 +174,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-pp12fp"
class="leafygreen-ui-l32647"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-1lnipbl"
class="leafygreen-ui-10abeed"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
class="leafygreen-ui-1iyoj2o"
/>
<div
class="leafygreen-ui-109lyo9"
class="leafygreen-ui-14vpn2b"
>
<div
class="leafygreen-ui-1ago99h"
Expand Down
4 changes: 2 additions & 2 deletions apps/spruce/cypress/integration/distroSettings/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe("distro permissions", () => {
"aria-disabled",
"true",
);
cy.get("textarea").should("be.disabled");
cy.get("textarea").should("have.attr", "aria-disabled", "true");
});
});

Expand All @@ -49,7 +49,7 @@ describe("distro permissions", () => {
"aria-disabled",
"false",
);
cy.get("textarea").should("not.be.disabled");
cy.get("textarea").should("have.attr", "aria-disabled", "false");
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ describe("Project Settings when defaulting to repo", () => {
cy.dataCy("navitem-virtual-workstation").click();
cy.dataCy("command-row")
.contains("textarea", "a repo command")
.should("be.disabled");
.should("have.attr", "aria-disabled", "true");
// Override commands, add a command, default to repo then show override commands are cleared
cy.contains("label", "Override Repo Commands")
.as("overrideRepoCommandsButton")
Expand All @@ -343,13 +343,13 @@ describe("Project Settings when defaulting to repo", () => {
cy.validateToast("success", "Successfully updated project");
cy.dataCy("command-row")
.contains("textarea", "a project command")
.should("be.enabled");
.should("have.attr", "aria-disabled", "false");
cy.contains("label", "Default to Repo Commands").click();
clickSave();
cy.validateToast("success", "Successfully updated project");
cy.dataCy("command-row")
.contains("textarea", "a repo command")
.should("be.disabled");
.should("have.attr", "aria-disabled", "true");
cy.get("@overrideRepoCommandsButton").click();
cy.dataCy("command-row").should("not.exist");
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe("GitHub app settings", () => {
cy.get("@appId").should("have.value", "");
cy.get("@privateKey").should("have.value", "");
cy.get("@appId").should("have.attr", "aria-disabled", "false");
cy.get("@privateKey").should("not.have.attr", "disabled");
cy.get("@privateKey").should("have.attr", "aria-disabled", "false");

cy.reload();
cy.dataCy("github-app-credentials-banner").should("be.visible");
Expand All @@ -61,7 +61,7 @@ describe("GitHub app settings", () => {
cy.get("@appId").should("have.value", "12345");
cy.get("@privateKey").should("have.value", "{REDACTED}");
cy.get("@appId").should("have.attr", "aria-disabled", "true");
cy.get("@privateKey").should("have.attr", "disabled");
cy.get("@privateKey").should("have.attr", "aria-disabled", "true");

cy.reload();
cy.dataCy("github-app-credentials-banner").should("not.exist");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe("Project Settings when not defaulting to repo", () => {
cy.validateToast("success", "Successfully updated project");
cy.dataCy("var-value-input").should("have.value", "{REDACTED}");
cy.dataCy("var-name-input").should("have.attr", "aria-disabled", "true");
cy.dataCy("var-value-input").should("be.disabled");
cy.dataCy("var-value-input").should("have.attr", "aria-disabled", "true");
cy.dataCy("var-private-input").should(
"have.attr",
"aria-disabled",
Expand Down
2 changes: 1 addition & 1 deletion apps/spruce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"@leafygreen-ui/skeleton-loader": "^1.2.0",
"@leafygreen-ui/table": "^12.7.0",
"@leafygreen-ui/tabs": "^11.0.4",
"@leafygreen-ui/text-area": "^8.1.3",
"@leafygreen-ui/text-area": "^9.1.2",
"@leafygreen-ui/text-input": "^13.0.2",
"@leafygreen-ui/toast": "^6.1.27",
"@leafygreen-ui/toggle": "^10.0.17",
Expand Down
Loading

0 comments on commit 1da1c65

Please sign in to comment.