@rxdi/forms 0.7.219 → 0.7.220

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.
@@ -51,6 +51,7 @@ export interface AbstractControl<T = any> {
51
51
  push?(control: AbstractControl): void;
52
52
  getFormElement?(): HTMLFormElement;
53
53
  patchValue?(value: T): void;
54
+ validationMessage?: string;
54
55
  get?(name: string): any;
55
56
  }
56
57
  export type ValidatorFn = (element: AbstractInput | HTMLInputElement) => Promise<InputErrorMessage | void> | InputErrorMessage | void;
@@ -70,7 +71,7 @@ export interface AbstractInput<T = any> extends HTMLInputElement {
70
71
  invalid?: boolean;
71
72
  dirty?: boolean;
72
73
  touched?: boolean;
73
- valueChanges?: Observable<any>;
74
+ valueChanges?: Observable<T>;
74
75
  }
75
76
  export declare const InputValidityState: {
76
77
  badInput: "badInput";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdi/forms",
3
- "version": "0.7.219",
3
+ "version": "0.7.220",
4
4
  "main": "./dist/index.js",
5
5
  "author": "Kristiyan Tachev",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "build": "tsc"
13
13
  },
14
14
  "devDependencies": {
15
- "@rxdi/lit-html": "^0.7.218",
15
+ "@rxdi/lit-html": "^0.7.219",
16
16
  "@types/node": "^25.0.3",
17
17
  "rxjs": "^7.8.2",
18
18
  "typescript": "^5.9.3"