@luscii-healthtech/web-ui 0.5.1 → 0.5.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.
@@ -6,7 +6,7 @@ export interface TableProps<Item> extends React.HTMLAttributes<HTMLTableElement>
6
6
  fieldConfigurations: TableFieldConfig<Item>[];
7
7
  emptyRowsText: string;
8
8
  emptyFieldContentText?: string;
9
- isLoading: boolean;
9
+ isLoading?: boolean;
10
10
  showHeader?: boolean;
11
11
  paginationMenuProps?: PaginationMenuProps;
12
12
  onRowClick?: (item: Item) => void;
@@ -1819,6 +1819,10 @@ video {
1819
1819
  overflow-wrap: break-word;
1820
1820
  }
1821
1821
 
1822
+ .break-all {
1823
+ word-break: break-all;
1824
+ }
1825
+
1822
1826
  .truncate {
1823
1827
  overflow: hidden;
1824
1828
  text-overflow: ellipsis;
@@ -2082,7 +2082,7 @@ function TableBodyRowDataCell(props) {
2082
2082
  text: content.tag.text,
2083
2083
  colorTheme: content.tag.color
2084
2084
  })), /*#__PURE__*/React__default.createElement(Text, {
2085
- className: "py-4 text-left leading-5 break-words",
2085
+ className: "py-4 text-left leading-5 break-all",
2086
2086
  text: content.text === "" ? emptyFieldContentText : content.text,
2087
2087
  type: "base"
2088
2088
  })), isTableFieldAction(content) && /*#__PURE__*/React__default.createElement("div", {