You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,16 @@ All notable changes for each version of this project will be documented in this
72
72
73
73
### General
74
74
75
+
- **Touch Gestures (HammerJS)** _(optional)_
76
+
- `HammerModule`, previously exported from `@angular/platform-browser`, is no longer available in Angular 22. Touch gesture support (Slider, Drag & Drop, Carousel swipe, Navigation Drawer) is optional. To enable it, install the `hammerjs` package and add it to the `scripts` array in your project's `angular.json`:
77
+
```bash
78
+
npm install hammerjs
79
+
```
80
+
```json
81
+
// angular.json — inside your project's architect.build.options
- The default positioning strategy has changed from the internal overlap strategy to `AutoPositionStrategy`. The dropdown now opens below (or above, if there is not enough space) the inputelement, consistent with other connected components.
77
87
- Added `IgxSelectOverlapPositionStrategy` - a new publicly exported strategy that preserves the previous behavior of aligning the selected item'stext over the inputtext. To opt into the previous overlap behavior:
<!-- Lifecycle placeholder used to determine when the grid gets connected/disconnected from the DOM, for example as a result of virtualization or caching. -->
> **Touch gestures** (Optional) (Slider, Drag & Drop, swipe) - To enable touch gesture support, install the `hammerjs` package and add it to the `scripts` array in your `angular.json`:
48
+
>
49
+
> ```bash
50
+
> npm install hammerjs
51
+
>```
52
+
>
53
+
>```json
54
+
> // angular.json — inside your project's architect.build.options
0 commit comments