Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and dan-lee committed Nov 12, 2024
1 parent 8e07ead commit e946f31
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 17 deletions.
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

0 comments on commit e946f31

Please sign in to comment.