@uxland/primary-shell 5.3.2 → 5.3.3
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/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/primary/shell/src/internal-plugins/activity-history/activity-history-item/selectors.d.ts +4 -4
- package/dist/primary/shell/src/internal-plugins/activity-history/utils/get-unique-values-by-prop-path.d.ts +1 -1
- package/package.json +1 -1
- package/src/internal-plugins/activity-history/utils/get-unique-values-by-prop-path.test.ts +6 -6
- package/src/internal-plugins/activity-history/utils/get-unique-values-by-prop-path.ts +4 -7
package/dist/index.js
CHANGED
|
@@ -11947,11 +11947,8 @@ function getUniqueObjects(X, W, J) {
|
|
|
11947
11947
|
return Array.from(
|
|
11948
11948
|
X.map((te) => ({
|
|
11949
11949
|
id: W.reduce((re, ne) => re == null ? void 0 : re[ne], te),
|
|
11950
|
-
|
|
11951
|
-
})).filter((te) => typeof te.id == "string" && typeof te.
|
|
11952
|
-
(te, re) => te.set(re.id, re),
|
|
11953
|
-
/* @__PURE__ */ new Map()
|
|
11954
|
-
).values()
|
|
11950
|
+
title: J.reduce((re, ne) => re == null ? void 0 : re[ne], te)
|
|
11951
|
+
})).filter((te) => typeof te.id == "string" && typeof te.title == "string").reduce((te, re) => te.set(re.id, re), /* @__PURE__ */ new Map()).values()
|
|
11955
11952
|
);
|
|
11956
11953
|
}
|
|
11957
11954
|
class TrueSpec extends Spec {
|