@trackunit/react-components 1.8.35 → 1.8.38

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-components",
3
- "version": "1.8.35",
3
+ "version": "1.8.38",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -17,12 +17,12 @@
17
17
  "@floating-ui/react": "^0.26.25",
18
18
  "string-ts": "^2.0.0",
19
19
  "tailwind-merge": "^2.0.0",
20
- "@trackunit/ui-design-tokens": "1.6.60",
21
- "@trackunit/css-class-variance-utilities": "1.6.58",
22
- "@trackunit/shared-utils": "1.8.59",
23
- "@trackunit/ui-icons": "1.6.57",
24
- "@trackunit/react-table-pagination": "1.6.57",
25
- "@trackunit/react-test-setup": "1.3.58",
20
+ "@trackunit/ui-design-tokens": "1.6.62",
21
+ "@trackunit/css-class-variance-utilities": "1.6.60",
22
+ "@trackunit/shared-utils": "1.8.61",
23
+ "@trackunit/ui-icons": "1.6.59",
24
+ "@trackunit/react-table-pagination": "1.6.59",
25
+ "@trackunit/react-test-setup": "1.3.60",
26
26
  "@tanstack/react-router": "1.114.29"
27
27
  },
28
28
  "module": "./index.esm.js",
@@ -20,7 +20,9 @@ export interface ListItemProps extends CommonProps, MappedOmit<VariantProps<type
20
20
  details?: ReactNode;
21
21
  /**If an icon is chosen as thumbnail, use this to set the color of the icon. */
22
22
  thumbnailColor?: `${ThemeColors}-${ThemeColorShades}` | `${ThemeColors}`;
23
- /**If an icon is chosen as thumbnail, use this to set the background color of the icon. */
23
+ /**If an icon is chosen as thumbnail, use this to set the background color of the icon.
24
+ * If asset image is chosen as thumbnail, make the thumbnailBackground "white".
25
+ */
24
26
  thumbnailBackground?: `${ThemeColors}-${ThemeColorShades}` | `${ThemeColors}`;
25
27
  }
26
28
  /**