@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.
- package/esm2022/lib/_internal/focusable-component.mjs +1 -3
- package/esm2022/lib/_internal/ngmodel-component.mjs +15 -3
- package/esm2022/lib/inputs/digit-input/digit-input.component.mjs +3 -6
- package/fesm2022/ardium-ui-ui.mjs +16 -9
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/_internal/focusable-component.d.ts +0 -1
- package/lib/_internal/ngmodel-component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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?;
|