@exxatdesignux/ui 0.4.0 → 0.4.2

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.
@@ -5743,11 +5743,12 @@ function HubTable({
5743
5743
  for (const v of supportedViewTypes) {
5744
5744
  const kind = getDataListViewRenderKind(v);
5745
5745
  if (kind === "data-table") continue;
5746
- if (renderers[kind] == null) {
5747
- console.warn(
5748
- `[Exxat DS][HubTable: ${hubLabel}] Missing renderer for supported view "${v}" (${kind}). Add a renderer entry, or remove the view from supportedViewTypes.`
5749
- );
5750
- }
5746
+ if (renderers[kind] != null) continue;
5747
+ if (kind === "list-with-toolbar" && renderListRow != null) continue;
5748
+ if (kind === "board-with-toolbar" && renderBoardCard != null && boardGroups != null) continue;
5749
+ console.warn(
5750
+ `[Exxat DS][HubTable: ${hubLabel}] Missing renderer for supported view "${v}" (${kind}). Add a renderer entry, or remove the view from supportedViewTypes.`
5751
+ );
5751
5752
  }
5752
5753
  }
5753
5754
  const composed = {