@datarobot/design-system 29.7.2 → 29.7.4
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/full-screen-drawer/header/full-screen-drawer-header.d.ts +3 -3
- package/cjs/full-screen-drawer/header/full-screen-drawer-header.js +4 -3
- package/cjs/table/tooltip-cell.d.ts +1 -1
- package/cjs/table/tooltip-cell.js +6 -4
- package/esm/full-screen-drawer/header/full-screen-drawer-header.d.ts +3 -3
- package/esm/full-screen-drawer/header/full-screen-drawer-header.js +4 -3
- package/esm/table/tooltip-cell.d.ts +1 -1
- package/esm/table/tooltip-cell.js +6 -4
- package/js/bundle/bundle.js +20 -11
- package/js/bundle/bundle.min.js +1 -1
- package/js/bundle/index.d.ts +4 -4
- package/package.json +1 -1
package/js/bundle/index.d.ts
CHANGED
|
@@ -3398,9 +3398,9 @@ export type FullScreenDrawerHeaderProps = {
|
|
|
3398
3398
|
showUnsavedDataDialog?: boolean;
|
|
3399
3399
|
setShowUnsavedDataDialog?: (value: boolean) => void;
|
|
3400
3400
|
localizationText?: {
|
|
3401
|
-
cancelButton
|
|
3402
|
-
keepDrawer
|
|
3403
|
-
closeWithoutSaving
|
|
3401
|
+
cancelButton?: string;
|
|
3402
|
+
keepDrawer?: string;
|
|
3403
|
+
closeWithoutSaving?: string;
|
|
3404
3404
|
};
|
|
3405
3405
|
dismissWarningText?: string;
|
|
3406
3406
|
};
|
|
@@ -5802,7 +5802,7 @@ type TooltipCellProps = {
|
|
|
5802
5802
|
/**
|
|
5803
5803
|
* Adds tooltip for cells with simple string value
|
|
5804
5804
|
*/
|
|
5805
|
-
export default function TooltipCell({ value, testId, }: TooltipCellProps): import("react/jsx-runtime").JSX.Element
|
|
5805
|
+
export default function TooltipCell({ value, testId, }: TooltipCellProps): import("react/jsx-runtime").JSX.Element;
|
|
5806
5806
|
export {};
|
|
5807
5807
|
|
|
5808
5808
|
type TooltipThProps = {
|