-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
373717d
commit b8fbcfa
Showing
17 changed files
with
180 additions
and
107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters