From 1499a4d9980a2ac665304aa0f4eaaf1392cf0b51 Mon Sep 17 00:00:00 2001 From: Casey Eickhoff Date: Thu, 13 Nov 2025 10:40:54 -0700 Subject: [PATCH 1/2] chore: remove duplicate build command --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a1b3a6c15bd..cd18d065dd3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,7 +65,6 @@ commands: - run: name: Build the project command: | - yarn workspace @spectrum-web-components/core build yarn workspace @spectrum-web-components/1st-gen build - save_cache: From ec3e5e8c71604b3f7a8c294b2ff7d53fafec5f13 Mon Sep 17 00:00:00 2001 From: Casey Eickhoff Date: Thu, 13 Nov 2025 10:50:10 -0700 Subject: [PATCH 2/2] chore: changing component for test --- 1st-gen/packages/button/src/CloseButton.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/1st-gen/packages/button/src/CloseButton.ts b/1st-gen/packages/button/src/CloseButton.ts index 75d36e4eea9..403c826631a 100644 --- a/1st-gen/packages/button/src/CloseButton.ts +++ b/1st-gen/packages/button/src/CloseButton.ts @@ -75,6 +75,13 @@ export class CloseButton extends SizedMixin(StyledButton, { public staticColor?: 'black' | 'white'; protected override get buttonContent(): TemplateResult[] { - return [crossIcon[this.size]()]; + return [ + crossIcon[this.size](), + html` + + + + `, + ]; } }