analytica-frontend-lib 1.3.87 → 1.3.88

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.
@@ -6135,6 +6135,7 @@ var transformRecommendedClassToTableItem = (item) => {
6135
6135
  school: schoolName,
6136
6136
  year: "-",
6137
6137
  // API doesn't provide year directly
6138
+ creator: item.creator?.name || "-",
6138
6139
  subject: item.subject?.name || "-",
6139
6140
  class: classDisplay,
6140
6141
  status: determineRecommendedClassStatus(
@@ -7790,6 +7791,16 @@ var createTableColumns = (mapSubjectNameToEnum, onDeleteRecommendedClass, onEdit
7790
7791
  label: "Prazo",
7791
7792
  sortable: true
7792
7793
  },
7794
+ {
7795
+ key: "creator",
7796
+ label: "Autor",
7797
+ sortable: false,
7798
+ className: "max-w-[150px] truncate",
7799
+ render: (value) => {
7800
+ const name = typeof value === "string" ? value : "";
7801
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Text_default, { size: "sm", title: name, children: name });
7802
+ }
7803
+ },
7793
7804
  {
7794
7805
  key: "title",
7795
7806
  label: "T\xEDtulo",