@blockscout/ui-toolkit 2.3.4 → 2.4.0-alpha

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,7 +1,7 @@
1
1
  import { FlexProps } from '@chakra-ui/react';
2
2
  import { default as React } from 'react';
3
3
  import { LinkProps } from './link';
4
- interface CollapsibleDetailsProps extends LinkProps {
4
+ export interface CollapsibleDetailsProps extends LinkProps {
5
5
  children: React.ReactNode;
6
6
  id?: string;
7
7
  isExpanded?: boolean;
@@ -1,3 +1,2 @@
1
- export declare const ADDRESS_REGEXP: RegExp;
2
1
  export declare const ADDRESS_LENGTH = 42;
3
2
  export declare function addressValidator(value: string | undefined): true | "Incorrect address format";
@@ -0,0 +1,7 @@
1
+ import { BoxProps } from '@chakra-ui/react';
2
+ import { default as React } from 'react';
3
+ interface Props extends BoxProps {
4
+ text?: string;
5
+ }
6
+ export declare const ContentLoader: React.MemoExoticComponent<({ text, ...props }: Props) => React.JSX.Element>;
7
+ export {};