@overmap-ai/forms 1.0.36-add-utils.1 → 1.0.36-add-utils.2

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.
@@ -19,8 +19,6 @@ export declare class CheckboxListField extends BaseOptionsField<"checkbox-list",
19
19
  render(props: FieldRenderProps): ReactNode;
20
20
  isSerializedValueValid(value: unknown): value is string[];
21
21
  isValueValid(value: unknown): value is string[];
22
- cleanValue(value: string[]): string[];
23
- cleanSerializedValue(value: string[]): string[];
24
22
  blankValue(): string[];
25
23
  blankSerializedValue(): string[];
26
24
  areSerializedValuesEqual(value1: string[], value2: string[]): boolean;
@@ -22,8 +22,6 @@ export declare class MultiSelectField extends BaseOptionsField<"multi-select", s
22
22
  isSerializedValueValid(value: unknown): value is string[];
23
23
  isValueValid(value: unknown): value is string[];
24
24
  blankValue(): string[];
25
- cleanValue(value: string[]): string[];
26
- cleanSerializedValue(value: string[]): string[];
27
25
  areValuesEqual(value1: string[], value2: string[]): boolean;
28
26
  blankSerializedValue(): string[];
29
27
  areSerializedValuesEqual(value1: string[], value2: string[]): boolean;
@@ -27,6 +27,7 @@ export declare class PassFailField extends BaseField<"pass-fail", PassFailFieldV
27
27
  areValuesEqual(value1: PassFailFieldValue, value2: PassFailFieldValue): boolean;
28
28
  blankValue(): PassFailFieldValue;
29
29
  cleanValue(value: PassFailFieldValue): PassFailFieldValue;
30
+ cleanSerializedValue(value: SerializedPassFailFieldValue): SerializedPassFailFieldValue;
30
31
  blankSerializedValue(): SerializedPassFailFieldValue;
31
32
  areSerializedValuesEqual(value1: SerializedPassFailFieldValue, value2: SerializedPassFailFieldValue): boolean;
32
33
  }
@@ -21,8 +21,6 @@ export declare class RadioField extends BaseOptionsField<"radio", string | null,
21
21
  isSerializedValueValid(value: unknown): value is string | null;
22
22
  isValueValid(value: unknown): value is string | null;
23
23
  blankValue(): string | null;
24
- cleanValue(value: string | null): string | null;
25
- cleanSerializedValue(value: string | null): string | null;
26
24
  areValuesEqual(value1: string | null, value2: string | null): boolean;
27
25
  blankSerializedValue(): string | null;
28
26
  areSerializedValuesEqual(value1: string | null, value2: string | null): boolean;
@@ -22,8 +22,6 @@ export declare class SelectField extends BaseOptionsField<"select", string | nul
22
22
  isSerializedValueValid(value: unknown): value is string | null;
23
23
  isValueValid(value: unknown): value is string | null;
24
24
  blankValue(): string | null;
25
- cleanValue(value: string | null): string | null;
26
- cleanSerializedValue(value: string | null): string | null;
27
25
  areValuesEqual(value1: string | null, value2: string | null): boolean;
28
26
  blankSerializedValue(): string | null;
29
27
  areSerializedValuesEqual(value1: string | null, value2: string | null): boolean;