@bsol-oss/react-datatable5 7.4.0 → 7.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.
package/dist/index.js CHANGED
@@ -12,13 +12,13 @@ var bi = require('react-icons/bi');
12
12
  var cg = require('react-icons/cg');
13
13
  var io = require('react-icons/io');
14
14
  var hi2 = require('react-icons/hi2');
15
- var hi = require('react-icons/hi');
16
15
  var reactTable = require('@tanstack/react-table');
17
16
  var matchSorterUtils = require('@tanstack/match-sorter-utils');
18
17
  var bs = require('react-icons/bs');
19
18
  var gr = require('react-icons/gr');
20
19
  var reactQuery = require('@tanstack/react-query');
21
20
  var io5 = require('react-icons/io5');
21
+ var hi = require('react-icons/hi');
22
22
  var adapter = require('@atlaskit/pragmatic-drag-and-drop/element/adapter');
23
23
  var invariant = require('tiny-invariant');
24
24
  var axios = require('axios');
@@ -612,24 +612,12 @@ const snakeToLabel = (str) => {
612
612
  .join(" "); // Join with space
613
613
  };
614
614
 
615
- const ToggleTip = React__namespace.forwardRef(function ToggleTip(props, ref) {
616
- const { showArrow, children, portalled = true, content, portalRef, ...rest } = props;
617
- return (jsxRuntime.jsxs(react.Popover.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [jsxRuntime.jsx(react.Popover.Trigger, { asChild: true, children: children }), jsxRuntime.jsx(react.Portal, { disabled: !portalled, container: portalRef, children: jsxRuntime.jsx(react.Popover.Positioner, { children: jsxRuntime.jsxs(react.Popover.Content, { width: "auto", px: "2", py: "1", textStyle: "xs", rounded: "sm", ref: ref, children: [showArrow && (jsxRuntime.jsx(react.Popover.Arrow, { children: jsxRuntime.jsx(react.Popover.ArrowTip, {}) })), content] }) }) })] }));
618
- });
619
- const InfoTip = React__namespace.forwardRef(function InfoTip(props, ref) {
620
- const { children, ...rest } = props;
621
- return (jsxRuntime.jsx(ToggleTip, { content: children, ...rest, ref: ref, children: jsxRuntime.jsx(react.IconButton, { variant: "ghost", "aria-label": "info", size: "2xs", colorPalette: "gray", children: jsxRuntime.jsx(hi.HiOutlineInformationCircle, {}) }) }));
622
- });
623
-
624
- const DataListRoot = react.DataList.Root;
625
- const DataListItem = React__namespace.forwardRef(function DataListItem(props, ref) {
626
- const { label, info, value, children, grow, ...rest } = props;
627
- return (jsxRuntime.jsxs(react.DataList.Item, { ref: ref, ...rest, children: [jsxRuntime.jsxs(react.DataList.ItemLabel, { flex: grow ? "1" : undefined, children: [label, info && jsxRuntime.jsx(InfoTip, { children: info })] }), jsxRuntime.jsx(react.DataList.ItemValue, { flex: grow ? "1" : undefined, children: value }), children] }));
628
- });
629
-
630
- const RecordDisplay = ({ object, dataListProps, }) => {
631
- return (jsxRuntime.jsx(DataListRoot, { gap: 4, padding: 4, display: "grid", variant: "subtle", orientation: "horizontal", overflow: "auto", ...dataListProps, children: Object.entries(object).map(([field, value]) => {
632
- return (jsxRuntime.jsx(DataListItem, { label: snakeToLabel(field), value: JSON.stringify(value) }, field));
615
+ const RecordDisplay = ({ object, boxProps }) => {
616
+ if (object === null) {
617
+ return jsxRuntime.jsx(jsxRuntime.Fragment, { children: "null" });
618
+ }
619
+ return (jsxRuntime.jsx(react.Box, { rowGap: 1, columnGap: 2, display: "grid", gridTemplateColumns: "auto 1fr", overflow: "auto", ...boxProps, children: Object.entries(object).map(([field, value]) => {
620
+ return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(react.Text, { color: "gray.400", children: snakeToLabel(field) }), jsxRuntime.jsx(react.Text, { children: typeof value === "object" ? JSON.stringify(value) : value })] }));
633
621
  }) }));
634
622
  };
635
623
 
@@ -655,7 +643,13 @@ const DataDisplay = ({ variant = "" }) => {
655
643
  return (jsxRuntime.jsx(react.Card.Root, { children: jsxRuntime.jsx(react.Card.Body, { children: jsxRuntime.jsx(react.DataList.Root, { gap: 4, padding: 4, display: "grid", variant: "subtle", orientation: "horizontal", overflow: "auto", children: row.getVisibleCells().map((cell) => {
656
644
  const value = cell.getValue();
657
645
  if (typeof value === "object") {
658
- return jsxRuntime.jsx(RecordDisplay, { object: value });
646
+ return (jsxRuntime.jsxs(react.DataList.Item, { children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(RecordDisplay, { boxProps: {
647
+ borderWidth: 1,
648
+ borderRadius: 4,
649
+ borderColor: "gray.400",
650
+ paddingX: 4,
651
+ paddingY: 2,
652
+ }, object: value })] }, cell.id));
659
653
  }
660
654
  return (jsxRuntime.jsxs(react.DataList.Item, { children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(react.DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
661
655
  }) }) }) }, `chakra-table-card-${row.id}`));
@@ -664,12 +658,32 @@ const DataDisplay = ({ variant = "" }) => {
664
658
  if (variant == "stats") {
665
659
  return (jsxRuntime.jsx(react.Flex, { flexFlow: "column", gap: "1", children: table.getRowModel().rows.map((row) => {
666
660
  return (jsxRuntime.jsx(react.Card.Root, { children: jsxRuntime.jsx(react.Card.Body, { children: jsxRuntime.jsx(react.DataList.Root, { gap: 4, padding: 4, display: "flex", flexFlow: "row", variant: "subtle", overflow: "auto", children: row.getVisibleCells().map((cell) => {
661
+ const value = cell.getValue();
662
+ if (typeof value === "object") {
663
+ return (jsxRuntime.jsxs(react.DataList.Item, { display: "inline-flex", flexFlow: "column", justifyContent: "center", alignItems: "center", flex: "1 0 0%", children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(RecordDisplay, { boxProps: {
664
+ borderWidth: 1,
665
+ borderRadius: 4,
666
+ borderColor: "gray.400",
667
+ paddingX: 4,
668
+ paddingY: 2,
669
+ }, object: value })] }));
670
+ }
667
671
  return (jsxRuntime.jsxs(react.DataList.Item, { display: "flex", justifyContent: "center", alignItems: "center", flex: "1 0 0%", children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(react.DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
668
672
  }) }) }) }, `chakra-table-card-${row.id}`));
669
673
  }) }));
670
674
  }
671
675
  return (jsxRuntime.jsx(react.Flex, { flexFlow: "column", gap: "1", children: table.getRowModel().rows.map((row) => {
672
676
  return (jsxRuntime.jsx(react.Card.Root, { children: jsxRuntime.jsx(react.Card.Body, { children: jsxRuntime.jsx(react.DataList.Root, { gap: 4, padding: 4, display: "grid", variant: "subtle", gridTemplateColumns: "repeat(auto-fit, minmax(20rem, 1fr))", children: row.getVisibleCells().map((cell) => {
677
+ const value = cell.getValue();
678
+ if (typeof value === "object") {
679
+ return (jsxRuntime.jsxs(react.DataList.Item, { children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(RecordDisplay, { boxProps: {
680
+ borderWidth: 1,
681
+ borderRadius: 4,
682
+ borderColor: "gray.400",
683
+ paddingX: 4,
684
+ paddingY: 2,
685
+ }, object: value })] }, cell.id));
686
+ }
673
687
  return (jsxRuntime.jsxs(react.DataList.Item, { children: [jsxRuntime.jsx(react.DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsxRuntime.jsx(react.DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
674
688
  }) }) }) }, `chakra-table-card-${row.id}`));
675
689
  }) }));
@@ -1803,6 +1817,21 @@ const IdPicker = ({ column, in_table, column_ref, display_column, isMultiple = f
1803
1817
  }, children: showMore ?? "Show More" }) }))] })] }) })] }), errors[`${column}`] && (jsxRuntime.jsx(react.Text, { color: "red.400", children: fieldRequired ?? "The field is requried" }))] }));
1804
1818
  };
1805
1819
 
1820
+ const ToggleTip = React__namespace.forwardRef(function ToggleTip(props, ref) {
1821
+ const { showArrow, children, portalled = true, content, portalRef, ...rest } = props;
1822
+ return (jsxRuntime.jsxs(react.Popover.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [jsxRuntime.jsx(react.Popover.Trigger, { asChild: true, children: children }), jsxRuntime.jsx(react.Portal, { disabled: !portalled, container: portalRef, children: jsxRuntime.jsx(react.Popover.Positioner, { children: jsxRuntime.jsxs(react.Popover.Content, { width: "auto", px: "2", py: "1", textStyle: "xs", rounded: "sm", ref: ref, children: [showArrow && (jsxRuntime.jsx(react.Popover.Arrow, { children: jsxRuntime.jsx(react.Popover.ArrowTip, {}) })), content] }) }) })] }));
1823
+ });
1824
+ const InfoTip = React__namespace.forwardRef(function InfoTip(props, ref) {
1825
+ const { children, ...rest } = props;
1826
+ return (jsxRuntime.jsx(ToggleTip, { content: children, ...rest, ref: ref, children: jsxRuntime.jsx(react.IconButton, { variant: "ghost", "aria-label": "info", size: "2xs", colorPalette: "gray", children: jsxRuntime.jsx(hi.HiOutlineInformationCircle, {}) }) }));
1827
+ });
1828
+
1829
+ const DataListRoot = react.DataList.Root;
1830
+ const DataListItem = React__namespace.forwardRef(function DataListItem(props, ref) {
1831
+ const { label, info, value, children, grow, ...rest } = props;
1832
+ return (jsxRuntime.jsxs(react.DataList.Item, { ref: ref, ...rest, children: [jsxRuntime.jsxs(react.DataList.ItemLabel, { flex: grow ? "1" : undefined, children: [label, info && jsxRuntime.jsx(InfoTip, { children: info })] }), jsxRuntime.jsx(react.DataList.ItemValue, { flex: grow ? "1" : undefined, children: value }), children] }));
1833
+ });
1834
+
1806
1835
  const IdViewer = ({ value, in_table, column_ref, display_column, column, }) => {
1807
1836
  const { schema, serverUrl } = useSchemaContext();
1808
1837
  if (schema.properties == undefined) {
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
2
- import { Button as Button$1, AbsoluteCenter, Spinner, Span, IconButton, Portal, Dialog, RadioGroup as RadioGroup$1, Grid, Box, Slider as Slider$1, HStack, For, Flex, Text, Tag as Tag$1, Input, useDisclosure, DialogBackdrop, Menu, createRecipeContext, createContext as createContext$1, Pagination, usePaginationContext, Image, Popover, DataList, Card, Checkbox as Checkbox$1, Table as Table$1, Tooltip as Tooltip$1, Icon, MenuRoot as MenuRoot$1, MenuTrigger as MenuTrigger$1, EmptyState as EmptyState$2, VStack, List, CheckboxCard as CheckboxCard$1, Alert, Group, InputElement, Field as Field$1, NumberInput, Accordion, Show, RadioCard, CheckboxGroup, Heading, Center } from '@chakra-ui/react';
2
+ import { Button as Button$1, AbsoluteCenter, Spinner, Span, IconButton, Portal, Dialog, RadioGroup as RadioGroup$1, Grid, Box, Slider as Slider$1, HStack, For, Flex, Text, Tag as Tag$1, Input, useDisclosure, DialogBackdrop, Menu, createRecipeContext, createContext as createContext$1, Pagination, usePaginationContext, Image, Card, DataList, Checkbox as Checkbox$1, Table as Table$1, Tooltip as Tooltip$1, Icon, MenuRoot as MenuRoot$1, MenuTrigger as MenuTrigger$1, EmptyState as EmptyState$2, VStack, List, CheckboxCard as CheckboxCard$1, Alert, Group, InputElement, Popover, Field as Field$1, NumberInput, Accordion, Show, RadioCard, CheckboxGroup, Heading, Center } from '@chakra-ui/react';
3
3
  import { AiOutlineColumnWidth } from 'react-icons/ai';
4
4
  import * as React from 'react';
5
5
  import React__default, { createContext, useContext, useState, useEffect, useRef, useMemo } from 'react';
@@ -11,13 +11,13 @@ import { BiDownArrow, BiUpArrow } from 'react-icons/bi';
11
11
  import { CgClose } from 'react-icons/cg';
12
12
  import { IoMdEye, IoMdCheckbox } from 'react-icons/io';
13
13
  import { HiMiniEllipsisHorizontal, HiChevronLeft, HiChevronRight } from 'react-icons/hi2';
14
- import { HiOutlineInformationCircle, HiColorSwatch } from 'react-icons/hi';
15
14
  import { makeStateUpdater, functionalUpdate, useReactTable, getCoreRowModel, getFilteredRowModel, getSortedRowModel, getPaginationRowModel, flexRender, createColumnHelper } from '@tanstack/react-table';
16
15
  import { rankItem } from '@tanstack/match-sorter-utils';
17
16
  import { BsExclamationCircleFill } from 'react-icons/bs';
18
17
  import { GrAscend, GrDescend } from 'react-icons/gr';
19
18
  import { useQueryClient, useQuery, QueryClient, QueryClientProvider } from '@tanstack/react-query';
20
19
  import { IoReload } from 'react-icons/io5';
20
+ import { HiColorSwatch, HiOutlineInformationCircle } from 'react-icons/hi';
21
21
  import { monitorForElements, draggable, dropTargetForElements } from '@atlaskit/pragmatic-drag-and-drop/element/adapter';
22
22
  import invariant from 'tiny-invariant';
23
23
  import axios from 'axios';
@@ -592,24 +592,12 @@ const snakeToLabel = (str) => {
592
592
  .join(" "); // Join with space
593
593
  };
594
594
 
595
- const ToggleTip = React.forwardRef(function ToggleTip(props, ref) {
596
- const { showArrow, children, portalled = true, content, portalRef, ...rest } = props;
597
- return (jsxs(Popover.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [jsx(Popover.Trigger, { asChild: true, children: children }), jsx(Portal, { disabled: !portalled, container: portalRef, children: jsx(Popover.Positioner, { children: jsxs(Popover.Content, { width: "auto", px: "2", py: "1", textStyle: "xs", rounded: "sm", ref: ref, children: [showArrow && (jsx(Popover.Arrow, { children: jsx(Popover.ArrowTip, {}) })), content] }) }) })] }));
598
- });
599
- const InfoTip = React.forwardRef(function InfoTip(props, ref) {
600
- const { children, ...rest } = props;
601
- return (jsx(ToggleTip, { content: children, ...rest, ref: ref, children: jsx(IconButton, { variant: "ghost", "aria-label": "info", size: "2xs", colorPalette: "gray", children: jsx(HiOutlineInformationCircle, {}) }) }));
602
- });
603
-
604
- const DataListRoot = DataList.Root;
605
- const DataListItem = React.forwardRef(function DataListItem(props, ref) {
606
- const { label, info, value, children, grow, ...rest } = props;
607
- return (jsxs(DataList.Item, { ref: ref, ...rest, children: [jsxs(DataList.ItemLabel, { flex: grow ? "1" : undefined, children: [label, info && jsx(InfoTip, { children: info })] }), jsx(DataList.ItemValue, { flex: grow ? "1" : undefined, children: value }), children] }));
608
- });
609
-
610
- const RecordDisplay = ({ object, dataListProps, }) => {
611
- return (jsx(DataListRoot, { gap: 4, padding: 4, display: "grid", variant: "subtle", orientation: "horizontal", overflow: "auto", ...dataListProps, children: Object.entries(object).map(([field, value]) => {
612
- return (jsx(DataListItem, { label: snakeToLabel(field), value: JSON.stringify(value) }, field));
595
+ const RecordDisplay = ({ object, boxProps }) => {
596
+ if (object === null) {
597
+ return jsx(Fragment, { children: "null" });
598
+ }
599
+ return (jsx(Box, { rowGap: 1, columnGap: 2, display: "grid", gridTemplateColumns: "auto 1fr", overflow: "auto", ...boxProps, children: Object.entries(object).map(([field, value]) => {
600
+ return (jsxs(Fragment, { children: [jsx(Text, { color: "gray.400", children: snakeToLabel(field) }), jsx(Text, { children: typeof value === "object" ? JSON.stringify(value) : value })] }));
613
601
  }) }));
614
602
  };
615
603
 
@@ -635,7 +623,13 @@ const DataDisplay = ({ variant = "" }) => {
635
623
  return (jsx(Card.Root, { children: jsx(Card.Body, { children: jsx(DataList.Root, { gap: 4, padding: 4, display: "grid", variant: "subtle", orientation: "horizontal", overflow: "auto", children: row.getVisibleCells().map((cell) => {
636
624
  const value = cell.getValue();
637
625
  if (typeof value === "object") {
638
- return jsx(RecordDisplay, { object: value });
626
+ return (jsxs(DataList.Item, { children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(RecordDisplay, { boxProps: {
627
+ borderWidth: 1,
628
+ borderRadius: 4,
629
+ borderColor: "gray.400",
630
+ paddingX: 4,
631
+ paddingY: 2,
632
+ }, object: value })] }, cell.id));
639
633
  }
640
634
  return (jsxs(DataList.Item, { children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
641
635
  }) }) }) }, `chakra-table-card-${row.id}`));
@@ -644,12 +638,32 @@ const DataDisplay = ({ variant = "" }) => {
644
638
  if (variant == "stats") {
645
639
  return (jsx(Flex, { flexFlow: "column", gap: "1", children: table.getRowModel().rows.map((row) => {
646
640
  return (jsx(Card.Root, { children: jsx(Card.Body, { children: jsx(DataList.Root, { gap: 4, padding: 4, display: "flex", flexFlow: "row", variant: "subtle", overflow: "auto", children: row.getVisibleCells().map((cell) => {
641
+ const value = cell.getValue();
642
+ if (typeof value === "object") {
643
+ return (jsxs(DataList.Item, { display: "inline-flex", flexFlow: "column", justifyContent: "center", alignItems: "center", flex: "1 0 0%", children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(RecordDisplay, { boxProps: {
644
+ borderWidth: 1,
645
+ borderRadius: 4,
646
+ borderColor: "gray.400",
647
+ paddingX: 4,
648
+ paddingY: 2,
649
+ }, object: value })] }));
650
+ }
647
651
  return (jsxs(DataList.Item, { display: "flex", justifyContent: "center", alignItems: "center", flex: "1 0 0%", children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
648
652
  }) }) }) }, `chakra-table-card-${row.id}`));
649
653
  }) }));
650
654
  }
651
655
  return (jsx(Flex, { flexFlow: "column", gap: "1", children: table.getRowModel().rows.map((row) => {
652
656
  return (jsx(Card.Root, { children: jsx(Card.Body, { children: jsx(DataList.Root, { gap: 4, padding: 4, display: "grid", variant: "subtle", gridTemplateColumns: "repeat(auto-fit, minmax(20rem, 1fr))", children: row.getVisibleCells().map((cell) => {
657
+ const value = cell.getValue();
658
+ if (typeof value === "object") {
659
+ return (jsxs(DataList.Item, { children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(RecordDisplay, { boxProps: {
660
+ borderWidth: 1,
661
+ borderRadius: 4,
662
+ borderColor: "gray.400",
663
+ paddingX: 4,
664
+ paddingY: 2,
665
+ }, object: value })] }, cell.id));
666
+ }
653
667
  return (jsxs(DataList.Item, { children: [jsx(DataList.ItemLabel, { children: snakeToLabel(cell.column.id) }), jsx(DataList.ItemValue, { wordBreak: "break-word", textOverflow: "ellipsis", overflow: "hidden", children: `${formatValue(cell.getValue())}` })] }, cell.id));
654
668
  }) }) }) }, `chakra-table-card-${row.id}`));
655
669
  }) }));
@@ -1783,6 +1797,21 @@ const IdPicker = ({ column, in_table, column_ref, display_column, isMultiple = f
1783
1797
  }, children: showMore ?? "Show More" }) }))] })] }) })] }), errors[`${column}`] && (jsx(Text, { color: "red.400", children: fieldRequired ?? "The field is requried" }))] }));
1784
1798
  };
1785
1799
 
1800
+ const ToggleTip = React.forwardRef(function ToggleTip(props, ref) {
1801
+ const { showArrow, children, portalled = true, content, portalRef, ...rest } = props;
1802
+ return (jsxs(Popover.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [jsx(Popover.Trigger, { asChild: true, children: children }), jsx(Portal, { disabled: !portalled, container: portalRef, children: jsx(Popover.Positioner, { children: jsxs(Popover.Content, { width: "auto", px: "2", py: "1", textStyle: "xs", rounded: "sm", ref: ref, children: [showArrow && (jsx(Popover.Arrow, { children: jsx(Popover.ArrowTip, {}) })), content] }) }) })] }));
1803
+ });
1804
+ const InfoTip = React.forwardRef(function InfoTip(props, ref) {
1805
+ const { children, ...rest } = props;
1806
+ return (jsx(ToggleTip, { content: children, ...rest, ref: ref, children: jsx(IconButton, { variant: "ghost", "aria-label": "info", size: "2xs", colorPalette: "gray", children: jsx(HiOutlineInformationCircle, {}) }) }));
1807
+ });
1808
+
1809
+ const DataListRoot = DataList.Root;
1810
+ const DataListItem = React.forwardRef(function DataListItem(props, ref) {
1811
+ const { label, info, value, children, grow, ...rest } = props;
1812
+ return (jsxs(DataList.Item, { ref: ref, ...rest, children: [jsxs(DataList.ItemLabel, { flex: grow ? "1" : undefined, children: [label, info && jsx(InfoTip, { children: info })] }), jsx(DataList.ItemValue, { flex: grow ? "1" : undefined, children: value }), children] }));
1813
+ });
1814
+
1786
1815
  const IdViewer = ({ value, in_table, column_ref, display_column, column, }) => {
1787
1816
  const { schema, serverUrl } = useSchemaContext();
1788
1817
  if (schema.properties == undefined) {
@@ -1,6 +1,6 @@
1
- import { DataListRootProps } from "@chakra-ui/react";
1
+ import { BoxProps } from "@chakra-ui/react";
2
2
  export interface RecordDisplayProps {
3
- object: Record<string, string>;
4
- dataListProps?: DataListRootProps;
3
+ object: object | null;
4
+ boxProps?: BoxProps;
5
5
  }
6
- export declare const RecordDisplay: ({ object, dataListProps, }: RecordDisplayProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const RecordDisplay: ({ object, boxProps }: RecordDisplayProps) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsol-oss/react-datatable5",
3
- "version": "7.4.0",
3
+ "version": "7.4.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",