Skip to content

Releases: jpmorganchase/salt-ds

@salt-ds/lab@1.0.0-alpha.83

18 Dec 21:49
1ac5c77

Choose a tag to compare

Pre-release

Patch Changes

  • 1179903: Fixed DateInputSingle and DateInputRange status adornments not appearing when validation is active in read-only mode.
  • Updated dependencies [0c664ed]
  • Updated dependencies [f670363]
  • Updated dependencies [9f9be9d]
  • Updated dependencies [0d3fc12]
  • Updated dependencies [ee16c19]
  • Updated dependencies [f670363]
  • Updated dependencies [ee16c19]
    • @salt-ds/icons@1.16.0
    • @salt-ds/core@1.54.1

@salt-ds/theme@1.37.0

28 Nov 17:12
7ff6d40

Choose a tag to compare

Minor Changes

  • aae8a1b: Deprecated unused content tokens.

    Deprecated token Replacement token
    --salt-content-foreground-highlight --salt-selectable-background-selected
    --salt-content-foreground-active --salt-content-accent-foreground
    --salt-content-foreground-hover --salt-content-accent-foreground
  • 89779b5: Deprecated unused white foreground tokens:

    • --salt-category-1-bold-foreground
    • --salt-category-2-bold-foreground
    • --salt-category-3-bold-foreground
    • --salt-category-4-bold-foreground
    • --salt-category-5-bold-foreground
    • --salt-category-6-bold-foreground
    • --salt-category-7-bold-foreground
    • --salt-category-8-bold-foreground
    • --salt-category-9-bold-foreground
    • --salt-category-10-bold-foreground
    • --salt-category-11-bold-foreground
    • --salt-category-12-bold-foreground
    • --salt-category-13-bold-foreground
    • --salt-category-14-bold-foreground
    • --salt-category-15-bold-foreground
    • --salt-category-16-bold-foreground
    • --salt-category-17-bold-foreground
    • --salt-category-18-bold-foreground
    • --salt-category-19-bold-foreground
    • --salt-category-20-bold-foreground
    • --salt-accent-foreground

    All of these tokens can be replaced with --salt-content-bold-foreground.

  • 448b1d8: Added the alpha dark ramp to the alpha palette in the next theme.

    • --salt-palette-alpha-dark-highest
    • --salt-palette-alpha-dark-higher
    • --salt-palette-alpha-dark-high
    • --salt-palette-alpha-dark-mediumHigh
    • --salt-palette-alpha-dark-medium
    • --salt-palette-alpha-dark-mediumLow
    • --salt-palette-alpha-dark-low
    • --salt-palette-alpha-dark-lower
    • --salt-palette-alpha-dark-lowest
  • 448b1d8: - Updated actionable subtle hover border and actionable subtle active border tokens in all sentiments to be --salt-palette-alpha-none.

    • Updated actionable subtle background hover tokens in all sentiments to be --salt-palette-alpha-lower.
    • Updated actionable subtle background active tokens in all sentiments to be --salt-palette-alpha-low.
    • Updated actionable bold background hover tokens in all sentiments to be the default sentiment palette token with an alpha of --salt-palette-alpha-dark-low overlaid.
    • Updated actionable bold border hover tokens in all sentiments to be --salt-palette-alpha-contrast-medium.

@salt-ds/data-grid@1.0.34

28 Nov 17:12
7ff6d40

Choose a tag to compare

Patch Changes

  • Updated dependencies [64afd57]
  • Updated dependencies [89779b5]
  • Updated dependencies [10ffed9]
  • Updated dependencies [12ef4c9]
  • Updated dependencies [1511c0d]
  • Updated dependencies [e31acee]
    • @salt-ds/core@1.54.0
    • @salt-ds/lab@1.0.0-alpha.82

@salt-ds/core@1.54.0

28 Nov 17:12
7ff6d40

Choose a tag to compare

Minor Changes

  • 64afd57: Introduced a PillGroup component.
    This enhancement allows for multi-selection functionality, making it easier to capture user choices in grouped pill interfaces.

    Usage example:

    <PillGroup>
      <Pill value="one">Pill 1</Pill>
      <Pill value="two">Pill 2</Pill>
      <Pill value="three">Pill 3</Pill>
    </PillGroup>
  • 1511c0d: Based on consumer feedback, we have enhanced our button's solid appearance hover state to include a fill color change along with the border, improving visual affordance. Additionally, for the transparent button appearance, the border is now removed in both hover and active states, and the fill uses a subtler style—applying a black alpha in light mode and a white alpha in dark mode.

Patch Changes

  • 89779b5: Updated foreground tokens used in Avatar, Badge and Tag.

  • 10ffed9: Fixed disabled MenuItems opening submenus on hover.

  • 12ef4c9: Fixed right click behavior on NumberInput and Slider.

    Previously, when users right-clicked on the increment/decrement buttons of the NumberInput or the thumb of the Slider, these components could remain stuck in a pressed state. The components have been updated to properly handle right-clicks and other pointer events by canceling the pressed state when such interactions occur.

  • e31acee: Removed useLayoutEffect usage to fix warnings being logged during SSR.

@salt-ds/lab@1.0.0-alpha.82

28 Nov 17:12
7ff6d40

Choose a tag to compare

Pre-release

Patch Changes

  • e31acee: Removed useLayoutEffect usage to fix warnings being logged during SSR.
  • Updated dependencies [64afd57]
  • Updated dependencies [89779b5]
  • Updated dependencies [10ffed9]
  • Updated dependencies [12ef4c9]
  • Updated dependencies [1511c0d]
  • Updated dependencies [e31acee]
    • @salt-ds/core@1.54.0

@salt-ds/theme@1.36.0

12 Nov 23:02
9aac194

Choose a tag to compare

Minor Changes

  • 54a18b5: Deprecated --salt-separable-background which is not used anywhere in the system. There is no replacement token.

@salt-ds/data-grid@1.0.33

12 Nov 23:02
9aac194

Choose a tag to compare

Patch Changes

  • Updated dependencies [7d0dc56]
  • Updated dependencies [7d0dc56]
  • Updated dependencies [01e4bde]
  • Updated dependencies [d86bccf]
  • Updated dependencies [d86bccf]
  • Updated dependencies [7d0dc56]
    • @salt-ds/core@1.53.0
    • @salt-ds/lab@1.0.0-alpha.81

@salt-ds/core@1.53.0

12 Nov 23:02
9aac194

Choose a tag to compare

Minor Changes

  • d86bccf: Added NumberInput.

    NumberInput displays a default numeric value that users can increase or decrease using the controls or by keyboard actions. Users can also manually enter a specific value.

    <NumberInput
      defaultValue={0}
      onNumberChange={(_event, newValue) =>
        console.log(`Number changed to ${newValue}`)
      }
    />

Patch Changes

  • 7d0dc56: Fixed an issue with ComboBox where the first option was not always correctly auto-selected.
  • 7d0dc56: Improved the keyboard navigation of ComboBox so that it is more consistent with other implementations.
  • 01e4bde: Fixed Dialog flickering when its content is short but scrollable. This mostly affected small screens.
  • 7d0dc56: - Improved affordance for focused pills inside multiselect ComboBox.
    • Fixed two focus rings appearing when an interactive adornment is focused.

@salt-ds/lab@1.0.0-alpha.81

12 Nov 23:02
9aac194

Choose a tag to compare

Pre-release

Minor Changes

  • d86bccf: Removed NumberInput from labs and promoted to core.

Patch Changes

  • Updated dependencies [7d0dc56]
  • Updated dependencies [7d0dc56]
  • Updated dependencies [01e4bde]
  • Updated dependencies [d86bccf]
  • Updated dependencies [7d0dc56]
    • @salt-ds/core@1.53.0

@salt-ds/data-grid@1.0.32

10 Nov 17:36
18f06ad

Choose a tag to compare

Patch Changes

  • Updated dependencies [b898c9d]
  • Updated dependencies [d8d34a1]
  • Updated dependencies [b25650f]
  • Updated dependencies [fdbe053]
  • Updated dependencies [3449625]
    • @salt-ds/core@1.52.1
    • @salt-ds/lab@1.0.0-alpha.80