@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.
- package/cjs/markdown/markdown.js +10 -1
- package/cjs/sidebar-cards/sidebar-card.d.ts +3 -1
- package/cjs/sidebar-cards/sidebar-card.js +14 -7
- package/cjs/sidebar-cards/sidebar-cards.js +1 -0
- package/cjs/sidebar-cards/types.d.ts +2 -0
- package/esm/markdown/markdown.js +10 -1
- package/esm/sidebar-cards/sidebar-card.d.ts +3 -1
- package/esm/sidebar-cards/sidebar-card.js +13 -7
- package/esm/sidebar-cards/sidebar-cards.js +1 -0
- package/esm/sidebar-cards/types.d.ts +2 -0
- package/js/bundle/bundle.js +30 -6
- package/js/bundle/bundle.min.js +1 -1
- package/js/bundle/index.d.ts +4 -1
- package/package.json +1 -1
package/js/bundle/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
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 = {
|