@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.
- package/dist/components/Table/Table.d.ts +1 -1
- package/dist/web-ui-tailwind.css +4 -0
- package/dist/web-ui.cjs.development.js +1 -1
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.tsx +1 -1
- package/src/components/Table/TableBodyRowDataCell.tsx +1 -1
|
@@ -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
|
|
9
|
+
isLoading?: boolean;
|
|
10
10
|
showHeader?: boolean;
|
|
11
11
|
paginationMenuProps?: PaginationMenuProps;
|
|
12
12
|
onRowClick?: (item: Item) => void;
|
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -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-
|
|
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", {
|