Skip to content

Commit

Permalink
fix(calendar): resolving export type for DateRangeType (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosSF authored Nov 1, 2022
1 parent 0042f68 commit e40ef98
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
### Fixed
- Resolved importing error for `DateRangeType` [#535](https://github.com/IgniteUI/igniteui-webcomponents/issues/535)

## [3.4.1] - 2022-09-19
### Changed
- Slider - updated theme with the latest fluent spec [#453](https://github.com/IgniteUI/igniteui-webcomponents/pull/453)
Expand Down
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@ export { configureTheme } from './theming/config.js';
export { IgcCalendarResourceStrings } from './components/common/i18n/calendar.resources.js';

// Types
export type {
DateRangeDescriptor,
DateRangeType,
} from './components/calendar/common/calendar.model.js';
export type { DateRangeDescriptor } from './components/calendar/common/calendar.model.js';
export { DateRangeType } from './components/calendar/common/calendar.model.js';
export type {
DatePart,
DatePartDeltas,
Expand Down

0 comments on commit e40ef98

Please sign in to comment.