From 9a7b258108ed24977b6ba4d2614de36f3d06ad93 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 22 Jul 2025 13:54:19 -0400 Subject: [PATCH] remove links to the old alpha repo (#1216) --- packages/webawesome/docs/docs/resources/changelog.md | 4 ++-- .../webawesome/src/components/progress-ring/progress-ring.css | 2 +- packages/webawesome/src/components/select/select.test.ts | 1 - packages/webawesome/src/components/switch/switch.test.ts | 1 - 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/webawesome/docs/docs/resources/changelog.md b/packages/webawesome/docs/docs/resources/changelog.md index 476215ead..7945b4bce 100644 --- a/packages/webawesome/docs/docs/resources/changelog.md +++ b/packages/webawesome/docs/docs/resources/changelog.md @@ -181,7 +181,7 @@ Many of these changes and improvements were the direct result of feedback from u ### Bug fixes {data-no-outline} -- Specifying inherited CSS properties on `` now works as expected ([thanks Dennis!](https://github.com/shoelace-style/webawesome-alpha/discussions/203)) +- Specifying inherited CSS properties on `` now works as expected - Fixed a bug in `` that made it hard to use with VueJS, Svelte, and many other frameworks - Fixed a bug in `` that sometimes resulted in empty `
` elements being output - Fixed a bug where changing a `` label wouldn't update the display label in `` @@ -401,4 +401,4 @@ Many of these changes and improvements were the direct result of feedback from u -Did we miss something? [Let us know!](https://github.com/shoelace-style/webawesome-alpha/discussions) \ No newline at end of file +Did we miss something? [Let us know!](https://github.com/shoelace-style/webawesome/discussions) diff --git a/packages/webawesome/src/components/progress-ring/progress-ring.css b/packages/webawesome/src/components/progress-ring/progress-ring.css index 2331d45e4..19f95b903 100644 --- a/packages/webawesome/src/components/progress-ring/progress-ring.css +++ b/packages/webawesome/src/components/progress-ring/progress-ring.css @@ -1,6 +1,6 @@ :host { --size: 8rem; - --track-width: 0.25em; /* avoid using rems here - https://github.com/shoelace-style/webawesome-alpha/issues/89 */ + --track-width: 0.25em; /* avoid using rems here */ --track-color: var(--wa-color-neutral-fill-normal); --indicator-width: var(--track-width); --indicator-color: var(--wa-color-brand-fill-loud); diff --git a/packages/webawesome/src/components/select/select.test.ts b/packages/webawesome/src/components/select/select.test.ts index 45e5c03cf..cf43fc9b4 100644 --- a/packages/webawesome/src/components/select/select.test.ts +++ b/packages/webawesome/src/components/select/select.test.ts @@ -859,7 +859,6 @@ describe('', () => { }); }); - // https://github.com/shoelace-style/webawesome-alpha/issues/263 it('should allow interaction after being disabled and re-enabled', async () => { const el = await fixture(html` diff --git a/packages/webawesome/src/components/switch/switch.test.ts b/packages/webawesome/src/components/switch/switch.test.ts index 4b831955a..191ac81e5 100644 --- a/packages/webawesome/src/components/switch/switch.test.ts +++ b/packages/webawesome/src/components/switch/switch.test.ts @@ -329,7 +329,6 @@ describe('', () => { expect(window.scrollY).to.equal(0); }); - // https://github.com/shoelace-style/webawesome-alpha/discussions/124 it('Should properly flag changes to checked and reflect', async () => { const el = await fixture(html``); await el.updateComplete;