Skip to content

Commit edc9a0e

Browse files
authored
refactor: Fix tile state event args name and generate CHANGELOG (#1604)
1 parent 77a2a54 commit edc9a0e

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased]
7+
## [5.3.0] - 2025-03-13
88
### Added
99
- Tile manager component [#1402](https://github.com/IgniteUI/igniteui-webcomponents/pull/1402)
1010
- #### List
11-
- The `igc-list-item` component exposes a new `selected` property. When set on a list item, the item will become visually highlighted.
11+
- The `igc-list-item` component exposes a new `selected` property. When set on a list item, the item will become visually highlighted [#1590](https://github.com/IgniteUI/igniteui-webcomponents/pull/1590)
12+
13+
### Changed
14+
- #### Progressbar
15+
- Use theme schemas [#1582](https://github.com/IgniteUI/igniteui-webcomponents/pull/1582)
16+
17+
### Fixed
18+
- #### Calendar
19+
- Days row height for Fluent and Bootstrap themes [#1597](https://github.com/IgniteUI/igniteui-webcomponents/pull/1597)
20+
- Disabled date text color in range preview for Material and Indigo themes [#1595](https://github.com/IgniteUI/igniteui-webcomponents/pull/1595)
21+
- #### Chip
22+
- Improved responsive layout styles [#1588](https://github.com/IgniteUI/igniteui-webcomponents/pull/1588)
23+
- #### Combo
24+
- Improved toggle button visual states [#1580](https://github.com/IgniteUI/igniteui-webcomponents/pull/1580)
1225

1326
## [5.2.4] - 2025-02-24
1427
### Changed
@@ -705,6 +718,7 @@ Initial release of Ignite UI Web Components
705718
- Ripple component
706719
- Switch component
707720

721+
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.4...5.3.0
708722
[5.2.4]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.3...5.2.4
709723
[5.2.3]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.2...5.2.3
710724
[5.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.1...5.2.2

src/components/tile-manager/tile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ import { all } from './themes/tile.js';
4242
import { createTileDragGhost, createTileGhost } from './tile-ghost-util.js';
4343
import type IgcTileManagerComponent from './tile-manager.js';
4444

45-
export type IgcTileChangeState = {
45+
export type IgcTileChangeStateEventArgs = {
4646
tile: IgcTileComponent;
4747
state: boolean;
4848
};
4949

5050
type AdornerType = 'side' | 'corner' | 'bottom';
5151

5252
export interface IgcTileComponentEventMap {
53-
igcTileFullscreen: CustomEvent<IgcTileChangeState>;
54-
igcTileMaximize: CustomEvent<IgcTileChangeState>;
53+
igcTileFullscreen: CustomEvent<IgcTileChangeStateEventArgs>;
54+
igcTileMaximize: CustomEvent<IgcTileChangeStateEventArgs>;
5555
igcTileDragStart: CustomEvent<IgcTileComponent>;
5656
igcTileDragEnd: CustomEvent<IgcTileComponent>;
5757
igcTileDragCancel: CustomEvent<IgcTileComponent>;

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export type {
120120
TileManagerDragMode,
121121
TileManagerResizeMode,
122122
} from './components/types.js';
123-
export type { IgcTileChangeState } from './components/tile-manager/tile.js';
123+
export type { IgcTileChangeStateEventArgs } from './components/tile-manager/tile.js';
124124
export type {
125125
DateRangeDescriptor,
126126
WeekDays,

0 commit comments

Comments
 (0)