@flarehr/apollo-super-selection 5.0.47164 → 5.11.47776

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.
@@ -1,5 +1,5 @@
1
1
  export declare function isNullOrWhitespace(value: string | null): boolean;
2
- export declare const DisabledField: (name: string, value: string) => any;
2
+ export declare const DisabledField: (name: string, testId: string, value: string) => any;
3
3
  export declare const Header: () => any;
4
4
  export declare class Style {
5
5
  static Input(isValidated: boolean): {
@@ -1,9 +1,10 @@
1
1
  export declare const NAME_PATTERN = "[A-Za-z][A-Za-z']+(( |-)[A-Za-z][A-Za-z']+)*\\s*$";
2
2
  export declare abstract class FormField {
3
3
  readonly name: string;
4
+ readonly testId: string;
4
5
  private _value;
5
6
  private _errorMessage;
6
- protected constructor(name: string, value: string | null);
7
+ protected constructor(name: string, testId: string, value: string | null);
7
8
  get value(): string;
8
9
  set value(newValue: string);
9
10
  get isValid(): boolean;
@@ -13,9 +14,10 @@ export declare abstract class FormField {
13
14
  }
14
15
  export declare class StaticFormField {
15
16
  readonly name: string;
17
+ readonly testId: string;
16
18
  private readonly _value;
17
19
  private readonly _isValid;
18
- constructor(name: string, value: string | null, isValid: boolean);
20
+ constructor(name: string, testId: string, value: string | null, isValid: boolean);
19
21
  get value(): string;
20
22
  get isValid(): boolean;
21
23
  get isEmpty(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "5.0.47164",
3
+ "version": "5.11.47776",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",