@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 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
- description: J.reduce((re, ne) => re == null ? void 0 : re[ne], te)
11951
- })).filter((te) => typeof te.id == "string" && typeof te.description == "string").reduce(
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 {