@datarobot/design-system 30.1.1 → 30.1.3

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.
@@ -5191,6 +5191,8 @@ export type SidebarCardItemProps = {
5191
5191
  className?: string;
5192
5192
  /** Defines if left item should be added */
5193
5193
  leftItem?: React.ReactNode | null;
5194
+ /** Optional ref to attach to the card's root element */
5195
+ ref?: React.Ref<HTMLDivElement>;
5194
5196
  };
5195
5197
  export type SidebarCardProps = {
5196
5198
  /** Test id */
@@ -5270,7 +5272,8 @@ import './sidebar-card.less';
5270
5272
  * @midnight-gray-supported
5271
5273
  * @alpine-light-supported
5272
5274
  * */
5273
- export default function SidebarCard({ testId, id, isDisabled, isSelected, isReadOnly, hasCheckbox, isChecked, leftItem, checkboxTooltip, isCheckboxDisabled, title, titleTooltip, headerContentLeft, headerContentRight, content, onCheckboxSelect, className, shouldSelectTileOnEnter, ...other }: SidebarCardProps): import("react/jsx-runtime").JSX.Element;
5275
+ const SidebarCard: React.ForwardRefExoticComponent<SidebarCardProps & React.RefAttributes<HTMLDivElement>>;
5276
+ export default SidebarCard;
5274
5277
 
5275
5278
  import './sidebar-menu.less';
5276
5279
  export type SidebarMenuProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarobot/design-system",
3
- "version": "30.1.1",
3
+ "version": "30.1.3",
4
4
  "description": "DataRobot react components library",
5
5
  "scripts": {
6
6
  "build": "node ../../tools/build-lib.js",