Skip to content

Version Packages - #3565

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

Version Packages#3565
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@sl-design-system/toggle-button@1.0.0

Major Changes

  • #3368 dd4b09b - Refactor toggle button to use an internal <button> element. This improves accessibility and removes the need for manual keyboard and ARIA handling.

    Breaking changes

    • The [pressed], [icon-only], [text-only], and [error] attributes have been replaced by CSS custom states (:state(pressed), :state(icon-only), :state(text-only), :state(error)). Update any custom styles targeting these attributes.
    • The shape property type has changed from ButtonShape to ToggleButtonShape ('rect' | 'pill').
    • The pressed property is no longer reflected as an attribute. Use :state(pressed) for styling.
    • The label property (previously reflected as aria-label) has been removed. Use the new tooltip property instead.

    New features

    • Added a tooltip property for declaratively adding a tooltip. For icon-only buttons the tooltip acts as the accessible label; for other buttons it acts as an accessible description.
    • Added CSS parts button and tooltip for styling the internal elements.
    • Focus is now delegated to the internal <button> via delegatesFocus: true.
    • ARIA attributes set on the host are now forwarded to the internal <button> via ForwardAriaMixin.

Minor Changes

  • #3368 dd4b09b - Add tooltip property

    Previously, adding a tooltip to any kind of component required adding a sibling <sl-tooltip> element manually and wiring up the correct aria-describedby or aria-labelledby relationship by hand. This was especially cumbersome for icon-only buttons, where the tooltip doubles as the accessible label.

    The new tooltip property improves the Developer Experience by letting you set a tooltip directly on the component.

    For buttons, it handles all the accessibility wiring automatically:

    • For icon-only buttons the tooltip text acts as the accessible label (aria-labelledby).
    • For text buttons the tooltip text acts as an accessible description (aria-describedby).

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/tooltip@3.0.0

@sl-design-system/tooltip@3.0.0

Major Changes

  • #3368 dd4b09b - Rewrite of the tooltip component: the tooltip was the component responsible for the most bug reports and had a complex internal implementation. This rewrite significantly simplifies the component.

    The complex internal positioning logic, AnchorController, EventsController, and lazy() static method have been removed in favour of native browser popover and CSS Anchor Positioning APIs.

    [!NOTE]
    CSS Anchor Positioning is not yet supported in all browsers. You may need to include the CSS Anchor Positioning polyfill in your application.

    Breaking changes

    • The TooltipOptions interface and Tooltip.lazy() static method have been removed. Use the for attribute to link a tooltip to its anchor instead.
    • The position, offset, maxWidth, arrowPadding, and viewportMargin properties/statics have been removed.
    • hoverShowDelay changed from 500ms to 150ms and hoverHideDelay changed from 200ms to 0ms.

    New API

    • for — links the tooltip to one or more anchor elements by id; pass a space-separated list of ids to share a single tooltip between multiple elements
    • type — controls the ARIA relationship: 'label' (ariaLabelledByElements, default) or 'description' (ariaDescribedByElements)
    • trigger — space-separated list of triggers: 'focus', 'hover', and/or 'click' (default: 'focus hover')
    • disabled — prevents the tooltip from showing
    • open — shows or hides the tooltip programmatically, regardless of trigger; to check whether the tooltip is showing, use matches(':popover-open') instead
    <button id="copy">Copy</button>
    <button id="cut">Cut</button>
    <sl-tooltip for="copy cut" type="description"
      >Works on the current selection</sl-tooltip
    >

    Every element listed in for gets the ARIA relation and the triggers. The tooltip is positioned against the anchor that triggered it, and against the first anchor until then.

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/angular@4.2.0

Minor Changes

  • #3368 dd4b09b - Use the new tooltip implementation

    The tooltip directive has been updated to use the new tooltip implementation. This means that the tooltip is now created as a separate element and positioned using the for attribute. The old implementation, which used a lazy loader, has been removed. The API of the tooltip directive remains the same, but the DOM structure may have changed.

    The directive also no longer creates an <sl-tooltip> element when the tooltip text is empty. Previously an empty tooltip was always inserted, which gave the anchor element an empty accessible name or description. The tooltip is now created as soon as the text becomes non-empty and removed again when it becomes empty.

Patch Changes

  • Updated dependencies [6fcae28, 945f701, ac75744, dd4b09b, 101ff8e, 318505d, 249b261, 945f701]:
    • @sl-design-system/combobox@0.1.12
    • @sl-design-system/locales@0.4.0
    • @sl-design-system/checkbox@2.3.0
    • @sl-design-system/text-area@1.2.0
    • @sl-design-system/form@1.4.3
    • @sl-design-system/number-field@0.1.11
    • @sl-design-system/radio-group@1.2.1
    • @sl-design-system/select@2.2.1
    • @sl-design-system/switch@1.2.1
    • @sl-design-system/text-field@1.6.12

@sl-design-system/avatar@1.3.0

Minor Changes

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/tooltip@3.0.0

@sl-design-system/breadcrumbs@1.3.0

Minor Changes

  • #3368 dd4b09b - Use the new tooltip implementation

    The breadcrumbs component has been updated to use the simplified tooltip implementation. Tooltips for truncated breadcrumb links are now managed using the new <sl-tooltip> for attribute approach, removing the need for manual cleanup functions and reducing internal complexity.

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/tooltip@3.0.0
    • @sl-design-system/popover@1.2.8

@sl-design-system/button@2.2.0

Minor Changes

  • #3368 dd4b09b - Add tooltip property

    Previously, adding a tooltip to any kind of component required adding a sibling <sl-tooltip> element manually and wiring up the correct aria-describedby or aria-labelledby relationship by hand. This was especially cumbersome for icon-only buttons, where the tooltip doubles as the accessible label.

    The new tooltip property improves the Developer Experience by letting you set a tooltip directly on the component.

    For buttons, it handles all the accessibility wiring automatically:

    • For icon-only buttons the tooltip text acts as the accessible label (aria-labelledby).
    • For text buttons the tooltip text acts as an accessible description (aria-describedby).

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/tooltip@3.0.0

@sl-design-system/calendar@0.1.0

Minor Changes

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/tooltip@3.0.0
    • @sl-design-system/format-date@0.1.7

@sl-design-system/checkbox@2.3.0

Minor Changes

  • #3368 dd4b09b - sl-checkbox now uses ForwardAriaMixin instead of ObserveAttributesMixin to forward ARIA to the
    <input> element. Reference attributes (aria-labelledby and aria-describedby) are resolved to
    elements and forwarded via ariaLabelledByElements/ariaDescribedByElements, so relationships that
    are set as element references — such as an sl-tooltip labelling or describing the checkbox — now
    reach the <input>. Previously only the attribute value was copied, which meant a tooltip anchored
    to an sl-checkbox did not label the actual control.

    All aria-* attributes set on the host are now forwarded, rather than a fixed list. This means
    aria-describedby reaches the <input> as well; it used to stay on the host.

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/ellipsize-text@0.1.0

Minor Changes

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/tooltip@3.0.0

@sl-design-system/grid@0.8.0

Minor Changes

  • #3560 101ff8e - Improve drag-and-drop behavior for grouped grids.

    • Add support for dragging complete group rows (tr[part~='group']) and dropping them to reorder groups.
    • Let users drop rows on a group header to move rows into that group.
    • Add group-label to sl-grid-group-header so the group checkbox gets a clear aria-label (for example, School A group).
    • Fix sl-grid-drop position in between mode — was always 'after', now correctly 'before' or 'after'.
    • Improve drag feedback and refresh timing so reordered rows become visible immediately after drop.
  • #3368 dd4b09b - Use the new tooltip implementation

Patch Changes

  • #3544 ac75744 - Add missing aria-label to sl-grid-filter and sl-grid-group-header.

  • #3570 dcace67 - Fix grid rows shrinking when hovering ellipsized cell content.

  • Updated dependencies [dd4b09b, 101ff8e, dd4b09b, dd4b09b, dd4b09b, dd4b09b, dd4b09b]:

    • @sl-design-system/button@2.2.0
    • @sl-design-system/data-source@0.4.2
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/checkbox@2.3.0
    • @sl-design-system/ellipsize-text@0.1.0
    • @sl-design-system/toggle-group@0.1.0
    • @sl-design-system/tooltip@3.0.0
    • @sl-design-system/tool-bar@0.3.1
    • @sl-design-system/announcer@0.1.1
    • @sl-design-system/search-field@0.2.7
    • @sl-design-system/select@2.2.1
    • @sl-design-system/text-field@1.6.12

@sl-design-system/menu@0.5.0

Minor Changes

  • #3368 dd4b09b - Add tooltip property

    Previously, adding a tooltip to any kind of component required adding a sibling <sl-tooltip> element manually and wiring up the correct aria-describedby or aria-labelledby relationship by hand. This was especially cumbersome for icon-only buttons, where the tooltip doubles as the accessible label.

    The new tooltip property improves the Developer Experience by letting you set a tooltip directly on the component.

    For buttons, it handles all the accessibility wiring automatically:

    • For icon-only buttons the tooltip text acts as the accessible label (aria-labelledby).
    • For text buttons the tooltip text acts as an accessible description (aria-describedby).

Patch Changes

  • #3368 dd4b09b - Fix clicking a second time did not dismiss the menu

    When a user clicked the menu button to open the menu and then clicked it again to close it, the menu would immediately reopen. This happened because the button click fired after the popover's toggle event, causing the button's click handler to call togglePopover() again on an already-closed menu. The fix tracks a #popoverJustClosed flag via the beforetoggle event and skips the click handler when the flag is set.

  • Updated dependencies [dd4b09b, dd4b09b]:

    • @sl-design-system/button@2.2.0
    • @sl-design-system/shared@0.13.0

@sl-design-system/shared@0.13.0

Minor Changes

  • #3368 dd4b09b - Improved how ForwardAriaMixin forwards ARIA element references (such as ariaDescribedByElements and ariaLabelledByElements) to its proxy target:

    • References added by other code are no longer overwritten. This allows components that use the mixin to maintain their own ARIA relationships (such as a button registering its own tooltip) while still forwarding any additional ARIA attributes as needed.
    • The mixin now keeps track of the references it forwarded itself, so re-forwarding replaces them instead of appending. Previously, changing an attribute like aria-labelledby left the old reference in place, which resulted in a stale accessible name.
    • Removing a forwarded attribute now only clears the references the mixin added, leaving any other references on the target intact.
    • Removing an ARIA attribute in the same task in which it was set no longer leaves a stale value on the proxy target. The mixin used the presence of the attribute on the host to recognise its own cleanup after forwarding, which also matched this case when the host is watched by a MutationObserver.

@sl-design-system/tag@0.2.0

Minor Changes

  • #3368 dd4b09b - Add tooltip property

    Previously, adding a tooltip to any kind of component required adding a sibling <sl-tooltip> element manually and wiring up the correct aria-describedby or aria-labelledby relationship by hand. This was especially cumbersome for icon-only buttons, where the tooltip doubles as the accessible label.

    The new tooltip property improves the Developer Experience by letting you set a tooltip directly on the component.

    For buttons, it handles all the accessibility wiring automatically:

    • For icon-only buttons the tooltip text acts as the accessible label (aria-labelledby).
    • For text buttons the tooltip text acts as an accessible description (aria-describedby).

Patch Changes

  • #3581 318505d - Fixed stacked tag lists and multi-select comboboxes so at least one selected tag remains visible and removable when selected values overflow. Long visible tags are now constrained and truncated instead of being hidden entirely behind the stack counter, and comboboxes no longer create a large gap between the visible tags and the input caret when stacking is active.

  • Updated dependencies [dd4b09b, dd4b09b]:

    • @sl-design-system/shared@0.13.0
    • @sl-design-system/tooltip@3.0.0

@sl-design-system/text-area@1.2.0

Minor Changes

  • #3526 945f701 - Add the possibility to show a character count. The new showCount property accepts a maximum character value and displays the remaining character count in the helper text below the text area.

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/announcer@0.1.1
    • @sl-design-system/form@1.4.3

@sl-design-system/toggle-group@0.1.0

Minor Changes

  • #3368 dd4b09b - Update the group styling for the refactored toggle button

    @sl-design-system/toggle-button has a major release in which the [pressed], [icon-only],
    [text-only], and [error] attributes were replaced by CSS custom states. The group styles its
    slotted buttons, so it now targets ::slotted(sl-toggle-button:state(pressed)) instead of the
    [pressed] attribute. The border radius of the first and last button is also applied through the
    --_button-border-radius custom property rather than separate corner properties.

    [!IMPORTANT]
    Upgrade @sl-design-system/toggle-group and @sl-design-system/toggle-button together. These
    styles do not match an older toggle button, and the group only manages buttons that are instances
    of the ToggleButton class it was built against, so mixing versions leaves the pressed state
    unstyled and breaks keyboard navigation and single-select behavior.

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b]:
    • @sl-design-system/toggle-button@1.0.0
    • @sl-design-system/shared@0.13.0

@sl-design-system/locales@0.4.0

Minor Changes

  • #3526 945f701 - New translations for sl-text-area:

    • sl.textArea.charCountTooMany_one,
    • sl.textArea.charCountTooMany_few,
    • sl.textArea.charCountTooMany_other,
    • sl.textArea.charCountRemaining_one,
    • sl.textArea.charCountRemaining_few,
    • sl.textArea.charCountRemaining_other,
    • sl.textArea.validation.tooLong_one,
    • sl.textArea.validation.tooLong_few,
    • sl.textArea.validation.tooLong_other

    in Dutch, Italian, Spanish and Polish.

  • #3544 ac75744 - New translations for sl.paginator.itemsPerPageAriaLabel and sl.grid.selectGroup in Dutch, Italian, Spanish and Polish.

  • #3560 101ff8e - Add translations for sl.grid.selectGroupWithName in Dutch, Italian, Polish and Spanish.

@sl-design-system/eslint-plugin-slds@0.2.0

Minor Changes

  • #3544 ac75744 - Add accessibility lint rules for SLDS form controls.

    • slds/checkbox-group-has-label: Require an accessible label for <sl-checkbox-group>.
    • slds/checkbox-has-label: Require an accessible label for <sl-checkbox>.
    • slds/combobox-has-label: Require an accessible label for <sl-combobox>.
    • slds/date-field-has-label: Require an accessible label for <sl-date-field>.
    • slds/number-field-has-label: Require an accessible label for <sl-number-field>.
    • slds/radio-has-label: Require an accessible label for <sl-radio>.
    • slds/radio-group-has-label: Require an accessible label for <sl-radio-group>.
    • slds/select-has-label: Require an accessible label for <sl-select>.
    • slds/switch-has-label: Require an accessible label for <sl-switch>.
    • slds/text-area-has-label: Require an accessible label for <sl-textarea>.
    • slds/text-field-has-label: Require an accessible label for <sl-text-field>.
    • slds/time-field-has-label: Require an accessible label for <sl-time-field>.

    Labels can be provided via aria-label, aria-labelledby, native <label for="..."> association, or a labeled <sl-form-field> wrapper (depending on the control).

  • #3368 dd4b09b - The button-has-label rule has been updated to match the rewritten tooltip. An icon-only sl-button now counts as labelled when it has a non-empty tooltip attribute, or when an <sl-tooltip for="..."> in the same template points at its id (unless that tooltip is a type="description", which describes the button instead of naming it). Tooltips that are shared between multiple elements, so with a space separated list of ids in for, label each of those elements.

    Support for the old tooltip directive has been removed, since the directive no longer exists in @sl-design-system/tooltip:

    • The mustBeAriaRelationLabel message is gone. An icon-only button that relies on ${tooltip('...', { ariaRelation: 'label' })} for its accessible name is now reported as missingText.
    • This also fixes a false negative: the directive check looked at the entire html template, so a single ariaRelation: 'label' anywhere in a template suppressed the rule for every sl-button in that template, including unrelated ones without an accessible name.

Patch Changes

  • #3579 8a24328 - Fix linting for new tooltip implementation

@sl-design-system/accordion@1.2.8

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/announcer@0.1.1

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/button-bar@1.5.1

Patch Changes

  • #3368 dd4b09b - Fix not giving buttons enough time to set the icon-only state

  • Updated dependencies [dd4b09b]:

    • @sl-design-system/button@2.2.0

@sl-design-system/callout@0.2.2

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/combobox@0.1.12

Patch Changes

  • #3532 6fcae28 - Add option-disabled-path to map disabled option state when rendering combobox options from the options property.

  • #3581 318505d - Fixed stacked tag lists and multi-select comboboxes so at least one selected tag remains visible and removable when selected values overflow. Long visible tags are now constrained and truncated instead of being hidden entirely behind the stack counter, and comboboxes no longer create a large gap between the visible tags and the input caret when stacking is active.

  • #3593 249b261 - Fix invalid combobox styling by applying show-validity to the internal text field.

  • Updated dependencies [dd4b09b, 318505d]:

    • @sl-design-system/tag@0.2.0
    • @sl-design-system/form@1.4.3
    • @sl-design-system/text-field@1.6.12

@sl-design-system/data-source@0.4.2

Patch Changes

  • #3560 101ff8e - Improve ArrayListDataSource item order handling.

    • Keep the new row order when items are reordered.
    • Allow moving whole groups in grouped data.
    • Keep group order after update().
  • Updated dependencies [dd4b09b]:

    • @sl-design-system/shared@0.13.0

@sl-design-system/date-field@0.1.6

Patch Changes

  • #3582 f28ec84 - Fixes incorrect text color in year select dialog

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b, dd4b09b]:

    • @sl-design-system/button@2.2.0
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/button-bar@1.5.1
    • @sl-design-system/calendar@0.1.0
    • @sl-design-system/form@1.4.3
    • @sl-design-system/text-field@1.6.12

@sl-design-system/dialog@2.1.2

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/button-bar@1.5.1

@sl-design-system/editor@0.1.8

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/emoji@0.0.14

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/shared@0.13.0

@sl-design-system/form@1.4.3

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/inline-message@2.1.2

@sl-design-system/format-date@0.1.7

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/format-number@0.0.9

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/inline-message@2.1.2

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/announcer@0.1.1

@sl-design-system/number-field@0.1.11

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/format-number@0.0.9
    • @sl-design-system/text-field@1.6.12

@sl-design-system/paginator@0.2.9

Patch Changes

  • #3544 ac75744 - Add missing aria-label to sl-paginator-page-size.

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b]:

    • @sl-design-system/button@2.2.0
    • @sl-design-system/menu@0.5.0
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/announcer@0.1.1
    • @sl-design-system/form@1.4.3
    • @sl-design-system/select@2.2.1

@sl-design-system/panel@0.3.9

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/tool-bar@0.3.1

@sl-design-system/popover@1.2.8

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/radio-group@1.2.1

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/search-field@0.2.7

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/text-field@1.6.12

@sl-design-system/select@2.2.1

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/switch@1.2.1

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/tabs@1.2.10

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b]:
    • @sl-design-system/menu@0.5.0
    • @sl-design-system/shared@0.13.0

@sl-design-system/text-field@1.6.12

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/form@1.4.3

@sl-design-system/tool-bar@0.3.1

Patch Changes

  • Updated dependencies [dd4b09b, dd4b09b, dd4b09b, dd4b09b]:
    • @sl-design-system/button@2.2.0
    • @sl-design-system/menu@0.5.0
    • @sl-design-system/toggle-button@1.0.0
    • @sl-design-system/toggle-group@0.1.0

@sl-design-system/tree@0.3.1

Patch Changes

  • Updated dependencies [101ff8e, dd4b09b, dd4b09b, dd4b09b]:
    • @sl-design-system/data-source@0.4.2
    • @sl-design-system/shared@0.13.0
    • @sl-design-system/checkbox@2.3.0
    • @sl-design-system/button-bar@1.5.1
    • @sl-design-system/virtual-list@0.2.1

@sl-design-system/virtual-list@0.2.1

Patch Changes

  • Updated dependencies [dd4b09b]:
    • @sl-design-system/shared@0.13.0

@sl-design-system/eslint-config@0.6.1

Patch Changes

@github-actions
github-actions Bot force-pushed the changeset-release/main branch 7 times, most recently from 3f707d5 to e4627d1 Compare August 11, 2026 07:26
@github-actions
github-actions Bot force-pushed the changeset-release/main branch 5 times, most recently from 37cfee5 to e183c4b Compare August 17, 2026 08:23
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from e183c4b to 0761c19 Compare August 17, 2026 10:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants