Skip to content

Commit e2dc9e5

Browse files
committed
Auto-generated commit
1 parent 080c795 commit e2dc9e5

7 files changed

Lines changed: 21 additions & 13 deletions

File tree

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
<div class="container-fluid" id="demo">
3737
<mwl-demo>Loading demo...</mwl-demo>
3838
</div>
39-
<script src="polyfills-HRF5T3EB.js" type="module"></script><script src="main-LJIAGNRB.js" type="module"></script></body>
39+
<script src="polyfills-HRF5T3EB.js" type="module"></script><script src="main-2FNPO53J.js" type="module"></script></body>
4040
</html>

docs/changelog.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@
8484

8585
<h1>Changelog</h1>
8686
<p>All notable changes to this project will be documented in this file. See <a href="https://github.com/conventional-changelog/standard-version">standard-version</a> for commit guidelines.</p>
87+
<h3><a href="https://github.com/mattlewis92/angular-resizable-element/compare/v8.0.1...v8.0.2">8.0.2</a> (2026-03-11)</h3>
88+
<h3>Bug Fixes</h3>
89+
<ul>
90+
<li>pass passive false for touch events in listenOnTheHost (<a href="https://github.com/mattlewis92/angular-resizable-element/issues/137">#137</a>) (<a href="https://github.com/mattlewis92/angular-resizable-element/commit/f31aaeb26fe3ade59c2cb7485d15c8aba33367a1">f31aaeb</a>)</li>
91+
</ul>
8792
<h3><a href="https://github.com/mattlewis92/angular-resizable-element/compare/v8.0.0...v8.0.1">8.0.1</a> (2025-12-17)</h3>
8893
<h2><a href="https://github.com/mattlewis92/angular-resizable-element/compare/v7.0.2...v8.0.0">8.0.0</a> (2025-08-23)</h2>
8994
<h3>⚠ BREAKING CHANGES</h3>

docs/directives/ResizeHandleDirective.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h3 id="inputs">Inputs</h3>
208208
</tr>
209209
<tr>
210210
<td class="col-md-2" colspan="2">
211-
<div class="io-line">Defined in <a href="" data-line="47" class="link-to-prism">projects/angular-resizable-element/src/lib/resize-handle.directive.ts:47</a></div>
211+
<div class="io-line">Defined in <a href="" data-line="48" class="link-to-prism">projects/angular-resizable-element/src/lib/resize-handle.directive.ts:48</a></div>
212212
</td>
213213
</tr>
214214
<tr>
@@ -240,7 +240,7 @@ <h3 id="inputs">Inputs</h3>
240240
</tr>
241241
<tr>
242242
<td class="col-md-2" colspan="2">
243-
<div class="io-line">Defined in <a href="" data-line="43" class="link-to-prism">projects/angular-resizable-element/src/lib/resize-handle.directive.ts:43</a></div>
243+
<div class="io-line">Defined in <a href="" data-line="44" class="link-to-prism">projects/angular-resizable-element/src/lib/resize-handle.directive.ts:44</a></div>
244244
</td>
245245
</tr>
246246
<tr>
@@ -276,6 +276,7 @@ <h3 id="inputs">Inputs</h3>
276276
import { takeUntil } from &#x27;rxjs/operators&#x27;;
277277
import { ResizableDirective } from &#x27;./resizable.directive&#x27;;
278278
import { Edges } from &#x27;./interfaces/edges.interface&#x27;;
279+
import { getListenOptions } from &#x27;./util/get-listen-options&#x27;;
279280
import { IS_TOUCH_DEVICE } from &#x27;./util/is-touch-device&#x27;;
280281

281282
/**
@@ -437,9 +438,11 @@ <h3 id="inputs">Inputs</h3>
437438
}
438439

439440
private listenOnTheHost&lt;T extends Event&gt;(eventName: string) {
440-
return fromEvent&lt;T&gt;(this.element.nativeElement, eventName).pipe(
441-
takeUntil(this.destroy$),
442-
);
441+
return fromEvent&lt;T&gt;(
442+
this.element.nativeElement,
443+
eventName,
444+
getListenOptions(eventName),
445+
).pipe(takeUntil(this.destroy$));
443446
}
444447
}
445448
</code></pre>

docs/js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/properties.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</ol>
103103
<ul class="properties-list">
104104
<li>
105-
<b>Version</b> : 8.0.1</li>
105+
<b>Version</b> : 8.0.2</li>
106106
<li>
107107
<b>Description</b> : An angular 20.0+ directive that allows an element to be dragged and resized</li>
108108
<li>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
<div class="container-fluid" id="demo">
3737
<mwl-demo>Loading demo...</mwl-demo>
3838
</div>
39-
<script src="polyfills-HRF5T3EB.js" type="module"></script><script src="main-LJIAGNRB.js" type="module"></script></body>
39+
<script src="polyfills-HRF5T3EB.js" type="module"></script><script src="main-2FNPO53J.js" type="module"></script></body>
4040
</html>

main-LJIAGNRB.js renamed to main-2FNPO53J.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)