salt-ds icon indicating copy to clipboard operation
salt-ds copied to clipboard

Version Packages

Open github-actions[bot] opened this issue 7 months ago • 1 comments

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

@salt-ds/[email protected]

Minor Changes

  • 7d874bb: Added color and appearance props for Button. These props replace the variant prop.

        <Button color="accent" appearance="solid" />
        <Button color="accent" appearance="outline" />
        <Button color="accent" appearance="transparent" />
        <Button color="neutral" appearance="solid" />
        <Button color="neutral" appearance="outline" />
        <Button color="neutral" appearance="transparent" />
    

    Note: Button's variant prop is now deprecated and will be removed in the next major version.

  • 64be665: Update FormFieldHelperText to have status colors applied when validationStatus is applied to FormField.

  • fc66238: Added tertiary variant to the variant prop for Card, LinkCard, InteractableCard and Panel.

    <Card variant="tertiary">Example of a Tertiary Card</Card>
    <LinkCard variant="tertiary">Example of a Link Card</LinkCard>
    <InteractableCard variant="tertiary">Example of a Interactable Card</InteractableCard>
    <Panel variant="tertiary">Example of a Tertiary Panel</Panel>
    

Patch Changes

  • 4823df6: - Fixed the default NavigationItem being considered a parent.
    • Fixed NavigationItem not calling onClick.
  • 9837998: Fixed Pagination button having an incorrect color on hover when theme next is enabled.
  • 3913dbb: Fixed list scroll when there is only one item in ComboBox and Dropdown.
  • 5b735d9: Fixed ComboBox having a button when it has nothing to show.
  • 31c3702: Fixed ListBox not scrolling to the active item in some circumstances
  • e9c1287: Update gap to --salt-spacing-75 for top aligned labels in FormField.
  • 0eb21ae: Fixed Accordion becoming inaccessible when an id is passed to AccordionPanel or AccordionHeader.

@salt-ds/[email protected]

Minor Changes

  • ffc0dd4: Replaced TrackerStep's state prop with new stage and status props. Valid stage values are "pending" and "completed". Valid status values are "error" and "warning".
  • 8f17df3: Update Dropdown classname to saltDropdownBase to fix them clashing with the dropdown in core

Patch Changes

  • e8d923c: Fix disabled out of bound dates still having a hover style

@salt-ds/[email protected]

Minor Changes

  • 7d874bb: Added foreground, background and border-color tokens for actionable and actionable-next.css

      --salt-actionable-bold-foreground
      --salt-actionable-bold-foreground-hover
      --salt-actionable-bold-foreground-active
      --salt-actionable-bold-foreground-disabled
      --salt-actionable-bold-background
      --salt-actionable-bold-background-hover
      --salt-actionable-bold-background-active
      --salt-actionable-bold-background-disabled
      --salt-actionable-bold-borderColor
      --salt-actionable-bold-borderColor-hover
      --salt-actionable-bold-borderColor-active
      --salt-actionable-bold-borderColor-disabled
    
      --salt-actionable-foreground
      --salt-actionable-foreground-hover
      --salt-actionable-foreground-active
      --salt-actionable-foreground-disabled
      --salt-actionable-background
      --salt-actionable-background-hover
      --salt-actionable-background-active
      --salt-actionable-background-disabled
      --salt-actionable-borderColor
      --salt-actionable-borderColor-hover
      --salt-actionable-borderColor-active
      --salt-actionable-borderColor-disabled
    
      --salt-actionable-accent-bold-foreground
      --salt-actionable-accent-bold-foreground-hover
      --salt-actionable-accent-bold-foreground-active
      --salt-actionable-accent-bold-foreground-disabled
      --salt-actionable-accent-bold-background
      --salt-actionable-accent-bold-background-hover
      --salt-actionable-accent-bold-background-active
      --salt-actionable-accent-bold-background-disabled
      --salt-actionable-accent-bold-borderColor
      --salt-actionable-accent-bold-borderColor-hover
      --salt-actionable-accent-bold-borderColor-active
      --salt-actionable-accent-bold-borderColor-disabled
    
      --salt-actionable-accent-foreground
      --salt-actionable-accent-foreground-hover
      --salt-actionable-accent-foreground-active
      --salt-actionable-accent-foreground-disabled
      --salt-actionable-accent-background
      --salt-actionable-accent-background-hover
      --salt-actionable-accent-background-active
      --salt-actionable-accent-background-disabled
      --salt-actionable-accent-borderColor
      --salt-actionable-accent-borderColor-hover
      --salt-actionable-accent-borderColor-active
      --salt-actionable-accent-borderColor-disabled
    
      --salt-actionable-accent-subtle-foreground
      --salt-actionable-accent-subtle-foreground-hover
      --salt-actionable-accent-subtle-foreground-active
      --salt-actionable-accent-subtle-foreground-disabled
      --salt-actionable-accent-subtle-background
      --salt-actionable-accent-subtle-background-hover
      --salt-actionable-accent-subtle-background-active
      --salt-actionable-accent-subtle-background-disabled
      --salt-actionable-accent-borderColor
      --salt-actionable-accent-borderColor-hover
      --salt-actionable-accent-borderColor-active
      --salt-actionable-accent-borderColor-disabled
    
      --salt-actionable-subtle-foreground
      --salt-actionable-subtle-foreground-hover
      --salt-actionable-subtle-foreground-active
      --salt-actionable-subtle-foreground-disabled
      --salt-actionable-subtle-background
      --salt-actionable-subtle-background-hover
      --salt-actionable-subtle-background-active
      --salt-actionable-subtle-background-disabled
      --salt-actionable-subtle-borderColor
      --salt-actionable-subtle-borderColor-hover
      --salt-actionable-subtle-borderColor-active
      --salt-actionable-subtle-borderColor-disabled
    
  • fc66238: Added tertiary variables in theme next theme

    --salt-container-tertiary-borderColor
    --salt-container-tertiary-borderColor-disabled
    

    Added tertiary variables in existing theme

    --salt-container-tertiary-background
    --salt-container-tertiary-background-disabled
    --salt-container-tertiary-borderColor
    --salt-container-tertiary-borderColor-disabled
    

    Added gray 30 and 50 fade background in fade.css

    --salt-color-gray-30-fade-background
    --salt-color-gray-50-fade-background
    

    Un-deprecated tertiary palette variables in characteristics.css and palette.css and added those to neutral.css

    --salt-palette-neutral-tertiary-background
    --salt-palette-neutral-tertiary-background-disabled
    --salt-palette-neutral-tertiary-border
    --salt-palette-neutral-tertiary-border-disabled
    

Patch Changes

  • 3c635db: Fixed --salt-size-selectable double defined in deprecated token list

github-actions[bot] avatar Jul 23 '24 11:07 github-actions[bot]