From f11f0294aed83454f9ba84587459b9a3d1c67b27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 12 Nov 2024 10:05:12 +0000 Subject: [PATCH] Version Packages --- .changeset/grumpy-mangos-march.md | 15 --------------- packages/demo/CHANGELOG.md | 7 +++++++ packages/demo/package.json | 2 +- packages/lib/CHANGELOG.md | 16 ++++++++++++++++ packages/lib/package.json | 2 +- 5 files changed, 25 insertions(+), 17 deletions(-) delete mode 100644 .changeset/grumpy-mangos-march.md diff --git a/.changeset/grumpy-mangos-march.md b/.changeset/grumpy-mangos-march.md deleted file mode 100644 index a1db53d..0000000 --- a/.changeset/grumpy-mangos-march.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'timescape': patch ---- - -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 - { - if (e.key === 'Enter') { - e.preventDefault() - } - }} -/> -``` diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index de894aa..d46f484 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -1,5 +1,12 @@ # demo +## 1.3.2 + +### Patch Changes + +- Updated dependencies [[`8e07ead`](https://github.com/dan-lee/timescape/commit/8e07ead9fe30f16cfdb7be0da6369d786dee06af)]: + - timescape@0.6.2 + ## 1.3.1 ### Patch Changes diff --git a/packages/demo/package.json b/packages/demo/package.json index 1008a88..bc6a933 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "demo", - "version": "1.3.1", + "version": "1.3.2", "type": "module", "scripts": { "typecheck": "tsc --noEmit", diff --git a/packages/lib/CHANGELOG.md b/packages/lib/CHANGELOG.md index ba41994..b8e6928 100644 --- a/packages/lib/CHANGELOG.md +++ b/packages/lib/CHANGELOG.md @@ -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 + { + if (e.key === 'Enter') { + e.preventDefault() + } + }} + /> + ``` + ## 0.6.1 ### Patch Changes diff --git a/packages/lib/package.json b/packages/lib/package.json index 901238e..3e31c41 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -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",