@fundamental-ngx/cdk 0.62.4-rc.9 → 0.62.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1167,6 +1167,13 @@ declare class AutoCompleteDirective {
|
|
|
1167
1167
|
private lastKeyUpEvent;
|
|
1168
1168
|
/** @hidden */
|
|
1169
1169
|
private _isComposing;
|
|
1170
|
+
/**
|
|
1171
|
+
* Tracks the intended user-typed value, derived from native `input` events.
|
|
1172
|
+
* When Angular's NgModel re-pushes a stale value (e.g. after Ctrl+A → Delete),
|
|
1173
|
+
* the DOM may contain the old model value when the user types the next character.
|
|
1174
|
+
* We reconstruct the intended value using the cursor position and typed character.
|
|
1175
|
+
*/
|
|
1176
|
+
private _lastInputEventValue;
|
|
1170
1177
|
/** @hidden */
|
|
1171
1178
|
private readonly _elementRef;
|
|
1172
1179
|
/** @hidden */
|