@hybridcore/ui 1.5.19 → 1.5.21

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.
@@ -22,7 +22,7 @@ const j = [
22
22
  const u = x(e).format("DD/MM/YYYY");
23
23
  return /* @__PURE__ */ o(i, { title: r, value: u });
24
24
  }, c = ({ title: r, value: e }) => {
25
- const u = e.join(", ");
25
+ const u = (e ?? []).join(", ");
26
26
  return /* @__PURE__ */ o(i, { title: r, value: u });
27
27
  };
28
28
  function P({
package/dist/main.d.ts CHANGED
@@ -427,7 +427,7 @@ declare interface InstanceTableProps {
427
427
 
428
428
  export declare const InstanceVariableList: FC<InstanceVariableListProps>;
429
429
 
430
- declare interface InstanceVariableListProps {
430
+ export declare interface InstanceVariableListProps {
431
431
  template: ONTOLOGY.TemplateType;
432
432
  data: INSTANCE.InstanceType;
433
433
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hybridcore/ui",
3
3
  "description": "Hybrid Core UI Library",
4
- "version": "1.5.19",
4
+ "version": "1.5.21",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",