fix(deps): update dependency @adobe/spectrum-wc - #56
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
Hello, I'm the AEM Code Sync Bot and I will run some actions to deploy your branch and validate page speed.
Commits
|
renovate
Bot
force-pushed
the
renovate
branch
2 times, most recently
from
August 18, 2026 19:26
425f313 to
a19ccb3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.0.0-beta.0→2.0.0-snapshot-test.202608241927355.56.0→5.57.00.28.1→0.28.2Release Notes
adobe/spectrum-web-components (@adobe/spectrum-wc)
v2.0.0-snapshot-test.20260824192735Compare Source
v2.0.0-snapshot-test.20260728023631Compare Source
v2.0.0-next.20260728161641Compare Source
v2.0.0-beta.2Minor Changes
#6410
b0c6e37- Add the 2nd-gen<swc-close-button>, migrated from the Spectrum 1<sp-close-button>.size,disabled,accessible-label, andstatic-color; omits the legacyvariantsurface in favor ofstatic-color.<button type="button">with delegated focus; requiresaccessible-labelfor its icon-only name; the cross icon remains decorative.--swc-close-button-*custom-property surface for token-aligned overrides.#6480
f27f690- feat(color-handle): Added<swc-color-handle>, the Spectrum 2 migration ofsp-color-handle.A non-interactive color-picker primitive exposing
color,disabled,focused,open, and the newfillproperty, with a built-in<swc-color-loupe>and an adaptive white-first dual border that meets WCAG 1.4.11 non-text contrast across the color spectrum. The--mod-colorhandle-*custom properties are removed; see the migration guide.#6486
bf02e76- feat(live-selection-controller): AddedLiveSelectionController, a Lit reactive controller that enforces a selection constraint (single or multiple) on a group of items that each own their own selected state.Use it for patterns like accordions and disclosure groups where items manage their own
openorselectedproperty and can change that state on their own initiative. Unlike a cache-authoritative controller, it reads item state live from the DOM on each observed event rather than maintaining an internal list, so it stays correct even when items change themselves outside a controller-driven transition.The accordion (
swc-accordion) now usesLiveSelectionControllerinternally to enforce its exclusive-open constraint; its public API and behavior are unchanged.#6476
e2a7e4e- fix(tabs): Changed the defaultkeyboard-activationon<swc-tabs>frommanualtoautomatic, aligning with React Spectrum/React AriaTabs.swc-tab-panelcontent is always present in the light DOM (not lazily mounted), which is the condition the WAI-ARIA APG recommends for automatic activation. Consumers relying on the previous implicitmanualdefault (inherited from 1st-gensp-tabs'auto = false) should addkeyboard-activation="manual"explicitly, particularly if their own panel content is expensive to render or lazy-loaded.#6501
9592f85-Spectrum WC— Added a published Custom Elements Manifest for editor, documentation, and integration tooling.#6488
6eccec9- feat(progress-bar): Added<swc-progress-bar>, the Spectrum 2 migration of Progress Bar.Renames from
<sp-progress-bar>:progressbecomesvalue,side-labelbecomeslabel-position="side", thelabelstring attribute becomes alabelnamed slot, and--mod-progressbar-*custom properties become--swc-linear-progress-*. The defaultsizeis now'm'.New in Spectrum 2:
min-value/max-valuefor arbitrary numeric ranges,static-color="black",value-label, aformatOptionsproperty,accessible-label, and adescriptionslot.over-backgroundis removed in favor ofstatic-color="white", androle="progressbar"plus thearia-value*attributes now live on an internal element rather than the host. See the Progress Bar migration guide for full upgrade steps.#6494
9e7995a- refactor(tabs): Migrate<swc-tabs>keyboard navigation toFocusgroupNavigationController.Arrow-key, Home, and End navigation is now handled by the controller rather than by manually computed deltas in
handleKeyDown. ThehandleKeyDownmethod retains only Enter/Space activation; all roving-tabindex management is delegated to the controller. In automatic activation mode,focusgroupNavigationActiveChangeevents withsource: 'keyboard'drive selection-follows-focus; events withsource: 'refresh'orsource: 'programmatic'are intentionally ignored so that mounting or togglingdisabledcannot trigger spuriouschangeevents.Patch Changes
#6518
36052f3- Fix inaccurate API reference tables for several 2nd-gen components by documenting CSS custom properties and JSDoc property descriptions that were missing from the generated Custom Elements Manifest.@csspropentries:swc-tabs/swc-tab(5 props),swc-action-buttonandswc-button(down-state transform, button also getsmax-inline-size),swc-illustrated-message(10 props covering illustration sizing/color and heading/description typography).size/variantproperty descriptions forswc-button,swc-action-button,swc-close-button,swc-status-light, andswc-badge.swc-tabs's API table;swc-tabandswc-tab-panel(the other two elements of the three-element component) now get their own API tables too, matching the pattern already used by Accordion.No component runtime changes; documentation and Storybook docs-page rendering only.
#6513
41e0483- fix(color-loupe): Added an adaptive white-first inner border to<swc-color-loupe>so its chrome meets WCAG 1.4.11 non-text contrast (≥3:1) across the color spectrum.The inner border's opacity now escalates above its default floor only when the white outer halo can't itself carry 3:1 contrast against the loupe's color. The outer border, shape, and sizing are unchanged, and there is no public API change. This supersedes the prior practical-limits exception, matching the adaptive dual-border approach already shipped for
<swc-color-handle>.#6519
c28d00c- Fix the broken@importin the publishedglobal-link.css. The build flattens all stylesheets intodist/root, butglobal-link.cssshipped with@import url("../link.css")(relative to its source subfolder), which pointed one directory abovedist/and failed to resolve for consumers of@adobe/spectrum-wc/global-link.css. Local@importtargets are now rewritten to sibling references (./link.css) during the flatten.#6457
8c4acae- fix(illustrated-message): Fixed theactionsslot content alignment in<swc-illustrated-message>.The
.swc-IllustratedMessage-contentflex container was missingalign-items: center, causing slotted actions (e.g. a<swc-button>or<swc-button-group>) to stretch to the container width instead of centering horizontally.#6506
6049706- fix(popover): Fixedswc-popoverstaying dismissed on the next unrelated outside click after a trigger press was dragged off and released elsewhere.A
pointerdownon the trigger followed by a drag off the trigger and a release elsewhere never dispatches aclick, so the internal reopen-guard flag was left stucktrue, misattributing the next unrelated outside light-dismiss to that stale press and swallowing the following legitimate trigger click.#6490
1e053fe- fix(slot-attribute-propagation-controller): FixedSlotAttributePropagationControllerpermanently skipping re-propagation when a repeated value was recorded before its target slot had resolved, and added support for propagating attributes that are only sometimes present on the host.getValuemay now returnnullto remove the propagated attribute from assigned elements instead of setting it to an empty string. ThehostUpdated()no-op guard now only records a value as applied once the slot actually resolves, so a slot that resolves after an earlier unsuccessful attempt with the same value is no longer skipped forever.SlotAttributePropagationControlleris also now a public export of@adobe/spectrum-wc-core(@spectrum-web-components/core/controllers/slot-attribute-propagation-controller.js), alongside dedicated tests and a Storybook controller docs page. Existing consumers (<swc-button-group>,<swc-illustrated-message>) are unaffected aside from benefiting from the propagation-guard fix.#6439
7f0c3e9- Extract the pending (busy) state into reusable, decoupled 2nd-gen core primitives so any pending-capable component can adopt it.@adobe/spectrum-wc-core: addsPendingController(/controllers/pending-controller) for the pending state (delayed activation, inline-size freeze, derived busy accessible name), the render-onlyrenderPendingSpinnerdirective (/directives/pending-spinner), andPendingMixin(/mixins) which wires the controller, thepending/pending-labelproperties, and click suppression.ButtonBaseno longer owns pending state.@adobe/spectrum-wc:swc-buttonandswc-action-buttonnow consume these primitives viaPendingMixin. No public API change —pending/pending-labeland the busy behavior are unchanged.#6533
5da5474- fix(progress-circle): Replaced theanimation: nonereduced-motion override on<swc-progress-circle>'s indeterminate state with a slowed, single-rotation animation driven by custom properties (--swc-progress-circle-rotate-start,--swc-progress-circle-rotate-end,--swc-progress-circle-dashoffset-30), soprefers-reduced-motion: reducestill conveys progress without the distracting spin.#6462
2865959- Refine the 2nd-gen response status pattern API, animation, and docs.<swc-response-status-step>as a dedicated step element with its own styles and exports.Updated dependencies [
36052f3,b0c6e37,f27f690,41e0483,9e7995a,1e053fe,7f0c3e9,5da5474,6049706]:v2.0.0-beta.1Minor Changes
#6268
abe7cbdThanks @rise-erpelding! - feat(accordion): Add 2nd-gen<swc-accordion>and<swc-accordion-item>with Spectrum 2-oriented behavior. Key changes from 1st-gen<sp-accordion>/<sp-accordion-item>:AccordionBase/AccordionItemBasewith public API:allow-multiple,level,size,density,quiet, hostdisabled, itemopen/disabled, slotted heading (slot="label"), optionalslot="actions", and cancellableswc-accordion-item-toggle<h*>wrapping a native header<button>,aria-expanded/aria-controls,role="region"+aria-labelledby, closed panels usearia-hidden="true"plus CSS collapse (not HTMLhidden; supportscalc-size()height animation), disabled items usearia-disabledon the header andinerton the panel (no rovingtabindexor arrow-key header navigation)preventDefault()and toggles without scrolling overflow containers (SWC-1487)openis frozen while the host or item is disabled (imperative assignment cannot expand or collapse)chore(accordion): Add Spectrum 2 deprecation warnings in dev mode on 1st-gen accordion for
label, itemlevel, and hostfocus(), with matching tests.#6340
57a77bcThanks @cdransf! - Added<swc-action-button>with full Spectrum 2 visual fidelity, migrated from the Spectrum 1<sp-action-button>. See the component docs and migration guide.accessible-labelreplaceslabel;sizeincludesxs(not onswc-button);quietandstatic-colorretained as primary visual differentiators;pending/pending-labeladded (matchingswc-button);aria-haspopup/aria-expandedforwarded to the inner<button>for menu-trigger patterns.toggles,selected,emphasized, andaria-pressedremoved (toggle UX moves toswc-toggle-button/swc-toggle-button-group);hrefand the link API removed (use native<a>);hold-affordance/longpressdeferred;labelrenamed toaccessible-label.<button>(delegatesFocus: true); host carries norole="button";aria-disabled="true"on the inner<button>during pending state; dev-mode warning when icon-only usage is missingaccessible-label.--swc-action-button-*custom properties (replaces--mod-actionbutton-*/--spectrum-actionbutton-*); full Spectrum 2 token coverage across all size × quiet × static-color combinations; Windows High Contrast support.#6395
b4740ebThanks @Rajdeepc! - - #6395acd555a-ButtonGroup— Added<swc-button-group>with full Spectrum 2 visual fidelity. See the component docs and migration guide.#6454
591fa65Thanks @cdransf! - Added anactionsslot to<swc-illustrated-message>for placing a<swc-button>or<swc-button-group>below the description. The component automatically propagates itssizeto every slotted element. Also addsSlotAttributePropagationController, an internal LitReactiveControllerthat propagates any host attribute to slotted children; used byIllustratedMessageandButtonGroup.#6382
a314298Thanks @aramos-adobe! -Link— Added 2nd-gen link styles for native<a href>elements (noswc-linkcustom element). Default prose and link-list appearance ships with Typography; explicit modifiers live inlink.css, with optionalglobal-link.cssfor application-wide bare-anchor baseline. See the component docs and migration guide. Consumer action: replace<sp-link>with native<a href>and the classes or Typography wrappers documented in the migration guide.Patch Changes
57a77bc,b4740eb,591fa65]:algolia/algoliasearch-client-javascript (algoliasearch)
v5.57.0Compare Source
evanw/esbuild (esbuild)
v0.28.2Compare Source
Fix tree shaking bug due to TypeScript import alias (#4507)
This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific
importassignment and looks something like this:Fix CSS minification bug involving
&(#4497)This release fixes a bug where esbuild's CSS minifier incorrectly removed a
&when it was unsafe to do so. Here is an example:This should match
<span class="a"><span class="b"><span class="b">yes</span></span></span>but not<span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.Avoid overwriting input files without
--allow-overwrite(#4484)For example:
esbuild input.js --outfile=input.jstells esbuild to overwriteinput.jswith the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless
--allow-overwriteis explicitly present. This is done by not writing out any files when a build error is encountered.Fix incorrect code generated when using top-level await (#4498)
Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing
asyncon one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing anasyncmodule wrapper.Fix a minification bug with lowered logical assignment operators (#4508)
This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:
Fix a potential deadlock when the JavaScript API is used incorrectly (#4503, #4506)
The JavaScript API runs the native esbuild executable as a long-lived child process and communicates with it over stdin/stdout/stderr. Each API request is asynchronous and the executable stays open as long as it has work to do, which is as long as either stdin is still open (meaning there may be more API requests) or there are currently requests being processed.
Previously esbuild's tracking of outstanding API requests missed decrementing a reference count in an edge case where esbuild's JavaScript API was used incorrectly and the API request returned an error. This could in some cases cause esbuild's native executable to exit with an error message about a deadlock. This release fixes the reference counting bug.
This fix was submitted by @ZuBB.
Handle target collisions (#4509)
It's possible to specify the same target engine multiple times, such as with
--target=chrome1,chrome99. This edge case wasn't anticipated and previously took the last version for the duplicated target engine instead of the minimum version (sochrome99in this case instead ofchrome1). With this release, esbuild will now pick the minimum version between all duplicated target engines.Force
.mp3files to use theaudio/mpegMIME type (#4485)MIME type detection for esbuild's data URLs uses Go's built-in MIME type detection, which is based on the MIME sniffing standard. This works correctly for MP3 files that start with the byte sequence
ID3, which is commonly the case. However, it's possible to construct valid MP3 files that do not start withID3, and that perhaps Go's built-in MIME type detection doesn't implement the "Signature for MP3 without ID3" part of the algorithm. This results in some.mp3files incorrectly using theapplication/octet-streamMIME type instead ofaudio/mpeg. With this release, esbuild will now always use theaudio/mpegMIME type for files ending in.mp3.Add a new TypeScript syntax warning
TypeScript 7 turned some previously-valid TypeScript syntax into a syntax error because it was confusing. TypeScript 6 accepts
1 + 2 as number * 3as valid syntax but confusingly converts it to(1 + 2) * 3instead of the more intuitive conversion to1 + (2 * 3). This syntax is now an error in TypeScript 7+. With this release, esbuild will now warn about the use of this syntax:See microsoft/TypeScript#63527 for more information.
Add support for formatting errors for Visual Studio (#4460)
Visual Studio has a specific style that it expects log messages to be in for them to show up in the UI when esbuild is run as a custom build step. The current log style that esbuild uses doesn't conform to this specific style.
With this release, esbuild has a new log style for Visual Studio (and other tools in the MSBuild ecosystem) that can be enabled with
--log-style=visualstudio. Here is an example log message in this style:This log style is also available via the JS and Go APIs, and can now be used with the existing
formatMessagesAPI.Fix a bug with CSS gamut mapping (#4488)
Due to a typo, the fallback colors generated for CSS colors outside of the sRGB gamut weren't correct. This release fixes the generated colors to use the intended algorithm.
This fix was submitted by @chatman-media.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.