@thecb/components 8.4.3-beta.1 → 8.4.3-beta.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.d.ts CHANGED
@@ -953,6 +953,7 @@ interface TableListItemProps {
953
953
  title: string | JSX.Element;
954
954
  value: string | JSX.Element;
955
955
  onClick?: () => void;
956
+ hoverBackgroundColor?: string;
956
957
  canEdit?: boolean;
957
958
  canRemove?: boolean;
958
959
  isMobile?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.3-beta.1",
3
+ "version": "8.4.3-beta.2",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -15,6 +15,7 @@ export interface TableListItemProps {
15
15
  title: string | JSX.Element;
16
16
  value: string | JSX.Element;
17
17
  onClick?: () => void;
18
+ hoverBackgroundColor?: string;
18
19
  canEdit?: boolean;
19
20
  canRemove?: boolean;
20
21
  isMobile?: boolean;