@galaxy-ds/core 1.1.46 → 1.1.50

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.
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React from 'react';
2
2
  import { HeaderToolbarProps } from './HeaderToolbarProps.types';
3
3
  declare const HeaderToolbar: React.FC<HeaderToolbarProps>;
4
4
  export default HeaderToolbar;
@@ -1,6 +1,12 @@
1
1
  /// <reference types="react" />
2
2
  export interface HeaderToolbarProps {
3
3
  title?: string;
4
+ titleVisibility?: boolean;
4
5
  left?: React.ReactNode;
5
6
  right?: React.ReactNode;
7
+ bgColor?: string;
8
+ bgImageURL?: string;
9
+ bgPosition?: string;
10
+ bgSize?: string;
11
+ divider?: boolean;
6
12
  }
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgIconProps } from '@material-ui/core/SvgIcon';
3
+ export default function SpinnerIcon(props: SvgIconProps): JSX.Element;
@@ -1,4 +1,5 @@
1
1
  export interface LoaderProps {
2
+ spinner?: boolean;
2
3
  background?: 'light' | 'dark';
3
4
  position?: 'fixed' | 'absolute' | 'relative';
4
5
  transparent?: boolean;
@@ -1,5 +1,3 @@
1
- import React from "react";
2
- export interface TabProps {
3
- label: string | Element | React.FC;
4
- value?: any;
1
+ import { TabProps as MuiTabProps } from "@material-ui/core/Tab";
2
+ export interface TabProps extends MuiTabProps {
5
3
  }