expedite-components 0.5.3 → 0.5.5
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.
|
@@ -6445,8 +6445,13 @@ const jt = lt("comConfigurator", () => {
|
|
|
6445
6445
|
}), O = de(() => {
|
|
6446
6446
|
if (!g.value)
|
|
6447
6447
|
return {};
|
|
6448
|
-
const P = (V) => !V || !Array.isArray(V) ? [] : V.
|
|
6449
|
-
|
|
6448
|
+
const P = (V) => !V || !Array.isArray(V) ? [] : V.map((te) => ({
|
|
6449
|
+
label: te.label,
|
|
6450
|
+
field: te.apiName,
|
|
6451
|
+
dataType: te.dataType,
|
|
6452
|
+
picklistValues: te.picklistValues,
|
|
6453
|
+
isEditable: te.editable,
|
|
6454
|
+
defaultValue: te.defaultValue,
|
|
6450
6455
|
value: te.dataType === "BOOLEAN" ? te.value ? "true" : "false" : te.dataType === "REFERENCE" ? te.referenceRecordId || te.value || "" : te.value || ""
|
|
6451
6456
|
})), H = {
|
|
6452
6457
|
itemId: g.value.itemId,
|