diff --git a/CHANGELOG.md b/CHANGELOG.md index 3724432..395c913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [1.1.1] - 2026-02-14 + +### Updated + +- timepicker-ui dependency from 4.1.2 to 4.1.6 + +### Added + +- Re-exported Range plugin types: RangeOptions, RangeConfirmEventData, RangeSwitchEventData, RangeValidationEventData + +--- + ## [1.1.0] - 2026-02-08 ### Added diff --git a/package.json b/package.json index bfe464c..b6098ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "timepicker-ui-react", - "version": "1.1.0", + "version": "1.1.1", "description": "Official React wrapper for timepicker-ui v4.x", "type": "module", "sideEffects": false, @@ -44,6 +44,6 @@ "react-dom": ">=17" }, "dependencies": { - "timepicker-ui": "4.1.2" + "timepicker-ui": "4.1.6" } } diff --git a/src/index.ts b/src/index.ts index 32d47e1..d200035 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,6 +28,10 @@ export type { Plugin, PluginManager, PluginFactory, + RangeOptions, + RangeConfirmEventData, + RangeSwitchEventData, + RangeValidationEventData, } from "timepicker-ui"; export { TimepickerUI, EventEmitter, PluginRegistry } from "timepicker-ui"; diff --git a/src/package.json b/src/package.json index 0f69e5f..4bd62ac 100644 --- a/src/package.json +++ b/src/package.json @@ -13,7 +13,7 @@ "dependencies": { "react": "^18.3.1", "react-dom": "^18.3.1", - "timepicker-ui": "^4.1.1" + "timepicker-ui": "^4.1.6" }, "devDependencies": { "@testing-library/jest-dom": "^6.9.1",