Skip to content

Update dependency @salt-ds/lab to v1.0.0-alpha.99#2017

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/salt-ds-lab-1.x
Open

Update dependency @salt-ds/lab to v1.0.0-alpha.99#2017
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/salt-ds-lab-1.x

Conversation

@renovate

@renovate renovate Bot commented Jan 29, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@salt-ds/lab (source) 1.0.0-alpha.831.0.0-alpha.99 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

jpmorganchase/salt-ds (@​salt-ds/lab)

v1.0.0-alpha.99

Compare Source

Minor Changes
  • 9c9b83e: Added BreadcrumbsNext, BreadcrumbNext, BreadcrumbNextTrigger, and BreadcrumbNextLabel for accessible breadcrumb navigation. Supports wrapping, disclosure collapse, and routing integration via render props.
Patch Changes

v1.0.0-alpha.98

Compare Source

Minor Changes
  • f9f9b8e: Removed MegaMenu and its related components (MegaMenuActions, MegaMenuAside, MegaMenuContent, MegaMenuGroup, MegaMenuGroupHeading, MegaMenuGroups, MegaMenuList, MegaMenuListItem, MegaMenuPanel, and MegaMenuTrigger) from lab and promoted to core.
Patch Changes

v1.0.0-alpha.97

Compare Source

Minor Changes
  • 2516755: Removed ToolbarNext, ToolbarContentNext, and TooltrayNext from lab and promoted to core. As part of the promotion the components were renamed e.g., ToolbarNext is now Toolbar.

    The legacy Toolbar and Tooltray exports in lab are unchanged.

Patch Changes

v1.0.0-alpha.96

Compare Source

Minor Changes
  • 248982a: Reworked MegaMenu for more semantic, accessible markup and more predictable
    keyboard navigation.

    • Renamed MegaMenuHeader to MegaMenuGroupHeading. It now renders a real heading (<h3> by default; set the level with as, e.g. as="h2") instead of a <div>, so each group appears in the document outline for assistive technology.
    • Renamed MegaMenuItem to MegaMenuListItem. It renders an <a> by default — pass a render element such as react-router's Link — and accepts a current prop that sets aria-current="page" for the active page.
    • Added MegaMenuList. Wrap a group's items in it so they are announced as a list; MegaMenuListItem can no longer be placed directly inside MegaMenuGroup.
    • Renamed MegaMenuSupportingContent to MegaMenuAside. It now renders an <aside> landmark, making the supporting region discoverable to screen-reader users.
    • Renamed MegaMenuSupportingActions to MegaMenuActions.
    • Added MegaMenuContent. It is the center navigation region holding the groups and an optional MegaMenuActions band; MegaMenuAside sits beside it, positioned by source order.
    • Narrowed MegaMenu's placement prop to "bottom" | "bottom-start" | "bottom-end" (the new MegaMenuPlacement type).
    • Menu columns now adapt to the available width instead of overflowing, keeping panels usable on narrower viewports.
    • Keyboard navigation is more predictable between the columns, the actions row, and the trigger;
      <MegaMenuPanel aria-label="Solutions menu">
    +   <MegaMenuContent>
          <MegaMenuGroups>
            <MegaMenuGroup>
    -         <MegaMenuHeader>Financial services</MegaMenuHeader>
    -         <MegaMenuItem render={<Link to="/digital-banking" />}>Digital banking</MegaMenuItem>
    +         <MegaMenuGroupHeading>Financial services</MegaMenuGroupHeading>
    +         <MegaMenuList>
    +           <MegaMenuListItem render={<Link to="/digital-banking" />}>Digital banking</MegaMenuListItem>
    +         </MegaMenuList>
            </MegaMenuGroup>
          </MegaMenuGroups>
    -     <MegaMenuSupportingActions>
    +     <MegaMenuActions>
            <Link href="#demo">Book a demo</Link>
    -     </MegaMenuSupportingActions>
    +     </MegaMenuActions>
    +   </MegaMenuContent>
    -   <MegaMenuSupportingContent>...</MegaMenuSupportingContent>
    +   <MegaMenuAside>...</MegaMenuAside>
      </MegaMenuPanel>
Patch Changes
  • bab3b6c: Fixed ToolbarNext overflow calculations to preserve fractional browser measurements and avoid false overflow caused by subpixel rounding.
  • Updated dependencies [1a48c1a]

v1.0.0-alpha.95

Compare Source

Minor Changes
  • 8043fee: Updated MegaMenu with several API improvements:

    • Renamed MegaMenuSection to MegaMenuGroups. The associated CSS custom property --saltMegaMenuSection-columnWidth has been renamed to --saltMegaMenuGroups-columnWidth.
    • Renamed MegaMenuContent to MegaMenuSupportingContent to better convey its purpose as a region for supporting content alongside the menu groups.
    • Removed MegaMenuItemContent. Pass the label directly to MegaMenuItem.
    • Added MegaMenuSupportingActions. Use it to group one or more supporting action links beneath the menu groups in a MegaMenuPanel.
    • Added a render prop to MegaMenuItem for integration with custom link or routing components (such as react-router's Link).
    - <MegaMenuSection>
    + <MegaMenuGroups>
        <MegaMenuGroup>
          <MegaMenuHeader>Financial services</MegaMenuHeader>
    -     <MegaMenuItem>
    -       <Icon aria-hidden />
    -       <MegaMenuItemContent>Digital banking</MegaMenuItemContent>
    -     </MegaMenuItem>
    +     <MegaMenuItem render={<Link to="/digital-banking" />}>
    +       <Icon aria-hidden />
    +       Digital banking
    +     </MegaMenuItem>
        </MegaMenuGroup>
    - </MegaMenuSection>
    + </MegaMenuGroups>
    - <MegaMenuContent>...</MegaMenuContent>
    + <MegaMenuSupportingContent>...</MegaMenuSupportingContent>
    + <MegaMenuSupportingActions>
    +   <Link href="#demo" IconComponent={ChevronRightIcon}>Book a demo</Link>
    + </MegaMenuSupportingActions>
  • 8687aa7: Date-related components and utilities are no longer re-exported from @salt-ds/lab. Update the import source to @salt-ds/date-components.

    The exact set of components depends on the selection variant you're using.

    Single-date selection (DateInputSingle, single DatePicker, DatePickerSingleInput, DatePickerSingleGridPanel, single Calendar):

      import {
        type DateInputSingleDetails,
        DateInputSingle,
        DatePicker,
        DatePickerOverlay,
        DatePickerSingleGridPanel,
        DatePickerSingleInput,
        DatePickerTrigger,
        type SingleDateSelection,
        Calendar,
        CalendarGrid,
        CalendarNavigation,
        LocalizationProvider,
        useLocalization,
    - } from "@&#8203;salt-ds/lab";
    + } from "@&#8203;salt-ds/date-components";

    Range selection (DateInputRange, range DatePicker, DatePickerRangeInput, DatePickerRangePanel, DatePickerRangeGridPanel, range Calendar):

      import {
        type DateInputRangeDetails,
        DateInputRange,
        DatePicker,
        DatePickerOverlay,
        DatePickerRangeGridPanel,
        DatePickerRangeInput,
        DatePickerRangePanel,
        DatePickerTrigger,
        type DateRangeSelection,
        Calendar,
        CalendarGrid,
        CalendarNavigation,
        LocalizationProvider,
        useLocalization,
    - } from "@&#8203;salt-ds/lab";
    + } from "@&#8203;salt-ds/date-components";

    Offset selection (offset Calendar; offset DatePicker built from the range input + range panel with selectionVariant="offset"):

      import {
        type DateRangeSelection,
        Calendar,
        CalendarGrid,
        CalendarNavigation,
        DatePicker,
        DatePickerOverlay,
        DatePickerRangeInput,
        DatePickerRangePanel,
        DatePickerTrigger,
        LocalizationProvider,
        useLocalization,
    - } from "@&#8203;salt-ds/lab";
    + } from "@&#8203;salt-ds/date-components";
Patch Changes
  • 4314ca5: Fixed ToolbarNext focus handling when composing multiselect ComboBox controls, preserving pill keyboard navigation and preventing focus flashes when restoring toolbar focus.
  • Updated dependencies [9729a10]
  • Updated dependencies [52daa64]
  • Updated dependencies [ed2779c]
  • Updated dependencies [07e4d5d]

v1.0.0-alpha.94

Compare Source

Minor Changes
  • fcf295b: Removed Tree, TreeNode, TreeNodeTrigger, and TreeNodeLabel from lab and promoted to core.

  • 5fc9124: ## Summary

    New ToolbarNext, ToolbarContentNext, and TooltrayNext components for composing horizontal toolbars with responsive overflow, grouped controls, and keyboard navigation.

    What's included

    • Flat authoring with TooltrayNext children aligned to start, center, or end
    • Explicit ToolbarContentNext regions for start, center, and end toolbar layouts
    • Shared, named, grouped, independent, and non-overflowing tooltray overflow modes
    • Overflow priority control for deciding which trays collapse first
    • Bordered and transparent appearances with primary, secondary, and tertiary variants
    • Horizontal toolbar semantics and keyboard navigation across toolbar controls and overflow menus
    • TooltrayNext as a layout-only wrapper, with optional role="group" and accessible labels for meaningful control groups

v1.0.0-alpha.93

Compare Source

Minor Changes
  • 8980f01: Removed SidePanel and its related components (SidePanelProvider, SidePanelTrigger, SidePanelCloseButton, SidePanelHeader, SidePanelTitle, SidePanelContent, and the useSidePanel hook) from lab and promoted to core.
Patch Changes
  • 1718878: Updated Tree node layout to use spacing-75 + spacing-50 vertical padding and size-icon chevron to align with design.
  • Updated dependencies [8980f01]

v1.0.0-alpha.92

Compare Source

Patch Changes
  • 4f2d850: Fix SidePanel animation, focus behaviour, and width handling.

    • --saltSidePanel-width now accepts any CSS length, including percentages (20%), clamp(), vw, and rem.
    • Tabbing into, through, and out of an open panel now works in both directions, including for custom triggers registered via setTriggerRef (e.g. table rows). Focus no longer gets trapped or lost.

v1.0.0-alpha.91

Compare Source

Minor Changes
  • e74d4d8: Added MegaMenu.

    MegaMenu is a multi-column dropdown that opens from a trigger to display a large set of grouped navigation items. Use MegaMenu to manage open state, MegaMenuTrigger to toggle the panel, MegaMenuPanel for the floating container, and MegaMenuSection / MegaMenuGroup / MegaMenuHeader / MegaMenuItem / MegaMenuItemContent / MegaMenuContent to structure the contents.

    const [open, setOpen] = useState(false);
    
    <MegaMenu open={open} onOpenChange={setOpen}>
      <MegaMenuTrigger>
        <NavigationItem>Solutions</NavigationItem>
      </MegaMenuTrigger>
      <MegaMenuPanel aria-label="Solutions menu">
        <MegaMenuSection>
          <MegaMenuGroup>
            <MegaMenuHeader>Financial services</MegaMenuHeader>
            <MegaMenuItem onClick={() => console.log("Digital banking")}>
              <MegaMenuItemContent>Digital banking</MegaMenuItemContent>
            </MegaMenuItem>
            <MegaMenuItem onClick={() => console.log("Risk management")}>
              <MegaMenuItemContent>Risk management</MegaMenuItemContent>
            </MegaMenuItem>
          </MegaMenuGroup>
        </MegaMenuSection>
      </MegaMenuPanel>
    </MegaMenu>;
  • 7ffd0fd: Removed TabsNext and related components from lab and promoted to core. As part of the promotion the components were renamed e.g., TabsNext is now Tabs.

  • 2db14be: Removed Rating from lab and promoted to core.

  • 6368299: Added SidePanelCloseButton component that handles close logic, icon rendering, and accessible labelling (aria-label + aria-labelledby linked to the panel title) automatically. Removes the need for consumers to manually wire up IDs, icons, and click handlers.

  • 6368299: Updated getTriggerProps in useSidePanel to include a built-in onClick handler that toggles the panel open state, removing the need for consumers to manage toggle logic themselves, unless they want to.

Patch Changes
  • 78ca46a: Fix TreeNodes wrapped in React Fragments not participating in keyboard navigation
  • 6368299: Fixed SidePanel animating on first render when using defaultOpen. The panel now appears immediately without animation when initially open, and only animates on subsequent open/close interactions.
  • Updated dependencies [e74d4d8]
  • Updated dependencies [2db14be]
  • Updated dependencies [7ffd0fd]

v1.0.0-alpha.90

Compare Source

Minor Changes
  • 5d4de6f: Date components and related utilities have been extracted into a new package: @salt-ds/date-components. This package is intended to be the long-term home for these components.

    To avoid a breaking change while the date components remain in release-candidate status, @salt-ds/lab continues to re-export the same APIs for now. Importing these APIs from @salt-ds/lab will emit a deprecation warning in development.

    New code should import directly from @salt-ds/date-components. Once @salt-ds/date-components is marked stable, the date component exports will be removed from @salt-ds/lab.

    In addition, DatePickerSinglePanel which was previously deprecated in favour of DatePickerSingleGridPanel has now been removed. Consumers should update to use DatePickerSingleGridPanel from @salt-ds/date-components if they have not already done so.

    - import { DatePickerSinglePanel } from "@&#8203;salt-ds/lab";
    + import { DatePickerSingleGridPanel } from "@&#8203;salt-ds/date-components";
DatePicker enableApply prop deprecation

The automatic detection of DatePickerActions to infer the enableApply prop is now deprecated. When using a modal DatePicker with confirmation controls, you must explicitly set enableApply={true} on the DatePicker component.

A deprecation warning will be emitted in development mode if DatePickerActions is detected and enableApply is not explicitly provided.

Migration:

Update your DatePicker usage to explicitly set enableApply:

  <DatePicker
    selectionVariant="single"
+   enableApply={true}
    onApply={handleApply}
    onCancel={handleCancel}
  >
    <DatePickerTrigger>
      <DatePickerSingleInput />
    </DatePickerTrigger>
    <DatePickerOverlay>
      <DatePickerSingleGridPanel />
      <DatePickerActions selectionVariant="single" />
    </DatePickerOverlay>
  </DatePicker>

The automatic detection will be removed in a future version.

DatePickerRangePanel navigation fix

Fixed an issue where the end calendar's Next button was incorrectly disabled near minDate. The isEndNextDisabled guard was comparing against minDate plus one month instead of maxDate, which meant the Next button could be disabled even when valid later months were available.

DatePickerActions label fix

Fixed an issue where action button labels (Apply/Cancel) were missing context when selectedDate was undefined (e.g. an untouched uncontrolled picker). The guard now checks for both null and undefined. Additionally, partial range selections now show explicit wording ("no start date" / "no end date") instead of blank labels.

  • 282c739: Added SidePanel.

    SidePanel is a collapsible container that slides in from an edge of its parent, providing supplementary content or controls without disrupting the main layout.

    Use SidePanelProvider to manage open state, SidePanelTrigger to toggle the panel, SidePanelTitle provides the accessible name for the panel region automatically and useSidePanel to access setOpen for programmatic close.

    const PanelContent = () => {
      const { CloseIcon } = useIcon();
      const { setOpen } = useSidePanel();
      return (
        <SidePanel>
          <SidePanelHeader>
            <SidePanelTitle>
              <H2>Panel Title</H2>
            </SidePanelTitle>
            <Button
              aria-label="Close"
              appearance="transparent"
              onClick={() => setOpen(false)}
            >
              <CloseIcon aria-hidden />
            </Button>
          </SidePanelHeader>
          <SidePanelContent>
            <Text>Panel body content.</Text>
          </SidePanelContent>
        </SidePanel>
      );
    };
    
    <SidePanelProvider>
      <SidePanelTrigger>
        <Button>Open Panel</Button>
      </SidePanelTrigger>
      <PanelContent />
    </SidePanelProvider>;
Patch Changes

v1.0.0-alpha.89

Compare Source

Patch Changes
  • e131baa: Improved useEventCallback's stability.
  • 7427b2c: - Updated spacing between tree node elements.
    • Fixed missing gap between node elements.
    • Fixed node focus indicator outline placement.
  • 39e684a: Fixed incorrect Tooltip positioning and behavior when used with TreeNodeTrigger.
  • b9c81ae: Refactored Tabs to address accessibility issues, known bugs and improve stability.
  • Updated dependencies [e131baa]
  • Updated dependencies [2d2d62b]

v1.0.0-alpha.88

Compare Source

Patch Changes
  • cfc1591: Simplify disabled styling across the system. This affected the following components:

v1.0.0-alpha.87

Compare Source

Minor Changes
  • 133a519: Removed Kbd from lab and promoted to core.

  • 23b5f53: Added tertiary variant support to DateInputRange and DateInputSingle.

  • b1a3e45: ## Summary

    New Tree, TreeNode, and TreeNodeTrigger components for displaying hierarchical data with expand/collapse, selection, and keyboard navigation.

    What's included

    • Single and multi-select modes with optional checkbox variant
    • Controlled and uncontrolled expanded/selected states
    • Selection propagation to descendants and ancestors in multiselect mode
    • Keyboard navigation (arrows, Home, End, Enter, Space, type-ahead)
    • Disabled state at tree or individual node level
    • Custom icons per node
    • TreeNodeTrigger for custom row content (e.g. wrapping with Tooltip); use inside TreeNode when you need more than the default label

v1.0.0-alpha.86

Compare Source

Minor Changes
  • a16cbc5: Rating has been added to allow users to provide feedback relating to your product or experience.

    Basic usage:

    import { Rating } from "@&#8203;salt-ds/lab";
    
    function App() {
      const [value, setValue] = useState(0);
    
      return (
        <Rating
          value={value}
          onValueChange={(event, newValue) => setValue(newValue)}
        />
      );
    }
Patch Changes

v1.0.0-alpha.85

Compare Source

Minor Changes
  • 972e37e: Added mobile density tokens.

  • 4507919: Removed Table from labs and promoted to core.

  • 4badc14: Added Kbd component.

    Kbd is a decorative element used to represent specific keyboard keys.

    <Kbd>Option</Kbd>
    <Kbd>Cmd</Kbd>
    <Kbd>L</Kbd>
Patch Changes

v1.0.0-alpha.84

Compare Source

Minor Changes
  • aba5610: Added TableContainer wrapper component that provides accessibility features including keyboard navigation support and focus indicators for scrollable tables.

    <TableContainer>
      <Table>
        <caption>{...}</caption>
        {...}
      </Table>
    </TableContainer>
Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@netlify

netlify Bot commented Jan 29, 2026

Copy link
Copy Markdown

Deploy Preview for papaya-valkyrie-395400 canceled.

Name Link
🔨 Latest commit 799f1e5
🔍 Latest deploy log https://app.netlify.com/projects/papaya-valkyrie-395400/deploys/6a4ee3eee1876400089f9818

@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 5285630 to 6f14481 Compare February 2, 2026 16:46
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.83 fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.83 Feb 2, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 6f14481 to f696947 Compare February 4, 2026 20:28
@renovate renovate Bot changed the title fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.83 fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.84 Feb 4, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from f696947 to c09a9e7 Compare February 9, 2026 21:40
@renovate renovate Bot changed the title fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.84 fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.85 Feb 9, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from c09a9e7 to dda0d26 Compare February 12, 2026 16:10
@renovate renovate Bot changed the title fix(deps): update dependency @salt-ds/lab to v1.0.0-alpha.85 Update dependency @salt-ds/lab to v1.0.0-alpha.85 Feb 15, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch 2 times, most recently from 1486fdd to 48647ae Compare February 18, 2026 21:50
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.85 Update dependency @salt-ds/lab to v1.0.0-alpha.86 Feb 18, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 48647ae to 54be4a0 Compare March 3, 2026 22:39
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.86 Update dependency @salt-ds/lab to v1.0.0-alpha.87 Mar 3, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch 2 times, most recently from 6b40daa to 5505664 Compare March 10, 2026 17:29
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 5505664 to bc39ad6 Compare March 13, 2026 13:10
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from bc39ad6 to eb61b50 Compare March 31, 2026 21:30
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.87 Update dependency @salt-ds/lab to v1.0.0-alpha.88 Mar 31, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from eb61b50 to c84834a Compare April 1, 2026 18:43
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from c84834a to f4aad94 Compare April 8, 2026 21:40
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch 2 times, most recently from 680c2c7 to e111f0e Compare April 24, 2026 02:02
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.88 Update dependency @salt-ds/lab to v1.0.0-alpha.89 Apr 24, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from e111f0e to 8570a1f Compare May 1, 2026 22:39
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.89 Update dependency @salt-ds/lab to v1.0.0-alpha.90 May 1, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 8570a1f to 0d07d63 Compare May 13, 2026 19:41
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.90 Update dependency @salt-ds/lab to v1.0.0-alpha.91 May 13, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch 2 times, most recently from 900c298 to 7ed441b Compare May 18, 2026 10:54
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 7ed441b to b7bfe0d Compare May 20, 2026 01:31
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.91 Update dependency @salt-ds/lab to v1.0.0-alpha.92 May 20, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from b7bfe0d to 38b9f22 Compare May 22, 2026 21:00
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.92 Update dependency @salt-ds/lab to v1.0.0-alpha.93 May 22, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 38b9f22 to e64b110 Compare May 26, 2026 22:14
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.93 Update dependency @salt-ds/lab to v1.0.0-alpha.94 May 26, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch 2 times, most recently from a923fdf to 22c515e Compare May 29, 2026 16:18
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 22c515e to ebbfabf Compare June 10, 2026 21:45
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.94 Update dependency @salt-ds/lab to v1.0.0-alpha.95 Jun 10, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from ebbfabf to 2936d91 Compare June 11, 2026 11:11
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 2936d91 to 5f29301 Compare June 18, 2026 21:12
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.95 Update dependency @salt-ds/lab to v1.0.0-alpha.96 Jun 18, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 5f29301 to 8c8e970 Compare June 23, 2026 16:54
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.96 Update dependency @salt-ds/lab to v1.0.0-alpha.97 Jun 23, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 8c8e970 to 3840f51 Compare June 28, 2026 16:11
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.97 Update dependency @salt-ds/lab to v1.0.0-alpha.98 Jun 28, 2026
@renovate renovate Bot force-pushed the renovate/salt-ds-lab-1.x branch from 3840f51 to 799f1e5 Compare July 8, 2026 23:57
@renovate renovate Bot changed the title Update dependency @salt-ds/lab to v1.0.0-alpha.98 Update dependency @salt-ds/lab to v1.0.0-alpha.99 Jul 8, 2026
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