@exxatdesignux/ui 0.4.1 → 0.5.0

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
@@ -6375,11 +6375,12 @@ function HubTable({
6375
6375
  for (const v of supportedViewTypes) {
6376
6376
  const kind = getDataListViewRenderKind(v);
6377
6377
  if (kind === "data-table") continue;
6378
- if (renderers[kind] == null) {
6379
- console.warn(
6380
- `[Exxat DS][HubTable: ${hubLabel}] Missing renderer for supported view "${v}" (${kind}). Add a renderer entry, or remove the view from supportedViewTypes.`
6381
- );
6382
- }
6378
+ if (renderers[kind] != null) continue;
6379
+ if (kind === "list-with-toolbar" && renderListRow != null) continue;
6380
+ if (kind === "board-with-toolbar" && renderBoardCard != null && boardGroups != null) continue;
6381
+ console.warn(
6382
+ `[Exxat DS][HubTable: ${hubLabel}] Missing renderer for supported view "${v}" (${kind}). Add a renderer entry, or remove the view from supportedViewTypes.`
6383
+ );
6383
6384
  }
6384
6385
  }
6385
6386
  const composed = {