remove links to the old alpha repo (#1216)

This commit is contained in:
Cory LaViska
2025-07-22 13:54:19 -04:00
committed by GitHub
parent e10aba0ed1
commit 9a7b258108
4 changed files with 3 additions and 5 deletions

View File

@@ -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 `<wa-tooltip>` now works as expected ([thanks Dennis!](https://github.com/shoelace-style/webawesome-alpha/discussions/203))
- Specifying inherited CSS properties on `<wa-tooltip>` now works as expected
- Fixed a bug in `<wa-select>` that made it hard to use with VueJS, Svelte, and many other frameworks
- Fixed a bug in `<wa-select multiple>` that sometimes resulted in empty `<div>` elements being output
- Fixed a bug where changing a `<wa-option>` label wouldn't update the display label in `<wa-select>`
@@ -401,4 +401,4 @@ Many of these changes and improvements were the direct result of feedback from u
</details>
Did we miss something? [Let us know!](https://github.com/shoelace-style/webawesome-alpha/discussions)
Did we miss something? [Let us know!](https://github.com/shoelace-style/webawesome/discussions)

View File

@@ -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);

View File

@@ -859,7 +859,6 @@ describe('<wa-select>', () => {
});
});
// https://github.com/shoelace-style/webawesome-alpha/issues/263
it('should allow interaction after being disabled and re-enabled', async () => {
const el = await fixture<WaSelect>(html`
<wa-select label="Select one">

View File

@@ -329,7 +329,6 @@ describe('<wa-switch>', () => {
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<WaSwitch>(html`<wa-switch></wa-switch>`);
await el.updateComplete;