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