Skip to content

Commit

Permalink
Version Packages (#4584)
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 22, 2025
1 parent 373717d commit b8fbcfa
Show file tree
Hide file tree
Showing 17 changed files with 180 additions and 107 deletions.
57 changes: 0 additions & 57 deletions .changeset/giant-cycles-clap.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/itchy-mirrors-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nasty-bottles-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-scissors-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-dots-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-lies-explode.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-swans-wave.md

This file was deleted.

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

## 1.39.0

### Minor Changes

- 373717d: Added `SkipLink`.

```tsx
<body>
<header>
<SkipLink targetId="main">Skip to main content</SkipLink>
<nav>
{{...}}
</nav>
</header>
<main>
<h1 id="main">Main Content</h1>
</main>
</body>

```

- 225a61b: Added `render` prop to `Link`. The `render` prop enables the substitution of the default anchor tag with an alternate link, such as React Router, facilitating integration with routing libraries.

### Patch Changes

- c5d61e2: Fixed Toast icon alignment.

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

## 1.4.5

### Patch Changes

- Updated dependencies [373717d]
- Updated dependencies [225a61b]
- Updated dependencies [c5d61e2]
- @salt-ds/core@1.39.0

## 1.4.4

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

## 1.0.11

### Patch Changes

- Updated dependencies [e6c54b7]
- Updated dependencies [373717d]
- Updated dependencies [373717d]
- Updated dependencies [eed82f8]
- Updated dependencies [225a61b]
- Updated dependencies [df7760d]
- Updated dependencies [c5d61e2]
- @salt-ds/lab@1.0.0-alpha.59
- @salt-ds/core@1.39.0

## 1.0.10

### 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.10",
"version": "1.0.11",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
56 changes: 56 additions & 0 deletions packages/date-adapters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# @salt-ds/date-adapters

## 0.1.0-alpha.2

### Patch Changes

- e6c54b7: Refine peer dependency management for DatePicker adapters by splitting them into sub-packages. You now import only the specific date framework adapter you need, simplifying dependency handling.

- **For `date-fns`:**

```diff
- import { AdapterDateFns } from "@salt-ds/date-adapters";
+ import { AdapterDateFns } from "@salt-ds/date-adapters/date-fns";
```

- **For `dayjs`:**

```diff
- import { AdapterDayjs } from "@salt-ds/date-adapters";
+ import { AdapterDayjs } from "@salt-ds/date-adapters/dayjs";
```

- **For `luxon`:**

```diff
- import { AdapterLuxon } from "@salt-ds/date-adapters";
+ import { AdapterLuxon } from "@salt-ds/date-adapters/luxon";
```

- **For `moment`:**

```diff
- import { AdapterMoment } from "@salt-ds/date-adapters";
+ import { AdapterMoment } from "@salt-ds/date-adapters/moment";
```

Additionally, `DateDetailErrorEnum` is now a simpler `DateDetailError` of type `DateDetailErrorType`.

```diff
- import { DateDetailErrorEnum } from "@salt-ds/date-adapters";
+ import { DateDetailError } from "@salt-ds/date-adapters/moment";
```

### Instructions

1. Modify your import statements to use the specific sub-package for the date adapter you require.
2. Ensure your `package.json` includes the necessary date framework as a dependency. For example, if using `date-fns`:

```json
{
"dependencies": {
"date-fns": "^x.x.x"
}
}
```

This change helps streamline the integration of date frameworks with the DatePicker component by ensuring only the necessary adapters and dependencies are included.

## 0.1.0-alpha.1

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

## 1.0.0-alpha.59

### Minor Changes

- 373717d: Removed `SkipLink` from labs and promoted to core.

### Patch Changes

- e6c54b7: Refine peer dependency management for DatePicker adapters by splitting them into sub-packages. You now import only the specific date framework adapter you need, simplifying dependency handling.

- **For `date-fns`:**

```diff
- import { AdapterDateFns } from "@salt-ds/date-adapters";
+ import { AdapterDateFns } from "@salt-ds/date-adapters/date-fns";
```

- **For `dayjs`:**

```diff
- import { AdapterDayjs } from "@salt-ds/date-adapters";
+ import { AdapterDayjs } from "@salt-ds/date-adapters/dayjs";
```

- **For `luxon`:**

```diff
- import { AdapterLuxon } from "@salt-ds/date-adapters";
+ import { AdapterLuxon } from "@salt-ds/date-adapters/luxon";
```

- **For `moment`:**

```diff
- import { AdapterMoment } from "@salt-ds/date-adapters";
+ import { AdapterMoment } from "@salt-ds/date-adapters/moment";
```

Additionally, `DateDetailErrorEnum` is now a simpler `DateDetailError` of type `DateDetailErrorType`.

```diff
- import { DateDetailErrorEnum } from "@salt-ds/date-adapters";
+ import { DateDetailError } from "@salt-ds/date-adapters/moment";
```

### Instructions

1. Modify your import statements to use the specific sub-package for the date adapter you require.
2. Ensure your `package.json` includes the necessary date framework as a dependency. For example, if using `date-fns`:

```json
{
"dependencies": {
"date-fns": "^x.x.x"
}
}
```

This change helps streamline the integration of date frameworks with the DatePicker component by ensuring only the necessary adapters and dependencies are included.

- eed82f8: Overlay and Dialog headers fix alignment for titles spanning into multiple lines, wrap preheader and headers in H2.
- df7760d: Add border box to skip link container to ensure height is correctly measured.
- Updated dependencies [e6c54b7]
- Updated dependencies [373717d]
- Updated dependencies [225a61b]
- Updated dependencies [c5d61e2]
- @salt-ds/[email protected]
- @salt-ds/[email protected]

## 1.0.0-alpha.58

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

0 comments on commit b8fbcfa

Please sign in to comment.