Skip to content

Releases: jpmorganchase/salt-ds

@salt-ds/countries@1.4.2

15 Nov 17:20
890ac5a
Compare
Choose a tag to compare

Patch Changes

@salt-ds/core@1.37.2

15 Nov 17:20
890ac5a
Compare
Choose a tag to compare

Patch Changes

  • ae6e5c9: Updated ToggleButton's styling to align to Button's new styling.

  • b395246: Fixed color="secondary" not working for the Link component.

  • aced985: Replaced Button's deprecated variant prop with sentiment and appearance in:

    • ComboBox
    • DialogCloseButton
    • DrawerCloseButton
    • OverlayPanelCloseButton
    • CompactPaginator
    • Paginator
    • Pagination
  • 7432f62: Fixed useResponsiveProp not being inclusive when calculating breakpoints e.g. not recognising 600px as sm.

  • 0730eb0: Fixed focus rings not appearing on Checkbox or Radio Button.

  • 1a29b4e: Fixed disabled MenuItems triggering onClick.

  • 6b1f109: Added padding between the content and scrollbar when OverlayPanelContent is scrollable.

  • 26bf747: Fixed Tooltip to prioritize its status prop over the status inherited from a parent FormField.

  • 6a08b82: Fixed circular dependencies in code.

  • Updated dependencies [dc5b3b3]

    • @salt-ds/icons@1.13.0

@salt-ds/ag-grid-theme@2.1.2

15 Nov 17:20
890ac5a
Compare
Choose a tag to compare

Patch Changes

  • c486b75: Refactor ag grid theme CSS into smaller files
  • Updated dependencies [2f027e9]
    • @salt-ds/theme@1.23.2

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

15 Nov 17:20
890ac5a
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • 91973ac: Added DialogHeader component to lab. DialogHeader's update follows our standardized header for container components and app regions, and it can be added to provide a structured header for dialog. The header includes a title and actions that follows our Header Block pattern.

    <Dialog open={open} onOpenChange={onOpenChange} id={id}>
      <DialogHeader
        header={<H2>Terms and conditions</H2>}
        actions={
          <Button
            aria-label="Close overlay"
            appearance="transparent"
            sentiment="neutral"
          >
            <CloseIcon aria-hidden />
          </Button>
        }
      />
      <DialogContent>
        <div>
          Only Chase Cards that we determine are eligible can be added to the
        Wallet.
        </div>
      </DialogContent>
    </Dialog>;

Patch Changes

  • 3cf8d99: Updated TabstripNext and TabNext to follow the new design guidelines and added dismissing and adding tabs.
- <TabstripNext defaultValue={defaultValue} align="center">
-   {tabs.map((label) => (
-    <TabNext value={label} key={label}>
-       {label}
-    </TabNext>
-   ))}
- </TabstripNext>
+ <TabsNext defaultValue={defaultValue}>
+   <TabBar divider={divider} inset={inset}>
+     <TabListNext appearance={appearance}>
+       {tabs.map((label) => (
+         <TabNext value={label} key={label}>
+           <TabNextTrigger>{label}</TabNextTrigger>
+           <TabNextAction onClick={click} >...</TabNextAction>
+         </TabNext>
+       ))}
+     </TabListNext>
+   </TabBar>
+ </TabsNext>
  • 6a08b82: Fixed circular dependencies in code.
  • Updated dependencies [ae6e5c9]
  • Updated dependencies [b395246]
  • Updated dependencies [aced985]
  • Updated dependencies [7432f62]
  • Updated dependencies [0730eb0]
  • Updated dependencies [1a29b4e]
  • Updated dependencies [6b1f109]
  • Updated dependencies [26bf747]
  • Updated dependencies [6a08b82]
  • Updated dependencies [dc5b3b3]
    • @salt-ds/core@1.37.2
    • @salt-ds/icons@1.13.0

@salt-ds/theme@1.23.1

16 Oct 13:03
7d0d998
Compare
Choose a tag to compare

Patch Changes

  • 0661efa: - Fixed invalid CSS variables in theme-next.css. Closes #4302.
    • Fixed missing actionable disabled palette tokens in theme-next.css.

@salt-ds/core@1.37.1

16 Oct 13:03
7d0d998
Compare
Choose a tag to compare

Patch Changes

  • 62300f3: Fixed aria-multiselectable being incorrectly applied in the ComboBox and Dropdown.

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

16 Oct 13:03
7d0d998
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • bb916f7: Removed the left padding from Static List.

@salt-ds/theme@1.23.0

09 Oct 13:58
c421ae3
Compare
Choose a tag to compare

Minor Changes

  • 4ccc245: Added new tokens in Salt theme.

    • --salt-palette-interact-cta-border-hover
    • --salt-palette-interact-cta-border-active
    • --salt-accent-background-disabled
    • --salt-palette-accent-background-disabled

    Added new tokens in Salt Next theme.

    • --salt-accent-background-disabled

    Updated mapping for below tokens, to help visual alignment between Salt and Salt Next themes.

    - --salt-actionable-accented-borderColor-hover: var(--salt-palette-interact-border-none);
    + --salt-actionable-accented-borderColor-hover: var(--salt-palette-interact-cta-border-hover);
    - --salt-actionable-accented-borderColor-active: var(--salt-palette-interact-border-none);
    + --salt-actionable-accented-borderColor-active: var(--salt-palette-interact-cta-border-active);

@salt-ds/countries@1.4.1

09 Oct 13:58
c421ae3
Compare
Choose a tag to compare

Patch Changes

  • c9e932d: Fixed LazyCountrySymbol crash with invalid code, and sharp was not working correctly.

@salt-ds/core@1.37.0

09 Oct 13:58
c421ae3
Compare
Choose a tag to compare

Minor Changes

  • 4ccc245: Updated Card, LinkCard and InteractableCard accent bar color, which now stays the same across states.

  • 97215f7: Added SemanticIconProvider to provide a mechanism to swap out built-in component icons to custom icons.

    <SemanticIconProvider iconMap={iconMap}>
      <App />
    </SemanticIconProvider>
  • 60a8d6a: Pill will now go into an active state when it's a menu trigger and has the menu is open. This aligns Pill with Button.

Patch Changes

  • dc9e1bd: Updated Pill's styling to align to Button's new styling.
  • 7eac3b2: Fixed text contrast issues in Menu, Dropdown, ComboBox and ListBox.
  • b2af86a: Updated MultilineInput so that it is easier to set a max-height.
  • 9edf6c4: Added letter-spacing to Text for consistency.
  • 65bfefb: Improved list based control's performance when lots of items are displayed.