Skip to content

Commit

Permalink
Version Packages (#2908)
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 Jan 19, 2024
1 parent 91d2214 commit 66a05e9
Show file tree
Hide file tree
Showing 17 changed files with 82 additions and 103 deletions.
5 changes: 0 additions & 5 deletions .changeset/dull-games-yawn.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fresh-jars-attack.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/little-dolls-eat.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/little-wombats-perform.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-mayflies-punch.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/lucky-worms-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/odd-foxes-sniff.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-trees-laugh.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-flies-taste.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/tender-crabs-tickle.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/wicked-cobras-rule.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @salt-ds/core

## 1.14.0

### Minor Changes

- 91d22148: Added `Pill` to Core

`PillNext` is a small visual element that can contain descriptive text and an icon. You can use pills to label, tag or categorize content. With pills, users can trigger actions, make selections or filter results.

```tsx
<Pill onClick={handleClick}>Clickable Pill</Pill>
```

### Patch Changes

- 5f449172: Fixed incorrect aria attributes on `RadioButtonGroup` and `CheckboxGroup`, which caused Screen Readers to incorrectly report the group's label as the radio button or checkbox's accessible name.
- d9ce0737: Replaced incorrect usage of nullish operators.
- 32dbea7e: Update `ToggleButton` props to use `ComponentPropsWithoutRef`.
- 48f6c20c: Fixed Tooltip not honoring `disabled` prop when used in Form Field

## 1.13.4

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

## 1.1.4

### Patch Changes

- f0d5b359: Update country symbols to use useid to generate ids

## 1.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/countries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salt-ds/countries",
"version": "1.1.3",
"version": "1.1.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
54 changes: 54 additions & 0 deletions packages/lab/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# @salt-ds/lab

## 1.0.0-alpha.27

### Minor Changes

- ebe9feca: - Focus trap behavior is no longer managed by Scrim. Props related to this behavior such as `autoFocusRef`, `disableAutoFocus`, `disableFocusTrap`, `disableReturnFocus`, `fallbackFocusRef`, `returnFocusOptions` an `tabEnabledSelectors`, have been removed.
- Removed `onBackDropClick` prop. Use `onClick` instead.
- Removed `closeWithEscape` and `onClose` props. You can handle this outside of the scrim.
- Removed `enableContainerMode` and `containerRef` props and added `fixed` prop. The default behavior is now for the scrim to fill its container, and you can use the `fixed` prop to fill the viewport.
- Removed `zIndex` prop. You can change the `zIndex` using CSS.
- Removed `ScrimContext`.
- 18576480: Refactor Combo Box Next and Dropdown Next to use compositional APIs.

## Dropdown Next

```tsx
<DropdownNext>
{colors.map((color) => (
<Option value={color} key={color}>
{color}
</Option>
))}
</DropdownNext>
```

## Combo Box Next

```tsx
<ComboBoxNext>
{colors.map((color) => (
<Option value={color} key={color}>
{color}
</Option>
))}
</ComboBoxNext>
```

- 91d22148: Removed `pillNext` from Lab and promoted it to Core.

### Patch Changes

- d9ce0737: Replaced incorrect usage of nullish operators.
- bbc4ccb1: Added TokenizedInputNext to lab.

Tokenized input provides an input field for text that’s converted into a pill within the field, or tokenized, when the user enters a delimiting character.

```tsx
<TokenizedInputNext />
```

- e668b2d6: Navigation Item

- Updated the logic to make Navigation Item act like a button when `href` isn't passed.
- Fixed styles.

## 1.0.0-alpha.26

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

1 comment on commit 66a05e9

@vercel
Copy link

@vercel vercel bot commented on 66a05e9 Jan 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.