@galaxy-ds/core 1.1.76 → 1.1.78

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.
@@ -10,4 +10,7 @@ export interface HeaderToolbarProps {
10
10
  bgSize?: string;
11
11
  divider?: boolean;
12
12
  tooltip?: boolean;
13
+ hasLoader?: boolean;
14
+ loaderTitle?: string;
15
+ isPlatformWeb?: boolean;
13
16
  }
package/dist/Tag/Tag.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { TagProps } from "./Tag.types";
2
+ import { TagProps } from './Tag.types';
3
3
  declare const Tag: React.FC<TagProps>;
4
4
  export default Tag;
@@ -1,3 +1,7 @@
1
1
  import { TooltipProps as MuiTooltipProps } from "@material-ui/core";
2
2
  export interface TooltipProps extends MuiTooltipProps {
3
+ /**
4
+ * Set Tooltip max-width to full width. Default is `true`.
5
+ */
6
+ isFullWidth?: boolean;
3
7
  }