Skip to content

Commit

Permalink
Version Packages (#3137)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Mar 20, 2024
1 parent 95e2372 commit d8cc3d1
Show file tree
Hide file tree
Showing 17 changed files with 86 additions and 94 deletions.
8 changes: 0 additions & 8 deletions .changeset/cold-tomatoes-prove.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/hungry-wasps-doubt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-apricots-sip.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/odd-walls-invent.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/sharp-flowers-relax.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-bananas-know.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-parents-chew.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tidy-carrots-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-trainers-work.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/ag-grid-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @salt-ds/ag-grid-theme

## 1.4.0

### Minor Changes

- e53138c2: Updated column header active state to actionable secondary style, to better associate relevant column header with the open menu.
Aligned menu to selected selectable border color and popout overlayable shadow.
Fixed filter icon not aligned to secondary content color in the last update.
Fixed sort indicator position to be next to the menu icon, and its spacing between filter and menu icon.

## 1.3.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ag-grid-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/ag-grid-theme",
"version": "1.3.9",
"version": "1.4.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
45 changes: 45 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @salt-ds/core

## 1.21.0

### Minor Changes

- 53a7f22c: Added `Dropdown`, `Option`, `OptionGroup` and `ComboBox`.

**Note:** These were `DropdownNext` and `ComboBoxNext` in lab.

```tsx
<Dropdown aria-label="Colors">
<OptionGroup label="Primary">
<Option value="Red" />
<Option value="Blue" />
</OptionGroup>
<OptionGroup label="Other">
<Option value="Pink" />
</OptionGroup>
</Dropdown>
```

```tsx
<ComboBox aria-label="Colors">
<OptionGroup label="Primary">
<Option value="Red" />
<Option value="Blue" />
</OptionGroup>
<OptionGroup label="Other">
<Option value="Pink" />
</OptionGroup>
</ComboBox>
```

- 9960fe8a: Added `bufferValue` to linear and circular progress.
Updated linear and circular progress track token to use `--salt-size-bar` in order to improve density scale.

### Patch Changes

- d1e4f78a: Added export for DialogHeaderProps

```ts
import { DialogHeaderProps } from "@salt-ds/core";
```

- 53a7f22c: Fix ComboBox and Dropdown's list appearing below other elements.

## 1.20.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/core",
"version": "1.20.0",
"version": "1.21.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
22 changes: 22 additions & 0 deletions packages/lab/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @salt-ds/lab

## 1.0.0-alpha.37

### Minor Changes

- 53a7f22c: Removed `DropdownNext`, `Option`, `OptionGroup` and `ComboBoxNext` from labs and promoted to core.
- 6cdfe94e: Add `SegmentedButtonGroup` to labs
`SegmentedButtonGroup` should be used to display a list of actionable buttons, flush with separators

```tsx
const SegmentedButtonGroup = () => (
<SegmentedButtonGroup>
<Button> Button </Button>
<Button> Button </Button>
<Button> Button </Button>
</SegmentedButtonGroup>
);
```

### Patch Changes

- 91074aa2: - Fixed tabs container height to fit its contents and display as block so it can take 100% width without an extra wrapper.

## 1.0.0-alpha.36

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/lab",
"version": "1.0.0-alpha.36",
"version": "1.0.0-alpha.37",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @salt-ds/theme

## 1.13.1

### Patch Changes

- 4f925b41: Fix `--salt-navigable-background-hover` referencing deprecated value `--salt-palette-navigate-primary-background-hover`, change to reference correct value `--salt-palette-navigate-background-hover`

## 1.13.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/theme",
"version": "1.13.0",
"version": "1.13.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit d8cc3d1

Please sign in to comment.