Skip to content

Commit

Permalink
Version Packages (#3270)
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 Apr 29, 2024
1 parent 0ca2953 commit 25fd33c
Show file tree
Hide file tree
Showing 18 changed files with 87 additions and 90 deletions.
8 changes: 0 additions & 8 deletions .changeset/dry-pumpkins-battle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-pots-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-turkeys-change.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/shiny-ants-pull.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/shiny-bees-listen.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/silent-monkeys-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-frogs-move.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/violet-news-beg.md

This file was deleted.

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

## 1.4.1

### Patch Changes

- 0ca29531: Fixed single cell focus ring not visible in range selection mode (Fixed #3290)

## 1.4.0

### Minor 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.4.0",
"version": "1.4.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
28 changes: 28 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @salt-ds/core

## 1.26.0

### Minor Changes

- d885e02d: Added `useBreakpoint` which returns on object containing matchedBreakpoints and `breakpoint`.

- `matchedBreakpoints` - is an array of all matched breakpoints e.g. when the viewport matches the M breakpoint this array contains M, SM and XS.
- `breakpoint` - is the current matched breakpoint.

- d885e02d: Added support for passing a string gap values to FlexLayout and GridLayout.

```tsx
<FlexLayout gap="spacing-100" />
<GridLayout gap="spacing-100" rowGap="spacing-100" columnGap="spacing-100" />
```

Added support for passing a string column and row template to GridLayout.

```tsx
<GridLayout columns="1fr 1fr 2fr" rows="1fr 2fr" />
```

### Patch Changes

- 51e164e3: Fixed Combo box and Dropdown options not growing in height with their content.
- f2f88a0d: Fixed Switch's alignment when it's used with a left/right aligned FormFieldLabel.
- 8ebd9138: Fixed deprecated `--salt-size-accent` references to `--salt-size-bar`. Fixed deprecated `--salt-size-unit` references to `--salt-spacing-100`.

## 1.25.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.25.0",
"version": "1.26.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/data-grid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @salt-ds/data-grid

## 1.0.4-alpha.10

### Patch Changes

- 8ebd9138: Fixed deprecated `--salt-size-accent` references to `--salt-size-bar`. Fixed deprecated `--salt-size-unit` references to `--salt-spacing-100`.

## 1.0.4-alpha.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/data-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/data-grid",
"version": "1.0.4-alpha.9",
"version": "1.0.4-alpha.10",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @salt-ds/icons

## 1.11.1

### Patch Changes

- d1505a32: Reexporting all the icons from Figma. This has caused the following:

- The "9" in the `SortNumAscendIcon` is no longer cut off.
- The arrow in the `PlaceInIcon` is no longer too short.
- The `SaltShakerIcon` and `SaltShakerSolidIcon` have the correct viewport and are now slightly bigger.
- The waves in the `SignalIcon` are now visible.
- The arrow in the `TearOutIcon` is no longer too short.

## 1.11.0

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

## 1.0.0-alpha.42

### Minor Changes

- 059f6f7d: Submenu's now persist when the cursor moves from the menu to the body. This makes it easier to interact with submenus.
Added `getVirtualElement` to Menu. To allow positioning Menu's relative to a custom reference area. This can be used to create a context menu.

```tsx
<Menu
getVirtualElement={() => ({
getBoundingClientRect: () => ({
width: 0,
height: 0,
x: 0,
y: 0,
top: 0,
right: 0,
bottom: 0,
left: 0,
}),
})}
>
<MenuPanel>
<MenuItem>Copy</MenuItem>
<MenuItem>Move</MenuItem>
<MenuItem>Delete</MenuItem>
</MenuPanel>
</Menu>
```

## 1.0.0-alpha.41

### 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.41",
"version": "1.0.0-alpha.42",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit 25fd33c

Please sign in to comment.