@ardium-ui/ui 3.3.0-alpha.6 → 3.3.0-alpha.7

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.
@@ -40,7 +40,6 @@ export declare abstract class _FocusableComponentBase extends _DisablableCompone
40
40
  * Whether the component is currently focused.
41
41
  */
42
42
  readonly isFocused: import("@angular/core").WritableSignal<boolean>;
43
- readonly wasTouched: import("@angular/core").WritableSignal<boolean>;
44
43
  /**
45
44
  * Function to handle when an element is focused. Sets `isFocused` and fires the `focus` event.
46
45
  * @param event The focus event to emit.
@@ -42,6 +42,9 @@ export declare abstract class _NgModelComponentBase extends _FocusableComponentB
42
42
  * @param v The new value to write.
43
43
  */
44
44
  protected abstract _emitChange(): void;
45
+ readonly wasTouched: import("@angular/core").WritableSignal<boolean>;
46
+ onFocus(event: FocusEvent): void;
47
+ private _shouldEmitTouched;
45
48
  onBlur(event: FocusEvent): void;
46
49
  protected readonly _injector: Injector;
47
50
  private _statusChangesSub?;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ardium-ui/ui",
3
- "version": "3.3.0-alpha.6",
3
+ "version": "3.3.0-alpha.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",