@ethlete/cdk 4.0.4 → 4.1.0

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.
@@ -13,6 +13,7 @@ export declare class InputDirective<T = unknown, J extends HTMLInputElement | HT
13
13
  private readonly _autofillMonitor;
14
14
  private readonly _focusMonitor;
15
15
  private readonly _elementRef;
16
+ protected _neverEmptyInputs: string[];
16
17
  private _implicitControl?;
17
18
  private get control();
18
19
  private readonly _id;
@@ -48,6 +49,8 @@ export declare class InputDirective<T = unknown, J extends HTMLInputElement | HT
48
49
  get isFocusedVia(): "touch" | "mouse" | "keyboard" | "program" | null;
49
50
  get errorId$(): Observable<string | null>;
50
51
  get errorId(): string | null;
52
+ get isNeverEmptyInput$(): Observable<boolean>;
53
+ get isNeverEmptyInput(): boolean;
51
54
  readonly describedBy$: Observable<string | null>;
52
55
  readonly onInternalUpdate$: Observable<import("../../types").InputValueUpdateType | null>;
53
56
  readonly onExternalUpdate$: Observable<import("../../types").InputValueUpdateType | null>;
@@ -21,6 +21,8 @@ export declare class InputStateService<T = unknown, J extends HTMLInputElement |
21
21
  readonly usesImplicitControl: import("@angular/core").Signal<boolean>;
22
22
  readonly nativeInputRef$: BehaviorSubject<NativeInputRefDirective<J> | null>;
23
23
  readonly nativeInputRef: import("@angular/core").Signal<NativeInputRefDirective<J> | null>;
24
+ readonly isNeverEmptyInput$: BehaviorSubject<boolean>;
25
+ readonly isNeverEmptyInput: import("@angular/core").Signal<boolean>;
24
26
  readonly autofilled$: BehaviorSubject<boolean>;
25
27
  readonly autofilled: import("@angular/core").Signal<boolean>;
26
28
  readonly valueIsTruthy$: Observable<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/cdk",
3
- "version": "4.0.4",
3
+ "version": "4.1.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "css": "./src/lib/styles/index.css",