Skip to content

Commit 24eb27e

Browse files
authored
Merge branch 'master' into ttonev/fix-14970-master
2 parents 5630b93 + eb58644 commit 24eb27e

File tree

110 files changed

+3513
-2655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+3513
-2655
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [18.x, 20.x]
19+
node-version: [20.x, 22.x]
2020

2121
steps:
2222
- name: Checkout

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 18
14+
node-version: 22
1515
cache: 'npm'
1616
registry-url: 'https://registry.npmjs.org'
1717
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Ignite UI for Angular Change Log
22

33
All notable changes for each version of this project will be documented in this file.
4+
5+
## 19.2.0
6+
7+
### General
8+
- `IgxCarousel`
9+
- Removed deprecated property `keyboardSupport`.
10+
- `IgxSlide`
11+
- **Deprecation** - `tabIndex` has been deprecated and will be removed in a future version.
12+
- `IgxGrid`, `IgxHierarchicalGrid`, `IgxTreeGrid`
13+
- A column's `minWidth` and `maxWidth` constrain the user-specified `width` so that it cannot go outside their bounds.
14+
415
## 19.1.1
516
### New Features
617
- IgxListItem
@@ -11,6 +22,7 @@ All notable changes for each version of this project will be documented in this
1122
- `IgxCarousel`
1223
- **Behavioral Changes** - the `maximumIndicatorsCount` input property now defaults to `10`.
1324
- **Deprecation** - `CarouselIndicatorsOrientation` enum members `top` and `bottom` have been deprecated and will be removed in a future version. Use `start` and `end` instead.
25+
1426
### New Features
1527
- `IgxBanner`
1628
- Introduced a new `expanded` input property, enabling dynamic control over the banner's state. The banner can now be programmatically set to expanded (visible) or collapsed (hidden) both initially and at runtime. Animations will trigger during runtime updates — the **open animation** plays when `expanded` is set to `true`, and the **close animation** plays when set to `false`. However, no animations will trigger when the property is set initially.

ROADMAP.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,25 @@
22

33
# Current Milestone
44

5-
## Milestone 36, version 19.1 (Due by Feb, 2025)
5+
## Milestone 37, version 19.2 (Due by Mar, 2025)
66

7-
1. Query Builder multi-table query support [#14979](https://github.com/IgniteUI/igniteui-angular/issues/14979)
8-
2. IgxBannerComponent - Support collapsed input [#14890](https://github.com/IgniteUI/igniteui-angular/issues/14890)
9-
3. Carousel component vertical orientation support [#15025](https://github.com/IgniteUI/igniteui-angular/issues/15025)
7+
1. Tile Manager - layout component [#239](https://github.com/IgniteUI/igniteui-angular/issues/239)
8+
2. SSR Grid Improvements - [15202](https://github.com/IgniteUI/igniteui-angular/issues/15202)
109

1110
## Going down the road
1211

1312
1. Provide an option to modify the default enter edit mode conditions, to e.g. allow edit mode start on a single click [#14658](https://github.com/IgniteUI/igniteui-angular/issues/14658)
1413
2. Provide an excel-like navigation mode for editing where all arrow keys navigate the cell in edit mode. [#14659](https://github.com/IgniteUI/igniteui-angular/issues/14659)
1514
3. Extend the 18.2 editorOptions property to allow modifying numeric editors to not change the value on up/down arrow press [#14660](https://github.com/IgniteUI/igniteui-angular/issues/14660)
16-
4. Tile Manager - layout component [#239](https://github.com/IgniteUI/igniteui-angular/issues/239)
1715

1816
# Previous Milestone
1917

18+
## Milestone 36, version 19.1 (Released Feb 27th, 2025)
19+
20+
1. **[DONE]** Query Builder multi-table query support [#14979](https://github.com/IgniteUI/igniteui-angular/issues/14979)
21+
2. **[DONE]** IgxBannerComponent - Support collapsed input [#14890](https://github.com/IgniteUI/igniteui-angular/issues/14890)
22+
3. **[DONE]** Carousel component vertical orientation support [#15025](https://github.com/IgniteUI/igniteui-angular/issues/15025)
23+
2024
## Milestone 35, version 19.0 (Released Nov 25th, 2024)
2125

2226
1. Angular 19 support

angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,6 @@
399399
]
400400
},
401401
"server": "projects/bundle-test/src/main.server.ts",
402-
"prerender": true,
403402
"ssr": {
404403
"entry": "projects/bundle-test/server.ts"
405404
}

0 commit comments

Comments
 (0)