Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #45

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/grumpy-mangos-march.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# demo

## 1.3.2

### Patch Changes

- Updated dependencies [[`8e07ead`](https://github.com/dan-lee/timescape/commit/8e07ead9fe30f16cfdb7be0da6369d786dee06af)]:
- [email protected]

## 1.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "demo",
"version": "1.3.1",
"version": "1.3.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
Expand Down
16 changes: 16 additions & 0 deletions packages/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# timescape

## 0.6.2

### Patch Changes

- [#44](https://github.com/dan-lee/timescape/pull/44) [`8e07ead`](https://github.com/dan-lee/timescape/commit/8e07ead9fe30f16cfdb7be0da6369d786dee06af) Thanks [@dan-lee](https://github.com/dan-lee)! - Added the ability to prevent the default keydown event handling. If you want to handle keydown events yourself, you can now prevent the default behavior by using `onKeyDownCapture` (or the equivalent in your framework) and calling `preventDefault()` in your handler.

```tsx
<input
onKeyDownCapture={(e) => {
if (e.key === 'Enter') {
e.preventDefault()
}
}}
/>
```

## 0.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "timescape",
"license": "MIT",
"version": "0.6.1",
"version": "0.6.2",
"description": "A flexible, headless date and time input library for JavaScript. Provides tools for building fully customizable date and time input fields, with support for libraries like React, Preact, Vue, Svelte and Solid.",
"repository": "https://github.com/dan-lee/timescape",
"bugs": "https://github.com/dan-lee/timescape/issues",
Expand Down