@hmcts/ccd-case-ui-toolkit 7.3.86-exui-2837 → 7.3.86

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/index.d.ts CHANGED
@@ -1329,7 +1329,6 @@ declare class WorkbasketInputModel implements Orderable {
1329
1329
  label: string;
1330
1330
  order: number;
1331
1331
  field: Field;
1332
- dataType?: string;
1333
1332
  metadata?: boolean;
1334
1333
  display_context_parameter?: string;
1335
1334
  }
@@ -2245,7 +2244,6 @@ declare class FieldsUtils {
2245
2244
  static createToken(): string;
2246
2245
  static isTranslatable(fieldType: FieldType): boolean;
2247
2246
  static convertToCaseField(obj: any): CaseField;
2248
- static buildFieldId(fieldId: string, elementPath?: string, dataType?: string): string;
2249
2247
  static toValuesMap(caseFields: CaseField[]): any;
2250
2248
  static isObject(elem: any): boolean;
2251
2249
  static isNonEmptyObject(elem: any): boolean;
@@ -2719,8 +2717,7 @@ declare class SearchInput implements Orderable {
2719
2717
  field: Field;
2720
2718
  metadata?: boolean;
2721
2719
  display_context_parameter?: string;
2722
- dataType?: string;
2723
- constructor(label: string, order: number, field: Field, metadata?: boolean, display_context_parameter?: string, dataType?: string);
2720
+ constructor(label: string, order: number, field: Field, metadata?: boolean, display_context_parameter?: string);
2724
2721
  }
2725
2722
 
2726
2723
  declare class WindowService {