@blockscout/ui-toolkit 2.8.0-alpha.1 → 2.8.0-alpha.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.
@@ -7,5 +7,6 @@ export interface EmptyStateProps extends ChakraEmptyState.RootProps {
7
7
  term?: string;
8
8
  type?: EmptyStateType;
9
9
  icon?: React.ReactNode;
10
+ noIcon?: boolean;
10
11
  }
11
12
  export declare const EmptyState: React.ForwardRefExoticComponent<EmptyStateProps & React.RefAttributes<HTMLDivElement>>;
@@ -3,8 +3,10 @@ export interface ChartContentProps {
3
3
  isError?: boolean;
4
4
  isLoading?: boolean;
5
5
  isEmpty?: boolean;
6
+ isFiltered?: boolean;
6
7
  emptyText?: string;
8
+ noEmptyStateIcon?: boolean;
7
9
  noWatermark?: boolean;
8
10
  children: React.ReactNode;
9
11
  }
10
- export declare const ChartContent: ({ isError, isLoading, isEmpty, emptyText, noWatermark, children }: ChartContentProps) => React.JSX.Element;
12
+ export declare const ChartContent: ({ isError, isLoading, isEmpty, isFiltered, noEmptyStateIcon, emptyText, noWatermark, children }: ChartContentProps) => React.JSX.Element;
@@ -3,4 +3,4 @@ import { ChartContentProps } from '../components/ChartContent';
3
3
  import { LineChartProps } from './LineChart';
4
4
  export interface LineChartContentProps extends Omit<ChartContentProps, 'children'>, LineChartProps {
5
5
  }
6
- export declare const LineChartContent: React.MemoExoticComponent<({ isLoading, isError, isEmpty, emptyText, noWatermark, ...rest }: LineChartContentProps) => React.JSX.Element>;
6
+ export declare const LineChartContent: React.MemoExoticComponent<({ isLoading, isError, isEmpty, isFiltered, emptyText, noWatermark, noEmptyStateIcon, ...rest }: LineChartContentProps) => React.JSX.Element>;
@@ -15,5 +15,6 @@ export interface LineChartWidgetProps extends FlexProps {
15
15
  axesConfig?: LineChartAxesConfigFn;
16
16
  menuItems?: Array<ChartMenuItemId>;
17
17
  noWatermark?: boolean;
18
+ noEmptyStateIcon?: boolean;
18
19
  }
19
- export declare const LineChartWidget: React.MemoExoticComponent<({ charts, title, description, isLoading, isError, emptyText, noAnimation, href, chartUrl, axesConfig, menuItems, noWatermark, ...rest }: LineChartWidgetProps) => React.JSX.Element>;
20
+ export declare const LineChartWidget: React.MemoExoticComponent<({ charts, title, description, isLoading, isError, emptyText, noAnimation, href, chartUrl, axesConfig, menuItems, noWatermark, noEmptyStateIcon, ...rest }: LineChartWidgetProps) => React.JSX.Element>;
@@ -5,4 +5,4 @@ import { SankeyChartProps } from './SankeyChart';
5
5
  export interface SankeyChartContentProps extends Omit<ChartContentProps, 'children'>, Omit<SankeyChartProps, 'data'> {
6
6
  data?: SankeyChartData;
7
7
  }
8
- export declare const SankeyChartContent: React.MemoExoticComponent<({ data, isError, isLoading, isEmpty, emptyText, noWatermark, ...rest }: SankeyChartContentProps) => React.JSX.Element>;
8
+ export declare const SankeyChartContent: React.MemoExoticComponent<({ data, isError, isLoading, isEmpty, emptyText, noWatermark, noEmptyStateIcon, ...rest }: SankeyChartContentProps) => React.JSX.Element>;