@hmcts/ccd-case-ui-toolkit 7.3.52-exui-3740 → 7.3.52-exui-4297
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
|
@@ -2208,7 +2208,6 @@ declare class FieldsUtils {
|
|
|
2208
2208
|
static readonly SERVER_RESPONSE_FIELD_TYPE_COLLECTION = "Collection";
|
|
2209
2209
|
static readonly SERVER_RESPONSE_FIELD_TYPE_COMPLEX = "Complex";
|
|
2210
2210
|
static readonly SERVER_RESPONSE_FIELD_TYPE_DYNAMIC_LIST_TYPE: FieldTypeEnum[];
|
|
2211
|
-
static readonly SERVER_RESPONSE_FIELD_TYPE_DYNAMIC_MULTISELECT_LIST_TYPE: FieldTypeEnum;
|
|
2212
2211
|
static readonly defaultTabList: {
|
|
2213
2212
|
PRLAPPS: string;
|
|
2214
2213
|
};
|
|
@@ -2427,7 +2426,6 @@ declare class FieldTypeSanitiser {
|
|
|
2427
2426
|
sanitiseLists(caseFields: CaseField[], data: any): void;
|
|
2428
2427
|
ensureDynamicMultiSelectListPopulated(caseFields: CaseField[]): CaseField[];
|
|
2429
2428
|
private checkNestedDynamicList;
|
|
2430
|
-
private getFirstCollectionFieldData;
|
|
2431
2429
|
private isDynamicList;
|
|
2432
2430
|
private convertArrayToDynamicListOutput;
|
|
2433
2431
|
private convertStringToDynamicListOutput;
|
|
@@ -2475,8 +2473,7 @@ declare class FormValueService {
|
|
|
2475
2473
|
* @param clearEmpty Whether or not we should clear out empty, optional, complex objects.
|
|
2476
2474
|
* @param clearNonCase Whether or not we should clear out non-case fields at the top level.
|
|
2477
2475
|
*/
|
|
2478
|
-
removeUnnecessaryFields(data: object, caseFields: CaseField[], clearEmpty?: boolean, clearNonCase?: boolean, fromPreviousPage?: boolean, currentPageCaseFields?: any[]
|
|
2479
|
-
private shouldRemoveHiddenField;
|
|
2476
|
+
removeUnnecessaryFields(data: object, caseFields: CaseField[], clearEmpty?: boolean, clearNonCase?: boolean, fromPreviousPage?: boolean, currentPageCaseFields?: any[]): void;
|
|
2480
2477
|
removeInvalidCollectionData(data: object, field: CaseField): void;
|
|
2481
2478
|
/**
|
|
2482
2479
|
* Remove any empty collection fields where a value of greater than zero is specified in the field's {@link FieldType}
|